diff --git a/autodeconstruct.lua b/autodeconstruct.lua index e75339a5..86f736eb 100644 --- a/autodeconstruct.lua +++ b/autodeconstruct.lua @@ -1,39 +1,49 @@ --Author: Valansch -local Event = require "utils.event" +local Event = require 'utils.event' +local Token = require 'utils.global_token' +local Task = require 'utils.Task' -local function is_depleted(drill) - local position = drill.position - local area = {} - if drill.name == "electric-mining-drill" then - area = {{position.x - 2, position.y - 2},{position.x + 2, position.y + 2}} - else - area = {{position.x - 1, position.y - 1},{position.x + 1, position.y + 1}} - end - local count = -1 - for _,resource in pairs(drill.surface.find_entities_filtered{type="resource", area = area}) do - if resource.name ~= "crude-oil" then - count = count + 1 +local function is_depleted(drill, entity) + local position = drill.position + local area + if drill.name == 'electric-mining-drill' then + area = {{position.x - 2.5, position.y - 2.5}, {position.x + 2.5, position.y + 2.5}} + else + area = {{position.x - 1, position.y - 1}, {position.x + 1, position.y + 1}} end - end - return count == 0 + + for _, resource in pairs(drill.surface.find_entities_filtered {type = 'resource', area = area}) do + if resource ~= entity and resource.name ~= 'crude-oil' then + return false + end + end + return true end -local function mark_if_depleted(drill) - if is_depleted(drill) then - drill.order_deconstruction(drill.force) - end -end +local callback = + Token.register( + function(drill) + if drill.valid then + drill.order_deconstruction(drill.force) + end + end +) local function on_resource_depleted(event) - if event.entity.name == "uranium-ore" then return nil end - local area = {{event.entity.position.x-1, event.entity.position.y-1}, {event.entity.position.x+1, event.entity.position.y + 1}} - local drills = event.entity.surface.find_entities_filtered{area = area, type="mining-drill"} - for _,drill in pairs(drills) do - if drill.name ~= "pumpjack" then - mark_if_depleted(drill) + local entity = event.entity + if entity.name == 'uranium-ore' then + return nil + end + + local position = entity.position + local area = {{position.x - 1, position.y - 1}, {position.x + 1, position.y + 1}} + local drills = event.entity.surface.find_entities_filtered {area = area, type = 'mining-drill'} + for _, drill in ipairs(drills) do + if drill.name ~= 'pumpjack' and is_depleted(drill, entity) then + Task.set_timeout_in_ticks(5, callback, drill) + end end - end end Event.add(defines.events.on_resource_depleted, on_resource_depleted) diff --git a/control.lua b/control.lua index 05e7337e..213eb8e8 100644 --- a/control.lua +++ b/control.lua @@ -163,6 +163,24 @@ Event.add( end ) +Event.add( + defines.events.on_console_command, + function(event) + local command = event.command + if command == 'c' or command == 'command' or command == 'silent-command' or command == 'hax' then + local p_index = event.player_index + local name + if p_index then + name = game.players[event.player_index].name + else + name = '' + end + local s = table.concat {'[Command] ', name, ' /', command, ' ', event.parameters} + log(s) + end + end +) + local direction_bit_mask = 0xc0000000 local section_bit_mask = 0x30000000 local level_bit_mask = 0x0fffffff diff --git a/custom_commands.lua b/custom_commands.lua index dec261a9..7a972592 100644 --- a/custom_commands.lua +++ b/custom_commands.lua @@ -3,7 +3,7 @@ local Event = require 'utils.event' local Token = require 'utils.global_token' local UserGroups = require 'user_groups' local Utils = require 'utils.utils' -local Antigrief = require 'antigrief' +--local Antigrief = require 'antigrief' function player_print(str) if game.player then @@ -545,7 +545,7 @@ local function pool() end end -global.undo_warned_players = {} +--[[ global.undo_warned_players = {} local function undo(cmd) if (not game.player) or not game.player.admin then cant_run(cmd.name) @@ -581,7 +581,7 @@ local function antigrief_surface_tp() return end Antigrief.antigrief_surface_tp() -end +end ]] local function find_player(cmd) local player = game.player @@ -675,10 +675,10 @@ commands.add_command( end ) commands.add_command('pool', 'Spawns a pool', pool) -commands.add_command('undo', ' undoes everything a player has done (Admins only)', undo) +--[[ commands.add_command('undo', ' undoes everything a player has done (Admins only)', undo) commands.add_command( 'antigrief_surface', 'moves you to the antigrief surface or back (Admins only)', antigrief_surface_tp -) +) ]] commands.add_command('find-player', ' shows an alert on the map where the player is located', find_player) diff --git a/map_gen/data/.source_images/dino1.png b/map_gen/data/.source_images/dino1.png new file mode 100644 index 00000000..c9b7d441 Binary files /dev/null and b/map_gen/data/.source_images/dino1.png differ diff --git a/map_gen/data/.source_images/dino10.jpg b/map_gen/data/.source_images/dino10.jpg new file mode 100644 index 00000000..1a1f4602 Binary files /dev/null and b/map_gen/data/.source_images/dino10.jpg differ diff --git a/map_gen/data/.source_images/dino11.jpeg b/map_gen/data/.source_images/dino11.jpeg new file mode 100644 index 00000000..42a90594 Binary files /dev/null and b/map_gen/data/.source_images/dino11.jpeg differ diff --git a/map_gen/data/.source_images/dino12.jpg b/map_gen/data/.source_images/dino12.jpg new file mode 100644 index 00000000..18999018 Binary files /dev/null and b/map_gen/data/.source_images/dino12.jpg differ diff --git a/map_gen/data/.source_images/dino13.jpg b/map_gen/data/.source_images/dino13.jpg new file mode 100644 index 00000000..0dd92e7e Binary files /dev/null and b/map_gen/data/.source_images/dino13.jpg differ diff --git a/map_gen/data/.source_images/dino14.jpg b/map_gen/data/.source_images/dino14.jpg new file mode 100644 index 00000000..231fd13a Binary files /dev/null and b/map_gen/data/.source_images/dino14.jpg differ diff --git a/map_gen/data/.source_images/dino15.jpg b/map_gen/data/.source_images/dino15.jpg new file mode 100644 index 00000000..31185791 Binary files /dev/null and b/map_gen/data/.source_images/dino15.jpg differ diff --git a/map_gen/data/.source_images/dino16.png b/map_gen/data/.source_images/dino16.png new file mode 100644 index 00000000..7706a476 Binary files /dev/null and b/map_gen/data/.source_images/dino16.png differ diff --git a/map_gen/data/.source_images/dino17.png b/map_gen/data/.source_images/dino17.png new file mode 100644 index 00000000..7cc74a01 Binary files /dev/null and b/map_gen/data/.source_images/dino17.png differ diff --git a/map_gen/data/.source_images/dino18.png b/map_gen/data/.source_images/dino18.png new file mode 100644 index 00000000..8fee795f Binary files /dev/null and b/map_gen/data/.source_images/dino18.png differ diff --git a/map_gen/data/.source_images/dino19.png b/map_gen/data/.source_images/dino19.png new file mode 100644 index 00000000..cffd7c2b Binary files /dev/null and b/map_gen/data/.source_images/dino19.png differ diff --git a/map_gen/data/.source_images/dino2.jpg b/map_gen/data/.source_images/dino2.jpg new file mode 100644 index 00000000..f860c0a1 Binary files /dev/null and b/map_gen/data/.source_images/dino2.jpg differ diff --git a/map_gen/data/.source_images/dino20.png b/map_gen/data/.source_images/dino20.png new file mode 100644 index 00000000..8d292f29 Binary files /dev/null and b/map_gen/data/.source_images/dino20.png differ diff --git a/map_gen/data/.source_images/dino21.png b/map_gen/data/.source_images/dino21.png new file mode 100644 index 00000000..55cb91c7 Binary files /dev/null and b/map_gen/data/.source_images/dino21.png differ diff --git a/map_gen/data/.source_images/dino22.png b/map_gen/data/.source_images/dino22.png new file mode 100644 index 00000000..85a13d21 Binary files /dev/null and b/map_gen/data/.source_images/dino22.png differ diff --git a/map_gen/data/.source_images/dino3.jpg b/map_gen/data/.source_images/dino3.jpg new file mode 100644 index 00000000..bae80880 Binary files /dev/null and b/map_gen/data/.source_images/dino3.jpg differ diff --git a/map_gen/data/.source_images/dino4.png b/map_gen/data/.source_images/dino4.png new file mode 100644 index 00000000..15d95c70 Binary files /dev/null and b/map_gen/data/.source_images/dino4.png differ diff --git a/map_gen/data/.source_images/dino5.png b/map_gen/data/.source_images/dino5.png new file mode 100644 index 00000000..63bee14e Binary files /dev/null and b/map_gen/data/.source_images/dino5.png differ diff --git a/map_gen/data/.source_images/dino6.png b/map_gen/data/.source_images/dino6.png new file mode 100644 index 00000000..82aac320 Binary files /dev/null and b/map_gen/data/.source_images/dino6.png differ diff --git a/map_gen/data/.source_images/dino7.png b/map_gen/data/.source_images/dino7.png new file mode 100644 index 00000000..fdc5adb6 Binary files /dev/null and b/map_gen/data/.source_images/dino7.png differ diff --git a/map_gen/data/.source_images/dino8.jpg b/map_gen/data/.source_images/dino8.jpg new file mode 100644 index 00000000..c6fa3b6c Binary files /dev/null and b/map_gen/data/.source_images/dino8.jpg differ diff --git a/map_gen/data/.source_images/dino9.jpg b/map_gen/data/.source_images/dino9.jpg new file mode 100644 index 00000000..e6204da3 Binary files /dev/null and b/map_gen/data/.source_images/dino9.jpg differ diff --git a/map_gen/data/presets/dino1.lua b/map_gen/data/presets/dino1.lua new file mode 100644 index 00000000..589c3897 --- /dev/null +++ b/map_gen/data/presets/dino1.lua @@ -0,0 +1,591 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 584, +width = 800, +data = { + {1,112,28,7,1,681,}, + {1,111,28,10,1,679,}, + {1,109,28,7,29,1,28,5,1,678,}, + {1,108,28,15,1,677,}, + {1,107,28,18,1,675,}, + {1,106,28,23,1,671,}, + {1,105,28,7,29,5,30,1,29,1,28,11,1,670,}, + {1,105,28,8,29,1,30,1,29,1,30,2,13,1,30,1,29,3,30,1,29,1,28,2,29,2,28,1,6,2,1,668,}, + {1,104,28,4,29,2,30,1,28,2,29,1,30,2,29,1,30,4,29,1,30,1,13,2,29,3,30,1,13,1,8,1,6,1,28,8,1,660,}, + {1,104,28,3,29,2,28,1,30,1,29,1,28,2,30,2,28,2,13,1,6,1,30,1,29,1,30,1,29,1,6,1,30,1,29,1,30,1,29,1,30,1,6,3,29,1,28,9,1,27,28,9,1,621,}, + {1,103,28,8,29,1,30,1,29,1,28,1,29,1,28,2,30,1,6,1,29,1,30,1,13,4,30,1,28,1,30,2,29,1,30,1,13,1,30,1,13,1,6,1,28,1,29,1,13,1,30,1,29,1,28,4,1,21,28,15,1,619,}, + {1,103,28,5,29,1,28,2,29,1,6,2,30,4,13,1,6,1,30,7,29,1,30,5,6,3,30,2,13,1,6,1,30,2,28,5,1,17,28,18,1,618,}, + {1,102,28,5,29,1,30,3,29,2,30,1,6,1,30,2,29,1,7,1,6,2,29,1,28,7,29,2,30,1,29,1,30,1,13,3,8,2,13,3,29,1,30,1,28,5,1,6,28,14,29,1,28,12,1,618,}, + {1,101,28,6,29,1,30,2,6,1,30,1,28,1,29,1,13,3,30,1,7,1,6,1,30,1,28,11,29,2,30,1,13,1,26,1,13,2,30,2,13,1,30,1,29,2,28,24,30,2,28,1,29,1,30,2,29,1,28,2,29,1,30,1,29,1,28,1,1,618,}, + {1,101,28,4,29,1,6,1,30,1,28,1,29,1,6,1,7,1,6,2,8,3,7,2,30,1,29,1,28,17,29,1,28,4,29,2,28,18,29,1,28,2,29,3,30,1,13,1,30,1,13,1,30,2,29,1,28,1,29,1,30,2,29,1,28,1,1,618,}, + {1,101,28,4,29,1,13,1,7,1,6,1,30,1,6,1,7,2,6,1,7,3,6,1,30,1,28,9,29,1,28,6,29,1,28,4,29,1,28,14,29,1,28,7,30,1,6,1,29,1,30,2,29,1,13,2,30,4,29,2,30,1,29,3,28,2,1,617,}, + {1,100,28,5,30,1,7,1,6,2,30,1,13,1,7,1,8,2,6,1,30,2,6,1,30,1,28,12,29,5,28,2,30,2,28,4,29,1,30,2,28,16,13,1,8,1,28,1,30,2,29,1,26,1,30,3,29,1,30,1,29,1,30,2,28,1,29,1,26,1,28,3,1,616,}, + {1,99,28,5,29,1,13,1,6,1,30,5,7,3,6,1,30,1,29,1,28,5,30,1,28,2,6,1,30,1,28,2,30,5,28,7,29,1,26,1,30,3,13,3,30,1,29,1,28,8,29,3,13,2,30,1,29,1,30,1,29,1,26,1,30,2,26,3,30,2,29,1,28,1,29,1,30,1,28,4,1,615,}, + {1,99,28,5,30,1,7,4,6,6,30,1,29,1,28,5,30,1,13,1,6,1,30,2,13,1,30,2,13,1,30,1,29,1,28,2,30,2,29,1,28,1,30,3,13,4,30,3,29,1,28,6,30,1,29,3,30,1,29,1,26,1,13,1,30,1,26,1,13,1,30,2,13,1,30,2,29,1,30,1,26,1,29,1,28,1,29,1,30,1,29,1,28,6,1,614,}, + {1,97,28,5,29,1,6,2,7,1,8,1,7,1,6,1,29,1,30,1,6,2,29,1,28,6,29,3,28,1,29,1,6,1,30,1,6,2,30,1,29,1,28,1,29,1,30,1,29,1,30,1,6,2,13,1,8,1,13,2,30,1,29,2,28,8,29,2,26,2,30,2,26,1,30,2,13,2,30,1,29,3,26,1,30,2,29,2,30,2,29,2,30,2,28,7,1,614,}, + {1,93,28,8,30,1,6,1,30,3,29,1,28,14,29,1,30,2,6,2,30,2,29,3,30,3,29,1,30,2,29,4,28,8,29,2,28,1,29,1,30,2,13,1,30,1,29,1,30,7,26,2,29,1,28,2,29,2,30,3,26,2,30,1,29,1,28,2,29,1,28,5,1,613,}, + {1,89,28,11,29,1,28,8,29,9,28,2,29,1,28,1,29,2,30,1,6,1,30,3,29,4,30,2,29,1,28,12,29,4,30,3,26,1,30,1,29,1,30,1,26,1,30,1,6,1,28,7,29,2,26,2,29,1,30,2,26,2,28,2,29,2,28,3,29,1,28,1,1,613,}, + {1,86,28,17,29,3,30,6,29,2,30,2,29,1,30,1,6,6,30,1,29,1,30,2,29,1,28,18,29,1,30,2,28,2,29,1,30,4,26,3,13,1,7,1,29,1,28,5,30,1,29,1,30,1,26,3,29,2,26,1,30,1,28,1,29,1,26,1,30,1,28,6,1,612,}, + {1,82,28,9,29,2,6,2,28,5,29,3,30,3,28,1,29,1,30,1,29,1,28,2,29,1,30,1,13,1,30,3,13,1,7,1,6,4,29,1,28,22,30,3,28,2,29,1,30,1,26,1,30,2,29,1,30,1,26,1,30,2,29,1,28,2,29,2,28,2,30,2,26,2,30,1,29,1,30,2,29,1,28,1,29,1,26,2,28,6,33,1,1,611,}, + {1,80,28,7,29,2,6,2,30,1,29,1,28,4,29,2,30,2,29,3,28,7,29,1,6,1,13,2,6,1,30,2,29,1,30,1,6,5,29,1,28,2,29,2,28,17,29,1,30,2,28,1,29,1,30,1,13,1,8,1,6,1,29,2,30,1,29,1,30,1,29,2,28,7,29,1,26,2,29,1,30,2,29,1,28,1,29,1,30,1,29,2,28,6,27,1,1,611,}, + {1,78,28,4,29,1,6,2,29,3,28,8,29,3,30,1,29,2,28,7,29,1,30,3,13,2,7,2,6,1,29,7,28,14,29,1,28,3,29,2,28,2,30,1,26,1,30,1,28,1,29,1,13,1,8,1,9,1,6,1,29,1,30,2,29,1,6,2,30,1,28,8,30,1,26,1,30,3,29,1,28,1,29,4,28,6,13,1,1,611,}, + {1,76,28,3,29,1,6,1,7,2,6,2,29,4,28,5,29,2,30,6,29,1,28,3,29,2,6,1,13,1,30,2,13,1,30,3,29,1,28,5,29,2,28,2,29,5,28,9,30,1,29,5,28,1,30,1,13,1,28,2,26,1,30,1,29,1,30,1,13,1,30,1,6,1,7,2,8,1,13,1,8,2,7,1,30,1,28,5,30,1,26,2,30,2,29,1,28,1,29,4,28,5,29,2,1,611,}, + {1,75,28,4,6,1,7,2,6,1,29,1,30,1,29,1,28,7,29,1,26,1,30,2,13,2,30,4,29,2,30,6,29,4,28,3,29,1,30,1,29,2,30,1,29,1,28,2,29,5,28,2,29,1,28,7,26,1,29,1,28,2,29,2,26,1,29,1,28,1,30,1,9,1,28,2,13,1,8,1,9,1,8,1,6,2,30,1,26,1,13,1,15,1,16,1,8,1,29,1,28,1,29,3,30,1,26,2,29,1,30,1,29,5,26,1,30,2,28,5,1,611,}, + {1,73,28,4,30,1,29,1,6,4,29,1,28,4,29,2,30,1,29,2,30,2,29,3,28,10,29,1,28,4,29,2,28,2,30,1,26,2,30,2,29,4,28,16,30,1,26,1,29,1,30,2,29,1,28,1,29,1,9,2,30,1,13,1,9,2,8,1,6,2,7,1,13,1,30,1,26,1,13,2,16,1,8,1,29,1,30,1,13,1,29,1,30,1,29,1,28,1,29,2,28,1,29,3,28,3,30,1,28,6,1,610,}, + {1,72,28,4,30,1,7,1,6,4,29,1,28,2,29,1,30,1,29,1,30,1,13,1,30,1,29,1,28,12,29,1,28,3,30,2,28,2,29,1,30,1,29,2,28,2,29,1,28,23,29,3,26,1,30,2,13,1,30,1,13,1,9,4,8,1,29,1,6,2,29,2,30,4,9,1,16,1,7,1,8,2,30,2,29,1,28,1,29,6,28,4,29,1,28,5,1,610,}, + {1,71,28,4,30,1,6,5,29,1,28,3,30,1,13,1,30,2,29,1,28,11,29,5,28,1,29,1,30,1,29,1,28,2,29,1,28,14,29,1,28,14,29,1,28,2,29,1,26,1,30,1,13,1,30,1,13,1,9,3,7,1,29,3,28,1,6,1,9,1,13,1,29,2,30,1,26,1,9,3,8,1,30,3,26,1,30,3,29,3,28,11,1,609,}, + {1,70,28,3,29,1,30,1,6,3,29,2,28,4,30,1,13,1,30,1,29,1,28,13,29,3,30,1,28,2,29,1,26,1,29,1,28,7,29,1,30,1,29,1,28,7,29,1,28,17,29,1,30,4,13,1,9,2,8,1,29,1,6,1,29,2,8,2,28,3,29,4,13,1,9,1,13,1,29,1,28,4,30,1,26,1,30,1,26,2,29,1,28,7,29,1,28,2,1,609,}, + {1,68,28,4,29,1,6,4,30,1,29,1,28,3,29,1,30,1,29,1,28,10,29,1,28,2,30,1,28,2,29,2,30,1,26,1,29,1,28,1,26,2,29,1,28,1,29,1,28,4,29,2,30,2,29,1,28,17,29,1,28,6,29,1,30,1,29,2,30,1,13,1,16,1,9,1,29,1,28,1,6,1,7,1,10,1,6,1,28,2,6,1,7,1,8,2,7,1,6,1,29,1,13,1,9,1,7,1,28,3,29,1,30,3,26,1,29,1,28,7,26,2,28,4,1,607,}, + {1,67,28,5,29,2,30,1,29,1,28,5,30,1,13,1,28,13,29,1,28,1,30,1,29,1,28,1,29,1,30,1,26,1,30,1,28,1,30,1,26,2,29,1,30,1,29,1,28,5,29,1,28,2,29,1,28,2,29,3,28,13,29,1,28,5,29,2,30,1,26,1,9,3,7,1,29,1,6,1,9,1,16,1,6,1,28,1,30,1,6,1,28,3,29,1,7,1,8,1,30,2,13,2,29,1,30,1,7,1,30,1,29,1,28,2,29,2,28,7,30,2,29,1,28,4,1,606,}, + {1,66,28,14,29,1,30,1,28,20,29,1,30,1,29,1,28,5,30,2,29,1,28,12,29,1,28,13,29,2,28,5,30,3,13,1,9,2,6,2,9,1,16,1,7,1,29,1,6,1,29,1,28,3,29,1,28,2,7,2,6,2,13,1,30,1,6,1,8,1,30,1,29,1,28,1,29,2,30,1,28,9,29,1,28,5,1,605,}, + {1,65,28,14,29,1,30,1,28,15,29,1,28,13,29,1,30,2,28,6,29,1,28,2,29,1,30,1,28,15,29,1,30,1,28,4,29,1,26,1,30,2,13,1,9,1,8,1,6,1,7,1,16,1,8,1,29,1,30,1,29,1,28,4,17,1,33,1,28,1,6,1,8,1,6,2,8,1,9,1,6,1,30,1,29,2,28,2,30,2,28,15,1,605,}, + {1,64,28,15,30,1,28,16,29,1,28,14,29,1,28,10,29,2,28,20,29,1,28,1,30,1,26,1,13,1,9,1,16,1,7,2,9,2,30,2,29,1,28,4,33,1,17,1,1,1,33,1,29,1,8,1,6,1,7,1,9,2,30,1,29,1,30,1,29,2,28,1,29,1,30,1,28,16,1,604,}, + {1,63,28,58,29,2,28,21,30,1,29,1,26,1,13,2,9,1,16,1,6,1,7,1,9,1,8,1,30,1,6,1,29,1,28,4,11,2,1,1,9,1,28,1,6,2,7,1,9,2,6,1,28,5,29,1,30,1,28,17,1,603,}, + {1,62,28,4,29,1,28,54,29,1,30,1,28,21,29,1,28,1,30,1,26,1,13,2,9,1,29,1,7,1,8,1,6,4,29,3,28,1,11,1,1,2,6,1,29,1,30,3,9,3,7,1,28,3,29,2,30,1,28,6,29,2,28,10,1,602,}, + {1,61,28,38,29,1,28,28,29,3,28,15,29,1,26,1,13,1,9,2,6,1,8,1,13,1,30,2,28,1,6,4,29,1,8,1,11,1,16,1,29,3,6,1,30,1,9,2,8,1,13,1,28,2,29,3,26,1,28,6,29,1,28,11,1,602,}, + {1,61,28,38,29,1,28,29,29,2,28,15,29,1,13,1,9,2,8,1,7,1,9,1,7,1,30,1,28,4,29,4,26,1,29,1,28,2,29,1,9,1,13,1,9,2,8,1,13,1,29,1,28,3,29,2,28,19,1,601,}, + {1,60,28,36,29,1,28,50,30,1,9,2,8,1,7,2,6,1,29,1,28,8,29,2,28,2,30,1,16,1,13,2,8,2,13,1,28,4,29,3,28,7,29,1,28,11,1,600,}, + {1,60,28,36,30,1,28,33,29,3,28,14,30,1,13,1,9,1,8,1,7,1,6,1,7,1,29,2,6,2,29,1,28,7,30,1,26,1,9,1,30,1,6,1,8,2,7,1,28,4,29,1,28,1,29,1,28,19,1,600,}, + {1,60,28,35,29,1,28,2,29,2,28,30,29,1,30,1,29,3,28,12,30,1,13,2,9,1,6,1,30,1,6,3,29,2,30,2,28,4,26,3,30,1,9,1,6,1,30,1,8,1,13,1,6,1,29,1,28,5,29,1,28,20,1,599,}, + {1,59,28,38,29,1,30,1,29,1,28,30,29,2,28,1,29,2,28,13,26,1,13,2,29,2,6,1,7,1,6,1,28,4,29,1,13,1,26,3,29,1,30,2,13,1,30,1,6,1,9,1,13,2,29,2,28,3,29,1,30,1,28,9,29,1,28,10,1,599,}, + {1,59,28,38,29,2,28,31,29,3,28,1,29,2,28,12,29,1,13,2,6,1,28,1,29,1,6,2,28,1,29,1,28,3,29,3,30,3,13,2,30,1,6,1,13,1,8,1,13,1,29,1,28,4,29,1,30,1,28,9,29,1,28,11,1,598,}, + {1,59,28,72,29,1,28,2,29,3,28,11,29,1,30,1,13,1,7,1,28,1,6,1,29,1,6,1,28,2,29,1,30,1,28,2,29,1,30,1,26,1,30,1,29,1,30,1,13,1,7,1,29,1,7,1,8,1,13,1,6,1,28,5,29,1,28,8,29,3,28,11,1,597,}, + {1,59,28,36,29,2,28,28,29,2,28,5,29,3,30,2,28,11,29,1,30,1,13,1,9,1,6,1,29,1,6,1,29,1,30,1,29,1,28,2,29,1,30,1,13,2,30,2,29,1,30,1,13,2,29,1,7,1,6,2,30,1,29,1,28,4,29,2,28,8,29,2,28,11,1,597,}, + {1,59,28,33,29,1,28,1,29,2,28,37,29,2,30,1,29,1,28,11,29,2,26,1,13,1,9,1,29,2,6,1,29,1,30,2,28,3,29,2,28,1,29,1,30,1,26,1,13,1,30,1,29,1,7,1,30,1,6,1,30,1,28,5,29,2,28,8,29,3,28,11,1,596,}, + {1,59,28,35,29,3,28,37,29,1,30,2,29,1,28,10,30,3,26,1,9,1,7,1,28,1,29,1,30,1,28,1,29,1,30,1,29,1,28,3,30,1,26,2,13,1,6,1,29,3,28,1,6,1,8,1,28,5,29,2,28,9,29,1,28,13,1,595,}, + {1,59,28,34,29,3,28,25,29,1,28,13,29,1,30,1,29,1,28,11,29,1,30,2,13,1,8,1,28,1,29,1,6,1,29,1,28,1,29,1,30,2,26,1,13,5,29,1,6,1,29,1,28,2,6,1,7,1,28,5,29,2,28,9,29,3,28,11,29,1,1,594,}, + {1,59,28,32,29,1,30,1,29,1,28,27,29,2,28,6,29,1,28,2,29,1,28,3,30,1,29,2,28,11,29,2,26,1,9,1,6,1,29,5,28,1,29,1,30,1,13,4,30,1,29,1,6,1,29,1,28,2,6,2,28,5,29,3,28,8,29,3,28,12,1,594,}, + {1,58,28,32,29,2,28,28,29,1,28,6,29,1,28,5,29,2,28,1,29,1,30,1,29,1,28,11,29,1,30,2,13,1,9,1,6,2,29,1,28,1,30,6,26,1,30,1,28,1,30,1,6,1,30,1,28,3,7,1,28,6,29,2,28,24,1,593,}, + {1,57,28,63,30,1,28,2,29,1,28,6,29,1,28,19,29,3,30,1,9,2,6,1,13,1,29,2,26,1,13,3,26,1,29,1,28,1,29,1,30,1,6,1,29,1,28,3,7,1,29,1,28,5,29,2,28,9,29,2,28,14,1,592,}, + {1,56,28,61,30,1,29,1,28,1,29,1,28,4,29,1,28,4,30,1,29,1,28,4,29,2,28,13,29,2,30,1,26,1,9,2,7,1,30,1,29,2,26,3,29,1,28,1,6,1,13,2,30,1,28,3,29,1,6,1,30,1,6,1,29,1,28,4,29,1,28,9,30,2,28,5,29,1,28,8,1,592,}, + {1,56,28,73,30,1,26,1,28,7,29,1,28,12,29,2,30,1,29,1,13,1,9,1,8,1,30,1,13,1,29,1,30,2,29,2,6,1,8,1,13,2,30,1,28,1,29,1,6,2,30,1,6,1,13,1,6,1,28,4,29,1,28,8,29,3,28,4,29,1,28,10,1,591,}, + {1,55,28,72,29,1,28,2,29,1,30,1,29,1,28,19,29,1,28,1,30,2,13,1,9,1,8,1,30,8,13,1,30,3,7,1,6,1,29,1,28,1,30,1,28,6,29,2,28,25,1,591,}, + {1,55,28,67,29,1,28,7,29,3,28,21,29,1,30,1,26,1,9,3,13,1,26,2,30,4,13,1,30,1,29,1,30,1,6,1,29,1,28,2,6,1,30,1,28,5,29,2,28,10,29,1,28,4,29,1,28,10,1,590,}, + {1,55,28,74,29,1,30,1,28,23,29,1,30,1,29,1,13,1,16,2,9,1,13,2,30,1,29,1,30,5,7,1,29,1,6,1,7,1,6,1,8,1,30,1,28,6,29,2,28,8,29,1,28,5,30,2,29,3,28,6,1,590,}, + {1,55,28,65,29,2,28,8,29,1,28,24,29,2,30,1,13,1,9,4,13,1,29,1,30,3,13,1,8,3,9,1,30,1,29,1,30,1,28,7,29,2,28,8,29,1,28,5,29,1,30,1,29,1,28,8,1,590,}, + {1,55,28,64,29,3,28,34,30,1,29,2,13,1,9,2,16,1,9,1,13,1,30,1,13,2,9,1,8,1,13,1,9,1,13,1,28,2,30,1,28,9,29,1,28,7,29,1,28,17,1,589,}, + {1,55,28,63,29,3,28,35,29,3,28,1,26,1,9,5,13,2,8,2,13,4,29,1,30,2,29,1,28,7,29,2,28,6,29,1,28,17,1,589,}, + {1,55,28,65,29,3,28,4,29,1,28,29,29,3,30,1,13,1,9,3,16,1,9,2,13,6,29,2,30,1,29,1,28,7,29,2,28,6,29,1,28,17,1,589,}, + {1,55,28,64,29,1,26,1,29,1,28,5,29,2,28,29,29,4,13,1,8,1,9,4,8,2,6,2,9,1,7,1,30,3,28,22,29,2,28,11,1,588,}, + {1,55,28,64,29,1,30,1,26,1,29,1,28,1,29,1,28,2,29,1,28,34,29,1,13,2,8,1,9,1,8,1,13,1,8,1,13,2,8,1,30,1,13,1,29,1,30,1,28,7,29,1,28,14,29,1,30,1,28,2,29,1,28,8,1,588,}, + {1,55,28,31,29,2,28,33,29,2,28,3,29,1,28,32,29,2,28,2,29,1,30,1,29,1,30,1,13,2,30,3,29,2,30,1,28,9,29,1,28,13,29,3,28,2,29,1,28,9,1,587,}, + {1,55,28,27,29,1,28,42,29,1,28,3,29,1,28,27,29,1,28,1,29,2,28,6,30,1,29,1,30,1,29,1,28,28,29,1,28,3,29,1,28,9,1,587,}, + {1,56,28,65,29,1,28,2,29,1,28,4,29,1,28,29,29,2,28,52,1,587,}, + {1,56,28,68,29,1,28,4,29,1,28,29,30,1,29,1,28,52,1,587,}, + {1,56,28,10,27,1,28,57,29,1,28,32,29,1,28,1,29,3,28,44,29,1,28,6,1,587,}, + {1,56,28,10,10,1,28,42,29,1,28,51,29,1,28,52,1,586,}, + {1,56,28,10,10,1,28,42,29,1,28,50,29,3,28,51,1,586,}, + {1,55,28,10,29,1,10,1,28,35,26,2,29,3,28,52,29,1,28,54,1,586,}, + {1,55,28,10,29,1,9,1,28,6,29,1,9,1,28,28,26,2,29,1,28,52,29,2,28,54,1,586,}, + {1,55,28,10,29,1,9,1,29,1,28,5,9,1,12,1,28,7,27,1,29,1,28,21,29,2,26,2,29,1,28,42,29,2,28,2,29,2,30,3,28,53,1,586,}, + {1,55,28,11,9,1,29,1,28,5,11,1,15,1,28,7,12,1,27,1,28,22,29,1,26,1,29,4,28,2,29,2,28,38,29,1,26,4,29,1,30,1,29,1,28,49,29,1,28,2,1,586,}, + {1,55,28,10,29,1,9,1,10,1,28,4,9,1,11,1,16,1,28,6,29,1,11,1,26,1,28,28,29,1,28,1,29,3,28,38,30,1,26,2,30,1,28,38,29,2,28,15,1,586,}, + {1,55,28,4,29,1,28,5,29,1,9,3,28,2,27,1,11,2,15,1,28,6,25,1,11,1,29,1,28,28,29,1,26,1,29,1,28,41,29,1,26,1,30,1,28,39,29,1,28,16,1,585,}, + {1,55,28,4,29,1,28,5,29,1,9,2,12,4,11,2,17,1,28,6,12,1,11,1,28,6,29,1,28,24,29,1,28,42,29,2,28,56,1,585,}, + {1,55,28,10,27,1,9,1,12,6,11,2,28,5,29,1,11,2,28,6,27,1,28,28,29,1,28,69,29,1,28,26,1,585,}, + {1,55,28,4,29,1,27,1,28,4,10,1,9,3,12,4,11,2,10,1,28,4,9,1,11,1,12,1,28,5,27,2,28,21,29,1,28,6,29,1,28,36,30,1,28,25,29,1,28,5,29,2,28,26,1,585,}, + {1,55,28,4,26,2,29,2,6,1,10,2,9,3,12,4,11,2,12,1,29,1,28,3,12,1,11,1,9,1,28,5,9,1,29,1,28,23,29,4,28,2,29,1,28,35,30,1,29,1,28,40,29,1,28,17,1,585,}, + {1,55,28,6,29,1,27,3,10,1,9,1,27,1,10,1,12,4,11,1,12,2,9,1,28,2,9,1,17,1,11,1,9,1,28,5,12,1,28,25,29,1,26,5,29,1,28,34,29,1,30,1,28,27,29,1,28,12,29,1,28,2,29,1,28,2,29,1,28,11,1,585,}, + {1,55,28,6,26,1,27,6,10,1,12,3,11,1,17,1,9,1,12,2,11,2,12,1,17,1,11,1,9,1,28,4,9,2,28,6,29,1,28,19,26,9,28,2,29,4,28,15,29,1,28,5,29,2,26,1,29,4,28,37,30,2,29,1,30,2,29,1,28,9,29,1,28,4,1,585,}, + {1,55,28,6,29,1,25,1,26,4,27,1,10,1,9,2,12,1,17,1,12,1,9,2,12,1,11,2,12,1,17,1,11,1,12,1,28,4,12,1,27,1,28,6,27,1,28,20,26,6,25,1,26,8,28,6,29,9,26,11,29,2,28,20,29,2,28,14,29,1,30,1,29,1,30,1,29,2,28,2,29,1,28,12,1,584,}, + {1,57,28,5,29,1,28,3,29,1,27,1,10,1,9,3,12,1,9,3,12,2,17,1,12,2,11,1,12,1,10,1,28,2,9,2,28,7,27,1,28,4,29,1,28,15,29,2,28,2,26,4,29,3,26,2,25,1,26,4,29,2,26,2,25,1,9,2,25,1,9,2,25,2,26,3,27,1,26,1,29,1,26,8,28,17,29,1,28,2,29,1,28,1,29,3,28,9,29,1,30,3,26,2,29,1,28,2,29,1,28,12,1,584,}, + {1,57,28,10,27,2,9,2,27,1,9,4,12,1,9,1,12,4,26,1,9,1,12,3,28,7,29,1,26,1,28,4,27,1,26,1,28,14,29,1,28,4,29,3,28,3,29,1,26,3,12,1,17,1,12,1,25,1,29,2,26,1,25,1,9,1,12,4,25,2,29,4,26,1,27,2,26,8,29,1,28,14,29,1,26,1,29,5,28,11,30,1,29,1,30,2,26,1,30,1,28,1,29,1,26,1,30,1,29,2,28,10,1,584,}, + {1,57,28,9,29,3,9,1,10,1,29,1,27,2,10,1,9,1,10,2,9,1,12,2,13,1,28,1,26,1,9,2,29,1,1,1,28,7,29,1,28,4,27,1,26,1,28,19,29,2,28,6,29,1,26,1,12,1,17,1,12,1,9,1,26,5,9,1,12,3,27,1,29,1,28,4,29,1,26,1,25,1,26,1,28,1,29,2,26,3,30,2,29,1,28,13,29,3,26,1,30,1,29,1,28,1,29,1,28,8,29,3,28,1,30,2,26,1,29,1,28,1,26,1,13,1,30,1,29,2,28,2,29,1,28,2,29,1,28,5,1,583,}, + {1,63,28,6,10,1,28,2,26,1,27,1,10,1,27,1,28,1,26,1,27,1,9,2,29,1,1,1,28,1,30,1,28,1,1,3,28,10,27,2,28,20,29,2,28,7,26,1,15,1,12,2,9,1,26,1,28,3,29,1,12,4,27,1,28,5,29,1,26,1,10,1,27,1,28,2,29,3,26,3,29,1,28,15,29,2,28,12,29,1,30,1,29,2,26,2,30,1,29,1,30,1,26,1,30,1,29,1,28,1,29,1,28,11,1,583,}, + {1,63,28,5,29,1,27,1,28,2,29,1,27,1,10,1,28,2,29,3,26,1,28,1,1,10,28,6,29,1,27,1,28,5,29,1,28,23,29,1,26,1,15,1,12,2,9,1,25,1,28,4,12,4,27,1,28,7,26,1,27,1,26,1,28,2,29,4,26,2,29,1,28,13,29,2,28,12,26,2,30,1,29,1,26,5,30,3,29,1,28,6,29,1,28,3,29,1,28,2,1,583,}, + {1,65,28,3,29,1,26,1,28,2,29,1,10,1,6,1,28,6,1,10,28,6,29,1,9,2,28,5,10,1,28,11,26,1,28,5,27,1,28,5,29,1,26,1,9,1,12,3,9,1,28,3,29,1,12,4,26,1,29,1,26,3,29,1,28,3,29,1,26,1,28,3,29,5,26,3,29,1,28,10,29,1,28,12,30,1,26,1,30,2,26,2,30,1,26,1,13,1,29,1,28,16,1,584,}, + {1,65,28,10,1,1,28,4,1,10,28,6,29,1,27,1,12,2,29,1,28,3,27,2,28,5,27,1,28,5,27,1,28,5,9,1,26,1,28,6,25,1,12,1,17,2,9,1,28,3,29,1,12,3,9,1,26,1,29,2,26,1,29,1,28,5,26,1,28,2,29,1,28,1,29,2,26,1,29,3,26,2,28,21,29,1,28,1,29,1,30,2,26,3,30,1,29,1,28,8,29,1,28,9,1,584,}, + {1,65,28,4,1,1,28,5,1,1,28,3,1,11,28,6,29,1,26,1,9,1,12,1,30,1,28,3,9,1,27,1,28,5,9,1,28,5,27,1,28,5,9,1,10,1,28,6,29,1,17,2,11,1,9,1,29,1,28,2,27,1,17,1,12,2,26,1,29,1,28,2,29,1,28,6,29,1,28,9,29,3,28,2,29,3,28,4,29,1,28,10,29,3,26,1,29,1,26,4,28,7,30,1,29,2,28,3,29,1,28,6,1,584,}, + {1,66,28,2,1,3,28,3,1,15,28,2,29,1,28,5,27,1,9,1,12,1,6,1,28,2,6,1,9,1,10,1,28,4,6,1,12,1,29,1,28,3,26,1,27,1,28,5,9,1,15,1,26,1,28,5,29,1,12,2,17,2,12,1,29,1,28,1,12,1,17,2,12,1,29,1,28,3,29,1,28,6,29,1,28,11,29,2,26,1,29,2,30,1,29,3,28,2,29,1,28,8,29,1,26,3,29,1,30,1,26,2,30,1,28,4,29,1,28,1,30,2,29,2,28,11,1,70,28,1,1,1,28,6,1,1,28,4,1,501,}, + {1,88,28,8,29,1,27,1,9,3,28,1,6,1,9,3,28,4,12,2,28,4,10,1,26,1,28,5,25,1,9,1,25,1,28,6,12,2,17,1,11,7,12,1,27,1,28,10,29,1,28,11,29,7,28,1,29,4,28,1,29,2,28,2,29,1,28,1,29,2,30,1,26,2,29,1,26,2,29,1,28,5,29,1,26,2,29,1,28,11,29,1,28,2,1,59,28,39,1,485,}, + {1,88,28,6,10,1,27,2,9,2,12,3,9,3,12,1,10,1,28,2,10,1,12,1,9,1,29,1,28,3,10,1,29,1,28,5,10,1,9,2,29,1,28,4,29,1,12,2,17,1,11,7,12,1,26,1,28,21,29,1,28,2,29,2,30,1,6,2,29,2,30,1,29,5,28,1,29,1,28,1,29,3,26,5,29,1,28,5,29,1,26,1,29,1,28,4,29,1,30,1,28,10,1,54,28,12,29,1,28,6,29,2,30,1,28,25,1,482,}, + {1,87,28,7,10,1,12,1,17,2,12,4,9,3,12,2,10,1,9,1,12,1,9,3,29,1,28,1,10,2,29,1,28,5,12,2,9,1,26,1,28,4,29,1,9,1,12,4,17,1,11,4,12,1,29,1,28,26,30,1,6,1,7,2,27,2,6,1,30,2,29,2,26,1,30,2,26,3,30,1,26,1,13,2,29,1,28,2,29,1,28,3,30,2,28,6,29,1,28,7,29,1,28,2,1,48,28,16,30,1,28,12,29,2,28,30,1,474,}, + {1,87,28,6,29,1,26,1,9,1,12,7,9,2,12,1,9,4,10,1,27,6,29,1,28,4,29,1,12,2,9,1,26,1,28,4,29,1,27,2,9,2,12,3,17,1,11,1,17,1,9,1,29,2,28,25,29,4,30,1,13,1,9,1,8,3,10,3,25,2,9,1,13,3,6,1,29,1,28,3,29,1,28,3,26,1,29,1,28,14,30,1,28,2,1,44,28,26,29,1,28,3,29,1,28,36,1,472,}, + {1,86,28,9,27,1,9,2,12,5,9,6,10,1,27,4,26,3,29,1,28,4,27,1,9,1,27,2,25,1,29,1,28,3,29,2,26,1,27,2,9,2,12,4,27,1,28,33,30,1,7,3,10,2,9,1,10,1,25,1,13,1,26,1,30,1,29,2,30,1,28,3,29,3,26,2,29,1,28,5,29,1,28,11,1,36,28,11,30,1,29,1,28,71,1,463,}, + {1,86,28,9,29,1,9,4,12,2,9,5,10,1,27,6,26,3,29,1,28,4,9,1,27,3,26,1,29,1,28,3,29,1,28,1,29,1,26,2,27,2,9,1,28,4,29,2,28,32,6,2,29,4,28,4,29,1,28,2,29,1,30,1,28,5,30,1,29,1,28,6,29,1,28,11,1,33,28,6,29,1,28,82,1,461,}, + {1,85,28,7,29,4,27,1,9,9,27,5,26,5,29,2,28,3,27,1,9,1,27,2,26,1,29,2,28,2,29,2,28,2,29,2,26,1,27,1,10,1,28,46,29,3,28,2,29,1,30,1,28,21,29,1,28,3,1,29,28,5,29,1,30,1,29,3,30,2,28,82,1,460,}, + {1,85,28,7,29,1,26,1,29,1,28,1,27,2,10,1,9,3,10,2,9,1,10,1,27,4,26,2,29,2,26,1,29,4,10,1,9,2,27,2,29,1,28,10,29,1,26,1,27,2,29,1,28,44,29,1,26,1,29,2,28,1,29,1,26,1,30,1,28,2,29,2,28,1,29,1,28,20,1,25,28,8,29,3,28,2,29,2,28,84,1,458,}, + {1,85,28,5,29,3,27,2,29,2,27,2,9,3,10,1,9,2,27,5,26,2,29,5,28,1,29,1,9,3,27,1,26,1,28,10,29,2,26,1,27,1,10,1,29,1,28,44,29,2,28,3,26,1,30,1,28,3,30,1,29,2,28,6,29,1,28,14,1,22,28,4,29,1,28,4,30,1,29,1,28,1,30,1,29,1,28,91,1,455,}, + {1,84,28,7,29,1,27,1,9,1,27,2,29,2,27,1,10,1,9,2,10,1,9,1,10,1,27,5,26,3,29,2,28,3,27,1,9,2,10,1,27,1,29,1,28,10,29,2,27,1,9,2,27,1,28,20,29,1,28,24,29,1,28,1,29,2,30,1,28,2,30,2,29,1,28,6,29,2,28,15,1,17,28,7,29,3,28,7,29,2,28,98,1,448,}, + {1,84,28,8,26,1,9,1,10,1,27,2,29,1,27,1,10,1,9,4,27,7,26,2,29,1,28,3,27,1,9,2,10,1,26,1,29,1,28,12,26,1,29,2,25,1,10,1,29,1,28,17,29,1,28,26,26,1,30,1,29,1,26,1,29,1,30,1,26,2,29,1,28,3,29,2,28,1,29,1,28,17,1,14,28,6,30,1,29,1,30,1,6,1,30,2,6,1,29,1,28,1,29,1,28,107,1,445,}, + {1,84,28,8,29,1,27,6,10,1,9,1,10,3,27,7,26,1,29,2,28,2,29,1,9,2,27,1,26,1,29,1,28,12,29,2,28,3,26,1,27,1,29,1,28,4,29,1,28,9,29,1,30,1,28,26,29,1,26,2,30,2,26,3,29,2,28,8,29,1,28,12,29,1,28,2,1,12,28,2,7,1,6,1,29,1,28,3,30,2,29,1,28,3,30,1,26,1,29,1,28,111,1,442,}, + {1,84,28,8,29,1,26,3,27,3,9,1,10,4,27,6,26,1,29,2,28,2,29,1,9,2,10,1,26,1,29,1,28,13,29,2,28,4,26,1,29,1,28,4,29,1,30,1,29,1,28,6,26,1,29,2,28,17,29,2,28,6,29,2,26,3,29,1,30,2,26,2,29,1,28,20,29,1,30,1,29,1,28,2,1,9,28,3,29,1,30,2,28,2,30,1,29,1,30,3,29,1,28,118,1,440,}, + {1,83,28,6,26,2,29,5,26,1,27,2,10,1,27,2,10,1,27,5,26,3,29,1,28,3,27,1,9,2,27,1,29,1,28,14,29,1,27,1,28,4,29,1,28,6,29,2,28,5,29,2,28,3,29,2,28,14,29,2,28,1,29,1,28,2,29,2,30,2,29,1,28,2,29,4,28,2,29,3,28,4,29,1,28,13,29,2,28,3,1,7,29,1,10,1,7,1,30,1,28,3,30,1,6,1,13,2,30,2,28,121,1,439,}, + {1,83,28,7,27,2,29,2,26,1,27,3,10,1,27,2,10,2,27,4,26,2,29,2,28,3,26,1,9,2,27,1,26,1,28,14,29,1,27,1,10,1,29,1,28,15,29,1,28,6,29,2,28,13,29,1,28,1,29,5,28,1,29,1,30,1,29,1,28,4,29,1,28,4,29,1,30,1,29,1,28,24,1,5,28,1,6,1,16,1,9,1,28,3,30,4,29,2,28,123,1,438,}, + {1,83,28,7,29,1,27,3,29,1,27,2,10,2,27,7,26,1,29,3,28,4,10,1,9,1,27,1,26,1,29,1,28,14,26,1,9,2,26,1,28,13,29,2,28,4,29,2,28,14,29,2,28,2,29,2,30,1,29,2,30,1,26,1,29,2,26,1,29,1,28,6,29,3,28,25,1,3,28,3,6,1,13,1,28,2,29,1,13,1,6,1,8,1,6,1,30,1,29,1,28,125,1,437,}, + {1,83,28,8,29,1,26,1,27,4,10,2,27,7,26,1,29,1,28,5,27,1,9,1,27,1,26,1,29,1,28,16,25,1,12,1,25,1,28,18,29,3,28,1,29,1,28,12,29,2,28,3,29,1,26,1,29,1,28,1,29,1,26,3,28,8,26,1,30,1,28,7,29,2,28,9,29,2,28,6,1,2,28,2,7,1,9,1,13,1,29,1,28,1,6,1,13,4,9,1,13,1,30,1,29,1,28,125,1,436,}, + {1,82,28,6,29,2,28,1,29,2,26,1,27,3,10,1,27,2,10,1,27,2,26,3,29,1,28,5,29,1,10,2,27,1,29,1,28,18,25,2,28,17,29,1,26,1,29,2,28,1,29,2,28,6,29,2,28,10,29,1,30,1,26,3,28,3,29,1,28,4,29,1,26,1,29,1,28,1,29,1,28,4,29,1,30,1,28,10,29,7,28,3,29,1,9,1,16,1,9,1,30,1,29,1,13,2,8,1,13,1,29,1,28,1,29,1,26,1,30,1,29,1,28,7,29,1,28,7,29,1,28,110,1,435,}, + {1,82,28,6,29,2,28,2,29,2,26,1,27,2,10,4,27,1,26,1,29,4,28,5,27,1,10,1,27,1,29,1,28,13,26,1,28,22,29,1,28,2,29,3,28,2,29,1,28,14,29,1,28,3,29,1,26,1,29,1,30,1,29,1,28,2,30,1,29,1,28,1,29,1,28,2,26,2,28,1,29,1,30,1,28,3,29,1,30,1,28,12,29,1,30,1,28,3,29,2,28,1,29,3,30,2,29,2,28,1,29,1,13,1,6,1,30,1,29,1,28,1,29,1,28,2,29,1,28,2,29,1,28,3,29,1,28,9,29,1,28,109,1,434,}, + {1,82,28,7,29,1,28,2,29,2,26,1,27,2,10,4,26,1,29,4,28,5,26,1,27,2,29,1,28,14,27,1,28,21,29,1,28,4,29,2,28,17,29,1,28,3,29,2,28,5,29,1,28,5,30,1,28,2,29,1,28,3,29,2,28,13,29,1,28,4,29,3,30,1,29,2,30,2,29,1,28,2,13,1,9,1,13,1,30,3,28,6,29,2,28,3,29,1,28,6,29,1,28,3,29,1,30,1,29,1,28,28,30,1,29,1,28,76,1,433,}, + {1,82,28,8,29,2,28,1,29,1,26,1,27,4,10,1,27,1,29,4,28,5,29,1,27,2,29,2,28,13,26,1,27,2,28,49,29,1,28,11,29,1,28,5,29,2,28,18,29,4,26,1,30,2,28,2,29,2,13,1,30,2,8,1,13,1,30,1,28,3,29,1,28,4,29,1,28,2,29,2,28,6,29,2,28,114,1,430,}, + {1,82,28,9,29,4,27,3,10,1,27,1,26,1,29,3,28,5,29,1,27,2,26,1,28,15,26,1,9,2,29,1,28,18,29,1,28,36,29,1,28,3,29,2,28,4,29,2,28,20,29,2,28,1,29,1,30,2,29,2,28,1,29,2,30,2,13,2,28,2,30,2,29,1,28,2,30,1,29,1,28,4,29,2,28,54,30,1,28,69,1,427,}, + {1,82,28,10,29,2,26,1,27,3,10,1,27,1,29,3,28,6,27,2,29,2,28,9,29,1,28,6,9,1,12,1,27,1,28,18,29,1,28,35,29,1,28,2,29,1,28,1,29,1,28,6,29,1,28,13,29,1,28,6,29,2,28,1,29,2,30,3,29,4,28,1,13,1,29,1,28,1,30,1,9,1,13,1,29,1,28,2,26,1,9,1,29,1,28,59,30,1,28,72,1,424,}, + {1,81,28,11,29,2,26,1,27,4,26,1,29,2,28,5,29,1,27,1,26,1,28,10,29,1,28,1,29,1,28,6,29,1,12,1,9,1,28,17,29,3,28,33,29,1,30,1,28,4,30,1,28,12,29,1,28,13,29,1,28,3,29,3,30,2,29,2,28,3,13,1,29,1,28,2,15,2,30,1,28,3,13,2,29,1,28,57,29,1,13,1,28,74,1,422,}, + {1,80,28,5,29,1,28,4,29,4,27,5,29,1,28,7,27,2,28,11,29,4,28,6,29,1,28,16,29,3,28,34,29,3,28,1,29,1,28,1,29,1,28,12,29,1,28,11,29,2,28,5,29,6,28,4,29,1,30,1,29,1,28,1,8,1,14,1,13,1,28,3,29,1,13,1,29,1,28,1,29,1,28,55,29,1,8,1,28,76,1,420,}, + {1,78,28,7,29,1,28,4,29,3,26,1,27,4,29,1,28,7,27,1,26,1,28,8,29,1,28,4,29,1,27,2,28,23,29,3,28,28,29,2,28,4,30,1,26,1,29,1,28,2,29,1,28,8,30,1,28,9,29,1,28,6,29,1,30,1,29,1,28,2,29,3,28,2,29,1,30,2,29,1,28,3,29,2,30,3,9,1,13,1,28,2,13,2,28,3,30,1,28,47,29,1,28,7,30,1,9,1,28,14,29,1,28,62,1,419,}, + {1,77,28,14,29,2,26,1,27,4,29,1,28,6,26,1,27,1,28,9,27,1,28,5,27,2,28,22,29,4,28,28,29,1,28,4,30,1,29,1,28,4,29,3,28,5,29,1,28,11,29,1,28,5,29,1,26,1,28,4,29,5,30,2,29,1,28,1,29,4,30,2,26,1,9,1,28,3,13,1,30,1,28,2,30,1,13,1,30,1,28,48,29,1,28,1,29,2,30,2,13,1,16,1,30,1,28,4,30,1,6,1,29,1,28,72,1,416,}, + {1,77,28,15,26,1,27,4,26,1,28,6,29,1,27,1,29,1,28,9,29,2,28,28,29,4,28,32,29,1,30,1,28,2,26,1,29,5,28,23,29,1,28,6,29,2,30,1,28,1,29,1,30,1,28,2,29,3,28,1,30,1,13,3,28,2,29,1,13,1,28,3,30,2,29,1,30,1,28,47,30,1,28,4,30,1,13,1,9,1,7,1,29,1,28,2,29,1,13,2,30,3,28,72,1,414,}, + {1,77,28,15,29,1,27,4,28,6,29,1,26,1,29,1,28,11,29,1,28,27,29,4,28,23,29,2,28,5,29,1,28,5,26,2,29,2,28,7,30,1,28,11,29,1,28,8,30,1,28,5,29,3,28,1,29,1,30,1,29,1,28,5,13,2,26,1,28,2,29,2,28,3,6,1,28,1,29,3,28,31,29,2,28,3,29,1,28,8,30,2,28,3,29,1,30,2,8,1,9,1,7,3,30,2,6,1,30,1,29,5,28,51,29,1,28,21,1,410,}, + {1,77,28,15,26,1,27,3,29,1,28,6,27,1,29,1,28,39,29,1,30,1,29,1,28,25,29,1,28,4,29,3,28,4,29,1,28,11,29,1,28,11,26,1,28,8,30,1,28,3,29,1,28,1,29,2,30,1,29,1,28,1,30,1,26,1,29,1,28,5,13,2,26,1,30,1,28,5,30,2,28,2,29,2,28,41,29,1,28,2,30,1,6,1,28,3,30,2,13,1,9,2,6,1,29,1,13,1,28,1,30,1,8,1,7,1,30,1,28,1,29,1,30,1,29,2,28,1,29,2,28,47,29,2,28,21,1,409,}, + {1,76,28,15,29,1,26,1,27,2,29,1,28,6,26,1,29,1,28,4,29,2,28,33,29,1,30,2,28,13,29,1,28,11,29,2,28,21,29,3,28,7,29,1,30,1,28,2,30,1,29,1,28,7,29,1,28,3,29,4,28,1,29,3,30,1,28,2,29,1,28,3,26,1,13,2,29,1,28,1,29,1,30,1,28,2,13,1,30,1,28,2,29,1,28,33,30,1,28,8,30,1,29,1,28,2,29,1,28,3,30,2,9,1,16,2,9,1,29,1,30,1,28,1,29,1,8,1,9,1,7,1,28,1,29,1,13,1,30,1,26,1,13,1,6,1,28,48,29,2,28,25,1,405,}, + {1,76,28,14,29,2,27,3,28,6,29,2,28,2,29,1,26,1,27,3,28,32,29,1,30,2,29,1,28,49,29,1,28,13,29,1,28,7,29,1,28,6,29,1,28,1,29,4,28,2,29,2,28,1,29,1,30,1,13,2,29,1,28,1,30,1,29,1,28,2,13,2,29,2,30,1,28,32,29,1,30,1,28,10,29,1,30,1,29,1,28,3,29,1,30,1,15,2,9,1,8,1,7,1,29,1,28,2,13,1,8,1,9,1,28,2,26,1,13,1,8,1,13,1,29,1,28,49,29,1,28,25,29,1,28,2,1,402,}, + {1,76,28,14,29,1,27,3,29,1,28,5,29,2,28,5,29,1,9,1,10,1,29,1,28,31,30,1,29,1,28,22,29,1,28,27,29,1,28,32,29,1,30,1,28,3,13,1,29,1,28,1,29,2,30,1,13,2,30,1,26,1,30,1,28,2,30,1,8,1,30,1,26,1,30,2,28,39,29,1,28,3,29,1,30,1,29,1,28,1,29,1,28,1,29,1,13,1,14,1,15,1,9,1,6,1,30,1,28,3,30,1,8,1,13,1,28,3,30,1,13,1,28,48,29,1,28,1,29,2,28,25,29,2,28,5,1,398,}, + {1,76,28,14,29,1,27,3,28,6,29,1,28,7,26,1,12,1,27,1,29,1,28,29,29,2,28,46,29,2,28,2,29,1,28,33,29,3,28,2,30,2,28,1,29,1,28,2,26,1,13,1,29,1,30,2,29,1,28,1,29,1,13,1,29,1,30,2,29,1,28,30,29,1,28,6,29,2,26,1,28,3,30,3,29,1,28,1,29,1,13,1,15,2,9,1,8,1,7,2,13,1,30,1,28,1,30,1,8,1,6,1,29,1,28,3,30,3,28,48,29,2,28,34,1,396,}, + {1,76,28,14,26,1,27,2,29,1,28,10,29,1,28,4,25,1,9,1,26,1,28,28,29,2,28,22,29,1,28,24,29,1,30,1,29,1,28,5,29,1,28,8,29,2,28,13,29,2,28,4,29,1,28,1,30,1,28,3,30,1,29,2,30,1,28,1,29,1,26,1,30,1,29,1,30,2,28,2,13,1,28,33,29,1,28,13,26,1,13,1,30,2,28,1,29,1,15,1,14,1,15,2,8,1,6,2,13,2,30,2,15,1,8,1,28,3,13,1,6,1,13,1,30,1,28,48,29,3,28,14,29,2,28,17,29,1,28,2,1,393,}, + {1,76,28,14,27,3,28,5,29,1,28,5,29,1,28,5,26,1,29,1,28,27,29,1,30,1,28,24,29,3,28,21,29,1,30,2,28,14,29,1,30,2,29,1,28,12,29,1,28,11,30,1,28,2,29,2,30,1,13,1,29,1,26,1,30,1,28,2,30,1,29,1,28,31,29,1,28,7,26,1,28,5,29,1,30,1,13,3,6,1,30,1,14,2,16,1,15,1,13,1,9,1,8,1,30,1,29,1,28,1,30,1,14,1,13,1,28,2,13,1,15,1,13,1,30,1,28,50,29,3,28,14,29,1,28,17,29,2,28,5,1,389,}, + {1,76,28,13,29,1,27,2,29,1,28,11,29,2,28,32,29,3,28,21,29,1,28,18,29,1,28,5,29,1,30,1,26,1,30,1,28,14,30,1,29,1,28,15,29,1,28,15,29,3,28,1,30,1,26,1,28,33,29,2,28,8,29,1,28,7,30,2,29,1,28,1,30,1,11,1,15,1,9,1,30,2,13,2,30,3,13,1,15,1,9,1,28,2,9,2,28,2,29,2,28,48,29,3,28,34,29,1,28,2,29,1,28,3,1,387,}, + {1,76,28,13,27,3,28,12,29,1,27,1,28,31,29,2,28,10,29,1,28,30,29,1,28,2,29,1,28,2,26,3,29,1,28,17,29,1,28,2,29,1,28,15,29,1,28,8,29,1,26,1,28,1,29,1,28,4,13,1,28,33,29,1,28,8,29,1,28,8,29,3,6,1,15,1,14,1,9,2,30,1,29,1,30,1,13,5,15,1,16,1,29,1,8,1,16,1,13,1,30,1,28,65,29,1,28,5,29,1,28,19,29,1,28,5,1,385,}, + {1,75,28,14,26,1,27,1,29,1,28,13,27,1,28,30,29,1,30,1,29,1,28,10,29,1,28,29,29,3,30,3,26,2,30,1,28,38,30,1,29,1,28,7,29,1,28,6,29,1,26,1,29,1,28,31,29,1,28,9,29,2,28,9,30,1,14,2,9,1,13,1,30,2,13,1,9,1,30,2,13,1,30,1,13,1,16,2,30,1,16,1,7,1,6,1,30,1,28,1,29,1,28,48,29,1,28,14,29,1,28,4,29,1,30,1,29,1,28,20,29,1,28,1,29,2,28,1,1,384,}, + {1,74,28,5,29,1,28,8,29,1,27,2,28,43,29,3,28,11,29,1,28,27,29,1,30,1,26,2,28,1,29,1,26,3,29,1,28,51,29,1,28,5,29,2,28,41,29,1,30,1,28,8,13,1,16,1,14,1,16,1,13,1,30,1,13,2,8,1,13,1,30,2,13,3,9,1,8,1,9,2,29,1,30,1,29,2,28,48,29,2,28,1,29,1,28,13,29,1,28,3,13,1,30,2,29,1,28,1,29,2,28,19,29,1,28,3,1,382,}, + {1,73,28,16,29,1,26,1,28,42,29,1,30,2,28,11,30,1,28,2,29,1,28,23,29,1,30,4,29,2,30,1,26,1,30,1,29,1,28,51,26,1,29,1,28,48,29,2,28,4,29,1,13,1,28,2,9,3,6,1,29,2,30,1,8,1,6,1,30,1,13,1,30,1,13,2,30,2,6,1,8,1,29,1,6,1,28,2,29,1,28,51,29,1,28,14,29,3,13,3,30,1,29,2,30,1,28,26,1,379,}, + {1,73,28,26,29,1,28,32,29,2,28,11,29,1,30,1,28,27,30,1,26,1,29,1,30,1,29,1,28,1,30,1,29,2,28,11,29,1,28,41,30,1,28,2,29,2,28,32,29,1,28,20,29,1,8,1,9,1,13,2,29,1,28,1,29,1,30,1,9,4,30,1,13,1,30,1,29,1,13,1,9,1,6,1,29,2,28,54,30,1,29,1,28,14,29,2,13,1,30,1,13,1,30,2,29,2,28,9,29,2,28,17,1,377,}, + {1,73,28,58,29,2,28,10,29,2,26,1,29,1,28,17,29,3,28,4,29,3,26,2,30,1,29,2,28,60,29,2,28,31,29,1,28,19,29,1,28,1,13,2,29,1,28,1,29,1,30,2,29,1,13,1,15,1,13,1,30,3,13,1,28,1,30,1,14,1,16,1,6,1,29,1,28,55,29,1,28,13,29,1,30,2,29,1,30,1,29,1,30,1,13,1,29,1,30,5,28,8,29,1,28,19,1,374,}, + {1,73,28,58,29,2,28,8,29,1,30,3,29,2,28,5,29,1,28,4,29,1,30,2,26,2,29,2,26,3,29,1,28,1,29,1,30,2,29,2,28,1,29,2,28,35,29,1,28,27,29,1,28,43,29,1,28,7,26,1,13,2,29,1,28,3,29,1,13,1,9,1,14,1,16,1,7,1,30,1,29,1,28,1,29,2,15,2,7,1,30,1,6,1,30,1,28,1,29,1,28,2,29,1,28,56,29,1,28,6,30,2,13,1,30,3,13,2,26,1,30,1,13,2,30,3,28,29,1,372,}, + {1,73,28,56,29,3,28,9,29,1,30,1,29,1,28,7,29,5,30,1,26,5,30,1,29,1,26,2,30,3,29,2,30,1,29,1,28,38,29,1,28,28,29,1,28,48,30,2,13,2,30,1,28,1,29,2,28,2,30,1,13,1,15,1,14,1,9,1,7,1,30,1,29,1,28,1,13,1,16,1,15,1,9,1,30,2,8,1,9,1,13,1,30,1,28,1,29,2,28,26,29,1,28,35,29,1,30,1,28,1,30,1,13,1,30,2,13,2,8,1,29,1,30,1,13,2,30,1,29,1,30,1,28,10,29,1,28,19,1,370,}, + {1,72,33,1,28,21,29,1,28,34,30,2,28,8,30,2,29,1,28,8,29,4,30,1,29,2,30,3,29,1,6,1,30,1,6,3,29,1,6,1,29,3,28,76,29,1,28,41,26,1,13,2,30,1,28,4,29,1,28,1,30,1,9,1,15,1,9,2,29,3,8,1,15,1,16,1,9,1,13,3,29,1,30,1,26,1,28,2,29,1,28,26,29,2,28,23,30,1,29,1,28,12,29,1,30,5,13,1,8,1,29,1,30,1,9,1,13,4,29,1,28,9,29,1,28,21,1,368,}, + {1,72,28,67,30,1,29,1,28,5,29,1,28,1,29,6,6,1,29,2,6,1,29,1,28,1,29,1,6,1,29,1,6,1,29,2,28,2,29,1,28,1,29,1,28,26,29,1,28,50,29,1,28,35,29,2,28,2,26,1,13,1,30,1,29,1,28,5,30,1,13,1,8,1,9,1,13,1,9,2,28,1,29,1,9,1,15,1,16,1,8,4,6,1,29,1,30,2,28,1,29,1,28,50,29,1,28,1,30,1,29,1,28,12,30,1,13,2,30,4,13,1,30,2,9,1,13,1,30,2,29,1,28,1,29,1,30,1,28,33,1,364,}, + {1,72,33,1,28,12,29,2,28,49,29,5,28,3,29,5,6,2,29,1,28,2,29,1,6,2,29,1,28,1,29,2,28,1,29,1,6,1,29,1,28,18,29,1,28,13,29,1,28,50,30,1,28,31,29,1,28,6,29,1,13,1,28,5,30,1,28,2,13,1,15,1,16,1,9,2,16,1,9,1,6,1,9,1,14,1,16,1,7,1,30,1,6,1,13,1,29,2,28,1,30,2,29,1,28,67,26,1,13,2,30,1,13,2,30,1,13,1,30,2,13,3,30,1,29,1,28,1,29,1,30,2,28,2,29,2,28,31,1,361,}, + {1,72,33,1,28,6,29,2,28,4,29,2,28,46,30,1,29,2,28,4,29,1,28,1,29,2,28,13,29,1,6,2,7,2,29,3,28,113,29,1,28,7,26,1,6,1,28,5,29,1,30,1,28,1,30,1,9,4,7,1,13,1,16,1,14,2,9,2,8,1,7,1,30,3,6,1,29,1,9,1,30,1,28,67,29,1,9,2,13,1,30,1,13,1,30,1,26,1,13,1,29,2,30,2,13,2,30,1,29,1,30,3,28,2,30,1,28,34,1,359,}, + {1,73,28,6,29,2,28,5,27,1,28,46,29,1,30,2,28,1,29,4,28,16,29,1,28,3,29,1,28,2,29,1,28,68,29,1,28,52,30,1,28,4,30,1,29,2,28,2,13,1,15,1,9,2,16,3,9,6,13,1,29,1,6,1,13,1,30,2,13,1,30,1,28,2,30,1,28,51,29,1,28,13,30,1,13,2,30,1,13,1,30,2,13,2,30,1,26,1,13,3,29,1,28,1,30,3,28,40,1,356,}, + {1,72,28,50,29,1,28,11,29,1,30,1,28,2,29,2,28,146,29,1,28,4,29,1,28,3,29,1,13,1,9,1,16,1,15,1,16,1,15,1,14,2,16,1,9,1,13,2,15,1,30,1,29,1,30,1,13,2,30,2,6,1,28,54,29,1,28,13,29,1,30,1,13,7,30,1,13,1,9,1,13,1,29,3,30,3,29,2,28,40,1,354,}, + {1,72,28,48,29,1,28,2,29,1,28,7,29,1,28,1,29,3,28,147,29,1,30,1,28,8,29,1,30,1,29,1,28,1,13,1,16,1,15,1,9,1,16,1,9,1,8,3,13,1,9,1,15,1,28,2,13,2,30,1,29,1,30,2,28,13,30,1,28,40,29,1,28,13,29,1,30,1,13,2,26,1,8,2,30,1,26,1,29,1,13,3,30,1,29,1,30,1,26,1,30,1,26,1,29,2,28,42,1,352,}, + {1,72,28,48,29,1,28,10,26,1,30,1,29,2,30,1,28,151,29,3,28,3,29,1,30,1,28,2,9,1,11,2,14,1,9,2,6,1,13,2,8,1,13,1,9,1,30,2,9,1,30,1,29,1,30,1,13,1,30,1,28,4,29,1,28,49,29,1,28,14,30,1,26,1,13,2,8,1,13,1,30,1,29,1,30,1,9,2,13,1,30,2,29,1,30,1,26,1,13,1,29,1,28,45,1,350,}, + {1,71,28,48,29,1,28,10,29,1,30,1,29,4,28,1,1,1,28,149,30,1,28,5,29,1,28,2,15,1,11,1,14,2,9,2,8,1,30,2,13,1,30,1,29,1,13,1,9,1,8,1,6,1,29,3,13,1,9,1,30,2,28,2,29,1,28,49,30,1,28,9,29,1,30,1,29,1,28,2,30,2,9,1,13,2,30,1,29,2,13,1,15,2,9,1,6,1,13,1,29,1,30,1,13,1,26,1,29,3,28,30,29,1,28,1,29,1,28,12,1,348,}, + {1,70,28,48,29,2,28,9,30,1,29,2,28,3,1,4,28,73,29,1,28,59,29,1,28,1,29,1,28,4,29,1,28,12,29,2,26,1,15,1,11,1,14,1,15,1,9,2,8,1,6,1,28,1,6,2,30,2,13,1,6,1,7,1,30,1,29,1,28,1,29,2,13,1,30,1,28,53,30,1,28,9,26,1,30,1,28,3,13,3,29,1,30,1,28,2,30,2,13,3,30,1,29,2,26,1,13,1,26,1,30,1,29,2,28,1,29,1,28,32,29,1,28,11,1,347,}, + {1,70,28,20,29,2,28,24,29,3,28,10,30,2,29,1,28,1,1,7,28,151,29,1,13,1,9,1,15,1,14,2,9,1,13,1,9,1,16,1,6,1,28,2,6,1,30,1,29,1,13,1,7,2,30,2,29,1,30,1,29,1,28,1,30,1,29,1,28,53,29,1,28,9,29,1,28,1,29,1,28,2,13,2,6,1,28,1,30,1,9,2,13,5,30,1,29,1,28,1,13,2,26,1,30,2,29,3,28,21,29,2,28,16,29,1,28,6,1,345,}, + {1,70,28,44,29,4,28,8,29,4,30,2,1,9,28,139,29,1,28,10,30,1,15,1,14,1,8,1,30,1,13,3,9,2,6,1,28,2,29,1,13,1,30,1,13,2,6,1,30,1,13,1,28,1,30,1,29,1,28,1,13,2,28,3,26,1,28,49,30,1,28,9,29,1,30,2,29,1,28,1,29,1,30,2,13,2,9,2,13,1,9,1,13,2,9,1,13,1,30,2,13,2,29,1,30,2,29,2,28,21,29,1,30,1,29,1,28,19,29,1,28,4,1,344,}, + {1,69,28,44,29,4,28,9,29,2,28,1,29,1,26,1,1,12,28,147,26,1,9,2,13,1,30,3,9,3,16,1,9,1,6,2,28,2,30,1,6,1,29,2,28,1,13,3,28,2,9,2,29,1,26,2,30,2,28,47,29,2,28,10,30,1,29,1,30,1,28,2,13,1,26,1,13,2,6,1,30,1,29,1,13,1,30,1,29,1,30,3,26,1,13,2,30,1,13,1,29,1,30,1,28,18,29,1,28,3,29,2,28,26,1,343,}, + {1,69,28,42,29,2,28,1,29,1,28,15,1,14,28,134,29,1,28,6,29,2,28,2,13,1,8,1,13,1,29,1,30,1,13,1,9,1,15,1,9,1,13,1,15,1,9,2,6,1,7,1,29,2,30,1,6,1,30,1,28,2,29,1,13,2,29,1,13,3,30,1,29,2,28,49,29,2,28,10,29,2,30,1,28,1,29,1,9,1,13,1,30,2,29,1,28,1,29,1,13,2,29,1,28,1,30,1,13,3,30,1,13,2,29,2,28,52,1,341,}, + {1,69,28,41,29,4,28,10,29,2,28,3,1,16,28,143,29,1,30,3,28,1,13,1,9,3,13,1,9,2,13,2,30,1,7,1,29,2,6,1,13,1,29,1,30,2,29,1,28,2,30,1,13,1,30,1,29,1,28,61,30,2,29,3,30,1,29,1,28,1,13,2,6,1,13,1,28,2,30,1,13,1,9,1,13,6,30,1,13,1,26,1,29,1,28,17,30,1,29,1,28,36,1,339,}, + {1,69,28,39,29,2,28,13,29,3,28,2,1,17,28,124,29,1,28,18,30,1,28,3,29,1,30,1,29,1,30,1,29,1,30,1,9,1,8,1,13,2,30,2,6,2,29,2,30,2,28,4,30,2,29,1,28,54,29,1,28,8,29,1,28,1,29,1,30,2,29,1,28,1,13,4,28,2,13,3,6,1,30,1,29,1,13,4,30,2,28,18,30,2,28,38,1,337,}, + {1,70,28,37,29,2,28,17,1,20,28,142,29,1,28,8,30,1,9,1,13,1,30,1,13,1,30,2,29,1,30,1,28,1,29,1,30,1,28,3,13,2,30,3,29,2,28,52,30,1,28,4,29,1,28,6,29,2,30,1,29,1,13,2,8,1,13,1,28,2,30,1,9,1,8,1,6,1,30,2,13,1,9,1,13,1,30,3,28,60,1,335,}, + {1,70,28,35,29,2,28,15,29,1,28,2,1,22,29,2,28,145,13,1,29,1,28,1,30,1,13,1,30,2,9,1,6,1,30,1,29,1,30,2,13,2,28,1,29,1,26,1,29,1,28,2,29,1,28,54,29,2,28,4,29,1,28,5,29,2,30,2,28,1,29,1,26,1,9,1,13,1,29,1,9,2,15,1,8,1,29,2,30,1,13,1,9,1,13,1,30,2,29,1,28,1,30,1,28,15,29,1,28,44,1,333,}, + {1,71,28,34,29,1,28,15,29,2,28,1,1,23,28,2,29,1,28,143,29,1,30,1,29,2,9,1,13,1,6,1,9,2,8,1,30,1,28,3,29,1,13,1,30,2,28,3,29,2,28,2,29,1,30,1,28,50,29,1,28,5,29,1,28,2,30,5,26,1,13,1,28,1,29,1,9,1,15,1,9,1,6,1,8,1,13,1,9,1,13,1,29,1,28,1,13,2,9,1,13,1,30,1,29,1,30,2,29,1,28,14,29,1,28,46,1,332,}, + {1,72,28,30,29,3,28,13,29,2,28,3,1,25,28,129,29,1,28,15,29,1,30,1,13,1,9,1,13,2,16,1,9,1,6,1,29,1,28,3,13,1,28,2,29,1,28,3,30,2,28,3,29,1,28,51,29,2,28,7,29,1,28,1,29,2,30,4,9,1,14,2,9,1,6,1,30,1,13,3,29,2,13,3,30,1,29,1,30,1,13,1,30,1,28,59,29,1,28,4,1,330,}, + {1,72,28,29,29,1,28,15,29,1,30,2,28,2,1,26,28,131,29,1,28,12,29,1,13,1,9,2,29,1,30,1,15,1,9,1,6,1,29,1,28,2,29,1,13,2,29,2,13,1,30,1,29,1,28,1,30,2,28,2,29,2,28,39,29,2,28,11,29,1,28,6,29,1,28,4,30,4,13,1,15,1,13,2,6,2,13,1,9,1,8,1,29,1,28,1,13,1,9,1,13,2,29,1,13,2,28,14,29,1,28,45,30,1,29,1,28,4,1,329,}, + {1,73,28,25,29,2,28,16,29,1,30,1,26,1,28,1,1,29,28,132,29,1,28,10,30,1,9,1,13,1,30,1,6,1,9,1,16,1,7,1,6,1,29,2,9,1,13,1,29,1,28,1,6,1,30,1,9,1,13,1,29,1,30,1,29,1,28,9,29,1,28,59,30,2,13,1,30,1,28,1,13,1,29,1,13,1,8,1,6,1,9,1,15,1,8,1,30,2,13,4,30,1,13,1,30,1,28,47,29,1,28,19,1,328,}, + {1,73,28,24,29,2,28,16,29,2,28,1,1,31,28,143,13,1,9,1,30,2,9,1,16,1,9,1,13,1,29,2,9,2,30,1,29,1,13,2,30,1,13,1,28,2,30,2,6,1,30,3,29,1,28,3,29,1,28,11,29,1,28,22,29,1,28,22,30,1,29,1,28,1,30,2,13,1,7,1,28,1,30,1,13,1,9,1,8,1,9,3,13,1,30,1,26,1,9,1,13,4,30,1,28,1,29,1,28,12,29,1,28,55,1,326,}, + {1,74,28,19,29,2,28,2,29,1,28,14,29,4,28,1,1,33,28,142,13,2,29,1,8,1,14,1,16,1,13,1,30,1,13,2,8,1,6,2,13,1,30,1,29,1,13,2,29,1,30,1,28,1,30,1,9,1,13,1,26,2,30,2,29,1,28,59,30,1,29,1,28,1,30,1,13,2,30,1,29,1,13,1,9,3,8,1,9,2,13,1,30,1,13,6,29,2,30,1,28,11,29,1,28,57,1,325,}, + {1,74,28,20,29,1,28,17,29,1,28,3,1,35,28,124,29,1,28,11,29,1,28,3,30,1,26,1,29,1,8,1,16,1,15,1,9,1,30,1,13,1,15,1,8,1,6,1,7,1,8,1,30,1,28,2,29,1,30,1,9,1,30,2,9,1,8,1,28,4,29,1,28,62,29,2,30,3,13,2,9,1,15,1,8,1,28,1,13,1,16,1,30,1,26,1,13,3,30,1,13,2,29,3,28,10,30,1,28,59,1,324,}, + {1,75,28,35,30,3,29,1,1,37,28,113,29,2,28,12,29,1,28,12,29,1,30,1,29,1,14,2,13,1,30,1,9,3,8,2,13,2,29,1,28,1,29,2,30,2,29,1,30,1,13,2,28,7,29,1,28,58,29,1,28,2,26,1,13,1,26,1,9,4,30,1,28,1,30,1,8,1,30,1,13,4,30,1,13,2,29,1,30,1,29,1,28,9,29,2,28,33,29,1,28,25,1,324,}, + {1,75,28,34,30,2,29,2,1,38,28,110,29,2,28,20,30,1,28,4,29,1,28,3,26,1,15,2,13,2,9,1,14,1,9,2,13,1,8,1,30,1,29,1,28,2,29,1,30,1,8,1,30,1,28,2,29,1,9,1,30,1,28,2,29,2,28,2,29,1,28,47,29,2,28,5,29,1,28,6,13,2,30,1,13,1,9,2,13,1,30,2,8,2,30,1,13,1,15,1,9,1,13,2,9,1,26,1,30,1,29,1,28,10,30,1,28,22,29,1,28,33,29,1,28,4,1,323,}, + {1,76,28,30,29,3,30,1,29,1,28,1,1,40,28,140,30,1,9,1,13,1,9,1,14,2,9,2,13,1,30,1,9,1,30,1,28,1,29,1,30,1,28,1,29,1,13,1,9,1,13,1,28,1,29,1,30,1,13,3,28,14,29,1,28,37,29,2,28,9,29,1,28,2,13,2,30,1,28,1,30,1,9,2,7,1,9,1,15,1,7,1,30,1,13,2,9,1,13,1,9,2,26,1,29,1,28,11,29,1,28,40,29,1,28,3,29,1,28,17,1,322,}, + {1,78,28,26,29,2,30,1,29,1,28,2,1,43,28,125,29,1,28,6,30,1,28,6,30,1,9,1,15,1,14,2,9,1,13,2,30,1,29,1,9,1,13,1,28,1,6,1,7,2,29,1,28,1,30,2,29,1,30,2,29,2,28,19,29,1,30,2,28,41,29,1,28,2,29,1,26,1,13,2,28,1,30,1,9,2,6,1,30,1,9,1,13,4,9,1,8,1,9,2,29,1,28,11,29,1,28,27,30,1,28,8,29,2,28,2,29,2,28,3,29,1,28,3,29,1,28,14,1,321,}, + {1,79,28,6,29,1,28,2,29,1,28,8,29,1,28,5,29,1,30,1,29,2,28,2,1,45,28,137,29,1,8,1,9,1,14,1,15,1,9,1,13,2,28,2,30,1,8,1,30,2,8,1,9,1,15,1,16,1,30,3,29,1,30,3,28,13,29,1,28,26,26,1,28,27,30,1,13,2,29,1,9,3,7,1,30,1,13,1,30,1,13,2,9,3,15,1,9,1,28,12,29,1,28,32,30,1,26,1,28,15,30,1,28,15,1,320,}, + {1,81,28,1,29,4,28,3,30,1,28,6,29,1,28,5,29,4,28,1,1,47,28,137,30,1,9,2,16,1,13,1,30,1,13,2,28,3,13,1,9,1,13,1,30,1,28,1,30,1,9,1,30,3,28,3,9,1,30,1,28,67,26,1,13,1,8,1,13,1,14,1,9,1,13,1,9,1,13,1,9,1,30,2,13,1,16,1,9,2,15,1,30,1,28,11,29,1,28,33,29,1,28,32,1,320,}, + {1,90,28,3,29,1,28,1,29,2,28,4,29,1,30,1,29,1,28,2,1,49,28,136,29,1,9,1,15,1,9,1,13,1,30,3,13,1,9,1,13,1,30,1,13,1,30,1,6,1,28,1,29,1,6,1,30,1,28,2,13,2,30,3,29,1,28,61,30,1,26,1,29,1,28,2,13,4,15,1,13,2,8,1,30,1,13,1,6,1,7,1,9,2,13,2,15,1,13,1,28,10,30,1,28,33,29,1,28,24,29,1,28,9,1,319,}, + {1,92,28,2,29,4,28,1,29,3,28,1,1,52,28,125,29,1,28,10,30,1,15,2,9,1,8,1,13,4,8,1,6,1,28,1,30,1,6,1,30,1,29,1,28,1,6,1,29,1,28,3,13,2,28,2,29,2,28,3,29,1,28,31,29,1,28,16,30,1,28,6,29,1,30,3,28,1,29,1,13,4,9,1,13,1,9,1,6,1,28,1,13,1,6,2,9,1,13,1,29,1,13,2,8,1,28,2,29,1,28,7,13,1,28,38,29,1,28,19,29,2,28,9,1,318,}, + {1,96,28,3,1,57,28,30,29,1,28,96,29,1,28,7,26,1,15,1,9,1,13,1,30,1,9,1,8,1,13,1,9,1,13,1,28,2,9,1,16,1,30,1,29,2,13,1,30,1,28,4,29,1,30,2,29,1,28,1,29,2,28,1,29,1,28,48,30,1,28,9,29,1,28,1,30,1,13,1,9,1,13,1,29,1,9,1,13,1,9,1,7,1,30,1,13,1,7,1,28,1,9,1,13,1,29,1,30,1,13,2,28,9,13,1,30,1,28,27,29,1,30,1,28,10,29,1,28,19,29,2,28,8,1,318,}, + {1,156,28,127,29,2,30,1,28,5,13,2,30,2,29,1,13,2,6,1,13,2,29,1,28,1,9,2,30,2,13,1,30,1,13,1,28,3,30,2,13,1,30,2,13,1,30,1,29,1,28,7,29,1,26,1,28,41,29,1,28,10,30,1,9,1,13,1,9,1,30,2,9,3,6,1,30,1,9,1,16,1,7,2,13,1,9,1,13,1,8,1,30,1,28,9,13,1,28,67,30,1,28,3,1,317,}, + {1,156,28,129,30,2,29,1,28,3,13,1,6,1,29,2,28,1,13,4,30,1,6,1,29,1,8,1,29,1,28,4,29,1,30,1,13,3,9,1,13,1,30,1,29,1,28,5,29,1,28,55,29,2,28,1,29,1,13,3,30,1,6,1,9,3,6,2,9,1,16,1,8,1,13,2,30,2,13,1,8,1,29,1,28,7,30,1,13,1,28,33,30,1,28,6,29,2,28,20,29,1,28,9,1,316,}, + {1,157,28,128,29,1,30,1,29,1,28,3,13,2,30,1,6,1,13,1,9,3,13,1,9,1,6,1,29,1,9,1,29,1,30,1,13,2,30,2,9,1,15,1,9,1,13,1,6,1,29,1,6,1,13,1,30,2,28,3,30,1,29,1,28,3,29,1,28,34,29,1,28,8,29,1,28,7,30,1,28,1,29,1,13,1,8,1,13,1,30,2,9,3,6,1,30,1,13,2,9,1,30,1,28,3,30,1,13,1,29,1,28,7,8,1,28,34,29,1,28,4,29,1,28,1,29,1,28,21,29,1,30,2,29,1,28,6,1,316,}, + {1,157,28,129,26,1,29,1,28,3,30,1,13,1,30,1,13,2,9,2,13,3,29,1,30,1,9,1,13,1,14,2,15,1,9,3,8,1,13,1,8,1,9,3,13,1,30,1,28,5,30,1,28,55,29,1,28,1,13,1,9,1,8,1,13,1,30,1,13,3,9,1,6,1,13,1,16,1,8,1,13,1,28,2,29,1,28,1,30,2,28,7,13,2,28,21,29,2,28,7,29,1,30,1,28,3,29,1,28,2,29,2,28,12,30,1,29,1,28,12,29,1,28,1,29,1,28,5,1,315,}, + {1,158,28,128,30,1,29,2,28,1,29,1,30,1,29,1,13,2,29,1,13,1,9,1,13,1,29,1,13,1,30,1,9,1,14,4,16,1,9,7,13,1,26,1,28,2,29,2,28,59,30,1,28,1,13,8,8,1,6,1,9,1,8,1,15,1,9,1,28,4,30,1,28,7,30,1,9,1,28,28,29,2,28,1,29,1,26,1,30,1,28,2,30,3,29,1,28,29,29,1,28,6,1,314,}, + {1,158,28,110,29,1,28,6,29,2,28,8,29,2,28,1,30,1,29,3,28,1,30,2,28,1,13,1,9,1,30,2,9,1,15,1,14,1,15,1,16,1,9,1,13,1,6,1,13,1,9,1,13,2,6,1,13,1,28,6,30,1,29,1,28,49,30,1,28,7,29,2,28,1,13,3,9,1,15,1,13,1,9,1,13,2,7,1,9,1,13,2,30,3,28,2,29,1,28,6,29,1,8,1,9,1,28,28,29,1,28,3,26,1,30,1,28,1,29,1,26,1,30,1,28,16,29,1,28,10,29,1,28,7,29,2,28,1,1,314,}, + {1,158,28,112,30,1,13,1,26,1,29,1,28,1,29,2,28,1,29,1,28,7,29,2,30,4,29,1,28,1,30,1,6,1,13,3,15,1,9,1,16,1,9,2,8,2,9,1,30,1,13,1,30,2,13,1,30,1,9,1,13,1,28,7,29,1,28,48,29,1,28,7,26,1,28,2,13,3,9,2,30,1,13,4,9,1,13,1,29,1,28,1,29,1,28,6,29,2,28,1,30,2,9,1,30,1,28,30,29,1,30,2,29,1,13,1,9,1,30,1,28,14,29,1,28,3,29,1,28,11,29,1,28,5,29,2,28,2,1,313,}, + {1,158,28,110,29,2,28,14,29,1,28,2,30,6,29,1,30,1,13,2,30,1,9,1,14,1,16,1,9,1,13,1,8,3,13,1,28,3,30,1,28,2,13,1,9,1,26,1,30,1,28,53,29,1,28,1,29,3,28,4,30,1,28,2,13,2,9,2,13,1,30,2,13,3,9,1,13,1,6,2,29,1,28,7,29,1,28,1,30,1,9,1,15,1,29,1,28,29,30,1,28,3,30,1,13,1,29,1,28,7,29,1,28,27,29,2,28,1,29,1,28,2,1,313,}, + {1,158,28,127,29,2,28,2,29,2,30,1,13,3,30,2,13,1,14,1,16,2,9,1,8,1,9,1,6,1,30,1,28,1,30,1,8,1,6,1,28,3,8,1,30,2,28,18,29,1,28,35,30,1,29,1,28,6,29,1,30,1,28,2,30,1,29,1,13,2,26,1,13,1,7,1,30,1,13,2,6,1,8,1,7,1,29,1,30,1,28,4,29,2,28,3,30,1,15,1,9,1,28,32,30,2,13,1,28,4,29,2,28,26,29,1,28,2,29,1,28,1,29,1,30,1,29,1,28,1,29,1,28,2,1,312,}, + {1,159,28,130,30,3,26,1,13,2,29,1,13,1,15,1,14,1,15,1,16,1,8,1,9,1,6,1,28,4,13,1,15,1,9,1,28,1,30,1,9,1,29,1,30,1,28,2,26,1,30,2,29,2,28,13,29,1,30,1,28,32,29,1,28,8,29,1,28,2,30,2,13,3,30,1,8,1,13,3,6,1,7,1,8,1,29,1,28,10,13,1,14,1,13,1,28,32,13,2,29,1,28,3,29,1,13,1,30,1,28,28,29,2,28,2,29,2,28,1,30,1,29,1,28,1,1,312,}, + {1,160,28,128,29,3,30,1,26,1,13,1,6,1,30,1,9,1,14,2,16,2,9,1,13,1,29,1,28,4,30,1,9,1,16,1,13,1,9,1,15,1,29,2,28,1,30,1,28,52,29,1,28,11,30,1,13,2,30,1,13,2,9,1,15,1,16,1,9,1,6,1,7,1,15,1,13,1,28,2,29,1,28,6,29,1,8,1,14,1,30,1,28,28,29,1,30,1,13,2,26,1,29,1,28,1,30,1,13,1,30,2,13,1,29,1,28,13,30,3,28,12,29,1,30,1,28,4,29,1,30,2,29,1,1,312,}, + {1,160,28,101,6,1,28,27,29,1,30,2,26,1,13,1,29,1,13,1,9,1,16,1,9,1,6,1,7,1,9,1,13,1,30,1,29,1,28,1,30,1,15,1,14,1,9,1,13,3,9,1,26,1,30,1,29,1,28,53,30,1,29,1,28,7,29,1,28,2,29,1,30,1,9,3,30,2,13,2,8,1,6,1,9,1,13,1,30,1,29,2,30,1,29,1,28,5,13,1,9,1,15,1,28,28,30,1,13,2,29,2,28,1,29,1,30,2,13,4,30,1,28,1,29,1,28,3,13,1,30,1,28,22,30,1,28,5,29,1,30,1,28,2,1,311,}, + {1,161,28,131,29,1,13,1,30,1,13,2,9,3,7,1,9,2,13,1,8,1,9,1,15,1,9,1,13,1,30,2,13,3,29,1,30,1,29,1,28,15,29,1,28,1,29,2,28,42,30,1,28,2,26,1,29,1,30,1,13,1,9,2,28,1,29,1,13,3,9,1,8,1,7,1,30,1,28,9,30,1,14,1,16,1,29,1,28,26,30,1,13,2,30,1,28,3,30,1,26,1,30,2,13,3,30,2,13,1,8,1,13,2,28,27,29,2,28,1,29,1,30,1,28,2,1,311,}, + {1,161,28,131,29,1,13,1,6,1,13,1,8,1,9,2,15,1,9,1,16,1,15,1,9,1,16,2,30,1,28,1,29,1,8,1,6,1,8,1,13,2,30,1,26,1,29,1,28,61,30,1,28,2,13,4,9,2,29,1,30,1,13,3,9,1,8,1,7,1,30,1,28,8,6,1,13,1,14,1,9,1,29,1,28,25,30,1,13,1,29,1,28,1,29,1,28,3,26,1,30,1,26,1,30,1,13,2,16,1,14,2,16,1,8,1,29,1,28,27,29,6,30,1,29,1,1,311,}, + {1,162,28,130,30,1,13,4,15,1,9,2,13,1,9,1,13,2,8,1,13,1,28,2,9,1,16,1,29,1,8,1,13,3,29,1,28,41,29,1,28,20,29,1,28,1,29,1,13,1,9,1,13,2,15,1,9,1,29,1,30,1,13,2,6,1,9,1,8,1,30,1,29,1,28,5,30,1,29,1,28,1,30,1,13,1,14,1,13,1,28,25,30,1,28,4,29,2,28,2,26,2,13,2,9,1,15,1,14,2,9,1,13,1,30,1,28,15,29,2,28,11,29,4,28,2,30,2,28,1,1,310,}, + {1,162,28,130,30,1,13,6,9,1,8,2,9,1,13,2,8,1,28,1,6,1,9,1,13,1,29,1,13,1,9,1,30,1,28,20,29,1,28,35,30,1,29,1,28,8,26,1,28,1,30,1,13,2,9,1,13,1,28,1,30,1,9,1,7,1,30,1,13,1,16,1,6,1,28,7,29,1,28,1,29,1,9,1,11,1,13,1,28,23,29,2,28,4,30,1,28,2,29,1,28,1,30,1,13,4,9,1,15,1,9,2,13,1,28,2,29,2,28,9,29,1,28,15,29,2,30,2,28,2,29,1,30,1,28,1,1,310,}, + {1,163,28,126,29,1,28,2,29,1,30,1,13,2,9,1,13,1,30,1,13,1,15,1,8,1,16,1,13,1,6,1,16,2,15,1,9,1,13,1,16,1,8,1,13,1,30,1,28,1,29,2,28,5,29,1,28,47,29,2,28,8,30,1,28,1,13,1,9,1,15,1,9,1,8,1,28,1,30,1,9,1,6,1,29,1,6,1,16,2,13,1,28,3,29,2,28,3,13,1,14,1,11,1,30,1,28,22,29,1,28,4,29,1,28,1,30,1,29,1,28,1,29,1,30,1,13,3,9,1,13,3,30,1,13,1,28,5,29,1,28,8,29,1,28,18,30,1,29,1,28,2,29,1,28,1,1,310,}, + {1,163,28,126,29,4,28,1,30,1,13,3,30,2,15,1,16,1,15,1,9,1,13,1,9,3,15,1,16,1,9,1,6,1,30,1,13,1,29,3,28,15,26,1,29,1,28,35,29,2,28,8,26,1,29,1,26,1,13,2,15,1,14,1,8,1,28,1,13,1,8,1,6,1,29,1,30,1,6,1,16,1,13,1,28,4,30,2,28,1,30,1,8,1,14,2,30,1,28,21,30,1,28,5,29,1,28,2,30,2,26,1,13,2,30,2,9,1,30,3,13,2,28,2,30,1,28,8,29,3,28,16,29,4,30,1,29,1,28,2,29,1,28,1,1,309,}, + {1,164,28,126,29,1,30,1,29,1,28,1,30,1,13,3,9,1,16,1,15,1,16,1,15,1,9,1,28,1,30,1,13,1,8,1,16,1,7,2,13,1,30,1,9,2,29,1,30,1,28,16,30,1,29,1,28,34,26,1,30,1,28,2,29,1,28,5,29,2,9,1,30,1,26,1,13,1,16,1,9,1,30,1,9,2,7,1,6,1,30,1,29,1,13,2,28,8,30,1,14,1,15,1,30,1,28,20,29,1,28,5,29,1,28,1,29,1,28,1,29,1,9,1,15,1,9,1,13,1,30,2,13,1,28,1,30,1,13,1,29,1,8,1,28,2,29,1,30,1,28,1,29,1,28,3,29,2,28,20,29,2,30,4,28,4,1,308,}, + {1,164,28,127,30,1,28,2,30,1,9,4,15,2,16,1,7,1,29,1,28,1,29,1,9,2,7,2,8,1,13,1,30,2,9,1,30,1,28,53,30,1,28,5,30,2,28,2,29,1,30,1,13,2,29,1,13,1,15,1,8,1,13,3,7,1,9,2,7,2,13,1,28,8,13,1,11,1,9,1,30,1,28,25,29,1,28,2,30,1,26,1,13,1,15,1,16,1,13,1,29,1,30,3,28,1,30,1,13,2,8,1,6,1,28,4,30,1,29,2,30,1,28,23,29,1,26,1,30,4,29,1,28,2,1,308,}, + {1,165,28,121,29,1,28,8,13,1,16,1,9,3,13,1,8,1,30,1,6,1,7,1,9,2,8,2,9,1,13,2,30,2,13,1,30,1,28,52,29,1,28,6,29,1,28,2,29,2,13,1,30,1,13,1,28,1,13,1,16,1,13,1,9,1,6,1,7,1,6,1,9,1,13,1,30,1,13,1,9,1,13,1,28,6,8,1,15,1,11,1,8,1,30,1,29,1,28,26,30,1,13,1,9,1,13,1,28,1,29,1,26,1,30,1,26,1,13,1,30,1,29,1,28,1,26,1,13,1,29,1,30,1,29,1,28,1,30,1,8,1,9,1,13,1,30,1,28,21,29,1,28,2,29,1,30,1,26,1,13,1,29,1,30,1,26,1,29,2,28,1,1,307,}, + {1,165,28,130,13,1,9,4,13,2,8,1,9,1,16,3,8,1,13,1,9,1,13,1,30,1,28,1,29,1,13,1,30,1,28,15,29,2,28,28,29,1,28,6,29,1,28,8,29,2,30,1,13,1,29,1,13,1,8,1,15,1,13,3,30,1,8,1,6,1,16,2,6,1,28,1,29,1,9,1,8,1,28,5,9,1,16,1,11,1,13,1,30,1,28,1,29,1,28,24,30,1,9,1,16,1,13,1,30,1,28,2,30,1,13,1,30,1,13,1,30,1,13,1,28,1,30,1,29,1,30,1,13,3,9,2,13,1,30,1,28,11,29,1,28,11,29,1,28,1,29,1,30,1,13,1,30,2,29,1,30,2,28,2,1,307,}, + {1,166,28,129,13,1,9,1,15,1,9,3,13,1,9,2,15,2,8,2,6,1,13,1,9,1,13,1,28,2,13,1,30,1,28,17,29,1,26,1,30,1,28,17,30,1,28,14,29,1,30,1,29,2,28,3,29,1,28,1,30,1,28,1,30,4,13,1,9,1,13,1,9,1,13,1,6,1,9,1,8,1,16,1,14,1,16,1,29,1,28,1,8,1,28,6,9,1,16,1,11,1,13,1,30,1,28,25,13,1,8,1,29,2,30,2,26,1,29,1,30,1,26,1,30,3,13,1,8,1,30,1,13,1,15,2,9,1,8,1,13,2,30,1,29,1,28,26,29,1,30,4,29,1,28,4,1,306,}, + {1,167,28,116,29,1,28,11,13,1,9,1,13,2,9,1,16,1,9,1,8,1,13,1,9,1,6,1,30,1,9,1,6,1,30,1,13,1,30,1,28,1,30,2,28,20,30,2,28,17,29,1,28,13,26,1,29,1,28,5,29,1,28,3,30,1,29,1,30,1,13,1,29,1,30,1,9,2,30,1,29,1,9,2,6,1,16,2,30,1,29,1,13,1,28,5,29,1,9,1,15,1,11,1,13,2,29,1,28,22,30,1,28,1,30,2,28,3,30,3,26,1,13,1,30,2,13,3,9,3,13,1,30,1,13,1,29,1,28,15,29,1,28,14,29,1,30,2,13,1,29,1,28,1,29,2,28,1,1,306,}, + {1,167,28,128,30,1,13,4,9,1,16,1,8,1,29,1,7,1,6,2,15,2,8,1,13,1,30,3,28,23,30,1,28,3,29,1,28,25,29,1,26,1,29,1,28,7,30,1,29,1,30,1,13,2,30,2,13,1,9,2,6,1,29,1,9,1,16,1,30,1,9,2,29,1,7,1,13,1,28,6,13,1,11,2,13,1,30,2,28,22,30,1,28,3,29,2,28,1,30,3,13,3,9,1,15,1,9,1,13,3,29,2,30,1,13,1,28,29,29,1,30,2,29,1,30,1,13,1,30,1,29,1,28,1,29,1,28,2,1,305,}, + {1,168,28,61,6,2,28,1,29,1,6,1,29,1,28,2,29,1,6,2,29,2,28,44,29,2,28,2,29,1,28,3,29,2,13,4,9,1,8,1,6,1,30,2,13,2,9,1,14,1,15,1,9,1,13,1,30,3,28,2,29,2,28,5,26,1,28,42,30,1,29,2,28,4,30,1,28,2,30,1,29,2,13,4,9,1,15,1,9,1,29,1,6,1,8,1,16,2,9,1,6,2,9,1,13,1,28,6,9,1,14,1,11,1,13,1,30,2,28,29,30,1,26,1,13,1,9,6,13,1,30,2,29,2,30,1,13,1,28,30,30,6,13,1,28,4,1,305,}, + {1,125,28,1,6,1,7,2,29,2,28,1,1,37,28,59,7,1,16,1,6,1,29,1,6,2,7,1,30,2,13,2,6,1,30,2,29,2,28,1,29,2,28,1,30,1,29,1,28,39,29,1,30,1,29,1,28,3,30,1,26,1,9,1,13,2,9,2,6,1,28,1,7,1,8,1,29,1,30,1,13,1,30,1,13,2,6,1,30,1,29,1,28,2,29,2,28,5,29,1,28,42,29,1,28,9,29,1,28,2,29,1,30,1,13,1,9,2,15,1,8,1,6,1,8,1,6,1,8,1,15,1,8,1,29,2,9,1,13,1,28,5,29,1,9,1,16,1,11,1,6,1,13,1,29,1,28,26,13,2,30,1,13,2,9,4,13,3,28,1,29,1,26,1,30,2,13,1,9,1,29,1,28,29,29,3,13,2,29,1,30,2,28,4,1,304,}, + {1,124,28,1,10,1,8,1,10,1,6,1,28,2,29,1,6,1,28,1,1,36,28,51,29,1,6,1,29,1,28,4,6,1,16,1,6,1,28,2,29,2,28,2,29,1,30,2,6,2,7,2,30,1,6,1,30,2,29,3,28,38,29,2,28,4,29,1,13,1,9,2,13,1,9,1,16,1,6,1,30,1,16,2,29,1,6,1,30,6,13,1,30,1,28,23,29,2,28,26,29,1,28,5,29,1,28,3,30,1,29,1,28,2,13,2,9,1,14,2,7,1,6,1,16,1,9,2,16,1,7,1,9,1,6,1,13,1,9,1,28,5,29,1,8,1,15,1,11,1,6,1,30,1,29,1,28,24,29,1,9,1,8,1,30,4,28,1,30,1,13,1,29,1,30,2,13,1,28,2,13,1,30,2,13,1,8,1,6,1,28,30,29,2,13,1,30,1,29,1,30,1,13,1,30,1,29,1,28,2,1,304,}, + {1,123,33,1,9,1,29,1,6,1,7,1,28,3,29,3,28,1,1,35,28,48,6,2,28,9,9,1,30,1,28,1,29,6,6,1,30,1,9,4,30,3,29,2,30,1,29,2,28,39,29,1,28,3,29,1,13,1,9,1,16,1,15,1,9,2,6,1,8,1,9,1,15,1,8,1,9,1,13,2,29,1,30,1,29,1,28,1,30,2,28,1,29,1,28,25,29,1,28,22,29,1,30,1,28,5,30,1,28,2,30,1,26,1,29,1,28,1,30,1,13,1,9,1,15,1,14,1,15,1,7,1,6,1,9,1,13,1,8,1,16,1,30,1,13,1,30,1,6,1,13,1,28,5,13,1,16,1,11,1,15,1,6,1,30,1,29,1,28,24,30,2,28,3,30,2,28,2,30,1,28,1,30,1,26,1,13,1,30,1,29,1,30,3,13,2,6,1,28,16,29,3,28,11,29,2,30,1,13,1,30,2,29,5,28,1,1,303,}, + {1,122,28,1,5,1,16,1,8,1,9,1,6,1,28,5,29,2,28,2,1,33,28,47,6,1,29,1,28,10,9,1,30,1,28,1,6,2,28,1,29,1,6,1,8,1,9,1,6,1,8,1,9,2,8,1,29,1,28,1,30,1,28,1,29,1,30,3,29,3,28,40,30,1,8,1,9,2,13,3,29,1,30,1,8,1,15,1,9,2,8,1,13,1,30,1,28,4,29,1,28,50,29,1,28,5,29,1,30,1,28,1,29,1,28,2,30,2,9,1,13,2,9,1,16,2,6,1,8,1,6,1,9,1,8,1,9,1,30,1,29,1,28,1,8,1,29,1,28,5,8,1,14,1,1,1,16,1,30,2,29,1,28,25,29,1,28,4,30,2,29,1,30,1,29,2,13,1,9,2,30,4,13,1,9,1,6,1,29,1,28,11,29,1,28,18,29,1,30,1,13,1,26,1,30,1,28,1,29,2,28,1,29,1,28,1,1,303,}, + {1,121,28,1,33,1,16,1,9,1,7,1,16,1,9,1,6,1,28,4,29,3,28,2,1,33,28,44,29,1,7,1,30,1,28,3,29,6,6,2,8,1,13,1,28,2,29,2,6,1,9,1,16,1,9,1,30,1,8,1,16,2,6,3,28,2,29,2,30,2,28,1,29,1,30,1,28,40,30,1,8,1,13,1,30,2,13,1,7,1,28,2,13,1,9,1,7,1,6,1,30,1,28,1,30,2,28,3,30,1,29,1,28,4,29,1,28,40,29,1,28,3,30,1,28,5,29,1,28,5,13,1,30,1,13,1,9,1,13,1,9,1,16,1,9,1,30,1,6,2,9,3,13,1,8,1,6,1,13,1,29,1,28,5,9,1,15,1,1,1,16,1,30,2,29,2,28,25,30,1,28,3,29,1,30,2,13,1,9,1,13,2,9,1,16,1,13,1,30,1,28,1,30,1,29,1,30,1,29,1,28,31,29,2,13,2,30,1,29,3,28,1,29,1,28,1,1,303,}, + {1,121,28,1,16,1,9,1,6,2,9,1,16,1,7,1,6,2,28,3,6,1,7,1,6,1,29,1,6,1,1,33,28,5,29,1,28,36,6,1,9,1,7,1,6,1,29,1,28,1,29,6,7,1,29,1,28,1,29,1,30,1,29,2,30,1,8,1,16,2,13,1,30,2,15,1,17,1,16,1,7,1,29,2,28,3,30,1,29,2,28,39,29,1,28,3,30,1,13,4,9,1,6,1,28,1,7,1,8,1,13,1,7,1,6,1,30,1,29,1,6,1,30,2,29,3,28,50,30,1,28,8,30,1,28,2,30,1,29,1,13,1,9,2,15,1,9,1,8,1,6,1,13,1,8,1,9,4,15,1,8,1,29,2,28,5,8,1,16,1,1,1,16,1,30,2,29,2,28,26,29,1,28,3,30,2,26,1,9,4,8,1,30,2,29,1,28,1,30,2,29,1,28,27,29,1,28,3,29,2,30,1,13,1,30,1,13,1,29,1,28,4,1,303,}, + {1,121,6,1,9,1,6,2,16,2,8,1,29,1,6,2,28,2,6,1,8,1,9,1,8,1,6,1,29,2,1,33,28,40,6,1,9,1,6,1,29,2,30,1,29,1,28,1,29,1,28,4,26,1,6,1,29,1,28,1,29,2,30,1,13,1,16,2,9,1,30,2,13,1,15,1,16,2,9,1,29,1,28,4,30,1,29,1,28,37,29,1,28,1,30,2,28,2,29,1,13,1,30,3,13,1,9,1,8,1,28,1,7,1,8,1,6,1,9,2,30,1,13,1,6,1,30,4,28,33,29,1,28,16,29,1,28,8,29,1,30,1,28,1,29,1,13,1,30,1,13,1,9,2,13,1,9,2,6,1,8,1,9,5,8,1,9,1,29,1,28,6,13,1,15,1,1,1,9,1,30,2,28,29,29,2,30,4,13,1,30,2,13,3,29,2,28,2,30,2,28,29,29,1,28,1,29,1,30,4,9,1,30,1,29,2,28,2,1,303,}, + {1,121,33,1,16,1,6,1,8,1,16,2,8,1,28,1,29,2,28,1,29,3,30,1,7,2,6,1,29,2,28,1,1,31,28,40,9,1,7,1,6,1,30,1,29,1,30,1,29,2,28,4,29,2,30,1,29,1,28,1,6,1,29,1,6,1,9,2,30,1,13,2,30,2,9,1,15,1,9,1,8,1,29,1,28,4,29,2,28,43,29,1,13,1,6,1,30,1,13,2,9,1,7,1,28,1,30,1,7,1,6,1,16,1,9,1,13,1,8,1,13,2,29,1,28,1,29,1,28,2,29,1,28,30,29,1,28,13,29,1,28,2,29,1,28,8,30,2,29,1,6,1,13,1,30,1,8,1,13,3,9,1,13,1,6,1,7,1,9,7,28,7,6,1,16,1,11,1,9,1,30,2,28,29,13,5,9,1,6,1,29,1,13,2,30,4,6,1,30,1,13,1,29,1,28,1,29,2,28,15,29,1,28,13,30,3,13,1,26,1,29,3,28,2,1,303,}, + {1,119,28,1,7,1,33,1,12,1,33,2,9,1,12,1,7,1,28,1,29,2,28,2,29,3,6,1,7,2,6,2,29,1,28,2,1,30,28,39,9,1,6,4,28,2,29,1,28,2,29,2,30,2,29,1,28,2,30,2,7,1,16,1,6,1,30,1,13,2,30,2,26,1,9,1,8,1,6,1,28,47,29,1,28,3,13,3,30,2,9,1,7,1,28,1,7,1,16,3,30,2,6,2,13,1,29,1,28,2,29,1,30,1,29,1,28,44,29,1,28,2,30,1,28,6,29,3,30,1,29,1,30,3,9,1,13,2,9,2,30,1,7,1,6,1,9,1,8,2,16,1,9,2,16,1,7,1,28,6,30,1,9,1,1,1,9,1,30,2,28,28,13,2,28,1,30,1,26,1,13,3,30,1,9,1,16,1,13,1,9,2,8,1,13,1,9,1,13,1,28,20,29,1,28,12,30,2,29,1,13,1,30,2,29,1,30,1,28,3,1,302,}, + {1,115,28,2,33,5,12,1,17,1,33,1,7,1,16,1,9,1,28,2,29,3,28,1,29,1,6,2,7,1,9,1,7,1,6,1,30,1,29,2,6,1,28,1,1,29,28,37,29,1,6,1,29,1,30,1,6,1,7,1,6,1,30,1,29,5,28,7,8,1,9,1,29,1,28,1,30,1,13,2,30,4,28,51,29,1,9,1,13,4,15,1,8,1,6,1,9,3,16,1,30,1,28,1,30,1,13,1,29,1,28,3,29,1,26,2,29,1,28,37,29,1,28,7,29,1,30,1,28,7,30,1,13,1,28,2,13,2,30,1,9,5,13,1,8,1,7,1,16,1,9,1,8,1,9,1,8,1,30,1,13,1,9,1,8,1,28,5,6,1,16,1,11,1,8,1,30,1,29,2,28,27,26,1,29,1,28,2,30,3,13,3,9,3,7,1,29,1,13,1,30,1,28,21,29,1,28,12,29,3,30,1,26,1,30,3,29,1,28,2,1,302,}, + {1,113,28,1,29,1,33,5,16,1,9,1,12,1,11,1,16,1,8,2,6,1,28,2,29,4,6,4,8,1,9,1,8,1,6,6,28,2,1,25,28,38,29,3,7,1,13,1,30,3,29,2,28,10,9,1,10,1,28,2,30,1,15,1,13,1,30,1,13,2,6,1,29,1,28,50,30,1,13,1,29,1,13,1,8,1,13,1,15,1,8,1,29,1,8,2,7,1,16,1,9,1,30,1,9,2,29,1,28,1,29,6,28,7,29,1,28,33,29,1,28,3,26,1,28,9,30,1,28,1,29,1,13,3,8,1,9,1,8,1,9,2,8,1,7,1,9,2,13,1,9,1,16,2,30,1,29,1,6,1,8,1,28,5,8,1,15,1,11,1,13,1,30,3,28,28,29,1,28,2,30,1,26,1,30,2,13,2,9,2,13,2,28,2,29,1,28,1,29,1,28,2,29,2,28,29,30,2,26,1,13,1,30,1,13,1,30,2,29,1,28,2,1,301,}, + {1,111,28,1,6,2,33,1,9,4,16,1,17,1,16,2,11,1,17,1,16,1,6,1,28,3,29,1,28,1,29,1,6,2,29,1,6,2,7,2,9,2,7,1,6,2,7,1,6,2,29,1,28,3,1,21,28,38,6,1,9,1,8,1,7,1,13,1,30,1,29,1,28,14,16,1,7,1,28,2,29,1,13,1,30,2,8,2,29,1,28,5,29,1,28,43,29,1,28,1,29,1,30,1,29,1,9,1,13,2,9,1,16,1,6,1,8,1,9,1,7,1,13,1,9,1,13,1,9,2,13,1,29,3,30,1,28,11,29,2,28,35,30,1,28,9,30,1,29,1,30,1,13,1,30,2,13,3,9,1,13,2,7,1,8,1,9,1,8,1,9,1,8,1,9,1,8,1,30,1,6,2,28,5,13,1,9,1,11,1,7,1,29,1,30,1,29,1,28,28,29,2,28,2,30,4,13,1,9,1,30,1,29,1,30,1,28,38,29,1,26,2,13,1,30,1,26,1,30,2,29,1,28,2,1,301,}, + {1,110,28,1,33,4,7,1,6,1,8,1,11,2,17,1,16,1,8,1,7,1,9,1,12,1,28,5,29,2,6,2,29,2,6,3,7,1,8,1,9,1,7,2,6,1,7,2,6,2,29,3,28,1,1,18,28,40,29,2,28,1,29,1,28,16,16,1,29,1,28,2,30,2,6,2,30,1,28,6,29,3,28,40,29,1,30,1,29,1,28,2,30,1,6,1,8,1,13,1,9,1,13,1,8,1,16,1,9,1,6,1,29,1,6,1,9,1,8,1,9,1,6,1,13,2,30,1,29,1,30,1,29,1,28,25,29,1,13,1,28,5,30,1,29,1,28,4,29,1,30,1,29,2,28,4,29,1,28,9,29,2,28,1,13,2,29,2,13,2,9,2,13,1,6,1,8,1,6,1,8,1,9,2,8,1,13,1,6,1,29,1,6,1,28,6,6,1,15,1,11,1,7,1,29,3,28,29,30,1,13,1,28,1,30,2,13,1,9,2,8,1,28,1,30,1,13,1,30,1,28,5,29,1,28,31,29,1,30,1,29,1,30,2,26,1,13,1,30,1,28,4,1,300,}, + {1,110,33,3,10,1,8,2,7,1,8,1,9,1,16,1,6,1,29,1,28,2,6,1,16,1,28,5,29,7,6,4,7,1,8,2,6,2,7,1,6,2,7,1,6,3,29,2,28,2,1,13,28,61,8,1,28,3,29,3,28,17,29,1,28,36,29,1,28,1,29,1,13,1,29,1,30,1,13,1,30,1,13,1,8,1,30,1,29,1,6,2,9,1,8,1,15,1,30,2,6,1,29,2,30,1,29,1,28,22,29,1,30,1,29,1,28,20,30,1,28,13,13,6,9,1,13,1,6,2,9,1,6,1,8,1,9,3,8,1,6,1,7,1,6,1,28,6,30,1,15,1,11,1,7,1,29,1,30,1,29,1,28,30,29,2,30,2,26,1,13,2,6,1,28,1,30,1,13,1,6,1,28,5,30,1,28,31,29,3,30,2,26,2,30,1,29,1,28,4,1,299,}, + {1,109,28,1,7,1,10,1,8,1,7,1,8,1,33,1,6,2,28,1,29,1,28,1,29,1,6,2,28,1,16,1,6,1,28,7,29,3,28,2,6,2,7,1,6,1,7,2,8,1,7,1,6,1,29,1,6,1,7,5,6,2,29,1,28,1,6,1,29,1,1,9,29,1,28,60,29,2,28,22,29,2,28,35,29,1,28,3,30,2,13,1,30,1,6,1,13,2,28,2,30,1,6,1,9,2,16,1,29,1,30,1,29,2,28,30,29,2,28,15,29,1,30,1,28,10,29,2,30,1,13,1,30,1,29,1,13,2,29,1,8,2,30,1,9,1,16,1,8,1,9,2,13,1,8,2,30,1,7,2,28,6,30,1,9,1,14,1,7,1,29,3,28,30,29,1,30,1,26,1,13,1,26,2,13,1,6,1,29,2,13,2,28,4,30,1,28,32,29,1,30,2,13,2,30,4,28,5,1,298,}, + {1,109,6,1,7,1,33,1,16,1,9,1,16,1,17,1,33,1,7,1,28,2,29,1,6,1,10,1,6,1,28,1,7,1,6,1,28,12,29,2,30,1,6,2,7,2,9,1,10,1,7,1,6,1,7,1,6,1,8,1,6,1,7,2,6,3,28,1,29,3,1,6,6,1,28,8,29,1,28,52,29,2,28,3,29,2,28,18,29,1,28,35,29,2,28,2,30,1,13,1,6,3,8,1,9,1,8,1,29,1,28,1,6,1,13,1,9,1,13,1,29,1,30,2,29,2,28,2,29,2,28,21,29,1,28,7,29,1,28,7,29,2,28,3,29,1,28,3,29,1,28,7,30,1,29,1,30,1,13,1,30,1,28,1,13,1,7,1,6,1,9,1,7,1,6,1,9,2,8,1,9,2,8,1,13,2,29,2,6,1,28,6,29,1,13,1,14,1,8,1,30,1,29,2,28,32,26,1,30,1,26,2,13,2,30,1,28,1,30,3,28,37,30,2,13,2,30,2,26,1,30,1,28,6,1,297,}, + {1,108,6,1,33,1,5,1,12,1,16,2,11,2,17,1,7,1,28,3,29,1,7,1,6,1,28,3,6,1,28,15,6,2,7,2,8,1,9,2,7,1,6,3,7,3,9,1,7,1,28,1,29,3,28,2,1,3,28,4,29,1,28,58,29,1,30,1,28,60,30,1,29,3,30,1,6,1,9,1,6,1,13,1,8,1,9,1,8,1,29,1,30,2,13,1,26,1,29,4,28,16,29,1,28,17,29,1,28,24,30,2,13,2,30,1,28,1,8,1,13,1,8,1,9,1,29,1,6,1,8,2,13,1,8,1,13,3,8,1,7,2,8,1,28,6,29,1,8,1,14,1,13,1,30,1,29,1,28,33,30,1,28,1,26,1,30,1,26,1,30,1,13,1,28,1,29,1,30,2,28,23,29,1,28,13,29,2,13,2,30,1,26,1,30,2,28,7,1,296,}, + {1,107,28,1,33,1,5,1,17,1,11,1,16,1,12,1,11,2,17,1,29,1,28,3,29,1,7,1,6,1,28,19,6,4,7,2,8,1,6,1,7,1,6,1,29,1,6,1,7,2,8,1,7,1,6,2,30,1,29,1,6,2,28,75,29,1,28,52,29,1,28,2,29,1,30,1,13,7,30,2,26,3,30,3,29,1,28,46,29,1,28,8,29,2,28,1,29,2,30,1,13,1,26,1,30,2,13,1,8,1,9,1,6,1,29,1,30,1,13,2,7,1,8,1,6,2,13,1,30,1,29,1,30,1,6,1,29,1,28,6,8,1,14,1,7,1,29,1,30,1,28,30,29,1,30,1,29,1,30,1,28,1,29,1,30,1,13,1,30,1,13,1,7,1,29,1,28,1,30,1,13,1,29,1,28,20,29,1,28,14,30,2,13,1,9,1,13,1,30,3,29,1,28,7,1,295,}, + {1,107,33,1,16,2,17,2,16,2,9,1,8,2,29,1,28,4,29,1,28,20,29,2,28,1,29,1,7,1,6,4,10,1,7,1,6,2,7,1,8,1,7,1,6,2,7,1,8,1,6,1,29,3,28,74,29,1,28,54,29,1,30,3,13,1,30,1,13,2,26,1,30,1,26,1,30,4,29,2,28,61,30,1,13,6,9,1,29,1,13,2,30,2,29,1,8,1,30,2,6,3,29,1,6,1,28,7,30,1,15,1,8,1,29,1,30,1,28,31,29,2,30,1,28,2,30,1,13,3,16,1,7,1,28,1,29,1,13,1,28,21,29,2,28,2,29,2,28,9,30,2,9,3,30,3,29,1,28,7,1,295,}, + {1,106,33,1,9,2,16,2,17,1,9,1,6,1,29,1,28,2,29,1,28,26,29,1,28,2,6,1,29,2,7,3,6,2,8,1,7,1,6,2,7,1,8,1,9,1,8,3,6,2,29,4,28,90,29,1,28,32,29,1,28,1,29,1,30,3,29,2,13,3,30,7,29,1,28,61,13,2,30,1,13,2,30,1,13,1,30,1,13,1,6,1,30,1,13,1,30,1,29,1,13,1,30,2,6,3,29,1,7,1,28,7,30,1,15,1,8,1,28,1,29,1,28,31,29,1,28,2,13,6,9,1,8,1,28,2,30,1,29,1,28,1,29,1,30,1,13,1,30,1,28,2,29,1,28,12,29,1,28,14,29,1,30,1,13,1,30,2,13,2,29,2,28,8,1,294,}, + {1,105,29,1,10,1,7,1,8,1,16,2,12,1,6,1,29,2,28,1,29,2,28,29,29,1,28,1,29,1,6,1,29,1,6,1,7,1,6,1,7,1,8,1,7,2,8,1,9,4,7,1,6,4,29,1,28,72,29,1,28,18,29,1,28,16,29,1,28,15,29,1,28,1,29,1,28,1,29,1,13,1,30,1,13,1,9,1,13,1,30,3,29,2,6,1,26,1,30,2,29,1,28,33,29,1,28,12,29,1,28,12,30,1,13,1,30,1,28,1,13,2,30,1,6,1,29,1,8,1,13,1,30,1,29,1,6,1,30,2,13,1,6,2,30,1,6,1,30,2,28,8,15,1,8,1,28,36,29,1,13,1,9,2,13,3,7,1,29,1,9,1,16,1,9,1,8,1,13,1,6,1,29,1,28,32,30,1,26,2,29,1,26,1,13,1,29,1,28,10,1,293,}, + {1,105,10,2,6,1,7,1,16,3,29,2,28,2,29,3,28,3,29,1,28,1,1,3,28,21,29,1,6,2,28,1,29,1,6,2,7,3,8,1,7,3,8,1,7,1,8,1,9,2,8,2,6,1,28,9,29,1,28,62,29,1,28,17,29,1,28,33,29,3,28,1,26,1,13,6,8,1,13,1,6,1,7,1,13,1,30,1,29,1,30,1,29,1,28,14,30,1,29,1,28,18,29,1,28,21,29,1,28,2,30,1,13,1,29,1,28,1,13,2,30,1,6,1,13,1,9,1,13,2,30,1,29,1,6,1,29,1,6,2,30,1,6,3,30,1,28,8,9,2,28,36,30,1,26,1,30,2,13,2,9,1,13,2,9,2,13,1,30,1,29,1,28,31,29,1,28,2,30,1,26,1,13,4,26,1,28,11,1,292,}, + {1,105,12,1,8,1,6,2,8,1,6,1,29,1,28,3,29,1,6,1,29,1,28,4,29,1,1,6,28,20,6,1,29,1,6,2,29,2,6,1,7,2,8,2,7,1,6,1,8,1,9,1,8,1,9,4,6,1,28,14,29,1,28,76,29,1,28,32,29,2,28,1,30,1,13,1,30,1,13,1,9,4,13,2,30,3,13,2,30,1,29,1,28,45,29,1,28,10,30,1,28,2,30,1,13,1,28,1,29,1,13,2,6,2,30,1,13,1,30,1,13,2,30,1,13,1,6,2,30,1,29,1,30,2,29,2,28,8,8,1,9,1,29,2,28,33,29,2,30,1,28,2,13,1,30,1,13,2,30,1,13,1,30,1,29,2,28,25,30,1,28,5,29,1,28,1,29,2,30,1,13,2,9,1,13,3,30,1,28,7,30,1,28,3,1,291,}, + {1,105,12,1,8,1,6,1,28,7,29,1,6,1,29,1,28,3,1,9,28,18,29,1,28,3,29,1,6,1,29,1,28,1,29,1,28,1,6,1,9,1,7,1,6,1,8,2,9,2,8,1,7,1,8,1,29,1,28,14,29,1,28,76,29,1,28,31,30,2,29,1,28,3,29,1,9,3,13,3,30,2,28,2,13,1,30,1,29,2,28,55,29,2,28,2,13,1,30,1,28,1,30,1,13,1,30,1,28,1,8,1,9,1,6,1,28,1,6,1,30,1,6,1,13,2,6,3,30,1,29,2,30,1,28,8,7,1,16,1,29,2,28,34,30,1,26,1,29,1,28,1,13,2,9,2,13,1,30,1,29,1,28,2,29,1,28,24,29,1,28,8,29,1,30,1,9,1,13,1,9,1,13,1,26,2,30,1,28,7,29,1,28,3,1,291,}, + {1,105,16,1,6,1,28,13,1,12,28,21,6,2,29,1,28,2,29,1,8,1,7,2,8,5,6,1,28,24,29,1,28,50,29,1,28,14,29,4,30,1,28,30,29,3,28,1,29,1,30,1,13,1,9,1,13,1,28,1,29,1,13,1,6,1,30,2,28,2,6,1,28,2,29,1,28,45,29,1,28,9,29,1,28,3,13,2,29,1,30,2,28,2,9,2,29,2,30,1,29,1,30,2,13,1,30,3,29,4,28,8,6,1,16,1,30,1,29,1,28,34,29,1,30,1,26,1,29,1,30,1,13,1,15,1,8,1,29,1,30,2,29,1,28,2,29,1,28,1,29,1,28,13,29,1,28,16,29,1,30,1,9,1,13,1,9,1,13,2,26,1,29,1,28,12,1,290,}, + {1,106,28,9,1,2,28,1,1,15,28,22,29,1,28,2,6,1,29,1,28,1,7,4,8,2,7,1,28,14,29,1,28,3,29,1,28,6,29,1,28,1,29,1,28,64,29,1,30,1,26,1,30,1,28,31,30,1,29,1,13,2,29,1,13,1,6,1,29,2,30,1,6,1,30,1,29,1,28,2,30,1,28,29,29,1,28,32,26,2,30,1,13,1,29,1,28,1,29,1,9,2,30,1,29,1,30,3,29,1,30,2,6,1,29,3,28,10,30,1,9,1,30,1,28,37,30,2,28,1,26,1,9,1,6,1,28,1,13,3,28,4,29,2,28,13,29,1,28,15,29,1,26,1,9,1,13,3,26,2,30,1,28,13,1,289,}, + {1,106,28,9,1,19,28,24,29,1,28,2,7,1,6,5,7,1,28,13,29,1,28,4,29,1,28,6,29,1,28,41,29,1,28,8,29,2,28,17,29,2,28,18,29,1,28,11,29,2,13,1,29,1,28,1,29,1,28,1,30,1,28,2,13,1,30,1,29,1,28,2,30,1,28,2,30,1,28,59,30,1,29,1,30,2,28,1,29,1,30,1,13,2,30,1,28,1,29,2,30,1,29,1,30,1,13,1,6,1,29,2,28,1,29,1,28,9,29,1,16,1,6,1,28,37,30,1,13,1,28,1,29,1,13,1,30,1,28,1,30,1,13,2,29,1,28,18,29,1,28,16,30,1,13,4,30,1,13,1,30,1,28,15,1,287,}, + {1,106,6,1,28,8,1,20,28,26,6,2,7,1,10,1,6,3,28,15,29,1,28,10,29,1,28,50,6,1,29,1,28,16,29,2,28,37,6,1,28,2,30,2,29,1,28,2,29,1,28,2,29,1,30,1,28,28,30,1,28,29,29,2,13,1,30,3,13,1,30,1,29,1,13,1,29,1,28,2,29,1,28,1,30,1,13,1,30,2,29,1,28,2,29,1,28,9,9,1,7,1,28,35,29,2,26,1,9,1,6,1,13,1,30,2,28,2,13,2,30,1,28,1,30,1,28,24,29,1,28,8,30,1,13,1,9,1,13,2,30,1,13,1,30,1,28,10,29,1,28,5,1,286,}, + {1,107,28,7,1,22,28,20,29,3,28,4,29,1,7,1,9,1,8,1,6,1,28,15,29,1,28,2,29,1,28,58,29,1,6,1,29,1,28,15,29,1,28,4,29,2,28,32,29,1,28,1,29,2,30,1,28,18,29,1,28,30,29,1,28,17,29,1,30,1,28,1,30,1,13,1,30,1,28,2,30,2,28,2,29,1,30,1,26,1,30,1,28,1,29,1,28,13,9,1,8,1,28,37,29,1,13,2,9,2,13,2,28,1,30,1,9,1,8,1,30,2,28,18,29,1,28,4,29,1,28,8,29,1,30,1,13,2,9,1,13,1,30,3,28,14,29,1,28,2,1,285,}, + {1,107,28,7,1,24,28,18,6,1,29,2,28,2,29,1,28,1,29,1,6,1,8,1,10,1,6,1,28,15,29,2,28,1,29,1,6,1,28,52,29,1,28,5,6,2,28,47,29,1,28,10,29,1,28,49,29,1,28,13,29,1,28,3,29,1,28,2,13,1,7,1,29,1,28,2,29,2,28,2,29,1,6,1,30,1,28,16,8,1,16,1,28,38,30,2,13,1,16,2,9,1,8,1,6,1,30,1,13,1,30,1,28,1,29,1,28,11,29,1,28,2,30,1,26,3,30,1,28,12,29,1,13,1,9,1,30,1,13,2,30,1,29,1,28,15,30,1,29,1,28,2,1,284,}, + {1,108,28,5,1,26,28,22,29,1,6,1,29,3,6,2,29,1,28,10,29,1,28,3,29,3,6,2,29,2,28,37,29,1,28,19,29,1,28,5,29,2,28,31,29,1,28,8,29,1,28,59,29,1,28,13,29,1,28,7,9,1,30,1,28,3,30,1,29,1,28,1,29,2,30,1,26,1,28,16,6,1,16,1,29,1,28,34,30,2,28,1,13,5,9,1,16,1,8,1,29,1,13,1,8,1,6,1,30,1,29,1,28,21,29,1,28,8,29,1,13,1,15,1,13,1,30,1,13,2,30,1,28,1,29,1,28,13,30,1,29,1,28,3,1,283,}, + {1,109,28,3,1,28,28,22,29,1,28,1,29,1,6,2,29,1,6,1,29,1,28,8,29,2,28,3,29,2,6,3,29,1,6,2,29,1,28,52,29,1,28,2,29,1,6,1,29,1,28,4,8,1,29,1,28,43,29,2,28,54,29,1,28,21,13,1,28,2,29,1,30,2,28,1,29,1,30,1,6,1,30,1,29,1,28,16,30,1,16,1,29,1,28,34,30,1,29,1,28,2,30,1,9,1,30,2,13,1,30,1,9,3,16,1,8,1,6,1,29,1,28,25,29,1,28,4,29,1,13,1,9,2,13,1,30,1,9,1,13,1,28,15,30,1,29,1,28,4,1,282,}, + {1,141,28,22,29,1,6,1,29,5,28,7,29,2,28,4,29,1,6,1,29,2,6,3,29,2,28,1,1,1,28,38,29,2,28,2,29,1,28,6,29,1,8,1,29,1,28,2,29,1,6,1,29,1,28,3,6,2,28,45,29,2,28,52,29,1,28,20,29,1,6,1,28,2,29,1,30,2,28,1,29,1,30,2,29,1,28,17,30,1,16,1,30,1,28,35,29,1,28,2,30,1,9,1,29,1,13,1,9,1,28,1,30,1,13,3,30,1,29,1,28,32,30,2,13,1,9,1,13,2,26,1,29,2,28,14,29,1,30,1,28,2,29,1,1,282,}, + {1,142,28,21,29,4,28,1,29,1,28,7,29,1,28,1,29,2,28,2,29,4,6,2,29,1,6,2,29,1,1,3,28,49,29,1,28,2,29,1,28,1,6,1,7,1,6,1,28,2,6,1,29,3,28,19,29,2,28,23,26,1,29,1,28,66,29,1,28,5,30,1,13,1,28,3,29,2,28,1,29,1,30,1,28,2,30,1,28,16,29,1,16,1,7,1,28,32,30,1,28,3,29,1,30,1,13,1,8,1,28,1,30,1,13,1,30,1,13,1,28,1,29,1,13,1,30,2,28,32,13,2,26,1,30,1,26,1,13,1,30,1,29,1,30,1,28,15,30,1,28,4,1,281,}, + {1,143,28,21,29,1,28,10,29,1,6,1,29,9,6,3,7,1,14,1,1,5,28,38,29,1,28,13,29,1,6,2,29,1,28,2,29,1,28,2,29,1,6,1,28,19,29,2,28,17,29,1,28,5,29,1,28,66,30,1,28,5,30,1,29,1,28,27,30,1,9,1,8,1,28,32,30,1,28,3,29,2,30,3,29,1,13,1,16,1,9,1,30,1,13,1,9,2,30,1,28,32,30,1,9,2,30,2,26,1,30,3,28,21,1,280,}, + {1,145,28,29,6,1,29,2,28,2,29,1,6,1,29,1,6,1,29,3,6,2,7,1,11,1,1,8,28,35,29,1,28,9,29,1,28,7,29,3,28,2,29,2,6,2,28,22,29,1,28,15,29,1,28,78,29,1,28,27,29,1,9,2,28,32,30,1,28,5,30,1,13,1,7,1,28,1,13,1,15,1,16,1,8,1,9,3,29,1,28,29,30,1,28,1,29,1,26,2,9,1,13,1,26,1,30,1,29,3,28,22,1,279,}, + {1,147,28,25,29,4,28,3,29,5,6,3,29,1,1,11,28,37,6,1,28,14,29,1,28,2,29,4,6,4,28,13,29,1,28,100,29,1,28,28,29,1,15,2,28,38,30,1,9,2,29,1,13,1,9,2,13,2,9,2,29,1,28,29,29,1,28,1,29,1,13,2,30,1,13,1,9,1,30,1,28,1,29,2,28,23,1,278,}, + {1,148,28,22,29,2,28,5,29,2,6,1,29,1,28,1,29,2,6,1,7,1,29,1,28,1,1,12,28,36,29,1,28,10,29,1,28,2,29,1,28,2,6,2,28,1,6,4,29,1,6,1,28,17,29,3,28,70,30,1,28,33,29,1,28,18,29,1,9,1,15,1,28,37,30,1,13,1,9,1,13,1,28,1,30,1,13,1,30,2,13,1,9,1,8,1,29,1,30,1,28,28,29,1,30,2,15,1,9,1,13,1,30,1,13,1,30,1,28,1,30,1,29,1,28,24,1,277,}, + {1,149,28,27,29,6,6,3,30,1,1,16,28,38,29,1,28,9,6,2,28,1,6,2,28,1,6,2,29,1,28,2,29,1,6,1,28,9,29,1,28,5,29,1,28,1,29,1,30,1,28,70,29,1,28,32,29,1,28,20,13,1,15,1,28,37,30,1,13,1,9,1,13,1,28,1,30,3,9,3,8,1,29,1,30,1,28,28,29,1,30,1,13,3,9,1,13,1,30,1,13,1,30,2,28,26,1,276,}, + {1,150,28,26,29,2,28,4,6,2,29,1,1,19,28,35,29,1,28,10,6,2,28,1,6,2,29,3,28,4,29,1,28,18,29,1,28,1,29,2,28,2,29,1,28,63,29,2,28,53,30,1,15,1,29,1,28,5,29,1,28,29,29,1,30,3,9,2,8,1,28,1,29,1,13,1,16,1,6,1,29,1,30,1,29,1,28,23,29,1,28,5,29,1,13,3,9,2,30,1,13,1,30,3,28,27,1,274,}, + {1,152,28,21,29,4,28,3,29,3,28,1,1,22,28,28,29,1,28,4,29,1,28,10,6,1,29,1,28,1,6,3,29,1,28,4,29,2,28,18,29,1,30,2,29,3,28,64,29,1,28,15,29,1,28,38,30,1,15,1,29,1,28,36,29,1,30,1,28,1,26,1,13,1,9,2,8,1,13,2,30,1,28,1,29,1,28,1,29,1,28,28,29,1,9,1,13,4,30,4,28,22,29,1,28,3,6,2,28,1,1,273,}, + {1,154,28,20,29,2,28,3,29,1,6,1,28,2,1,25,28,34,29,2,28,6,6,1,28,4,29,3,28,4,6,1,29,1,28,18,29,1,28,1,29,1,26,1,29,1,28,80,29,1,28,7,29,1,28,30,13,1,14,1,30,1,28,36,13,1,30,1,28,1,30,1,13,3,16,1,14,1,9,1,13,2,28,31,29,1,13,3,26,1,30,2,29,3,28,22,29,2,28,2,29,1,30,1,28,2,1,272,}, + {1,155,28,19,29,2,28,2,29,1,6,2,1,29,28,29,29,1,28,10,6,1,28,3,29,4,28,4,29,2,28,18,29,1,28,5,29,2,28,116,25,1,14,1,30,1,28,36,13,1,28,2,30,1,13,2,30,1,9,1,14,1,15,1,16,1,13,1,29,1,6,1,30,2,29,1,28,26,29,1,30,1,13,3,29,1,30,3,29,1,28,27,30,1,28,3,1,271,}, + {1,157,28,17,29,1,28,2,29,3,1,35,28,47,29,1,6,1,28,3,29,1,28,18,29,2,30,1,29,1,28,1,29,3,28,89,29,1,28,21,29,1,9,1,14,1,30,1,28,36,29,1,28,2,29,1,30,1,13,2,9,1,16,2,9,1,13,1,30,3,28,26,30,1,28,1,29,1,13,5,30,4,28,26,30,2,29,1,28,3,1,270,}, + {1,159,28,17,29,2,28,1,1,42,28,33,29,1,28,7,6,2,28,21,29,1,30,3,29,3,28,1,29,1,28,89,29,1,28,22,9,2,29,1,28,37,29,1,30,1,13,4,30,1,13,3,30,2,29,1,28,27,30,1,29,2,13,5,30,4,28,27,29,1,30,1,28,2,29,1,28,2,1,268,}, + {1,160,28,17,1,49,28,29,6,1,28,7,29,1,28,25,29,2,28,2,29,1,28,59,29,1,28,37,29,3,28,12,30,1,9,1,29,1,28,33,29,1,28,3,29,1,30,1,26,1,13,1,30,1,13,2,9,2,8,1,29,1,6,2,28,27,29,2,30,1,13,6,30,2,29,3,28,26,29,1,28,2,29,3,28,1,1,267,}, + {1,162,28,14,1,53,28,14,29,1,28,14,29,1,28,31,29,1,28,3,29,1,28,53,29,1,28,42,29,1,28,1,29,2,28,11,6,1,9,1,28,2,29,2,28,33,26,1,13,1,9,2,13,4,15,2,8,1,6,1,8,1,7,1,28,27,29,1,30,1,26,1,13,1,9,2,13,3,26,1,28,33,29,2,30,1,29,1,28,1,1,266,}, + {1,164,28,10,1,57,28,28,29,1,28,29,29,2,28,3,29,1,28,110,30,1,13,1,9,1,29,1,28,36,30,1,26,1,13,1,9,1,15,2,8,1,30,1,13,1,9,1,8,2,7,1,29,1,28,3,29,1,28,24,26,1,13,2,9,2,13,2,30,2,28,35,29,2,28,2,1,265,}, + {1,165,28,6,1,62,28,26,29,1,28,28,29,1,28,115,30,1,26,1,13,1,9,1,28,39,29,1,30,1,13,1,9,2,16,1,15,1,9,1,8,1,13,2,30,1,29,1,28,2,30,1,29,1,28,20,29,2,28,1,29,1,13,6,30,1,29,3,28,29,30,1,28,3,30,1,13,1,28,4,1,263,}, + {1,235,28,48,29,1,28,111,29,4,28,5,30,1,26,1,13,1,9,1,29,1,28,7,29,1,28,30,30,2,13,1,8,1,9,1,16,1,14,2,15,1,16,1,9,1,6,1,30,1,28,2,29,1,28,22,26,1,30,1,29,1,13,3,30,1,13,2,30,1,29,3,28,29,30,1,28,2,30,1,29,1,28,5,1,263,}, + {1,237,28,35,29,1,28,4,29,1,28,11,29,1,28,97,29,1,28,7,29,2,30,1,29,3,28,3,26,1,13,1,25,1,9,1,30,1,28,38,29,1,13,1,9,2,13,2,9,1,16,3,9,1,7,2,6,1,7,1,13,1,30,3,29,1,28,18,30,2,29,1,30,1,13,2,30,1,29,1,30,2,29,2,28,31,29,1,28,7,29,1,28,2,1,261,}, + {1,238,28,23,29,1,28,11,29,1,28,113,30,1,28,8,29,1,30,1,26,2,29,1,28,2,29,1,26,1,13,1,9,2,6,1,28,39,30,1,28,1,13,1,9,1,16,2,9,1,13,3,29,1,30,1,29,1,30,2,29,1,30,1,28,21,26,1,29,1,13,3,30,3,29,5,28,36,29,1,30,1,28,3,1,260,}, + {1,240,28,147,30,1,28,6,29,2,30,1,26,2,28,3,29,2,28,1,30,1,13,1,9,1,6,1,28,35,29,1,28,3,30,1,28,1,30,1,15,1,9,1,13,1,30,3,28,2,29,2,28,25,26,2,9,2,13,1,30,4,29,3,28,37,30,1,28,1,29,1,28,3,1,259,}, + {1,242,28,145,29,1,28,11,29,4,28,2,26,1,9,2,6,1,28,41,30,1,9,2,30,1,8,1,13,1,6,1,28,30,13,1,15,1,9,1,13,1,26,1,13,1,26,1,30,1,29,2,30,1,28,35,29,2,28,4,29,1,7,1,28,2,1,257,}, + {1,244,28,143,29,1,28,12,30,1,29,3,30,1,9,1,15,1,9,1,7,1,28,38,29,2,28,1,30,1,9,1,13,1,30,1,16,2,8,1,28,8,29,1,28,21,13,1,9,4,13,1,26,1,30,1,29,2,30,1,28,35,29,1,28,1,29,1,28,3,30,1,13,1,28,3,1,256,}, + {1,246,28,138,30,2,29,1,28,3,30,1,28,7,29,1,28,1,29,1,26,1,30,1,26,1,13,2,9,2,7,1,28,37,29,1,30,2,28,1,30,1,15,1,13,1,30,1,9,1,16,1,9,1,29,1,28,4,29,1,6,1,28,23,29,1,13,1,26,1,9,1,15,1,9,1,13,1,30,1,29,3,28,17,29,1,28,18,29,1,28,1,29,2,28,1,29,2,30,1,28,3,1,255,}, + {1,247,28,138,29,2,28,3,29,2,28,9,26,2,13,1,26,1,13,1,9,1,15,1,6,1,28,38,29,1,30,1,29,1,9,1,15,1,9,1,29,1,9,2,8,1,6,1,28,4,8,2,6,1,28,1,29,1,28,20,30,1,13,3,9,3,26,1,29,1,28,21,29,1,28,16,29,1,28,4,29,1,28,1,30,1,29,1,28,3,1,254,}, + {1,249,28,136,29,1,28,8,29,1,28,1,29,1,28,3,30,1,13,5,9,2,6,1,28,38,29,1,13,1,9,4,7,1,9,1,16,1,8,1,6,1,30,1,28,2,30,1,13,1,6,1,30,1,29,2,28,19,29,1,26,1,13,1,9,1,13,1,30,4,29,1,28,5,29,1,28,33,29,1,28,2,29,2,28,1,30,1,28,6,1,252,}, + {1,250,28,144,30,1,28,4,29,1,30,2,29,1,30,1,26,1,13,1,7,1,8,1,29,1,28,37,30,2,13,1,9,2,13,1,9,1,8,1,16,2,13,1,29,1,28,1,29,1,28,1,29,1,13,1,30,2,29,1,28,20,30,2,13,3,30,3,29,4,28,43,29,1,28,3,6,1,30,1,28,2,1,251,}, + {1,251,28,143,29,2,28,2,30,1,28,3,30,1,26,1,13,2,6,2,28,37,30,3,13,2,29,2,30,1,9,1,13,2,28,3,30,1,28,3,29,1,28,1,29,1,28,20,30,1,13,1,9,2,13,4,28,2,30,1,28,44,30,1,28,1,29,1,28,1,29,1,30,1,28,4,1,249,}, + {1,253,28,142,29,1,30,2,28,2,29,1,30,1,26,1,13,2,26,1,30,1,6,1,28,38,29,1,13,1,9,1,28,2,13,1,16,1,9,1,30,1,13,1,28,2,29,1,28,4,30,1,28,4,29,1,28,17,30,1,9,2,13,2,26,1,13,1,30,1,29,3,28,17,29,1,28,23,29,1,28,2,29,1,28,4,30,1,28,5,1,248,}, + {1,254,28,141,29,2,28,3,29,3,13,2,26,1,30,1,6,1,29,1,28,37,29,1,30,1,13,1,30,1,9,1,14,1,11,1,16,3,8,3,6,1,29,1,28,2,30,1,6,1,29,1,28,1,29,1,30,1,29,1,28,12,29,1,30,1,29,1,30,2,13,1,15,1,9,1,13,4,30,1,29,1,28,30,30,1,29,2,28,13,29,1,28,3,13,1,30,1,28,5,1,247,}, + {1,256,28,136,30,3,29,3,28,3,29,3,26,1,13,1,6,2,28,40,13,2,30,1,16,1,15,2,16,1,15,1,9,1,8,2,9,2,7,2,8,4,9,1,30,1,28,14,13,2,30,2,13,1,9,1,15,1,13,1,30,1,13,2,30,1,29,1,28,50,13,1,30,1,28,2,29,1,30,1,29,1,28,2,1,245,}, + {1,257,28,137,29,1,28,2,29,2,28,2,29,1,28,2,30,1,13,2,6,1,29,1,28,39,30,1,29,1,30,1,13,1,9,1,16,2,8,1,30,2,29,2,30,1,6,1,7,1,8,2,30,1,6,1,8,1,28,15,29,1,13,3,15,2,9,2,13,2,26,1,30,1,28,1,29,1,28,33,29,1,28,1,29,2,28,8,29,1,30,1,29,1,28,2,29,2,28,1,30,1,13,1,30,1,28,3,1,244,}, + {1,258,28,139,29,1,30,4,29,1,30,3,29,2,28,39,30,1,28,2,13,1,9,1,8,1,9,2,6,1,29,2,28,3,29,1,13,1,6,1,30,2,13,1,6,2,13,2,30,1,28,12,30,1,9,1,13,1,15,1,16,1,13,5,29,1,28,1,29,1,28,34,30,1,28,11,30,1,29,1,28,1,30,1,28,4,30,3,29,1,28,2,1,243,}, + {1,259,28,140,30,1,6,1,30,3,29,4,28,38,29,2,28,1,29,1,9,1,28,1,29,1,8,1,9,1,30,1,13,1,28,1,29,1,28,4,29,1,28,2,29,2,6,1,13,1,30,3,29,1,28,10,29,1,13,2,9,2,13,2,26,2,13,1,30,1,28,49,29,2,30,1,29,1,28,5,13,1,30,1,28,3,1,242,}, + {1,260,28,132,29,1,28,5,29,1,30,1,29,1,28,1,29,1,30,2,29,3,28,39,29,1,28,1,30,1,8,1,28,1,29,1,16,1,9,1,6,1,8,1,30,1,29,1,28,4,29,1,28,1,29,1,28,2,8,1,30,1,28,6,29,1,30,1,28,3,29,1,28,2,30,2,13,3,15,1,9,1,13,1,30,3,28,50,29,1,30,1,13,1,28,1,29,2,28,2,30,1,29,1,28,5,1,240,}, + {1,261,28,137,29,1,30,1,29,2,30,1,13,1,29,5,28,39,30,1,8,1,6,1,28,1,29,1,16,1,9,1,6,2,9,1,13,1,29,2,28,2,30,1,28,3,30,1,6,1,28,2,30,2,28,4,29,1,30,1,28,2,29,1,26,1,29,1,30,1,26,1,13,1,9,1,26,1,9,1,15,1,9,1,13,1,29,1,26,1,29,1,28,50,29,1,28,6,29,3,30,1,28,1,29,2,28,1,1,239,}, + {1,262,28,127,29,1,28,1,29,1,28,7,29,1,28,2,30,2,29,2,6,2,29,1,28,35,29,1,28,3,30,1,9,1,6,1,28,1,30,1,16,1,9,1,8,1,28,7,30,1,29,2,13,1,8,1,28,2,29,1,26,2,29,2,28,7,30,1,13,1,30,2,13,6,9,1,13,1,30,1,28,54,29,1,28,4,29,1,28,3,29,2,28,3,1,237,}, + {1,263,28,130,29,2,28,3,29,1,30,1,28,3,29,6,28,1,29,1,28,38,13,1,7,1,28,1,30,1,16,2,8,1,29,2,28,5,29,2,13,1,16,1,6,1,28,3,30,2,29,1,28,8,29,1,26,1,30,1,29,1,30,1,13,2,30,4,9,1,26,1,28,49,29,1,28,4,29,1,28,4,30,1,28,2,29,2,28,1,29,1,6,2,28,1,1,236,}, + {1,264,28,125,29,1,28,3,29,2,28,2,29,1,30,3,28,2,30,1,13,2,29,1,6,1,29,1,28,39,29,1,13,1,7,1,28,2,8,1,16,1,7,1,28,1,29,1,13,1,29,1,28,2,29,1,8,1,13,1,8,1,9,1,6,1,28,1,13,2,30,2,28,9,29,1,30,4,13,4,30,1,29,1,30,2,28,50,29,1,28,8,13,2,28,1,29,2,28,1,29,1,30,1,8,1,29,1,28,2,1,234,}, + {1,266,28,126,29,1,28,3,29,3,30,1,13,1,6,1,7,1,6,1,13,2,6,2,28,40,6,3,28,2,13,1,16,1,8,2,9,2,29,1,8,2,9,1,16,1,9,5,16,3,9,1,30,1,28,7,29,1,28,1,30,3,9,1,13,1,26,2,30,1,13,1,29,1,28,1,30,1,28,50,29,1,28,8,30,2,28,4,29,1,28,1,13,1,30,1,28,4,1,232,}, + {1,267,28,121,29,1,28,3,30,1,29,1,28,1,30,1,29,1,28,3,29,1,6,1,30,1,29,1,7,1,13,1,6,1,29,1,28,40,30,1,13,2,30,1,28,1,29,1,9,1,16,1,7,1,8,1,9,2,16,1,9,3,30,2,13,3,8,1,9,1,15,2,8,1,13,3,28,3,30,1,13,1,28,1,30,2,13,1,15,2,30,1,13,1,30,2,29,2,30,1,28,49,29,2,28,8,29,2,28,4,29,1,28,1,30,1,13,1,29,1,28,5,1,230,}, + {1,269,28,118,29,1,28,9,29,1,30,2,13,1,7,1,6,1,8,1,13,2,7,1,6,1,29,1,28,2,29,1,28,37,30,2,6,1,28,1,13,1,16,1,9,1,6,1,29,1,6,1,13,4,8,1,28,2,29,1,30,3,28,1,29,1,26,1,30,1,29,1,30,3,28,3,30,1,29,1,30,2,26,1,9,1,15,1,13,2,30,1,29,1,28,1,29,1,30,1,28,50,29,1,28,1,29,1,28,11,29,1,30,1,28,2,13,1,29,1,28,2,29,1,28,4,1,228,}, + {1,271,28,125,29,1,13,2,6,1,29,2,6,6,29,1,28,41,30,1,29,1,28,1,13,3,8,1,30,1,29,2,28,1,29,1,13,1,9,1,29,1,28,3,29,2,28,1,30,1,13,1,30,1,29,2,28,2,13,1,9,1,13,1,29,1,28,1,29,1,30,1,13,2,9,2,13,1,30,2,28,1,29,2,28,61,29,2,28,5,6,1,30,1,28,2,29,2,6,1,29,1,28,2,1,227,}, + {1,274,28,121,30,1,7,1,6,1,29,1,28,2,30,1,7,1,6,5,29,1,28,41,29,1,30,1,28,1,30,3,13,1,30,3,28,2,13,2,29,1,30,1,28,2,29,1,30,1,13,1,15,1,16,1,13,1,30,1,29,1,28,2,30,1,8,1,9,1,8,1,13,1,26,2,13,3,9,1,8,1,26,2,29,2,28,54,29,1,28,7,29,1,28,6,13,1,28,3,30,1,28,1,30,1,29,1,28,3,1,226,}, + {1,276,28,9,29,1,28,109,30,1,6,1,28,3,29,1,13,1,8,1,6,1,29,3,6,2,28,41,29,2,28,1,29,1,28,2,30,1,6,1,29,1,30,1,28,2,13,1,9,1,6,2,30,1,28,1,13,3,8,1,7,1,30,1,13,1,30,3,29,1,30,1,13,1,9,1,15,1,9,1,30,1,26,1,9,2,30,1,13,1,26,2,29,1,28,55,29,1,28,8,29,1,28,3,29,1,28,1,8,1,30,1,28,2,29,1,28,1,29,1,30,1,29,2,28,4,1,223,}, + {1,276,30,1,29,1,28,116,6,1,28,3,6,2,30,1,13,2,7,1,6,1,7,1,6,2,28,42,29,1,28,2,30,1,28,2,13,1,8,1,28,1,7,1,6,1,8,1,9,2,6,1,28,1,30,1,13,2,29,2,30,1,29,1,28,1,6,1,30,1,13,2,30,1,28,1,30,1,13,1,9,2,30,1,13,5,30,1,26,2,29,1,28,64,29,1,28,4,30,1,13,1,28,1,30,1,7,1,29,1,28,1,6,1,28,1,29,2,28,1,29,1,28,3,1,221,}, + {1,276,30,1,29,2,28,114,29,1,28,2,29,2,30,1,29,2,30,1,8,1,7,2,6,1,28,2,29,1,28,39,29,1,28,4,7,1,28,1,29,1,8,3,9,1,8,2,29,2,13,1,29,1,28,1,30,1,28,2,30,2,28,1,29,1,13,2,8,1,13,1,30,1,29,2,30,1,13,5,30,4,26,1,13,1,29,1,28,69,29,1,13,1,28,1,29,1,13,1,6,1,28,1,6,1,29,1,28,1,13,1,30,1,29,1,30,1,28,3,1,220,}, + {1,275,29,2,28,1,29,1,28,113,29,2,28,1,29,3,6,3,7,2,6,1,28,1,29,4,28,40,29,1,28,3,8,1,30,1,6,1,9,2,7,1,29,1,7,1,29,1,28,1,29,1,28,4,29,1,28,1,30,2,13,1,30,2,9,1,8,1,9,1,30,3,13,1,26,1,13,1,30,1,13,1,9,1,30,1,13,2,30,2,26,1,28,70,29,2,28,2,29,1,30,2,6,2,28,1,29,1,28,2,29,2,30,1,28,3,1,218,}, + {1,275,28,117,29,1,28,4,29,1,13,1,8,1,6,3,29,3,6,1,29,2,28,40,29,1,28,3,30,2,28,1,13,2,29,2,6,1,30,1,28,1,29,1,28,3,30,1,9,4,16,1,9,4,16,1,30,1,29,1,13,1,30,4,13,1,9,1,30,1,13,3,30,2,28,69,29,1,28,2,30,1,29,1,28,3,13,1,30,1,28,2,30,1,6,1,28,2,13,1,30,1,29,1,28,3,1,216,}, + {1,274,28,19,29,1,28,98,29,1,30,1,29,1,28,1,29,1,6,2,29,1,28,2,29,1,6,1,29,1,6,2,29,1,6,1,28,44,29,1,30,1,29,1,8,1,9,1,8,3,9,1,6,3,29,1,30,1,13,1,16,1,15,1,14,1,15,1,16,1,13,1,6,1,13,2,9,1,30,2,13,1,30,3,13,1,9,1,13,3,30,3,29,1,28,72,29,2,28,3,29,1,13,1,28,2,6,1,30,2,28,1,30,1,13,1,30,1,29,1,28,1,29,1,28,2,1,214,}, + {1,274,28,11,29,1,28,106,29,4,6,1,28,4,6,1,29,1,7,1,6,1,8,1,7,1,6,2,28,43,29,1,6,1,8,1,9,5,6,3,9,2,16,2,9,1,13,1,9,2,30,4,13,4,9,2,30,3,13,5,30,1,29,2,28,70,29,1,28,7,30,2,28,2,13,1,6,1,8,1,13,1,29,1,13,1,6,1,29,1,30,2,29,1,28,2,1,213,}, + {1,273,28,7,29,1,28,4,29,1,28,1,29,2,28,103,29,1,6,2,29,1,28,4,6,1,29,2,7,1,6,1,7,1,9,2,6,1,28,44,30,1,28,1,13,2,30,2,13,1,29,1,28,2,29,1,30,2,13,2,30,2,13,1,28,1,29,2,30,1,13,1,30,1,13,2,16,2,13,1,26,1,30,1,26,1,13,4,28,2,29,1,28,64,29,2,28,9,30,1,29,1,28,2,29,1,30,1,29,2,28,1,30,1,13,1,30,2,13,1,30,1,29,1,6,1,13,1,28,4,1,211,}, + {1,272,28,4,29,1,28,7,6,1,28,1,29,1,8,1,10,1,8,1,29,1,28,100,29,2,7,1,28,4,6,1,29,3,6,2,29,2,7,1,6,2,29,1,28,43,29,1,28,2,30,1,29,1,28,1,8,2,29,1,28,2,29,2,13,1,29,1,30,1,9,2,13,1,30,1,29,1,13,2,30,2,13,3,9,1,26,2,13,4,26,1,29,1,28,1,29,1,28,64,29,1,28,11,29,1,28,4,30,1,28,3,30,2,28,1,13,1,30,1,28,2,6,2,29,1,28,4,1,209,}, + {1,272,28,6,29,1,28,5,6,1,29,3,8,1,16,1,7,1,28,100,29,1,6,1,28,3,6,1,29,2,28,1,29,1,6,2,7,2,6,3,29,2,28,44,29,2,6,1,28,2,13,1,8,1,29,2,28,2,30,4,13,2,30,3,13,1,8,1,13,4,30,1,13,1,30,2,13,1,9,1,13,1,26,2,30,1,29,2,28,84,29,4,6,1,30,1,28,2,30,1,9,1,30,1,29,1,30,1,28,3,1,208,}, + {1,272,28,12,6,2,28,1,29,1,6,1,9,1,6,1,29,1,6,2,28,97,7,1,6,1,28,3,6,1,7,1,29,1,28,1,6,2,7,2,6,6,29,1,28,40,29,1,28,2,29,1,30,1,6,1,28,2,13,1,9,1,13,1,8,1,9,4,13,4,30,4,13,1,9,1,13,2,30,4,13,4,26,2,30,1,29,1,28,84,29,1,28,3,13,2,30,1,28,3,30,1,28,2,30,1,29,1,6,1,28,3,1,206,}, + {1,272,28,11,29,1,7,1,28,2,6,2,8,1,6,5,28,95,29,1,6,1,28,2,29,2,6,2,29,2,6,3,10,1,6,1,29,1,6,1,7,2,29,1,28,44,29,1,30,2,29,1,28,1,29,1,13,3,9,1,15,1,16,3,15,1,16,1,13,1,30,1,13,2,29,1,13,1,8,1,9,1,8,1,29,1,30,3,9,2,13,1,30,2,29,1,30,1,29,1,28,85,29,1,28,3,29,1,30,1,29,1,30,1,6,1,29,1,6,1,30,1,29,1,28,1,30,1,29,1,28,4,1,204,}, + {1,271,28,2,29,2,28,1,29,1,28,4,29,1,6,1,8,2,28,3,6,3,7,1,8,1,7,1,6,2,28,94,6,1,28,3,29,3,6,6,10,1,7,1,6,2,29,2,28,46,29,2,30,4,13,4,8,1,9,2,16,3,9,2,13,1,28,1,29,1,26,1,8,2,13,1,30,3,26,1,9,2,30,2,29,2,28,91,29,1,30,1,28,1,6,1,29,1,30,1,6,1,30,1,28,3,30,2,29,1,28,3,1,202,}, + {1,271,28,10,29,1,7,1,6,1,29,1,6,1,29,1,6,1,7,1,29,1,28,1,8,1,10,1,9,1,6,1,9,1,16,1,29,1,28,92,29,1,28,2,29,2,6,1,29,2,6,2,29,1,6,2,8,1,7,1,6,1,29,2,6,1,29,1,28,45,29,1,28,2,30,1,9,1,8,1,29,1,30,1,9,1,8,1,13,1,9,2,16,2,15,1,14,1,16,1,13,1,29,1,13,2,30,1,13,1,9,1,13,5,9,1,13,1,30,2,29,1,28,92,30,1,28,4,7,1,28,1,6,1,29,1,28,1,30,1,13,2,28,2,29,1,28,1,1,201,}, + {1,270,28,11,29,1,7,1,28,2,6,1,7,1,8,1,16,1,6,1,28,1,29,1,7,1,9,2,16,2,8,1,7,1,29,1,28,89,29,1,28,2,29,1,28,1,29,1,6,1,29,1,6,3,29,1,6,1,8,1,7,1,6,1,29,1,7,1,6,3,28,43,29,1,30,2,28,2,29,1,9,2,28,2,6,1,8,2,13,1,30,1,8,1,16,3,8,1,28,1,13,1,16,2,9,1,13,1,30,2,13,3,26,1,30,1,13,2,29,2,28,92,29,1,30,1,28,3,6,1,28,1,7,1,13,1,28,1,30,2,6,1,28,1,30,1,13,1,29,1,28,2,1,199,}, + {1,270,28,12,6,1,28,2,29,2,7,1,16,1,8,1,28,2,6,1,9,1,16,1,10,1,7,1,9,1,16,1,11,1,33,1,28,90,29,1,6,1,28,2,6,3,7,1,6,1,7,1,8,1,7,1,6,1,29,2,7,1,10,1,6,2,28,45,29,1,28,2,29,1,13,2,29,1,6,1,13,1,8,1,7,1,30,1,28,1,30,1,9,1,8,1,9,1,8,1,28,1,29,1,9,1,16,1,15,1,14,1,9,1,13,5,26,1,30,1,26,1,29,1,28,94,13,1,28,3,30,1,29,2,28,4,6,1,29,1,30,1,13,1,30,2,29,1,28,3,1,196,}, + {1,269,28,2,29,1,28,4,29,1,28,3,29,1,28,1,29,1,28,3,29,1,7,1,16,1,9,2,10,1,6,2,9,1,16,1,8,1,9,3,16,1,7,1,6,1,9,1,7,1,6,2,29,1,6,2,29,1,28,1,29,1,6,1,29,1,28,76,29,1,6,1,28,2,29,1,6,1,7,2,10,1,12,1,7,1,28,1,29,2,6,2,9,1,7,1,8,1,6,1,28,48,30,2,28,1,29,1,13,2,8,1,29,1,28,1,30,1,13,1,30,1,9,1,8,1,28,2,30,1,9,2,16,1,15,1,13,1,30,1,13,3,26,1,30,1,29,1,30,1,28,95,29,1,28,1,29,2,28,2,29,2,28,3,6,1,28,3,30,1,29,1,28,2,29,1,28,3,1,193,}, + {1,268,28,2,29,2,28,10,29,1,7,1,6,1,28,1,29,1,7,1,6,1,29,1,8,1,12,1,6,1,28,1,8,1,11,1,9,1,6,1,10,1,8,1,10,1,9,1,6,1,8,1,16,1,9,1,10,1,8,1,16,1,12,2,33,1,7,1,16,1,12,1,33,1,6,1,29,1,28,74,29,2,28,2,6,1,8,1,7,1,16,1,9,1,29,1,6,1,7,1,6,3,10,1,9,1,16,1,7,1,28,1,29,1,28,46,29,1,28,2,29,1,30,2,13,1,29,1,28,1,29,1,13,1,6,1,9,1,7,1,28,2,13,1,30,1,13,1,9,2,13,1,26,2,13,2,26,1,30,2,29,1,28,101,13,1,28,3,29,1,30,2,6,1,30,1,29,2,28,1,29,2,28,5,1,191,}, + {1,268,28,2,29,1,28,8,29,1,28,2,30,2,8,1,9,1,7,1,29,1,28,1,29,1,6,1,9,1,16,1,6,2,12,1,9,1,6,1,9,4,10,1,9,2,6,3,7,1,16,1,11,1,12,1,6,1,7,1,16,1,17,1,16,2,9,1,7,1,29,1,28,70,29,2,6,1,28,2,6,2,10,2,6,2,8,1,9,1,8,1,6,3,7,1,10,1,29,1,28,1,30,1,28,43,29,2,28,1,30,1,6,2,29,1,30,1,6,4,30,1,8,1,9,2,30,1,28,2,8,1,13,1,30,3,13,2,30,1,13,3,30,2,28,102,29,1,28,3,29,1,28,1,6,1,28,5,30,1,28,1,30,1,29,1,28,5,1,189,}, + {1,267,28,1,29,1,28,10,29,1,28,2,29,2,6,1,9,1,10,1,28,3,8,1,7,1,16,1,9,1,29,1,6,1,8,1,7,1,9,6,16,1,8,1,29,1,6,2,10,1,11,2,10,1,7,1,8,1,9,1,16,2,12,1,11,1,16,1,7,1,29,1,28,67,6,1,28,3,29,3,7,1,16,1,6,1,7,1,10,1,9,1,10,1,8,1,7,3,6,1,7,1,6,1,28,2,29,1,28,42,30,2,29,1,28,1,30,1,13,1,28,1,30,1,13,2,6,1,7,3,16,1,9,1,13,1,30,2,13,1,30,1,29,1,28,1,30,1,13,5,26,1,30,1,29,1,28,102,29,2,28,5,29,2,28,2,30,1,28,2,30,2,29,1,30,2,29,1,28,3,1,187,}, + {1,266,28,13,29,1,6,1,28,2,6,3,8,2,6,1,28,1,6,1,9,1,7,1,16,1,6,2,8,1,7,1,8,1,9,2,8,1,7,1,6,1,8,1,16,1,7,1,6,1,7,1,8,1,12,1,17,1,12,1,9,1,7,1,6,1,8,1,9,1,17,1,11,1,16,1,12,2,7,1,29,1,28,65,29,1,28,4,29,2,9,1,8,1,29,1,8,2,9,2,7,2,8,1,9,1,6,2,7,1,6,1,28,45,29,1,28,3,29,1,28,2,29,1,28,1,30,1,13,2,9,1,16,1,13,1,30,1,13,1,6,1,30,5,26,1,13,2,26,3,30,1,28,105,29,2,28,1,30,1,29,1,30,2,28,4,29,1,28,1,13,1,30,1,28,1,29,1,30,1,29,2,28,4,1,184,}, + {1,265,28,5,29,2,28,8,6,1,29,1,28,4,6,1,9,2,6,1,28,1,6,1,9,1,16,1,7,1,6,2,8,1,7,1,8,1,7,4,28,1,7,1,9,1,7,2,9,2,6,1,17,1,16,1,9,1,7,1,6,1,16,1,11,1,9,2,12,1,11,2,17,1,7,1,6,1,28,67,29,1,28,1,6,1,8,1,29,2,7,1,10,1,9,1,10,1,6,1,9,1,16,1,9,1,16,1,7,1,6,3,28,44,30,2,29,2,30,1,28,5,29,2,30,1,9,1,26,1,29,1,30,2,29,1,30,3,13,1,26,1,30,1,13,1,30,1,13,1,30,1,29,1,28,109,29,1,28,1,30,1,28,4,30,1,29,3,28,2,13,1,30,2,29,1,28,5,1,182,}, + {1,264,28,4,30,1,29,2,28,9,6,2,28,2,6,1,29,2,6,1,29,1,7,3,8,1,6,2,9,1,8,1,6,1,10,1,6,2,9,1,10,1,8,2,9,2,8,1,9,1,16,1,9,1,6,1,9,1,17,1,7,1,6,1,7,1,11,1,17,1,6,2,16,1,17,1,11,2,16,3,7,1,29,1,28,61,29,1,28,1,29,1,28,1,29,1,7,1,29,1,28,1,7,1,10,1,8,1,9,2,10,1,16,1,9,1,7,1,16,1,10,1,6,1,7,1,30,1,28,2,29,1,28,44,29,1,30,1,29,1,28,7,30,1,29,2,30,3,6,1,13,1,30,1,26,3,13,3,30,1,29,1,28,92,29,1,28,16,29,1,28,1,29,1,30,1,28,5,30,1,6,1,29,1,30,2,29,2,13,1,30,1,29,2,28,4,1,180,}, + {1,264,28,16,29,3,28,1,6,3,29,1,28,1,6,1,10,1,6,1,28,2,9,1,12,1,9,1,6,1,8,2,9,1,7,1,6,2,8,1,9,2,6,1,7,1,16,1,9,2,6,1,16,1,12,1,10,1,9,1,11,2,5,1,7,1,9,1,16,2,11,1,17,1,9,1,16,1,17,1,16,1,10,1,29,1,28,57,29,1,28,5,7,1,6,1,29,1,6,1,8,1,9,1,8,1,10,1,9,2,7,1,8,1,6,1,10,1,9,2,7,1,28,1,29,1,30,1,28,47,29,1,28,12,30,1,13,2,30,3,13,1,26,1,13,2,30,1,28,113,29,1,30,1,28,2,29,1,28,2,30,1,28,3,29,3,6,1,29,1,30,2,28,5,1,178,}, + {1,263,28,14,29,1,28,5,29,3,28,1,29,1,6,1,29,1,7,2,6,1,7,1,9,1,7,2,9,1,8,1,16,1,7,1,28,1,29,1,6,1,7,2,16,1,9,1,7,1,9,1,16,2,9,1,16,3,9,2,11,1,17,1,12,1,10,1,9,2,16,1,11,1,16,1,9,1,16,1,12,1,11,1,16,1,7,1,28,60,29,1,6,1,8,1,28,1,29,1,7,2,10,1,8,1,6,2,9,2,8,1,9,1,10,1,6,1,29,1,6,1,28,1,29,1,30,1,28,60,29,1,30,1,29,1,30,1,29,1,30,1,13,1,26,2,13,1,30,2,28,113,29,1,28,8,13,1,30,4,29,3,30,3,28,5,1,175,}, + {1,262,28,16,29,1,28,4,29,1,6,1,29,1,28,1,6,4,7,1,10,1,9,1,29,1,28,1,6,1,9,1,16,2,7,1,29,2,6,1,8,2,16,1,9,4,16,2,10,1,8,1,9,1,6,1,29,1,9,2,16,1,17,2,16,1,8,1,16,1,11,2,16,2,11,1,17,1,11,1,16,1,6,1,28,57,29,1,28,1,7,1,29,1,28,1,29,1,8,1,7,1,8,1,6,1,7,1,8,1,9,3,16,1,6,1,28,1,6,1,7,1,28,2,29,1,28,61,29,4,26,1,13,2,26,1,30,1,29,1,28,120,6,1,29,1,28,2,30,1,29,2,30,1,29,1,28,3,30,1,6,1,30,2,28,6,1,172,}, + {1,261,28,18,29,1,28,2,29,2,6,1,29,1,28,1,29,1,6,1,29,3,8,2,28,2,7,1,6,1,7,1,9,1,6,2,29,1,28,1,6,1,7,1,8,1,7,1,8,3,16,1,11,1,16,2,12,1,9,1,29,1,10,1,16,4,11,1,16,1,9,1,17,1,11,1,12,1,16,1,17,2,11,3,16,1,6,1,28,56,6,2,28,1,29,1,7,1,8,1,7,1,8,1,7,1,9,2,10,1,8,2,10,1,6,2,7,1,8,1,29,1,28,65,29,2,30,2,13,2,30,1,29,1,28,119,29,1,28,1,30,1,28,6,29,1,28,1,30,1,28,1,29,1,7,1,6,1,13,2,29,1,30,1,28,5,1,170,}, + {1,261,28,7,29,1,28,10,6,1,29,1,28,2,6,1,29,6,6,1,29,1,28,1,29,1,28,2,29,1,6,2,8,1,6,1,29,1,8,1,6,3,29,1,7,3,9,1,16,1,9,3,16,1,17,1,6,1,29,1,16,5,12,1,9,1,16,1,11,2,16,2,17,1,11,4,12,1,7,1,28,54,6,2,28,2,6,2,7,2,8,1,7,1,10,1,9,2,10,1,6,1,7,2,8,1,7,1,6,2,28,50,29,2,28,11,30,2,29,2,30,3,26,1,30,1,28,122,29,1,30,1,28,7,29,1,28,2,7,1,13,1,30,1,8,1,6,1,30,3,29,1,28,4,1,168,}, + {1,260,28,5,30,1,29,1,28,13,6,1,29,1,28,4,29,3,6,3,7,1,6,1,28,3,6,2,29,1,7,1,6,2,8,1,9,2,29,1,6,1,8,1,16,1,12,1,7,1,6,1,9,1,16,1,9,1,16,1,9,1,6,1,9,1,8,1,16,7,11,8,12,1,16,1,33,1,29,1,28,52,7,1,28,2,6,2,7,3,8,1,10,1,7,1,8,1,16,1,6,2,7,1,6,1,7,1,6,2,7,1,28,53,29,2,28,3,29,2,28,3,29,2,28,1,29,1,30,3,29,1,30,1,29,2,28,119,30,1,29,1,30,1,28,3,29,1,30,2,28,3,29,1,30,1,29,3,13,1,29,1,30,2,13,1,30,1,29,1,28,3,1,167,}, + {1,259,28,5,29,2,28,15,30,1,29,1,28,2,6,2,29,1,28,2,29,1,28,1,8,1,9,1,6,2,28,1,29,1,6,1,29,2,8,1,28,2,7,1,9,2,7,1,8,1,9,1,16,1,8,1,28,1,7,1,16,1,9,1,10,1,12,1,16,1,7,2,9,2,16,1,9,1,16,1,9,1,16,2,11,4,17,1,12,1,16,2,11,2,16,1,6,1,28,46,6,1,7,1,28,2,6,1,28,3,6,3,8,3,9,3,7,6,6,1,8,2,28,53,29,2,28,3,29,1,28,2,29,1,28,4,29,1,30,4,26,1,30,1,28,122,29,1,28,4,29,1,30,1,6,1,28,1,29,1,28,1,29,2,28,2,30,1,29,1,6,1,29,1,30,1,13,1,30,2,28,4,1,165,}, + {1,259,28,23,30,1,28,1,6,4,28,2,6,1,29,1,6,4,29,1,28,1,6,2,28,1,6,1,7,1,28,2,8,1,10,1,7,3,8,1,16,1,6,1,29,1,8,1,9,1,16,1,11,1,16,1,6,2,9,1,10,1,9,4,16,1,12,5,16,2,17,2,11,2,17,1,16,1,7,1,28,46,29,1,28,1,6,1,29,1,28,2,29,2,6,3,7,1,8,1,9,2,6,2,10,2,7,1,8,2,6,1,7,2,28,53,29,2,28,6,29,1,28,3,30,3,29,1,28,1,29,1,30,1,26,1,28,134,29,1,28,3,29,2,28,1,29,1,13,2,30,2,29,2,28,3,1,163,}, + {1,259,28,23,29,1,6,1,29,1,28,2,29,1,6,1,28,3,29,1,28,1,29,3,6,1,28,1,6,1,29,1,28,1,7,2,28,2,6,1,8,2,7,2,9,1,16,1,7,1,29,1,10,1,16,1,9,1,16,1,9,1,6,1,8,1,9,2,16,1,12,1,9,2,12,1,17,1,12,1,16,8,9,1,16,1,12,1,16,1,7,1,29,1,28,44,29,2,28,2,29,3,6,1,7,1,6,1,7,1,8,1,9,1,6,2,10,2,9,1,8,1,7,1,8,1,9,1,8,1,6,1,28,63,30,1,29,1,30,4,28,1,30,3,28,132,30,1,28,2,29,1,30,1,29,2,28,2,29,1,30,2,13,1,30,3,28,6,1,160,}, + {1,258,28,25,6,1,29,1,28,3,6,1,28,3,29,1,28,2,29,2,6,1,28,2,29,1,28,2,29,1,6,1,28,2,7,1,10,1,7,1,6,1,8,1,9,1,7,1,8,1,9,1,8,1,9,2,12,1,9,1,10,1,9,1,12,3,16,2,12,2,16,3,12,4,16,2,12,1,11,4,16,1,6,1,28,42,29,1,6,1,28,3,29,3,6,2,8,2,9,1,7,1,6,1,8,2,7,1,9,2,8,1,7,1,10,1,9,2,29,1,28,1,29,1,28,60,29,2,28,1,29,1,26,1,29,1,28,1,30,1,29,1,30,1,28,114,29,1,28,17,29,1,28,2,29,2,28,3,30,2,29,1,30,1,8,1,6,1,29,1,30,1,29,2,30,1,29,2,28,3,1,158,}, + {1,258,28,26,6,1,28,1,29,3,6,1,29,1,28,1,29,1,28,4,29,1,28,2,29,1,6,1,28,2,6,2,28,1,29,1,6,4,29,1,28,1,7,1,9,1,7,1,8,1,9,2,12,1,16,1,10,1,16,2,9,1,16,1,17,2,16,1,9,1,16,1,12,1,16,3,12,1,16,1,17,1,11,2,17,1,11,4,33,1,29,1,28,39,29,1,6,1,28,3,29,1,6,1,29,2,6,1,28,1,7,1,10,1,7,1,29,1,10,2,9,1,8,1,7,1,8,3,7,1,8,1,16,1,29,1,28,2,29,1,28,62,30,2,29,1,30,1,29,1,28,1,29,1,28,138,29,1,28,2,30,1,28,1,30,1,6,2,30,1,6,1,30,1,28,1,30,1,29,1,30,2,29,1,28,3,1,156,}, + {1,258,28,26,29,1,28,3,29,1,6,1,29,1,28,5,6,2,29,1,28,2,6,2,28,2,6,1,29,2,28,1,29,1,8,1,7,1,8,1,6,2,8,1,7,2,8,1,7,1,8,2,10,1,9,2,8,1,16,3,9,1,16,1,17,1,16,1,10,2,8,1,9,1,11,4,17,1,16,1,12,1,17,1,11,2,12,1,7,1,28,37,29,1,6,1,28,4,29,3,6,1,29,1,6,1,9,1,7,1,28,1,6,1,9,1,7,1,8,1,10,1,9,1,8,1,7,1,8,1,9,2,8,1,28,66,29,1,26,1,29,1,26,1,29,2,28,142,29,3,28,1,30,4,29,2,30,2,6,1,13,1,30,1,28,4,1,154,}, + {1,257,28,27,29,1,6,1,28,2,29,3,28,5,29,1,7,1,29,1,28,2,29,3,28,2,29,1,28,1,6,1,8,1,9,1,8,1,7,1,10,1,7,1,28,1,29,1,10,1,9,1,8,2,10,2,9,1,10,1,9,1,10,1,8,1,9,1,16,1,11,1,16,1,9,3,16,1,12,1,11,4,17,1,9,2,17,2,12,1,17,1,11,1,9,1,28,36,6,1,28,5,29,1,6,2,29,1,6,1,10,1,7,1,28,1,29,1,8,1,7,2,6,1,8,1,9,1,10,1,8,2,16,1,9,1,6,1,28,65,29,2,30,1,29,1,28,146,30,1,28,2,29,2,28,1,30,2,29,1,30,1,29,1,30,1,13,2,29,2,28,4,1,152,}, + {1,256,28,29,6,1,29,1,28,1,29,2,28,1,6,1,29,1,28,4,29,1,6,1,28,3,6,2,28,4,6,1,8,1,6,1,28,1,29,1,6,1,8,1,6,1,28,1,6,1,8,1,9,1,16,3,9,1,10,1,8,1,7,1,9,1,16,1,9,4,16,1,12,2,16,3,12,1,11,2,17,1,16,1,9,1,16,3,11,1,12,1,16,1,7,1,28,33,29,1,28,4,29,1,28,2,29,1,6,1,29,1,7,2,28,1,29,1,8,1,9,1,8,1,7,5,8,1,9,1,10,1,6,1,7,1,29,1,28,2,29,2,28,59,29,1,28,2,30,2,29,2,28,148,29,1,28,2,29,1,30,1,6,1,29,2,6,1,13,1,30,2,13,1,29,1,28,4,1,150,}, + {1,256,28,1,29,1,28,2,29,1,28,28,29,1,28,8,29,2,28,3,29,2,28,2,7,1,9,1,6,1,28,2,29,1,6,1,7,1,9,1,6,1,29,1,6,1,8,3,16,1,9,1,8,1,7,1,9,2,7,1,8,1,9,2,16,1,17,2,16,3,9,2,16,1,11,2,17,1,16,5,9,2,16,1,6,1,28,31,29,1,28,3,29,5,28,1,29,1,6,2,28,2,6,1,7,1,8,1,6,1,7,1,9,2,7,2,9,2,6,2,7,1,29,1,28,63,29,2,28,1,30,3,29,1,28,152,29,1,30,1,29,2,30,1,13,2,29,1,30,2,29,1,30,1,29,1,28,3,1,148,}, + {1,255,28,2,30,1,29,1,30,1,28,39,29,1,28,4,29,1,28,1,29,1,7,3,6,1,28,2,6,1,7,1,8,1,7,1,8,3,7,1,8,1,9,1,10,1,7,1,9,2,8,1,6,1,8,1,10,1,9,1,16,4,17,1,12,1,10,1,7,1,10,1,12,2,9,1,16,1,9,1,10,1,8,4,9,1,7,1,6,1,28,22,29,1,28,5,29,2,28,8,6,1,29,1,6,1,7,1,29,1,28,1,6,2,7,2,29,1,6,2,7,2,8,1,9,1,6,1,7,3,28,67,29,2,30,1,29,1,28,156,30,1,6,1,13,1,29,1,28,1,30,1,13,1,6,1,13,2,29,1,28,4,1,145,}, + {1,255,28,1,29,2,28,1,29,1,28,32,29,1,28,12,29,2,28,2,29,1,6,1,28,2,29,1,6,4,8,1,7,1,29,1,6,1,8,1,7,2,8,2,6,1,7,1,8,1,7,3,10,1,9,3,16,2,9,1,7,1,8,1,16,1,9,1,8,1,9,1,10,1,8,1,7,2,9,1,8,3,6,1,28,27,29,1,28,9,6,1,29,1,7,1,29,2,7,1,6,2,7,1,6,2,7,2,6,1,8,2,29,1,6,1,8,2,7,1,28,67,29,1,28,1,29,2,28,151,29,2,28,1,29,1,30,1,6,1,28,1,29,2,28,1,29,1,6,1,30,2,13,2,28,6,1,143,}, + {1,255,28,1,29,1,28,35,29,1,28,7,6,1,29,1,28,9,6,1,28,3,29,1,6,2,7,1,6,1,29,1,6,2,8,1,7,1,6,3,7,1,10,1,9,1,16,1,10,1,6,1,8,1,9,1,7,1,12,1,11,1,16,1,9,1,7,2,16,1,9,4,10,1,8,1,9,1,7,3,8,1,7,1,6,1,28,21,29,1,28,9,29,2,28,1,6,1,29,1,28,1,6,1,28,1,6,6,7,1,6,1,7,1,10,1,7,1,28,1,29,1,7,3,6,1,28,67,29,3,28,155,29,1,28,1,29,1,28,2,30,1,28,1,29,1,30,1,29,1,30,1,13,2,28,1,30,2,29,1,28,4,1,141,}, + {1,255,28,58,6,1,28,2,29,2,6,1,29,1,6,3,7,2,6,3,8,1,16,1,9,1,10,1,9,1,7,1,6,1,9,3,8,1,9,1,16,1,8,1,7,1,8,2,10,2,9,1,16,1,8,1,7,6,9,1,7,1,29,2,28,18,29,1,28,9,29,1,28,2,6,1,29,1,6,1,29,1,6,2,29,1,6,5,7,1,10,1,7,1,29,1,6,1,7,1,6,1,7,1,10,1,7,1,28,67,29,2,28,161,29,2,6,1,13,1,28,1,29,1,30,2,28,1,6,1,13,1,30,2,28,4,1,140,}, + {1,255,28,58,29,1,6,1,28,3,29,2,6,8,9,1,16,1,8,1,6,2,8,1,6,1,7,1,8,1,6,3,8,1,9,1,8,1,6,1,7,2,8,1,9,1,10,1,8,1,7,1,6,1,7,2,6,1,7,1,8,1,6,1,29,1,28,31,29,1,28,1,29,1,6,1,28,1,6,1,8,1,6,2,7,1,6,1,7,1,8,2,6,1,29,1,10,1,9,5,7,1,28,67,29,2,28,163,30,1,29,1,28,1,29,1,6,1,30,1,28,1,6,1,28,1,13,1,8,1,30,2,28,4,1,138,}, + {1,255,28,1,29,1,28,2,29,1,28,54,29,2,28,2,29,1,6,1,29,1,6,2,29,2,6,2,8,1,9,3,10,1,7,1,10,1,7,1,9,1,8,1,6,2,7,1,8,1,10,2,7,3,8,1,7,1,6,1,8,1,7,1,6,3,29,2,28,2,1,2,28,21,29,1,28,9,29,2,28,1,29,2,6,1,7,1,6,3,8,2,6,2,8,1,9,1,7,2,8,1,9,1,8,1,6,1,28,68,30,1,29,1,28,163,29,1,28,4,29,1,6,1,29,1,8,2,7,1,13,2,29,1,28,4,1,136,}, + {1,254,28,1,29,1,28,58,6,1,29,1,6,1,29,2,28,2,29,4,6,1,29,1,8,3,16,1,8,1,7,1,9,1,6,2,8,1,7,4,6,1,8,1,9,1,8,1,7,2,6,2,7,1,6,3,29,1,28,2,1,6,28,24,29,1,28,1,29,4,28,1,29,1,6,1,29,2,6,3,8,1,6,1,28,1,29,1,6,1,7,2,8,1,6,1,7,1,9,1,10,1,6,1,28,68,29,1,28,166,29,1,28,3,6,1,28,1,30,1,7,1,30,2,13,1,30,2,29,1,28,4,1,134,}, + {1,254,28,46,29,1,28,10,29,1,28,4,29,2,28,6,29,1,6,1,28,1,29,1,6,1,7,2,6,1,29,1,6,2,29,1,7,2,8,2,6,2,8,1,9,2,8,1,6,2,7,1,6,3,29,1,28,1,1,9,28,22,29,2,28,1,29,3,28,2,29,1,6,1,29,2,6,2,7,1,6,1,28,1,29,1,6,3,8,1,9,1,10,1,7,1,8,1,10,1,7,1,28,228,29,1,28,8,29,1,28,1,29,1,28,1,30,1,6,1,30,1,7,1,30,1,29,1,13,2,28,2,29,1,28,3,1,132,}, + {1,255,28,58,29,1,28,2,29,1,28,2,29,1,28,3,29,1,6,1,8,1,7,1,28,1,29,1,6,1,28,1,6,1,29,1,6,4,7,1,8,1,7,1,8,2,7,1,6,1,8,2,7,1,8,1,7,1,6,1,29,1,28,2,1,13,28,14,29,3,28,3,29,1,28,4,29,6,7,1,6,1,28,3,6,5,7,1,10,1,8,1,9,1,7,1,6,1,28,237,29,1,28,1,30,1,28,2,30,1,8,2,29,1,28,1,29,1,13,1,30,1,29,1,30,1,29,1,28,4,1,130,}, + {1,255,28,64,29,1,28,2,6,1,7,2,6,1,7,1,8,2,6,1,29,1,6,9,7,1,8,1,7,4,6,1,7,1,6,2,28,1,1,17,29,1,28,12,29,3,28,1,29,1,28,5,29,1,28,1,29,1,6,1,29,1,6,1,29,1,28,2,29,1,6,4,29,1,6,2,7,1,10,1,7,2,28,240,29,2,28,1,30,3,6,1,29,1,28,3,29,1,13,2,29,2,28,4,1,128,}, + {1,255,29,1,28,66,29,1,28,1,6,3,8,1,7,2,6,10,7,1,6,7,29,1,7,1,1,20,29,2,28,10,29,1,28,2,29,1,28,5,29,1,28,1,6,1,7,1,6,1,28,3,6,11,8,1,9,1,28,244,29,1,30,1,6,1,30,2,29,1,28,3,30,1,29,1,28,1,30,1,29,1,28,4,1,126,}, + {1,255,28,1,29,2,28,62,29,2,28,3,6,3,28,1,6,5,8,1,9,1,10,1,7,1,6,1,7,1,6,6,29,1,6,1,1,23,28,20,29,2,28,4,29,3,6,4,29,3,6,2,7,1,9,1,6,1,28,246,30,3,28,2,30,1,29,1,6,1,28,2,30,1,29,1,30,1,29,1,28,4,1,124,}, + {1,255,28,3,29,1,28,62,6,1,29,1,28,3,6,1,29,5,6,1,7,1,10,1,8,1,7,1,8,1,6,8,1,27,28,2,29,2,28,4,29,1,28,3,29,4,6,2,29,1,28,4,29,3,6,1,29,2,6,4,29,2,6,1,7,1,29,1,28,10,29,1,28,236,29,1,28,1,29,1,28,3,29,1,13,1,29,1,28,1,30,1,29,1,30,3,29,1,30,1,29,1,28,2,1,122,}, + {1,257,28,1,29,1,28,62,29,1,6,1,28,4,29,1,6,1,29,3,6,2,29,1,7,1,6,2,9,1,7,1,6,1,29,2,6,2,1,30,29,3,28,8,29,1,6,1,29,2,28,3,29,1,28,1,29,2,6,1,29,3,6,4,29,1,6,3,29,2,28,6,29,1,28,243,29,2,28,2,29,2,28,1,13,1,30,4,29,1,30,3,29,1,28,1,1,121,}, + {1,257,28,66,6,1,29,1,28,3,6,1,29,2,6,1,7,1,29,1,28,1,29,1,6,2,7,1,6,2,29,1,28,1,1,33,28,3,29,1,28,8,29,2,28,3,29,8,6,1,29,4,6,2,29,2,6,1,28,72,1,3,28,176,30,1,28,2,29,2,28,1,30,1,6,1,29,1,30,2,29,1,30,4,29,1,28,2,1,119,}, + {1,257,28,66,6,1,29,1,28,3,29,3,7,1,8,1,7,1,29,1,28,1,29,4,6,1,29,1,1,36,28,6,29,1,28,4,29,2,28,2,29,6,6,1,29,2,6,3,29,1,6,1,29,1,6,1,8,1,6,1,28,72,1,6,28,177,29,1,28,2,30,1,29,2,6,1,30,5,29,1,28,3,1,118,}, + {1,257,28,67,29,9,6,2,29,3,6,1,29,2,28,1,1,39,28,9,29,8,28,1,29,3,6,2,28,1,29,1,6,1,7,1,6,2,29,1,28,11,29,1,28,52,29,1,28,7,1,10,28,173,29,1,28,2,29,1,28,1,29,1,13,1,29,2,13,1,30,3,29,1,30,1,29,1,28,2,1,116,}, + {1,257,29,1,28,66,6,1,29,1,28,1,29,2,28,4,29,1,6,2,29,3,28,1,29,1,1,43,28,6,29,9,6,2,29,1,6,2,29,2,6,2,29,3,28,64,30,1,28,7,1,14,28,166,29,4,28,2,29,2,28,1,13,1,29,1,30,1,13,1,29,1,28,1,30,1,29,2,30,1,29,2,28,1,1,115,}, + {1,257,29,1,28,9,29,1,28,56,29,7,6,3,8,1,6,1,29,2,28,1,1,47,28,6,29,6,6,2,29,1,28,1,6,1,29,7,6,1,28,72,1,19,28,161,29,2,28,6,29,2,28,1,30,1,13,1,29,1,28,1,30,1,29,1,30,1,13,1,30,1,29,1,28,3,1,113,}, + {1,258,28,4,29,2,28,62,29,1,28,1,29,1,6,1,29,2,6,1,7,1,6,1,29,2,28,1,1,51,28,5,29,6,28,2,29,3,6,2,29,2,6,1,29,1,28,72,1,22,28,167,29,2,28,1,30,1,13,1,30,2,29,2,30,2,29,1,30,2,29,1,28,2,1,111,}, + {1,258,28,68,29,2,28,4,29,1,6,2,29,1,28,1,1,55,28,2,29,1,28,2,29,11,6,1,29,2,28,72,1,24,28,166,30,1,29,2,28,1,30,1,6,1,29,1,28,1,29,1,30,1,28,1,30,1,29,2,28,4,1,109,}, + {1,260,28,71,29,1,28,2,6,1,29,1,1,60,28,5,29,7,28,2,29,1,28,72,1,27,28,162,29,2,28,4,30,1,28,2,29,1,28,1,29,1,30,5,29,1,28,3,1,107,}, + {1,259,28,67,29,1,6,1,29,1,28,1,29,1,28,3,29,2,1,65,28,4,29,1,28,1,29,4,28,9,29,2,28,50,29,2,28,8,1,31,28,160,29,1,28,3,29,1,28,1,29,1,30,1,28,2,7,1,30,1,13,1,30,3,29,2,28,4,1,105,}, + {1,259,28,65,29,2,6,3,29,1,28,4,1,71,28,3,29,1,28,11,30,2,28,60,1,35,28,158,30,2,29,1,28,1,29,2,28,2,6,1,29,1,30,1,13,2,30,1,29,1,28,6,1,104,}, + {1,259,28,2,29,1,28,9,29,2,28,51,29,3,28,1,29,1,6,1,29,1,28,3,1,77,28,10,30,2,28,59,1,38,28,155,29,1,30,1,29,1,28,4,29,2,28,2,29,1,30,1,28,1,30,1,29,1,28,6,1,103,}, + {1,260,28,1,29,2,28,7,6,1,28,58,29,1,28,4,1,77,28,71,1,40,28,164,29,1,30,1,13,1,8,1,28,1,29,1,13,1,26,1,29,2,28,3,1,101,}, + {1,261,28,7,29,1,6,1,29,1,28,52,29,1,28,10,1,77,28,71,1,43,28,160,29,1,28,2,29,1,6,2,13,1,30,1,29,2,30,1,28,4,1,100,}, + {1,262,28,3,29,2,6,1,29,1,28,53,29,2,28,6,29,1,28,3,1,78,28,10,30,1,28,10,29,2,28,47,1,47,28,153,29,1,28,4,29,1,28,3,29,2,6,1,13,1,30,1,28,1,29,1,28,4,1,98,}, + {1,262,28,1,29,2,28,1,29,2,28,9,29,1,28,52,29,1,28,1,29,1,6,2,1,77,28,10,30,2,29,2,30,1,28,54,1,51,28,150,29,2,28,5,30,1,29,2,28,1,29,1,13,2,29,1,13,1,30,1,29,1,28,3,1,97,}, + {1,263,29,2,28,66,29,1,6,2,29,1,6,1,1,76,28,7,29,3,26,3,29,1,28,54,1,55,28,147,29,2,28,5,29,1,30,1,13,1,6,1,29,1,28,2,29,1,13,2,30,1,29,1,28,4,1,95,}, + {1,264,29,2,28,9,29,1,28,55,29,1,6,1,29,3,1,76,28,7,30,5,29,1,28,51,29,1,28,4,1,60,28,150,29,1,30,1,13,1,28,2,30,1,13,1,30,3,29,1,28,4,1,94,}, + {1,264,28,1,29,1,28,62,29,1,28,2,29,6,1,76,28,11,29,1,28,51,29,1,28,4,1,67,28,143,30,3,13,1,30,1,29,3,13,1,30,1,28,7,1,92,}, + {1,265,28,1,29,2,28,1,29,2,28,59,29,1,6,3,29,1,6,1,7,1,28,1,1,75,28,41,29,1,28,26,1,72,28,140,29,1,30,2,29,1,30,1,29,1,30,1,13,1,28,2,30,1,28,5,1,91,}, + {1,266,29,5,28,59,29,2,6,2,29,1,6,1,7,1,6,1,1,75,28,41,29,1,28,26,1,78,28,134,29,2,28,2,30,1,28,1,30,2,28,1,30,1,29,1,28,6,1,90,}, + {1,266,28,1,29,1,28,64,29,4,6,1,29,1,28,1,1,75,28,5,29,1,28,4,29,2,28,27,29,1,28,27,1,87,28,129,29,1,28,1,13,1,28,4,29,1,30,2,29,1,28,4,1,88,}, + {1,266,28,1,29,1,28,65,29,1,6,1,29,2,6,1,28,1,1,75,28,6,29,1,30,1,28,59,1,91,28,125,30,1,29,1,30,1,28,3,30,1,29,3,30,1,28,5,1,87,}, + {1,266,28,1,29,2,28,64,29,5,28,2,1,74,28,7,29,2,28,4,29,1,28,5,29,1,28,23,30,1,28,6,29,3,28,15,1,97,28,119,30,1,28,2,29,2,6,1,30,2,6,1,30,1,28,6,1,86,}, + {1,267,28,1,30,1,28,63,29,1,28,3,29,1,28,3,1,75,28,8,29,1,28,2,29,1,30,1,29,2,28,17,29,1,28,35,1,101,28,117,29,1,28,2,29,1,6,1,13,1,28,8,1,85,}, + {1,268,30,1,29,1,28,63,29,1,28,3,29,3,28,1,1,75,28,30,29,1,28,12,26,2,28,23,1,108,28,113,30,1,29,1,28,9,1,84,}, + {1,268,28,69,29,1,6,1,29,1,28,1,1,75,29,1,28,67,1,112,28,114,29,1,13,1,30,1,29,2,28,2,1,83,}, + {1,268,28,66,29,2,28,1,29,1,28,3,1,76,28,68,1,119,28,94,29,1,28,10,29,1,28,1,29,1,30,1,28,1,29,2,28,3,1,81,}, + {1,269,28,68,29,1,28,2,29,1,28,1,1,76,29,1,28,3,29,1,28,26,29,2,28,35,1,123,28,106,29,2,28,3,1,80,}, + {1,269,28,67,29,1,28,2,29,2,28,1,1,77,28,3,29,1,30,1,28,2,29,3,28,2,29,1,28,5,29,1,28,10,30,2,28,19,29,1,28,16,1,127,28,103,29,1,28,4,1,79,}, + {1,269,28,71,29,1,6,1,1,77,29,2,28,2,30,1,29,1,28,6,29,2,28,14,29,1,28,5,29,2,28,13,29,2,28,16,1,131,28,94,29,2,28,3,29,1,28,5,1,78,}, + {1,270,28,1,29,1,28,1,29,1,28,63,29,1,28,3,29,1,1,77,28,1,6,1,29,1,28,2,30,1,29,1,28,2,29,5,28,1,29,1,28,12,29,1,28,4,29,1,28,1,29,1,28,12,30,1,29,1,28,18,1,136,28,90,29,1,28,8,1,78,}, + {1,270,28,1,29,1,28,65,29,1,28,2,29,2,1,79,29,1,28,44,29,2,28,20,1,139,28,87,29,1,28,8,1,77,}, + {1,271,29,2,28,3,29,1,28,57,29,2,28,4,29,1,28,1,1,79,28,27,29,1,28,15,30,3,28,22,1,143,28,82,29,1,28,9,1,76,}, + {1,271,29,2,28,4,29,2,28,64,1,79,28,2,29,1,28,2,29,4,28,24,30,1,28,8,30,1,28,24,1,146,28,90,1,75,}, + {1,271,30,1,29,1,28,5,29,1,28,64,1,80,28,1,29,1,28,4,29,1,28,22,29,1,28,9,29,2,28,25,1,149,28,88,1,74,}, + {1,271,29,2,28,70,1,81,28,1,29,1,28,19,29,1,28,6,29,2,28,3,29,1,28,1,29,1,30,3,28,10,29,1,28,16,1,154,28,68,29,1,28,14,1,73,}, + {1,271,28,70,29,1,28,1,1,82,29,1,28,2,30,1,29,1,28,9,29,1,28,12,6,1,29,1,28,6,13,1,28,2,30,1,13,1,30,1,28,24,1,158,28,80,1,72,}, + {1,271,28,1,29,2,28,1,29,1,28,64,29,1,28,2,1,82,28,3,30,2,29,1,28,1,29,4,28,15,29,1,30,1,28,6,30,2,28,1,6,1,9,1,13,1,29,1,28,3,29,1,30,1,28,20,1,162,28,76,1,71,}, + {1,272,28,1,29,1,28,1,29,2,28,66,1,82,28,10,29,2,28,14,30,1,28,5,29,1,13,1,7,1,28,1,29,1,9,1,6,1,28,5,30,2,28,20,1,164,28,75,1,70,}, + {1,272,28,5,29,1,28,65,1,82,28,25,30,1,28,6,6,1,13,1,28,2,13,1,8,1,28,6,29,1,30,1,28,20,1,167,28,72,1,70,}, + {1,272,28,2,29,1,28,21,29,1,28,43,29,1,28,2,1,82,28,1,29,1,30,1,28,29,13,1,29,1,28,1,30,1,9,1,28,8,29,1,30,1,28,2,30,1,28,16,1,170,28,70,1,69,}, + {1,273,28,4,29,1,28,65,1,83,30,1,26,1,30,1,29,1,28,1,29,2,28,23,30,2,28,1,29,1,16,1,6,1,28,6,29,1,13,1,30,3,6,1,13,1,30,3,28,1,29,1,28,11,1,173,28,68,1,68,}, + {1,273,28,2,29,3,28,65,1,83,28,1,30,2,29,5,28,21,30,1,13,1,28,2,9,2,28,1,29,1,28,1,29,1,30,1,13,1,6,1,29,1,30,1,6,1,29,4,30,1,13,1,30,1,28,1,29,1,28,12,1,175,28,66,1,67,}, + {1,273,28,1,29,2,28,67,1,83,28,1,30,2,29,1,28,1,29,1,28,21,30,1,6,2,28,1,29,1,8,1,16,1,8,1,28,1,29,1,28,1,29,1,6,2,30,1,28,3,6,1,29,2,13,1,8,1,29,1,28,15,1,178,28,63,1,67,}, + {1,273,28,3,29,1,28,2,29,1,28,62,1,84,28,1,29,1,30,2,28,16,29,1,28,5,30,1,13,1,6,1,28,2,30,1,9,1,16,1,8,1,28,1,29,1,28,1,29,1,30,1,29,1,6,1,28,4,13,2,9,1,13,1,28,16,1,181,28,61,1,66,}, + {1,274,28,5,29,1,28,62,1,84,28,1,29,3,28,20,30,1,13,1,8,1,29,1,28,2,29,1,13,1,9,2,6,2,7,1,6,1,30,1,8,1,9,1,30,1,28,2,30,1,6,1,28,1,29,2,30,1,29,1,28,14,1,184,10,1,28,59,1,65,}, + {1,274,28,1,30,1,29,1,28,60,29,1,28,3,1,86,28,1,29,1,28,20,30,1,8,1,6,1,28,1,29,1,7,1,6,1,30,1,13,1,9,2,6,2,7,1,6,1,28,2,30,1,29,1,28,2,29,1,7,1,29,2,28,1,29,1,28,2,30,2,28,13,1,184,28,58,1,65,}, + {1,274,28,1,30,1,29,1,28,64,1,86,28,1,29,1,28,19,13,2,29,1,28,2,30,1,8,1,6,2,30,1,16,2,6,3,30,1,28,2,30,1,6,2,28,1,6,1,29,1,28,3,30,1,29,1,28,1,29,1,30,1,29,3,28,10,1,186,28,57,1,64,}, + {1,275,28,1,29,1,28,23,29,1,28,40,1,86,28,1,30,1,29,1,28,1,29,1,28,14,29,3,28,3,29,2,30,1,28,2,13,1,16,1,9,1,6,2,29,3,28,2,13,1,9,1,8,1,28,5,29,1,28,1,13,1,6,1,29,2,28,12,1,188,28,56,1,63,}, + {1,275,28,1,29,2,28,2,29,1,28,60,1,86,29,1,30,2,29,3,28,5,29,1,28,4,29,1,28,7,30,1,13,1,6,1,29,1,28,1,30,1,8,1,16,1,8,1,7,1,30,1,29,1,8,2,28,1,29,1,7,1,9,1,13,1,28,1,29,3,30,1,29,1,13,1,8,1,30,1,28,14,1,190,28,54,1,63,}, + {1,275,28,1,29,2,28,4,29,1,28,57,1,88,28,1,29,2,28,1,29,1,28,19,29,1,28,3,13,1,9,1,16,1,9,1,7,1,13,1,7,1,8,1,7,1,8,1,7,1,29,2,30,1,28,1,29,1,30,2,8,1,9,2,30,1,29,2,28,13,1,192,28,53,1,62,}, + {1,276,28,1,29,1,28,19,29,1,28,3,29,1,28,38,1,88,28,28,13,1,8,1,16,1,8,1,7,1,9,3,8,1,7,2,28,4,29,1,9,2,8,2,30,1,29,1,6,1,30,1,28,13,1,194,28,52,1,61,}, + {1,276,28,1,29,2,28,61,1,88,28,1,29,2,28,23,30,1,29,1,30,1,13,1,9,1,30,2,7,1,8,1,7,1,29,1,28,1,6,1,7,1,6,1,29,1,30,1,8,1,7,1,6,1,30,1,29,1,13,1,30,1,13,1,29,1,28,13,1,196,28,50,1,61,}, + {1,277,28,1,29,3,28,59,1,88,28,1,30,1,29,1,28,18,29,1,9,1,6,1,28,1,30,1,8,1,13,1,30,1,13,1,8,1,30,1,29,1,28,1,29,1,28,3,6,1,7,1,30,1,6,1,9,1,6,1,28,2,29,1,30,1,6,1,29,1,30,1,29,1,28,1,29,1,28,11,1,198,28,49,1,60,}, + {1,277,29,6,28,2,29,1,28,14,29,1,28,38,1,89,28,1,29,1,28,4,30,1,29,1,28,12,29,1,6,1,8,1,9,2,6,1,28,2,30,1,9,1,13,2,6,1,30,1,28,3,29,1,30,1,6,1,7,1,6,1,29,1,28,3,13,1,29,1,28,1,29,1,13,1,29,1,30,1,29,1,28,2,29,1,28,7,1,201,28,47,1,60,}, + {1,277,28,3,29,2,28,57,1,89,28,1,29,1,28,4,29,3,28,10,29,2,28,3,7,1,29,1,28,2,30,1,8,3,6,1,29,1,28,1,29,4,6,1,29,1,28,3,30,1,29,1,28,2,30,1,13,1,6,1,29,1,30,1,29,2,28,10,1,202,28,46,1,59,}, + {1,279,28,1,29,2,28,4,29,1,28,52,1,89,28,1,29,3,28,21,30,3,13,1,9,2,7,1,29,1,28,1,30,2,6,1,8,1,6,1,29,1,28,2,29,1,28,1,13,1,8,1,6,1,9,2,7,1,6,1,13,1,7,1,29,1,28,11,1,204,28,44,1,59,}, + {1,279,28,2,29,1,28,16,29,1,28,40,1,89,28,1,29,1,30,2,28,16,29,1,13,1,9,1,13,2,16,2,29,2,9,2,6,1,29,1,30,1,7,1,6,1,29,1,6,1,29,1,28,3,29,1,13,1,30,1,9,2,8,2,29,1,28,1,30,2,29,1,28,11,1,206,28,43,1,58,}, + {1,279,28,2,29,1,28,17,29,1,28,38,1,90,28,1,29,1,30,2,29,1,28,2,30,1,28,11,29,1,13,2,9,1,28,2,7,1,9,1,8,1,13,2,8,1,30,2,6,1,29,1,28,5,30,1,28,1,29,1,16,2,8,1,6,1,28,1,30,1,29,1,28,1,30,2,29,1,30,2,28,9,1,208,28,41,1,58,}, + {1,280,28,1,29,1,28,17,29,1,28,38,1,90,28,3,29,2,28,2,29,2,28,11,30,2,29,1,28,1,29,1,28,1,29,2,30,1,9,2,7,1,8,1,6,1,28,2,30,1,28,5,30,1,8,1,6,1,28,1,29,1,28,1,29,1,13,1,29,1,30,4,29,1,28,9,1,209,28,41,1,57,}, + {1,280,28,1,6,1,29,3,28,14,29,2,28,36,1,91,28,21,29,2,28,5,30,1,9,1,16,1,7,1,8,1,30,1,28,2,29,2,28,1,13,2,8,2,28,3,29,1,30,1,13,1,9,3,8,1,29,1,28,11,1,211,28,39,1,57,}, + {1,281,30,2,29,2,30,1,29,1,28,12,29,2,28,36,1,91,29,1,28,2,29,1,28,17,30,2,28,5,9,3,7,1,6,1,13,1,28,3,13,1,9,1,16,2,9,1,8,1,29,1,28,2,29,2,30,1,13,1,9,3,30,1,28,11,1,213,28,37,1,57,}, + {1,281,28,1,6,1,29,5,28,48,6,1,1,91,29,1,28,2,29,4,28,14,30,1,8,1,30,1,28,3,30,1,9,3,6,2,9,1,13,2,30,1,9,1,8,1,6,1,30,1,28,2,30,1,28,2,29,1,28,1,13,1,8,1,28,2,30,2,28,2,29,1,28,8,1,214,28,36,1,57,}, + {1,281,28,1,29,1,6,1,28,1,29,2,28,13,29,1,28,35,1,92,28,3,29,1,30,2,29,1,28,15,13,2,30,1,6,1,30,2,8,1,9,2,6,1,30,1,8,1,16,1,9,1,8,1,7,1,6,1,28,4,30,2,13,1,6,1,28,1,13,1,6,1,28,2,30,2,28,1,29,2,28,8,1,215,28,36,1,56,}, + {1,282,28,1,29,1,28,2,29,3,28,11,29,1,28,35,1,92,28,3,29,2,30,2,29,2,28,13,30,1,9,1,16,2,9,1,13,2,16,1,7,1,29,1,30,1,29,3,28,1,29,1,30,1,28,4,30,2,29,1,28,2,29,2,28,2,30,1,29,4,28,8,1,217,28,34,1,56,}, + {1,282,28,1,30,2,28,2,29,1,28,1,29,1,28,11,29,1,28,34,1,92,28,3,29,1,28,3,29,2,28,10,29,1,28,2,13,1,16,1,9,1,8,2,13,1,9,1,16,1,7,1,6,1,13,1,29,1,28,3,30,1,13,2,30,1,28,2,30,1,28,4,6,1,28,3,30,3,29,2,28,7,1,219,28,33,1,56,}, + {1,283,28,1,6,1,28,50,1,93,28,3,29,2,28,17,30,1,6,1,28,4,30,1,7,2,9,1,8,1,7,1,6,1,29,1,28,1,29,1,8,2,13,1,30,2,13,2,6,1,30,1,8,2,6,1,13,1,8,1,9,1,13,2,30,1,29,1,28,7,1,220,28,33,1,55,}, + {1,283,28,1,29,1,6,1,29,2,28,47,1,94,28,3,29,2,28,21,29,1,13,1,16,2,9,1,7,2,8,1,30,1,29,1,30,1,8,1,16,1,9,1,16,2,9,1,16,1,9,2,8,1,7,2,9,3,13,1,30,1,29,1,28,8,1,222,28,31,1,55,}, + {1,284,6,1,10,1,29,2,28,47,1,94,28,2,29,3,28,13,29,3,28,2,30,4,13,1,9,1,8,2,7,1,6,1,30,1,28,1,30,1,16,3,9,2,6,1,30,1,29,3,28,4,30,3,29,2,28,8,1,223,28,30,1,55,}, + {1,284,7,1,8,1,28,3,29,2,28,12,29,1,28,31,1,94,29,1,28,1,29,1,30,2,29,1,28,5,29,1,28,8,29,2,28,1,30,1,28,3,29,1,30,1,13,1,9,1,7,1,30,2,13,1,8,2,30,1,29,1,30,1,29,1,28,8,30,1,13,3,30,2,29,1,28,7,1,224,28,29,1,55,}, + {1,284,29,1,13,1,29,1,28,2,29,2,28,44,1,94,29,7,28,2,29,1,28,1,29,1,30,1,28,10,13,2,28,3,30,1,6,1,13,1,7,2,9,1,7,1,28,1,29,2,28,1,29,2,28,1,30,1,13,1,29,3,30,1,13,1,8,1,6,1,29,1,30,3,29,1,28,7,1,225,28,29,1,54,}, + {1,285,26,1,30,1,29,1,28,2,29,1,28,44,1,94,28,1,29,6,28,2,30,1,28,3,29,1,28,5,29,1,28,3,13,1,9,1,13,1,6,1,9,3,8,1,29,1,6,1,7,1,29,1,30,1,13,1,30,2,13,1,30,1,13,1,9,2,13,1,30,3,8,1,9,1,6,1,13,2,30,2,29,1,28,7,1,226,28,28,1,54,}, + {1,286,30,1,6,1,28,46,1,95,30,1,29,6,28,2,29,1,30,1,28,3,29,1,28,2,29,2,28,4,13,1,16,1,15,1,16,1,9,1,6,1,29,1,28,2,29,2,30,1,9,1,8,1,30,2,13,3,9,1,8,1,13,1,30,1,13,2,9,1,8,1,30,3,29,3,28,7,1,227,28,27,1,54,}, + {1,287,29,1,28,46,1,96,28,1,29,1,28,1,29,1,28,1,30,2,28,2,29,2,28,11,9,1,16,1,9,1,30,1,28,5,13,2,30,1,8,1,6,1,30,1,13,2,30,1,8,2,7,1,13,4,9,1,8,1,30,5,28,8,1,227,28,27,1,54,}, + {1,287,28,19,29,1,28,27,1,97,29,1,28,1,29,1,28,1,29,2,28,16,29,1,28,4,6,1,28,1,29,1,16,1,9,1,30,1,13,1,6,1,30,1,28,3,29,1,7,1,28,5,13,1,9,1,13,1,8,1,30,1,28,1,6,1,29,1,28,7,1,228,28,26,1,54,}, + {1,288,28,46,1,97,28,1,29,1,28,1,29,2,28,18,29,2,30,1,13,1,8,1,6,1,9,2,6,1,30,1,13,1,6,1,29,1,28,2,29,1,8,1,7,1,29,2,6,1,30,2,13,1,6,1,9,2,6,1,28,1,29,2,28,7,1,229,28,25,1,54,}, + {1,288,28,46,1,98,28,2,29,2,28,12,29,1,28,4,29,1,13,2,28,2,6,1,28,1,6,1,9,1,7,2,8,1,13,1,30,1,13,1,30,2,8,1,13,1,6,1,30,3,13,1,6,1,28,1,29,1,13,1,30,1,29,4,28,6,1,230,28,24,1,54,}, + {1,288,7,1,30,1,28,44,1,98,28,1,29,1,28,1,29,1,30,1,28,2,29,2,28,7,29,1,28,1,29,4,30,2,28,2,30,1,28,2,13,1,8,1,7,1,8,1,13,1,30,1,13,1,30,2,13,1,8,1,6,2,30,1,29,1,13,1,6,1,29,1,30,4,29,3,28,6,1,230,28,24,1,54,}, + {1,288,9,1,8,1,29,1,28,43,1,98,29,3,28,1,30,1,28,2,30,1,29,1,28,8,29,2,28,1,29,3,30,2,6,1,9,1,8,1,30,1,29,1,30,1,13,1,8,1,13,1,30,1,13,2,30,2,6,1,13,1,6,1,29,2,13,1,30,1,29,1,30,4,29,4,28,5,1,231,28,23,1,54,}, + {1,289,7,1,29,1,28,43,1,98,28,1,30,1,29,4,28,1,30,1,26,1,30,1,29,1,28,9,29,2,28,1,30,1,9,1,8,1,7,1,6,1,13,4,9,1,8,1,30,1,13,3,30,1,28,1,30,4,6,1,29,1,30,2,29,5,28,2,29,2,28,2,1,232,28,23,1,54,}, + {1,289,28,45,1,99,29,4,30,1,28,2,29,1,28,11,30,1,29,1,28,2,6,1,28,4,30,1,28,1,30,1,9,2,13,3,9,1,13,2,8,1,13,1,9,2,8,3,13,2,30,3,29,1,28,6,1,233,28,22,1,54,}, + {1,290,28,45,1,98,28,2,29,3,28,15,29,1,28,7,29,2,28,1,8,1,13,1,8,1,6,1,29,2,28,5,29,1,30,1,13,6,30,1,29,1,28,6,1,234,28,21,1,54,}, + {1,290,29,1,28,44,1,98,28,1,29,2,28,5,29,1,28,11,30,1,29,3,28,1,30,2,28,1,30,1,6,1,30,1,13,1,6,1,9,1,13,1,30,2,28,4,29,1,28,2,30,3,13,1,6,1,13,1,30,1,29,1,28,6,1,234,28,21,1,54,}, + {1,290,29,1,28,44,1,99,29,2,28,6,29,1,28,11,30,2,29,2,13,1,30,2,9,1,7,1,13,2,9,1,16,1,8,1,13,3,30,3,13,1,30,5,13,1,30,1,29,1,28,2,29,1,28,2,29,1,28,2,1,235,28,20,1,54,}, + {1,290,28,45,1,99,28,20,30,1,29,1,28,1,29,1,30,1,13,1,9,1,6,1,28,1,8,3,16,1,9,1,8,1,13,5,9,1,13,5,28,1,29,1,30,1,28,8,1,235,28,20,1,54,}, + {1,291,28,45,1,99,28,4,29,2,28,2,29,1,28,10,29,1,28,2,29,1,13,1,30,1,29,1,28,2,13,1,29,2,9,1,7,1,9,1,13,3,30,1,13,1,8,1,6,2,8,2,6,1,29,1,30,1,29,2,28,7,1,236,28,19,1,54,}, + {1,291,28,1,29,2,28,42,1,99,28,4,29,2,28,13,29,2,30,2,13,1,28,3,29,1,30,1,28,2,13,1,7,1,6,1,8,1,13,2,7,1,13,1,6,1,28,3,30,2,13,1,30,1,28,1,29,1,30,1,29,1,28,5,1,236,14,1,28,18,1,54,}, + {1,292,30,1,29,1,28,42,1,100,28,1,29,1,28,1,29,2,28,14,29,4,30,2,29,3,28,2,13,1,9,1,8,1,9,1,13,1,29,2,6,1,13,1,30,1,28,2,30,3,29,1,28,1,30,2,29,1,28,4,1,238,28,18,1,54,}, + {1,292,28,45,1,100,28,1,29,1,28,1,29,1,28,2,29,1,28,12,29,1,28,2,29,1,30,1,13,1,30,1,29,2,28,1,29,1,13,1,8,4,13,4,30,6,29,2,30,1,29,1,28,4,1,239,28,17,1,54,}, + {1,292,28,46,1,99,28,1,29,4,28,2,29,1,28,11,29,1,30,1,28,2,30,1,13,1,6,1,30,1,8,1,13,1,30,2,13,1,6,2,8,2,13,1,6,1,13,2,30,1,13,3,30,1,29,2,30,1,28,5,1,239,28,2,29,1,28,14,1,54,}, + {1,292,28,46,1,100,28,2,29,1,30,1,28,3,29,1,28,5,29,1,30,1,28,3,29,1,30,2,28,1,30,1,13,3,9,3,13,1,6,1,30,1,6,1,8,1,13,1,6,1,8,1,13,1,29,1,30,2,29,1,13,1,30,1,28,2,29,1,28,6,1,238,28,1,29,1,28,15,1,54,}, + {1,292,28,2,29,1,28,44,1,99,28,3,30,1,28,3,29,1,28,11,29,1,30,4,13,2,28,2,30,1,13,1,6,1,28,1,8,5,30,1,29,1,13,1,28,2,29,4,28,7,1,239,28,16,1,54,}, + {1,292,28,48,1,98,28,3,29,2,28,2,29,2,28,10,29,1,30,1,29,1,28,2,13,1,30,1,28,3,29,1,6,1,28,1,13,1,9,1,7,2,13,1,30,1,13,1,6,1,28,1,29,1,30,2,29,1,28,7,1,240,28,16,1,54,}, + {1,292,28,48,1,98,28,4,29,2,28,2,29,1,28,5,29,3,28,4,29,1,28,3,29,3,28,1,30,2,29,1,30,1,9,1,7,1,6,1,30,1,13,2,30,1,29,2,30,1,13,1,29,1,28,7,1,241,28,14,1,55,}, + {1,293,28,48,1,98,28,4,29,1,28,15,30,1,6,1,28,1,30,1,29,1,30,4,13,1,9,1,16,2,9,1,13,2,8,1,13,1,30,5,29,2,28,6,1,241,28,14,1,55,}, + {1,293,28,48,1,98,28,1,29,1,28,19,13,2,30,3,13,1,8,2,6,1,13,1,9,3,6,1,29,2,28,2,30,3,29,4,28,4,1,242,28,14,1,55,}, + {1,293,28,49,1,98,29,1,28,1,29,1,28,9,29,1,28,8,13,1,30,1,29,1,30,3,28,3,30,2,8,1,7,1,6,1,29,1,28,2,29,1,30,2,29,1,28,1,30,2,28,4,1,243,28,2,29,1,28,9,1,56,}, + {1,293,28,49,1,98,28,2,29,2,28,4,29,2,28,2,29,1,28,7,30,2,29,1,28,3,30,1,28,2,30,3,8,1,9,1,7,1,6,2,29,1,30,2,13,1,29,1,28,1,30,1,29,1,28,4,1,243,28,2,29,1,28,9,1,56,}, + {1,293,28,50,1,97,28,3,30,1,29,1,28,3,29,3,28,1,29,1,30,1,29,3,28,4,30,1,28,1,29,4,30,2,13,3,8,1,13,1,6,1,30,4,13,1,6,1,30,1,28,4,29,2,28,1,1,243,28,11,1,57,}, + {1,292,28,51,1,98,28,3,30,1,28,4,29,2,28,10,29,1,30,1,29,1,28,3,30,1,13,1,6,1,30,2,13,1,30,1,13,1,6,2,29,1,28,1,30,1,29,1,28,1,30,1,28,3,29,1,28,2,1,243,28,11,1,57,}, + {1,292,28,51,1,98,28,17,29,1,28,2,29,1,30,1,13,1,30,2,28,1,30,1,28,3,30,3,6,1,30,1,6,1,28,5,29,1,28,6,1,244,28,9,1,58,}, + {1,292,29,2,28,50,1,97,28,20,29,2,30,3,29,1,30,1,29,1,28,1,30,1,13,1,30,3,6,2,30,1,29,1,28,1,29,4,28,2,29,1,28,2,1,244,28,9,1,58,}, + {1,292,29,2,28,50,1,97,28,5,29,2,28,3,29,1,28,2,29,1,28,6,29,3,30,1,29,1,30,4,29,3,30,3,6,1,28,1,29,1,28,1,29,4,28,5,1,244,28,9,1,58,}, + {1,293,28,51,1,98,28,1,29,2,28,1,29,1,30,1,29,2,28,1,29,1,28,3,29,1,28,5,29,1,28,2,29,1,30,1,13,1,28,2,29,1,28,2,29,1,28,1,30,1,28,1,29,2,28,1,29,3,28,8,1,244,29,1,6,3,29,1,28,2,1,59,}, + {1,292,28,52,1,99,28,1,29,1,28,1,29,1,30,1,29,2,28,1,29,1,28,4,29,1,28,7,29,2,28,8,30,1,28,2,30,2,28,12,1,244,7,1,6,3,29,1,1,60,}, + {1,292,29,1,28,51,1,99,28,18,29,2,28,6,29,1,28,2,29,1,30,2,28,3,29,1,28,6,29,3,28,3,1,309,}, + {1,291,28,1,29,1,28,51,1,99,28,25,29,1,6,1,28,2,29,1,30,1,29,1,28,5,29,1,28,2,29,1,6,1,13,1,29,1,28,4,1,309,}, + {1,291,28,53,1,99,28,25,30,1,7,1,28,2,29,1,30,1,29,1,28,3,29,2,6,1,8,1,13,1,29,1,28,8,1,308,}, + {1,291,28,52,1,100,28,26,6,1,29,1,28,7,29,1,30,4,29,1,28,10,1,306,}, + {1,291,28,52,1,100,28,3,29,2,28,23,29,1,30,1,28,6,29,1,28,14,1,306,}, + {1,292,28,51,1,101,28,27,29,2,28,1,6,1,30,2,29,1,28,17,1,305,}, + {1,292,28,1,29,1,28,49,1,101,28,33,29,2,28,16,1,305,}, + {1,293,28,49,1,102,28,12,29,1,28,38,1,305,}, + {1,294,28,48,1,102,28,15,29,4,28,33,1,304,}, + {1,292,28,49,1,103,28,53,1,303,}, + {1,292,28,48,16,1,1,103,28,40,29,1,28,13,1,302,}, + {1,292,28,48,1,104,28,6,30,1,29,1,28,46,1,302,}, + {1,292,28,44,29,2,28,1,1,105,28,6,29,2,28,47,1,301,}, + {1,292,28,47,1,104,28,1,29,2,28,53,1,301,}, + {1,292,28,1,29,1,28,44,1,104,28,1,29,1,30,1,28,54,1,301,}, + {1,293,28,45,1,104,6,1,30,1,29,1,28,54,1,301,}, + {1,293,28,44,1,105,28,1,30,1,29,1,28,5,29,1,28,42,29,1,28,5,1,301,}, + {1,292,28,44,1,106,28,1,30,2,26,1,29,1,28,1,29,2,26,1,28,48,1,301,}, + {1,292,28,43,1,107,28,1,30,1,26,2,30,4,26,1,29,1,28,1,30,1,28,22,29,1,28,22,1,301,}, + {1,292,28,42,1,108,28,1,29,1,30,2,29,1,30,2,29,1,26,1,30,1,28,1,30,1,28,45,1,301,}, + {1,291,28,43,1,108,28,1,29,1,30,3,29,1,26,1,29,1,30,1,26,1,29,1,26,1,30,2,29,1,28,41,1,302,}, + {1,291,28,43,1,108,30,1,28,1,30,1,26,1,29,1,28,1,29,3,30,1,26,1,29,5,28,9,29,1,28,1,29,1,30,3,28,20,29,1,28,4,1,302,}, + {1,291,28,42,1,110,28,1,30,1,26,1,30,1,28,2,30,1,28,2,29,2,28,7,29,1,30,1,29,1,28,33,1,303,}, + {1,291,28,42,1,111,28,1,30,1,26,1,29,1,28,1,29,1,28,47,1,303,}, + {1,291,28,42,1,111,28,1,29,2,28,50,1,303,}, + {1,290,28,1,29,2,28,40,1,112,28,51,1,304,}, + {1,290,28,1,29,1,28,41,1,113,28,1,29,2,28,6,29,2,28,39,1,304,}, + {1,290,28,44,1,112,28,11,29,4,28,2,29,1,28,31,1,305,}, + {1,289,28,1,29,1,28,43,1,113,28,48,1,305,}, + {1,289,28,1,30,1,28,43,1,113,28,47,1,306,}, + {1,289,30,2,28,43,1,114,28,1,30,1,28,43,1,307,}, + {1,289,29,2,28,43,1,115,29,1,30,2,26,2,28,39,1,307,}, + {1,288,28,47,1,114,28,1,29,1,26,3,28,2,26,1,28,5,29,1,30,2,28,27,1,308,}, + {1,288,28,47,1,115,28,1,29,1,26,2,29,1,28,1,26,5,30,1,29,1,28,29,1,308,}, + {1,286,28,1,29,2,28,2,29,1,28,44,1,114,28,2,29,1,13,5,30,1,28,34,1,307,}, + {1,286,28,50,1,114,28,4,30,1,13,1,30,1,28,36,1,307,}, + {1,286,28,1,29,1,28,48,1,114,28,5,29,1,28,37,1,307,}, + {1,285,28,2,29,1,28,48,1,114,28,1,29,2,28,3,29,1,28,35,1,308,}, + {1,284,29,1,28,51,1,115,28,1,30,1,29,1,28,37,1,309,}, + {1,283,28,1,29,2,28,50,1,115,28,1,30,4,29,1,28,35,1,308,}, + {1,282,28,2,29,2,28,50,1,115,28,2,29,4,30,1,28,34,1,308,}, + {1,281,28,1,29,2,28,52,1,116,28,4,29,1,30,1,29,1,28,33,1,308,}, + {1,278,28,2,29,1,28,1,29,1,30,1,28,53,1,115,28,2,29,2,30,2,29,2,28,32,1,308,}, + {1,276,29,1,28,2,29,3,28,1,29,1,28,36,29,1,28,16,1,115,29,1,28,1,29,1,26,1,30,1,29,3,28,32,1,308,}, + {1,273,28,4,29,1,28,42,6,1,28,17,1,114,28,1,29,1,28,1,30,1,29,1,28,1,29,1,28,33,1,308,}, + {1,268,28,6,29,3,28,43,6,2,28,16,1,114,28,3,29,2,28,1,29,1,28,33,1,308,}, + {1,266,28,55,29,1,28,16,1,114,28,4,29,1,28,1,29,1,28,33,1,308,}, + {1,263,28,2,29,1,30,3,29,1,28,51,6,1,28,4,29,1,28,12,1,113,28,4,29,1,28,2,29,1,28,32,1,308,}, + {1,261,28,4,29,3,30,1,29,2,28,13,29,2,28,34,6,1,16,1,9,1,7,1,28,15,1,113,28,3,29,1,26,1,29,1,28,34,1,308,}, + {1,259,28,5,29,1,28,1,29,1,28,2,29,2,28,49,7,1,8,2,7,1,6,1,1,5,28,8,1,115,28,2,30,1,26,1,30,1,28,34,1,308,}, + {1,256,28,3,29,3,28,1,29,3,28,3,29,2,28,49,29,4,28,1,1,6,28,7,1,115,28,1,30,4,29,1,28,33,1,308,}, + {1,254,33,1,28,5,29,1,30,1,28,2,29,1,28,57,29,2,28,1,1,7,28,5,1,116,28,1,29,1,30,1,29,1,30,1,29,1,28,33,1,308,}, + {1,241,33,1,6,1,28,2,1,7,28,1,29,1,30,1,29,1,28,1,29,1,28,30,29,1,28,34,29,1,28,1,1,128,28,1,29,2,28,1,29,2,28,33,1,308,}, + {1,234,28,5,29,5,30,2,29,1,28,1,33,1,28,3,29,3,28,70,1,128,28,4,29,1,28,34,1,308,}, + {1,230,28,2,6,1,8,1,7,2,30,1,6,1,29,1,28,2,29,2,28,1,29,1,28,1,29,1,30,2,29,3,28,73,1,128,28,4,29,1,28,34,1,308,}, + {1,226,28,1,6,1,33,1,7,2,28,1,6,1,7,1,9,2,7,1,30,1,28,3,29,1,28,5,29,3,28,75,1,129,28,2,29,1,26,1,29,1,28,33,1,308,}, + {1,224,33,3,8,1,6,4,9,1,6,1,9,2,30,1,29,1,28,3,29,1,28,7,29,2,28,20,29,1,28,3,29,1,28,49,1,129,28,2,29,1,26,2,30,1,29,1,28,32,1,307,}, + {1,222,28,1,33,3,6,5,7,1,16,1,9,2,8,1,28,5,29,1,28,7,29,1,28,76,1,127,5,1,28,2,29,1,26,3,28,33,1,307,}, + {1,221,33,4,8,1,6,1,7,4,8,1,9,1,8,1,10,1,8,1,28,32,29,2,28,57,1,126,30,1,28,3,30,2,29,1,28,33,1,307,}, + {1,220,6,1,33,2,9,3,8,1,7,1,8,1,7,2,9,4,8,1,28,23,30,2,28,1,29,2,28,63,1,126,30,1,28,3,30,2,29,1,28,33,1,307,}, + {1,219,33,2,8,2,9,3,10,1,8,1,9,4,16,2,9,1,7,1,28,20,6,1,30,1,29,1,30,2,29,2,30,1,29,3,28,61,1,126,28,3,30,2,29,1,28,33,1,307,}, + {1,217,33,1,9,2,8,1,6,2,8,1,9,1,16,6,9,2,16,1,9,1,7,1,28,18,29,1,30,1,13,2,30,1,28,2,29,4,28,63,1,126,28,3,29,1,26,1,29,1,28,33,1,307,}, + {1,215,33,2,8,1,6,1,28,3,29,3,6,1,8,1,7,1,6,2,7,1,8,1,9,1,16,2,6,1,28,18,8,1,13,1,9,1,13,1,30,1,28,2,29,1,28,2,29,1,28,63,1,126,28,4,26,2,29,1,28,32,1,307,}, + {1,214,33,2,7,1,6,1,28,2,29,1,28,4,29,1,6,1,8,1,6,1,28,3,6,1,16,2,6,1,28,15,29,1,6,1,7,1,9,1,8,1,13,1,30,2,28,1,29,2,6,1,29,1,28,65,1,124,28,5,29,1,26,1,28,33,1,307,}, + {1,213,33,1,8,1,6,1,29,1,6,2,28,5,29,3,6,2,28,4,9,1,16,1,8,1,28,12,29,1,6,1,8,1,16,4,9,2,8,1,13,1,6,2,7,1,6,2,29,1,28,64,1,124,28,1,29,1,28,4,29,1,28,34,1,306,}, + {1,211,28,1,33,1,7,1,6,1,28,1,29,1,7,1,6,1,29,2,28,2,29,1,6,1,29,1,28,1,6,1,29,1,28,4,9,1,16,1,9,1,29,2,28,2,29,1,28,3,29,1,28,2,29,1,9,1,16,1,12,1,16,5,9,4,6,1,7,1,6,3,28,64,1,124,28,6,29,2,28,33,1,306,}, + {1,211,6,1,7,1,8,1,6,1,28,1,6,1,7,1,6,3,29,1,28,2,29,1,28,2,6,2,28,4,10,1,12,1,16,1,29,2,30,1,28,2,29,2,28,1,29,1,28,1,6,1,9,3,16,3,9,1,16,3,9,3,8,1,6,1,8,1,7,2,29,1,28,63,1,124,28,4,29,4,28,33,1,306,}, + {1,210,28,1,7,2,8,1,28,1,29,1,6,4,8,1,6,3,29,3,6,1,7,1,6,3,29,1,9,1,16,1,9,1,7,1,6,1,7,1,29,2,6,1,29,2,6,2,8,1,16,1,9,1,16,4,9,2,16,1,9,5,6,2,7,2,6,1,28,63,1,124,28,4,30,1,29,1,28,35,1,306,}, + {1,210,28,1,33,2,6,1,28,1,6,4,7,1,8,1,6,1,7,1,8,2,7,1,6,2,7,1,9,1,8,1,7,2,16,2,8,2,7,3,29,1,6,3,7,1,9,1,8,1,9,1,16,1,17,1,16,7,9,1,8,2,9,1,8,1,6,1,9,1,8,1,6,1,28,63,1,124,28,4,29,2,28,35,1,306,}, + {1,209,28,1,8,1,33,2,6,2,7,1,29,1,6,4,7,2,8,4,7,6,16,1,12,1,9,1,7,1,8,2,7,1,6,3,29,1,8,2,6,1,8,1,17,1,16,6,9,1,16,2,9,2,6,1,7,2,9,1,16,1,7,1,29,1,28,62,1,123,28,42,1,306,}, + {1,209,28,1,8,1,33,2,29,1,6,1,7,1,28,2,6,4,7,1,6,2,9,3,8,1,7,1,10,1,9,1,8,1,9,1,12,1,9,1,8,1,7,3,6,1,7,3,9,1,7,1,28,1,7,1,11,1,16,6,9,4,8,1,6,1,7,2,6,1,16,1,9,1,8,1,28,62,1,123,28,42,1,306,}, + {1,209,9,1,8,1,7,1,6,1,29,1,6,1,7,1,6,1,29,1,6,4,8,1,9,10,16,2,8,4,9,1,8,1,7,1,8,1,9,1,7,1,29,2,8,1,16,7,9,1,8,1,9,1,8,5,6,1,16,2,8,1,6,1,28,61,1,122,29,1,28,8,29,1,28,33,1,306,}, + {1,209,7,2,8,1,29,1,6,6,7,1,8,1,7,1,33,1,9,1,16,1,9,6,8,2,16,1,11,1,9,1,10,1,8,2,9,1,8,4,29,1,28,1,6,1,9,1,8,1,12,1,16,2,9,1,10,1,9,4,6,1,7,1,8,1,9,2,6,1,8,1,16,1,10,1,8,1,28,60,1,123,29,3,30,1,29,1,28,4,30,1,28,33,1,306,}, + {1,208,11,1,7,2,33,1,28,1,6,1,7,2,8,4,10,2,9,10,16,2,17,1,16,1,9,4,8,1,7,1,9,1,7,1,28,2,9,1,16,1,8,1,16,2,9,1,7,2,9,1,8,1,7,1,6,1,28,1,6,1,7,2,9,1,6,2,8,1,9,1,7,1,28,59,1,124,28,2,29,1,30,1,29,2,28,3,30,1,29,1,28,33,1,305,}, + {1,208,11,1,33,1,7,1,33,1,6,1,7,3,8,3,10,1,9,2,16,4,9,1,8,1,7,1,8,1,9,2,16,1,17,1,12,1,9,1,10,1,9,4,8,1,9,1,6,1,28,2,8,1,16,1,7,1,9,1,17,1,16,1,8,1,9,1,8,1,6,2,29,1,6,1,7,2,6,1,9,1,7,1,6,2,7,1,29,1,28,46,29,3,28,9,1,125,28,2,29,1,28,2,29,1,28,38,1,305,}, + {1,208,6,1,33,2,6,1,7,1,8,3,10,1,33,2,9,1,16,3,9,4,10,1,8,1,10,1,9,1,16,1,12,1,17,1,16,1,7,1,8,1,9,1,16,4,9,1,6,1,28,2,6,1,16,1,9,1,16,2,9,1,6,1,29,2,8,1,9,3,6,2,7,3,8,2,7,1,29,2,28,44,6,2,29,4,28,4,33,1,1,127,28,4,29,1,26,1,29,1,28,37,1,305,}, + {1,208,7,1,33,2,6,2,8,1,33,1,10,1,9,1,16,3,9,5,8,2,9,1,7,1,10,1,16,2,12,2,16,1,9,2,16,2,9,1,16,2,8,1,28,2,29,1,9,1,16,3,8,1,29,1,6,2,9,2,7,1,6,1,8,3,6,2,7,1,8,1,7,1,6,1,29,1,28,6,29,1,28,23,1,3,6,1,29,1,28,9,29,1,1,138,28,2,29,4,28,38,1,305,}, + {1,208,10,1,33,1,7,1,6,1,8,1,33,1,9,1,16,4,9,1,6,4,29,1,28,2,6,1,10,1,9,3,10,1,9,1,16,1,9,6,16,1,6,1,28,2,7,1,16,3,9,1,7,1,8,2,6,1,29,1,28,1,6,2,9,2,6,1,7,1,8,2,9,2,8,1,6,1,28,4,29,2,28,24,1,5,9,1,28,3,29,2,6,1,1,141,28,2,30,1,29,1,28,40,1,305,}, + {1,208,9,1,33,1,7,1,33,1,9,4,7,2,6,1,28,8,29,1,6,3,8,1,9,2,16,1,9,3,10,1,8,1,7,1,9,1,7,1,6,2,9,1,16,2,8,1,7,1,9,1,8,1,29,1,6,1,7,2,8,1,7,1,6,1,28,2,6,1,7,1,6,1,8,1,9,2,7,1,28,28,1,155,28,2,30,1,28,1,29,1,30,1,28,38,1,305,}, + {1,208,16,1,33,1,8,1,7,1,9,1,7,1,6,2,28,9,1,4,28,2,29,1,6,1,7,1,9,1,8,1,9,2,7,3,10,1,7,2,6,1,9,1,16,1,9,1,8,1,29,2,28,1,29,1,8,1,6,1,28,6,7,1,9,2,8,1,9,1,16,1,6,1,28,3,29,2,28,17,29,1,28,3,1,157,28,1,29,2,28,1,29,2,28,38,1,305,}, + {1,208,16,1,33,1,7,1,6,1,7,1,29,1,28,6,1,11,28,1,6,1,7,1,6,4,29,2,6,1,8,1,6,1,28,2,10,1,16,1,9,1,28,2,6,1,28,8,1,1,29,1,8,1,16,2,9,1,8,1,6,1,28,12,29,1,7,1,6,1,29,1,28,1,29,1,6,1,29,2,6,1,1,161,28,2,29,1,28,2,29,2,28,38,1,305,}, + {1,208,10,1,9,2,6,1,28,5,1,15,29,3,28,1,29,2,7,1,6,1,29,1,7,1,29,1,28,2,7,2,28,2,7,1,29,1,28,4,1,5,6,1,9,1,16,1,9,1,7,1,6,2,29,1,28,10,1,172,28,45,1,305,}, + {1,208,28,1,6,1,7,1,28,4,1,18,28,3,29,2,6,1,29,2,7,2,28,4,29,1,6,1,28,3,1,8,7,1,9,2,8,1,29,2,28,10,1,173,28,1,29,2,28,44,1,304,}, + {1,208,28,5,1,26,28,2,29,2,28,3,6,1,29,1,28,2,1,10,6,1,29,1,28,10,6,1,1,175,28,7,29,1,28,40,1,304,}, + {1,240,28,9,1,11,28,8,1,180,28,48,1,304,}, + {1,240,28,7,1,199,28,51,1,303,}, + {1,240,28,6,1,199,28,52,1,303,}, + {1,444,28,54,1,302,}, + {1,444,28,54,1,302,}, + {1,444,28,11,29,1,28,42,1,302,}, + {1,443,28,55,1,302,}, + {1,443,28,55,1,302,}, + {1,440,28,58,1,302,}, + {1,439,28,59,1,302,}, + {1,438,28,61,1,301,}, + {1,436,28,63,1,301,}, + {1,435,28,64,1,301,}, + {1,434,28,16,29,2,28,48,1,300,}, + {1,431,28,19,29,1,28,49,1,300,}, + {1,429,28,21,29,1,28,50,1,299,}, + {1,428,28,21,6,1,28,52,1,298,}, + {1,426,28,2,29,2,28,18,29,2,30,1,29,1,28,51,1,297,}, + {1,424,28,22,30,1,26,1,6,1,30,1,28,54,1,296,}, + {1,423,28,23,29,1,26,1,29,1,28,56,1,295,}, + {1,421,28,54,30,1,26,1,28,29,1,294,}, + {1,420,28,1,29,2,28,23,29,1,28,28,30,1,6,1,30,1,28,29,1,293,}, + {1,419,28,2,6,1,28,23,29,1,30,1,28,28,29,1,6,2,28,24,29,2,28,3,1,293,}, + {1,418,28,1,6,1,7,1,6,1,28,22,13,2,6,2,28,28,6,1,7,1,29,1,28,13,29,1,28,6,29,3,28,1,6,2,29,1,28,2,1,292,}, + {1,412,28,7,6,1,9,1,7,1,6,1,28,20,29,1,8,1,6,2,28,28,29,1,6,1,7,1,6,1,28,18,29,1,28,2,29,1,6,1,28,1,6,1,9,1,6,1,29,2,28,1,1,291,}, + {1,410,29,1,28,1,6,6,28,1,29,1,9,2,6,1,28,3,29,1,28,12,29,1,28,2,29,1,8,1,6,1,29,2,28,27,29,3,7,1,8,1,6,1,29,1,28,12,29,3,28,2,29,2,28,1,29,1,6,1,7,1,9,1,6,3,28,2,1,290,}, + {1,409,6,1,8,2,7,2,8,2,6,1,7,1,6,2,8,1,16,1,9,1,29,1,28,2,29,2,28,13,6,3,7,1,29,2,28,4,29,1,28,22,29,1,30,1,7,2,9,1,7,1,6,1,28,9,29,1,28,1,29,2,6,2,29,1,28,2,6,1,29,1,6,1,8,1,7,1,8,1,7,2,8,1,6,1,28,1,1,290,}, + {1,407,28,1,7,2,8,2,10,1,7,1,6,3,7,1,8,3,9,1,16,1,29,1,28,12,29,1,28,3,29,2,28,1,29,1,6,1,29,1,6,1,7,1,29,1,28,26,30,1,9,1,7,1,8,2,6,1,29,1,28,1,6,1,28,1,29,5,30,1,6,4,7,1,29,1,28,2,7,1,9,3,8,1,7,2,29,1,8,2,6,1,1,290,}, + {1,407,29,1,9,1,8,1,7,1,8,1,6,2,7,1,10,1,8,2,9,1,8,1,7,1,6,1,10,1,29,1,28,12,6,1,29,3,28,2,6,1,7,1,8,2,6,1,29,1,28,27,13,1,8,1,6,2,7,1,6,1,29,1,28,1,29,6,6,8,28,1,6,1,8,1,16,1,9,1,16,1,9,1,8,1,6,1,29,1,7,2,6,1,28,1,1,289,}, + {1,406,28,1,7,1,8,2,33,1,7,1,6,1,7,1,6,1,28,3,7,1,9,1,8,1,7,1,6,1,8,1,6,1,29,1,28,2,29,1,28,8,29,2,28,1,29,1,9,3,7,1,29,1,28,15,6,1,28,12,29,1,13,1,9,1,8,1,6,3,29,1,28,2,29,2,6,2,29,1,6,4,7,1,6,3,7,1,9,1,16,6,7,3,8,1,6,1,28,1,1,289,}, + {1,406,28,1,7,2,33,2,7,3,28,1,6,1,7,1,6,1,29,1,8,1,9,1,7,1,6,3,28,2,29,2,28,2,29,1,28,2,29,1,28,2,29,1,6,2,7,3,6,1,29,1,6,2,28,15,7,1,28,11,6,1,7,1,10,1,8,1,7,1,6,1,29,2,6,1,29,1,6,4,7,2,6,1,7,1,9,1,7,1,6,2,7,1,9,1,16,1,17,2,11,2,17,1,16,1,9,1,7,1,6,1,8,1,6,1,28,1,1,289,}, + {1,406,28,1,7,1,33,2,7,2,6,3,29,1,6,1,29,1,6,1,16,1,8,1,29,1,6,2,29,2,28,2,29,1,6,1,29,1,28,1,6,1,7,1,29,1,28,1,29,2,7,2,29,1,6,1,9,1,8,1,6,1,7,1,8,1,6,1,28,14,6,1,29,1,28,9,29,1,6,1,7,1,9,1,16,1,9,1,8,1,6,1,29,2,6,4,7,1,8,2,6,1,8,2,7,2,8,1,9,2,16,1,17,1,11,4,16,1,9,1,8,1,7,3,28,1,1,289,}, + {1,405,28,1,6,1,7,1,6,1,33,1,6,1,7,3,6,1,28,3,6,1,9,1,7,2,16,1,7,1,6,1,7,1,6,1,28,1,29,1,28,2,6,1,29,1,28,4,29,1,6,1,7,1,8,1,10,1,9,2,8,1,6,1,8,2,6,1,28,1,30,2,29,1,28,10,29,1,28,9,6,1,7,1,10,1,9,2,8,1,9,1,6,1,29,2,6,4,8,1,9,1,8,1,7,2,6,1,7,2,9,2,16,3,17,1,11,3,16,1,6,2,9,1,7,2,28,1,1,289,}, + {1,405,28,1,6,1,7,1,33,1,8,1,29,1,7,1,33,2,6,3,7,1,6,1,7,1,16,3,29,1,6,1,7,1,6,2,28,2,29,2,28,1,29,1,6,1,29,4,7,1,9,3,7,1,29,2,8,1,7,1,6,1,28,1,6,3,29,1,6,2,28,3,29,2,28,8,29,1,28,3,29,1,6,1,7,1,9,2,8,1,7,1,6,2,29,1,6,2,29,1,6,1,8,5,7,3,8,1,9,2,16,2,12,1,17,1,11,3,7,1,28,1,6,1,9,1,6,1,28,1,1,289,}, + {1,402,28,1,29,1,6,2,7,1,8,2,28,1,29,1,33,3,6,1,29,1,6,1,28,1,29,1,16,1,17,1,16,1,8,1,6,1,7,1,29,2,6,2,29,1,28,2,29,5,6,1,7,1,8,2,9,1,6,3,7,1,8,2,6,2,7,2,6,3,7,1,30,1,28,16,29,2,28,1,1,1,28,1,7,2,6,2,29,2,6,1,7,1,6,1,7,1,10,1,9,1,8,3,7,1,8,1,9,1,8,1,9,3,16,2,11,3,17,1,7,1,29,1,9,1,6,1,28,1,1,289,}, + {1,401,29,1,6,3,7,1,8,2,7,1,6,1,29,1,33,3,7,1,6,4,9,1,17,1,16,1,8,1,9,1,29,1,6,1,7,1,8,1,6,1,29,3,28,3,6,1,7,2,8,1,7,2,8,1,7,1,6,4,7,1,8,1,9,2,8,2,7,1,6,1,29,1,6,1,29,1,28,3,29,1,28,14,1,3,28,1,29,1,6,2,29,1,6,1,8,1,7,2,10,1,9,1,8,1,9,1,10,1,8,1,9,2,10,1,9,2,16,4,11,3,12,1,6,3,28,1,1,289,}, + {1,399,28,1,6,2,7,1,29,1,28,1,6,3,7,1,9,1,8,1,6,1,33,3,6,1,28,1,6,2,16,1,11,1,16,1,8,1,7,1,9,1,16,2,10,1,29,1,6,2,28,1,29,1,7,1,8,2,9,2,7,1,33,3,6,1,29,1,6,7,9,1,8,1,9,1,6,1,29,1,8,1,6,2,28,5,6,1,28,10,1,6,28,1,6,4,8,3,6,1,7,1,8,1,7,2,8,2,10,1,9,1,16,2,9,2,16,1,12,1,11,3,33,1,28,1,7,1,29,1,1,289,}, + {1,398,6,1,7,1,33,1,6,1,29,1,28,5,6,1,9,1,16,1,6,1,33,3,7,1,6,1,8,1,9,1,16,1,17,1,9,1,28,1,6,1,9,1,6,1,9,1,6,2,8,1,7,1,6,1,9,5,33,4,7,1,29,2,6,5,28,1,29,1,6,1,9,2,7,1,6,1,8,2,6,2,28,4,30,1,29,1,28,6,29,1,28,1,1,10,29,1,6,1,7,1,8,1,7,1,6,1,8,1,7,1,6,3,8,1,7,1,10,1,16,6,12,1,11,3,29,1,28,1,7,1,28,1,1,288,}, + {1,397,6,1,33,2,6,1,28,9,6,1,7,1,6,1,33,3,9,2,7,1,9,1,16,1,7,1,29,1,7,1,9,1,6,1,8,1,6,1,7,1,9,1,8,1,9,2,8,1,7,1,8,2,33,4,7,1,6,1,7,1,33,2,7,1,6,1,8,1,7,1,6,1,29,1,6,1,9,1,6,1,28,1,8,2,7,2,29,1,28,1,29,4,28,7,1,11,28,1,29,1,7,1,8,3,9,1,8,1,7,3,8,2,10,1,9,3,16,3,12,2,11,2,7,1,28,1,6,2,1,288,}, + {1,396,28,1,6,2,29,1,28,11,7,1,6,1,9,1,16,1,33,1,29,1,28,1,29,1,8,1,16,1,8,1,7,1,16,1,9,1,6,2,8,1,10,1,7,1,8,2,6,2,7,1,8,1,10,1,33,7,16,3,8,1,7,1,9,1,16,1,33,1,7,1,8,1,9,1,6,1,8,1,9,1,8,1,7,1,6,1,28,1,29,3,28,8,1,12,28,1,6,1,7,1,9,1,8,2,10,1,8,2,9,2,16,1,9,1,7,2,8,1,9,2,16,3,17,1,11,1,16,1,28,1,29,1,7,1,28,1,1,287,}, + {1,395,28,1,6,2,28,6,6,3,7,1,6,2,29,1,28,1,8,1,16,2,5,1,33,1,8,1,7,1,8,1,11,1,9,1,7,1,9,2,6,2,9,1,8,4,9,5,33,2,7,1,8,1,33,1,9,1,16,3,17,1,16,1,9,1,8,1,9,2,6,2,9,1,8,1,7,1,9,2,7,1,29,2,6,1,30,1,29,1,28,8,1,12,28,1,7,1,6,1,8,1,9,1,8,1,6,1,8,1,9,1,10,2,9,2,7,3,9,2,16,4,17,1,11,1,33,1,29,1,7,1,28,1,1,287,}, + {1,394,28,1,6,2,28,4,29,1,6,1,8,3,7,4,8,1,6,1,8,1,9,1,8,1,9,1,16,2,9,1,16,1,11,1,9,1,6,1,9,1,7,1,29,1,6,1,8,1,9,1,16,1,12,1,16,1,9,2,8,1,10,1,9,1,33,2,7,1,33,1,16,4,12,3,16,1,9,1,6,1,10,1,9,7,7,1,28,1,6,2,30,1,28,7,29,1,1,14,29,1,6,1,8,2,9,2,8,1,7,1,29,1,6,1,7,1,8,4,7,1,8,1,9,1,16,3,17,1,11,1,16,1,29,1,28,3,1,286,}, + {1,394,6,2,28,5,29,1,10,1,9,1,7,1,6,1,7,1,8,6,9,1,16,1,9,2,16,2,12,2,9,1,6,1,7,1,29,3,8,1,16,1,12,1,16,1,9,5,8,1,33,1,7,1,33,1,16,1,9,1,16,3,12,3,17,1,16,1,7,2,9,2,10,1,8,3,9,2,6,1,7,1,6,1,28,8,1,15,28,2,7,1,8,2,9,2,10,1,6,4,29,2,6,1,8,1,9,4,16,1,12,1,17,1,12,1,33,1,28,4,1,285,}, + {1,393,28,1,7,1,29,1,28,5,6,1,7,1,6,1,7,2,8,1,7,1,8,3,9,2,16,1,12,1,16,1,8,1,7,1,10,1,9,1,16,1,10,1,6,2,29,1,6,2,8,1,9,2,16,1,9,4,10,1,6,1,33,2,16,5,12,1,17,1,12,1,16,1,17,2,16,1,9,3,8,2,9,1,6,1,8,2,6,1,8,1,29,1,28,8,1,16,28,1,29,1,7,2,6,1,29,2,6,2,29,2,28,1,29,2,8,1,12,2,9,3,16,1,12,1,17,1,33,1,6,1,28,3,1,285,}, + {1,393,6,2,29,1,28,2,29,1,6,3,7,1,10,1,9,1,8,1,6,2,8,2,9,2,16,3,17,1,16,1,6,1,7,1,9,1,10,1,9,2,33,1,8,1,7,1,8,1,9,1,16,3,9,3,7,1,28,1,7,1,33,1,16,2,17,2,16,1,17,2,11,1,16,5,9,3,7,1,8,2,9,2,7,3,6,1,29,1,28,2,29,1,28,2,1,19,28,2,29,2,28,2,29,1,28,1,29,1,28,4,6,1,16,1,17,1,16,1,8,1,10,1,9,1,16,1,17,1,5,1,6,1,28,3,1,285,}, + {1,392,28,1,6,2,28,1,29,1,28,1,6,2,8,1,9,3,8,4,9,3,16,2,12,1,11,1,17,1,12,1,16,3,9,1,7,1,6,1,7,1,33,1,16,1,12,1,16,2,9,4,10,1,1,1,7,1,33,2,9,1,16,1,12,1,17,3,12,1,16,6,9,1,6,1,7,1,6,3,9,2,6,1,7,2,8,1,28,6,1,21,28,12,10,1,9,1,8,1,6,3,9,1,17,2,6,1,28,4,1,284,}, + {1,392,6,1,7,1,28,2,6,3,8,8,9,1,8,1,9,1,16,3,17,1,11,1,16,5,9,2,33,1,16,1,12,2,16,1,9,2,8,3,7,1,1,1,6,1,8,1,33,2,7,1,9,1,17,3,16,3,9,1,16,4,8,1,6,1,9,1,6,1,29,1,6,1,9,1,8,1,7,1,8,1,9,1,6,1,28,5,1,24,28,9,1,2,28,5,30,1,16,1,12,1,6,1,28,4,1,284,}, + {1,392,6,1,7,1,28,3,6,2,29,1,7,1,9,2,8,2,7,1,6,2,8,1,9,2,16,2,12,1,16,5,9,2,33,1,9,1,16,1,12,1,16,1,10,2,8,1,7,1,8,1,1,3,7,1,33,2,6,1,7,1,16,1,17,2,16,9,9,1,16,2,9,4,8,1,9,3,6,1,28,4,1,41,28,1,8,1,16,1,6,1,28,4,1,284,}, + {1,392,6,2,28,2,29,3,6,1,9,3,7,1,6,2,7,1,9,3,16,3,8,1,6,1,9,1,16,1,9,2,33,1,7,1,8,1,16,1,12,1,16,1,10,2,8,3,1,4,33,3,6,1,8,1,16,1,12,1,16,2,9,2,16,5,9,1,8,1,7,1,10,1,9,3,7,1,8,1,9,1,8,1,6,1,28,3,29,1,1,43,9,1,8,1,28,5,1,284,}, + {1,391,28,1,6,1,28,2,6,2,7,2,9,3,6,1,29,1,6,2,7,1,9,4,8,1,6,2,7,1,16,1,12,1,16,1,9,3,16,1,17,1,16,1,9,1,10,1,7,1,6,1,1,6,33,2,6,1,29,1,10,1,16,3,9,3,16,4,9,1,8,1,7,1,6,1,7,1,8,1,29,1,6,1,7,1,8,1,9,1,7,1,6,2,28,2,1,45,28,6,1,284,}, + {1,391,28,1,6,1,28,1,6,3,7,1,8,1,9,2,6,1,28,1,6,2,7,1,9,1,16,1,9,2,7,1,29,1,6,1,9,1,11,3,16,1,8,1,9,1,16,1,9,1,8,1,7,2,8,1,29,1,1,6,7,1,33,2,28,1,29,1,7,1,16,2,9,1,16,1,9,1,16,1,9,2,16,1,9,3,6,1,8,1,9,2,7,2,8,1,10,1,8,1,7,1,8,1,7,1,28,2,1,47,29,1,28,2,1,285,}, + {1,391,6,2,29,1,7,1,6,1,7,1,6,1,8,1,9,1,29,1,28,1,7,2,6,1,16,3,9,1,7,1,6,1,7,1,16,1,17,1,11,2,12,1,16,1,8,1,10,1,8,1,6,1,29,1,6,2,1,8,10,1,33,2,6,1,28,1,7,1,16,1,9,1,16,2,9,6,16,1,8,1,6,1,8,2,9,2,8,2,7,1,8,2,7,1,6,1,28,2,1,335,}, + {1,391,6,3,33,1,6,1,7,3,28,2,8,1,16,1,8,1,16,1,9,1,8,1,10,1,8,2,9,1,16,1,12,2,9,1,7,1,8,1,7,1,6,1,7,1,6,1,28,1,6,1,1,10,8,1,33,2,6,1,28,1,8,1,16,1,9,11,8,1,10,2,9,1,8,2,10,1,9,1,8,1,7,2,29,1,28,2,1,335,}, + {1,391,6,1,29,2,7,3,6,1,28,1,29,1,9,1,16,1,9,1,16,1,9,1,7,1,9,2,16,2,9,2,7,1,6,1,29,2,6,4,29,1,1,12,7,1,33,2,6,1,28,1,9,1,16,2,33,1,9,9,16,1,9,1,8,1,10,1,9,3,10,1,6,1,7,1,6,1,28,2,1,336,}, + {1,390,28,1,6,1,29,2,6,3,29,1,6,1,16,2,7,1,9,1,16,1,9,1,8,1,16,1,7,1,28,1,1,24,7,1,33,2,6,1,28,1,16,2,33,1,9,6,16,1,9,1,8,1,6,1,9,2,8,1,9,1,8,1,6,3,7,1,29,1,28,2,1,337,}, + {1,390,28,1,6,1,28,1,29,1,6,1,28,2,7,1,16,2,10,1,9,1,16,1,10,2,1,28,7,1,33,1,7,1,29,1,28,1,9,2,33,1,9,4,16,2,9,1,6,1,28,2,9,1,16,1,8,1,9,2,6,1,29,1,7,1,6,1,28,2,1,338,}, + {1,390,28,1,6,1,28,1,29,1,28,2,8,1,16,1,9,1,7,1,9,2,29,1,1,30,6,1,33,1,7,1,29,1,28,1,9,6,16,2,9,1,6,1,29,1,28,2,8,1,9,2,7,1,29,2,28,1,29,1,28,1,1,340,}, + {1,390,28,1,6,1,29,1,6,2,8,1,16,1,9,1,10,1,9,1,8,1,28,1,1,31,6,1,33,2,29,1,6,1,9,2,33,1,9,5,29,2,28,11,1,341,}, + {1,390,28,1,6,1,28,1,29,1,7,1,9,1,7,1,6,1,8,1,10,1,1,33,29,1,33,1,7,1,28,1,8,1,9,7,6,1,28,11,1,343,}, + {1,390,28,1,6,3,10,2,8,2,7,1,1,34,28,1,8,1,6,1,28,1,8,1,9,6,29,1,28,10,1,345,}, + {1,390,28,2,29,1,6,2,29,1,10,1,7,1,1,35,28,1,7,1,28,2,6,1,9,1,8,1,9,1,10,1,8,1,29,1,28,2,1,354,}, + {1,390,28,3,6,1,28,1,29,1,6,1,1,36,28,1,7,1,28,2,6,1,9,1,8,2,10,1,6,1,28,2,1,355,}, + {1,390,28,3,29,1,28,2,1,37,28,1,7,1,28,2,6,1,8,3,6,1,28,2,1,356,}, + {1,391,28,4,1,38,28,1,6,1,28,2,7,1,8,1,10,1,8,1,28,2,1,357,}, + {1,433,28,1,29,1,28,2,6,1,8,1,9,1,7,1,28,1,1,358,}, + {1,433,28,4,29,1,6,1,7,1,28,1,1,359,}, + {1,433,28,8,1,359,}, + {1,434,28,6,1,360,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino10.lua b/map_gen/data/presets/dino10.lua new file mode 100644 index 00000000..958ff6bb --- /dev/null +++ b/map_gen/data/presets/dino10.lua @@ -0,0 +1,391 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 384, +width = 439, +data = { + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,409,28,8,1,22,}, + {1,406,28,4,29,1,6,2,29,1,6,2,28,3,1,20,}, + {1,404,28,4,6,6,7,1,6,2,28,3,1,19,}, + {1,403,28,2,29,1,6,1,28,1,29,1,28,5,6,1,7,1,6,1,29,1,6,1,28,2,1,18,}, + {1,400,28,15,29,1,6,3,33,1,28,1,1,18,}, + {1,394,28,23,6,1,7,2,6,1,1,18,}, + {1,388,28,11,6,1,28,16,29,1,28,1,6,1,7,1,28,1,1,18,}, + {1,385,28,13,29,1,28,4,6,1,28,15,7,1,6,1,28,1,1,17,}, + {1,382,28,4,29,1,28,6,29,1,28,26,6,1,28,1,1,17,}, + {1,381,28,5,6,1,28,4,29,1,28,4,6,1,28,11,29,1,28,1,6,2,28,8,6,1,28,1,1,17,}, + {1,378,28,22,6,1,28,6,7,2,6,1,33,3,28,9,1,17,}, + {1,378,28,25,29,1,6,4,28,3,29,1,33,1,6,1,28,8,1,17,}, + {1,375,28,23,29,1,28,4,7,1,6,1,33,1,6,1,28,4,6,1,33,2,6,1,28,7,1,17,}, + {1,373,28,12,29,1,28,4,29,1,28,5,6,2,28,5,33,2,29,1,28,5,29,1,33,3,6,1,28,6,1,17,}, + {1,372,28,22,29,1,28,4,29,1,28,2,29,1,33,2,28,2,33,7,5,1,6,1,28,6,1,17,}, + {1,370,28,17,6,1,28,2,7,1,6,2,28,1,6,1,29,1,6,1,28,2,33,1,28,2,6,1,33,1,6,1,29,2,33,2,16,1,17,1,5,1,33,2,5,1,6,1,28,6,1,17,}, + {1,369,28,21,6,3,28,1,6,3,28,3,6,1,28,1,29,1,33,1,7,1,6,1,28,4,6,1,33,4,6,1,28,7,1,16,}, + {1,368,28,11,29,1,28,7,6,1,28,2,6,1,29,1,6,1,28,1,6,2,28,1,33,1,28,2,6,2,28,2,33,1,29,1,28,5,7,1,33,2,5,1,6,1,28,2,33,1,28,4,1,16,}, + {1,367,28,15,29,1,28,4,6,1,29,1,28,1,33,1,28,1,6,1,28,2,6,1,28,1,6,1,33,1,28,2,6,1,28,8,6,1,33,2,6,2,28,2,6,2,28,4,1,16,}, + {1,365,28,11,29,1,28,2,29,1,28,2,6,1,28,3,6,4,33,1,28,1,6,1,29,2,33,1,28,2,33,2,28,1,29,1,6,1,28,3,6,4,33,1,7,1,28,4,6,1,7,1,28,6,1,15,}, + {1,364,28,18,6,1,29,1,28,1,6,1,33,1,29,1,28,1,6,1,33,1,28,2,6,2,33,1,28,2,6,1,33,2,28,1,6,1,28,4,6,1,28,6,6,1,33,2,6,1,28,1,29,1,28,6,1,13,}, + {1,363,28,13,29,1,6,1,28,1,29,2,28,2,33,1,28,1,33,1,6,1,28,1,29,1,6,1,33,1,28,1,29,1,28,3,6,1,28,1,6,1,33,3,28,8,6,1,28,1,29,2,33,1,7,1,6,2,33,1,29,1,28,10,1,9,}, + {1,363,28,10,6,1,28,3,6,1,28,2,33,1,28,2,5,1,28,5,6,1,29,1,28,5,6,1,28,2,6,1,33,2,6,1,28,4,6,1,7,1,6,5,7,1,6,2,28,1,6,1,28,4,29,1,28,8,1,7,}, + {1,362,28,11,33,1,28,3,6,1,28,2,33,1,28,2,33,1,6,1,28,4,29,1,28,1,29,1,28,4,6,1,28,3,33,1,6,1,29,1,28,1,29,1,28,2,33,2,28,1,6,1,28,1,6,1,33,1,28,1,29,1,6,1,28,16,1,6,}, + {1,361,28,12,7,1,6,1,28,2,33,1,6,1,28,2,6,1,28,2,33,1,28,1,29,1,6,1,28,3,6,1,28,7,29,2,28,3,6,2,28,1,33,1,28,2,33,1,28,1,29,1,7,1,28,1,6,2,28,16,1,6,}, + {1,360,28,9,29,1,28,3,6,1,33,1,28,2,6,1,33,1,28,2,6,1,28,2,6,1,28,6,6,1,28,12,29,1,28,4,29,1,28,1,29,2,28,4,33,1,28,2,6,1,28,12,1,6,}, + {1,359,28,10,7,1,28,3,33,1,6,1,29,1,28,2,33,1,28,2,6,1,28,32,6,1,7,1,6,3,28,1,6,2,28,2,6,1,28,8,1,6,}, + {1,358,28,7,6,1,28,3,6,1,28,3,6,1,29,2,28,2,33,2,28,1,6,1,28,27,7,1,33,2,6,2,28,4,6,1,28,4,29,1,6,1,28,3,29,1,28,4,1,6,}, + {1,358,28,7,6,1,28,1,6,1,28,1,6,1,33,1,28,3,33,1,6,1,28,3,33,1,28,28,9,1,7,1,28,1,29,1,6,1,33,3,29,1,28,16,1,6,}, + {1,357,28,8,6,1,28,3,29,1,33,1,28,4,33,1,28,40,6,1,33,2,7,1,28,12,1,7,}, + {1,356,28,9,6,1,29,1,28,3,33,2,28,4,29,1,28,43,6,1,33,2,7,1,6,1,28,7,1,7,}, + {1,355,28,10,6,1,33,1,6,1,28,2,33,2,28,33,1,1,28,18,6,4,29,1,28,3,1,7,}, + {1,354,28,8,29,1,28,3,33,1,6,2,28,1,29,1,33,1,7,1,28,19,1,21,28,17,1,9,}, + {1,354,28,8,33,1,28,3,33,2,6,1,28,22,1,27,28,11,1,10,}, + {1,353,28,9,33,2,28,3,33,1,6,1,28,20,1,33,28,6,1,11,}, + {1,352,28,10,29,1,33,2,6,1,28,2,6,1,28,18,1,52,}, + {1,352,28,8,29,2,28,1,29,1,33,2,6,1,28,19,1,53,}, + {1,352,28,5,29,1,28,2,6,1,33,1,6,1,28,2,33,1,6,1,28,4,29,1,28,12,1,55,}, + {1,350,28,7,33,1,29,1,28,2,33,1,5,1,6,1,28,2,29,1,33,1,28,4,29,1,30,1,28,9,1,56,}, + {1,350,28,7,6,3,28,2,6,1,33,2,28,2,6,1,29,1,28,13,1,57,}, + {1,350,28,8,33,2,6,1,28,2,6,1,33,1,6,1,28,14,1,59,}, + {1,349,28,5,6,2,28,3,33,2,6,1,28,2,29,1,33,1,29,1,28,13,1,59,}, + {1,348,28,7,6,1,33,1,28,3,33,1,5,1,6,1,28,2,29,1,6,1,28,10,1,62,}, + {1,348,28,4,6,1,28,3,6,1,33,1,28,3,6,1,33,1,7,1,28,3,6,1,28,9,1,62,}, + {1,348,28,4,6,1,28,4,33,1,7,1,28,4,7,1,6,1,28,11,1,63,}, + {1,347,28,6,6,1,33,1,28,3,6,1,5,1,29,1,28,14,1,64,}, + {1,347,28,4,6,1,28,1,6,1,33,1,6,1,28,3,7,1,33,2,28,12,1,65,}, + {1,346,28,8,29,1,5,1,33,1,6,1,29,1,28,2,29,1,6,3,28,8,1,66,}, + {1,346,28,4,33,1,28,1,6,1,28,3,33,1,5,1,33,1,28,5,29,1,28,8,1,66,}, + {1,346,28,1,6,1,28,2,33,1,6,1,28,1,33,1,6,1,28,3,33,2,28,13,1,66,}, + {1,345,28,6,33,1,6,1,33,3,28,3,6,3,28,11,1,66,}, + {1,344,28,7,6,1,33,1,6,1,28,1,33,1,5,1,6,1,28,3,7,1,28,10,1,67,}, + {1,344,28,4,29,1,28,3,33,3,6,1,28,1,6,1,33,1,6,1,28,11,1,68,}, + {1,343,28,6,6,1,33,1,29,1,28,2,33,3,28,2,6,1,7,1,28,10,1,68,}, + {1,343,28,7,33,2,6,1,28,2,29,1,6,1,7,1,28,2,29,1,9,1,28,2,29,1,28,5,1,69,}, + {1,343,28,1,29,1,28,2,6,2,28,2,33,2,6,1,28,1,29,2,6,1,28,6,6,1,28,5,1,69,}, + {1,342,28,5,6,1,33,1,29,1,28,2,33,3,28,1,6,1,7,2,28,11,1,69,}, + {1,342,28,7,33,2,28,2,6,1,33,2,6,1,28,3,6,1,28,9,1,69,}, + {1,342,28,3,29,1,28,4,6,1,33,1,6,1,28,2,6,1,7,1,29,1,28,10,1,71,}, + {1,340,28,6,6,1,28,5,33,3,6,1,28,6,6,1,29,1,28,4,1,71,}, + {1,341,28,6,6,1,28,3,33,1,6,1,28,1,33,3,6,1,28,4,6,1,29,1,28,2,1,73,}, + {1,340,28,12,33,2,7,1,28,12,1,72,}, + {1,340,28,6,29,1,28,6,6,1,7,2,6,1,28,9,1,73,}, + {1,340,28,6,6,1,33,2,28,1,29,1,33,1,6,1,33,1,6,2,28,5,29,1,28,4,1,73,}, + {1,340,28,8,33,3,6,1,29,1,6,1,28,1,7,1,6,2,28,7,1,74,}, + {1,339,28,5,6,1,33,1,28,4,7,1,5,1,33,1,7,1,29,2,28,9,1,74,}, + {1,339,28,7,33,1,6,1,28,5,6,3,28,4,6,1,28,5,1,73,}, + {1,339,28,7,6,1,33,4,28,15,1,73,}, + {1,339,28,9,33,5,28,12,1,74,}, + {1,338,28,5,33,1,6,2,28,5,7,1,33,2,8,1,7,1,28,8,1,75,}, + {1,338,28,6,6,1,33,2,29,1,6,1,28,15,1,75,}, + {1,338,28,9,33,1,5,2,33,3,6,2,28,9,1,75,}, + {1,337,28,12,29,1,6,1,33,4,6,1,28,3,6,1,28,3,1,76,}, + {1,337,28,6,6,1,33,2,6,1,28,12,6,1,28,3,1,76,}, + {1,337,28,8,33,4,7,1,6,1,29,1,6,1,28,11,1,75,}, + {1,337,28,10,33,6,7,1,28,10,1,75,}, + {1,337,28,13,6,3,28,11,1,75,}, + {1,337,28,4,6,1,33,3,6,1,28,5,29,1,28,12,1,75,}, + {1,336,28,2,6,1,28,3,6,1,33,3,7,1,33,2,28,3,6,3,28,8,1,76,}, + {1,337,28,7,6,1,33,6,6,2,28,11,1,75,}, + {1,336,28,12,33,4,6,1,28,10,1,76,}, + {1,336,28,12,6,1,33,1,6,3,33,1,6,1,28,8,1,76,}, + {1,336,28,4,6,2,28,2,6,1,33,1,6,1,28,16,1,76,}, + {1,336,28,1,29,1,28,4,6,1,33,3,7,1,6,2,28,9,29,2,28,2,1,77,}, + {1,336,28,7,29,1,6,2,33,5,28,11,1,77,}, + {1,335,28,2,29,1,28,7,6,1,28,1,6,3,33,1,7,1,6,2,28,8,1,77,}, + {1,335,28,7,33,1,6,1,33,2,6,1,28,15,1,77,}, + {1,335,28,5,6,1,28,1,33,8,6,1,29,1,28,10,1,77,}, + {1,335,28,8,6,1,33,4,7,1,33,3,6,1,28,1,29,1,28,6,1,78,}, + {1,335,28,1,29,1,28,8,29,1,28,2,6,1,28,12,1,78,}, + {1,335,28,1,6,1,28,11,33,1,29,1,6,1,33,1,28,9,1,78,}, + {1,335,28,1,6,1,28,5,6,3,29,1,28,5,6,1,28,10,1,77,}, + {1,335,28,1,6,1,28,4,33,4,6,2,28,1,6,1,28,8,29,1,28,4,1,77,}, + {1,334,28,8,29,1,33,6,7,1,6,1,28,6,7,1,28,3,1,78,}, + {1,334,28,10,29,1,28,1,6,1,33,5,28,5,6,1,28,3,1,78,}, + {1,334,28,5,6,4,33,1,6,1,28,5,6,1,29,1,7,1,28,9,1,77,}, + {1,334,28,5,6,2,33,4,6,2,28,14,1,78,}, + {1,334,28,8,6,1,33,4,7,1,33,1,6,2,28,10,1,78,}, + {1,333,28,12,6,3,33,3,6,1,28,9,1,1,28,1,1,76,}, + {1,333,28,5,6,2,33,3,6,1,28,5,29,3,6,1,28,3,29,1,28,4,1,78,}, + {1,333,28,8,6,1,33,6,28,1,6,1,28,11,1,78,}, + {1,333,28,11,6,1,33,3,5,1,33,2,7,1,6,1,28,8,1,78,}, + {1,333,28,7,6,2,28,4,6,2,28,1,6,2,28,9,1,79,}, + {1,333,28,5,29,1,6,2,33,1,6,5,28,15,1,77,}, + {1,333,28,5,6,3,33,6,6,3,28,6,6,1,28,5,1,77,}, + {1,332,28,7,29,1,33,1,6,1,33,8,7,1,6,1,28,4,29,1,28,4,1,78,}, + {1,332,28,8,6,1,28,3,29,1,6,1,33,1,7,1,6,3,28,12,1,76,}, + {1,332,28,14,6,1,7,1,6,1,7,2,28,12,1,76,}, + {1,332,28,6,33,1,6,4,33,1,29,1,28,4,6,1,29,1,28,10,1,78,}, + {1,332,28,6,6,1,33,7,7,1,28,15,1,77,}, + {1,332,28,7,6,2,33,7,6,2,28,12,1,77,}, + {1,332,28,1,29,1,28,10,6,3,33,2,7,1,28,10,1,79,}, + {1,332,28,4,29,1,6,1,28,1,6,1,28,1,6,2,33,1,28,3,6,1,33,1,6,1,28,10,1,79,}, + {1,331,28,6,6,2,33,5,6,1,29,1,28,14,1,79,}, + {1,331,28,8,33,2,6,2,33,4,6,1,28,14,1,77,}, + {1,331,28,12,29,1,6,2,33,3,6,2,28,11,1,77,}, + {1,331,28,6,6,1,33,1,6,2,33,1,6,3,28,2,6,2,28,11,1,79,}, + {1,331,28,7,33,8,6,3,28,11,1,1,28,1,1,77,}, + {1,330,28,2,6,1,28,9,33,5,6,1,7,1,6,1,28,12,1,77,}, + {1,330,28,3,29,1,28,9,29,1,33,5,29,1,28,4,29,1,28,7,1,77,}, + {1,330,28,9,6,1,28,7,6,2,28,11,1,79,}, + {1,330,28,1,6,2,28,2,6,1,28,5,33,1,6,1,33,1,28,18,1,77,}, + {1,330,28,2,6,1,28,4,33,1,6,1,28,2,33,1,6,2,33,5,6,1,28,4,6,1,28,7,1,77,}, + {1,330,28,2,6,1,28,4,6,1,33,1,6,1,28,1,6,1,28,2,6,1,28,3,6,1,28,11,1,79,}, + {1,330,28,7,6,1,33,4,5,1,33,4,6,2,28,1,29,1,28,10,1,78,}, + {1,329,28,9,6,1,28,1,6,1,33,4,6,1,29,1,6,1,7,1,28,11,1,79,}, + {1,329,28,8,6,1,33,1,6,5,28,17,1,78,}, + {1,329,28,10,33,7,6,1,7,1,6,1,28,12,1,78,}, + {1,329,28,12,6,1,33,1,6,1,33,5,6,1,28,11,1,78,}, + {1,329,28,5,6,2,33,4,28,1,29,1,7,1,29,1,28,1,6,1,29,1,28,7,29,1,28,7,1,77,}, + {1,328,28,6,6,2,33,7,6,1,28,1,29,1,28,8,6,1,28,7,1,77,}, + {1,328,28,2,6,1,28,8,6,1,33,8,6,1,28,4,29,1,28,8,1,77,}, + {1,328,28,2,6,1,29,1,28,12,6,1,33,2,7,1,6,1,28,13,1,77,}, + {1,328,28,4,6,3,28,1,33,1,6,3,33,1,6,1,28,19,1,78,}, + {1,327,28,6,33,1,6,1,33,1,6,1,33,6,6,1,29,2,28,1,29,1,28,5,29,1,28,7,1,78,}, + {1,327,28,8,6,1,33,6,5,2,33,4,8,1,28,13,1,77,}, + {1,327,28,3,6,1,33,1,28,6,6,1,33,2,28,2,6,6,28,13,1,77,}, + {1,326,28,4,6,1,33,1,6,2,28,7,33,1,6,3,29,2,28,14,1,78,}, + {1,327,28,2,6,1,28,3,29,1,28,7,29,1,33,6,29,1,28,13,1,77,}, + {1,326,28,8,6,2,33,1,28,2,29,1,28,2,6,2,29,1,28,1,6,1,7,1,28,14,1,77,}, + {1,327,28,2,6,1,28,1,6,1,28,3,5,1,33,4,28,1,29,1,33,1,6,2,28,16,1,78,}, + {1,326,28,3,33,1,28,2,33,1,28,3,33,10,29,1,28,14,1,78,}, + {1,325,28,4,33,1,28,3,5,1,6,1,28,3,6,1,33,2,5,1,33,6,6,1,28,12,1,78,}, + {1,325,28,2,6,1,28,1,29,1,6,1,28,3,6,1,5,1,33,1,28,3,33,7,8,1,28,13,1,78,}, + {1,325,28,3,6,2,28,1,33,1,28,4,6,4,28,4,6,2,29,1,6,1,28,13,1,78,}, + {1,325,28,3,6,1,28,3,29,1,28,8,33,3,6,1,28,7,29,1,28,8,1,78,}, + {1,324,28,5,6,1,28,3,33,1,6,1,33,1,6,1,33,1,6,1,29,1,28,1,29,1,6,1,29,1,33,2,7,1,6,1,28,4,29,1,28,8,1,78,}, + {1,324,28,4,6,1,28,1,6,1,28,3,6,1,33,6,6,1,28,19,1,78,}, + {1,324,28,1,6,1,28,2,33,1,28,2,6,1,28,4,6,1,33,6,6,3,28,6,29,1,28,8,1,78,}, + {1,325,28,1,33,1,6,1,33,1,28,8,6,1,33,8,6,1,28,14,1,78,}, + {1,323,28,4,33,1,28,1,29,1,28,3,29,1,33,1,6,1,28,1,6,1,28,1,33,2,28,1,6,1,33,4,6,1,28,13,1,78,}, + {1,323,28,1,33,1,28,2,33,1,28,3,6,1,33,4,6,1,28,1,6,4,28,1,6,2,33,1,28,6,6,1,28,7,1,79,}, + {1,323,28,1,6,2,29,1,28,4,6,1,33,8,6,3,28,2,29,1,28,6,8,1,28,7,1,79,}, + {1,323,28,2,33,1,29,1,28,8,33,8,6,1,28,8,6,1,28,8,1,78,}, + {1,322,28,3,6,3,28,4,6,1,28,2,29,1,33,2,5,2,33,2,6,1,33,1,6,1,28,17,1,77,}, + {1,322,28,1,6,1,28,1,29,1,6,2,28,1,6,1,28,2,33,2,28,3,6,2,33,3,5,1,33,2,6,1,29,1,28,14,1,78,}, + {1,321,28,3,33,2,6,1,28,1,6,5,33,3,28,4,6,1,33,3,29,4,28,13,1,78,}, + {1,321,28,1,29,1,28,1,6,1,33,1,28,3,6,1,33,2,6,1,33,6,6,1,29,1,28,2,6,1,28,7,6,1,28,9,1,78,}, + {1,320,28,2,6,1,28,1,33,2,28,5,33,10,6,1,29,1,28,8,6,2,28,8,1,78,}, + {1,320,28,3,33,1,6,3,28,6,33,9,7,1,29,1,28,7,6,1,28,8,1,79,}, + {1,320,28,4,33,1,28,2,6,1,29,1,6,1,28,5,33,6,5,2,33,3,7,1,28,13,1,79,}, + {1,320,28,1,6,1,28,1,6,2,28,3,6,1,33,2,6,1,28,4,33,4,6,2,33,2,29,1,33,1,6,1,28,13,1,79,}, + {1,319,28,2,6,1,28,1,33,1,28,4,6,1,33,1,6,1,33,3,6,1,28,8,6,1,28,8,6,1,28,7,1,79,}, + {1,318,28,4,6,1,28,2,33,1,28,3,6,1,33,7,6,1,28,2,29,2,28,8,6,1,28,9,1,79,}, + {1,319,28,1,6,1,28,1,6,1,33,1,28,4,33,1,28,2,33,1,5,1,33,5,6,5,33,1,29,1,28,5,6,1,28,9,1,79,}, + {1,318,28,3,6,2,28,4,33,2,6,1,28,2,29,1,33,2,5,1,33,4,6,3,33,2,29,1,28,4,29,1,28,10,1,78,}, + {1,317,28,1,29,1,28,2,33,1,28,1,6,2,28,3,5,1,33,1,6,2,28,2,33,2,5,2,33,2,6,3,29,1,28,6,6,1,28,10,1,78,}, + {1,316,28,1,29,1,33,1,28,1,33,2,28,2,6,2,28,3,5,2,6,1,28,3,33,4,5,1,33,2,6,1,29,1,28,17,1,78,}, + {1,315,28,3,6,1,33,1,6,1,28,4,33,1,28,4,33,1,5,1,33,2,6,1,29,1,6,3,33,4,7,1,6,1,28,15,1,79,}, + {1,315,28,1,29,1,28,2,6,1,28,2,6,1,28,2,33,1,6,3,28,2,5,1,33,2,5,1,33,2,6,1,28,1,29,1,6,1,33,3,6,1,28,15,1,79,}, + {1,314,28,2,33,1,28,2,6,2,28,1,33,2,28,2,5,1,33,2,6,1,28,2,33,1,5,1,33,1,5,1,33,2,6,1,29,2,33,2,6,2,28,15,1,79,}, + {1,312,28,2,6,1,28,1,6,1,33,2,6,1,28,1,6,3,33,1,28,2,5,1,33,2,6,1,28,1,6,1,33,4,5,1,33,2,6,2,28,18,1,79,}, + {1,311,28,3,33,1,28,2,6,1,33,1,6,1,28,2,33,1,28,1,29,1,28,3,5,2,33,2,28,2,6,1,33,7,6,1,28,6,29,1,28,1,29,1,28,7,1,80,}, + {1,260,28,1,1,8,28,1,1,2,28,9,1,29,28,2,29,1,28,1,6,1,28,1,6,1,33,2,29,1,33,1,28,1,6,1,33,1,28,1,29,1,28,2,6,1,5,2,33,2,29,1,6,2,28,1,33,4,5,1,33,1,7,1,28,4,6,1,28,10,1,80,}, + {1,265,28,23,1,2,28,1,1,17,28,3,7,1,6,1,28,1,6,1,28,1,6,1,29,2,28,1,6,2,28,1,33,2,29,1,28,3,33,6,6,1,28,3,33,3,6,1,29,1,6,2,28,2,6,1,29,1,28,9,1,80,}, + {1,261,28,7,6,1,7,2,28,2,29,1,6,1,28,3,29,1,28,5,6,1,28,23,6,2,28,2,33,2,28,1,6,1,33,1,28,1,29,1,6,1,28,1,33,1,28,2,5,1,6,2,28,3,33,1,5,3,33,3,6,1,28,1,29,1,6,2,28,6,9,1,29,1,28,9,1,80,}, + {1,256,28,9,33,1,28,2,6,2,28,2,29,1,33,1,6,1,28,2,33,1,6,1,28,2,29,1,28,1,29,1,33,1,28,5,29,1,28,12,6,2,28,2,29,1,7,1,28,3,33,1,6,1,28,1,29,1,6,1,28,2,33,1,28,2,33,1,28,1,33,3,6,1,28,3,6,1,33,2,5,1,33,4,28,2,6,4,28,3,9,1,28,9,1,81,}, + {1,252,28,8,6,1,29,1,28,3,6,1,28,3,33,1,28,2,33,2,28,3,33,1,29,1,28,2,33,1,6,3,28,1,6,2,28,1,6,1,33,1,28,4,6,2,33,1,28,5,33,1,29,1,6,3,33,1,28,3,6,1,33,1,28,1,6,2,28,2,33,1,28,2,33,2,28,1,33,3,28,6,33,2,5,2,33,1,6,1,28,3,29,2,28,2,6,1,8,1,6,1,28,8,1,81,}, + {1,250,28,3,6,1,28,2,6,1,28,3,6,1,28,3,6,1,33,1,6,1,28,1,6,1,33,1,28,2,33,2,28,2,6,1,33,1,29,1,28,1,6,1,33,3,28,1,6,1,33,1,29,1,28,1,33,2,28,1,33,1,28,2,33,1,6,1,33,1,6,2,33,1,28,2,33,1,6,2,28,2,33,1,28,2,6,2,33,1,28,1,6,2,28,2,33,2,28,2,33,1,6,1,28,1,33,2,6,1,33,1,29,2,28,2,6,1,33,6,6,1,28,6,6,1,28,9,1,81,}, + {1,247,28,6,6,1,28,2,33,1,28,3,33,1,6,1,28,2,6,1,33,1,28,2,6,1,33,1,6,3,33,1,6,1,28,1,33,2,29,1,6,1,33,1,6,2,33,1,6,1,33,2,6,1,28,1,33,2,6,1,33,1,28,1,6,1,33,3,6,2,5,1,6,1,28,1,33,1,28,1,6,2,29,1,33,1,28,1,29,1,33,1,6,1,33,1,6,1,29,1,28,1,33,1,28,1,6,1,33,2,28,2,33,1,29,1,6,1,33,3,28,1,29,1,6,1,28,2,29,1,28,2,6,2,33,2,7,1,28,15,1,81,}, + {1,243,28,7,6,1,28,2,6,1,28,1,6,2,28,3,33,1,6,1,28,3,33,1,6,1,28,2,6,1,33,2,28,1,6,1,28,2,33,2,28,1,6,1,33,1,6,2,33,1,29,1,33,2,6,1,28,1,33,4,28,1,33,1,5,1,33,2,28,2,33,1,6,1,28,1,33,1,28,1,29,1,28,2,5,1,6,1,28,3,33,1,29,1,28,2,33,1,28,2,33,2,28,3,33,1,6,1,33,1,5,2,33,3,6,1,28,1,29,1,6,2,33,6,28,4,33,1,28,8,1,82,}, + {1,239,28,8,6,1,28,1,33,1,28,2,6,2,28,1,33,1,6,1,28,1,33,3,29,1,28,3,33,1,29,1,28,2,6,1,28,2,6,2,28,1,6,3,28,1,29,1,5,1,6,2,33,1,28,1,7,1,5,1,28,2,33,4,28,1,5,1,33,1,6,2,28,2,33,1,29,1,28,1,33,1,28,1,33,2,28,1,33,2,28,3,33,1,6,2,28,2,6,1,28,2,33,2,6,1,28,2,5,1,6,1,29,1,33,1,5,2,33,2,28,2,6,2,33,3,29,2,28,4,6,1,8,1,28,7,1,83,}, + {1,235,28,1,1,1,28,5,6,1,28,1,6,1,28,4,33,1,28,2,33,1,6,1,28,1,33,1,28,1,29,1,33,1,6,1,33,1,29,1,28,3,6,1,28,3,33,1,28,3,6,1,28,1,29,1,6,1,29,1,28,2,5,1,6,2,33,1,6,1,33,1,7,1,28,1,29,1,5,1,6,1,33,2,6,1,33,2,6,1,33,1,6,2,33,1,6,2,33,1,28,1,33,2,28,2,5,1,6,1,28,2,6,1,33,1,6,1,28,2,33,2,28,1,33,2,28,5,33,1,6,2,33,2,5,1,33,1,6,1,29,1,6,1,29,1,28,1,29,1,6,2,28,4,6,2,28,7,1,83,}, + {1,234,28,7,6,1,33,1,28,1,29,1,28,1,6,1,28,1,6,1,33,1,28,2,33,1,29,1,28,1,33,1,28,1,33,1,28,1,33,1,6,1,28,1,6,1,29,1,6,1,28,1,33,1,28,2,6,1,28,3,6,2,28,1,33,1,6,2,33,2,6,2,33,1,6,1,33,2,29,1,33,2,6,1,33,4,29,1,6,1,33,4,29,1,6,1,33,1,6,1,33,2,28,1,6,1,33,3,28,1,29,1,33,1,29,1,28,3,33,1,6,1,28,1,33,1,6,1,28,3,33,4,28,1,6,1,33,1,5,1,33,2,6,1,28,9,6,1,29,1,28,7,1,83,}, + {1,230,28,11,6,1,28,2,6,1,28,1,6,1,28,1,33,1,6,1,28,2,33,1,28,2,33,1,28,3,33,1,28,2,33,1,29,1,33,1,28,8,6,2,28,1,29,1,28,1,6,1,33,1,6,2,33,4,6,2,33,1,6,2,33,2,6,1,33,1,6,1,28,1,33,1,29,1,33,2,28,1,33,2,6,2,33,1,28,1,33,2,6,1,29,1,6,1,28,1,33,1,6,1,28,3,5,1,33,1,28,2,33,1,28,3,29,1,33,2,29,1,28,1,6,1,33,4,5,1,33,2,6,1,28,14,1,84,}, + {1,228,28,8,6,1,28,1,33,1,28,2,33,1,28,2,33,1,28,3,33,1,6,1,28,2,33,1,28,1,6,2,28,3,6,1,28,2,33,1,6,2,28,5,6,1,28,2,6,4,28,1,6,1,29,1,28,1,6,3,33,1,6,2,33,2,6,1,28,1,6,1,33,1,28,1,33,2,6,1,5,1,33,1,5,1,6,1,28,1,33,2,6,1,28,1,6,1,28,1,33,3,6,2,28,1,33,2,6,1,28,2,33,1,5,1,6,1,28,1,33,1,5,1,33,1,28,3,33,2,6,4,28,1,33,2,5,2,33,2,6,1,28,3,8,1,6,1,29,1,28,8,1,82,}, + {1,226,28,7,6,1,28,4,33,1,28,2,33,1,28,2,33,1,28,1,6,1,33,2,28,2,6,1,33,1,28,1,33,1,29,1,28,2,29,2,28,20,6,4,33,1,6,2,33,3,28,2,33,1,28,1,33,2,28,3,33,1,6,1,28,1,33,2,6,1,28,1,6,1,28,2,5,1,6,2,28,2,33,2,6,1,28,2,6,1,33,1,5,1,28,2,33,1,5,1,33,1,6,1,33,1,6,1,33,1,5,1,6,1,28,1,6,1,33,1,29,1,33,2,28,2,7,1,6,1,28,3,6,1,28,10,1,82,}, + {1,223,28,10,33,1,28,1,33,1,28,1,29,1,33,1,28,2,6,1,28,2,33,1,6,2,28,7,6,1,28,2,6,1,28,2,6,1,28,19,6,4,28,2,6,2,33,2,28,2,33,1,6,1,33,2,29,1,28,2,33,2,28,1,6,1,33,1,28,1,6,1,33,1,6,1,28,1,5,1,33,1,28,3,6,1,33,2,6,1,28,1,6,1,33,1,5,1,33,1,28,2,33,3,5,1,6,2,33,4,29,1,6,1,28,18,1,84,}, + {1,222,28,8,29,1,28,2,33,1,28,1,6,1,28,2,6,1,28,1,33,1,6,1,33,2,28,3,6,1,28,7,6,1,28,23,29,1,28,6,29,1,6,1,33,1,6,1,33,1,6,1,33,1,6,1,33,1,6,2,28,2,33,2,28,1,33,3,28,1,33,2,28,1,33,3,6,1,28,2,33,2,6,1,28,2,6,1,33,1,5,1,29,1,28,1,33,1,5,1,33,1,5,1,33,1,6,2,5,2,33,2,28,2,6,2,28,15,1,84,}, + {1,220,28,7,33,1,28,2,33,1,28,2,6,1,28,3,6,1,33,3,6,1,28,6,29,1,28,5,6,1,28,30,6,1,28,1,6,1,33,2,28,1,6,2,33,1,6,1,33,2,6,2,28,1,33,5,28,1,33,2,28,1,33,1,5,1,6,2,28,2,33,3,29,1,28,2,6,1,5,1,17,1,33,1,28,1,33,2,5,1,33,2,29,1,6,1,33,4,28,16,1,86,}, + {1,217,28,6,6,1,28,3,33,1,28,2,33,1,28,2,6,1,28,2,6,2,33,1,28,40,29,1,28,2,6,1,33,2,29,1,28,3,6,2,33,2,6,2,33,2,28,2,33,1,5,1,6,2,5,1,6,1,28,1,6,1,33,1,28,1,6,1,5,1,6,1,28,1,6,1,28,1,6,1,5,1,33,2,28,3,33,1,5,2,33,1,29,1,6,1,33,2,5,1,33,1,7,1,6,2,33,3,6,1,28,6,29,1,28,7,1,86,}, + {1,215,28,12,6,1,28,2,33,1,6,1,28,1,6,1,28,38,6,1,28,10,29,1,33,2,6,1,28,3,6,2,33,1,6,1,28,1,6,1,33,2,6,1,28,1,33,5,28,1,6,1,5,1,28,1,33,1,5,1,33,2,28,3,5,2,33,1,6,1,28,3,6,1,17,1,5,1,28,2,6,1,33,1,5,2,33,1,6,1,29,1,28,1,33,2,6,1,29,1,28,4,29,1,28,8,1,86,}, + {1,213,28,7,6,1,28,2,33,1,28,1,33,1,28,1,6,1,28,33,6,1,28,22,6,2,33,1,6,1,28,4,33,2,28,2,33,2,28,3,33,4,6,1,28,1,33,1,28,1,6,1,33,2,6,1,33,1,28,2,33,1,5,1,33,1,6,1,28,4,33,1,5,1,33,1,6,3,33,2,5,1,33,2,29,1,6,1,29,1,28,6,29,1,28,8,1,86,}, + {1,212,28,8,6,1,28,2,6,1,28,12,29,1,28,48,6,2,33,2,28,3,29,1,33,1,6,1,28,1,6,1,33,1,6,1,28,2,33,4,28,2,33,1,28,1,6,1,5,1,33,1,6,2,29,1,28,1,33,2,5,1,33,1,28,4,6,1,5,2,33,2,29,1,28,2,6,1,33,2,7,1,29,1,28,15,1,87,}, + {1,209,28,8,6,1,28,67,6,2,33,2,6,2,28,2,6,1,33,1,6,2,33,2,6,2,29,1,28,1,33,1,5,1,6,1,28,1,33,1,28,2,33,3,6,1,28,3,5,2,33,2,28,4,33,1,5,2,33,1,6,1,29,1,28,3,6,4,28,13,1,88,}, + {1,207,28,56,6,2,28,5,6,1,33,1,28,15,6,1,33,4,6,1,29,1,28,1,7,1,33,1,6,1,33,2,6,1,28,2,33,1,5,1,33,1,28,2,33,1,6,1,33,4,28,1,33,3,5,3,6,1,28,3,33,2,5,1,33,1,6,3,33,1,6,2,28,2,6,1,29,1,28,12,1,88,}, + {1,205,28,4,29,1,28,2,6,1,28,49,29,1,28,8,6,1,33,2,6,1,7,1,6,2,28,4,29,1,28,5,6,1,33,3,6,1,28,3,6,2,33,4,28,2,33,1,5,1,6,2,33,1,28,1,29,1,33,1,5,1,33,1,28,1,29,1,28,1,6,1,33,1,5,2,33,2,6,1,28,2,6,1,33,1,5,1,6,1,28,2,6,2,28,17,1,88,}, + {1,204,28,5,29,1,28,2,6,1,28,51,6,1,28,7,6,1,33,2,6,1,33,1,6,1,28,4,6,2,28,5,29,1,6,1,33,2,6,1,28,2,6,1,29,1,6,1,33,4,28,1,33,1,5,1,33,1,29,2,33,1,29,1,28,1,33,1,5,1,33,1,28,3,6,1,5,3,33,3,28,2,33,3,6,1,28,2,29,1,28,15,1,90,}, + {1,201,28,11,6,1,28,31,6,1,28,18,29,1,33,1,28,8,6,2,29,1,6,2,28,8,6,1,28,4,6,1,33,4,28,1,33,2,6,1,33,3,28,2,33,2,6,2,33,2,28,2,33,1,5,1,6,1,28,3,33,1,5,1,33,1,5,1,33,1,6,1,28,2,33,4,6,1,28,17,1,90,}, + {1,200,28,4,6,1,28,1,6,1,28,54,6,1,28,1,6,1,28,12,33,1,6,1,28,9,6,1,28,3,6,1,33,4,28,2,33,4,5,1,33,1,28,1,6,1,33,2,28,1,6,1,5,1,6,1,33,1,5,2,33,1,6,1,28,3,33,1,5,3,33,1,28,3,6,2,33,2,29,1,28,8,29,1,28,7,1,90,}, + {1,197,28,9,33,1,28,35,6,1,28,7,6,2,28,1,6,1,28,7,29,1,33,2,28,9,6,1,33,1,28,1,6,1,33,1,6,2,28,7,6,1,29,1,28,3,29,1,6,1,33,2,6,1,28,1,6,1,33,3,5,2,6,1,28,1,33,1,5,1,28,2,5,1,33,1,28,1,6,1,5,1,33,1,6,2,28,2,6,1,5,1,33,3,29,1,28,3,6,2,28,1,29,2,28,14,1,91,}, + {1,196,28,7,33,1,28,2,6,1,28,29,6,1,28,2,6,1,28,4,6,1,28,6,29,1,28,7,6,2,28,1,33,1,6,2,28,5,6,1,28,1,6,3,28,2,33,4,28,12,6,1,33,2,5,1,7,1,28,2,6,1,33,3,5,1,28,1,6,1,5,1,6,1,28,1,33,1,5,1,28,2,33,1,5,1,33,2,6,1,28,2,6,1,5,1,33,3,6,1,28,2,6,1,7,1,28,16,1,92,}, + {1,195,28,6,6,1,28,1,33,1,28,1,33,1,28,32,29,1,6,2,28,2,29,1,28,6,6,3,28,1,29,1,28,1,29,1,28,2,6,2,29,1,33,1,6,1,28,1,6,1,29,1,28,3,33,1,6,2,28,3,6,2,33,3,7,1,6,1,33,1,28,1,6,1,28,7,29,1,6,1,7,1,33,2,6,1,28,2,33,3,5,1,6,1,28,1,33,1,5,1,6,1,28,1,33,1,5,1,6,2,5,3,33,1,6,1,28,2,6,1,33,1,5,1,33,2,6,2,28,18,1,92,}, + {1,193,28,3,29,1,28,4,29,1,28,1,6,1,28,34,6,2,29,1,28,6,6,1,28,2,33,1,6,2,28,1,6,2,28,2,6,1,28,2,6,2,28,3,6,2,28,3,33,2,28,4,33,1,6,1,33,1,6,1,5,1,29,1,28,6,6,1,29,1,28,3,29,1,6,1,33,2,5,1,7,1,28,2,6,1,33,3,6,1,28,1,5,1,33,1,28,1,6,1,5,1,6,1,28,1,33,1,5,2,33,1,6,1,29,1,6,1,28,2,33,1,29,1,7,1,33,1,7,1,28,18,1,92,}, + {1,192,28,6,6,1,28,37,6,1,28,3,6,1,28,6,29,1,28,1,6,3,28,1,6,1,28,6,33,1,6,2,28,5,6,1,33,1,6,1,28,1,6,1,28,3,6,1,28,2,6,1,33,2,6,1,28,4,6,4,28,5,33,1,7,1,33,1,5,1,33,1,6,1,28,1,6,1,33,1,5,1,33,1,28,1,6,1,5,1,6,1,28,1,5,1,33,1,6,1,33,2,5,2,6,1,28,1,33,1,6,1,28,2,29,2,6,1,29,2,28,16,1,93,}, + {1,190,28,52,6,1,28,5,6,2,33,1,5,1,33,1,6,1,29,1,28,6,6,1,33,1,29,1,28,1,6,1,29,1,6,1,28,2,33,2,29,1,28,3,29,1,6,2,29,1,6,1,33,2,6,1,33,1,6,1,28,5,29,1,28,5,33,5,29,1,28,1,6,1,33,1,5,1,33,1,28,1,6,1,33,1,28,1,6,1,5,2,29,2,5,2,33,2,6,1,33,1,6,1,28,1,6,1,33,1,7,1,28,1,6,1,28,14,1,95,}, + {1,187,28,58,6,1,28,4,33,3,6,1,33,1,6,1,28,1,6,1,28,3,6,2,28,2,29,1,28,2,33,1,28,2,33,2,28,5,6,4,33,4,28,11,6,2,33,3,7,1,28,2,29,1,33,1,5,1,33,1,29,1,33,1,6,1,28,1,33,1,5,1,33,1,28,2,33,1,5,2,33,1,29,1,7,1,28,20,1,95,}, + {1,185,28,6,6,1,28,46,6,1,28,3,6,1,28,5,33,1,6,1,29,1,33,4,6,1,28,6,6,1,28,4,29,1,33,5,29,1,28,1,29,1,6,2,33,2,6,3,33,3,6,2,33,1,6,1,7,1,28,6,6,3,7,1,33,2,7,1,28,2,6,1,5,2,29,2,33,1,29,1,6,1,33,2,6,3,33,3,28,2,29,1,28,19,1,95,}, + {1,183,28,8,6,1,28,44,33,1,28,1,6,1,28,2,6,1,33,1,28,4,6,1,33,1,6,1,28,1,6,1,33,3,6,2,28,2,33,1,6,1,28,1,33,1,28,2,33,1,28,2,6,1,33,3,6,1,33,1,28,1,6,1,33,3,6,6,33,3,6,2,33,1,28,3,6,2,29,1,6,4,33,4,28,2,6,1,5,1,6,1,28,1,33,2,28,1,6,1,33,2,6,1,28,2,33,2,6,1,28,2,6,1,28,6,29,1,28,9,1,97,}, + {1,181,28,51,29,1,28,2,33,1,6,3,29,1,6,2,28,2,6,1,33,1,6,2,28,1,6,1,33,2,6,2,33,2,6,2,28,2,6,1,28,2,6,2,33,1,28,2,29,1,6,1,33,2,6,2,28,2,6,4,29,1,33,1,6,3,7,1,33,3,6,1,33,1,6,1,28,4,6,2,29,1,28,1,6,2,33,2,5,1,33,1,28,2,33,1,5,1,33,2,5,1,28,1,6,1,33,2,6,1,28,1,6,2,33,1,6,2,28,18,1,97,}, + {1,180,28,51,6,1,33,1,28,2,33,1,28,1,33,1,28,2,33,1,28,3,29,1,6,1,7,1,28,2,33,1,7,2,29,1,33,1,6,2,29,1,6,1,28,5,6,4,28,2,6,1,33,3,6,2,28,2,6,1,33,1,28,1,6,2,28,1,6,3,33,4,6,2,33,1,6,3,28,5,6,1,33,4,6,1,28,2,33,5,28,2,33,2,6,1,28,4,6,1,28,8,30,1,28,8,1,98,}, + {1,177,28,34,29,1,28,16,6,2,28,2,6,1,28,1,6,1,29,1,28,1,6,1,28,2,6,2,33,1,28,2,6,1,28,2,33,2,6,1,28,1,33,4,6,3,28,6,33,2,28,2,29,1,28,1,33,3,6,1,28,9,6,3,33,5,6,2,33,1,6,1,28,4,6,1,29,1,6,1,33,1,6,1,33,2,28,2,6,1,33,3,5,1,6,1,28,1,6,1,33,2,28,4,29,1,6,2,28,14,1,99,}, + {1,176,28,56,6,1,28,4,33,1,28,1,6,2,33,1,6,1,33,1,6,2,28,1,33,3,6,2,33,1,6,2,33,3,6,1,28,5,6,1,33,2,28,3,6,1,33,3,6,2,33,1,6,2,33,1,28,2,6,1,28,5,7,1,33,2,5,1,33,1,6,2,28,8,6,2,33,1,5,1,6,1,28,2,29,1,33,2,28,1,6,1,29,1,28,2,33,1,7,1,28,5,29,1,28,4,29,1,28,9,1,99,}, + {1,173,28,52,33,1,28,2,6,3,28,1,29,1,6,1,28,3,33,4,6,2,33,3,6,1,33,12,28,3,29,1,6,2,33,2,28,2,29,1,6,3,33,2,6,4,33,1,6,1,28,2,33,1,29,1,28,4,6,1,33,2,5,1,33,2,28,1,6,1,28,4,29,1,28,3,6,1,33,2,6,1,28,2,6,1,33,1,6,1,7,1,29,1,28,3,6,2,28,8,9,1,29,1,28,8,1,100,}, + {1,171,28,54,6,2,33,1,6,2,28,7,6,1,33,2,6,4,33,2,6,2,33,3,6,1,33,7,6,1,28,5,33,2,6,2,28,2,6,2,33,4,6,1,29,1,6,1,28,3,29,1,6,1,29,1,28,4,6,2,33,3,29,1,28,1,29,1,6,1,28,7,33,2,7,1,28,3,6,1,33,1,6,1,28,5,29,1,28,7,29,1,28,8,1,102,}, + {1,168,28,27,6,1,28,5,6,1,28,19,29,2,28,1,33,1,28,1,6,2,28,1,6,1,28,7,33,2,6,3,29,1,6,6,33,3,6,1,33,2,6,1,33,5,28,2,33,1,28,1,33,2,6,2,28,2,6,2,33,5,28,4,6,3,28,3,33,1,28,3,33,4,6,1,28,10,33,2,6,1,28,3,6,2,28,2,6,1,28,3,6,1,28,16,1,101,}, + {1,165,28,31,6,1,28,4,6,1,28,18,29,1,33,1,28,1,6,2,28,1,6,1,28,2,6,1,28,4,29,1,28,2,6,1,33,2,6,1,28,1,6,1,33,1,6,1,28,1,6,1,33,1,6,2,33,2,6,1,33,2,6,1,33,5,28,2,33,1,28,9,6,1,33,4,6,1,28,2,6,3,28,6,6,1,28,2,33,4,29,1,28,10,33,2,28,4,8,1,28,2,6,2,28,19,1,101,}, + {1,162,28,44,29,1,28,17,6,1,28,1,6,2,33,1,6,1,28,3,6,1,28,2,7,1,33,3,6,1,28,2,6,1,28,1,29,1,28,1,33,2,6,1,28,1,33,10,6,1,28,11,29,1,6,1,33,4,6,1,28,4,6,3,28,3,29,1,33,1,6,1,28,2,33,2,6,1,28,10,29,1,5,1,33,1,28,3,29,2,28,2,6,1,28,18,1,102,}, + {1,161,28,38,6,1,28,5,6,1,33,1,28,17,6,1,28,1,33,2,6,3,28,6,6,1,33,3,28,4,29,1,28,1,33,2,6,1,28,1,29,1,33,2,6,4,33,3,6,1,28,3,6,1,33,1,6,1,29,1,28,6,33,3,6,1,29,1,28,3,29,1,6,1,33,2,28,4,33,2,6,1,29,1,6,1,33,2,6,2,29,1,28,8,7,1,33,1,28,4,6,1,28,13,6,1,28,8,1,101,}, + {1,157,28,42,6,2,28,13,6,1,28,9,6,2,33,1,6,2,33,1,28,7,33,2,6,2,29,1,28,1,6,3,28,1,6,1,33,2,6,3,33,1,6,2,33,6,28,3,6,1,33,1,28,8,6,3,33,1,6,1,28,6,6,1,28,3,6,1,7,1,6,1,33,1,6,1,29,1,28,1,33,2,28,1,29,1,28,9,6,1,33,1,28,7,6,1,28,4,6,1,28,4,6,1,28,8,1,101,}, + {1,155,28,7,6,1,28,37,6,2,28,6,29,1,6,3,28,2,29,1,28,7,6,1,28,2,33,1,6,2,33,2,28,5,6,1,28,1,33,1,6,1,29,1,28,1,6,1,28,2,33,1,6,1,28,1,6,1,7,1,33,2,6,1,28,1,6,1,33,2,6,2,33,4,6,1,28,3,33,1,28,8,6,3,33,2,28,6,6,1,28,3,6,1,7,1,6,2,28,2,33,1,6,1,28,5,6,1,28,7,5,1,28,4,6,1,28,7,7,1,28,13,1,101,}, + {1,154,28,8,33,1,28,34,29,1,28,2,33,1,6,1,28,2,6,1,28,4,6,1,29,1,28,9,6,1,28,2,29,1,6,1,33,1,6,2,33,1,29,1,28,5,6,1,33,3,28,1,33,1,6,1,33,1,6,2,33,2,6,1,33,4,28,1,29,1,33,8,6,2,28,2,33,1,28,8,6,1,33,1,6,1,29,1,33,2,28,5,6,1,28,5,6,1,28,3,33,2,28,2,6,1,28,10,7,1,6,1,28,3,6,1,28,6,33,1,28,14,1,101,}, + {1,150,28,12,29,1,28,14,29,1,33,1,28,21,29,1,33,1,28,2,6,2,28,3,6,1,28,8,6,2,28,4,6,1,33,1,6,1,33,2,28,7,33,2,6,1,33,1,6,1,33,1,6,1,33,1,28,1,33,1,29,1,6,1,33,4,29,1,28,1,33,1,6,2,33,5,6,2,28,4,6,1,28,7,6,1,28,2,6,2,28,6,6,1,28,9,29,1,6,1,33,2,28,11,6,1,28,7,29,1,28,1,29,1,6,1,28,14,1,101,}, + {1,149,28,27,6,1,28,24,33,1,6,1,28,4,6,1,33,1,6,1,28,6,29,1,6,2,28,3,29,1,28,1,29,1,6,4,28,7,6,3,33,3,6,2,33,2,28,2,6,1,33,1,6,1,33,1,6,1,28,1,33,1,29,1,6,1,33,6,6,2,28,3,6,1,28,10,6,1,33,1,28,3,29,1,28,13,6,2,28,22,8,1,28,15,1,101,}, + {1,146,28,29,7,1,28,6,33,1,29,1,33,1,29,1,28,1,6,2,33,2,6,1,28,8,6,1,28,2,33,1,6,1,28,1,6,1,33,1,6,1,28,6,6,2,28,6,29,1,28,4,6,1,28,7,29,1,28,1,6,1,29,1,28,1,6,2,28,1,33,4,28,1,7,1,6,1,33,2,28,1,6,2,33,1,6,2,33,4,6,2,28,4,33,2,28,7,6,2,33,1,6,1,28,4,33,1,28,8,6,1,33,1,28,24,29,1,6,1,28,14,1,102,}, + {1,144,28,30,6,1,28,4,33,1,29,1,33,1,28,6,6,3,33,2,6,2,28,8,33,2,6,1,33,1,6,1,28,8,6,1,28,2,29,1,28,5,29,1,6,3,28,3,6,2,28,5,6,1,28,1,6,1,28,1,33,1,6,1,33,2,6,1,28,1,33,4,28,2,6,1,33,1,6,3,33,4,6,1,28,1,29,1,28,2,33,2,7,1,28,7,6,1,33,2,28,9,6,1,28,29,7,1,29,1,28,14,1,102,}, + {1,141,28,37,6,1,29,1,28,12,6,3,33,1,28,1,6,1,28,4,6,1,33,3,6,1,33,1,28,2,29,1,28,7,6,2,28,1,29,1,28,3,6,1,29,1,6,1,28,4,6,1,28,2,6,1,29,1,28,2,33,1,6,1,28,2,29,1,28,2,33,1,6,1,29,1,33,4,6,1,28,2,6,4,33,5,28,4,29,1,33,1,7,1,6,1,28,7,6,1,5,1,29,2,33,1,28,2,6,2,33,1,28,1,6,2,28,1,29,1,28,3,33,1,28,22,8,1,6,1,28,14,1,102,}, + {1,139,28,1,1,1,28,4,29,1,28,4,33,1,28,2,33,1,28,2,6,1,28,13,6,1,28,4,6,1,28,1,33,1,28,17,33,1,28,1,6,1,28,4,6,1,33,4,6,1,28,5,33,1,6,2,28,3,29,2,6,1,28,4,6,2,33,1,6,1,28,2,29,1,28,2,6,2,33,2,6,1,33,1,6,1,33,1,6,1,28,2,33,2,6,2,33,4,28,2,33,3,6,1,33,5,6,2,28,3,33,3,28,7,6,1,33,2,6,1,33,1,28,1,6,1,5,1,6,1,33,1,29,1,28,4,6,1,28,2,6,2,28,21,7,1,28,15,1,102,}, + {1,138,28,12,33,1,28,7,6,1,28,15,5,1,28,2,29,1,28,15,29,1,28,1,6,3,28,1,6,1,28,3,33,4,28,5,6,1,33,1,6,1,28,1,33,1,28,2,6,1,28,2,29,1,28,1,6,1,33,1,28,2,6,1,33,2,6,3,28,4,6,2,33,4,6,1,28,2,6,1,33,1,7,1,33,4,28,2,33,2,6,2,33,1,6,1,33,3,6,1,29,1,28,3,33,5,28,2,33,1,6,1,28,1,33,3,6,1,28,2,33,3,28,3,29,1,33,1,28,4,33,1,28,3,6,1,28,18,6,1,28,14,1,103,}, + {1,138,28,7,33,1,28,1,6,1,33,1,28,1,33,1,28,16,6,1,28,7,29,1,6,1,28,14,6,1,28,3,33,1,6,2,33,2,28,3,33,1,6,1,33,1,6,1,28,5,6,1,33,1,6,3,28,3,6,2,28,2,6,3,28,1,6,1,33,3,28,3,6,1,28,6,6,3,28,2,6,2,33,5,6,1,29,2,6,1,33,1,6,2,33,4,6,2,28,3,33,3,28,1,6,1,28,2,33,1,28,1,29,1,33,1,6,1,33,2,28,1,6,1,33,1,6,2,28,2,6,2,28,1,29,1,28,1,6,1,28,1,6,2,28,21,6,1,28,13,1,104,}, + {1,135,28,4,6,1,28,1,6,1,28,3,33,1,28,21,6,1,28,7,33,1,28,15,29,1,6,2,28,1,6,3,33,2,6,1,28,2,6,1,33,2,6,2,28,5,33,1,28,1,6,2,28,9,29,1,6,1,33,2,6,1,28,4,6,1,28,11,7,3,33,3,6,1,28,2,6,2,33,9,28,4,33,2,28,1,6,2,28,5,33,3,28,1,6,1,33,1,28,3,6,1,33,1,28,2,6,3,28,1,6,2,28,1,6,2,28,18,6,1,28,14,1,103,}, + {1,134,28,5,33,1,28,1,6,1,28,3,33,1,28,10,6,1,28,6,6,1,28,2,33,1,28,3,33,2,6,1,28,1,33,1,29,1,28,14,6,1,33,2,6,1,28,2,33,3,7,1,33,1,6,1,28,2,33,2,6,2,28,5,6,5,28,8,6,5,28,1,6,2,28,4,6,3,28,3,6,1,28,2,6,2,33,5,28,2,7,1,6,1,33,9,6,1,28,4,6,1,33,2,6,1,28,6,33,2,6,1,33,2,6,2,28,5,6,1,28,1,6,1,29,1,28,4,29,1,28,18,6,1,28,14,1,103,}, + {1,131,28,8,33,1,28,2,6,1,28,13,29,1,28,8,33,2,28,3,33,1,6,1,29,2,6,1,28,15,6,1,33,1,6,2,28,2,33,1,6,1,33,4,28,1,6,1,33,2,6,2,28,4,6,2,28,3,6,1,33,1,6,7,33,3,6,1,28,3,6,1,28,5,6,1,33,1,6,1,28,2,6,1,28,2,33,1,6,1,33,5,6,1,28,1,6,1,33,2,6,2,33,2,6,1,33,5,28,4,33,1,29,1,28,1,29,1,28,4,6,2,33,2,28,1,6,5,29,1,6,1,33,2,6,1,28,3,6,2,33,2,6,1,33,1,28,16,6,1,28,14,1,103,}, + {1,129,28,1,1,1,28,8,33,1,28,6,29,1,28,2,29,1,28,5,33,1,28,3,6,1,28,2,6,1,28,2,33,1,28,2,6,1,33,1,28,20,33,2,6,1,28,3,33,1,6,2,33,4,6,2,7,1,33,1,6,1,28,4,29,1,33,1,28,4,33,1,6,3,33,1,6,8,28,2,6,3,33,1,28,4,33,1,28,2,33,1,6,2,33,7,28,2,6,2,7,1,6,2,33,2,6,1,33,5,28,7,29,1,6,1,28,3,33,1,6,1,28,4,33,2,6,1,28,1,6,3,28,4,29,1,6,2,28,1,29,1,28,1,6,3,28,28,1,104,}, + {1,128,28,9,6,1,28,1,33,1,28,5,6,1,28,9,33,1,28,2,6,1,33,1,28,4,33,1,6,1,28,2,33,2,28,20,6,3,28,5,6,1,33,4,7,1,29,1,6,1,33,1,29,1,28,4,29,1,6,1,28,4,6,3,33,2,6,1,28,3,6,4,28,10,33,1,6,2,7,1,29,2,6,1,7,1,33,5,28,2,6,1,28,1,29,1,33,5,7,1,33,4,28,3,7,1,28,2,6,1,28,3,6,1,28,1,33,2,28,2,6,3,33,1,6,4,7,1,29,1,28,3,29,1,6,2,28,34,1,104,}, + {1,126,28,1,1,1,28,9,6,1,28,1,6,1,28,1,6,1,28,3,6,1,28,8,6,1,28,3,33,1,28,2,33,1,28,2,33,1,28,2,6,1,33,1,28,20,33,1,6,1,33,2,28,4,33,1,6,1,33,5,6,1,29,1,33,1,6,1,28,4,33,1,6,1,28,5,6,3,29,1,28,5,6,3,28,1,6,1,28,1,29,1,28,4,6,5,33,1,6,4,7,1,33,1,7,1,33,2,28,2,33,1,28,2,33,10,6,1,28,5,6,1,29,1,7,1,28,1,6,2,33,1,6,2,28,2,33,1,28,1,29,1,33,1,5,1,33,1,28,4,29,1,28,1,6,3,29,1,28,2,6,1,33,2,28,28,1,104,}, + {1,125,28,6,6,1,28,12,29,1,28,2,6,1,28,6,33,1,28,3,33,1,28,1,6,1,28,2,33,2,28,2,33,1,6,1,28,20,6,2,33,1,6,2,28,4,29,1,33,1,7,1,33,4,29,1,33,1,7,1,6,1,28,3,6,2,28,11,6,2,28,1,33,1,29,2,33,2,28,1,33,1,29,1,28,1,29,1,28,3,6,3,33,2,7,1,6,1,7,1,33,5,28,2,33,1,6,2,33,4,6,2,33,5,28,7,6,4,28,4,6,1,28,2,29,1,33,1,6,1,28,2,6,4,29,1,6,7,33,2,28,27,1,105,}, + {1,123,28,9,29,1,28,5,6,1,28,5,33,1,28,2,33,1,28,2,29,1,28,2,6,1,33,1,28,2,6,1,5,1,28,1,29,1,28,2,33,1,28,3,33,1,29,1,28,16,29,1,28,4,6,1,33,1,6,2,28,4,6,1,33,1,6,1,33,4,6,1,29,1,6,2,28,4,33,1,28,12,6,2,33,1,6,5,28,4,29,1,28,1,6,1,28,1,6,1,29,1,6,1,28,1,33,8,28,3,29,1,7,1,33,1,7,1,33,2,6,1,7,1,33,5,6,1,28,4,6,1,28,2,33,2,28,3,6,1,7,1,6,1,28,2,6,4,29,1,6,1,33,1,7,1,6,1,7,1,33,3,6,2,29,1,6,2,28,28,1,105,}, + {1,121,28,17,33,1,28,4,6,1,33,1,28,5,6,1,28,2,33,1,6,1,28,2,33,2,6,1,28,3,33,1,28,3,33,1,28,17,33,1,28,4,6,1,33,1,6,1,33,1,28,4,29,1,33,1,28,1,7,1,33,4,6,2,28,1,6,1,28,2,29,1,33,1,28,9,6,1,28,1,6,2,28,1,6,3,33,1,28,6,6,1,28,1,29,1,33,1,6,3,33,1,6,1,33,7,28,3,6,1,33,5,7,1,6,1,33,6,28,3,6,1,33,1,28,2,33,1,6,1,28,2,6,1,33,1,6,1,28,2,6,1,29,2,6,1,33,1,6,1,28,2,29,1,6,2,33,2,29,1,28,4,6,1,29,1,28,26,1,106,}, + {1,120,28,18,6,1,28,1,6,1,28,2,33,1,6,1,28,4,6,1,28,3,5,1,28,3,33,2,6,1,28,2,33,2,28,2,33,2,28,17,29,1,28,4,33,3,28,5,6,1,29,1,6,1,33,5,7,1,6,1,28,4,33,1,6,1,28,11,6,2,28,1,6,5,28,6,33,1,6,2,33,1,6,4,28,1,33,1,6,1,33,4,28,3,6,2,33,4,29,1,6,1,33,6,6,1,28,2,6,2,28,2,33,1,28,3,6,5,33,1,28,1,6,1,7,1,6,2,33,1,6,2,29,1,6,1,33,2,6,4,28,2,29,1,28,25,1,107,}, + {1,119,28,18,33,1,28,2,33,1,28,2,6,1,28,2,33,1,28,2,33,1,28,2,6,1,5,1,28,3,33,3,28,2,5,1,6,1,28,2,5,1,7,1,28,16,6,2,28,4,6,1,33,1,6,2,28,2,6,1,28,1,6,2,28,1,6,1,33,6,28,4,33,1,7,1,28,3,29,1,6,1,28,7,7,2,6,5,29,1,28,2,6,1,28,2,29,1,6,1,28,1,7,1,6,3,33,1,6,1,33,3,6,1,7,1,33,1,28,2,6,4,33,3,6,2,33,5,6,1,28,3,6,1,28,1,6,2,33,1,6,1,28,2,6,1,29,2,6,3,28,2,29,1,33,3,28,1,6,5,7,1,33,1,6,2,28,1,6,2,29,1,28,24,1,107,}, + {1,117,28,20,33,1,28,2,33,1,28,2,6,1,28,2,33,1,28,2,33,1,28,2,33,2,28,3,6,1,33,2,28,2,5,1,6,1,28,2,33,1,6,1,28,16,6,1,28,3,6,1,28,1,33,1,6,1,33,1,6,1,28,2,6,1,28,1,6,1,33,1,28,2,33,6,28,4,6,1,33,1,29,1,28,3,33,1,28,4,6,1,28,1,6,1,33,1,6,1,28,1,6,1,33,2,7,1,6,1,28,1,6,1,28,2,6,1,28,2,29,1,6,5,7,1,6,1,7,2,6,1,33,2,28,2,29,1,6,2,7,1,33,3,6,1,7,1,33,6,6,1,28,2,6,2,33,1,6,1,28,2,6,1,28,2,6,3,28,1,6,2,28,2,33,3,6,1,33,1,6,1,7,1,6,1,33,3,6,1,29,1,6,1,7,1,6,1,28,25,1,107,}, + {1,116,28,7,6,1,28,13,33,1,28,2,6,1,28,2,6,1,28,1,33,1,28,2,33,2,28,2,5,1,33,1,28,2,6,1,33,3,28,2,33,1,28,3,33,1,28,15,6,1,28,7,33,3,28,6,6,2,29,1,7,1,6,1,7,1,33,3,6,1,28,4,33,1,6,2,28,7,29,1,28,2,6,1,28,2,6,2,33,2,7,1,28,1,6,1,28,6,6,5,7,1,6,4,33,1,6,1,28,1,29,1,28,1,6,1,33,5,6,1,7,1,33,7,6,2,33,2,6,2,28,2,6,1,28,2,6,1,33,3,6,1,28,1,6,1,33,4,6,2,28,1,29,1,7,1,33,3,6,1,28,2,6,1,28,25,1,108,}, + {1,114,28,19,29,1,28,2,6,2,28,2,6,1,28,2,6,1,28,1,33,1,28,2,5,1,29,1,28,2,33,2,28,2,6,1,33,2,6,1,28,1,29,1,5,1,28,2,33,2,28,15,33,1,28,6,6,3,33,1,6,1,28,2,6,1,28,2,33,2,6,4,33,4,29,1,28,3,6,1,7,1,33,1,28,7,29,1,28,4,6,1,29,1,28,1,33,1,6,1,28,3,6,1,28,2,6,1,33,1,28,1,6,1,28,1,29,1,28,1,33,1,7,1,33,2,7,1,33,2,29,1,28,3,33,7,6,1,33,7,29,1,28,1,6,3,29,2,28,2,29,1,28,2,29,1,6,2,29,1,6,1,33,5,7,1,6,1,29,1,6,1,33,2,6,4,28,1,29,1,28,25,1,108,}, + {1,113,28,15,6,1,28,7,33,1,6,1,28,1,6,2,28,2,6,1,28,1,33,1,28,2,33,1,28,3,5,1,33,1,28,2,33,2,5,1,33,1,28,1,6,1,5,1,28,2,33,2,28,15,33,1,28,6,29,1,6,1,33,2,29,1,28,2,29,1,28,2,6,1,33,1,6,1,33,2,6,1,33,5,6,1,28,2,6,1,33,1,6,1,28,3,6,2,28,1,29,1,6,1,28,4,6,1,33,1,28,2,6,1,7,1,33,1,28,4,6,4,29,2,6,1,28,2,33,4,7,1,29,1,28,2,29,1,7,1,33,3,7,1,33,2,6,1,7,1,33,4,6,1,29,2,28,1,6,3,28,3,33,1,6,1,28,2,6,3,33,8,6,5,33,2,6,2,28,27,1,108,}, + {1,112,28,5,6,1,28,7,6,1,28,1,6,1,28,2,6,1,28,5,33,1,28,2,33,1,6,1,28,2,33,1,6,1,33,1,28,2,33,1,28,3,5,1,33,1,28,2,29,1,33,1,5,1,33,1,28,1,6,1,33,1,6,1,28,1,5,1,33,1,28,14,6,2,28,7,6,1,33,4,6,1,28,3,6,1,7,1,33,1,6,1,33,2,7,1,33,1,7,1,33,2,7,1,28,3,33,1,6,2,28,5,6,1,33,1,6,1,28,3,6,1,33,1,28,2,7,1,29,1,6,1,29,1,28,7,6,1,28,3,6,1,33,4,6,1,28,3,29,1,6,2,33,1,7,1,33,2,6,1,33,2,7,1,33,2,6,2,33,4,6,2,28,3,6,1,33,2,6,1,33,2,6,1,33,1,6,1,33,2,6,3,7,1,6,2,7,2,33,2,7,1,6,2,28,27,1,108,}, + {1,109,28,18,6,1,28,2,6,1,28,4,6,1,33,1,28,2,33,1,6,1,28,2,33,3,28,2,33,1,28,3,5,1,33,1,28,2,6,1,33,1,5,1,33,1,28,1,6,1,33,2,29,1,33,1,6,1,28,14,33,2,28,7,6,2,33,1,7,1,6,1,29,1,28,4,6,1,7,1,6,1,7,1,33,6,6,1,28,3,33,2,6,1,28,7,33,1,29,1,28,9,6,2,28,4,6,1,28,3,6,1,28,1,6,2,7,1,33,2,29,1,28,2,29,2,6,1,33,5,29,1,7,1,33,4,29,1,28,1,6,2,33,3,6,5,33,5,6,1,33,1,6,1,33,2,7,1,33,2,6,1,28,2,6,2,33,1,6,6,28,25,1,108,}, + {1,109,28,4,33,1,28,10,6,1,28,1,6,1,28,3,33,1,28,4,33,2,28,2,33,1,6,1,28,2,33,3,28,2,5,1,28,3,5,1,33,1,28,2,33,1,5,1,33,2,6,2,33,2,6,1,33,1,28,6,29,1,28,8,6,2,28,6,29,1,6,1,33,2,6,3,28,4,29,1,6,1,28,3,6,1,33,4,6,1,28,4,33,1,6,2,28,2,6,2,28,2,6,1,33,1,7,1,33,1,28,5,6,1,28,1,33,1,28,2,6,1,28,1,6,2,28,1,6,1,28,3,29,1,28,1,6,1,33,2,6,1,28,3,7,2,33,4,7,3,33,4,28,3,6,1,33,3,6,1,7,1,33,1,6,2,33,1,6,2,33,7,7,1,33,2,6,1,28,1,29,1,7,1,33,1,7,1,6,2,29,1,28,1,6,2,28,25,1,108,}, + {1,107,28,3,6,1,28,2,6,1,28,12,33,1,28,3,33,1,28,1,6,1,28,2,6,1,33,1,28,2,5,1,6,1,28,2,33,3,28,1,6,1,33,1,29,1,28,2,5,2,28,2,33,3,5,1,29,1,28,1,33,2,6,2,28,6,6,1,28,12,29,1,28,2,6,1,29,1,6,1,33,3,6,2,28,4,6,5,33,6,28,4,6,2,33,1,6,4,28,3,6,1,29,1,28,3,6,1,28,4,6,2,28,4,6,1,28,1,6,1,28,3,33,6,28,2,6,3,33,1,7,1,33,2,6,2,33,2,7,1,33,1,6,1,29,2,28,1,33,8,6,1,33,1,6,2,33,8,7,2,33,2,6,1,33,2,7,1,6,3,29,1,6,3,28,24,1,108,}, + {1,106,28,4,6,1,28,15,33,1,28,2,6,2,28,1,33,1,28,2,6,1,33,1,28,2,5,1,6,1,28,2,33,1,29,1,33,1,28,1,33,1,5,1,6,1,28,2,6,1,5,1,28,2,33,3,5,1,6,1,28,1,33,2,6,2,28,5,6,2,28,9,6,1,28,7,33,5,6,1,28,8,6,1,33,6,7,1,6,1,28,3,33,3,6,1,29,1,6,1,28,2,6,1,28,2,6,1,29,1,6,2,29,1,28,9,33,1,29,1,28,1,29,2,6,1,33,3,7,1,6,2,29,1,28,1,6,2,7,3,33,1,7,1,29,2,33,2,7,2,29,2,6,1,28,1,6,1,7,1,33,15,6,2,33,1,6,1,33,2,7,4,6,6,29,1,28,25,1,108,}, + {1,104,28,10,6,1,28,11,33,1,28,3,33,1,28,1,33,1,28,2,33,2,28,2,5,1,33,1,28,3,33,2,28,1,33,1,5,1,29,1,28,2,29,1,5,1,29,1,28,1,6,1,33,2,5,1,33,1,6,1,33,2,6,2,28,5,6,1,28,16,6,2,33,2,6,1,33,2,7,1,6,1,28,3,7,1,28,3,7,1,33,7,29,2,28,2,33,4,6,3,29,1,28,5,33,1,29,1,28,11,6,1,33,1,28,2,6,2,33,3,6,1,28,1,29,2,6,1,33,2,6,2,33,2,6,2,33,4,6,1,29,1,28,2,6,1,29,1,7,1,33,4,6,1,33,1,6,1,33,7,29,2,6,2,33,2,6,1,33,1,7,1,6,4,29,1,28,1,29,1,6,1,28,25,1,108,}, + {1,102,28,21,29,1,28,2,33,1,28,3,33,1,28,1,6,1,28,1,6,1,33,2,28,2,33,2,28,3,5,1,33,1,28,2,5,1,6,1,28,3,5,1,33,1,28,1,6,1,33,2,5,1,33,1,6,1,33,3,6,1,28,22,33,1,6,2,7,1,33,3,7,1,33,1,6,1,28,1,7,2,28,3,33,6,8,1,33,1,28,2,6,1,28,2,33,3,7,1,6,2,29,1,28,5,6,1,29,1,6,1,28,3,6,1,28,7,6,1,28,3,33,3,7,1,6,1,28,1,6,2,7,1,33,1,6,1,7,1,6,1,33,1,7,1,28,1,6,1,33,3,6,3,28,2,7,1,6,1,33,5,6,1,33,1,28,1,6,1,33,6,7,1,6,1,33,5,7,1,6,3,33,1,6,1,29,1,28,2,29,1,28,25,1,108,}, + {1,101,28,22,6,1,28,1,6,2,28,1,29,1,6,1,33,1,28,1,33,1,28,2,33,2,28,2,33,2,28,3,33,2,28,2,5,1,33,1,28,2,29,1,5,1,33,1,28,2,33,2,5,1,33,1,28,1,6,1,33,2,6,1,28,18,29,1,28,3,6,1,28,1,7,1,33,5,6,1,28,2,29,1,33,1,28,3,6,1,7,1,33,2,8,1,9,2,33,1,6,1,28,1,33,1,28,2,6,2,33,2,6,4,28,1,6,2,28,3,6,2,29,1,28,5,6,1,28,4,6,1,28,2,33,1,6,4,29,1,33,1,7,2,33,1,6,1,33,3,7,1,28,1,29,1,33,1,7,1,33,1,28,2,6,1,28,2,6,1,33,1,6,1,29,1,33,2,6,1,33,2,28,2,33,6,6,3,33,1,6,2,33,1,7,2,33,3,6,1,29,1,28,28,1,108,}, + {1,100,28,4,6,1,28,8,29,1,28,9,33,1,28,1,33,1,6,1,28,1,6,2,33,1,28,1,6,2,28,1,6,1,33,2,28,2,5,1,6,1,28,2,33,2,28,2,33,2,28,3,33,1,5,1,6,1,29,1,33,1,5,1,33,1,5,1,6,1,28,1,33,3,6,1,28,3,33,1,28,9,6,1,28,1,6,1,29,1,28,3,6,1,28,2,6,1,7,2,33,4,6,1,28,2,6,1,29,1,28,2,7,2,6,1,33,1,10,2,8,2,7,1,28,2,29,1,28,2,6,2,33,2,6,7,29,1,6,1,28,2,6,1,29,1,28,1,29,1,28,7,33,1,29,1,28,1,29,1,28,4,6,1,7,1,33,1,7,1,33,1,6,1,33,3,6,1,28,1,7,1,33,3,29,1,28,1,6,1,28,1,29,1,28,1,33,6,6,1,28,2,6,1,33,2,28,1,6,1,28,1,6,1,33,1,28,2,6,1,33,1,7,2,6,1,33,4,6,1,28,29,1,108,}, + {1,98,28,15,29,1,28,7,6,1,28,1,33,1,28,1,6,2,28,1,6,2,33,1,29,1,28,1,33,1,28,2,33,2,28,2,5,1,33,1,28,3,33,1,29,1,28,1,33,1,5,1,28,3,33,1,5,1,33,1,6,2,33,2,5,1,33,1,28,1,33,2,5,1,28,4,6,1,28,9,6,2,28,1,6,1,28,1,29,1,28,1,6,1,28,3,6,1,7,1,33,1,6,1,28,8,33,2,6,1,29,1,6,1,8,1,9,3,33,1,6,3,28,3,33,1,7,1,6,1,7,1,33,1,6,4,28,2,6,2,29,1,6,1,28,1,29,1,6,2,28,5,29,1,33,1,6,2,33,1,28,2,29,1,6,3,7,1,33,2,6,1,33,3,6,1,28,1,7,4,29,1,6,1,28,3,33,7,6,1,28,2,33,1,28,4,6,1,28,1,6,1,28,2,6,1,33,1,6,1,33,5,6,3,28,28,1,108,}, + {1,97,28,16,6,1,28,2,6,2,28,2,29,1,6,1,28,1,33,1,28,1,6,1,33,1,28,1,33,4,28,1,33,1,28,2,33,2,28,2,5,1,33,1,29,1,28,2,33,1,6,1,28,1,33,1,5,1,29,1,28,2,33,1,5,2,6,1,28,1,33,1,5,1,33,1,5,1,6,2,33,1,5,1,6,1,28,9,6,1,28,5,29,1,6,1,29,1,28,1,6,1,33,1,28,2,6,1,33,4,29,1,28,3,6,1,28,3,6,1,7,2,6,2,8,1,10,2,8,1,33,1,7,3,6,1,28,2,29,1,33,2,7,1,33,1,6,9,29,1,28,2,6,2,28,2,6,1,28,2,6,1,33,1,6,2,28,1,6,7,7,2,6,1,33,2,7,1,6,2,33,3,6,1,28,4,6,1,33,1,7,1,33,5,6,1,28,5,6,4,28,2,6,2,7,1,33,1,7,1,33,4,6,1,33,1,6,1,28,28,1,108,}, + {1,96,28,14,6,1,28,2,6,1,28,2,6,2,28,2,6,1,28,2,33,1,28,1,6,1,33,1,28,2,33,3,28,1,6,1,33,1,28,1,33,1,5,1,6,1,28,1,6,1,33,2,28,2,33,2,28,1,33,1,5,1,33,1,28,2,6,1,5,2,6,1,28,1,6,1,5,1,33,1,5,1,33,1,6,1,33,2,6,1,28,3,6,2,28,13,29,1,6,3,28,2,33,5,6,2,28,5,29,1,7,1,33,2,8,2,9,1,10,1,8,1,33,1,7,1,6,2,29,1,28,3,6,1,5,1,33,1,7,1,33,2,6,7,28,10,6,3,28,5,29,1,33,1,6,2,7,1,6,2,7,1,33,1,6,2,7,1,33,1,7,1,33,1,6,1,28,1,6,1,28,2,6,3,33,4,6,1,28,9,6,1,29,1,28,2,6,1,7,1,6,1,33,2,7,1,33,2,6,2,28,29,1,108,}, + {1,94,28,15,6,1,28,3,6,1,28,2,6,2,28,2,6,2,28,1,33,1,29,1,28,1,33,1,28,2,6,1,33,2,6,2,5,1,28,2,5,1,33,1,28,2,5,2,29,1,28,1,6,1,5,1,6,2,33,2,28,2,6,1,5,2,33,1,6,2,33,1,5,3,33,1,6,1,33,1,6,1,28,4,6,1,28,7,6,1,28,5,29,1,6,3,28,2,6,1,33,3,6,1,28,6,29,2,33,1,7,1,8,1,33,1,8,1,9,2,8,1,33,2,6,1,29,2,28,4,33,3,7,1,33,1,6,9,28,9,6,1,33,1,6,1,28,5,33,1,6,2,7,1,6,2,7,1,33,2,6,1,33,4,6,1,28,4,6,2,7,1,33,3,6,1,28,1,29,1,28,3,6,1,28,1,29,1,28,1,33,1,7,1,6,1,28,2,7,3,33,1,7,2,6,3,29,1,28,1,29,1,28,27,1,108,}, + {1,93,28,16,6,1,28,3,6,1,28,2,6,2,28,2,6,1,33,1,28,1,33,1,6,1,28,1,33,1,6,1,28,2,33,3,28,1,33,1,6,1,28,1,33,1,5,1,6,1,28,1,6,1,5,1,33,1,6,1,29,1,33,2,28,1,33,1,5,1,33,1,29,1,6,1,33,1,5,2,33,1,6,1,33,4,5,1,33,2,29,1,28,4,6,1,28,11,29,1,6,1,28,1,6,2,28,1,29,1,6,1,28,1,33,3,6,1,28,6,6,1,29,1,6,3,33,1,8,2,33,1,7,1,33,2,7,1,6,2,28,5,7,1,33,3,7,1,33,2,6,3,33,1,6,1,33,1,6,1,28,8,6,3,28,5,6,4,7,1,6,2,33,5,7,1,33,1,6,1,28,4,6,1,33,5,6,1,28,1,6,1,28,2,6,2,33,2,6,1,7,1,6,1,28,1,29,1,6,1,29,1,6,1,33,1,6,2,33,2,6,4,28,28,1,108,}, + {1,91,28,18,33,1,28,3,33,1,28,2,6,1,33,1,28,2,6,1,33,1,28,1,6,1,33,1,28,1,6,1,33,1,6,1,28,1,6,1,33,2,28,1,6,1,5,1,28,2,33,1,5,1,28,2,33,1,5,1,6,1,28,1,33,4,5,1,33,1,6,1,28,1,6,1,33,1,5,2,6,1,28,1,33,3,5,1,7,1,33,1,28,4,6,2,29,1,28,12,6,4,33,1,7,1,6,2,33,2,6,2,29,1,28,3,6,3,28,2,6,1,8,3,10,1,6,1,7,1,33,3,7,1,6,1,29,1,28,1,29,1,28,2,6,1,33,5,6,3,7,1,6,1,33,2,29,1,28,15,6,4,7,1,6,2,33,5,7,1,33,1,28,1,6,1,28,2,7,1,33,5,6,1,28,1,29,1,6,1,28,1,6,2,29,1,6,1,28,1,6,1,28,1,6,4,7,1,33,2,7,1,6,1,33,2,6,3,29,1,28,28,1,108,}, + {1,91,28,15,6,1,28,2,33,1,28,3,33,1,28,2,6,1,33,1,28,3,33,1,6,1,28,1,5,1,29,1,28,1,33,2,28,2,33,2,6,1,29,1,33,2,28,1,33,1,5,1,6,1,28,1,33,1,5,1,33,1,6,2,33,3,5,2,33,1,28,1,29,1,33,2,5,2,6,1,33,3,5,1,29,1,33,1,6,1,28,3,29,1,6,1,28,12,6,2,33,1,6,1,28,1,33,8,6,1,28,2,33,1,7,1,6,2,28,2,6,2,33,1,9,2,8,1,33,6,6,1,28,6,6,1,33,3,6,3,33,3,6,2,28,5,6,2,28,4,6,1,29,1,6,5,7,5,6,3,8,2,33,1,29,2,28,2,33,1,7,1,6,1,7,1,33,1,6,2,28,3,6,2,33,1,28,3,6,3,28,3,6,1,33,2,7,1,6,1,33,2,6,3,29,1,28,28,1,108,}, + {1,88,28,18,6,1,28,2,33,1,28,2,6,1,33,1,6,1,28,1,29,1,33,1,6,1,28,2,33,2,28,1,33,2,28,1,33,2,6,1,28,2,5,1,33,1,28,2,33,1,6,1,28,1,33,2,6,1,28,1,33,1,5,1,28,2,5,1,33,5,6,1,28,1,33,1,5,3,33,1,28,1,6,1,33,1,5,1,6,1,33,1,5,1,28,3,29,1,33,1,6,1,28,9,6,1,28,4,6,2,29,1,33,5,29,3,28,2,6,4,28,2,6,2,33,1,9,2,33,6,7,1,6,4,29,1,28,4,6,1,33,2,6,1,28,1,29,1,33,3,6,1,28,5,29,1,6,1,28,5,29,1,28,2,6,1,7,2,6,1,33,1,6,4,28,1,29,1,33,1,8,1,7,1,6,1,7,1,28,2,33,5,6,1,33,1,28,2,29,1,33,1,6,5,7,1,29,1,6,1,28,2,6,2,33,2,7,1,33,2,6,1,33,1,6,1,29,1,28,1,29,1,28,9,29,1,28,17,1,108,}, + {1,88,28,18,33,1,29,1,28,1,33,1,28,3,33,1,6,1,28,2,33,2,28,2,29,1,5,1,29,1,28,1,33,1,28,1,6,1,33,2,28,2,33,1,5,1,33,1,28,1,33,1,5,1,6,1,33,1,5,1,33,1,28,1,6,1,33,2,29,1,33,1,5,1,33,1,6,1,33,3,6,2,33,2,5,2,33,1,6,2,33,3,5,1,6,1,28,2,6,3,28,7,6,1,33,1,6,2,33,1,6,3,29,1,28,2,6,1,33,2,6,2,28,4,6,2,28,4,6,1,8,1,33,1,9,3,33,7,6,1,7,1,6,1,29,1,28,6,6,1,7,1,28,3,33,1,6,2,33,1,28,1,6,3,7,1,33,1,6,3,28,2,29,4,6,2,7,1,33,1,29,1,28,1,29,1,28,2,6,1,7,2,33,1,28,4,6,1,33,1,6,1,33,1,6,2,28,4,6,1,29,1,6,3,29,1,6,1,29,1,28,2,29,1,6,1,7,1,33,1,6,1,7,1,33,2,7,1,6,1,28,1,29,1,28,1,6,1,28,8,6,2,28,6,29,1,28,10,1,108,}, + {1,86,28,15,29,1,28,2,29,1,28,2,6,1,28,1,6,1,28,2,29,1,33,2,28,2,29,1,5,1,6,1,28,2,33,2,28,1,33,2,28,1,33,1,5,1,33,1,29,1,33,1,5,1,33,1,6,1,29,1,5,1,33,1,6,1,33,3,28,1,33,1,5,1,33,1,6,1,33,1,5,1,33,3,5,1,33,1,6,1,29,1,33,3,5,1,33,1,6,3,33,1,5,1,33,1,28,2,6,3,28,9,6,2,33,1,28,2,6,1,28,4,33,2,6,2,28,1,33,1,29,1,28,1,6,1,28,2,29,1,28,1,6,1,7,1,6,1,7,2,8,1,9,1,33,1,16,2,33,4,6,7,28,4,29,1,28,5,33,2,6,1,28,1,6,13,33,3,28,5,6,1,8,2,7,1,33,1,29,1,28,4,33,1,6,2,33,1,29,1,28,4,6,1,28,3,6,5,29,1,6,2,7,1,33,1,7,1,33,3,7,1,28,2,29,1,28,1,6,1,28,7,6,2,28,17,1,109,}, + {1,84,28,15,29,1,28,4,6,1,28,2,6,1,28,1,6,1,33,1,28,1,6,1,28,1,5,1,6,1,28,2,33,2,28,2,6,1,5,1,6,1,29,1,33,1,6,2,33,2,6,1,33,4,6,1,33,3,6,1,33,1,5,1,6,3,33,4,5,1,33,1,6,1,33,1,5,1,33,1,6,2,33,3,5,1,33,1,6,1,29,1,6,1,33,2,28,4,6,1,28,8,6,1,33,2,6,7,33,1,6,1,33,3,28,1,6,1,29,1,28,1,6,1,29,1,28,2,29,1,7,1,6,2,7,1,8,3,33,1,16,1,5,1,33,2,16,1,5,1,33,2,7,1,6,5,28,3,29,1,28,5,6,2,29,1,6,3,29,1,6,9,33,1,6,1,29,2,28,4,6,1,7,1,8,1,33,3,6,1,28,3,6,1,33,1,6,3,28,2,6,1,28,1,6,2,28,2,6,1,7,1,6,4,28,1,6,1,7,2,33,2,6,1,33,3,6,1,28,2,6,2,28,3,6,1,29,1,28,1,6,2,28,18,1,109,}, + {1,83,28,14,29,1,28,1,33,1,28,2,33,1,28,4,33,1,28,1,6,1,5,1,28,1,33,1,28,1,33,2,28,2,33,2,29,1,28,1,29,1,5,1,33,1,28,1,33,1,5,1,6,1,33,3,6,2,5,1,33,1,7,1,6,1,33,3,6,1,33,3,29,1,33,3,6,1,33,2,6,2,33,3,6,2,7,1,33,5,7,2,33,1,28,4,33,1,28,7,6,2,33,1,6,1,29,1,33,1,6,6,33,4,29,1,28,3,29,1,7,1,28,2,29,1,7,1,6,1,33,1,8,3,7,2,33,2,7,1,29,1,33,1,5,1,33,3,7,2,6,3,29,1,28,2,6,5,29,1,28,3,6,11,33,3,6,1,28,2,29,1,28,2,29,1,7,1,33,3,16,1,33,1,6,1,28,3,33,4,6,1,28,1,29,2,28,4,29,1,6,1,7,1,6,3,28,2,6,1,7,1,6,1,33,3,28,1,29,1,6,2,28,2,6,2,28,2,6,1,8,1,6,3,28,18,1,110,}, + {1,81,28,18,33,1,28,2,33,1,28,1,6,2,28,1,33,1,6,1,28,1,33,1,29,1,6,1,33,1,28,1,33,2,28,1,29,1,33,2,28,2,6,1,5,1,6,1,28,1,33,5,7,1,29,1,6,1,33,3,6,2,33,3,7,1,33,2,6,2,33,1,6,3,33,4,5,1,33,1,7,1,33,1,7,1,33,2,6,2,28,7,33,1,28,8,6,1,28,1,33,13,6,1,28,5,6,1,28,1,29,1,6,1,7,4,8,1,7,2,33,2,6,1,29,1,33,1,5,3,33,5,7,1,6,4,29,2,6,1,28,1,6,2,28,1,6,8,33,6,5,1,6,1,28,4,29,1,33,3,16,1,33,1,5,1,33,1,6,1,28,3,33,2,6,4,29,1,28,5,6,5,28,1,29,1,6,1,7,2,6,1,28,1,29,1,33,1,28,2,6,1,28,3,6,1,28,3,6,1,8,1,7,1,6,1,29,1,28,6,6,1,28,11,1,110,}, + {1,80,28,19,33,1,28,2,33,1,29,1,6,1,33,1,28,1,29,1,33,1,28,2,33,1,28,1,33,1,28,1,33,2,6,1,28,1,29,1,33,1,6,1,28,2,33,2,6,1,29,1,33,2,7,1,33,1,5,1,6,1,28,1,6,1,33,2,7,1,6,1,28,1,29,1,6,1,28,1,29,1,6,3,33,3,6,1,33,2,6,1,29,1,6,1,28,4,29,1,6,1,28,2,29,1,6,1,7,1,28,4,6,1,28,8,6,2,28,1,6,4,33,2,6,1,33,1,7,1,33,3,6,2,28,4,7,2,29,1,6,1,7,1,6,1,7,2,8,2,7,3,6,1,28,2,6,1,33,11,7,1,6,1,33,1,6,1,7,1,6,4,7,1,33,3,6,2,33,3,7,1,33,3,6,1,28,5,6,1,33,3,8,1,6,1,7,2,29,1,28,2,6,2,33,2,6,1,33,1,28,7,33,1,6,2,28,4,6,1,7,1,33,1,6,1,28,3,33,1,7,1,6,1,28,2,6,1,29,1,28,3,7,1,6,3,28,6,6,2,28,11,1,110,}, + {1,78,28,17,6,1,28,3,33,1,6,1,28,1,33,2,28,1,33,1,6,1,28,1,33,2,28,1,33,1,28,1,6,1,33,1,28,1,33,2,6,1,28,1,6,1,33,2,6,2,33,2,6,2,33,6,28,12,6,1,28,10,7,2,8,2,33,3,16,2,33,1,7,1,28,3,6,2,28,10,29,1,6,1,29,1,28,2,6,3,33,2,6,1,33,1,6,1,33,1,28,3,33,1,7,1,6,1,8,1,6,1,29,1,6,1,8,1,7,1,6,1,7,2,8,1,33,1,7,1,6,2,29,1,6,1,28,1,6,1,7,1,5,1,33,10,6,1,33,2,6,1,33,1,6,1,7,1,6,1,33,4,6,1,28,2,29,1,28,5,29,2,7,2,6,1,7,2,6,5,28,2,33,1,7,1,33,1,6,1,28,1,33,1,28,6,29,1,6,1,28,1,29,1,28,3,33,1,6,1,33,1,7,1,28,3,6,1,28,5,6,1,28,4,33,1,7,1,6,1,29,1,28,6,6,1,28,11,1,111,}, + {1,78,28,19,6,1,28,1,29,1,33,1,28,1,33,2,28,1,6,1,33,1,28,2,33,1,6,2,33,1,6,1,33,1,28,2,6,1,33,1,6,1,28,1,33,1,5,1,7,1,6,1,33,1,5,1,33,1,7,1,33,1,6,1,28,12,6,1,7,1,6,1,28,5,6,2,29,1,28,1,29,1,6,2,9,1,7,1,6,1,7,1,6,1,28,1,29,1,6,1,29,1,28,5,6,2,28,9,6,1,28,2,29,1,33,1,6,3,7,1,33,5,6,1,28,3,6,2,7,2,6,3,7,1,8,2,7,2,33,2,7,1,33,1,7,1,6,1,28,5,6,1,33,5,5,2,33,3,6,2,33,4,6,2,33,1,6,1,29,1,28,8,29,1,6,1,33,2,6,8,29,1,28,2,6,1,33,1,6,1,28,2,6,1,28,5,6,4,29,1,28,3,6,2,33,2,28,3,29,2,28,3,6,1,29,1,28,4,7,1,6,1,29,1,28,6,6,1,28,12,1,111,}, + {1,76,28,19,6,1,28,2,6,1,28,1,33,1,6,1,28,1,33,1,6,1,28,1,33,2,28,1,6,1,33,1,6,1,33,2,28,1,33,1,28,1,29,1,33,2,28,2,6,1,33,1,7,1,6,1,29,3,28,5,6,1,29,1,6,2,33,7,7,1,6,1,29,1,28,8,29,3,28,1,6,2,28,11,6,1,28,9,6,1,33,1,6,1,33,10,6,2,29,1,28,2,6,1,7,2,6,4,7,4,33,5,7,1,6,2,29,4,28,4,29,1,6,1,28,2,33,5,6,3,28,2,6,2,28,3,29,1,28,5,6,1,7,1,33,1,6,2,29,1,28,1,29,1,6,6,28,2,6,1,33,2,28,1,6,1,28,5,6,2,33,1,28,5,6,3,33,2,28,3,6,1,28,4,6,2,28,3,6,1,7,1,6,1,29,2,28,5,6,1,28,12,1,111,}, + {1,75,28,14,29,1,6,1,28,2,6,1,28,2,33,1,28,1,6,3,33,1,28,1,6,1,5,1,28,1,29,1,33,1,28,1,6,1,33,2,29,1,6,1,33,1,6,1,28,2,6,3,28,8,6,1,28,1,29,1,33,1,6,3,33,1,7,1,6,3,29,1,28,30,6,2,28,12,6,1,33,9,6,3,28,2,7,3,6,5,7,1,8,1,10,1,33,3,5,2,33,2,6,2,29,2,28,27,6,1,8,1,33,1,8,1,6,2,28,4,29,1,6,6,28,1,6,2,33,2,6,2,28,6,6,1,28,5,7,1,6,3,7,1,28,4,6,2,29,1,28,1,6,1,28,5,6,3,29,1,28,6,29,1,28,11,1,112,}, + {1,74,28,15,29,1,6,1,28,2,33,1,28,2,6,2,28,1,33,1,28,1,33,2,28,1,33,1,6,1,28,1,33,2,28,2,33,1,6,1,28,1,6,1,28,1,6,1,28,2,29,1,28,6,7,2,33,1,6,1,7,1,33,1,6,4,29,1,28,24,1,9,28,3,33,1,6,1,28,3,6,1,28,1,6,1,33,1,6,2,28,3,29,1,6,3,33,6,6,1,29,1,28,2,7,5,6,3,8,1,9,1,8,1,33,3,5,3,33,3,6,2,28,25,29,1,6,1,7,2,6,1,29,1,28,11,29,1,28,2,6,1,33,2,6,1,33,1,28,6,29,1,28,6,7,1,6,4,28,2,29,2,28,1,6,1,28,2,6,1,29,1,28,4,6,1,29,1,6,1,29,1,28,6,29,1,28,11,1,112,}, + {1,72,28,18,33,1,28,2,6,1,33,1,28,1,6,1,33,1,28,1,6,1,7,1,28,1,33,1,28,1,29,1,33,1,7,1,29,1,33,2,28,2,7,1,33,1,28,1,6,1,28,7,6,1,7,1,33,1,8,1,6,2,8,1,6,1,29,2,28,13,1,3,28,3,1,18,28,3,33,1,6,1,28,13,6,1,28,1,29,1,33,5,6,3,28,2,6,2,7,1,6,5,7,1,8,1,7,2,33,1,5,1,33,4,5,1,33,3,7,1,6,1,29,1,28,16,6,6,28,17,29,1,28,2,6,1,33,1,6,1,28,1,6,1,28,5,6,1,33,1,28,5,6,3,33,1,6,2,28,2,6,1,7,1,6,2,28,1,29,1,28,6,8,1,6,2,29,1,28,6,29,1,28,10,1,113,}, + {1,70,28,17,33,1,28,2,33,1,6,1,28,2,33,1,28,2,5,1,6,1,28,1,33,1,6,1,28,1,33,1,29,1,7,1,33,1,6,1,28,2,33,1,6,1,28,6,6,1,7,2,6,1,7,2,29,1,28,2,6,2,28,10,1,31,28,3,33,2,28,9,33,1,6,1,28,2,33,1,28,2,33,5,29,1,6,2,28,1,7,2,29,1,6,2,29,4,6,1,8,2,33,1,12,1,16,1,33,1,5,1,33,4,5,3,33,2,8,1,7,1,6,5,7,1,8,5,7,1,6,4,29,1,28,23,29,1,6,2,28,7,6,1,29,1,6,1,28,1,29,1,28,2,6,1,7,1,6,1,33,1,6,2,28,3,6,2,33,1,7,1,28,6,29,1,8,1,6,2,28,18,1,113,}, + {1,69,28,14,29,1,28,3,33,1,28,2,6,1,33,1,28,2,33,1,6,1,28,2,33,1,6,1,28,1,33,1,6,1,28,1,33,1,28,2,33,1,6,1,28,3,6,1,28,1,6,3,28,2,29,1,6,1,28,12,1,37,28,4,33,1,28,9,6,2,28,2,33,1,6,2,33,5,28,1,6,2,28,1,7,1,6,1,28,1,7,2,28,1,6,2,29,1,6,1,8,1,9,1,33,3,7,1,33,12,8,1,33,2,8,1,7,3,6,4,29,2,28,28,6,1,28,3,6,2,28,2,6,1,28,6,29,1,6,1,29,1,7,2,6,2,28,3,29,1,6,2,29,1,28,6,6,1,8,1,6,1,29,1,28,17,1,114,}, + {1,68,28,13,6,1,28,1,29,1,6,1,28,2,6,2,28,2,33,2,28,2,33,1,6,1,28,2,33,2,28,1,29,1,7,1,28,4,29,1,6,1,28,2,6,2,28,1,6,1,28,11,1,43,28,4,33,1,29,1,28,8,29,1,6,2,29,1,6,2,33,5,6,1,28,1,6,2,28,1,6,2,28,1,33,1,6,1,28,3,6,2,7,1,33,1,7,1,6,1,29,1,6,3,29,1,28,4,29,1,6,1,29,1,28,40,6,1,29,2,6,1,28,7,6,1,28,6,6,2,7,1,6,1,33,1,7,1,6,1,28,3,29,1,6,1,29,1,28,7,33,1,8,1,6,1,29,1,28,17,1,114,}, + {1,67,28,14,6,1,28,2,6,1,28,2,29,1,33,1,29,1,28,2,33,1,6,1,28,2,6,2,28,2,33,2,28,4,6,2,29,1,6,1,29,1,28,11,1,49,28,1,6,1,28,1,6,2,28,6,33,2,28,1,6,2,33,1,28,2,33,6,6,1,28,1,29,1,28,1,8,1,29,1,28,1,7,1,28,3,29,2,6,2,29,1,28,57,6,1,28,7,29,1,28,6,7,1,6,2,33,1,7,2,28,3,29,1,28,2,6,1,28,7,33,1,8,1,6,2,28,4,29,1,6,1,28,10,1,115,}, + {1,66,28,16,6,1,28,1,6,1,28,3,6,1,33,1,29,1,28,2,6,2,28,2,6,2,28,5,6,2,33,1,7,1,6,2,28,9,1,52,28,4,33,1,28,5,6,1,33,1,6,1,28,2,29,1,6,2,33,7,6,1,29,1,6,1,28,1,6,1,7,1,28,1,6,1,28,2,6,1,29,1,6,2,29,1,6,2,29,1,6,1,29,1,6,4,29,2,28,47,6,2,28,4,6,1,28,1,29,1,28,5,6,1,7,1,6,1,7,1,33,1,6,2,33,1,28,2,7,1,6,2,28,7,7,3,6,2,28,16,1,115,}, + {1,64,28,15,6,1,28,2,6,1,28,1,6,3,28,3,33,1,6,1,28,2,29,2,28,7,6,1,28,11,1,56,28,2,6,1,28,1,6,1,28,8,29,2,6,3,33,6,7,1,29,1,6,1,33,1,28,2,5,1,28,1,29,1,33,2,6,1,7,1,6,1,29,1,28,1,6,5,29,4,28,48,6,2,28,3,6,1,29,2,28,1,6,2,28,4,7,1,6,2,7,1,6,1,29,1,33,1,7,1,28,2,6,2,28,8,33,1,7,2,6,2,28,7,29,1,6,1,29,1,28,5,1,116,}, + {1,63,28,12,29,1,28,3,6,2,28,1,6,1,29,1,28,1,33,1,6,2,28,3,6,2,28,2,6,2,28,15,1,59,28,2,33,1,28,11,6,2,29,1,7,1,33,7,6,2,33,1,28,2,33,1,7,1,28,1,33,2,6,1,7,2,29,1,28,1,29,1,6,1,29,2,6,2,29,1,28,50,6,2,28,2,29,1,7,1,28,4,7,1,28,3,29,1,7,1,6,2,7,1,6,2,7,1,28,12,6,1,33,1,8,1,7,1,6,1,28,16,1,116,}, + {1,62,28,13,33,1,28,2,6,1,28,1,33,1,28,1,29,1,6,1,28,1,33,1,6,2,28,22,1,61,28,2,33,1,6,1,28,8,33,1,28,1,29,1,28,2,7,1,33,4,6,1,33,2,7,1,6,2,28,3,33,1,6,1,29,1,7,1,33,2,6,1,28,3,29,2,6,3,29,1,28,50,29,1,6,1,29,1,28,1,6,1,33,1,28,4,29,1,28,3,6,3,7,1,6,3,28,4,29,1,28,8,33,1,7,2,6,1,29,1,28,5,29,1,28,3,29,1,28,5,1,117,}, + {1,61,28,14,6,1,28,2,29,1,6,3,28,1,6,2,28,3,29,1,6,1,28,17,1,64,28,3,6,1,28,13,33,5,6,1,33,4,6,1,28,1,6,1,29,1,6,2,29,1,28,1,7,2,29,1,28,6,29,1,28,52,6,1,33,1,6,2,29,1,28,3,6,1,28,2,6,1,29,1,28,1,6,3,33,1,6,2,28,3,6,1,28,7,29,1,28,2,33,1,6,3,28,8,29,1,6,2,29,1,28,4,1,117,}, + {1,59,28,17,6,1,28,2,6,1,28,1,6,1,28,2,6,1,28,5,29,1,28,12,1,69,28,2,6,1,28,13,33,8,6,1,7,1,33,1,6,1,29,1,33,1,28,2,6,1,29,2,28,61,6,1,33,2,6,1,28,4,6,1,28,2,6,1,28,2,6,5,29,1,28,3,29,1,28,2,29,1,28,6,7,1,8,1,7,1,6,2,29,1,28,15,1,117,}, + {1,58,28,13,6,1,28,4,6,1,28,3,6,1,29,1,6,1,28,18,1,71,28,11,33,1,28,3,29,1,33,2,6,1,33,4,6,4,28,2,29,1,28,1,7,1,33,1,6,3,28,60,33,2,6,1,28,4,6,1,29,1,28,2,6,1,28,3,7,1,6,2,28,2,6,1,28,1,7,1,28,10,5,1,7,2,29,2,28,15,1,118,}, + {1,57,28,14,6,1,28,2,29,1,28,2,6,1,28,1,6,1,28,19,1,73,28,4,6,1,28,1,6,1,28,3,6,1,33,1,29,1,28,2,6,1,33,3,6,1,33,1,6,4,29,1,28,2,7,1,29,1,6,1,29,2,7,2,29,1,28,56,1,2,28,1,33,3,28,4,6,2,28,6,6,1,7,1,33,1,28,3,6,1,28,3,6,1,28,7,8,1,33,3,6,2,28,1,29,1,28,13,1,118,}, + {1,56,28,13,6,1,28,2,33,1,28,2,6,1,28,19,1,77,28,5,6,1,28,5,33,1,6,2,28,2,33,2,7,1,33,1,6,2,33,1,6,1,28,4,33,1,6,2,29,1,28,1,7,1,8,1,28,55,1,4,28,1,5,1,6,1,28,2,29,1,28,2,29,1,6,1,28,1,6,1,28,2,6,2,7,1,6,1,7,1,29,1,28,1,6,1,28,2,6,2,7,1,28,7,33,2,8,1,7,1,6,2,28,8,6,1,29,1,28,1,29,1,28,3,1,118,}, + {1,54,28,13,6,1,28,2,6,1,28,1,6,1,28,20,1,79,28,2,6,1,28,4,33,1,28,3,6,4,28,1,6,1,33,6,6,1,28,4,33,1,6,3,28,1,29,1,6,1,28,52,1,6,28,1,6,3,28,2,6,2,28,4,6,1,28,2,7,1,6,2,33,2,28,2,6,1,28,2,6,1,33,2,28,6,7,1,33,2,7,1,8,1,6,1,29,1,28,5,6,1,28,9,1,118,}, + {1,53,28,14,6,2,28,4,6,1,28,18,1,80,28,3,6,1,28,3,33,1,6,1,28,2,33,1,29,1,28,1,33,1,28,2,6,1,33,3,6,3,29,1,6,1,28,1,6,1,33,1,6,2,7,1,6,2,28,1,1,8,28,40,1,10,28,1,33,1,28,4,6,2,29,2,28,5,33,1,6,2,33,2,29,1,6,1,28,4,33,1,6,1,28,5,29,1,33,2,8,2,7,1,6,4,28,13,1,118,}, + {1,52,28,11,6,1,28,1,33,1,28,2,33,1,28,21,1,83,28,2,33,1,28,3,6,2,28,1,29,1,33,1,28,2,33,1,6,2,7,1,6,1,33,1,6,4,29,1,6,1,29,1,33,1,7,1,6,1,7,3,6,1,28,1,1,17,28,20,29,1,6,1,8,1,16,1,8,3,6,1,28,2,1,11,28,1,5,1,28,3,6,1,28,1,6,3,28,2,29,1,28,2,33,1,6,2,33,1,6,1,29,1,6,1,28,1,6,1,28,1,29,1,7,1,28,6,33,3,8,1,33,1,7,1,8,1,6,1,29,1,6,2,29,1,28,4,29,1,6,1,28,4,1,119,}, + {1,51,28,12,6,1,28,2,6,1,28,2,33,1,28,17,1,85,28,3,33,1,6,1,28,2,33,1,28,3,33,2,28,1,33,1,28,2,33,2,6,1,33,2,6,3,33,1,6,1,7,1,33,1,6,1,7,1,6,1,7,1,6,1,28,1,1,17,28,3,6,1,8,2,9,4,8,1,6,3,7,2,8,1,7,3,8,1,33,1,9,1,33,1,7,1,6,2,29,1,28,2,1,11,28,1,6,1,28,3,7,1,28,1,6,1,29,1,6,1,28,2,33,1,6,1,28,1,6,1,28,2,33,1,6,1,28,3,6,4,28,5,6,1,5,1,33,4,8,2,6,1,28,4,29,1,6,3,33,1,6,1,28,1,29,1,28,2,1,119,}, + {1,50,28,16,6,1,28,17,1,87,28,2,6,1,28,1,6,1,33,1,28,6,6,1,33,1,28,1,5,1,28,2,33,2,28,1,33,6,7,1,6,1,7,1,6,1,33,1,6,1,7,1,28,1,1,18,28,4,29,1,6,1,7,1,8,1,9,2,8,1,7,3,8,1,7,2,6,3,7,1,33,4,7,1,6,1,28,3,1,11,28,4,6,4,28,4,6,1,28,4,6,1,7,1,29,1,6,1,28,4,6,1,29,1,28,1,6,1,28,3,5,1,33,3,16,1,33,1,8,1,7,2,6,3,28,3,6,1,28,7,1,119,}, + {1,49,28,8,29,1,28,2,6,1,28,21,1,88,28,1,7,2,33,1,28,2,6,1,28,1,6,1,28,3,6,1,29,1,28,2,33,1,29,2,33,1,6,1,28,1,6,1,33,1,6,2,33,3,6,1,7,1,33,2,6,2,28,1,1,18,28,4,29,2,6,2,8,2,7,1,6,2,7,1,8,1,7,1,6,2,7,2,8,1,33,3,7,1,6,2,28,3,1,11,28,2,6,1,28,1,29,1,28,1,6,2,28,9,6,1,33,1,28,1,6,1,28,4,6,1,28,2,6,1,28,3,33,5,8,1,33,1,6,1,7,2,6,2,28,6,29,1,28,4,1,119,}, + {1,47,28,11,6,1,28,2,6,1,28,18,1,88,28,2,33,2,6,2,28,4,6,2,28,2,6,1,28,3,33,1,28,1,33,2,28,2,6,1,33,1,6,1,28,2,33,2,6,1,7,1,33,1,6,2,8,1,28,1,1,18,28,4,29,1,6,1,29,1,6,2,7,1,8,1,7,1,6,1,7,4,6,1,7,1,8,1,33,4,6,1,7,1,6,1,28,2,1,12,28,6,6,4,28,8,7,1,28,5,29,1,6,1,28,3,29,1,28,2,33,3,9,1,8,1,33,1,7,1,33,1,7,1,29,1,28,1,6,1,29,1,28,10,1,119,}, + {1,46,28,9,6,1,28,2,6,1,28,19,1,89,28,2,6,1,33,1,6,3,28,5,6,1,28,2,6,1,33,1,6,2,33,1,28,1,33,2,29,1,33,3,6,1,28,1,6,1,33,2,6,1,7,2,6,3,28,1,1,18,28,4,29,1,6,1,7,1,6,6,8,1,7,1,8,4,33,5,6,3,28,2,1,12,28,4,33,3,6,3,28,2,29,1,28,1,29,1,7,1,28,2,29,1,28,3,29,1,28,7,1,1,28,1,33,2,9,2,8,1,33,2,7,1,29,1,6,2,29,1,28,11,1,119,}, + {1,44,28,9,6,1,28,22,1,90,28,2,29,1,6,2,29,1,33,2,28,1,33,1,6,1,28,2,6,1,29,1,28,1,29,1,33,1,29,2,33,1,6,1,33,1,28,2,6,1,33,2,6,1,28,1,6,1,33,2,29,1,7,2,6,2,28,2,1,19,28,3,29,1,6,7,7,1,8,1,6,1,7,2,8,1,33,6,6,3,28,2,1,12,28,3,6,1,33,1,6,1,33,5,6,2,28,3,29,1,28,4,7,1,6,1,28,2,6,3,28,2,1,1,28,1,33,2,9,2,8,1,7,1,33,1,7,1,28,1,29,1,6,5,29,1,28,7,1,119,}, + {1,43,28,10,29,1,28,2,6,1,28,18,1,90,28,5,6,2,33,2,29,1,33,1,6,1,28,2,6,2,28,2,33,1,28,1,29,1,33,2,7,1,28,2,33,1,6,1,33,2,28,3,7,1,6,2,7,1,6,2,28,1,1,19,28,4,6,1,28,1,6,6,7,1,8,1,6,3,7,1,33,1,16,1,33,3,7,2,6,2,28,2,1,12,28,6,6,1,28,2,6,3,7,2,6,1,28,1,6,1,28,4,33,1,6,1,28,3,29,1,6,1,28,2,1,1,28,1,7,1,8,1,9,2,10,1,7,2,29,1,28,3,6,1,7,1,6,2,28,8,1,119,}, + {1,42,28,30,1,92,28,4,6,1,28,1,6,1,33,1,6,1,33,1,6,1,28,1,6,2,33,1,6,2,29,1,28,1,29,1,33,3,6,1,28,1,6,1,28,1,33,2,6,1,28,2,33,6,7,2,28,1,1,20,28,4,6,1,7,1,6,6,8,1,6,3,33,1,5,2,33,1,7,2,33,2,6,2,28,2,1,13,28,1,29,1,28,9,6,1,33,3,8,1,7,1,6,2,28,10,1,1,28,1,6,1,7,1,9,1,8,2,7,1,6,1,28,1,29,1,28,2,6,2,28,10,1,119,}, + {1,41,28,27,1,1,28,1,1,93,28,4,29,1,28,3,6,1,33,2,6,1,28,3,33,2,6,2,28,2,6,1,33,2,28,2,6,2,28,1,6,1,29,1,28,2,33,2,6,1,33,2,7,1,8,1,6,1,28,1,1,20,28,4,6,8,7,3,33,1,5,2,33,1,7,1,6,1,7,1,33,2,6,1,29,1,28,1,1,14,28,2,6,1,28,10,6,5,33,1,6,2,7,1,28,7,1,1,28,1,29,1,7,1,8,1,6,1,8,2,7,1,28,3,6,1,29,1,28,11,1,119,}, + {1,40,28,27,1,96,28,9,6,1,33,1,6,1,28,3,33,4,6,1,28,2,6,2,28,2,6,2,29,1,28,1,33,2,28,1,29,1,33,4,6,3,28,1,1,20,28,4,29,1,7,1,6,3,7,1,6,2,7,1,33,8,6,3,29,1,28,2,1,14,28,2,29,2,28,1,6,3,28,10,6,1,33,2,7,2,28,6,1,1,28,1,7,3,6,1,7,2,6,1,29,2,28,1,6,1,28,12,1,119,}, + {1,38,28,7,6,1,28,19,1,97,28,5,6,2,28,3,6,1,33,2,29,1,28,2,6,2,28,1,29,1,7,1,6,1,28,1,6,1,29,1,28,2,6,3,28,1,6,2,28,3,6,1,33,1,6,1,29,1,6,1,28,1,1,21,28,4,29,1,6,4,7,2,6,1,33,3,5,1,33,1,7,2,33,2,7,1,6,2,29,1,28,2,1,14,28,3,6,2,28,1,6,1,33,3,7,2,6,1,29,1,28,15,1,1,28,1,33,1,8,1,7,2,8,1,6,2,28,16,1,119,}, + {1,36,28,27,1,98,28,12,6,1,33,1,6,2,28,2,29,1,28,1,6,1,29,1,6,1,28,2,29,1,28,3,6,1,33,1,6,1,28,2,6,1,28,2,6,2,28,1,29,1,6,1,28,1,1,21,28,5,6,1,29,1,6,1,7,1,6,3,33,6,7,2,33,1,7,1,6,2,29,1,28,2,1,14,28,1,6,1,28,1,6,3,29,1,6,1,29,1,6,3,7,1,33,5,6,1,7,1,33,1,7,1,6,1,28,1,6,1,28,1,29,1,28,1,1,2,28,1,8,2,7,2,6,2,29,1,28,2,29,2,28,1,6,1,28,3,6,1,28,5,1,120,}, + {1,34,28,27,1,99,28,8,6,1,28,2,6,1,28,2,33,3,29,1,28,2,33,1,6,2,28,2,6,2,33,1,6,1,28,1,6,1,28,1,29,2,28,5,6,1,28,1,29,1,28,2,1,21,28,5,6,3,33,1,6,3,33,3,6,1,7,5,6,1,28,1,33,1,28,3,1,14,28,1,6,1,28,1,29,1,6,3,28,2,6,1,28,18,1,2,28,1,7,3,6,1,29,1,28,1,6,1,28,1,6,2,29,2,28,3,6,1,29,1,28,6,1,119,}, + {1,33,28,26,1,101,28,11,6,2,28,1,6,1,33,1,6,2,28,5,33,1,29,1,28,1,6,1,28,2,6,1,28,2,33,1,7,1,28,1,6,1,7,1,33,3,6,2,28,1,1,22,28,6,29,1,6,1,7,1,6,2,33,4,29,1,6,2,7,2,6,3,7,1,28,2,1,15,28,1,29,1,28,4,29,1,28,4,6,2,28,2,29,1,28,2,29,1,28,9,1,2,28,1,7,2,8,1,7,1,6,1,28,1,6,1,28,1,6,1,29,1,6,2,29,3,28,8,1,119,}, + {1,31,28,25,1,103,28,13,6,1,28,2,6,3,33,1,28,2,6,1,28,1,6,2,7,2,6,1,28,2,6,1,28,3,6,3,29,1,6,1,28,1,8,1,6,1,28,1,1,22,28,6,6,4,33,4,6,1,29,1,6,8,28,2,1,15,28,9,6,1,29,1,6,1,28,4,6,2,33,1,7,1,29,1,28,1,7,1,6,2,28,2,1,3,28,1,7,4,6,3,28,1,6,4,29,1,6,2,28,5,29,1,28,2,1,119,}, + {1,30,28,10,29,2,28,11,1,105,28,10,33,1,28,8,33,2,6,1,28,2,7,1,28,1,29,1,6,2,33,1,28,3,29,1,28,6,6,1,29,2,28,1,1,23,28,6,6,2,7,2,33,3,6,2,28,1,29,1,6,5,7,1,29,1,28,2,1,15,28,3,6,1,28,5,6,1,7,1,33,1,28,8,6,3,7,1,28,3,1,3,28,1,6,1,7,2,6,1,29,2,6,1,28,1,6,1,29,1,6,2,28,1,6,1,28,9,1,119,}, + {1,29,28,8,29,1,6,1,28,12,1,107,28,20,7,1,6,3,28,2,6,2,33,1,7,1,33,1,28,2,6,2,7,1,28,7,1,25,28,5,6,2,33,4,6,3,29,1,6,1,29,1,28,2,6,1,33,2,28,3,1,15,28,3,29,1,28,1,29,1,28,2,6,1,29,2,6,1,28,1,29,1,8,1,6,1,29,1,28,3,6,3,28,4,1,3,28,1,6,1,7,1,33,1,7,1,28,9,6,1,28,9,1,119,}, + {1,29,28,6,29,1,28,11,1,110,28,18,33,1,29,1,28,1,29,1,28,1,29,1,5,1,28,3,29,1,28,1,29,1,6,1,28,1,6,1,28,2,7,1,6,1,28,6,1,25,28,4,6,3,33,4,6,5,29,1,28,1,29,1,6,2,29,1,28,3,1,15,28,5,6,3,7,1,6,1,7,1,28,2,29,1,6,1,7,2,29,1,28,8,1,4,28,1,29,1,7,1,8,1,6,1,28,1,29,2,6,2,29,2,6,4,28,8,1,119,}, + {1,27,28,8,6,1,28,9,1,112,28,16,29,1,33,1,7,1,33,1,6,1,29,1,6,1,28,1,6,2,28,4,29,1,6,2,33,1,28,3,6,2,7,2,29,1,28,1,1,26,28,3,29,1,6,2,7,1,33,4,6,3,29,2,28,2,6,1,33,1,6,1,28,4,1,15,28,1,29,1,28,3,33,1,6,1,33,2,6,2,28,1,29,1,7,1,28,8,29,2,28,2,1,4,28,2,6,2,29,2,6,1,28,2,6,1,28,3,29,2,6,1,29,1,28,7,1,119,}, + {1,25,28,17,1,115,28,12,6,1,28,4,6,1,33,2,7,1,6,1,29,1,28,3,29,1,7,1,28,3,29,1,28,2,33,2,28,6,1,27,28,3,6,3,33,3,6,1,29,2,28,1,6,1,28,1,29,1,28,2,33,1,6,1,28,4,1,16,28,7,33,1,6,1,28,1,7,1,29,1,28,1,29,1,28,6,6,1,28,2,29,1,28,2,1,4,28,2,29,1,7,1,6,1,29,1,6,1,33,2,6,1,33,1,6,1,29,1,28,2,6,2,28,7,1,119,}, + {1,25,28,15,1,116,28,12,6,1,33,1,28,3,6,3,29,1,6,1,29,1,7,1,6,1,28,2,29,1,28,2,6,2,33,1,6,1,28,2,7,1,33,1,6,2,29,1,28,1,1,28,28,3,6,1,7,1,33,3,6,4,28,1,29,2,6,1,28,2,6,1,28,2,6,1,28,2,1,16,28,1,29,1,28,8,6,1,28,2,6,1,28,2,6,2,28,2,6,1,28,5,1,5,28,1,29,1,6,3,28,1,6,3,29,1,6,1,33,1,6,1,29,1,28,1,6,1,28,7,1,119,}, + {1,26,28,12,1,118,28,11,29,1,33,2,28,5,29,1,6,2,28,1,6,3,28,1,6,1,28,2,6,1,33,1,7,2,6,1,28,6,1,29,28,3,6,2,33,2,6,1,28,2,6,2,28,1,6,1,29,1,6,1,28,5,29,1,28,2,1,16,28,1,6,1,28,7,6,1,29,1,28,2,6,1,28,1,6,1,33,1,28,2,29,1,6,1,28,5,1,5,28,2,6,2,33,1,6,2,28,1,29,1,28,1,6,1,7,1,6,1,29,1,28,2,6,1,29,1,28,5,1,119,}, + {1,26,28,9,1,120,28,16,33,1,6,1,28,1,6,1,33,3,6,1,33,3,28,5,33,1,7,1,28,1,33,1,6,1,7,1,28,2,1,31,28,3,33,3,6,1,29,1,28,2,6,2,29,1,6,1,33,2,6,1,28,3,6,2,28,1,1,17,28,1,6,1,28,13,6,2,28,2,6,4,28,3,1,5,28,1,6,1,33,1,6,1,33,4,7,1,33,1,6,1,28,1,6,1,28,3,6,1,28,7,1,118,}, + {1,155,28,8,6,1,28,7,6,3,7,1,33,1,6,1,28,1,29,1,6,1,33,1,6,1,28,9,7,1,6,1,28,1,1,32,28,3,6,3,28,1,29,1,6,2,33,1,6,3,33,1,6,2,28,2,6,2,28,2,1,17,28,1,29,2,28,7,6,1,28,4,6,2,7,1,28,1,6,1,33,1,6,1,28,4,1,5,28,1,33,3,7,1,6,1,33,1,7,1,6,1,33,1,6,1,28,1,6,1,28,11,1,118,}, + {1,155,28,14,29,2,6,1,33,2,7,2,6,1,28,7,29,2,6,1,28,6,1,33,28,7,6,1,33,1,6,2,33,4,28,3,6,1,33,1,28,3,1,17,28,2,6,1,28,6,6,2,28,4,6,1,33,1,6,1,28,2,6,1,29,1,28,3,1,6,28,1,6,1,8,1,33,1,7,1,6,4,33,2,29,1,6,2,28,10,1,118,}, + {1,154,28,15,7,1,33,1,6,2,7,1,6,3,28,2,6,1,28,2,6,3,7,3,6,1,29,1,28,2,1,34,28,6,6,5,33,4,29,1,28,1,29,1,6,2,28,3,1,17,28,2,6,1,28,6,6,1,28,2,29,1,28,2,29,1,28,5,6,1,28,3,1,7,28,1,7,1,6,1,29,1,6,3,7,1,33,2,6,1,28,12,1,118,}, + {1,154,28,12,6,2,33,1,6,1,7,1,6,1,7,1,33,2,6,1,33,1,6,1,28,4,6,1,7,2,33,1,6,1,28,1,7,1,29,1,28,1,1,36,28,6,29,1,28,2,6,1,33,2,28,1,33,1,6,1,28,1,6,2,28,4,1,17,28,1,29,2,28,6,7,1,6,1,28,3,29,2,28,4,6,1,28,4,1,7,28,1,6,4,33,2,6,1,33,1,7,1,6,2,28,11,1,118,}, + {1,153,28,9,6,1,28,2,6,1,33,1,7,1,6,1,33,1,7,1,6,1,28,8,6,1,7,1,6,1,33,2,7,2,29,1,28,2,1,37,28,5,6,1,28,1,6,1,33,1,6,1,28,3,6,2,28,1,6,1,33,1,6,1,28,3,1,17,28,2,6,1,28,4,6,1,28,1,6,1,28,1,6,2,28,2,6,2,28,1,29,2,6,1,28,4,1,7,28,1,7,1,33,1,6,2,7,3,6,1,28,4,6,1,28,9,1,118,}, + {1,153,28,11,6,1,33,2,6,4,28,8,29,2,6,1,33,1,7,1,28,1,6,1,28,2,1,38,28,5,6,1,29,1,28,1,6,1,33,1,6,1,28,1,6,4,28,2,6,2,28,3,1,17,28,2,6,1,28,9,33,1,6,1,7,1,6,1,28,3,29,1,28,5,1,7,28,1,6,2,28,2,29,1,7,1,6,2,28,14,1,118,}, + {1,152,28,6,6,3,29,1,6,2,7,1,6,3,7,1,6,2,28,6,29,1,6,1,29,1,6,1,33,1,7,1,28,4,1,39,28,5,33,1,28,3,6,1,29,1,28,1,6,2,28,3,6,1,33,1,6,1,28,3,1,17,28,1,29,1,6,1,28,4,6,1,28,2,6,1,28,1,6,1,7,1,6,2,28,2,6,3,28,4,1,7,28,1,6,2,29,1,28,1,6,1,7,1,29,3,28,3,29,1,6,1,28,8,1,118,}, + {1,152,28,5,33,2,6,9,7,1,33,2,6,1,28,2,6,1,33,1,6,1,7,2,6,1,33,1,29,1,28,1,29,1,28,2,1,40,28,9,6,1,28,2,6,2,33,1,28,2,6,2,29,1,28,3,1,17,28,1,6,1,33,1,28,3,29,2,28,2,6,1,28,2,6,3,7,1,28,2,29,1,6,1,28,1,6,1,28,1,1,8,28,1,6,3,28,1,6,2,28,7,33,1,28,8,1,118,}, + {1,152,28,4,6,2,28,4,29,2,6,1,28,3,29,1,28,1,6,1,33,2,6,2,28,1,33,1,6,1,33,2,6,1,28,4,1,42,28,4,29,1,6,4,29,1,28,1,6,2,7,1,28,2,29,1,28,5,1,17,28,1,6,2,28,3,6,1,28,5,29,1,33,1,29,2,28,1,6,1,28,1,6,1,29,1,28,1,6,1,28,1,1,8,28,3,6,2,29,1,28,7,6,1,29,1,28,8,1,118,}, + {1,151,28,3,29,1,6,1,29,1,28,6,6,1,28,7,33,1,6,1,29,1,6,3,33,1,6,1,28,5,1,43,28,4,33,1,29,1,6,1,28,1,6,1,33,2,6,1,29,1,28,1,6,3,28,5,1,17,28,2,6,1,28,2,6,1,29,1,28,1,7,1,6,2,28,2,33,1,6,4,28,2,6,1,28,3,1,8,28,3,6,1,33,1,6,1,28,6,29,1,6,1,28,2,6,1,28,6,1,118,}, + {1,150,28,17,6,1,28,1,29,1,28,3,6,1,7,1,6,3,28,5,1,44,28,4,6,1,28,3,6,1,33,1,5,1,6,1,28,1,29,1,33,2,6,1,28,1,6,2,28,2,1,17,28,1,6,2,28,2,6,1,28,1,6,1,33,1,6,2,28,2,6,1,28,2,6,1,28,1,6,2,33,1,29,1,28,2,1,8,28,4,6,1,29,1,6,1,28,9,6,1,28,6,1,118,}, + {1,150,28,11,6,1,28,8,6,1,28,2,6,2,28,2,29,3,28,1,1,46,28,2,33,1,6,1,29,1,28,1,33,3,6,1,7,1,28,3,33,2,6,2,33,1,6,1,28,2,1,17,28,1,6,1,28,3,6,1,28,1,6,1,7,1,33,1,6,2,28,3,6,1,28,1,29,1,6,3,29,1,28,2,1,8,28,1,29,1,6,1,28,1,6,2,7,1,6,2,28,7,6,1,28,6,1,118,}, + {1,150,28,17,6,1,28,3,6,4,29,1,6,1,29,1,28,2,1,47,28,2,6,3,33,3,6,1,28,2,6,1,28,1,6,1,33,1,28,1,6,3,33,1,28,3,1,16,28,1,6,1,28,3,6,1,28,1,6,3,7,1,6,1,28,1,33,1,28,1,6,1,28,2,6,3,29,1,28,2,1,8,28,1,6,1,29,1,28,4,29,1,6,1,29,1,28,2,6,1,28,2,33,1,6,1,28,6,1,118,}, + {1,149,28,13,6,2,28,1,6,1,28,2,6,1,33,2,6,1,33,1,6,1,28,1,7,1,6,1,28,2,1,48,28,2,33,1,28,2,33,1,6,1,33,2,28,2,33,1,28,2,6,1,28,1,33,1,6,3,28,3,1,16,28,1,33,1,29,1,28,2,33,1,28,1,6,1,33,1,6,3,28,3,6,1,28,2,33,1,6,1,29,1,28,2,1,9,28,4,29,1,28,1,29,1,6,1,28,4,29,1,28,2,33,2,28,3,6,1,28,2,1,118,}, + {1,149,28,13,6,6,7,1,33,2,6,1,33,2,7,1,6,1,28,2,1,49,28,2,7,1,28,2,33,2,28,1,29,1,6,2,33,1,6,1,29,2,28,1,33,2,6,2,28,4,1,15,28,4,6,1,33,1,6,2,33,2,7,1,28,7,6,2,29,1,28,2,1,9,28,1,6,1,28,2,6,1,28,9,6,1,33,1,6,1,28,6,1,118,}, + {1,149,28,10,6,1,28,3,6,3,7,1,33,2,6,4,33,1,28,2,1,51,28,2,33,1,6,1,28,1,6,1,33,1,6,3,29,1,6,1,7,1,28,1,6,1,29,1,33,2,28,6,1,14,28,5,6,1,33,2,29,1,6,1,29,2,28,1,29,2,6,2,28,1,29,2,6,2,28,2,1,9,28,1,6,3,33,1,6,2,28,7,6,1,28,2,6,1,28,5,1,118,}, + {1,148,28,11,6,3,29,1,6,3,33,4,6,1,7,1,6,1,28,2,1,52,28,2,6,1,33,1,6,2,28,1,29,1,33,1,7,1,33,2,6,1,28,1,29,1,6,3,28,7,1,13,28,5,6,3,28,5,7,1,28,2,7,1,6,1,7,1,6,3,28,2,1,10,28,1,7,1,6,1,33,3,28,1,6,1,7,1,29,1,28,2,6,2,29,1,28,1,29,1,6,1,28,4,1,118,}, + {1,148,28,4,29,1,28,5,6,1,28,2,33,1,7,1,33,2,7,1,33,3,7,1,33,1,7,1,28,2,1,53,28,3,6,1,28,2,33,1,6,1,29,1,28,3,6,1,28,5,6,2,28,7,1,11,28,5,6,1,28,1,6,2,28,3,6,2,28,2,6,1,29,1,6,4,28,2,1,10,28,1,33,2,7,1,33,2,6,2,33,2,6,1,28,2,29,1,5,1,6,1,28,2,6,1,28,1,6,1,28,1,1,118,}, + {1,147,28,14,33,8,7,2,28,2,1,54,28,4,6,1,28,1,6,4,33,3,28,6,33,1,28,3,29,1,28,4,1,11,28,1,6,1,28,2,6,1,33,2,6,2,33,1,7,1,6,2,28,1,6,1,7,1,6,4,29,1,28,2,1,10,28,1,29,1,33,4,6,2,33,2,6,1,28,2,29,1,33,2,29,1,28,1,6,2,28,2,1,118,}, + {1,147,28,7,6,1,28,5,6,1,33,8,7,1,28,2,1,55,28,2,6,1,28,1,6,1,29,1,6,1,33,2,6,1,33,2,7,1,28,6,29,1,6,1,28,2,6,2,28,5,1,8,28,5,6,9,28,2,6,3,7,1,28,4,1,11,28,1,33,3,7,1,29,1,6,1,33,3,6,1,28,1,6,1,7,1,33,1,6,2,28,2,6,1,28,1,1,118,}, + {1,146,28,8,29,1,28,4,6,1,33,7,7,2,28,2,1,56,28,2,33,1,28,2,6,1,33,2,29,1,28,1,29,1,6,1,33,1,6,1,29,1,6,1,28,3,6,2,28,2,7,1,28,7,1,7,28,6,33,1,6,1,28,2,29,1,6,2,7,1,6,4,28,2,6,1,28,3,1,11,28,1,33,3,6,4,33,3,28,2,33,2,6,1,28,5,1,118,}, + {1,146,28,4,29,1,6,1,28,2,6,3,29,2,33,2,6,1,33,6,29,1,28,1,1,57,28,2,6,1,28,2,6,1,33,2,6,1,33,4,28,6,6,5,28,1,33,1,29,1,28,5,1,6,28,4,29,1,28,6,29,1,28,1,29,1,6,1,28,3,29,1,6,2,28,3,1,11,28,1,7,1,33,3,7,1,6,2,7,1,33,2,7,1,28,1,6,2,28,2,6,1,28,3,1,118,}, + {1,146,28,3,6,1,33,4,6,1,28,1,29,1,6,2,33,3,5,1,33,4,7,1,28,1,1,58,28,2,6,3,33,6,6,1,28,1,33,1,28,1,6,1,28,4,6,1,29,1,7,1,28,2,33,2,28,5,1,6,28,5,29,1,33,1,6,1,29,1,6,3,28,1,6,2,28,5,6,1,28,3,1,11,28,1,6,1,33,4,6,2,33,4,6,1,33,2,29,1,28,1,6,1,28,1,29,1,28,1,1,118,}, + {1,145,28,5,33,1,6,1,33,3,7,1,33,5,5,1,33,3,5,1,33,1,28,1,1,59,28,3,33,6,6,4,33,1,6,2,28,9,33,2,6,1,29,1,7,1,28,3,1,5,28,1,6,1,28,4,6,1,7,1,29,1,6,2,28,2,6,3,28,8,1,11,28,1,6,1,33,2,6,3,7,1,33,3,7,1,28,1,6,1,33,1,6,2,28,5,1,117,}, + {1,145,28,5,29,1,33,5,5,1,33,1,5,2,33,1,5,1,33,3,5,1,28,1,1,60,28,3,33,9,5,1,6,1,29,1,28,11,7,1,33,3,6,1,28,2,1,5,28,1,6,2,28,2,6,1,29,1,7,1,29,2,28,3,6,3,28,3,6,1,28,4,1,11,28,1,6,1,33,2,6,2,29,1,7,1,33,3,7,1,28,1,7,1,6,2,28,6,1,117,}, + {1,144,28,7,33,7,5,1,33,3,5,2,33,2,28,1,1,60,28,1,29,2,6,2,33,5,6,2,33,2,6,1,29,1,28,1,29,1,28,8,6,1,33,2,5,1,33,1,6,1,28,1,1,4,28,2,6,1,28,3,6,1,28,2,29,1,6,1,28,1,29,1,6,4,28,6,6,1,28,1,1,11,28,1,7,1,33,2,7,2,6,2,7,2,33,2,6,1,33,1,28,8,1,117,}, + {1,144,28,4,33,2,28,2,7,1,33,2,5,2,33,1,5,1,33,1,5,1,33,3,5,1,33,1,28,1,1,60,28,1,6,4,33,5,6,1,29,1,6,2,29,2,28,1,6,1,28,1,29,1,28,3,6,1,28,3,33,1,7,1,5,1,33,1,6,1,28,1,1,4,28,2,6,1,28,6,6,2,28,2,6,3,28,9,1,11,28,1,33,3,7,2,6,2,7,2,33,3,28,9,1,117,}, + {1,143,28,5,33,1,6,1,33,3,6,1,29,1,6,3,33,1,5,1,33,1,5,1,33,3,7,1,28,1,1,60,28,1,6,1,33,1,6,2,33,4,6,5,33,1,6,1,28,1,33,1,28,9,33,2,5,1,33,1,5,1,28,1,1,4,28,8,6,7,28,1,29,1,28,1,29,3,28,4,1,11,28,1,33,2,8,1,6,1,7,2,33,2,7,1,33,1,6,2,28,10,1,116,}, + {1,143,28,5,6,2,33,5,6,2,28,2,6,1,33,2,5,1,33,3,28,1,1,61,28,1,33,1,6,2,33,11,6,2,33,1,6,1,28,3,6,1,33,1,28,2,6,1,5,1,16,1,33,1,6,1,28,1,1,4,28,4,29,1,28,2,6,1,29,1,6,1,33,1,6,1,28,3,6,1,28,5,29,1,28,3,1,11,28,1,7,1,6,2,28,2,6,1,33,5,7,1,28,4,29,1,28,5,1,116,}, + {1,143,28,5,6,1,33,7,5,1,33,5,16,1,5,1,33,1,5,1,28,2,1,60,28,1,29,1,6,3,33,10,6,1,7,1,33,2,6,2,28,1,33,2,28,3,33,1,6,1,28,2,1,5,28,4,6,2,29,1,28,1,6,1,28,7,6,2,29,1,28,6,1,11,28,3,6,1,28,1,29,1,6,1,33,1,6,1,33,4,28,3,6,1,33,1,28,5,1,116,}, + {1,143,28,5,6,1,33,17,6,1,28,1,1,60,28,3,6,2,33,2,5,3,33,1,5,1,33,1,5,1,33,1,29,1,6,3,33,2,28,1,33,1,5,1,7,1,28,4,1,7,28,1,6,1,29,1,6,2,29,1,28,1,6,2,28,3,29,1,6,3,7,1,33,2,29,1,28,5,1,11,28,2,29,1,6,1,28,1,6,1,7,1,33,1,6,1,33,4,6,1,28,1,33,3,28,6,1,115,}, + {1,142,28,6,6,2,33,6,6,2,33,6,7,1,33,2,6,1,28,2,1,60,28,6,6,4,7,1,33,2,8,1,33,1,5,2,17,1,7,2,6,1,33,1,7,1,28,3,1,8,28,2,29,1,6,10,7,3,6,2,33,1,6,1,28,5,1,10,28,3,6,2,28,1,6,1,7,1,33,1,6,1,33,3,7,1,6,2,33,1,6,3,28,5,1,115,}, + {1,141,28,7,33,3,6,1,33,4,7,1,33,5,5,1,33,1,7,1,6,2,7,1,33,1,28,2,1,65,28,19,1,10,28,4,6,3,7,1,6,3,7,4,33,1,7,1,33,2,6,1,28,4,1,10,28,1,29,2,6,1,28,2,6,1,33,2,7,1,33,4,6,2,29,1,28,2,33,1,6,2,28,3,1,115,}, + {1,142,28,7,6,2,33,3,29,1,6,2,33,1,7,1,29,1,33,2,5,1,33,1,7,1,6,2,33,1,5,1,33,1,29,1,28,1,1,93,28,1,29,1,28,5,6,7,29,1,6,3,33,2,6,2,28,2,1,10,28,1,29,1,7,1,33,1,6,1,28,1,6,1,7,1,33,1,7,1,33,4,6,1,28,4,6,1,33,1,28,4,1,115,}, + {1,142,28,6,29,1,28,2,6,1,33,2,28,3,33,1,6,1,28,1,6,1,33,5,7,1,33,4,7,1,28,1,1,92,28,1,6,1,7,1,6,2,29,1,6,2,33,1,7,1,33,1,7,1,29,1,28,2,6,7,28,2,1,11,28,1,6,1,33,2,28,1,6,4,33,4,6,1,28,2,6,1,33,3,6,1,28,1,33,1,28,1,1,115,}, + {1,141,28,7,6,1,28,3,33,1,5,1,6,1,29,1,28,1,6,3,33,4,6,1,7,2,6,1,16,1,33,1,7,1,33,1,29,1,28,1,1,92,28,1,6,1,29,1,6,1,29,2,6,1,33,1,6,1,7,1,6,1,29,3,6,4,29,2,6,1,28,2,1,11,28,1,6,1,7,2,6,1,7,2,33,5,5,1,6,1,28,1,29,1,6,2,33,2,6,1,28,1,7,1,28,1,1,115,}, + {1,141,28,7,33,6,6,1,28,4,33,1,6,2,33,2,6,3,28,1,33,1,16,1,6,1,7,1,6,1,28,1,1,92,28,1,7,1,6,2,29,1,28,1,6,3,33,2,28,1,6,1,29,1,6,4,28,5,1,8,28,5,7,1,33,1,7,1,33,2,7,1,29,1,6,1,33,1,6,4,29,1,28,2,33,2,6,1,28,3,1,115,}, + {1,142,28,5,33,2,29,1,6,1,33,2,5,1,33,1,28,2,6,3,28,1,29,1,5,1,33,1,6,1,29,1,6,2,7,1,33,2,8,1,7,1,28,1,1,92,28,1,6,1,28,1,6,3,28,1,6,4,28,5,29,1,28,3,29,1,28,3,1,7,28,7,6,2,8,1,33,1,6,2,7,1,6,1,33,2,7,1,29,1,28,2,6,2,28,3,1,116,}, + {1,142,28,4,6,1,28,4,33,2,5,1,33,1,6,1,33,1,5,1,33,2,5,1,33,1,5,1,6,1,29,1,33,1,5,1,33,2,12,1,17,1,33,1,7,1,28,1,1,92,28,1,6,1,28,1,29,1,6,1,29,1,28,1,6,2,28,3,6,2,7,1,28,5,6,1,28,3,1,13,28,16,1,1,28,1,1,118,}, + {1,142,28,9,33,3,5,1,33,2,6,1,28,1,6,1,33,2,5,1,33,2,5,1,33,1,6,1,33,1,5,1,33,2,8,1,6,1,28,2,1,90,28,1,6,2,29,1,6,1,28,2,6,1,7,1,28,3,6,1,7,1,29,1,28,9,1,149,}, + {1,143,28,8,6,1,33,1,5,2,33,2,6,1,28,1,6,1,33,2,5,1,33,3,28,2,6,1,33,3,6,1,28,3,1,90,28,1,6,1,29,1,6,1,33,1,29,1,28,1,6,4,28,1,6,2,29,1,28,3,6,1,28,5,1,149,}, + {1,143,28,7,6,1,29,1,6,1,17,1,33,1,28,5,6,2,33,1,29,1,6,1,28,2,29,1,33,2,7,1,29,1,28,4,1,90,28,1,6,1,28,1,29,1,33,1,6,1,28,1,6,3,7,1,29,1,28,1,7,1,6,3,28,2,6,2,28,1,6,1,28,2,1,148,}, + {1,146,28,4,6,1,7,1,33,1,11,1,16,1,28,1,29,1,6,2,28,1,6,1,33,2,6,2,28,2,29,1,28,5,1,93,28,1,6,1,28,2,6,1,28,2,33,2,7,1,6,1,28,1,29,1,33,1,7,1,6,1,33,1,6,1,28,1,33,2,28,1,29,1,28,2,1,148,}, + {1,150,28,8,7,1,6,4,28,6,1,97,28,1,6,1,28,5,7,1,33,2,6,1,29,1,7,2,33,1,6,3,28,1,6,1,28,3,29,1,28,2,1,147,}, + {1,266,28,1,33,1,28,5,29,1,6,1,7,2,28,1,6,3,33,2,28,6,6,1,28,2,1,147,}, + {1,266,28,1,33,1,6,1,28,4,6,4,28,1,6,1,33,1,6,1,29,1,33,1,6,1,28,5,6,1,28,2,1,147,}, + {1,266,28,1,7,1,28,4,6,1,33,2,7,1,6,1,28,1,6,1,7,1,33,1,6,2,28,3,6,1,28,1,29,1,7,1,28,1,29,1,28,1,1,146,}, + {1,264,28,1,1,1,28,1,7,2,28,2,29,1,28,1,6,4,29,1,6,1,33,3,6,1,28,2,6,1,33,1,28,2,33,1,6,1,28,2,1,146,}, + {1,260,28,8,6,1,29,1,6,1,29,1,6,2,28,4,29,1,7,1,28,2,29,1,6,1,33,3,28,2,8,1,7,1,28,1,1,147,}, + {1,261,28,9,7,2,28,7,6,2,28,1,6,1,28,2,5,1,7,1,28,2,6,1,29,1,28,2,1,146,}, + {1,264,28,8,6,3,28,4,6,4,28,2,7,1,6,1,28,4,1,148,}, + {1,268,28,21,1,150,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, + {1,439,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino12.lua b/map_gen/data/presets/dino12.lua new file mode 100644 index 00000000..444f8865 --- /dev/null +++ b/map_gen/data/presets/dino12.lua @@ -0,0 +1,547 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 540, +width = 960, +data = { + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,960,}, + {1,484,6,2,28,2,33,2,6,1,1,469,}, + {1,480,6,1,28,6,33,2,28,4,6,1,1,466,}, + {1,477,29,1,33,1,28,6,33,7,28,3,6,1,29,1,1,463,}, + {1,474,6,2,28,4,33,13,28,1,33,1,28,4,33,1,6,2,29,1,1,2,28,1,1,454,}, + {1,472,6,1,28,4,33,20,28,12,6,3,1,448,}, + {1,469,5,1,28,4,33,34,28,6,33,1,5,1,1,444,}, + {1,467,5,1,28,3,33,43,28,3,1,443,}, + {1,466,28,4,33,46,28,2,5,1,1,441,}, + {1,464,6,1,28,3,33,49,28,3,1,440,}, + {1,460,5,1,33,1,28,5,33,9,5,11,33,1,5,1,33,30,28,2,5,1,1,1,5,1,6,2,1,434,}, + {1,458,6,1,28,4,33,10,5,3,14,4,5,2,14,6,5,2,33,30,28,8,5,1,1,431,}, + {1,452,5,1,6,2,33,1,28,3,33,6,5,10,14,14,5,1,33,3,5,3,33,31,28,2,6,1,1,430,}, + {1,448,6,2,28,6,33,6,5,4,14,2,5,5,14,17,5,9,33,29,6,1,28,2,5,1,1,428,}, + {1,437,29,1,1,2,5,1,6,1,33,1,6,1,33,1,28,5,33,6,5,9,14,3,5,1,14,21,5,10,33,30,28,2,1,428,}, + {1,394,29,2,6,4,28,24,6,2,33,1,6,2,33,1,6,1,28,14,33,8,5,9,14,3,5,4,14,22,5,5,14,2,5,2,33,31,28,1,5,1,1,427,}, + {1,385,5,1,6,2,28,13,33,1,28,1,33,20,28,4,6,1,28,2,6,2,33,16,5,6,14,5,5,1,14,4,5,10,14,16,5,1,33,3,5,1,14,4,5,2,33,31,28,1,1,427,}, + {1,380,29,1,6,1,33,1,28,11,33,47,5,6,33,1,5,4,14,13,5,1,14,3,5,5,14,7,1,7,14,2,5,1,33,3,5,1,14,4,5,2,33,31,28,2,6,1,28,3,6,1,1,421,}, + {1,376,29,1,6,1,28,6,33,32,5,1,33,1,5,2,33,11,5,1,33,2,5,2,33,1,5,15,14,3,5,7,14,9,5,3,14,5,1,10,14,1,5,1,33,3,5,2,14,2,5,2,33,32,28,8,1,420,}, + {1,373,29,1,28,6,33,33,5,6,33,8,5,15,14,1,5,7,14,5,5,6,14,17,11,1,1,10,11,1,5,1,33,3,5,2,14,2,5,2,33,39,28,2,6,1,1,418,}, + {1,369,6,2,28,5,33,24,5,1,33,11,5,7,33,1,5,3,33,3,5,11,14,9,5,1,14,9,5,4,14,16,28,2,16,1,1,10,11,1,5,1,33,3,5,7,33,40,28,2,5,1,1,416,}, + {1,366,5,1,28,8,33,19,5,2,33,2,5,1,33,1,5,1,33,13,5,3,33,2,5,1,33,2,5,1,33,1,5,11,14,9,5,1,14,30,8,1,28,2,11,1,1,11,5,1,33,4,5,6,33,41,28,2,5,1,1,415,}, + {1,365,6,1,28,6,33,17,5,11,33,2,5,1,33,10,5,1,33,11,5,10,14,7,5,3,14,30,33,1,28,1,17,1,1,11,11,1,5,1,33,3,5,7,33,42,28,2,5,1,1,414,}, + {1,364,6,1,28,3,33,20,5,15,33,9,5,4,33,1,5,6,33,2,5,11,14,5,5,5,14,28,1,1,11,1,1,13,11,1,5,1,33,1,5,8,33,44,28,2,1,414,}, + {1,362,28,5,33,19,5,17,33,9,5,25,14,4,5,4,14,29,1,7,11,2,1,6,14,1,33,2,5,8,33,45,28,2,1,413,}, + {1,361,28,4,33,6,5,1,33,3,5,3,33,5,5,21,33,1,5,1,33,7,5,2,33,1,5,23,14,35,1,6,11,1,28,2,11,1,1,5,14,1,33,2,5,2,14,1,5,4,33,47,28,1,5,1,1,412,}, + {1,360,6,1,28,2,33,5,5,7,14,3,33,4,5,16,33,1,5,5,33,1,5,2,33,4,5,1,33,1,5,2,33,2,5,11,33,2,5,9,14,35,1,6,11,1,27,1,9,1,1,6,14,1,33,2,5,7,33,47,28,1,6,1,1,412,}, + {1,357,29,2,28,4,33,4,5,7,14,3,5,1,33,3,5,23,33,1,5,2,33,4,5,1,33,6,5,22,14,34,1,7,11,2,1,6,14,1,33,2,5,2,14,1,5,4,33,47,28,1,33,1,1,412,}, + {1,356,28,6,33,6,5,1,33,1,5,2,14,5,5,1,33,3,5,22,33,2,5,2,33,11,5,22,14,34,1,7,11,1,1,7,14,1,5,3,14,2,5,4,33,47,28,1,6,1,1,412,}, + {1,356,28,4,33,4,5,6,14,6,5,1,33,3,5,6,33,4,5,13,33,2,5,2,33,9,5,14,33,1,5,10,14,4,5,1,14,27,1,7,11,1,1,8,14,6,5,4,33,47,28,1,33,1,1,1,6,1,28,1,6,1,1,408,}, + {1,354,6,1,28,4,33,4,5,4,14,9,5,1,33,3,5,6,33,1,5,2,33,1,5,4,14,4,5,11,33,7,5,34,14,23,1,16,14,7,5,2,33,48,28,7,5,1,1,406,}, + {1,353,28,4,33,4,5,2,14,12,5,1,33,3,5,16,14,4,5,11,33,6,5,35,14,22,11,1,1,14,14,5,5,2,14,1,5,2,33,48,28,3,33,3,28,2,5,1,1,405,}, + {1,352,28,4,33,3,5,3,14,12,5,1,33,4,5,28,14,1,5,3,33,4,5,11,33,1,5,24,14,23,1,14,14,4,5,6,33,55,28,2,5,1,1,404,}, + {1,350,5,1,6,1,28,3,33,3,5,2,14,13,5,1,33,4,5,29,14,1,5,3,33,5,5,2,33,1,5,5,33,6,5,21,14,23,1,13,14,5,5,6,33,56,28,2,1,404,}, + {1,350,28,4,33,3,5,2,14,13,5,1,33,4,5,35,33,20,5,19,14,12,5,1,14,11,1,11,11,1,14,8,5,3,33,55,28,4,1,403,}, + {1,348,5,1,28,3,33,4,5,3,14,12,33,5,5,6,14,3,5,30,33,4,5,2,33,11,5,18,14,12,5,4,14,12,1,7,14,11,5,3,33,56,28,1,6,1,1,403,}, + {1,347,28,4,33,3,5,3,14,10,5,2,33,5,5,5,14,6,5,23,33,2,5,7,33,2,5,3,33,11,5,17,14,4,5,12,14,14,11,1,1,1,14,15,5,2,33,56,28,1,6,1,1,403,}, + {1,346,28,4,33,5,5,5,14,2,5,3,33,7,5,5,14,8,5,15,14,2,5,6,33,2,5,7,33,2,5,3,33,4,5,2,33,6,5,16,14,1,5,16,14,29,5,2,33,55,28,1,33,1,28,2,1,403,}, + {1,343,16,1,28,5,33,21,5,7,14,6,5,29,33,1,5,1,33,1,5,2,33,2,5,3,33,4,5,4,33,5,5,1,33,7,5,6,14,2,5,16,14,29,5,1,33,57,28,3,1,403,}, + {1,343,28,5,33,8,5,1,33,6,5,14,14,6,5,11,14,2,5,18,33,2,5,1,33,3,5,2,33,5,5,2,33,15,5,5,14,1,5,12,14,1,5,6,14,27,5,1,33,56,28,3,6,1,1,403,}, + {1,342,28,5,33,7,5,3,33,5,5,16,14,6,5,8,14,5,5,7,14,3,5,6,33,3,5,1,33,4,5,1,33,13,5,3,33,7,5,15,14,4,5,6,14,25,5,3,33,56,28,3,5,1,1,402,}, + {1,341,5,1,28,3,33,8,5,27,14,4,5,3,14,2,5,3,14,5,5,8,14,2,5,6,33,2,5,2,33,3,5,1,33,16,5,2,33,7,5,14,14,4,5,6,14,23,5,4,33,58,28,3,1,402,}, + {1,341,6,1,28,3,33,6,5,31,14,2,5,2,14,2,5,4,14,4,5,16,33,3,5,2,33,23,5,21,14,3,5,6,14,24,5,3,33,59,28,2,5,1,1,401,}, + {1,341,28,3,33,6,5,5,14,1,5,26,14,5,5,25,33,3,5,3,33,3,5,1,33,18,5,11,33,1,5,18,14,24,5,3,33,60,28,2,1,401,}, + {1,341,28,2,33,7,5,5,14,3,5,24,14,5,5,26,33,1,5,3,33,1,5,1,33,2,5,1,33,19,5,6,33,2,5,2,33,2,5,17,14,24,5,2,33,60,28,3,1,401,}, + {1,342,28,2,33,4,5,4,14,6,5,24,14,5,5,26,33,1,5,3,33,1,5,1,33,23,5,5,33,3,5,1,33,2,5,2,33,2,5,14,14,15,5,1,14,6,5,3,33,60,28,3,1,401,}, + {1,343,28,2,33,3,5,4,14,7,5,25,14,4,5,32,33,6,5,1,33,9,5,4,33,2,5,5,33,4,5,3,33,5,5,1,33,3,5,1,33,1,5,6,14,15,5,3,14,2,5,4,33,62,28,3,1,400,}, + {1,344,28,3,33,2,5,3,14,6,5,5,14,2,5,19,14,2,5,1,14,2,5,23,33,1,5,7,33,14,5,5,33,1,5,1,33,1,5,9,33,12,5,8,14,15,5,9,33,62,28,4,1,399,}, + {1,345,6,1,28,2,33,3,5,23,14,3,5,21,33,1,5,14,33,3,5,4,33,12,5,3,33,4,5,2,33,1,5,8,33,13,5,8,14,16,5,1,14,1,5,6,33,64,28,2,5,1,1,398,}, + {1,346,6,1,28,2,33,2,5,23,14,4,5,20,33,9,5,2,33,23,5,2,33,9,5,7,33,14,5,8,14,18,5,5,33,64,28,2,6,1,1,398,}, + {1,347,28,3,33,5,5,21,14,1,5,17,33,2,5,2,33,10,5,1,33,39,5,1,33,15,5,11,14,13,5,7,33,64,28,3,1,398,}, + {1,348,28,3,33,5,5,28,14,2,5,8,33,2,5,3,33,67,5,11,14,9,5,8,33,65,28,3,1,398,}, + {1,348,28,4,33,6,5,2,33,2,5,18,14,6,5,9,33,1,5,4,33,67,5,10,14,7,5,10,33,64,28,1,33,1,28,2,1,398,}, + {1,347,29,1,28,6,6,1,33,12,5,1,33,2,5,2,33,1,5,7,14,6,5,2,14,3,5,9,33,68,5,10,14,6,5,4,33,71,28,3,5,1,1,397,}, + {1,347,28,9,6,1,33,18,5,5,14,6,5,2,14,2,5,5,33,1,5,3,33,70,5,20,33,71,28,2,1,398,}, + {1,347,28,10,6,1,33,17,5,4,14,2,5,1,14,4,5,2,14,2,5,4,33,2,5,2,33,72,5,19,33,71,28,2,1,398,}, + {1,346,16,1,28,12,6,1,13,1,33,4,5,1,14,1,13,1,28,3,6,1,33,4,5,18,33,2,5,1,33,75,5,3,33,6,5,6,33,72,28,2,6,1,1,398,}, + {1,346,29,1,28,16,6,1,33,1,14,2,28,7,33,3,5,7,33,2,5,5,33,1,5,1,33,90,5,1,33,75,28,2,29,1,1,398,}, + {1,346,29,1,28,19,13,1,28,9,33,2,5,6,33,3,5,6,33,88,5,1,33,77,28,2,1,399,}, + {1,346,28,17,16,1,28,13,6,1,33,2,5,13,33,87,5,2,33,77,28,2,1,399,}, + {1,346,28,16,1,2,16,1,28,14,33,1,5,14,33,87,5,1,33,77,28,2,6,1,1,398,}, + {1,346,28,15,16,1,1,3,28,15,33,1,5,9,33,1,5,3,33,166,28,2,5,1,1,397,}, + {1,346,28,14,15,1,1,4,28,15,6,1,33,5,5,4,33,3,5,1,33,166,28,3,1,397,}, + {1,346,28,14,1,5,29,1,28,15,33,6,5,1,33,91,5,2,33,80,28,2,1,397,}, + {1,347,28,13,1,5,29,1,28,15,9,1,14,4,33,92,5,4,33,79,28,2,1,397,}, + {1,348,28,11,1,6,29,1,28,14,13,1,14,5,13,1,30,1,28,1,6,1,33,89,5,3,33,79,28,2,1,397,}, + {1,349,28,10,29,1,1,3,29,1,28,16,9,1,14,3,15,1,14,1,13,1,28,5,6,1,33,86,5,1,33,1,5,2,33,78,28,2,1,397,}, + {1,346,29,2,6,1,28,11,29,1,28,2,29,1,28,17,13,1,14,1,15,3,26,1,28,7,6,1,33,84,5,1,33,1,5,2,33,1,5,1,33,76,28,2,6,1,1,396,}, + {1,339,16,1,29,1,6,2,28,40,13,1,9,2,26,1,28,10,6,1,33,74,5,1,33,6,5,1,33,1,5,5,33,75,28,2,6,1,1,396,}, + {1,333,29,1,6,2,28,49,26,1,29,1,28,12,33,27,5,1,33,36,5,5,33,3,5,3,33,6,5,6,33,76,28,1,6,1,1,396,}, + {1,326,29,1,6,3,28,69,33,1,14,1,5,1,33,8,5,3,33,12,5,1,33,1,5,3,33,33,5,1,14,2,5,11,33,2,5,5,33,77,28,2,5,1,1,396,}, + {1,320,29,1,6,1,28,77,16,1,1,1,14,2,5,4,33,5,14,2,33,2,6,4,28,1,6,1,33,4,5,1,33,12,5,1,33,2,5,1,33,5,5,2,33,2,5,3,33,3,5,4,14,12,5,4,33,1,5,5,33,3,5,1,33,73,28,2,1,397,}, + {1,314,29,1,6,2,28,82,14,3,1,3,14,2,33,2,14,3,13,1,28,10,33,1,5,2,33,1,5,1,14,3,5,2,33,2,5,2,14,3,5,1,14,25,11,2,14,6,5,10,33,3,5,1,33,71,28,1,33,1,28,1,5,1,1,397,}, + {1,308,16,1,6,2,28,87,29,1,9,2,13,2,9,3,13,1,6,1,9,1,14,3,29,1,28,10,30,1,14,4,1,4,14,5,1,33,14,6,5,8,33,75,28,2,5,1,1,398,}, + {1,303,16,1,29,1,6,1,28,92,30,3,13,5,9,1,15,1,30,1,28,1,13,1,9,1,28,12,14,2,11,1,1,8,14,4,11,1,1,31,14,6,5,7,33,75,28,2,1,399,}, + {1,298,16,1,6,1,28,100,29,1,30,1,13,4,9,2,28,16,14,3,11,8,1,1,11,2,14,2,16,1,11,1,1,28,11,1,14,6,5,5,33,77,28,2,1,399,}, + {1,292,16,1,6,2,28,106,30,4,13,1,26,2,28,16,14,4,11,4,1,1,11,6,1,2,11,5,1,25,14,7,5,4,33,76,28,4,1,398,}, + {1,288,6,2,28,112,30,2,29,1,30,1,29,1,28,18,8,1,15,1,11,2,1,4,11,2,1,3,11,1,1,5,11,4,1,23,14,1,5,2,14,4,5,4,33,75,28,1,33,3,28,1,5,1,1,397,}, + {1,283,6,1,28,106,1,2,15,1,28,9,30,2,29,2,28,2,29,1,16,1,28,14,1,1,29,1,10,1,28,2,27,1,9,1,15,1,9,1,13,1,9,1,14,1,11,1,1,10,11,3,1,22,14,1,5,3,14,2,5,3,33,79,28,3,1,397,}, + {1,277,28,1,6,2,28,8,6,11,30,2,28,3,30,1,28,84,1,3,16,1,28,9,30,2,28,4,1,2,28,13,16,1,1,4,9,1,29,1,28,6,9,1,11,1,1,12,11,3,1,5,11,2,1,13,14,5,5,4,33,74,28,1,33,3,28,3,1,397,}, + {1,272,29,1,6,1,28,7,6,8,33,2,6,1,33,2,6,5,30,2,28,83,29,1,28,3,1,4,29,1,28,14,1,3,30,1,28,12,1,8,28,6,29,2,6,1,16,1,14,1,11,2,1,1,11,4,9,1,10,1,28,3,6,1,11,1,1,2,16,1,12,1,1,17,14,1,5,4,33,79,28,2,1,397,}, + {1,267,16,1,6,1,28,10,6,4,33,10,6,5,28,85,1,9,29,1,28,13,1,4,16,1,28,11,1,9,28,8,29,1,28,9,29,1,28,1,1,3,28,1,29,1,14,1,11,1,14,2,11,4,1,8,16,1,11,1,1,4,14,1,5,3,33,80,28,1,1,397,}, + {1,262,29,1,6,1,28,10,6,4,33,13,6,3,28,89,29,1,1,8,29,1,28,11,29,1,1,6,28,10,16,1,1,9,28,8,9,1,1,13,28,2,8,1,16,1,15,1,14,1,11,2,14,1,11,1,1,8,11,1,9,1,11,1,1,4,14,2,5,1,33,78,28,1,33,2,28,1,1,397,}, + {1,256,29,1,6,2,28,10,6,3,33,15,6,2,28,94,29,1,1,8,28,11,16,1,1,7,28,9,1,11,28,9,1,8,6,1,28,2,29,1,28,2,6,1,9,1,16,1,15,1,14,3,11,1,1,8,11,1,16,1,1,6,14,1,5,2,33,79,28,3,1,397,}, + {1,251,29,1,6,2,28,9,6,5,33,15,6,2,28,98,29,1,1,9,28,9,1,10,28,7,16,1,1,11,28,9,16,1,1,5,5,1,28,2,6,1,28,3,30,1,13,1,9,1,15,3,14,1,11,1,1,8,11,1,16,1,17,1,1,5,14,2,5,1,33,80,28,2,6,1,1,397,}, + {1,246,16,1,29,1,6,1,28,8,6,8,33,14,6,3,28,102,1,9,28,8,1,12,29,1,28,4,16,1,1,12,28,10,16,1,1,3,28,2,33,1,5,1,14,1,9,1,30,1,13,3,9,1,14,3,11,1,1,9,11,1,10,1,11,1,1,5,14,2,5,1,33,80,28,2,5,1,1,397,}, + {1,241,16,1,29,1,6,1,28,11,6,3,33,15,6,4,28,107,1,9,16,1,28,5,16,1,1,31,28,11,1,1,6,1,28,1,6,1,33,1,14,1,1,1,14,1,13,1,30,2,26,1,9,1,14,1,11,2,1,11,16,1,8,1,1,4,14,4,5,1,33,80,28,4,1,396,}, + {1,236,16,1,29,1,6,1,28,9,6,1,30,1,6,5,33,15,6,1,30,1,28,112,1,11,29,1,28,2,16,1,1,32,30,1,28,12,5,2,14,1,1,1,11,1,9,1,26,1,30,1,26,1,9,1,14,1,11,2,1,7,11,4,15,1,28,1,11,1,1,3,14,5,33,84,28,1,6,1,1,395,}, + {1,232,29,1,6,1,28,10,6,6,33,1,6,1,33,11,6,1,33,1,6,2,28,117,1,37,16,2,1,8,29,1,28,10,6,1,5,1,14,2,1,2,14,1,13,1,30,2,9,1,14,1,11,2,1,6,11,1,15,1,25,1,9,1,11,1,15,1,29,1,15,1,1,3,14,5,5,1,33,84,28,2,6,1,1,394,}, + {1,226,16,1,29,1,28,9,30,1,6,8,33,14,6,2,28,34,30,2,6,1,30,5,6,1,30,6,28,73,1,37,28,4,1,6,30,1,28,10,33,1,5,1,14,1,1,2,11,1,13,1,30,1,26,1,9,1,14,1,11,2,1,5,11,1,9,1,28,2,30,1,14,1,9,1,6,1,15,1,1,3,14,5,5,2,33,85,28,1,33,1,1,394,}, + {1,222,29,1,6,1,28,10,6,11,33,6,6,6,28,28,30,2,28,1,30,6,6,6,30,4,6,6,30,4,28,1,30,2,28,67,1,36,29,1,28,5,16,1,1,4,28,11,6,1,14,1,16,1,1,2,15,1,30,1,26,1,9,1,14,2,11,1,1,5,15,1,26,1,28,2,13,1,11,2,15,1,11,1,1,4,14,6,5,1,33,85,28,1,33,1,1,394,}, + {1,216,16,1,6,2,28,8,30,1,6,1,30,1,6,8,33,3,6,2,33,5,6,4,28,27,30,5,6,24,30,6,28,70,16,1,1,35,28,3,26,2,28,2,15,1,1,4,28,12,16,1,1,1,9,1,30,1,26,1,15,2,14,2,1,4,11,3,9,2,15,1,11,2,1,6,14,7,5,1,33,84,28,3,1,394,}, + {1,211,6,1,29,1,6,1,28,11,6,1,30,2,6,13,33,1,6,4,28,27,30,1,28,1,30,2,6,31,30,7,28,69,29,1,1,33,16,1,28,5,26,2,28,2,15,1,1,2,28,13,14,2,13,2,9,2,15,1,14,1,1,3,11,2,17,1,11,2,1,1,11,2,1,9,14,5,5,2,33,84,28,3,1,394,}, + {1,207,16,1,6,1,28,9,30,6,28,1,30,1,28,3,6,12,30,1,28,25,30,1,6,42,30,5,28,69,29,1,1,33,28,11,1,2,29,1,28,12,13,3,25,1,9,1,15,1,14,1,1,1,11,5,1,3,11,1,15,1,1,9,14,5,5,3,33,85,28,1,33,1,1,394,}, + {1,202,6,2,28,9,30,4,28,10,30,2,6,4,30,1,28,29,6,42,30,1,6,5,30,3,28,71,16,1,1,31,16,1,28,12,15,1,1,1,28,13,13,2,9,2,14,1,11,3,15,1,16,1,11,1,1,2,11,1,9,2,11,1,1,6,14,6,5,2,33,88,28,2,1,394,}, + {1,196,29,2,28,60,30,1,6,46,30,9,28,71,29,1,1,31,16,1,28,13,29,1,28,13,29,1,25,1,9,1,14,2,11,1,14,1,9,2,11,1,1,3,14,1,16,1,11,1,1,4,14,7,5,2,33,90,28,2,6,1,1,393,}, + {1,192,6,2,28,9,30,1,28,1,30,1,28,45,30,4,6,15,33,1,6,3,33,1,6,31,30,1,6,2,30,1,6,1,30,4,28,71,1,22,29,2,28,1,16,1,1,4,29,1,1,1,28,28,9,1,14,1,15,1,9,1,25,2,15,1,11,4,14,1,1,5,14,4,5,3,14,1,5,2,33,91,28,2,6,1,1,393,}, + {1,187,16,1,6,1,28,57,30,1,6,9,33,7,6,7,33,3,6,7,33,3,6,1,33,1,6,2,33,1,6,23,30,4,28,71,1,20,16,1,28,6,29,2,28,15,29,2,28,14,9,2,29,1,30,1,9,1,14,2,8,1,13,1,16,1,14,1,1,4,14,3,5,6,14,1,5,2,33,91,28,2,6,1,1,393,}, + {1,182,16,1,29,1,6,1,28,10,30,2,28,3,30,1,28,39,30,5,6,11,33,8,6,5,33,5,6,1,33,1,6,2,33,3,6,5,33,1,6,4,33,1,6,20,30,4,28,70,16,1,28,4,16,1,1,5,16,1,28,3,1,5,30,1,28,23,29,2,28,14,13,1,30,1,29,1,13,1,14,1,13,1,28,1,30,1,16,1,11,1,1,3,14,4,5,1,33,3,5,5,33,93,28,1,6,1,1,393,}, + {1,178,16,1,6,1,28,9,30,5,28,42,30,2,6,21,33,7,6,2,33,8,6,2,33,1,6,12,33,1,6,20,30,5,28,75,29,1,1,3,16,1,28,5,16,1,1,3,29,1,28,24,29,1,28,13,30,2,28,1,9,1,13,1,29,2,9,1,11,1,1,3,14,4,5,2,33,1,5,1,33,1,5,5,33,92,28,1,33,1,28,2,1,393,}, + {1,172,16,1,28,1,6,1,28,10,6,2,30,3,28,44,30,1,6,2,30,1,6,2,30,1,6,17,33,4,6,1,33,13,6,2,33,1,6,4,33,1,6,5,33,3,6,19,30,7,28,76,1,2,28,8,1,2,28,25,29,1,28,12,29,1,9,1,30,1,9,1,13,1,28,1,8,1,14,1,1,3,14,5,5,3,33,1,5,3,33,1,5,1,33,93,28,1,33,2,28,3,1,392,}, + {1,168,29,1,6,1,28,10,30,1,6,5,30,2,28,41,30,3,28,6,30,4,6,12,33,8,6,1,33,5,6,1,33,7,6,2,33,6,6,4,33,3,6,15,30,2,6,1,30,1,6,1,30,2,28,3,30,1,28,87,29,1,1,1,28,37,13,1,14,2,11,1,9,1,13,1,14,11,5,1,33,1,5,5,33,94,28,1,33,1,5,1,33,2,28,2,6,1,1,391,}, + {1,163,16,1,6,2,28,10,30,1,6,5,30,1,6,1,30,3,28,51,30,3,6,13,33,12,6,1,33,12,6,2,33,4,6,25,30,3,28,3,30,2,28,87,1,1,28,30,30,1,13,1,9,1,13,2,9,1,14,1,11,1,1,2,14,14,5,6,33,96,5,2,33,3,28,2,5,1,1,390,}, + {1,159,16,1,6,2,28,10,30,1,6,11,30,1,28,52,30,4,6,11,33,27,6,1,33,6,6,24,30,6,28,117,26,1,9,2,14,2,11,1,14,1,11,1,1,5,11,1,14,13,5,4,33,96,28,1,33,1,5,1,33,5,28,2,1,390,}, + {1,154,16,1,6,1,28,9,30,1,28,1,6,15,30,1,28,53,30,3,6,11,33,36,6,21,30,9,28,117,30,1,14,3,11,2,1,6,14,3,5,1,33,1,5,1,14,1,5,3,14,4,5,3,33,107,28,1,6,1,1,389,}, + {1,149,16,1,29,2,28,10,30,1,28,1,30,2,6,11,30,3,28,27,30,3,28,22,30,4,6,12,33,39,6,22,30,7,28,103,26,1,29,1,28,13,14,3,11,1,1,1,11,1,1,3,14,4,5,1,33,2,5,11,33,108,28,2,1,389,}, + {1,144,16,1,29,1,6,1,28,12,6,1,30,1,6,6,33,1,6,6,28,27,30,4,28,26,30,2,6,16,33,6,6,1,33,19,6,1,33,4,6,1,33,2,6,2,33,1,6,24,30,6,28,103,13,1,26,1,28,13,14,1,11,1,14,1,11,1,1,2,11,1,14,5,5,1,33,4,5,8,33,110,28,2,1,389,}, + {1,140,29,1,6,1,28,10,30,1,28,1,30,1,6,14,28,26,30,4,6,1,30,4,28,20,30,2,28,2,30,3,6,1,30,1,6,16,33,26,6,2,33,1,6,1,33,5,6,1,33,1,6,24,30,6,28,103,9,1,26,1,28,12,30,1,14,1,11,1,1,2,14,7,5,5,33,1,5,2,33,1,5,1,33,114,28,2,1,389,}, + {1,135,29,2,6,1,28,13,6,1,30,1,6,10,28,27,30,1,6,6,30,16,28,3,30,2,28,2,30,2,6,2,30,8,6,17,33,29,6,1,33,2,6,29,30,5,28,80,29,1,28,22,30,1,14,1,9,1,26,1,28,11,14,1,1,1,14,9,5,6,33,119,28,2,1,389,}, + {1,131,29,1,6,1,28,16,30,3,6,6,30,1,28,25,30,1,6,17,30,3,6,7,30,2,6,4,30,2,6,5,30,1,6,2,30,2,6,13,33,1,6,1,33,2,6,1,33,30,6,33,30,4,28,79,29,1,28,23,13,1,14,1,15,1,25,1,28,9,13,1,14,10,5,2,33,1,5,5,33,120,28,1,1,389,}, + {1,125,16,1,29,1,6,1,28,19,30,2,6,1,30,4,28,23,30,4,6,43,30,2,6,18,33,2,6,2,33,31,6,28,30,2,6,2,30,3,28,104,13,1,14,2,15,1,29,1,28,6,30,1,15,1,14,9,5,3,33,127,28,1,6,1,1,388,}, + {1,120,16,1,29,1,6,1,28,24,30,1,28,25,30,1,6,32,33,1,6,15,30,4,6,19,33,33,6,29,30,3,6,1,30,3,28,103,29,1,14,2,11,2,26,1,28,4,13,1,14,11,5,2,33,129,28,2,1,388,}, + {1,116,16,1,29,1,6,1,28,50,6,15,33,3,6,3,33,1,6,2,33,7,6,1,33,6,6,14,30,5,6,15,33,1,6,6,33,21,6,1,33,6,6,26,30,1,6,1,30,1,6,5,30,4,28,103,13,1,14,1,1,3,14,1,13,2,9,1,14,12,5,1,33,131,28,2,1,388,}, + {1,112,6,1,28,48,30,1,28,1,30,1,6,8,33,3,6,2,33,31,6,33,33,1,6,6,33,12,6,2,33,5,6,3,33,8,6,28,30,8,28,6,30,1,28,96,15,1,11,1,1,3,11,1,14,14,5,1,33,132,28,1,33,1,1,388,}, + {1,107,16,1,6,2,28,47,6,15,33,37,6,1,33,1,6,30,33,4,6,5,33,9,6,3,33,5,6,3,33,6,6,29,30,8,28,94,13,1,28,8,30,1,14,1,1,4,14,12,5,3,33,133,28,1,33,1,1,1,5,1,6,2,5,1,1,383,}, + {1,102,16,1,29,1,28,49,6,4,33,6,6,1,33,2,6,2,33,43,6,30,33,2,6,7,33,3,6,3,33,2,6,1,33,4,6,1,33,3,6,3,33,5,6,29,30,8,28,95,13,1,26,1,28,6,30,1,9,1,11,1,1,2,11,1,14,12,5,4,33,133,28,1,6,2,28,5,1,382,}, + {1,98,28,1,6,1,28,47,30,1,6,6,33,57,6,31,33,1,6,1,33,3,6,8,33,5,6,6,33,1,6,4,33,4,6,29,30,2,28,5,30,1,28,94,30,1,14,1,9,1,28,5,30,1,14,6,5,3,14,8,5,4,33,134,28,3,33,4,28,2,1,381,}, + {1,95,29,1,28,46,30,1,6,7,33,2,6,1,33,59,6,1,33,1,6,28,33,3,6,8,33,1,6,2,33,5,6,13,33,1,6,28,30,1,28,102,9,1,11,2,9,1,29,1,28,1,13,1,9,1,14,7,5,3,14,7,5,3,33,136,28,2,33,5,28,2,6,1,1,380,}, + {1,90,16,1,6,1,28,45,30,1,6,7,33,67,6,1,33,1,6,32,30,1,6,6,33,3,6,1,33,2,6,1,33,1,6,2,33,2,6,1,33,2,6,30,30,5,28,102,30,1,14,1,1,1,11,1,14,1,9,1,14,11,5,3,14,4,5,5,33,136,28,1,33,7,28,2,5,1,1,379,}, + {1,87,29,1,28,43,30,2,6,8,33,74,6,32,30,1,6,3,33,1,6,1,33,1,6,3,33,2,6,4,33,4,6,29,30,4,28,103,29,1,13,1,14,2,1,1,14,14,5,9,33,1,5,2,33,145,28,2,6,1,1,378,}, + {1,82,29,1,6,1,28,43,30,1,6,8,33,74,6,2,33,1,6,1,33,2,6,31,30,1,6,6,33,1,6,1,33,1,6,1,33,2,6,4,33,3,6,25,30,8,28,93,13,1,30,1,28,6,30,1,13,1,14,18,5,8,33,151,28,3,1,377,}, + {1,78,29,1,6,1,28,40,30,2,6,9,33,79,6,1,33,4,6,4,33,1,6,33,33,1,6,2,33,4,6,4,33,3,6,1,33,1,6,6,33,1,6,1,33,2,6,13,30,3,28,96,30,1,15,1,14,3,15,1,9,2,14,22,5,7,33,153,28,2,1,377,}, + {1,74,16,1,29,1,28,37,30,2,6,1,30,1,6,11,33,83,6,1,33,3,6,1,33,1,6,6,33,1,6,28,33,17,6,3,33,6,6,4,30,2,6,6,30,4,28,96,29,1,9,1,14,1,11,1,1,6,14,20,5,3,33,1,5,4,33,153,28,2,5,1,1,376,}, + {1,71,16,1,28,38,30,1,6,12,33,91,6,7,33,1,6,28,33,1,6,1,33,17,6,3,33,3,6,1,33,1,6,5,30,1,28,1,30,2,6,1,30,5,28,84,33,2,6,2,28,8,30,1,9,1,14,2,11,1,1,5,14,12,5,5,14,1,5,7,33,158,28,2,29,1,1,376,}, + {1,68,28,38,30,2,6,9,33,96,6,40,33,9,6,1,33,5,6,13,30,2,28,1,30,3,28,88,33,9,14,26,5,5,14,1,5,5,33,160,28,2,5,1,1,376,}, + {1,65,28,38,30,2,6,4,33,3,6,2,33,94,6,1,33,1,6,1,33,2,6,1,33,2,6,38,33,13,6,11,30,3,28,92,33,10,5,1,14,8,5,2,14,2,5,1,14,16,5,7,33,1,5,1,33,7,5,1,33,152,28,1,1,377,}, + {1,62,16,1,29,1,28,35,30,2,6,5,33,107,6,35,33,3,6,4,33,4,6,2,33,1,6,13,30,1,6,2,30,2,28,92,33,11,5,2,14,29,5,7,33,2,5,1,33,7,5,1,33,40,5,1,33,108,28,2,1,377,}, + {1,60,28,1,1,2,29,1,28,30,30,2,6,7,33,106,6,4,33,1,6,2,33,1,6,32,33,1,6,1,33,3,6,2,33,1,6,12,30,1,6,2,30,7,28,91,33,11,5,4,14,22,5,2,14,5,5,8,33,50,5,1,33,108,28,2,1,377,}, + {1,57,16,1,28,33,6,5,33,110,6,1,33,4,6,5,33,1,6,49,30,3,28,1,30,3,28,94,6,1,33,9,5,5,14,9,5,1,14,11,5,8,14,2,5,3,33,1,5,5,33,49,5,3,33,107,28,1,5,1,1,377,}, + {1,51,16,1,28,34,30,1,6,9,33,110,6,1,33,1,6,2,33,1,6,48,30,1,28,6,30,4,28,97,33,9,5,6,14,10,5,3,14,1,5,1,14,6,5,1,33,1,5,10,33,55,5,6,33,104,28,1,6,1,1,378,}, + {1,48,29,2,28,30,30,2,6,8,33,115,6,2,33,1,6,4,33,2,6,40,30,2,6,1,28,8,30,2,28,99,33,9,5,1,14,3,5,2,14,15,5,2,14,4,5,1,33,2,5,11,33,50,5,11,33,102,28,2,1,379,}, + {1,46,29,1,28,29,30,1,6,8,33,121,6,2,33,6,6,16,30,6,6,1,30,1,6,1,30,17,28,110,33,9,5,1,14,19,5,1,14,6,5,2,33,1,5,1,14,1,5,9,33,48,5,13,33,102,28,2,1,379,}, + {1,45,16,1,28,28,6,6,33,126,6,1,33,9,6,9,30,9,28,2,30,8,28,4,30,8,28,110,33,8,5,3,14,17,5,2,14,6,5,3,14,3,5,4,33,50,5,14,33,104,28,1,6,1,1,378,}, + {1,45,28,26,30,2,6,6,33,127,6,1,33,6,6,9,30,3,28,7,30,1,28,6,30,1,28,7,30,5,28,114,33,7,5,8,14,7,5,4,14,11,5,1,14,4,5,4,33,7,5,1,33,42,5,14,33,104,28,2,1,378,}, + {1,45,28,25,30,1,6,3,33,3,6,1,33,130,6,10,30,6,28,19,30,1,28,1,30,2,28,119,33,7,5,14,14,12,5,7,14,2,5,3,33,50,5,14,33,7,5,1,33,98,28,1,6,1,1,9,29,2,1,366,}, + {1,45,28,24,30,1,6,4,33,3,6,1,33,128,6,2,33,1,6,6,30,3,28,1,30,2,28,145,33,9,5,13,14,10,5,12,33,53,5,2,33,3,5,7,33,1,5,4,33,3,5,1,33,96,28,2,6,1,1,3,5,1,28,9,5,1,1,363,}, + {1,45,28,24,30,1,6,4,33,130,6,8,30,9,28,146,33,7,5,19,14,4,5,14,33,2,5,2,33,49,5,10,33,2,5,4,33,101,28,7,33,7,28,2,5,1,1,362,}, + {1,45,6,1,28,23,30,1,6,3,33,4,6,1,33,124,6,11,30,6,28,148,33,6,5,20,14,3,5,5,33,4,5,2,33,1,5,8,33,11,5,1,33,36,5,1,33,2,5,13,33,116,28,3,1,361,}, + {1,45,29,1,28,23,30,1,6,3,33,3,6,1,33,121,6,1,33,1,6,10,30,3,28,155,33,6,5,13,14,9,5,4,33,8,5,7,33,1,5,1,33,9,5,2,33,28,5,3,33,2,5,19,33,118,28,2,1,360,}, + {1,45,28,24,30,1,6,6,33,121,6,11,28,1,30,2,28,157,33,6,5,13,14,8,5,22,33,10,5,2,33,27,5,4,33,1,5,11,33,1,5,3,33,2,5,2,33,9,5,3,33,107,28,2,1,359,}, + {1,46,28,23,30,1,6,5,33,118,6,1,33,1,6,11,30,2,28,1,30,1,28,2,30,2,28,154,33,6,5,14,14,4,5,3,33,3,5,18,33,6,5,2,33,31,5,20,33,4,5,1,33,7,5,5,33,107,28,2,5,1,1,358,}, + {1,46,28,23,30,2,6,3,33,118,6,11,30,8,28,158,33,8,5,17,33,1,5,3,33,6,5,4,33,1,5,1,33,7,5,2,33,3,5,2,33,27,5,2,33,2,5,2,33,2,5,16,33,10,5,8,33,107,28,1,6,1,1,358,}, + {1,46,29,1,28,22,30,1,6,5,33,113,6,11,30,7,28,164,33,9,5,22,33,2,5,4,33,40,5,2,33,1,5,6,33,1,5,19,33,4,5,1,33,6,5,3,33,1,5,2,33,107,28,2,1,358,}, + {1,47,28,23,30,1,6,4,33,109,6,9,30,9,28,168,6,1,33,12,5,7,33,1,5,8,33,4,5,4,33,40,5,5,33,6,5,24,33,3,5,5,33,1,5,2,33,107,28,2,5,1,1,357,}, + {1,47,28,23,30,1,6,3,33,101,6,1,33,2,6,12,30,2,6,1,30,4,28,175,33,7,5,9,33,1,5,1,33,2,5,1,33,10,5,1,33,1,5,2,33,39,5,1,33,11,5,4,33,1,5,29,33,109,28,1,29,1,1,357,}, + {1,48,28,23,6,4,33,96,6,16,30,7,28,178,33,8,5,2,33,7,5,3,33,5,5,1,33,1,5,1,33,2,5,2,33,1,5,2,33,1,5,1,33,49,5,2,33,5,5,13,14,1,5,11,33,1,5,1,33,36,5,1,33,2,5,3,33,66,28,2,6,1,1,357,}, + {1,48,28,23,6,5,33,92,6,14,30,6,28,185,33,20,5,1,33,1,5,14,33,35,6,1,28,6,6,1,33,10,5,1,33,2,5,7,33,2,5,4,14,2,5,8,33,38,5,10,33,65,28,1,6,1,1,357,}, + {1,48,29,1,28,22,30,2,6,5,33,85,6,14,30,1,6,1,30,3,28,192,33,23,5,12,33,30,6,2,28,4,6,3,5,1,6,2,28,4,33,10,5,7,33,5,5,11,33,38,5,9,33,66,28,2,1,357,}, + {1,48,16,1,28,23,30,1,6,6,33,82,6,11,13,1,30,4,28,199,33,59,6,1,28,5,6,1,16,1,1,10,29,1,6,1,28,2,33,10,5,7,33,1,5,4,33,1,5,8,33,38,5,2,14,2,5,5,33,1,5,1,33,18,5,1,33,45,28,2,1,357,}, + {1,49,28,25,6,5,33,74,6,15,30,3,28,208,33,52,6,1,28,5,29,1,1,18,5,1,28,3,33,8,5,12,33,1,5,12,33,1,5,2,33,30,5,2,14,3,5,10,33,14,5,1,33,1,5,1,33,43,28,2,5,1,1,356,}, + {1,49,16,1,28,23,30,1,6,4,33,55,6,15,33,1,6,10,30,6,28,217,6,1,33,40,6,2,28,7,6,1,16,1,1,24,16,1,6,1,28,2,33,5,5,1,33,1,5,8,14,3,5,7,14,1,5,7,33,31,5,13,33,4,5,1,33,1,5,3,33,53,28,2,6,1,1,356,}, + {1,50,28,24,30,1,6,3,33,30,6,1,33,23,6,20,13,2,6,1,30,4,28,218,1,2,16,1,6,1,28,7,6,2,33,9,6,1,33,12,6,4,28,10,6,1,29,2,16,1,1,30,5,1,28,2,33,7,5,7,14,3,5,6,14,4,5,6,33,31,5,17,33,2,5,2,33,53,28,2,6,1,1,356,}, + {1,50,28,24,30,1,6,6,33,49,6,18,30,5,28,224,1,8,16,1,6,2,28,28,6,5,29,1,1,40,28,2,33,10,5,5,14,1,5,5,14,5,5,6,33,32,5,15,33,4,5,1,33,8,5,2,33,43,28,3,1,356,}, + {1,50,29,1,28,24,30,1,6,4,33,49,6,12,13,2,6,1,13,1,30,2,28,229,29,1,1,16,16,2,1,4,16,1,1,62,16,1,28,2,33,10,5,11,14,3,5,4,33,1,5,1,33,33,5,15,33,5,5,2,33,4,5,6,33,41,28,4,1,355,}, + {1,51,28,25,30,1,6,3,33,46,6,9,13,3,30,4,28,235,1,87,6,1,28,3,33,8,5,11,14,1,5,7,33,34,5,14,33,1,5,7,33,2,5,8,33,41,28,2,6,1,1,355,}, + {1,51,28,26,6,2,33,39,6,1,33,1,6,4,30,1,6,4,13,3,30,4,28,241,16,1,1,88,28,1,6,1,28,2,33,11,5,9,33,2,5,3,33,34,5,22,33,2,5,8,33,42,28,2,1,355,}, + {1,51,6,1,28,25,6,2,33,29,6,3,33,1,6,11,30,5,28,249,29,1,1,90,5,1,28,2,33,11,5,14,33,31,5,5,14,4,5,26,33,1,5,1,33,10,5,1,33,27,28,3,1,355,}, + {1,51,28,26,30,1,6,1,33,25,6,9,30,2,6,3,30,5,28,254,16,1,1,91,5,1,28,2,33,8,5,11,14,1,5,6,33,27,5,7,14,5,5,11,14,1,5,11,33,1,5,3,33,9,5,2,33,17,28,1,33,10,28,2,1,355,}, + {1,52,28,26,6,1,33,11,6,1,33,5,6,2,33,3,6,8,30,1,6,2,30,5,28,261,1,93,28,2,33,7,5,7,33,1,5,2,14,4,5,6,33,23,5,10,14,5,5,6,33,1,5,5,14,1,5,7,33,2,5,3,33,9,5,3,33,28,28,2,29,1,1,354,}, + {1,52,28,26,6,1,33,7,6,18,30,6,28,268,1,94,28,2,33,6,5,6,33,2,5,2,14,4,5,5,33,23,5,6,14,3,5,4,14,4,5,9,14,4,5,7,33,2,5,1,33,9,5,3,33,29,28,2,1,355,}, + {1,52,29,1,28,25,30,1,6,12,30,1,28,6,30,4,28,276,1,95,5,1,28,2,33,5,5,5,33,1,5,3,14,3,5,5,33,15,5,1,33,8,5,5,14,4,5,28,33,11,5,4,33,29,28,2,1,355,}, + {1,52,29,1,28,29,30,3,28,293,1,96,5,1,28,2,33,5,5,3,33,2,5,8,33,1,5,3,33,13,5,3,33,7,5,4,14,6,5,18,33,1,5,8,33,11,5,3,33,31,28,1,5,1,1,354,}, + {1,51,29,1,28,327,1,97,28,2,33,5,5,1,33,4,5,13,33,10,5,5,33,4,5,6,14,10,5,14,33,1,5,8,33,10,5,3,33,32,28,1,1,355,}, + {1,51,29,2,28,325,29,1,1,98,28,1,6,1,33,10,5,13,33,9,5,3,33,2,5,10,14,11,5,12,33,2,5,1,33,5,5,3,33,9,5,3,33,31,28,2,6,1,1,354,}, + {1,52,16,1,28,326,1,99,28,2,33,9,5,1,33,3,5,2,14,4,5,5,33,7,5,2,33,3,5,10,14,11,5,16,33,15,5,3,33,32,28,2,6,1,1,354,}, + {1,54,28,11,6,1,28,313,1,100,28,2,33,8,5,1,33,3,5,2,14,4,5,5,33,7,5,15,14,6,5,2,14,3,5,17,33,14,5,3,33,32,28,3,1,354,}, + {1,55,29,5,1,7,28,312,1,101,28,2,33,6,5,2,33,3,5,3,14,2,5,3,33,1,5,2,33,9,5,15,14,5,5,18,33,17,5,2,33,34,28,2,1,354,}, + {1,67,28,312,1,102,6,1,28,1,33,10,5,12,33,8,5,15,14,5,5,18,33,17,5,2,33,33,28,3,1,354,}, + {1,67,29,1,28,311,1,103,28,2,33,9,5,16,33,4,5,15,14,8,5,2,14,1,5,12,33,16,5,2,33,35,28,3,33,1,28,2,6,1,5,1,1,348,}, + {1,68,28,311,1,104,6,1,28,1,33,10,5,15,33,3,5,16,14,11,5,11,33,15,5,2,33,36,28,9,1,347,}, + {1,68,28,311,16,1,1,104,5,1,28,2,33,7,5,1,33,1,5,4,14,2,5,30,14,9,5,10,33,15,5,2,33,44,28,2,1,346,}, + {1,68,28,312,1,106,6,1,28,2,33,5,5,4,14,5,5,9,33,1,5,12,14,3,5,4,14,9,5,10,33,14,5,3,33,45,28,2,5,1,1,344,}, + {1,68,28,312,1,107,5,1,28,2,33,6,5,2,14,6,5,19,14,6,5,6,14,7,5,10,33,4,5,1,33,7,5,4,33,46,28,2,1,344,}, + {1,68,29,1,28,311,1,109,6,1,28,2,33,4,5,3,14,4,5,22,14,5,5,5,14,1,5,1,14,5,5,11,33,11,5,1,14,1,5,1,33,47,28,2,6,1,1,343,}, + {1,69,28,311,1,111,6,1,28,2,33,4,5,3,14,1,5,27,14,2,5,2,14,6,5,15,33,1,5,1,33,8,5,1,14,1,33,49,28,2,1,343,}, + {1,69,28,311,1,112,5,1,28,3,33,3,5,35,14,5,5,17,33,7,5,1,14,1,5,1,33,50,28,1,6,1,1,342,}, + {1,69,28,311,1,114,28,3,33,3,5,34,14,5,5,17,33,7,5,1,14,1,5,1,33,50,28,2,1,342,}, + {1,69,29,1,28,310,1,115,28,3,33,3,5,3,14,1,5,30,14,4,5,11,14,3,5,3,33,6,5,1,14,1,5,2,33,50,28,2,5,1,1,341,}, + {1,69,29,1,28,310,29,1,1,115,28,3,33,2,5,2,14,1,5,32,14,1,5,12,14,5,5,2,33,6,5,1,14,1,5,1,33,51,28,2,6,1,1,341,}, + {1,70,28,311,1,116,5,1,28,2,33,2,5,21,14,3,5,23,14,5,5,3,33,4,5,1,14,1,5,1,33,23,5,1,33,29,28,2,1,341,}, + {1,70,28,311,1,117,6,1,28,2,33,2,5,20,14,3,5,10,14,2,5,10,14,8,5,2,33,2,5,4,33,23,5,2,33,28,28,2,6,1,1,340,}, + {1,70,29,1,28,310,1,118,28,3,33,2,5,18,14,4,5,8,14,4,5,10,14,6,5,3,33,3,14,2,5,1,33,24,5,2,33,29,28,1,33,1,1,340,}, + {1,70,16,1,28,311,1,118,28,2,33,3,5,3,14,1,5,13,14,4,5,7,14,2,5,2,14,2,5,16,33,4,5,1,14,2,5,1,33,23,5,2,33,30,28,2,1,340,}, + {1,71,28,310,29,1,1,119,28,2,33,3,5,17,14,2,5,12,14,3,5,15,33,3,5,1,14,3,5,1,33,23,5,2,33,31,28,1,5,1,1,339,}, + {1,71,28,310,29,1,1,120,28,2,33,3,5,28,14,8,5,10,33,5,5,1,14,2,5,1,33,57,28,2,1,339,}, + {1,71,29,1,28,310,1,120,5,1,28,2,33,3,5,26,14,11,5,7,33,5,5,1,14,3,5,1,33,58,28,1,6,1,1,338,}, + {1,71,28,311,1,122,28,2,33,2,5,21,14,11,5,4,14,2,5,6,33,5,5,1,14,2,5,1,33,23,5,1,33,35,28,2,1,338,}, + {1,71,16,1,28,310,1,122,6,1,28,2,33,2,5,19,14,12,5,4,14,3,5,5,33,4,5,1,14,3,5,1,33,22,5,1,33,37,28,1,6,1,1,337,}, + {1,72,28,310,1,123,6,1,28,1,6,1,33,2,5,18,14,4,5,2,14,7,5,2,14,6,5,3,33,4,5,1,14,1,5,3,33,60,28,2,5,1,1,336,}, + {1,72,28,310,1,124,6,1,28,1,33,3,5,17,14,1,5,1,14,1,5,2,14,8,5,2,14,6,5,3,33,3,5,2,14,1,5,1,33,62,28,3,6,1,1,335,}, + {1,72,29,1,28,310,1,124,28,2,33,2,5,18,14,10,5,4,14,7,5,2,33,3,5,1,14,1,5,1,33,65,28,2,33,1,1,334,}, + {1,72,29,1,28,310,1,124,5,1,28,1,6,1,33,2,5,18,14,9,5,5,14,6,5,2,33,2,5,3,33,67,28,3,5,1,1,332,}, + {1,73,28,309,29,1,1,125,28,2,33,2,5,18,14,4,5,2,14,3,5,4,14,1,5,1,14,4,5,2,33,2,5,4,33,69,28,2,5,1,1,331,}, + {1,73,28,310,1,126,28,2,33,2,5,17,14,4,5,1,14,1,5,1,14,2,5,3,14,2,5,1,14,4,5,2,33,1,5,4,33,20,5,2,33,49,28,3,1,330,}, + {1,73,28,310,1,126,6,1,28,1,33,6,5,12,14,5,5,1,14,14,5,1,33,2,5,4,33,19,5,2,33,52,28,2,1,329,}, + {1,73,29,1,28,309,1,127,28,2,33,7,5,10,14,20,5,3,14,2,5,1,33,19,5,2,33,53,28,3,1,328,}, + {1,73,29,1,28,309,16,1,1,126,5,1,28,2,33,7,5,9,14,19,5,3,14,2,5,2,33,17,5,3,33,55,28,3,5,1,1,326,}, + {1,73,28,311,1,127,28,2,33,7,5,8,14,20,5,3,14,2,5,2,33,7,5,1,33,8,5,1,14,1,5,1,33,58,28,2,1,326,}, + {1,74,28,310,1,128,28,2,33,6,5,9,14,19,5,2,14,3,5,2,33,5,5,5,33,5,5,1,14,1,5,2,33,59,28,2,1,325,}, + {1,74,28,310,1,128,28,2,33,7,5,8,14,24,5,1,33,6,5,2,14,1,5,1,33,6,14,1,5,2,33,61,28,2,1,324,}, + {1,74,29,1,28,309,1,128,28,2,33,8,5,7,14,23,5,2,33,4,5,5,33,5,5,3,33,63,28,3,1,323,}, + {1,74,16,1,28,309,1,128,6,1,28,1,33,8,5,7,14,8,5,2,14,13,5,2,33,4,5,4,33,6,5,2,33,7,5,3,33,56,28,2,1,322,}, + {1,75,28,309,1,128,5,1,28,1,33,10,5,6,14,6,5,5,14,11,5,3,33,2,5,4,33,6,5,2,33,7,5,3,33,42,28,1,33,15,28,1,5,1,1,321,}, + {1,75,28,309,1,129,6,1,28,1,33,10,5,5,14,7,5,4,14,11,5,3,33,1,5,5,33,5,5,2,33,6,5,4,33,59,28,3,1,320,}, + {1,75,16,1,28,308,1,129,5,1,28,2,33,9,5,3,14,14,5,1,14,9,5,8,33,5,5,2,33,6,5,3,33,62,28,2,5,1,1,319,}, + {1,78,29,1,28,305,16,1,1,129,28,2,33,9,5,3,14,13,5,4,14,5,5,9,33,5,5,2,33,5,5,4,33,64,28,1,6,1,1,319,}, + {1,80,28,305,1,129,28,3,33,9,5,2,14,14,5,5,14,1,5,10,33,12,5,3,33,67,28,1,5,1,1,318,}, + {1,80,28,305,1,130,28,2,33,8,5,3,14,4,5,1,14,9,5,10,33,1,5,1,33,1,5,1,33,12,5,4,33,68,28,2,33,1,28,1,1,316,}, + {1,80,28,305,1,130,28,2,33,8,5,11,14,7,5,4,14,1,5,3,33,2,5,4,33,10,5,3,33,71,28,5,6,1,1,313,}, + {1,80,28,305,16,1,1,129,28,2,33,8,5,12,14,6,5,3,14,2,5,9,33,8,5,4,33,76,28,3,1,312,}, + {1,80,16,1,28,304,29,1,1,128,5,1,28,2,33,8,5,11,14,12,5,10,33,6,5,4,33,79,28,2,6,1,1,310,}, + {1,81,28,305,1,128,5,1,28,2,33,8,5,11,14,12,5,10,33,5,5,4,33,81,28,3,5,1,1,308,}, + {1,81,28,305,1,129,28,2,33,8,5,10,14,14,5,8,33,4,5,4,33,84,28,3,5,1,1,307,}, + {1,81,29,1,28,304,1,129,28,2,33,8,5,8,14,16,5,4,33,2,5,2,33,2,5,4,33,87,28,3,5,1,1,306,}, + {1,81,28,305,1,129,6,1,28,1,33,8,5,8,14,12,5,2,14,3,5,3,33,2,5,1,33,2,5,4,33,89,28,3,5,1,1,305,}, + {1,82,28,304,1,129,6,1,28,1,33,9,5,2,33,2,5,2,14,12,5,17,33,92,28,2,6,1,1,304,}, + {1,82,28,304,1,129,6,1,28,1,33,9,5,1,33,3,5,3,14,11,5,16,33,94,28,3,1,303,}, + {1,82,28,305,1,128,6,1,28,1,33,13,5,5,14,11,5,13,33,96,28,2,6,1,1,302,}, + {1,82,29,1,28,304,1,128,28,2,33,13,5,4,14,13,5,7,14,3,5,2,33,17,5,1,33,14,5,2,33,63,28,3,1,301,}, + {1,82,16,1,28,304,1,128,28,2,33,12,5,4,14,6,5,2,14,7,5,3,14,7,5,2,33,29,5,3,33,65,28,2,5,1,1,300,}, + {1,83,28,303,29,1,1,128,28,2,33,12,5,4,14,6,5,2,14,6,5,3,14,7,5,3,33,27,5,3,33,68,28,3,1,299,}, + {1,83,28,304,1,128,6,1,28,1,33,12,5,4,14,6,5,2,14,6,5,2,14,5,5,5,33,26,5,4,33,70,28,3,1,298,}, + {1,83,16,1,28,304,1,127,28,2,33,12,5,4,14,20,5,6,33,23,5,5,33,73,28,2,1,298,}, + {1,84,28,303,29,1,1,127,28,2,33,12,5,4,14,3,5,1,14,6,5,4,14,6,5,7,33,13,5,2,33,5,5,3,14,1,5,2,33,75,28,3,6,1,5,1,1,294,}, + {1,84,28,303,29,1,1,127,28,2,33,10,5,1,33,1,5,9,14,3,5,14,14,2,5,6,33,10,5,1,33,5,5,1,14,3,5,1,33,79,28,4,1,293,}, + {1,84,29,1,28,303,1,127,28,1,33,11,5,1,33,2,5,7,14,4,5,20,33,11,5,2,33,4,5,1,14,3,5,1,33,82,28,3,6,1,5,1,1,290,}, + {1,84,16,1,28,303,1,127,28,2,33,10,5,10,14,2,5,15,33,1,5,2,33,1,5,3,33,10,5,2,33,5,14,2,5,2,33,85,28,3,5,1,1,289,}, + {1,85,28,303,1,127,28,2,33,10,5,2,33,1,5,6,14,4,5,14,33,1,5,2,33,2,5,2,33,10,5,2,33,3,5,2,14,1,5,2,33,2,5,3,33,83,28,3,6,1,1,287,}, + {1,85,28,303,1,127,28,2,33,10,5,2,33,1,5,6,14,6,5,20,33,9,5,2,33,3,14,3,5,2,33,1,5,4,33,85,28,3,6,1,1,285,}, + {1,85,29,1,28,302,1,127,28,2,33,10,5,1,33,2,5,6,14,8,5,10,14,1,5,10,33,4,5,4,33,2,5,2,14,3,5,5,14,1,33,3,5,1,33,83,28,4,1,283,}, + {1,86,28,303,1,126,28,2,33,13,5,7,14,10,5,14,14,1,5,4,33,1,5,1,33,1,5,6,14,5,5,4,14,2,5,1,33,1,5,1,33,1,5,2,33,83,28,3,6,1,1,281,}, + {1,86,28,303,1,126,28,2,33,13,5,8,14,9,5,8,33,1,5,2,14,3,5,6,14,20,5,5,33,85,28,3,5,1,1,279,}, + {1,86,28,303,1,126,28,1,33,13,5,6,14,6,5,3,14,3,5,5,33,1,5,6,14,1,5,5,33,1,5,1,14,9,5,1,14,11,5,3,33,88,28,3,1,278,}, + {1,86,28,303,1,126,28,1,33,11,5,7,14,6,5,4,14,2,5,13,14,1,5,6,14,7,5,2,14,11,5,6,33,89,28,2,1,277,}, + {1,86,28,303,1,125,6,1,28,1,33,11,5,7,14,7,5,18,14,1,5,1,33,2,5,2,14,8,5,1,14,11,5,7,33,90,28,1,5,1,1,276,}, + {1,86,16,1,28,302,1,125,6,1,28,1,33,11,5,6,14,10,5,18,33,1,5,2,14,19,5,7,33,92,28,2,5,1,1,275,}, + {1,87,28,302,16,1,1,124,6,1,28,1,33,11,5,1,33,1,5,5,14,15,5,13,14,21,5,3,14,2,5,3,33,92,28,2,5,1,1,274,}, + {1,87,28,303,1,124,6,1,28,1,33,13,5,6,14,1,5,1,14,12,5,5,33,1,5,5,14,4,5,2,14,18,5,2,14,2,5,2,33,94,28,3,6,1,5,1,1,271,}, + {1,87,28,303,1,124,33,1,28,1,33,11,5,11,14,10,5,3,33,3,5,1,33,1,5,4,14,4,5,2,14,22,5,2,33,94,28,6,5,1,1,269,}, + {1,87,29,1,28,302,1,124,28,2,33,11,5,2,14,3,5,5,14,11,5,4,33,1,5,5,14,30,5,2,33,99,28,3,5,1,1,267,}, + {1,87,16,1,28,302,1,124,28,2,33,11,5,2,14,2,5,6,14,4,5,3,14,6,5,5,14,7,5,1,14,25,5,2,33,101,28,2,6,1,1,266,}, + {1,88,28,302,1,123,5,1,28,2,33,11,5,2,14,1,5,7,14,4,5,5,14,41,5,3,33,102,28,3,1,265,}, + {1,88,28,303,1,122,6,1,28,1,33,11,5,11,14,4,5,6,14,1,5,2,14,8,5,1,14,28,5,4,33,102,28,3,1,264,}, + {1,88,28,302,29,1,1,122,6,1,28,2,33,10,5,11,14,4,5,10,14,4,5,1,14,1,5,3,14,27,5,4,33,26,5,3,33,75,28,2,5,1,1,262,}, + {1,88,16,1,28,302,1,122,6,1,28,1,33,12,5,11,14,4,5,8,14,1,5,2,14,5,5,2,14,27,5,3,33,25,5,4,33,77,28,3,1,261,}, + {1,89,28,302,1,122,6,1,28,1,33,12,5,12,14,2,5,8,14,2,5,4,14,33,5,2,33,24,5,2,14,1,5,1,33,80,28,2,1,260,}, + {1,89,29,1,28,301,1,122,28,2,33,12,5,20,14,5,5,2,14,34,5,3,33,23,5,4,33,81,28,2,5,1,1,258,}, + {1,89,28,302,1,122,28,2,33,12,5,20,14,40,5,3,33,25,5,2,33,83,28,2,5,1,1,257,}, + {1,89,29,1,28,301,16,1,1,120,5,1,28,2,33,12,5,12,14,2,5,4,14,1,5,2,14,38,5,4,33,25,5,1,33,77,5,2,33,6,28,2,5,1,1,256,}, + {1,90,28,302,1,120,6,1,28,1,33,12,5,11,14,4,5,3,14,1,5,4,14,1,5,5,14,17,5,3,14,10,5,5,33,103,5,3,33,6,28,3,1,255,}, + {1,90,28,302,1,120,6,1,28,2,33,11,5,5,14,5,5,1,14,7,5,15,14,11,5,5,14,8,5,6,33,105,5,2,33,7,28,3,1,254,}, + {1,90,29,1,28,301,1,120,33,1,28,1,33,12,5,4,14,14,5,16,14,10,5,6,14,7,5,7,33,104,5,3,33,8,28,2,5,1,1,252,}, + {1,91,28,301,1,120,33,1,28,1,33,12,5,2,14,8,5,3,14,5,5,17,14,8,5,9,14,4,5,9,33,103,5,1,14,1,5,2,33,7,28,3,5,1,1,251,}, + {1,91,28,301,1,120,33,1,28,1,33,11,5,3,14,7,5,4,14,5,5,1,14,7,5,3,14,1,5,5,14,7,5,10,14,4,5,7,33,105,5,1,14,1,5,2,33,9,28,3,6,1,1,249,}, + {1,91,28,301,29,1,1,119,28,2,33,10,5,7,14,11,5,3,14,13,5,1,14,9,5,11,14,5,5,4,33,106,5,2,14,1,5,2,33,10,28,3,29,1,1,247,}, + {1,91,29,1,28,300,29,1,1,119,28,2,33,10,5,7,14,4,5,2,14,4,5,2,14,1,5,1,14,21,5,13,14,5,5,3,33,108,5,4,33,11,28,4,5,1,1,245,}, + {1,91,28,302,1,118,5,1,28,2,33,9,5,10,14,1,5,3,14,4,5,8,14,10,5,1,14,5,5,16,14,2,5,4,33,109,5,3,33,14,28,2,6,1,1,244,}, + {1,91,9,1,28,301,1,118,28,2,33,10,5,3,14,3,5,9,14,3,5,9,14,13,5,18,14,2,5,3,33,110,5,3,33,15,28,3,5,1,1,242,}, + {1,92,28,301,1,118,29,1,28,1,33,10,5,4,14,5,5,7,14,3,5,8,14,12,5,4,33,1,5,14,14,1,5,5,33,98,5,1,33,29,28,3,5,1,1,241,}, + {1,92,29,1,28,300,1,118,6,1,28,1,33,11,5,3,14,4,5,7,14,4,5,7,14,13,5,3,33,3,5,3,33,1,5,15,33,98,5,2,33,30,28,2,5,1,1,240,}, + {1,92,29,1,28,167,29,2,26,8,28,124,1,117,6,1,28,1,33,10,5,3,14,3,5,8,14,6,5,1,14,17,5,2,33,5,5,3,33,1,5,16,33,95,5,2,14,1,5,2,33,30,28,2,5,1,1,239,}, + {1,92,16,1,28,157,26,28,28,115,29,1,1,117,28,2,33,9,5,4,14,1,5,10,14,24,5,1,33,2,5,1,33,3,5,3,33,1,5,15,33,96,5,5,33,31,28,2,1,239,}, + {1,93,28,150,29,1,26,41,28,109,1,117,28,1,33,10,5,15,14,4,5,3,14,16,5,3,33,3,5,5,33,2,5,2,33,1,5,6,14,2,5,5,33,93,5,3,33,35,28,2,5,1,1,237,}, + {1,93,29,1,28,145,26,3,28,6,26,40,28,106,1,117,28,1,33,11,5,13,14,5,5,3,14,15,5,2,33,2,5,8,33,2,5,2,33,1,5,5,14,4,5,4,33,91,5,3,33,38,28,2,1,237,}, + {1,93,16,1,28,141,26,8,28,4,26,1,28,1,26,44,28,101,1,117,28,1,33,11,5,14,14,4,5,2,14,13,5,4,33,3,5,8,33,2,5,1,33,3,5,12,33,90,5,3,33,40,28,2,1,236,}, + {1,94,28,137,29,1,28,1,26,6,28,4,26,53,28,98,1,116,5,1,28,1,33,10,5,14,14,19,5,6,33,2,5,7,33,3,5,1,33,1,5,1,33,1,5,13,33,88,5,4,33,41,28,1,6,1,1,235,}, + {1,94,29,1,28,134,26,2,28,1,26,1,28,1,26,1,28,2,26,62,28,96,1,115,6,1,28,1,33,10,5,13,14,20,5,3,33,1,5,3,33,1,5,7,33,4,5,9,14,3,5,3,33,42,5,2,33,63,5,1,33,27,28,1,5,1,1,234,}, + {1,94,29,1,28,130,26,2,28,2,26,1,28,2,26,69,28,93,29,1,1,115,6,1,28,1,33,10,5,12,14,21,5,2,33,2,5,1,14,2,5,9,33,5,5,7,14,3,5,3,33,41,5,2,33,92,28,2,6,1,1,233,}, + {1,95,28,127,26,4,28,5,26,72,28,92,1,115,6,1,28,1,33,11,5,12,14,19,5,3,33,2,5,1,14,3,5,8,33,6,5,1,33,2,5,10,33,39,5,1,33,94,28,3,1,233,}, + {1,95,28,124,26,3,28,7,26,76,28,90,1,115,6,1,28,1,33,11,5,11,14,21,5,1,33,2,5,3,14,3,5,8,33,5,5,14,33,134,28,2,6,1,1,232,}, + {1,95,28,122,26,6,28,2,26,83,28,87,1,115,6,1,28,1,33,11,5,11,14,21,5,1,33,1,5,4,14,2,5,8,33,6,5,2,33,2,5,11,33,135,28,3,5,1,1,229,}, + {1,95,28,120,26,94,28,86,1,115,28,2,33,11,5,10,14,21,5,6,14,3,5,8,33,6,5,2,33,2,5,12,33,136,28,2,5,1,1,228,}, + {1,96,28,117,26,98,28,85,1,114,28,2,33,10,5,10,14,9,5,4,14,10,5,5,14,4,5,10,33,2,5,4,33,1,5,13,33,31,5,2,33,103,28,2,5,1,1,227,}, + {1,96,28,115,26,101,28,83,29,1,1,113,5,1,28,2,33,10,5,10,14,9,5,4,14,9,5,6,14,5,5,1,14,2,5,5,33,1,5,7,33,1,5,13,33,29,5,3,33,105,28,2,5,1,1,225,}, + {1,96,28,113,26,52,28,1,26,52,28,82,1,113,29,1,28,2,33,11,5,11,14,8,5,4,14,7,5,3,14,2,5,3,14,10,5,10,33,1,5,13,33,29,5,2,33,1,5,1,33,105,28,2,5,1,1,224,}, + {1,96,29,1,28,110,26,49,28,1,26,4,28,2,26,53,28,80,1,113,5,1,28,1,33,14,5,9,14,9,5,3,14,2,5,1,14,1,5,5,14,3,5,6,14,6,5,10,33,3,5,12,33,28,5,2,33,109,28,2,5,1,1,223,}, + {1,96,29,1,28,109,26,48,28,4,26,59,28,45,29,4,28,30,1,113,6,1,28,1,33,15,5,7,14,15,5,7,14,3,5,7,14,3,5,12,33,3,5,11,33,141,28,2,5,1,1,222,}, + {1,96,16,1,28,107,26,55,28,1,26,58,28,43,29,3,28,3,29,1,28,28,1,113,6,1,28,1,33,16,5,6,14,14,5,8,14,2,5,23,33,2,5,13,33,26,5,1,33,114,28,2,5,1,1,221,}, + {1,97,28,105,29,1,26,34,28,1,26,16,28,3,26,24,27,4,9,12,27,2,26,20,28,41,29,1,28,35,1,113,28,2,33,13,5,2,33,1,5,5,14,17,5,6,14,2,5,16,14,4,5,4,33,3,5,13,33,22,5,3,33,115,28,3,1,220,}, + {1,97,28,104,26,36,28,1,26,17,28,2,26,20,27,3,9,15,12,1,9,4,27,1,26,20,28,39,29,1,28,35,16,1,1,112,28,2,33,12,5,9,14,2,5,1,14,14,5,6,14,2,5,11,14,9,5,1,33,5,5,14,33,22,5,1,33,118,28,3,1,219,}, + {1,97,28,103,26,56,28,1,26,15,27,3,9,11,27,2,26,4,27,1,9,10,27,1,26,18,28,38,29,1,28,36,1,112,28,2,33,12,5,9,14,1,5,2,14,12,5,7,14,5,5,9,14,9,5,1,33,5,5,9,14,1,5,4,33,46,5,1,33,95,28,2,6,1,1,218,}, + {1,97,29,1,28,100,26,71,27,3,9,3,12,3,9,1,27,1,29,1,28,15,26,1,25,1,9,6,27,1,26,18,28,73,29,1,1,112,28,2,33,13,5,1,33,2,5,5,14,1,5,19,14,8,5,8,14,7,5,5,33,4,5,7,14,3,5,2,33,144,28,3,1,217,}, + {1,98,28,99,26,50,28,1,26,15,27,3,9,8,25,1,26,1,28,24,26,1,9,5,27,1,26,17,28,73,1,112,28,2,33,19,5,2,14,2,5,18,14,8,5,5,14,6,5,8,33,7,5,6,14,3,5,2,33,43,5,1,33,101,28,1,6,1,1,216,}, + {1,98,28,98,26,50,28,2,26,11,27,3,9,7,25,1,27,1,29,1,28,31,9,5,27,1,26,16,28,72,1,112,28,2,33,19,5,15,14,1,5,3,33,2,5,1,14,8,5,3,14,5,5,11,33,6,5,7,14,3,5,3,33,41,5,1,33,103,28,2,1,215,}, + {1,98,28,97,26,59,27,3,9,6,25,2,26,1,28,38,27,1,9,4,27,1,26,17,28,70,1,112,28,2,33,19,5,9,14,3,5,2,14,3,5,5,14,8,5,3,14,5,5,11,33,5,5,2,33,1,5,7,14,1,5,4,33,39,5,1,33,63,5,1,33,40,28,3,1,214,}, + {1,98,28,96,26,57,27,1,9,7,27,1,26,1,28,45,27,1,9,3,25,1,26,17,28,69,1,112,28,2,33,18,5,2,14,2,5,5,14,9,5,4,14,8,5,4,14,6,5,14,33,1,5,1,33,3,5,8,14,1,5,2,33,37,5,3,33,105,28,2,5,1,1,213,}, + {1,99,28,93,26,52,28,1,26,4,27,1,9,4,27,1,29,1,28,51,26,1,9,3,27,1,26,16,28,69,16,1,1,111,28,2,33,18,5,2,14,1,5,1,14,2,5,3,14,8,5,5,14,4,5,8,14,4,5,9,14,2,5,10,33,1,5,3,33,1,5,2,14,3,5,1,33,36,5,3,33,61,5,1,33,45,28,2,1,213,}, + {1,99,28,92,26,53,28,2,26,2,27,1,9,3,27,1,28,56,10,1,9,2,27,1,26,1,28,1,26,14,28,68,29,1,1,111,28,2,33,17,5,10,14,8,5,5,14,3,5,4,14,3,5,1,14,4,5,28,14,4,5,1,33,35,5,3,33,60,5,2,33,46,28,3,1,212,}, + {1,99,28,91,26,57,27,1,9,2,12,1,27,1,28,58,9,3,27,1,26,16,28,68,1,111,28,2,33,17,5,10,14,8,5,2,33,1,5,2,14,3,5,1,14,9,5,30,14,3,5,2,33,33,5,5,33,60,5,2,33,48,28,2,1,211,}, + {1,99,29,1,28,89,26,58,27,1,12,2,26,1,28,60,10,1,9,2,27,1,26,16,28,27,29,1,28,12,29,1,28,26,1,111,28,2,33,16,5,11,14,8,5,2,33,1,5,3,14,11,5,22,33,1,5,9,14,2,5,3,33,31,5,4,33,63,5,1,33,49,28,1,5,1,1,210,}, + {1,100,28,88,26,3,28,1,26,54,27,1,9,3,28,62,9,3,27,1,26,15,28,40,29,1,28,26,1,111,6,1,28,1,33,16,5,11,14,7,5,2,33,2,5,3,14,6,5,2,14,2,5,7,14,3,5,23,14,1,5,4,33,29,5,5,33,114,28,2,6,1,1,209,}, + {1,100,28,88,26,46,27,5,26,7,27,1,9,2,29,1,28,62,29,1,9,3,26,16,28,26,29,1,28,39,1,111,6,1,28,1,33,16,5,2,33,2,5,7,14,6,5,3,33,2,5,4,14,5,5,9,14,6,5,27,33,28,5,3,33,118,28,3,5,1,1,207,}, + {1,100,28,87,26,43,27,2,9,9,27,1,26,4,9,2,25,1,28,64,27,1,9,2,27,1,26,16,28,25,26,1,28,39,1,111,6,1,28,1,33,16,5,2,33,3,5,5,14,7,5,3,33,2,5,4,14,6,5,8,14,10,5,12,33,5,5,6,33,27,5,2,33,1,5,1,33,120,28,2,6,1,1,206,}, + {1,100,29,1,28,85,26,42,27,1,9,4,12,3,9,1,12,3,9,2,27,1,26,2,27,1,9,2,10,1,28,65,9,3,26,1,28,1,26,14,28,25,26,1,28,39,1,111,6,1,28,2,33,21,5,4,14,8,5,6,14,1,5,1,14,2,5,1,14,3,5,8,14,11,5,11,33,5,5,6,33,26,5,2,33,2,5,1,33,121,28,2,6,1,1,205,}, + {1,101,28,84,26,43,9,2,12,3,9,2,27,1,26,2,27,1,9,10,28,65,26,1,9,2,27,1,26,5,28,2,26,9,28,24,29,1,28,39,1,111,6,1,28,1,33,18,5,2,33,1,5,6,14,7,5,4,14,3,5,13,14,16,5,5,33,1,5,2,33,4,5,7,33,25,5,2,33,126,28,2,5,1,1,204,}, + {1,101,28,83,26,43,9,1,12,3,25,1,28,8,26,1,9,8,28,66,9,2,25,1,26,1,28,1,26,3,28,2,26,7,28,1,26,2,28,23,29,1,28,40,1,110,29,1,28,1,33,19,5,7,14,15,5,4,14,2,5,5,14,9,5,1,14,8,5,5,33,5,5,4,14,2,5,4,33,23,5,2,33,127,28,3,1,204,}, + {1,101,28,82,29,1,26,42,9,1,12,2,9,1,28,12,9,3,12,2,9,2,28,66,26,1,9,2,27,1,26,5,28,1,26,3,28,1,26,3,28,2,26,2,28,22,29,1,28,40,1,110,5,1,28,1,33,19,5,5,14,22,5,2,14,11,5,5,14,6,5,4,33,5,5,3,14,4,5,4,33,23,5,1,33,127,28,1,33,1,28,2,5,1,1,203,}, + {1,101,29,1,28,81,26,42,27,1,9,1,12,2,28,13,29,1,9,1,12,4,9,1,28,35,29,1,26,1,27,4,26,1,29,1,28,24,9,3,26,8,28,3,26,2,28,2,26,1,28,23,29,1,28,12,29,1,28,27,1,110,5,1,28,2,33,18,5,6,14,2,5,2,14,16,5,3,14,10,5,6,14,1,5,2,14,3,5,4,33,3,5,5,14,5,5,3,33,153,28,3,1,203,}, + {1,101,16,1,28,80,26,43,9,1,12,2,27,1,28,14,27,1,12,1,9,1,12,1,9,2,29,1,28,32,27,1,9,2,12,3,9,1,12,1,9,3,10,1,29,1,28,21,26,1,9,2,27,1,26,5,28,1,26,1,28,4,26,1,28,2,26,3,28,21,26,1,28,12,29,1,28,27,1,111,28,2,33,18,5,11,14,2,5,1,14,11,5,5,14,10,5,8,14,4,5,2,33,7,5,4,14,3,5,3,33,154,28,3,1,202,}, + {1,102,28,79,26,21,27,3,9,1,27,3,26,15,27,1,9,1,12,1,9,1,28,16,9,4,12,1,27,1,28,32,10,1,9,1,12,4,9,1,12,4,9,2,25,1,29,1,28,20,9,3,26,5,28,1,26,2,28,4,26,2,28,1,26,1,28,4,26,2,28,16,26,1,28,12,29,1,28,27,1,111,28,2,33,18,5,11,14,13,5,6,14,11,5,7,14,4,5,2,33,7,5,5,14,2,5,3,33,156,28,1,6,1,1,201,}, + {1,102,29,1,28,77,26,20,9,2,12,1,15,1,12,3,9,4,27,1,26,12,27,1,12,2,25,1,28,16,9,1,12,1,9,2,12,1,9,1,28,32,26,1,9,1,12,2,9,6,12,2,9,3,27,1,28,19,27,1,9,2,27,1,26,4,28,1,26,2,28,4,26,1,28,6,26,3,28,16,26,1,28,12,29,1,28,27,1,111,28,2,33,18,5,11,14,10,5,1,14,1,5,8,14,11,5,6,14,4,5,2,33,8,5,4,14,2,5,3,33,155,28,3,5,1,1,200,}, + {1,102,28,78,26,18,27,1,9,1,12,2,15,2,12,5,9,3,26,12,27,1,12,1,9,1,29,1,28,16,27,1,9,1,12,1,9,3,27,1,28,14,26,1,29,1,28,16,12,2,9,2,27,6,9,2,12,2,9,1,10,1,28,19,12,1,9,1,27,1,26,6,28,1,26,1,28,7,26,4,28,3,26,2,28,13,26,1,28,11,29,2,28,28,1,110,28,2,33,16,5,12,14,10,5,4,14,4,5,2,14,12,5,5,14,6,5,1,33,8,5,3,14,3,5,3,33,157,28,2,1,200,}, + {1,103,28,76,26,19,15,4,25,1,28,4,29,1,9,1,12,2,15,1,9,1,27,1,26,10,27,1,12,2,28,17,26,1,9,6,27,1,28,11,27,1,25,1,10,1,27,1,28,16,9,1,12,1,9,1,27,1,26,7,27,1,9,2,12,1,9,1,25,1,28,18,9,2,27,1,26,6,28,2,26,1,28,1,26,2,28,2,26,1,28,1,26,1,28,1,26,2,28,3,26,1,28,13,29,1,28,12,29,1,28,27,16,1,1,110,6,1,28,1,33,16,5,11,14,10,5,5,14,14,5,2,14,1,5,5,14,7,5,1,33,7,5,10,33,157,28,2,6,1,1,199,}, + {1,103,28,76,26,18,9,1,12,1,15,2,28,8,27,1,12,1,15,1,12,1,9,1,26,10,27,1,9,1,12,1,28,18,12,1,9,1,12,1,9,4,10,1,26,1,28,5,29,1,26,1,27,1,9,4,10,1,28,16,26,1,12,1,9,2,26,9,27,1,9,3,28,18,27,1,9,2,26,5,28,4,26,2,28,2,26,10,28,1,26,1,28,2,26,1,28,9,29,1,28,12,29,1,28,27,29,1,1,110,29,1,28,1,33,17,5,9,14,11,5,6,14,13,5,8,14,7,5,1,33,6,5,6,14,2,5,4,33,156,28,3,1,199,}, + {1,103,28,75,26,18,27,1,12,3,28,10,26,1,12,2,9,1,27,1,26,9,27,1,9,1,12,1,26,1,28,17,9,1,12,7,9,3,10,1,9,10,28,17,12,2,9,1,26,10,27,1,9,2,27,1,28,17,26,1,9,2,27,1,28,1,26,3,28,4,26,2,28,1,26,5,27,3,26,5,28,12,29,1,28,11,29,2,28,27,29,1,1,110,5,1,28,1,33,17,5,7,14,5,5,2,14,6,5,6,14,15,5,6,14,7,5,1,33,8,5,3,14,5,5,2,33,41,5,2,33,114,28,2,6,1,1,198,}, + {1,103,29,1,28,74,26,18,27,1,12,2,27,1,28,11,27,1,12,2,9,1,26,9,27,1,9,1,12,1,25,1,28,17,10,1,12,2,9,4,12,2,9,13,28,17,9,1,12,1,9,1,27,1,26,9,27,1,9,3,26,1,28,17,9,2,27,1,26,4,28,3,26,4,27,3,9,1,27,2,9,1,25,1,27,3,26,2,28,12,26,1,28,11,29,1,28,29,1,111,28,2,33,16,5,7,14,3,5,6,14,5,5,6,14,27,5,1,33,7,5,4,14,5,5,2,33,40,5,3,33,6,5,5,33,103,28,3,1,198,}, + {1,104,28,73,26,19,9,1,12,2,28,13,12,2,9,1,26,10,9,1,12,1,9,1,28,17,26,1,12,1,9,3,27,2,9,9,27,3,9,3,26,1,28,16,9,1,12,1,9,1,27,1,26,11,9,3,28,17,9,2,27,1,26,7,27,2,9,9,27,1,10,2,25,2,27,1,26,2,28,10,26,1,28,11,29,1,28,29,1,111,28,2,33,16,5,6,14,2,5,10,14,4,5,1,14,1,5,4,14,2,5,6,14,18,5,1,33,7,5,4,14,4,5,3,33,38,5,4,33,6,5,1,14,4,5,1,33,104,28,2,5,1,1,197,}, + {1,104,28,72,26,20,9,1,15,1,9,1,28,13,9,1,12,1,9,1,27,1,26,9,27,1,12,1,9,1,29,1,28,16,29,1,12,1,9,2,27,13,26,2,27,1,9,2,27,1,28,16,27,1,12,1,9,1,27,1,26,11,27,1,12,1,9,1,26,1,28,16,9,2,27,1,26,6,27,2,9,3,27,1,28,7,29,1,27,6,26,1,28,9,26,1,28,11,29,1,28,29,1,111,28,2,33,15,5,7,14,1,5,11,14,7,5,4,14,1,5,6,14,1,5,1,14,16,33,8,5,4,14,3,5,3,33,38,5,4,33,7,5,1,14,4,5,2,33,1,5,2,33,100,28,3,1,197,}, + {1,104,28,72,26,20,9,1,15,1,27,1,28,13,27,1,12,2,27,1,26,10,9,1,12,1,27,1,28,17,9,3,27,1,26,15,27,1,9,2,28,16,29,1,12,1,9,1,27,1,26,12,9,3,28,16,27,1,9,2,26,3,27,2,9,3,10,1,28,14,27,4,26,3,28,6,26,1,28,11,29,1,28,29,1,111,28,2,33,15,5,17,14,8,5,4,14,3,5,3,14,3,5,2,14,15,33,8,5,5,14,1,5,5,33,37,5,4,33,7,14,4,5,5,33,102,28,3,1,196,}, + {1,104,29,1,28,70,26,21,9,1,12,1,9,1,28,13,27,1,12,2,9,1,26,10,9,1,12,1,9,1,28,17,9,3,27,1,26,15,27,1,9,2,28,17,9,1,12,1,27,1,26,12,27,1,9,2,28,16,29,1,9,2,27,3,9,4,29,1,28,17,29,1,27,1,26,3,28,6,26,1,29,1,28,10,29,1,28,29,1,111,28,2,33,16,5,16,14,8,5,4,14,3,5,2,14,5,5,2,14,14,5,1,33,6,5,12,33,36,5,4,33,7,5,1,14,3,5,7,33,101,28,4,5,1,1,194,}, + {1,104,16,1,28,70,26,21,9,1,12,1,9,1,28,13,27,1,12,2,9,1,26,10,27,1,9,2,29,1,28,16,27,1,12,1,9,2,26,15,27,1,9,2,28,17,9,3,26,13,9,2,27,1,28,16,9,7,26,1,28,21,27,2,26,1,28,6,26,1,29,1,28,11,29,6,28,24,1,110,28,2,33,15,5,22,14,10,5,3,14,20,5,1,33,5,5,14,33,34,5,4,33,6,5,2,14,3,5,2,33,2,5,2,33,104,28,4,1,194,}, + {1,105,28,69,26,22,27,1,12,1,9,1,28,13,26,1,12,2,9,1,27,1,26,10,9,1,12,1,27,1,28,16,26,1,9,1,12,1,9,1,26,16,9,2,29,1,28,16,25,1,9,2,26,13,27,1,9,1,27,1,28,16,9,6,29,1,28,22,29,1,27,1,26,2,28,5,26,1,29,1,28,10,29,8,28,23,1,110,6,1,28,1,33,17,5,22,14,8,5,4,14,19,5,1,33,7,5,9,33,36,5,4,33,6,5,1,14,1,5,10,33,106,28,3,1,193,}, + {1,105,28,69,26,22,27,1,12,2,28,14,12,2,9,1,26,11,9,1,12,1,9,1,28,17,9,1,12,1,9,1,26,16,27,1,9,1,26,1,28,16,27,1,12,1,9,1,27,1,26,12,27,1,9,2,28,16,9,5,28,25,29,1,27,1,26,1,29,1,28,4,26,1,28,11,29,1,28,1,29,1,28,2,29,2,28,1,29,1,28,22,1,110,6,1,28,1,33,17,5,2,14,1,5,32,14,18,5,1,33,8,5,8,33,33,5,6,33,5,5,1,14,2,5,14,33,104,28,3,1,192,}, + {1,105,29,1,28,41,29,1,25,1,9,2,15,1,9,2,26,1,28,19,26,22,27,1,12,1,15,1,28,14,12,2,9,1,27,1,26,10,27,1,12,2,29,1,28,16,12,2,9,1,27,1,26,15,27,1,9,1,25,1,28,16,27,1,12,1,9,1,27,1,26,13,9,2,28,16,9,1,12,1,9,1,27,1,28,27,29,1,27,1,26,1,28,3,26,2,28,19,29,2,28,21,1,110,29,1,28,2,33,16,5,1,14,4,5,29,14,19,5,1,33,7,5,9,33,1,5,1,33,30,5,2,14,2,5,2,33,4,5,1,14,4,5,14,33,104,28,3,5,1,1,191,}, + {1,105,28,41,26,1,9,1,15,7,9,1,26,1,28,16,26,24,9,1,15,1,26,1,28,13,9,1,12,1,9,1,27,1,26,10,27,1,9,1,12,1,27,1,28,16,9,1,12,1,9,1,27,1,26,15,27,1,9,2,28,16,26,1,9,2,27,1,26,13,9,2,29,1,28,15,9,2,26,1,28,29,29,1,26,2,28,2,26,2,28,20,29,1,28,22,1,110,28,2,33,16,5,3,14,6,5,19,14,1,5,4,14,20,5,1,33,6,5,4,33,3,5,2,33,2,5,1,33,29,5,3,14,1,5,3,33,3,14,5,5,9,33,1,5,4,33,107,28,2,1,191,}, + {1,106,28,40,9,1,15,2,9,1,12,1,9,2,15,3,9,1,26,1,28,15,26,24,9,1,15,1,25,1,28,13,9,1,12,1,9,1,27,1,26,11,9,1,12,1,9,1,28,16,9,1,12,1,9,1,27,1,26,15,27,1,9,2,28,17,9,2,27,1,26,13,9,2,29,1,28,15,9,1,27,1,28,31,26,2,29,1,28,1,29,1,26,1,28,22,29,1,28,20,1,110,28,2,33,16,5,3,14,6,5,18,14,27,33,7,5,3,33,3,5,2,33,31,5,4,14,1,5,1,33,3,5,1,14,6,5,9,33,112,28,2,6,1,1,190,}, + {1,106,28,39,25,1,15,3,10,1,28,4,29,1,9,1,15,2,25,1,28,13,26,25,27,1,12,1,9,1,28,13,27,1,12,1,9,1,27,1,26,11,27,1,12,1,9,1,28,16,27,1,12,1,9,2,26,16,9,2,28,17,9,1,12,1,9,1,26,13,9,2,26,1,28,14,29,1,25,1,28,33,27,1,26,1,29,2,26,1,28,22,29,1,28,20,1,110,28,2,33,17,5,3,14,4,5,8,14,4,5,5,14,29,33,7,5,9,33,30,5,1,33,1,5,3,33,3,5,1,14,6,5,11,33,111,28,3,1,190,}, + {1,106,28,38,29,1,15,2,12,1,29,1,28,7,9,1,15,2,25,1,28,12,26,25,27,1,12,2,28,13,26,1,12,2,27,1,26,11,27,1,12,1,9,1,28,16,29,1,12,1,9,2,26,13,28,1,26,2,9,2,29,1,28,16,9,2,27,1,26,13,27,1,9,1,26,1,28,14,27,1,28,34,26,4,29,1,28,23,29,1,28,18,29,1,1,110,28,2,33,18,5,4,14,1,5,6,33,1,14,6,5,3,14,12,5,2,14,1,5,2,14,14,33,7,5,9,33,1,5,1,33,27,5,4,33,3,5,2,14,6,5,6,33,3,5,7,33,109,28,2,1,189,}, + {1,106,16,1,28,28,29,7,28,2,9,1,14,1,15,1,25,1,28,9,15,2,9,1,26,1,28,10,29,1,26,25,27,1,12,2,28,14,12,2,9,1,26,11,27,1,9,2,26,1,28,16,12,2,9,1,27,1,26,14,27,1,9,2,26,1,28,16,9,3,26,13,27,1,9,1,26,1,28,13,26,1,28,36,26,3,30,1,28,43,1,110,33,1,28,1,33,19,5,7,33,2,5,1,14,21,5,7,14,12,5,1,33,7,5,8,33,1,5,1,33,1,5,1,33,26,5,3,33,3,5,2,14,8,5,17,33,107,28,2,5,1,1,188,}, + {1,107,28,37,9,1,15,2,28,11,12,2,25,1,28,10,26,26,9,1,12,2,26,1,28,13,9,1,12,1,9,1,27,1,26,11,9,1,12,1,9,1,28,16,9,3,27,1,26,12,27,2,25,1,9,1,10,1,27,1,28,16,9,3,26,13,27,1,9,1,26,1,28,13,29,1,28,36,27,2,26,1,29,1,28,43,16,1,1,109,6,1,28,1,33,16,5,10,33,1,5,1,14,22,5,8,14,11,5,1,33,7,5,7,33,3,5,3,33,26,5,1,33,2,5,2,14,7,5,21,33,4,5,3,33,100,28,2,1,188,}, + {1,107,28,37,9,1,15,1,9,1,28,11,27,1,12,1,9,1,28,10,26,23,27,1,9,1,12,3,15,1,9,1,28,13,9,1,12,1,9,1,27,1,26,11,27,1,12,1,9,1,28,16,9,4,26,8,27,2,9,2,25,1,9,3,25,2,28,16,27,1,9,2,27,1,26,12,27,1,9,1,27,1,28,12,26,1,28,37,26,1,27,1,26,1,29,1,28,44,1,109,5,1,28,1,33,16,5,11,14,24,5,10,14,8,5,1,33,6,5,8,33,3,5,4,33,25,5,3,14,8,5,4,14,4,5,14,33,1,5,1,33,1,5,4,33,101,28,2,1,187,}, + {1,107,28,37,25,1,12,1,27,1,28,12,9,1,12,1,25,1,28,9,26,21,27,1,9,1,12,5,15,1,9,1,28,13,26,1,12,2,9,1,27,1,26,10,27,1,9,2,28,16,9,4,26,7,27,1,9,5,25,1,29,1,28,1,29,1,27,1,26,1,28,15,26,1,9,2,27,1,26,12,27,1,9,1,27,1,28,11,29,2,28,37,29,1,27,2,29,1,28,44,1,110,28,1,33,16,5,8,14,27,5,4,14,4,5,3,14,7,5,1,33,6,5,8,33,4,5,2,33,23,5,5,14,10,5,2,14,6,5,6,33,1,5,5,33,2,5,4,33,104,28,2,5,1,1,185,}, + {1,107,16,1,28,36,29,1,15,1,26,1,28,12,26,1,12,1,9,1,28,8,26,21,27,1,9,1,12,4,9,1,12,3,27,1,28,13,9,1,12,1,9,1,27,1,26,10,27,1,9,1,12,1,29,1,28,15,27,1,9,3,27,2,26,1,27,2,9,6,27,1,28,6,29,2,28,14,29,1,9,2,27,1,26,12,27,1,9,1,27,1,28,11,27,1,28,39,26,1,27,1,29,1,28,43,29,1,1,110,33,1,28,1,33,15,5,4,33,1,5,3,14,6,5,2,14,37,5,1,33,6,5,3,14,1,5,3,33,5,5,2,33,23,5,4,14,12,5,5,14,3,5,5,33,1,5,4,33,4,5,3,33,105,28,3,1,184,}, + {1,108,28,37,11,1,27,1,28,13,12,2,27,1,28,7,26,21,9,1,12,3,26,1,28,4,26,1,9,1,27,1,28,12,25,1,12,2,9,1,27,1,26,10,9,1,12,1,27,1,28,15,27,1,12,1,9,4,27,1,9,5,25,1,29,1,28,9,26,2,28,14,9,2,27,1,26,12,9,2,26,1,28,10,26,2,28,20,29,3,28,16,26,2,29,1,28,44,1,110,6,1,28,1,33,16,5,5,14,1,5,4,14,3,5,7,14,32,5,1,33,6,5,3,14,1,5,3,33,30,5,2,14,5,5,1,14,7,5,6,14,2,5,10,33,4,5,1,33,110,28,2,1,183,}, + {1,108,28,37,15,1,9,1,28,13,27,1,12,1,9,1,28,7,26,20,27,1,12,2,9,1,28,7,29,1,9,1,26,1,28,12,12,2,9,1,27,1,26,10,9,2,27,1,28,15,26,1,9,4,12,1,9,1,12,1,9,2,27,1,28,13,27,1,29,1,28,13,9,2,27,1,26,12,9,2,26,1,28,10,27,1,28,18,27,2,9,4,27,1,29,1,28,14,26,2,29,1,28,44,1,110,29,1,28,1,33,17,5,3,14,1,5,7,14,4,5,6,14,30,5,1,33,6,5,7,33,1,5,3,33,25,5,2,14,4,5,4,14,6,5,16,33,118,28,1,6,1,1,182,}, + {1,108,28,37,9,1,12,1,28,14,15,1,12,1,29,1,28,5,26,21,9,1,12,1,9,1,26,1,28,9,12,1,26,1,28,11,9,2,12,1,9,1,27,1,26,9,9,3,28,15,29,1,9,4,15,1,9,2,27,1,28,16,27,1,28,13,9,3,26,12,9,2,29,1,28,10,27,1,28,16,27,1,10,1,9,8,26,1,28,13,29,1,26,1,28,45,1,111,28,2,33,15,5,15,14,1,5,8,14,11,5,5,14,13,33,6,5,5,33,3,5,3,33,1,5,1,33,16,5,3,33,3,5,1,14,7,5,3,14,5,5,19,33,116,28,2,1,182,}, + {1,108,16,1,28,23,29,1,27,1,9,1,12,4,9,1,26,1,28,4,26,1,15,1,26,1,28,13,9,1,12,1,9,1,28,5,26,21,9,1,12,1,9,1,28,10,27,1,9,1,28,12,9,2,12,1,9,1,26,9,9,1,12,1,9,1,28,15,29,1,9,4,25,1,29,1,28,18,25,1,28,13,9,1,12,1,9,1,26,11,27,1,9,2,29,1,28,9,29,1,28,16,27,1,9,4,27,4,9,3,27,1,28,13,29,1,28,45,1,111,28,2,33,13,5,27,14,10,5,4,14,13,5,1,33,7,5,4,33,7,5,1,33,15,5,2,33,3,5,1,14,16,5,22,33,5,5,1,33,108,28,3,1,181,}, + {1,109,28,21,29,2,26,1,10,1,9,1,12,2,11,1,12,1,17,1,12,1,9,1,27,1,28,2,10,1,11,1,9,1,28,14,12,2,9,1,26,24,27,1,9,2,26,1,28,11,9,1,26,1,28,11,26,1,12,2,9,1,27,1,26,8,27,1,9,2,28,15,26,1,9,2,26,1,28,21,25,1,26,1,28,12,9,3,26,11,27,1,9,2,28,10,27,1,28,15,27,1,9,3,27,1,26,6,27,2,9,1,27,1,28,12,29,1,28,11,29,1,28,1,29,1,28,1,29,1,28,29,1,111,6,1,28,1,33,12,5,5,33,2,5,21,14,8,5,5,14,14,5,1,33,6,5,5,33,23,5,1,33,1,5,3,14,17,5,22,33,114,28,4,1,180,}, + {1,109,28,20,29,4,26,1,28,4,27,1,12,1,17,1,15,2,12,3,11,1,12,1,28,14,12,2,9,1,26,24,27,1,12,2,29,1,28,11,27,1,9,1,28,12,26,1,9,2,12,1,27,2,26,6,27,1,9,2,28,14,26,1,25,1,29,1,28,23,27,1,26,1,28,12,9,1,12,1,9,1,27,1,26,10,27,1,9,2,28,10,27,1,28,14,27,1,9,3,27,1,26,9,27,2,28,12,29,1,28,10,29,3,26,1,29,3,28,28,16,1,1,110,16,1,28,2,33,12,5,2,33,4,5,22,14,6,5,4,14,16,5,1,33,7,5,6,33,21,5,1,33,1,5,2,14,18,5,1,14,1,5,19,33,117,28,2,33,1,1,179,}, + {1,109,28,20,29,3,28,8,29,1,15,2,11,1,17,1,12,1,17,1,11,1,25,1,28,13,9,1,12,1,9,1,26,17,27,1,9,4,27,1,9,2,12,2,26,1,28,12,9,1,28,13,26,1,12,2,9,2,27,1,26,5,9,2,12,1,28,13,26,1,27,1,28,25,26,1,29,1,28,12,9,1,12,1,9,1,27,1,26,10,27,1,9,2,28,10,26,1,28,13,26,1,9,3,27,1,26,11,27,2,28,11,26,1,28,10,29,3,28,1,29,1,26,1,29,1,28,28,29,1,1,110,16,1,28,2,33,16,5,11,14,4,5,9,14,4,5,5,14,17,5,1,33,7,5,10,33,16,5,4,14,24,5,12,33,9,5,4,33,109,28,3,5,1,1,177,}, + {1,109,16,1,28,19,29,2,28,11,29,1,25,1,11,1,17,1,11,1,15,1,12,1,29,1,28,12,29,1,12,1,15,1,25,1,26,12,27,1,9,4,12,2,9,1,12,1,9,1,12,4,27,1,28,12,27,2,28,13,26,1,9,5,27,4,9,1,12,1,9,1,29,1,28,12,27,1,28,25,29,1,27,1,28,13,9,1,12,1,9,1,27,1,26,10,9,2,26,1,28,9,26,1,29,1,28,13,10,1,9,2,27,1,26,10,28,1,26,1,27,2,28,11,29,1,28,10,29,1,26,1,28,4,29,2,28,28,1,108,28,5,33,15,5,6,14,4,5,1,14,7,5,15,14,18,5,1,33,7,5,8,33,18,5,2,14,2,5,3,14,22,5,12,33,5,5,1,33,1,5,6,33,108,28,1,33,1,28,2,6,1,1,176,}, + {1,110,28,19,29,1,28,14,26,1,17,1,11,1,15,1,12,1,25,1,28,13,12,2,9,1,26,11,27,1,9,3,12,3,9,2,12,3,9,2,12,1,9,1,28,13,9,1,28,14,26,1,9,9,12,2,29,1,28,11,29,1,27,1,28,25,27,1,29,1,28,13,10,1,12,1,9,1,27,1,26,9,27,1,9,2,28,10,25,1,28,14,9,2,27,1,26,14,27,1,28,11,29,1,28,10,29,1,26,1,28,5,26,1,28,28,1,107,28,2,26,1,13,2,28,1,33,13,5,7,14,4,5,2,14,8,5,12,14,20,5,1,33,7,5,9,33,16,5,1,14,3,5,4,14,22,5,12,33,7,5,5,33,112,28,3,1,175,}, + {1,110,28,36,12,1,11,1,12,2,28,13,27,1,12,1,15,1,26,9,27,1,9,1,12,2,9,1,12,1,9,1,27,1,28,6,29,1,27,1,9,2,28,13,9,1,27,1,28,15,26,1,25,1,9,8,28,12,26,1,27,1,28,23,26,1,27,1,29,1,28,14,27,1,12,1,9,1,27,1,26,9,9,2,27,1,28,10,25,1,28,13,26,1,9,2,27,1,26,9,28,2,26,1,28,1,26,1,27,1,28,22,29,1,26,1,28,5,26,1,28,28,1,106,28,2,25,1,14,3,30,1,6,1,33,12,5,16,14,4,5,12,14,21,5,1,33,8,5,10,33,14,14,5,5,2,14,24,5,11,33,6,5,6,33,113,28,3,1,174,}, + {1,110,28,37,12,3,27,1,28,13,15,2,9,1,26,7,27,1,9,1,15,1,12,2,9,1,26,1,28,25,29,1,9,1,28,18,26,1,27,2,26,1,29,1,28,14,29,1,25,1,28,21,29,1,27,1,9,1,29,1,28,15,27,1,12,1,9,1,27,1,26,8,27,1,9,2,29,1,28,10,27,1,28,13,27,1,9,2,27,1,26,6,28,6,26,2,27,1,28,22,29,1,26,1,28,34,1,105,28,2,26,1,15,1,11,2,14,1,13,1,6,1,33,11,5,32,14,22,5,1,33,5,5,3,33,1,5,9,33,13,5,1,14,31,5,12,33,3,5,6,33,116,28,3,6,1,1,172,}, + {1,110,29,1,28,37,12,2,9,1,28,13,9,1,12,1,15,1,26,7,9,1,15,1,12,1,9,1,27,1,28,28,12,1,26,1,28,37,9,1,28,19,29,1,27,1,10,1,9,1,27,1,28,16,27,1,12,1,9,1,27,1,26,8,9,3,28,11,27,1,28,13,27,1,9,1,27,1,26,5,28,8,26,2,27,1,29,1,28,21,26,1,29,1,28,5,29,1,28,29,1,103,28,3,25,1,15,1,11,1,1,1,11,1,14,1,33,12,5,30,14,24,5,1,33,4,5,8,33,1,5,5,33,13,14,24,5,4,14,3,5,6,33,1,5,15,33,118,28,3,1,171,}, + {1,110,28,39,9,2,26,1,28,12,29,1,12,1,15,1,25,1,26,5,9,1,12,2,9,1,26,1,28,29,27,1,9,1,28,37,25,1,29,1,28,16,26,1,25,1,9,4,27,1,28,16,27,1,12,1,9,1,27,1,26,8,9,2,26,1,28,11,27,1,28,13,27,1,9,1,27,1,26,4,28,1,26,1,28,7,26,2,27,1,29,1,28,21,29,2,28,5,29,1,28,29,1,103,16,1,28,1,30,1,9,1,11,2,1,2,14,1,33,13,5,27,14,6,5,3,14,17,33,3,5,10,33,1,5,6,33,12,14,3,5,3,14,19,5,2,14,3,5,23,33,119,28,3,1,170,}, + {1,111,28,39,12,1,9,1,28,13,9,1,12,1,9,1,26,4,27,1,9,1,12,2,28,32,12,1,26,1,28,36,26,1,27,1,28,14,27,1,9,7,27,1,28,16,27,1,9,2,27,1,26,6,27,1,9,2,10,1,28,12,26,1,28,13,10,1,9,1,27,1,26,4,28,4,26,1,28,4,26,2,27,1,29,1,28,21,29,2,28,5,26,1,28,29,1,103,16,1,28,1,25,1,15,1,11,1,1,3,14,2,33,12,5,17,14,15,5,5,14,15,5,1,33,2,5,18,33,11,5,1,14,3,5,3,14,19,5,29,33,119,28,3,5,1,1,168,}, + {1,111,28,39,26,1,12,1,28,13,26,1,12,1,9,1,27,1,26,2,27,1,12,3,28,33,9,2,28,37,25,1,29,1,28,10,29,1,9,10,27,1,28,16,27,1,9,2,27,1,26,5,27,1,9,3,29,1,28,12,27,1,28,13,27,1,9,1,27,1,26,5,28,8,26,1,27,1,9,1,28,22,26,1,29,1,28,5,26,1,28,9,29,1,28,18,29,1,1,103,28,2,15,1,14,1,11,1,1,3,14,2,33,13,5,15,14,13,5,8,14,15,5,1,33,2,5,13,14,3,5,2,33,11,14,4,5,3,14,18,5,14,14,3,5,13,33,121,28,3,1,167,}, + {1,111,28,40,25,2,28,13,12,2,9,1,26,1,27,1,9,1,12,2,10,1,28,33,29,1,12,1,26,1,28,37,27,1,29,1,28,6,29,1,27,1,9,1,12,2,9,5,27,1,9,3,27,1,28,16,27,1,9,2,27,1,26,5,9,2,12,1,25,1,28,13,25,1,28,13,27,1,9,2,26,4,28,9,26,1,27,1,9,1,28,22,29,2,28,5,29,1,28,9,29,1,28,19,1,102,28,2,25,1,14,1,11,2,1,3,14,2,33,16,5,11,14,8,5,14,14,15,5,1,33,2,5,12,14,5,5,1,33,10,5,1,14,3,5,3,14,16,5,17,14,2,5,14,33,73,28,1,33,48,28,2,6,1,1,166,}, + {1,111,28,41,9,1,28,13,27,1,12,1,9,1,27,1,9,1,12,3,28,35,9,2,28,37,29,1,9,1,27,1,26,1,29,1,26,1,27,1,10,1,9,8,27,4,9,2,27,1,28,16,27,1,9,2,27,1,26,3,27,2,9,1,12,1,9,1,28,14,27,1,28,13,29,1,9,1,27,1,26,6,28,5,26,2,27,1,9,1,27,1,28,10,29,1,28,11,29,2,28,4,29,2,28,29,1,102,28,1,26,1,15,1,14,1,11,2,1,3,14,2,5,1,33,14,5,12,14,7,5,15,14,14,5,2,33,1,5,12,14,6,5,1,33,10,14,23,5,34,33,123,28,2,5,1,1,164,}, + {1,112,28,40,29,1,26,1,28,13,12,2,9,1,12,3,10,1,28,35,27,1,12,1,29,1,28,37,9,11,27,3,26,4,27,1,9,2,27,1,28,16,25,1,9,2,27,4,9,4,28,15,26,1,28,14,9,2,27,1,26,4,28,1,26,1,28,3,26,2,27,1,9,1,25,1,28,11,29,1,28,11,26,1,29,1,28,4,26,1,28,10,29,1,28,20,1,101,28,1,25,1,15,2,11,3,1,2,14,3,33,14,5,13,14,7,5,14,14,14,5,14,14,6,5,2,33,9,5,1,14,24,5,33,33,124,28,2,1,164,}, + {1,112,28,41,27,1,28,13,9,1,12,5,28,37,12,1,9,1,28,37,9,9,27,3,26,6,27,1,9,2,27,1,28,16,9,8,12,1,9,1,29,1,28,15,29,1,28,14,26,1,9,3,27,1,26,8,27,1,9,2,29,1,28,11,29,1,28,10,29,1,26,2,28,4,26,1,28,10,29,1,28,20,1,101,29,1,28,1,9,1,15,1,11,3,1,2,14,3,5,1,33,13,5,13,14,8,5,3,14,4,5,6,14,14,5,14,14,6,5,2,33,9,14,4,5,1,14,20,5,33,33,125,28,2,1,163,}, + {1,112,28,26,29,1,28,15,27,1,28,12,29,1,12,4,9,1,28,37,27,1,12,1,25,1,28,36,9,6,27,3,26,10,9,2,10,1,28,16,9,2,12,1,9,2,12,2,9,2,28,18,26,1,28,14,27,1,9,3,27,1,26,6,27,1,9,2,27,1,28,23,29,1,26,2,28,4,29,1,28,31,1,102,28,1,13,1,9,1,15,1,14,8,33,13,5,12,14,9,5,4,14,4,5,5,14,7,5,2,14,4,5,6,14,3,5,6,14,6,5,2,33,9,14,26,5,33,33,125,28,1,6,1,1,1,5,1,28,2,5,1,1,157,}, + {1,112,28,24,26,1,27,1,9,3,29,1,28,12,9,1,28,13,12,4,29,1,28,38,12,2,9,1,29,1,28,34,9,4,27,2,26,13,9,3,28,16,9,2,12,1,9,5,28,19,25,1,28,15,9,5,27,3,9,4,26,1,28,12,29,1,28,11,26,2,29,1,28,4,26,1,28,30,29,1,1,102,29,1,28,1,25,2,9,1,15,1,14,6,5,1,33,15,5,10,14,7,5,5,14,3,5,7,14,12,5,5,14,5,5,2,14,8,5,3,33,8,5,1,14,26,5,35,33,70,28,1,33,53,28,1,6,1,28,4,6,1,1,156,}, + {1,112,16,1,28,22,29,1,26,1,27,1,10,1,9,1,12,2,29,1,28,11,26,1,27,1,28,12,26,1,12,3,28,20,29,1,26,1,29,2,28,15,27,1,12,2,9,1,27,1,28,33,9,4,27,1,26,14,9,3,28,16,9,2,12,3,9,1,29,1,28,20,27,1,28,16,9,10,28,14,26,1,28,11,26,2,29,1,28,4,29,1,28,30,29,1,1,103,30,1,28,1,29,1,26,1,9,1,14,2,5,5,33,15,5,1,33,3,5,8,14,1,5,19,14,11,5,4,14,16,5,4,33,8,14,27,5,34,33,126,28,3,33,1,28,2,5,1,1,155,}, + {1,113,28,21,29,2,26,1,27,2,9,1,12,3,28,12,9,1,28,13,12,3,28,17,27,1,9,2,12,1,9,1,12,1,9,1,25,1,26,1,28,14,12,4,10,1,29,1,28,31,9,4,26,15,9,3,28,16,9,1,12,2,9,2,28,22,27,1,28,18,10,1,9,4,10,1,28,15,29,2,28,11,29,1,26,1,28,4,26,1,28,32,1,104,29,1,28,4,6,1,33,1,5,4,33,20,5,14,14,2,5,11,14,9,5,5,14,17,5,1,14,1,5,2,33,7,5,1,14,25,5,36,33,131,28,2,1,155,}, + {1,113,28,21,29,2,26,4,27,1,9,1,11,1,25,1,28,11,29,1,27,1,28,12,9,1,12,2,28,15,26,1,9,1,12,1,9,1,12,5,9,2,29,1,28,13,9,1,12,5,9,1,27,1,28,28,29,1,9,3,27,1,26,15,9,2,25,1,28,16,9,3,28,24,27,2,28,38,26,1,29,1,28,11,26,2,28,4,26,1,28,10,29,1,28,21,1,107,29,1,16,1,28,4,33,1,28,4,33,9,5,2,33,1,5,1,33,3,5,15,14,2,5,11,14,9,5,5,14,20,5,1,33,7,5,1,14,21,5,27,14,4,5,1,14,2,5,6,33,132,28,1,6,1,1,154,}, + {1,113,29,1,28,20,29,3,26,4,27,1,9,1,12,1,28,12,9,1,28,12,29,1,12,1,9,1,28,15,9,1,12,3,9,3,12,4,9,1,28,14,12,7,9,1,25,1,27,1,26,1,28,8,29,3,28,13,26,1,9,3,27,1,26,15,9,2,25,1,28,16,27,1,29,1,28,25,10,1,9,1,28,37,29,1,27,1,29,1,28,11,26,2,28,4,26,1,28,10,29,1,28,21,1,110,5,1,6,2,28,1,6,1,1,1,5,1,28,2,33,10,5,3,33,2,5,15,14,1,5,9,14,5,5,1,14,5,5,7,14,8,5,3,14,8,5,1,33,7,14,22,5,27,14,4,5,2,14,1,5,6,33,133,28,2,1,153,}, + {1,113,16,1,28,20,29,1,26,1,29,1,26,1,28,1,26,3,27,1,9,2,28,11,27,2,28,12,9,2,28,14,10,1,12,4,9,1,27,3,9,1,12,2,9,1,28,14,10,1,12,6,15,1,9,7,27,1,9,5,26,1,28,13,27,1,9,3,27,1,26,15,27,1,9,1,25,1,28,42,10,1,9,2,27,1,28,36,27,2,28,12,26,2,28,3,29,1,26,1,28,33,1,116,6,1,28,1,33,10,5,27,14,8,5,3,14,2,5,8,14,7,5,4,14,8,33,7,5,1,14,23,5,32,14,1,5,6,33,134,28,2,1,152,}, + {1,114,28,21,26,8,27,1,12,1,27,1,28,11,9,1,28,12,26,1,9,1,28,14,12,1,9,1,12,2,9,1,27,2,26,1,27,3,12,1,9,1,27,1,28,14,12,8,9,1,12,2,9,2,12,1,9,2,12,1,9,1,12,1,9,1,28,14,27,1,9,3,27,1,26,15,27,1,9,1,25,1,28,41,29,1,9,2,12,1,9,1,28,35,29,1,27,2,28,11,29,1,26,1,29,1,28,3,26,1,29,1,28,10,29,1,28,22,1,116,5,1,28,2,33,8,5,6,33,1,5,21,14,9,5,2,14,2,5,1,33,1,5,6,14,6,5,4,14,8,5,1,33,7,14,26,5,10,14,2,5,18,14,1,5,6,33,135,28,2,5,1,1,150,}, + {1,114,29,1,28,21,26,1,29,1,28,1,26,5,9,1,12,1,28,11,9,1,28,13,12,1,28,13,27,1,12,3,9,1,27,2,26,4,27,1,9,1,12,1,9,1,28,14,12,4,9,3,12,1,9,6,12,4,9,2,28,14,10,1,9,3,26,16,27,1,9,2,28,41,9,2,12,1,9,2,10,1,28,34,27,2,26,1,28,11,29,1,26,1,29,1,28,3,26,1,29,1,28,9,29,2,28,21,29,1,1,118,28,1,33,10,5,27,14,11,5,1,33,1,5,7,14,5,5,3,14,9,5,1,33,7,5,1,14,27,5,9,14,3,5,16,14,1,5,7,33,136,28,2,6,1,1,149,}, + {1,114,28,22,26,1,29,1,26,6,27,1,12,1,26,1,28,10,27,1,25,1,28,12,9,1,28,13,9,1,12,2,9,1,27,2,26,6,27,1,12,2,29,1,28,13,25,1,12,2,9,2,27,10,9,1,12,3,9,1,28,14,9,4,26,16,27,1,9,1,25,1,28,40,10,1,9,2,12,2,9,2,26,1,28,32,27,1,10,2,29,1,28,11,29,1,26,2,28,3,26,1,28,10,29,1,28,23,1,118,28,2,33,12,5,24,14,10,5,7,14,1,5,7,14,11,5,2,33,7,14,28,5,9,14,4,5,23,33,137,28,3,1,148,}, + {1,114,16,1,28,22,26,1,28,2,26,5,9,2,28,11,12,1,28,12,9,1,28,13,9,1,12,2,9,1,27,1,26,8,9,2,25,1,28,14,12,1,15,1,12,1,9,1,27,2,26,6,27,2,9,1,12,2,9,1,27,1,28,14,9,4,26,16,27,1,9,1,25,1,28,39,10,1,12,1,9,1,12,1,9,1,12,1,9,3,29,1,28,30,27,1,9,2,10,1,28,12,29,1,26,1,29,1,28,2,26,2,28,10,29,1,28,23,1,118,5,1,28,1,33,12,5,15,14,5,5,3,14,11,5,5,14,4,5,4,14,1,5,1,14,11,5,1,33,7,5,1,14,26,5,12,14,3,5,21,33,140,28,3,5,1,1,146,}, + {1,115,28,22,26,2,28,2,26,4,9,1,12,1,28,11,12,1,26,1,28,11,27,1,26,1,28,12,9,1,12,1,9,1,27,2,26,8,27,1,9,2,28,14,9,1,12,2,9,1,27,1,26,9,27,1,12,2,9,1,28,15,9,4,26,16,27,1,9,1,27,1,28,38,27,1,12,1,9,1,12,1,9,2,27,1,9,4,28,29,26,1,10,2,9,1,10,1,28,12,29,1,26,1,29,1,28,2,26,1,29,1,28,10,29,1,28,23,1,119,6,1,28,1,33,12,5,14,14,9,5,6,14,3,5,1,33,1,5,3,14,8,5,1,14,12,5,2,33,7,14,22,5,3,14,2,5,35,33,143,28,2,5,1,1,145,}, + {1,115,28,23,26,2,28,1,26,4,27,1,12,1,27,1,28,10,9,2,28,12,25,1,28,12,27,1,15,1,9,1,27,2,26,9,9,2,26,1,28,14,12,1,9,1,12,1,9,1,26,9,27,1,12,2,9,1,28,15,9,4,26,16,9,2,26,1,28,37,27,1,9,1,12,2,9,1,27,2,26,1,27,1,9,2,12,1,9,1,28,27,26,1,9,2,10,3,28,12,26,2,29,1,28,2,26,1,29,1,28,10,29,1,28,23,1,120,28,2,33,13,5,13,14,9,5,5,14,2,5,1,33,2,5,3,14,12,5,2,14,6,5,2,33,7,5,1,14,20,5,42,33,144,28,2,6,1,1,144,}, + {1,115,29,1,28,22,26,2,28,1,26,5,12,1,9,1,28,10,9,1,12,1,26,1,28,11,9,1,28,12,29,1,12,2,9,1,27,1,26,9,27,1,12,1,9,1,28,14,9,1,15,1,12,1,9,1,27,1,26,8,27,1,12,2,9,1,28,15,9,3,27,1,26,16,9,2,26,1,28,36,10,1,12,1,9,1,12,1,9,1,27,1,26,4,27,1,9,4,27,1,28,24,26,1,9,1,10,1,9,2,10,1,27,1,28,12,26,2,28,2,29,1,26,1,28,35,16,1,1,120,28,1,33,14,5,1,33,2,5,12,14,6,5,5,14,2,5,2,14,14,5,2,14,7,5,2,33,7,5,1,14,20,5,43,33,145,28,3,1,143,}, + {1,115,16,1,28,23,26,7,12,2,28,10,27,1,9,2,28,11,9,1,28,13,12,2,9,1,27,1,26,10,9,2,29,1,28,14,15,1,12,1,9,2,26,8,27,1,9,1,12,1,9,1,28,15,9,3,27,1,26,16,27,1,9,1,26,1,28,35,9,1,12,2,9,3,27,1,26,6,27,1,9,4,26,1,28,21,27,1,10,1,9,5,26,1,28,12,26,2,28,2,26,2,28,36,1,120,6,1,28,1,33,14,5,15,14,5,5,8,14,9,5,1,14,3,5,1,33,1,5,1,14,8,5,1,33,8,14,21,5,5,14,1,5,9,14,6,5,20,33,149,28,2,6,1,1,141,}, + {1,116,28,23,26,7,12,2,28,10,26,1,12,2,26,1,28,10,26,2,28,12,12,2,9,1,27,1,26,10,9,1,12,1,26,1,28,14,27,1,12,2,9,1,27,1,26,7,9,2,12,1,27,1,28,15,9,3,27,1,26,16,27,1,9,1,27,1,28,33,26,1,9,2,12,1,9,2,27,2,26,8,27,1,9,1,12,2,9,1,27,1,28,17,29,1,10,1,9,3,27,2,26,1,27,1,9,1,29,1,28,11,29,1,26,2,28,2,26,2,28,11,29,1,28,24,1,121,6,1,28,1,33,13,5,15,14,5,5,5,14,1,5,1,14,4,11,2,14,7,33,2,5,1,14,6,5,3,33,8,5,1,14,21,5,4,14,3,5,5,14,2,5,2,14,5,5,20,33,150,28,3,1,140,}, + {1,116,28,24,26,5,27,1,12,1,15,1,28,10,29,1,12,2,9,1,28,11,9,1,28,12,26,1,12,2,9,1,26,10,9,3,28,15,9,1,12,1,9,2,27,1,26,6,9,1,12,1,9,1,29,1,28,15,9,3,27,1,26,16,27,1,9,1,25,1,28,32,27,1,9,2,12,1,9,2,27,2,26,10,27,1,9,4,10,1,26,1,28,13,26,1,27,1,9,4,27,1,26,3,27,1,9,1,29,1,28,11,26,2,29,1,28,2,26,2,28,10,29,1,28,25,1,122,6,1,28,1,33,12,5,14,14,6,5,3,14,7,11,5,14,11,5,5,33,9,14,22,5,1,14,4,5,15,14,2,5,5,14,3,5,10,33,151,28,1,33,1,28,2,5,1,1,138,}, + {1,116,28,24,27,1,26,4,9,1,11,1,9,1,28,10,29,1,9,1,12,2,26,1,28,10,9,1,29,1,28,12,9,4,26,9,27,1,15,1,9,1,28,16,9,1,12,1,9,1,27,1,26,6,9,1,12,1,9,1,28,16,27,1,9,2,27,1,26,17,9,2,29,1,28,29,27,1,9,3,12,2,9,1,27,1,26,14,27,1,9,5,27,1,26,2,29,4,27,4,10,1,9,4,27,2,26,4,27,2,26,1,28,11,27,1,26,1,29,1,28,2,26,2,28,10,29,1,28,25,1,122,5,1,28,2,33,12,5,3,33,1,5,9,14,5,5,4,14,6,11,7,14,11,5,3,33,9,5,1,14,28,5,33,33,155,28,2,5,1,1,137,}, + {1,116,28,25,27,3,12,1,11,2,29,1,28,10,29,1,12,3,9,1,28,11,9,1,28,13,15,1,9,2,27,1,26,7,27,1,9,1,12,1,9,1,28,16,26,1,15,1,12,1,9,1,27,1,26,5,9,3,28,16,27,1,9,3,26,17,27,1,9,1,27,1,28,27,26,1,9,1,12,2,9,1,12,1,9,2,27,1,26,17,27,1,9,1,12,2,9,15,27,1,26,7,27,1,26,1,28,10,26,3,28,3,26,2,28,10,29,1,28,25,1,123,5,1,28,1,33,10,5,1,33,5,5,10,14,3,5,4,14,7,11,6,14,1,9,1,13,1,9,1,14,2,11,2,14,5,5,2,33,8,5,1,14,29,5,33,33,156,28,2,6,1,1,136,}, + {1,117,28,24,26,1,25,1,9,1,12,1,11,1,12,1,28,11,29,1,12,4,29,1,28,10,9,1,28,13,29,1,15,2,9,1,27,3,26,3,27,1,9,2,12,1,27,1,28,17,9,1,15,1,12,1,9,1,26,5,9,1,12,1,9,1,28,16,29,1,9,3,26,17,27,1,9,2,26,1,28,24,26,1,9,4,12,1,9,2,27,2,26,19,27,2,9,13,27,2,26,9,27,2,28,10,26,3,28,3,26,2,28,9,29,2,28,25,1,124,5,1,28,1,33,12,5,15,14,1,5,4,14,7,11,6,9,1,26,1,9,1,15,1,14,1,11,5,14,3,5,1,33,9,5,1,14,22,5,2,14,5,5,29,33,1,5,2,33,158,28,3,1,135,}, + {1,117,28,25,25,1,9,1,12,1,15,1,29,1,28,11,26,1,12,4,9,1,28,11,9,1,28,13,29,1,12,1,9,4,27,1,9,6,28,19,9,1,12,2,27,1,26,3,27,1,9,1,12,1,9,1,28,17,9,3,27,1,26,14,28,1,26,2,9,2,25,1,29,1,28,21,26,1,10,1,9,4,12,1,9,1,27,2,26,25,27,3,9,4,27,3,26,9,28,2,26,1,27,2,26,1,28,8,29,1,27,2,29,1,28,3,26,1,29,1,28,9,29,1,26,1,28,26,1,124,28,2,33,11,5,20,14,5,15,1,11,6,15,1,26,2,15,1,11,6,15,1,14,3,5,1,33,8,5,1,14,23,5,2,14,1,5,2,14,6,5,12,14,3,5,9,33,3,5,1,33,159,28,3,1,134,}, + {1,117,29,1,28,24,29,1,9,2,26,1,28,12,27,1,12,5,26,1,28,10,9,1,28,15,9,1,12,5,9,2,12,2,29,1,28,19,29,1,12,2,9,1,26,4,9,1,12,1,9,1,28,17,27,1,9,3,26,17,27,1,9,1,27,1,25,1,26,1,28,17,29,1,27,1,25,1,9,1,12,2,9,3,27,2,26,45,28,3,26,2,27,2,28,8,27,2,26,1,29,1,28,3,26,2,28,9,29,2,28,26,1,125,28,2,33,7,5,1,33,5,5,17,14,4,15,2,11,5,15,1,25,1,26,1,9,1,15,1,11,2,15,6,14,2,5,1,33,7,5,2,14,22,5,2,14,3,5,1,14,7,5,11,14,5,5,7,33,165,28,2,5,1,1,132,}, + {1,117,28,26,25,1,29,1,28,13,9,1,12,5,9,1,28,11,27,1,28,16,27,1,9,1,12,1,9,1,12,2,25,1,28,22,12,2,9,1,27,1,26,2,27,1,9,1,12,1,25,1,28,18,9,1,12,1,9,1,26,18,27,1,9,2,27,2,29,1,28,12,29,1,27,1,9,4,12,1,9,3,27,2,26,47,28,4,26,1,27,1,9,2,29,1,28,4,26,1,27,2,26,2,28,4,26,2,28,9,29,2,28,26,1,126,28,2,33,13,5,9,14,1,5,5,14,6,15,1,11,5,9,1,26,1,9,1,15,1,11,3,15,6,14,2,5,1,33,6,5,1,14,23,5,1,14,5,5,1,14,8,5,2,14,3,5,4,14,6,5,7,33,166,28,2,5,1,1,131,}, + {1,118,28,40,9,1,12,2,9,2,12,2,28,11,25,1,29,1,28,44,27,1,12,2,27,1,26,2,27,1,9,1,12,1,9,1,28,18,9,1,12,1,9,1,27,1,26,8,28,2,26,8,27,2,9,1,27,2,10,1,26,1,29,6,26,1,27,3,9,5,12,2,9,1,27,2,26,48,28,5,26,2,27,9,26,2,28,5,29,1,26,1,28,9,29,1,26,1,28,26,1,126,5,1,28,1,33,15,5,6,14,2,5,5,14,6,15,1,11,4,15,1,25,1,9,1,15,2,14,1,15,8,14,2,5,1,33,6,14,24,5,1,14,4,5,3,14,13,5,2,14,5,5,9,33,167,28,2,5,1,1,130,}, + {1,118,28,40,12,3,9,2,12,2,25,1,28,11,9,1,29,1,28,43,26,1,12,2,9,1,26,2,27,1,9,3,28,18,27,1,9,3,26,11,28,1,26,8,27,3,9,2,25,2,10,3,9,11,27,2,26,45,28,4,26,3,28,5,26,2,27,2,25,1,27,4,26,1,29,1,28,6,26,1,28,9,29,2,28,27,1,126,5,1,28,1,33,13,5,7,14,2,5,3,14,7,15,3,11,3,15,1,25,1,9,1,15,8,9,1,15,1,14,2,5,1,33,6,14,30,5,2,14,20,5,11,33,103,5,6,33,58,28,2,5,1,1,129,}, + {1,118,28,39,26,1,12,3,27,2,9,1,12,1,9,1,28,11,27,1,9,1,28,44,12,2,9,1,26,3,9,1,12,1,9,1,28,19,12,2,9,1,26,11,28,1,26,10,27,1,9,13,27,3,26,46,28,1,26,2,28,4,26,3,28,6,26,2,27,4,26,2,28,8,26,1,29,1,28,7,29,1,26,1,29,1,28,27,1,127,5,1,28,1,33,13,5,7,14,11,15,2,11,4,9,1,25,1,15,10,14,2,5,1,33,6,5,1,14,33,5,1,14,17,5,12,33,103,5,8,33,57,28,2,5,1,1,128,}, + {1,118,28,39,9,1,12,2,9,1,27,3,12,2,27,1,28,11,9,1,27,1,28,42,26,1,12,2,9,1,27,1,26,2,9,1,12,2,28,19,9,3,27,1,26,5,28,1,26,17,27,12,26,42,28,3,26,4,28,1,26,2,28,14,26,5,28,10,26,2,28,7,29,1,26,1,28,27,29,1,1,129,28,1,6,1,33,11,5,9,14,10,15,1,11,3,15,1,9,2,15,9,14,3,33,6,5,1,14,35,5,1,14,16,5,12,33,106,5,5,33,58,28,2,5,1,1,127,}, + {1,118,16,1,28,37,27,1,12,3,27,1,26,3,9,1,12,1,9,1,28,12,9,1,27,1,28,41,9,1,12,2,9,1,27,1,26,2,27,1,12,2,27,1,28,18,27,1,9,2,27,1,26,78,28,4,26,2,28,1,26,1,28,18,26,1,28,1,26,1,28,10,26,2,28,5,29,2,26,1,29,1,28,1,29,1,28,24,29,1,1,129,5,1,28,1,6,1,33,10,5,9,14,10,15,1,11,3,15,1,9,2,15,8,14,2,5,1,33,7,14,35,5,2,14,15,5,12,33,108,5,4,33,59,28,2,6,1,1,126,}, + {1,119,28,36,29,1,12,3,9,1,27,1,26,3,27,1,9,1,12,1,26,1,28,12,9,1,29,1,28,39,26,1,12,3,9,1,27,1,26,2,27,1,9,1,12,1,9,1,28,18,27,1,9,2,27,1,26,74,28,1,26,2,28,6,26,4,28,16,26,1,28,13,26,3,29,2,28,1,29,1,26,2,29,1,28,28,1,130,5,1,28,2,33,8,5,10,14,9,15,3,11,1,15,2,9,1,25,1,9,1,15,4,14,5,33,7,5,1,14,35,5,3,14,9,5,17,33,107,5,6,33,59,28,3,5,1,1,124,}, + {1,119,28,36,9,1,12,3,9,1,27,1,26,4,27,1,12,1,9,1,28,13,9,1,26,1,28,25,29,1,9,2,26,1,28,8,27,1,12,1,9,1,12,2,9,1,26,4,9,1,12,1,9,1,26,1,28,17,10,1,9,3,26,75,28,7,26,5,28,31,26,8,28,28,29,1,1,132,28,2,33,7,5,13,14,6,15,3,11,1,15,2,9,3,15,3,14,4,33,8,5,1,14,36,5,3,14,8,5,18,33,108,5,6,33,59,28,4,1,123,}, + {1,119,28,35,27,1,17,1,12,2,9,1,27,1,26,6,9,2,26,1,28,12,9,2,26,1,28,23,26,1,9,1,12,3,9,1,27,1,29,1,28,2,29,1,27,1,9,2,12,3,9,1,27,1,26,4,27,1,9,3,28,17,9,1,12,1,9,1,27,1,26,78,28,4,26,6,28,30,26,7,28,30,1,133,28,1,33,8,5,13,14,5,15,3,11,1,15,3,9,2,15,1,14,5,33,8,5,1,14,48,5,18,33,109,5,5,33,61,28,3,5,1,1,121,}, + {1,120,28,33,27,1,12,4,27,2,26,6,27,1,12,1,9,1,28,12,29,1,12,1,9,1,27,1,28,21,29,1,9,1,12,7,9,3,12,5,9,1,27,2,26,5,9,1,12,1,9,1,25,1,28,15,26,1,9,3,27,1,26,78,28,2,26,10,28,29,26,5,28,31,1,133,5,1,28,2,33,5,5,11,14,1,5,1,14,7,15,3,11,1,15,4,14,4,5,1,33,8,5,1,14,49,5,18,33,105,5,1,33,1,5,10,33,59,28,3,5,1,1,120,}, + {1,120,28,32,26,1,12,1,11,1,17,1,12,1,9,1,27,2,26,7,9,1,12,1,26,1,28,12,12,3,27,1,28,19,26,1,9,1,12,14,9,1,27,2,26,7,27,1,9,1,12,1,9,1,27,1,28,13,26,1,9,4,26,24,28,1,26,1,28,1,26,62,28,1,26,1,28,3,26,2,28,61,1,133,5,1,28,2,33,4,5,3,33,2,5,5,14,10,15,3,11,2,14,5,16,1,33,8,5,2,14,49,5,16,33,110,5,12,33,4,5,1,33,54,28,2,5,1,1,119,}, + {1,120,29,1,28,30,27,1,12,1,11,2,12,1,9,1,27,2,26,8,27,1,12,1,9,1,28,12,9,1,12,3,9,1,27,1,28,16,27,1,9,1,12,4,9,11,27,1,26,10,27,1,9,1,12,2,27,1,28,11,27,1,9,1,12,1,9,2,27,1,26,24,28,4,26,60,28,2,26,1,28,3,26,2,28,60,29,1,1,135,28,2,33,4,5,9,14,12,11,2,14,6,33,1,5,2,33,5,5,2,14,49,5,10,14,1,5,7,33,104,5,1,33,4,5,1,33,1,5,5,14,1,5,4,33,1,5,5,33,54,28,2,1,119,}, + {1,120,28,30,26,1,15,1,11,3,12,1,9,1,27,1,26,9,27,1,12,2,28,13,12,4,15,1,12,1,25,1,29,1,28,11,26,1,9,1,12,5,27,10,26,14,27,1,9,1,12,1,9,1,25,1,26,1,28,6,26,1,27,1,9,2,12,2,9,1,27,1,26,25,28,3,26,61,28,2,26,2,28,64,29,1,1,136,28,2,33,4,5,5,14,23,5,3,33,1,5,4,14,19,5,2,14,4,5,2,14,25,5,18,33,101,5,4,33,3,5,2,33,2,5,4,14,1,5,10,33,54,28,2,1,118,}, + {1,121,28,30,12,1,11,2,12,1,9,1,27,2,26,10,9,2,25,1,28,12,10,1,12,5,9,3,25,1,26,1,29,1,28,2,29,2,27,2,9,1,12,1,9,2,12,2,9,1,27,2,26,24,27,1,9,1,12,2,9,9,12,3,9,2,27,1,26,26,28,2,26,61,28,2,26,3,28,64,1,136,5,1,28,2,33,2,5,4,14,11,5,1,14,15,5,4,14,20,5,5,14,1,5,3,14,25,5,18,33,97,5,9,33,1,5,3,33,3,5,3,14,1,5,13,33,51,28,3,5,1,1,116,}, + {1,121,28,19,29,1,28,10,29,1,11,1,17,1,9,1,27,2,26,11,27,1,12,2,28,13,12,10,9,5,12,6,9,1,27,2,26,27,27,1,9,2,12,9,9,3,27,2,26,26,28,4,26,56,28,2,26,1,28,2,26,5,28,63,1,138,28,2,33,2,5,2,14,10,5,2,14,21,5,1,14,18,5,8,14,26,5,2,14,3,5,14,33,96,5,19,14,4,5,4,14,1,5,4,33,54,28,2,1,116,}, + {1,121,29,1,28,19,29,1,28,10,12,1,11,1,12,1,27,2,26,12,9,1,12,1,27,1,28,12,9,1,12,15,9,1,12,2,9,1,27,4,26,29,27,1,9,1,12,6,9,3,27,2,26,29,28,3,26,57,28,1,26,1,28,2,26,5,28,1,26,1,28,2,26,1,28,58,1,139,28,2,33,2,5,1,14,9,5,3,14,36,5,2,14,1,5,9,14,32,5,7,33,1,5,4,33,1,5,1,33,95,5,18,14,5,5,9,33,55,28,2,1,115,}, + {1,121,29,1,28,30,29,1,11,1,12,1,9,1,27,1,26,12,27,1,9,1,12,1,28,12,29,1,12,3,9,7,12,1,9,6,27,3,26,33,27,3,9,4,27,2,26,33,28,1,26,67,28,2,26,1,28,2,26,1,28,57,1,140,33,4,5,1,14,9,5,2,14,37,5,10,14,33,5,5,33,4,5,1,33,91,5,2,33,7,5,32,33,55,28,2,1,114,}, + {1,121,28,21,26,1,28,10,9,1,12,2,27,1,26,13,9,1,12,1,28,13,9,1,12,3,9,1,27,12,26,41,27,1,26,19,28,1,26,84,28,2,26,2,28,1,26,1,28,57,1,140,28,1,33,4,5,1,14,47,5,10,14,32,5,7,33,2,5,2,33,91,5,3,33,6,5,6,14,1,5,25,33,56,28,2,1,113,}, + {1,122,28,32,15,2,27,1,26,13,9,1,12,1,27,1,28,13,12,3,9,1,27,1,26,160,28,60,29,1,1,138,28,2,33,6,5,1,14,24,5,1,14,20,5,12,14,10,5,3,14,7,5,1,14,7,5,9,33,95,5,4,33,6,5,1,14,5,5,21,33,4,5,1,33,56,28,2,1,112,}, + {1,122,28,21,26,1,28,10,9,1,11,1,15,1,27,1,26,13,9,2,28,13,9,1,12,2,9,1,27,1,26,160,28,61,1,138,6,1,28,1,33,6,5,4,14,21,5,1,14,20,5,12,14,11,5,2,14,5,5,7,14,1,5,9,33,97,5,3,33,7,5,1,14,5,5,10,14,4,5,7,33,3,5,4,33,55,28,1,5,1,1,111,}, + {1,122,28,21,26,1,29,1,28,10,11,1,15,1,9,1,26,13,9,1,12,1,26,1,28,12,29,1,15,2,12,1,27,1,26,161,28,59,29,1,1,138,6,1,28,1,33,4,5,7,14,7,5,3,14,31,5,11,14,11,5,3,14,4,5,13,33,2,5,4,33,1,5,1,33,94,5,2,33,6,5,4,14,4,5,10,14,5,5,7,33,3,5,2,33,1,5,2,33,53,28,3,1,110,}, + {1,122,28,22,26,1,28,10,9,1,11,1,15,1,26,13,27,1,12,1,9,1,28,13,9,1,15,1,12,1,27,1,26,162,28,59,1,139,28,1,33,4,5,2,14,4,5,3,14,6,5,2,14,31,5,11,14,11,5,4,14,2,5,17,33,1,5,1,33,2,5,1,33,56,5,4,33,28,5,1,33,1,5,1,33,2,5,1,33,1,5,1,33,5,5,5,14,2,5,10,14,3,5,1,14,5,5,7,33,6,5,2,33,53,28,2,1,109,}, + {1,123,28,21,26,2,28,10,11,1,15,1,27,1,26,13,9,1,12,1,29,1,28,12,27,1,12,2,9,1,26,89,28,1,26,72,28,1,26,2,28,56,1,138,29,1,28,1,33,4,5,2,14,5,5,5,14,36,5,11,14,10,5,5,14,2,5,17,33,4,5,2,33,1,5,1,33,51,5,7,33,27,5,1,33,1,5,1,33,10,5,16,14,8,5,12,33,2,5,4,33,53,28,2,1,108,}, + {1,123,28,21,26,2,28,10,26,1,15,2,27,1,26,12,27,1,12,1,9,1,28,13,12,2,9,1,26,89,28,2,26,76,28,54,16,1,1,137,6,1,28,1,33,4,5,2,14,7,5,4,14,35,5,13,14,8,5,6,14,1,5,10,33,1,5,6,33,4,5,2,33,52,5,9,33,4,5,1,33,20,5,7,33,8,5,15,14,8,5,25,33,46,28,2,6,1,1,107,}, + {1,123,29,1,28,21,26,2,28,10,9,1,15,1,9,1,26,13,9,1,12,1,28,13,9,1,12,2,27,1,26,87,28,3,26,77,28,54,1,137,6,1,28,1,33,4,5,5,14,7,5,2,14,34,5,1,33,2,5,12,14,5,5,20,14,2,5,3,33,5,5,1,33,51,5,10,33,2,5,3,33,20,5,9,33,6,5,15,14,8,5,25,33,47,28,2,5,1,1,106,}, + {1,123,28,22,26,1,27,1,28,11,15,2,27,1,26,12,27,1,12,1,9,1,28,12,26,1,12,2,27,1,26,87,28,3,26,79,28,52,1,137,6,1,28,1,33,4,5,5,14,43,5,1,33,2,5,2,33,1,5,8,14,6,5,27,33,55,5,10,33,1,5,4,33,6,5,1,33,13,5,4,14,3,5,3,33,2,5,2,33,1,5,17,14,1,5,3,14,1,5,26,33,48,28,2,6,1,1,105,}, + {1,124,28,22,26,1,27,1,28,10,9,1,15,1,9,1,26,13,12,2,29,1,28,11,29,1,12,2,9,1,26,84,28,1,26,90,28,46,1,137,6,1,28,1,33,4,5,4,14,44,5,1,33,5,5,5,14,9,5,7,14,2,5,17,33,55,5,14,33,1,5,4,33,2,5,2,33,13,5,4,14,2,5,4,33,1,5,26,14,2,5,20,33,1,5,3,33,48,28,3,5,1,1,104,}, + {1,124,28,22,26,1,27,1,28,11,11,1,15,1,27,1,26,12,9,1,12,1,9,1,28,12,12,2,9,1,26,83,28,4,26,83,28,1,26,2,28,48,1,137,6,1,28,1,33,4,5,4,14,44,5,1,33,6,5,4,14,9,5,6,14,3,5,15,33,57,5,13,33,3,5,4,33,1,5,3,33,12,5,2,14,1,5,1,14,1,5,7,33,1,5,24,14,2,5,20,33,2,5,2,33,50,28,2,5,1,1,103,}, + {1,124,28,22,29,1,26,2,28,10,25,1,15,1,9,1,26,12,27,1,12,2,26,1,28,11,12,2,9,1,27,1,26,84,28,3,26,1,28,1,26,81,28,50,1,137,6,1,28,1,33,4,5,3,14,45,5,1,33,7,5,3,14,9,5,5,14,5,5,6,14,4,5,3,33,57,5,1,14,5,5,8,33,3,5,9,33,10,5,12,33,3,5,44,33,2,5,4,33,50,28,2,5,1,1,102,}, + {1,124,28,23,26,1,27,1,28,11,11,1,15,1,9,1,26,12,9,1,12,1,9,1,28,10,29,1,9,1,12,2,27,1,26,84,28,3,26,81,28,52,1,137,29,1,28,1,33,4,5,3,14,45,5,1,33,6,5,4,14,9,5,4,14,6,5,8,14,1,5,4,33,57,14,6,5,9,33,2,14,2,5,1,33,1,5,5,33,7,5,3,14,2,5,10,33,1,5,4,14,3,5,29,14,5,5,4,33,2,5,8,33,47,28,3,1,102,}, + {1,125,28,23,27,1,28,11,9,1,11,1,15,1,27,1,26,11,27,1,12,2,29,1,28,9,9,1,17,1,12,2,27,1,26,165,28,55,1,137,6,1,28,1,33,4,5,3,14,45,5,1,33,5,5,7,14,7,5,4,14,6,5,13,33,56,5,1,14,8,5,2,14,2,5,3,33,2,5,1,14,1,5,3,14,1,5,3,33,6,5,4,14,2,5,5,33,1,5,21,14,1,5,18,14,2,5,1,14,4,5,3,33,2,5,8,33,48,28,2,5,1,1,101,}, + {1,125,28,23,26,1,27,1,28,11,11,1,15,1,27,1,26,12,9,1,12,2,29,1,28,8,12,3,9,1,27,1,26,162,28,58,1,137,5,1,28,1,33,4,5,3,14,45,5,1,33,5,5,8,14,5,5,5,14,5,5,15,33,55,14,15,5,2,33,1,5,3,14,1,5,1,14,1,5,2,33,6,5,4,14,5,5,3,33,1,5,21,14,1,5,22,14,3,5,14,33,48,28,2,1,101,}, + {1,125,28,24,27,1,28,11,15,1,11,1,15,1,26,12,27,1,9,1,12,2,26,1,28,6,9,1,12,3,9,1,27,1,26,159,28,62,1,137,28,1,33,4,5,2,14,46,5,1,33,5,5,7,14,5,5,7,14,3,5,12,33,58,5,1,14,11,5,1,14,4,5,1,33,2,5,2,14,3,5,1,33,7,5,2,14,6,5,9,14,2,5,14,14,4,5,10,14,2,5,9,14,2,5,14,33,49,28,2,1,100,}, + {1,126,28,23,26,1,27,1,28,10,29,1,11,1,15,1,27,1,26,12,27,1,12,3,9,1,27,1,26,1,29,1,27,1,9,1,12,4,9,1,27,1,26,87,28,1,26,67,28,66,1,137,28,1,33,4,5,2,14,46,5,1,33,5,5,8,14,4,5,21,33,59,14,13,5,1,14,3,5,1,33,2,5,2,14,3,5,1,33,7,5,2,14,6,5,9,14,3,5,11,14,10,5,11,33,1,5,5,14,2,5,14,33,49,28,3,1,99,}, + {1,126,28,23,26,1,9,1,28,11,9,1,11,1,15,1,27,1,26,12,27,1,12,11,9,1,27,1,26,88,28,1,26,64,28,69,1,137,28,1,33,4,5,2,14,47,33,5,5,7,14,4,5,23,33,57,5,1,14,6,5,1,14,6,5,1,14,3,5,2,33,2,5,5,33,5,5,2,14,8,5,9,14,2,5,10,14,12,5,17,14,4,5,17,33,45,28,3,1,98,}, + {1,126,28,24,27,1,26,1,28,11,11,1,15,1,9,1,26,13,27,1,12,9,9,1,27,1,26,151,28,72,1,137,28,1,33,4,5,1,14,48,33,5,5,34,33,57,5,1,14,5,5,1,33,2,5,1,14,6,5,1,14,3,33,2,5,5,33,3,5,4,14,8,5,9,14,2,5,9,14,13,5,19,14,2,5,18,33,45,28,2,6,1,1,97,}, + {1,126,29,1,28,23,26,1,9,1,28,11,12,1,11,1,9,1,26,14,27,1,9,2,12,5,9,1,27,2,26,147,28,76,1,137,28,1,33,4,5,1,14,48,33,5,5,22,14,2,5,11,33,56,14,9,5,2,14,8,5,1,33,2,5,1,33,2,5,9,14,5,5,21,14,15,5,40,33,45,28,2,5,1,1,96,}, + {1,126,16,1,28,23,26,1,27,1,26,1,28,10,26,1,11,1,12,1,26,16,27,7,26,146,28,79,29,1,1,136,28,1,33,4,5,1,14,48,33,7,5,18,14,5,5,5,14,1,5,4,33,55,5,7,14,4,5,1,33,1,5,1,14,6,33,2,5,2,33,2,5,8,14,1,5,1,14,3,5,22,14,16,5,39,33,46,28,2,5,1,1,95,}, + {1,127,28,24,26,1,9,1,28,11,12,2,27,1,26,165,28,83,1,136,28,1,33,4,5,2,14,47,33,8,5,3,14,2,5,11,14,6,5,9,33,56,5,2,33,7,5,3,14,1,5,2,14,5,5,1,14,2,5,1,33,2,5,26,14,2,5,6,14,16,5,38,33,2,5,1,33,46,28,2,1,95,}, + {1,127,28,24,26,1,27,1,26,1,28,10,9,1,11,1,9,1,26,161,28,87,1,136,6,1,33,3,5,1,33,1,5,1,14,47,5,1,33,7,5,3,14,4,5,9,14,7,5,8,33,1,5,2,33,53,5,1,33,10,5,1,33,2,5,2,14,6,5,8,14,1,5,22,14,1,5,7,14,15,5,42,33,46,28,2,1,94,}, + {1,127,29,1,28,24,27,1,9,1,28,10,29,1,12,2,27,1,26,157,28,90,1,136,6,1,28,1,33,2,5,3,14,47,5,1,33,5,5,3,14,7,5,7,14,7,5,12,33,69,5,2,14,4,5,2,14,4,5,2,14,1,5,31,14,13,5,11,14,2,5,1,14,1,5,29,33,44,28,4,1,93,}, + {1,127,16,1,28,24,27,1,9,1,29,1,28,10,12,1,15,1,27,1,26,153,28,94,1,136,29,1,28,1,33,1,5,4,14,47,5,1,33,4,5,3,14,8,5,8,14,2,5,10,33,1,5,5,33,71,5,1,14,10,5,5,14,1,5,26,14,13,5,12,14,2,5,27,33,1,5,2,33,47,28,2,5,1,1,92,}, + {1,128,28,24,26,1,27,1,9,1,28,10,11,2,9,1,27,1,26,148,28,99,1,136,28,1,33,1,5,3,14,48,5,1,33,5,5,3,14,8,5,1,14,5,5,18,33,2,5,1,33,71,5,1,14,1,5,1,14,6,5,6,14,2,5,23,14,14,5,7,14,5,5,11,14,3,5,19,33,46,28,3,5,1,1,91,}, + {1,128,28,25,26,1,9,1,29,1,28,9,11,2,9,1,27,1,26,144,28,103,1,136,28,1,33,1,5,3,14,48,5,1,33,5,5,11,14,7,5,20,33,72,5,3,14,6,5,5,14,2,5,23,14,9,5,11,14,7,5,9,14,4,5,19,33,47,28,4,1,90,}, + {1,128,29,1,28,24,26,1,27,1,9,1,28,9,11,2,9,1,27,1,26,140,28,107,1,136,6,1,33,1,5,5,14,46,5,1,33,5,5,12,14,7,5,19,33,73,5,3,14,4,5,4,33,1,5,7,33,1,5,14,14,3,5,1,14,8,5,8,14,1,5,3,14,1,5,2,14,4,5,7,14,7,5,10,33,1,5,8,33,48,28,2,1,90,}, + {1,129,28,24,26,2,9,2,28,7,26,1,11,2,12,1,27,1,26,135,28,112,1,136,5,1,28,1,5,5,14,46,5,1,33,5,5,12,14,7,5,18,33,75,5,3,14,3,5,4,33,1,5,5,33,1,5,16,14,13,5,6,14,3,5,6,14,3,5,6,14,8,5,10,33,2,5,2,33,1,5,3,33,49,28,3,5,1,1,88,}, + {1,129,28,25,26,1,27,1,12,1,27,1,28,5,29,1,12,1,11,2,12,1,27,1,26,131,28,116,1,137,28,1,33,1,5,3,14,48,33,6,5,11,14,7,5,16,33,1,5,1,33,76,5,4,14,1,5,4,33,8,5,1,33,2,5,15,14,11,5,4,14,6,5,3,14,4,5,7,14,6,5,8,14,1,5,9,33,52,28,2,5,1,1,87,}, + {1,129,29,1,28,24,26,2,9,1,12,1,9,1,26,1,28,2,27,1,12,1,11,3,9,1,27,1,26,126,28,121,1,137,6,1,33,1,5,3,14,48,33,5,5,2,33,1,5,9,14,6,5,16,33,2,5,1,33,77,5,6,33,15,5,4,33,1,5,10,14,9,5,4,14,13,5,10,14,3,5,6,14,5,5,9,33,51,28,2,1,87,}, + {1,129,16,1,28,25,26,1,27,1,12,6,11,3,12,1,9,1,27,1,26,121,28,126,1,137,5,1,28,1,33,1,5,2,14,48,33,6,5,12,14,5,5,16,33,3,5,2,33,85,6,1,33,1,6,1,33,14,5,11,14,2,5,2,14,3,5,4,14,14,5,19,14,7,5,2,14,1,5,3,33,51,28,3,1,86,}, + {1,130,28,24,26,3,27,1,12,2,11,1,17,1,11,4,12,1,9,1,27,1,26,116,28,131,1,138,28,1,6,1,5,3,14,47,33,6,5,13,14,3,5,17,33,3,5,2,33,76,28,10,33,1,28,11,6,1,33,7,5,8,14,1,5,3,14,2,5,4,14,13,5,20,14,7,5,1,14,1,5,3,33,53,28,3,5,1,1,84,}, + {1,130,28,23,26,5,27,1,12,2,11,4,12,1,9,2,27,1,26,111,28,136,16,1,1,138,28,1,33,1,5,2,14,47,5,1,33,7,5,10,14,3,5,4,14,4,5,10,33,80,28,2,1,17,5,1,29,1,6,3,28,3,33,6,5,5,14,1,5,11,14,1,5,1,14,9,5,5,14,5,5,19,14,2,5,3,33,54,28,2,1,84,}, + {1,130,28,25,26,4,9,2,12,4,9,1,27,3,26,106,28,141,29,1,1,138,6,1,28,1,33,1,5,2,14,46,5,1,33,7,5,10,14,2,5,5,14,4,5,11,33,80,28,1,5,1,1,22,5,1,28,3,33,3,5,4,33,1,5,1,33,1,5,14,14,6,5,6,14,7,5,19,14,2,5,4,33,52,28,3,1,83,}, + {1,130,29,1,28,24,26,5,27,2,9,3,27,4,26,100,28,148,1,139,28,1,6,1,5,2,14,46,5,1,33,7,5,10,14,2,5,5,14,4,5,12,33,80,28,1,1,24,5,1,6,1,28,3,33,1,5,3,33,2,5,17,14,2,5,11,14,8,5,5,14,4,5,12,33,54,28,2,5,1,1,81,}, + {1,130,28,25,26,6,27,8,26,95,28,152,29,1,1,140,28,1,33,1,5,2,14,45,5,1,33,7,5,10,14,3,5,4,14,4,5,14,33,78,28,2,1,27,6,1,28,2,6,1,33,3,5,1,33,1,5,1,14,1,5,2,33,1,5,2,14,1,5,24,14,1,5,2,14,2,5,3,14,5,5,12,33,55,28,2,5,1,1,80,}, + {1,131,28,24,26,6,27,7,26,91,28,158,1,140,5,1,28,1,5,3,14,45,33,7,5,10,14,3,5,5,14,3,5,14,33,79,28,1,1,29,6,1,28,3,33,4,5,5,14,3,5,9,14,4,5,14,14,1,5,2,14,6,5,13,33,55,28,2,5,1,1,79,}, + {1,131,28,24,26,7,27,6,26,83,28,166,1,141,6,1,28,1,5,2,14,45,5,1,33,6,5,5,14,2,5,3,14,3,5,5,14,2,5,14,33,80,28,1,6,1,1,30,5,1,6,1,28,3,33,4,5,14,14,4,5,16,14,7,5,14,33,55,28,2,6,1,1,78,}, + {1,131,29,1,28,23,26,9,27,4,26,78,28,171,1,142,28,1,33,1,5,2,14,44,5,1,33,6,5,4,14,3,5,3,14,4,5,20,33,81,28,1,1,34,6,1,28,3,33,5,5,10,14,1,5,7,14,7,5,6,14,6,5,15,33,55,28,2,6,1,1,77,}, + {1,131,28,24,26,9,27,5,26,69,28,179,16,1,1,141,5,1,28,1,5,3,14,43,5,1,33,7,5,3,14,2,5,4,14,4,5,21,33,80,28,1,6,1,1,35,29,1,33,1,28,2,6,1,33,3,5,1,33,1,5,6,14,2,5,6,14,9,5,5,14,6,5,16,33,55,28,3,1,76,}, + {1,132,28,22,26,11,27,3,26,60,28,190,1,142,6,2,5,2,14,44,33,7,5,3,14,1,5,32,33,78,28,2,1,38,6,2,28,2,33,4,5,4,14,3,5,12,14,5,5,5,14,4,5,16,33,56,28,3,1,75,}, + {1,132,28,23,26,9,27,6,26,48,28,200,1,118,16,1,1,3,16,1,1,18,5,2,28,1,33,1,5,2,14,43,5,1,33,5,5,37,33,79,28,1,1,40,5,1,28,3,33,3,5,3,14,3,5,13,14,4,5,5,14,4,5,16,33,58,28,2,1,74,}, + {1,132,29,1,28,25,26,8,27,3,26,23,27,1,26,17,28,208,1,112,16,1,29,2,28,10,6,1,29,3,1,3,29,1,1,2,6,1,1,1,6,2,28,5,33,5,5,4,14,6,1,1,14,30,5,1,33,5,5,14,14,1,5,22,33,79,28,1,6,1,1,41,5,1,28,2,6,1,33,4,5,1,14,7,5,11,14,2,5,5,14,1,5,20,33,56,28,2,6,1,1,73,}, + {1,132,29,1,28,29,26,32,28,1,26,3,28,2,26,1,28,217,1,110,28,7,30,1,28,4,30,1,6,1,30,1,28,14,6,1,33,7,5,1,33,1,5,6,14,36,33,5,5,13,14,3,5,19,33,81,28,2,1,43,5,1,28,2,33,5,5,2,14,1,5,1,14,2,5,11,14,4,5,16,14,1,5,8,33,56,28,3,1,72,}, + {1,133,28,285,1,107,29,1,28,5,29,1,30,2,13,9,30,1,13,2,6,1,30,1,6,3,28,1,6,1,33,9,5,6,14,4,5,2,14,2,5,1,14,4,1,2,14,26,5,1,33,3,5,15,14,2,5,9,14,1,5,8,33,82,28,2,1,45,5,1,28,1,6,1,33,5,5,16,14,4,5,15,14,2,5,8,33,1,5,2,33,53,28,3,1,71,}, + {1,133,28,285,29,1,1,103,16,1,29,1,28,5,26,2,30,3,13,3,30,5,13,2,14,4,6,2,33,7,5,3,33,1,5,5,14,10,5,2,14,4,1,4,14,23,5,1,33,3,5,26,14,1,5,2,14,2,5,4,33,82,28,2,1,47,6,1,28,1,6,1,33,3,5,1,33,3,5,35,14,2,5,10,33,52,28,2,1,70,}, + {1,133,28,118,29,2,28,166,1,101,28,7,26,1,13,2,28,1,30,1,6,1,13,1,30,1,28,3,30,1,29,1,26,1,25,1,9,1,14,6,33,5,5,5,14,1,5,4,14,1,5,1,14,18,1,3,11,1,14,22,33,5,5,27,14,3,5,4,33,81,28,2,1,48,5,1,28,2,33,7,5,34,14,2,5,11,33,51,28,3,1,69,}, + {1,133,28,110,29,3,28,172,29,1,1,99,29,1,28,6,26,1,13,2,30,1,28,2,30,1,28,6,29,1,26,1,25,1,9,1,15,1,14,3,11,2,14,2,5,5,14,30,1,3,11,1,1,1,14,8,11,1,1,9,14,2,33,5,5,7,14,3,5,23,33,82,28,2,1,50,5,1,28,2,33,10,5,26,14,1,5,8,33,1,5,1,33,1,5,1,33,1,5,2,33,53,28,1,5,1,1,68,}, + {1,133,16,1,28,100,29,1,6,1,29,2,28,181,1,97,16,1,28,6,29,1,26,1,9,1,13,1,28,10,26,1,25,1,9,1,15,3,14,1,11,4,1,2,14,1,5,1,14,36,1,21,14,1,5,1,33,2,5,9,14,4,5,23,33,81,28,2,1,52,6,1,28,2,33,8,5,2,33,3,5,5,14,3,5,11,14,4,5,12,33,55,28,2,6,1,1,67,}, + {1,134,28,90,29,1,28,1,29,2,6,2,29,2,28,187,1,96,28,7,26,1,9,1,15,1,26,1,28,9,29,1,26,1,9,1,15,5,11,5,1,2,14,41,1,19,14,1,33,2,5,8,14,9,5,15,33,2,5,1,33,1,5,1,33,80,28,2,1,54,6,1,28,2,33,8,5,1,33,2,5,5,14,3,5,11,14,3,5,13,33,5,5,1,33,50,28,2,5,1,1,66,}, + {1,134,28,76,29,1,6,6,29,1,28,1,29,3,28,2,29,1,28,194,1,94,16,1,28,6,29,1,26,1,9,1,15,1,26,1,28,9,26,2,9,1,15,2,11,9,1,2,14,43,1,17,14,1,5,1,33,1,5,8,14,9,5,21,33,79,28,2,1,56,6,1,28,3,33,6,5,1,33,1,5,20,14,2,5,17,33,1,5,2,33,50,28,2,5,1,1,65,}, + {1,134,29,1,28,25,6,7,33,1,6,7,29,1,6,1,29,1,28,1,29,1,28,1,29,1,28,11,29,2,6,18,29,1,28,205,1,93,28,6,29,1,26,1,25,1,9,1,14,1,13,1,28,9,26,2,9,1,15,2,11,9,1,2,11,1,14,47,1,13,14,2,33,1,5,7,14,4,5,1,14,5,5,5,14,7,5,9,33,80,28,1,5,1,1,57,6,1,28,2,6,1,33,4,5,1,33,4,5,39,33,51,28,2,5,1,1,64,}, + {1,134,28,31,29,1,6,3,7,1,33,13,6,1,7,2,6,8,29,6,28,220,1,91,28,5,29,1,26,1,25,1,15,1,14,2,13,1,29,1,28,7,26,2,25,1,9,1,15,2,11,9,1,3,14,52,1,6,14,5,5,8,14,4,5,2,14,3,5,6,14,8,5,8,33,79,28,2,29,1,1,59,6,1,28,3,33,3,5,1,33,5,5,39,33,50,28,2,6,1,1,63,}, + {1,135,28,284,29,1,1,91,28,3,26,1,9,1,15,1,14,1,11,1,14,2,13,1,28,1,13,2,28,4,26,1,25,1,9,2,15,3,11,9,1,3,14,65,5,7,14,2,5,12,14,9,5,7,33,81,28,2,1,61,5,1,28,2,33,9,5,39,33,2,5,1,33,47,28,2,5,1,1,62,}, + {1,135,28,284,29,1,1,90,29,1,28,1,29,1,15,1,14,2,11,2,14,3,9,1,14,1,15,1,28,3,29,1,26,1,15,1,11,1,15,4,11,9,1,2,11,1,14,66,5,1,33,1,5,16,14,9,5,10,33,81,28,1,5,1,1,63,28,2,6,1,33,3,5,2,33,4,5,37,33,1,5,4,33,46,28,2,1,62,}, + {1,135,28,285,1,90,28,2,15,1,14,1,11,1,1,1,14,2,33,3,14,2,29,1,28,2,26,1,9,1,15,1,11,2,15,2,11,11,1,2,14,67,5,18,14,4,5,1,14,4,5,12,33,78,28,2,1,65,5,1,28,2,33,10,5,32,33,3,5,9,33,43,28,2,1,61,}, + {1,136,28,284,1,90,28,1,29,1,14,4,33,3,5,1,14,3,28,1,26,1,25,1,15,2,11,16,1,1,11,1,14,68,5,5,14,2,5,15,14,4,5,13,33,77,28,2,1,67,28,3,33,8,5,9,14,1,5,24,33,2,5,8,33,3,5,6,33,8,5,1,33,26,28,2,1,60,}, + {1,136,28,284,1,91,28,1,9,1,14,1,33,4,5,2,14,2,13,1,28,1,25,1,15,2,11,17,1,1,14,69,5,6,14,1,5,8,14,3,5,4,14,4,5,13,33,78,28,1,1,69,28,2,6,1,33,8,5,25,33,1,5,7,33,1,5,2,33,1,5,5,33,1,5,11,33,33,28,2,1,59,}, + {1,136,28,284,1,91,16,1,28,1,6,1,33,2,5,2,14,4,13,1,26,1,9,1,15,1,11,18,1,1,14,70,5,14,14,3,5,8,14,4,5,10,33,76,28,2,1,70,5,1,28,2,33,8,5,23,33,3,5,6,33,1,5,2,33,3,5,8,33,1,5,6,33,34,28,2,1,58,}, + {1,136,28,284,29,1,1,91,16,1,28,1,33,2,5,2,14,4,30,1,9,1,15,1,11,19,1,1,14,71,5,8,14,2,5,2,14,4,5,9,14,3,5,10,33,77,28,1,1,72,6,1,28,3,33,7,5,6,14,1,5,14,33,3,5,19,33,1,5,9,33,33,28,2,5,1,1,56,}, + {1,136,29,1,28,284,1,92,28,2,33,1,5,2,14,4,13,1,15,2,11,19,14,72,5,8,14,11,5,1,14,1,5,18,33,76,28,2,1,73,5,1,6,1,28,3,6,1,33,4,5,5,14,4,5,12,33,1,5,11,14,3,5,6,33,2,5,8,33,34,28,2,5,1,1,55,}, + {1,136,16,1,28,284,1,93,28,2,33,1,5,1,14,4,9,1,15,2,11,11,14,5,11,2,14,74,5,7,14,3,5,1,14,11,5,5,14,2,5,9,33,1,5,1,33,74,28,1,6,1,1,77,5,1,6,1,28,3,33,4,5,4,14,2,5,13,33,3,5,3,14,2,5,2,14,5,5,5,33,1,5,9,33,35,28,2,5,1,1,54,}, + {1,137,28,284,1,94,28,2,6,1,33,1,5,1,14,2,15,1,14,1,11,6,1,1,11,2,14,15,5,1,14,68,5,7,14,2,5,3,14,9,5,5,14,6,5,6,33,76,28,1,6,1,1,81,6,1,28,3,6,1,33,4,5,15,33,3,5,3,14,8,5,10,33,1,5,5,33,36,28,2,5,1,1,53,}, + {1,137,28,284,1,95,5,1,6,1,28,2,33,1,14,3,11,5,1,2,11,1,14,15,5,2,14,69,5,7,14,1,5,2,14,9,5,5,14,9,5,5,33,75,28,2,1,84,5,1,6,1,28,3,33,3,5,14,33,2,5,4,14,2,5,1,14,4,5,9,33,2,5,5,33,37,28,2,1,53,}, + {1,137,28,284,1,98,16,1,28,1,9,1,14,2,11,6,1,1,11,1,14,87,5,10,14,10,5,4,14,10,5,5,33,73,28,2,1,87,5,1,6,1,28,3,33,3,5,3,14,1,5,7,33,1,5,8,14,3,5,15,33,40,28,2,1,52,}, + {1,137,29,1,28,283,1,99,16,1,28,1,16,1,14,1,15,1,11,6,1,1,14,87,5,8,14,13,5,3,14,10,5,6,33,73,28,1,5,1,1,89,5,1,6,1,28,2,33,3,5,18,14,2,5,15,33,42,28,1,6,1,1,51,}, + {1,137,9,1,28,283,1,100,16,1,28,1,7,1,9,1,11,1,1,1,11,1,1,2,11,1,14,89,5,5,14,28,5,8,33,71,28,1,6,1,1,92,16,1,28,2,6,1,33,3,5,15,14,3,5,13,33,44,28,1,5,1,1,50,}, + {1,138,28,282,29,1,1,101,16,1,6,1,28,2,6,1,16,1,1,2,14,91,5,4,14,29,5,1,14,1,5,6,33,70,28,2,1,94,6,1,28,2,6,1,33,3,5,3,33,1,5,10,14,1,5,9,14,3,5,3,33,43,28,2,5,1,1,49,}, + {1,138,28,282,16,1,1,105,16,1,6,1,28,1,7,1,14,21,5,1,14,71,5,2,14,31,5,7,33,69,28,2,1,96,6,1,28,3,33,3,5,21,14,6,5,1,33,44,28,2,5,1,1,48,}, + {1,138,29,1,28,281,1,109,28,1,6,1,5,1,14,91,5,2,14,33,5,6,33,69,28,2,1,97,5,1,28,3,33,3,5,2,14,1,5,18,14,4,5,2,33,44,28,2,1,48,}, + {1,139,28,280,15,1,1,110,6,1,28,1,14,92,5,1,14,37,5,3,33,68,28,1,6,1,1,100,6,1,28,1,6,1,33,2,5,2,14,4,5,15,14,4,5,1,33,45,28,1,29,1,1,47,}, + {1,139,28,280,1,112,28,2,14,91,5,1,14,38,5,4,33,66,28,1,6,1,1,101,6,1,28,2,33,2,5,2,14,5,5,13,14,4,5,1,33,45,28,2,1,47,}, + {1,139,28,279,29,1,1,113,29,1,28,1,6,1,16,1,14,130,5,3,33,64,28,2,1,103,28,3,33,2,5,4,14,3,5,10,14,4,5,3,33,45,28,2,1,46,}, + {1,139,29,1,28,278,1,116,6,1,28,2,16,1,14,129,5,4,33,62,28,2,1,105,28,2,33,4,5,2,14,2,5,11,14,4,5,2,33,45,28,2,6,1,1,45,}, + {1,139,29,1,28,277,29,1,1,118,16,1,7,1,28,1,7,1,14,127,5,3,33,63,28,3,1,105,6,1,28,2,33,3,5,3,14,5,5,6,14,4,5,2,33,46,28,2,1,45,}, + {1,140,28,277,1,122,29,1,28,3,6,1,16,1,14,1,11,1,14,121,5,2,33,64,28,1,6,1,1,107,28,2,6,1,33,3,5,2,14,5,5,3,14,4,5,4,33,47,28,2,1,44,}, + {1,140,28,276,1,126,16,1,29,1,6,1,28,2,6,1,16,1,14,1,11,1,1,1,14,52,1,8,11,1,14,55,5,2,33,64,28,2,1,108,5,1,28,2,33,2,5,3,14,4,5,2,14,5,5,1,33,1,5,1,33,49,28,1,6,1,1,43,}, + {1,140,16,1,28,274,16,1,1,131,16,1,6,1,28,3,7,1,16,1,14,3,1,1,14,45,1,11,14,53,5,3,33,64,28,2,1,110,6,1,28,2,33,3,5,6,14,4,5,2,33,1,5,2,33,48,28,2,5,1,1,42,}, + {1,141,28,273,16,1,1,137,6,1,7,1,28,2,29,1,6,1,8,1,16,1,14,42,11,1,1,2,11,2,1,3,11,2,1,4,14,51,5,3,33,44,5,5,33,15,28,2,1,112,28,2,6,1,33,4,5,3,14,2,5,4,33,1,5,8,33,43,28,2,5,1,1,41,}, + {1,141,28,273,1,142,29,1,6,3,7,1,28,5,6,2,7,1,16,1,14,3,11,1,1,8,14,20,1,3,11,4,1,7,14,51,5,6,33,1,5,2,33,28,5,2,33,4,5,3,14,6,5,1,33,14,28,2,1,114,6,1,28,1,6,1,33,4,5,19,33,40,28,3,1,41,}, + {1,141,16,1,28,270,16,1,1,153,16,1,6,4,28,5,6,1,7,1,8,1,33,1,14,1,11,3,1,5,11,1,1,2,11,3,14,5,11,2,1,13,11,1,14,52,5,11,33,24,5,1,14,3,5,1,14,10,5,1,33,16,28,1,1,115,5,1,28,3,33,6,5,7,14,1,5,7,33,42,28,2,1,40,}, + {1,142,28,269,15,1,1,164,16,1,29,1,6,3,9,1,28,4,29,1,6,1,7,1,8,1,9,1,14,1,11,3,1,9,11,1,1,5,11,1,1,2,11,1,1,1,11,1,14,53,5,11,33,2,5,1,33,16,5,2,14,12,5,2,33,19,28,2,1,117,5,1,28,3,33,5,5,6,33,1,5,8,33,41,28,2,6,1,1,39,}, + {1,142,28,268,16,1,1,176,16,1,6,3,7,1,28,5,6,2,7,1,33,1,11,1,1,13,11,1,1,2,11,1,1,1,14,5,1,1,14,3,1,1,14,17,11,5,14,16,5,15,33,13,5,3,14,11,5,2,33,22,28,2,1,119,6,2,28,2,33,6,5,7,14,2,5,3,33,3,5,1,33,39,28,2,1,38,}, + {1,142,28,267,1,189,29,1,6,3,9,1,28,1,29,1,7,1,33,1,16,1,11,1,1,9,11,1,1,1,11,1,1,1,14,6,11,1,14,17,11,1,1,12,14,8,5,16,33,11,5,1,14,3,5,2,14,2,5,8,33,24,28,2,1,122,6,1,28,2,33,7,5,3,14,3,5,3,33,2,5,2,33,39,28,3,5,1,1,36,}, + {1,142,28,265,15,1,1,197,29,1,7,1,28,4,7,1,16,1,17,1,11,2,1,4,11,1,1,1,11,2,14,3,11,1,14,19,1,11,14,8,5,5,33,1,5,2,14,1,5,16,14,6,5,11,33,26,28,2,1,124,6,1,28,3,6,1,33,4,5,1,33,1,5,14,33,37,28,2,5,1,1,35,}, + {1,143,28,262,29,1,1,206,6,1,7,1,28,3,6,1,9,1,16,1,11,1,1,6,11,2,1,1,14,36,5,6,33,1,5,5,14,2,5,2,14,15,5,9,33,28,28,2,1,127,6,1,33,1,28,2,6,1,33,4,5,13,33,37,28,3,5,1,1,34,}, + {1,143,28,261,1,212,16,1,29,1,6,1,7,1,9,1,28,2,7,1,9,2,16,1,11,2,14,2,11,1,14,3,16,1,6,1,28,2,6,1,5,2,14,26,5,5,33,2,5,3,14,1,5,1,14,16,5,9,33,3,5,4,33,22,28,2,1,130,5,1,6,1,28,3,33,5,5,11,33,37,28,2,5,1,1,33,}, + {1,143,29,1,28,258,16,1,1,220,29,1,6,1,7,2,8,1,28,5,6,1,28,2,6,1,1,1,5,1,28,2,6,1,5,1,14,20,5,10,33,4,5,6,14,4,5,2,14,1,5,12,33,5,5,5,33,22,28,1,33,1,1,133,29,1,28,2,33,6,5,5,14,2,5,3,33,37,28,2,5,1,1,32,}, + {1,144,28,256,15,1,1,232,16,1,29,1,1,3,6,1,28,2,6,1,5,2,14,5,5,2,14,5,5,2,14,4,5,1,14,3,5,7,33,7,5,21,33,7,5,3,33,23,28,1,5,1,1,136,28,2,33,4,5,5,14,5,5,3,33,34,28,3,5,1,1,31,}, + {1,144,28,255,1,236,16,1,28,3,33,1,5,1,33,1,5,3,14,2,5,9,14,9,5,9,33,2,5,10,33,5,5,4,14,2,5,7,33,4,5,7,33,19,5,1,1,138,6,1,28,2,33,4,5,4,14,5,5,3,33,35,28,2,1,31,}, + {1,144,28,252,16,1,1,236,6,1,28,2,6,1,5,3,33,2,5,2,14,3,5,1,33,5,5,3,14,9,5,9,33,1,5,12,33,6,5,11,33,4,5,8,33,2,5,1,33,15,1,140,5,1,28,2,33,6,5,4,14,1,5,4,33,36,28,2,5,1,1,29,}, + {1,144,29,1,28,249,9,1,1,235,16,1,28,3,33,1,5,8,14,2,33,2,5,1,14,1,5,7,14,7,5,11,33,1,5,12,33,6,5,11,33,5,5,2,33,3,5,2,33,17,1,143,5,1,28,2,33,4,5,9,33,36,28,2,6,1,1,29,}, + {1,145,28,247,16,1,1,235,6,1,28,2,33,2,5,8,14,2,5,1,33,2,5,1,14,13,5,14,33,3,5,3,33,1,5,4,33,10,5,7,33,8,5,1,33,21,5,1,1,145,6,1,28,1,33,5,5,4,14,1,5,2,33,37,28,2,5,1,1,28,}, + {1,145,28,245,15,1,1,234,16,1,28,2,6,1,33,3,5,4,14,1,5,3,14,3,33,2,14,5,15,4,14,2,16,1,14,2,5,6,33,6,5,3,33,4,5,1,33,2,5,1,33,13,5,7,33,28,28,1,6,1,1,147,5,1,28,2,33,3,5,4,14,2,5,1,33,2,5,1,33,35,28,2,1,28,}, + {1,145,28,242,29,1,1,235,28,3,8,1,16,1,33,5,5,4,14,5,33,1,9,2,15,6,9,4,15,2,14,3,5,5,33,7,5,2,33,5,5,5,33,11,5,7,33,26,28,1,33,1,28,1,5,1,1,149,28,2,33,3,5,3,14,2,5,5,33,35,28,2,1,27,}, + {1,145,29,1,28,239,29,1,1,235,30,1,28,2,8,1,9,2,16,1,14,1,5,1,33,2,5,3,14,1,5,2,14,4,13,1,9,1,15,1,9,1,15,1,9,1,15,2,9,7,14,4,5,4,33,2,5,3,33,8,5,1,33,3,5,2,33,11,5,7,33,25,28,1,33,2,11,1,1,151,5,1,28,2,33,2,5,2,14,1,5,4,14,1,5,1,33,35,28,3,1,26,}, + {1,146,28,236,29,1,16,1,1,235,30,1,28,2,13,2,9,3,15,1,14,3,5,9,33,1,6,1,30,1,13,1,9,1,15,4,9,5,15,1,9,3,14,3,5,4,33,2,5,3,33,8,5,2,33,16,5,6,33,27,11,1,1,154,28,2,33,2,5,3,14,2,5,4,33,15,5,1,33,19,28,2,6,1,1,25,}, + {1,146,28,234,29,1,1,236,15,1,28,2,29,1,30,1,13,1,9,3,15,2,14,5,5,5,33,2,6,1,30,2,25,1,9,1,15,5,9,8,15,1,14,3,5,8,33,8,5,3,33,14,5,2,33,4,5,1,33,27,1,156,5,1,28,1,33,2,5,6,33,1,5,3,33,13,5,1,33,20,28,2,5,1,1,24,}, + {1,146,28,232,15,1,1,237,28,3,30,1,13,1,25,1,9,1,15,5,11,3,14,2,5,3,33,3,13,2,30,1,26,1,25,1,9,1,15,5,9,8,15,2,14,2,5,8,33,8,5,2,33,48,1,158,5,1,28,1,33,3,5,8,33,11,5,4,33,20,28,2,1,24,}, + {1,146,29,1,28,228,29,1,1,239,28,2,30,1,13,1,9,1,15,6,11,5,14,2,5,2,33,4,13,1,30,1,26,2,25,1,9,2,15,4,9,8,15,2,14,3,5,8,33,7,5,2,33,46,6,1,1,160,5,1,28,2,33,3,5,7,33,10,5,4,33,21,28,2,1,23,}, + {1,146,29,1,28,224,29,1,15,1,1,241,28,2,30,1,25,1,15,1,14,3,11,8,1,1,14,3,5,1,33,3,13,1,30,2,26,2,25,1,9,1,15,6,9,7,15,2,14,3,5,2,33,2,5,1,33,1,5,2,33,7,5,2,33,46,1,163,28,2,33,3,5,7,33,9,5,4,33,21,28,2,5,1,1,22,}, + {1,147,28,221,29,2,1,243,28,3,26,1,15,2,11,10,1,2,14,3,5,1,33,2,14,1,30,1,29,1,26,2,25,1,9,2,15,7,9,6,15,4,14,1,5,2,33,2,5,2,14,1,5,1,33,7,5,3,33,44,1,165,28,2,33,4,5,5,33,9,5,1,33,24,28,3,1,22,}, + {1,147,28,218,29,1,15,1,1,245,15,1,28,3,9,1,15,1,11,11,1,2,14,3,33,2,5,1,14,1,28,1,29,1,26,2,25,1,9,1,15,10,9,4,15,3,9,1,16,1,5,2,33,2,5,1,14,1,5,1,33,8,5,3,33,43,1,167,28,2,33,5,5,3,33,36,28,2,1,21,}, + {1,147,28,215,30,1,15,1,1,248,28,3,25,1,15,1,11,14,14,3,5,1,33,1,14,1,13,1,28,1,29,1,26,2,9,1,15,3,11,1,15,7,9,8,14,1,5,2,33,2,14,2,33,9,5,3,33,2,5,1,33,40,1,168,6,1,28,1,33,5,5,3,33,8,5,2,33,26,28,2,1,20,}, + {1,147,16,1,28,211,29,1,15,1,1,250,15,1,28,2,26,1,15,1,11,13,1,1,14,7,30,1,28,1,26,3,9,1,15,2,11,3,15,1,11,1,15,5,9,1,25,1,9,4,14,2,5,3,14,1,5,2,33,9,5,2,33,42,5,1,1,170,5,1,28,1,33,4,5,3,33,4,5,5,33,27,28,2,5,1,1,19,}, + {1,148,28,208,29,1,15,1,1,253,28,2,26,1,15,1,11,15,14,7,30,1,29,1,26,2,25,1,15,3,11,2,15,9,9,3,15,2,14,6,16,1,5,1,33,9,5,1,33,42,5,1,1,172,5,1,28,1,33,4,5,2,33,3,5,6,33,28,28,2,1,19,}, + {1,148,28,205,29,1,15,1,1,256,28,1,29,1,15,2,11,13,1,1,11,1,14,7,13,1,26,3,9,1,15,1,11,4,15,13,14,11,33,6,5,3,33,40,5,1,1,174,6,1,28,1,33,4,5,11,33,28,28,1,6,1,1,18,}, + {1,148,28,201,30,1,29,1,1,260,28,1,26,1,15,1,11,1,15,1,11,7,1,1,11,3,1,2,14,8,13,1,26,2,25,1,15,1,11,4,15,12,14,4,11,2,14,3,15,2,14,3,9,1,13,1,33,2,5,6,33,5,5,1,33,32,1,176,6,1,28,1,33,2,5,13,33,27,28,2,5,1,1,17,}, + {1,148,28,198,29,1,16,1,1,263,28,1,9,1,15,1,11,13,1,2,14,8,13,1,26,1,25,1,9,1,15,1,11,3,15,3,9,3,15,5,11,9,15,2,9,5,13,3,8,1,5,2,33,1,5,2,33,38,1,178,28,1,6,1,33,3,5,5,14,1,5,6,33,27,28,2,1,17,}, + {1,148,29,1,28,193,30,1,15,1,1,267,28,1,9,1,15,1,11,10,1,1,11,1,1,2,14,8,9,1,26,2,9,1,15,2,11,1,15,5,9,3,15,4,11,4,17,2,12,2,9,6,25,1,26,2,25,2,13,3,33,40,28,1,11,1,1,179,28,1,6,1,33,2,5,3,14,4,5,5,33,27,28,2,6,1,1,16,}, + {1,149,28,190,29,1,1,271,28,1,9,1,11,9,1,5,11,1,14,8,9,1,13,1,9,1,15,8,9,4,15,2,11,2,1,2,11,2,17,1,12,3,9,7,25,1,26,4,25,1,13,2,33,37,28,2,5,1,1,180,5,1,28,1,33,3,5,5,14,2,5,4,33,28,28,2,5,1,1,15,}, + {1,149,28,186,29,1,1,275,28,2,12,1,11,8,1,4,11,1,14,10,15,7,9,5,15,2,11,3,1,3,11,3,15,4,9,5,25,1,26,6,25,1,13,2,33,35,28,2,5,1,1,182,5,1,28,1,33,4,5,3,14,2,5,4,33,29,28,2,1,15,}, + {1,149,29,1,28,181,30,1,16,1,1,279,16,1,28,2,27,1,9,1,12,1,11,3,1,4,11,1,14,12,15,3,11,1,15,2,9,4,15,1,11,2,1,7,11,4,15,3,9,3,25,2,26,7,25,1,13,2,33,33,28,2,5,1,1,184,5,1,28,1,33,3,5,4,14,1,5,4,33,29,28,2,6,1,1,14,}, + {1,149,28,178,30,1,29,1,1,285,16,1,29,1,28,3,29,1,9,1,12,1,9,1,28,1,7,1,33,1,16,1,14,5,11,4,14,2,11,1,15,1,11,3,15,4,11,2,1,4,11,1,1,4,11,3,15,3,9,3,25,1,26,11,13,2,33,30,28,3,5,1,1,186,6,1,28,1,33,3,5,1,14,2,5,1,14,2,5,2,33,30,28,2,1,14,}, + {1,149,16,1,28,172,30,1,29,2,1,293,16,1,29,1,6,3,1,1,16,1,6,1,28,3,29,1,33,2,11,2,1,2,11,12,1,3,11,3,1,3,11,3,15,4,9,2,25,1,26,13,13,2,33,27,28,4,1,189,28,1,6,1,33,1,5,1,14,6,5,3,33,30,28,1,6,1,1,13,}, + {1,150,28,169,30,1,16,1,1,307,16,1,29,1,6,1,7,1,28,3,9,1,11,1,1,1,11,9,1,2,11,2,1,1,14,2,11,5,15,5,9,2,25,1,26,13,30,1,13,1,33,26,28,3,5,1,1,191,28,1,33,2,5,1,14,5,5,3,33,30,28,2,5,1,1,12,}, + {1,150,16,1,28,163,29,2,1,320,6,1,28,1,6,1,16,1,11,2,1,1,11,1,1,1,11,1,1,2,11,2,14,4,11,2,14,1,11,1,15,6,9,2,25,1,26,13,30,1,13,1,33,24,28,3,6,1,1,194,28,1,33,2,5,2,14,4,5,2,33,30,28,2,6,1,1,12,}, + {1,151,28,158,26,1,30,1,29,1,1,326,16,1,6,1,28,2,10,1,11,1,1,4,11,2,1,1,14,4,15,4,9,2,15,1,9,3,25,1,26,14,30,1,6,1,33,22,28,3,6,1,1,196,5,1,28,1,33,1,5,3,14,3,5,2,33,31,28,2,5,1,1,11,}, + {1,151,16,1,28,153,29,2,15,1,1,333,16,1,6,1,28,2,8,1,17,1,11,1,1,3,14,3,15,3,9,8,25,1,26,13,29,1,30,1,6,1,33,19,28,3,6,1,1,200,28,2,33,2,5,7,33,31,28,2,1,11,}, + {1,152,16,1,28,148,29,1,15,1,1,342,6,1,28,2,6,1,17,1,1,1,14,1,9,1,15,3,9,2,25,2,9,2,25,2,9,1,25,1,26,11,29,1,28,2,30,1,33,18,28,3,6,1,1,203,28,2,33,3,5,5,33,31,28,2,6,1,1,10,}, + {1,153,16,1,28,141,29,2,1,351,29,1,28,1,11,1,15,1,9,1,15,3,9,3,25,1,26,14,28,1,26,1,29,1,28,3,6,1,33,16,28,3,5,1,1,206,28,1,33,3,5,1,33,1,5,4,33,31,28,2,5,1,1,9,}, + {1,154,28,136,30,1,29,1,9,1,1,356,7,1,12,1,15,6,9,1,25,1,26,14,29,1,26,3,29,1,28,1,6,1,33,16,28,3,5,1,1,207,5,1,28,1,33,3,5,6,33,30,28,3,1,9,}, + {1,155,28,129,30,1,29,2,1,362,12,1,29,1,15,6,9,1,25,1,26,18,30,1,6,1,33,16,28,3,1,210,5,1,28,1,33,4,5,4,33,1,5,1,33,30,28,2,1,8,}, + {1,156,28,123,29,2,1,369,28,1,9,1,15,5,9,1,26,18,30,1,6,1,33,16,28,2,6,1,1,212,28,2,33,3,5,1,33,2,5,4,33,29,28,2,5,1,1,7,}, + {1,158,28,115,30,1,29,2,1,374,16,1,28,1,15,6,9,1,26,8,25,1,26,7,30,1,6,1,33,16,28,2,5,1,1,214,28,1,33,6,5,2,33,1,5,1,33,30,28,2,6,1,1,6,}, + {1,160,29,1,28,104,30,2,29,3,15,1,1,380,29,1,28,2,9,1,15,3,9,1,25,4,9,6,26,5,13,2,6,1,33,14,28,3,5,1,1,216,28,1,33,4,5,4,33,32,28,2,1,6,}, + {1,162,29,1,30,1,28,94,30,1,29,1,28,1,29,1,15,1,1,390,16,1,28,2,26,1,9,12,25,1,26,1,25,1,13,4,33,13,28,3,6,1,1,218,6,1,28,1,33,1,5,1,33,1,5,7,33,30,28,2,5,1,1,4,}, + {1,165,16,1,29,2,28,85,29,2,15,1,1,400,6,1,28,2,25,1,9,1,25,2,9,1,15,4,9,2,13,4,33,13,28,3,6,1,5,1,1,220,28,2,33,2,5,1,14,3,5,4,33,30,28,2,1,4,}, + {1,171,15,1,29,1,28,70,29,5,1,412,27,1,28,4,29,1,26,1,25,1,26,1,13,1,9,1,16,1,33,9,28,7,5,1,1,224,28,1,33,2,5,3,14,1,5,5,33,30,28,2,1,3,}, + {1,177,29,1,30,3,28,47,30,3,29,7,1,424,16,1,28,1,29,2,30,1,28,15,33,1,6,3,1,227,5,1,28,1,33,3,5,8,33,30,28,1,6,1,1,2,}, + {1,183,29,8,30,2,29,1,28,2,29,1,30,1,28,18,30,1,29,5,1,448,29,2,6,5,29,1,1,236,6,1,28,1,33,3,5,8,33,29,28,2,6,1,1,1,}, + {1,915,28,1,6,1,5,1,33,1,5,8,33,30,28,3,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino13.lua b/map_gen/data/presets/dino13.lua new file mode 100644 index 00000000..f74ee5e9 --- /dev/null +++ b/map_gen/data/presets/dino13.lua @@ -0,0 +1,757 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 750, +width = 750, +data = { + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,653,11,1,16,1,6,1,28,1,6,1,28,1,6,1,29,1,28,1,16,1,11,1,1,86,}, + {1,648,9,1,16,1,28,1,16,2,6,1,8,2,6,1,8,1,16,1,8,1,7,1,6,1,8,2,6,1,1,85,}, + {1,644,9,1,16,1,28,1,6,2,7,1,6,2,7,1,6,1,8,4,6,5,8,1,16,2,1,84,}, + {1,641,16,1,6,4,8,1,16,1,8,2,6,3,16,2,8,1,16,1,8,1,6,1,8,1,6,7,11,1,1,82,}, + {1,638,8,1,6,2,7,1,8,2,6,2,16,1,8,2,16,1,8,1,6,2,8,1,16,1,6,1,16,1,6,1,8,1,6,1,8,2,6,3,8,1,6,1,8,1,7,1,1,81,}, + {1,636,16,1,6,1,7,2,6,5,8,2,16,1,8,1,16,1,8,1,6,2,16,2,8,3,6,1,8,2,6,7,16,2,1,80,}, + {1,634,11,1,6,1,8,1,6,7,8,1,16,3,8,3,6,1,8,1,16,7,8,1,6,3,8,1,6,4,16,1,9,1,1,79,}, + {1,634,6,1,8,1,6,7,16,3,8,1,16,15,8,3,6,5,9,1,1,79,}, + {1,630,14,1,6,1,28,1,6,1,8,1,6,7,8,3,16,20,6,5,16,1,14,1,1,78,}, + {1,628,9,1,6,4,13,1,8,1,6,6,8,1,16,25,7,1,6,2,16,1,6,1,28,1,11,1,1,76,}, + {1,627,6,1,8,1,6,5,8,1,6,4,8,1,16,16,8,1,16,11,6,1,8,2,6,2,8,1,11,1,1,75,}, + {1,626,14,1,9,1,6,5,28,1,6,3,8,1,16,11,8,2,16,5,6,1,16,13,6,3,8,1,16,1,1,75,}, + {1,624,11,1,6,3,8,1,6,6,16,14,8,2,16,5,6,1,16,2,6,2,16,8,8,1,6,4,9,1,14,1,1,74,}, + {1,623,6,1,8,1,6,1,30,1,6,1,16,1,6,4,8,2,16,14,8,1,16,1,8,1,16,4,6,1,16,1,6,2,16,1,8,1,16,8,6,5,16,1,14,1,1,73,}, + {1,622,8,2,6,7,16,2,8,1,16,12,8,2,16,6,8,3,16,1,6,1,8,1,16,2,8,1,16,8,6,4,8,1,16,1,1,73,}, + {1,619,8,1,29,1,28,1,6,1,16,1,6,5,16,15,8,1,7,2,8,1,16,4,8,3,6,1,8,1,6,1,16,1,8,2,16,1,6,2,16,7,8,1,6,3,13,1,8,1,9,1,1,72,}, + {1,616,9,1,6,1,28,2,6,3,8,2,6,4,16,5,8,1,16,8,8,3,16,1,8,1,16,1,6,1,16,2,8,2,6,2,8,1,6,1,8,2,16,1,8,1,6,2,16,8,6,3,13,1,8,1,6,1,1,72,}, + {1,614,16,2,13,1,28,2,6,2,28,2,6,1,13,1,6,1,8,1,16,10,8,2,16,3,8,3,6,1,8,1,16,2,6,1,16,1,8,1,6,5,8,1,6,1,8,1,16,1,8,1,6,1,7,1,16,9,6,1,8,1,6,2,16,1,11,1,1,71,}, + {1,611,14,1,6,1,28,1,6,1,28,3,6,1,13,1,6,3,28,2,13,1,16,3,8,1,16,3,14,1,16,1,28,6,16,1,14,1,16,1,8,1,16,1,8,1,16,2,6,1,16,1,6,2,8,1,6,3,8,3,16,1,8,1,16,1,8,1,16,9,8,1,6,3,8,1,9,1,1,71,}, + {1,609,9,1,28,2,30,1,28,4,13,2,6,7,16,6,11,1,6,1,28,8,9,1,14,1,16,3,8,2,16,1,8,1,6,2,8,1,6,3,16,1,6,1,16,1,8,3,16,1,8,2,16,8,6,4,8,1,1,71,}, + {1,607,16,1,28,2,13,1,30,1,28,3,30,1,13,3,6,4,13,1,6,1,8,1,16,1,7,1,8,1,16,2,14,1,6,1,28,10,14,2,8,1,16,1,8,1,16,1,8,1,6,3,8,1,6,2,8,3,16,1,6,2,16,1,8,1,6,1,8,1,16,9,6,3,16,1,1,71,}, + {1,605,11,1,8,1,13,1,28,2,30,1,28,1,30,1,28,3,30,1,6,2,13,3,8,1,16,2,8,1,6,2,8,1,16,1,14,1,16,1,28,4,6,1,11,1,16,1,17,1,28,4,14,1,16,3,8,1,6,1,8,1,6,1,13,1,6,1,13,1,6,2,8,1,6,1,16,1,8,1,16,2,6,1,8,2,16,9,6,2,8,1,6,1,1,71,}, + {1,603,14,1,6,1,29,1,6,1,30,3,28,3,6,5,30,1,28,2,6,3,16,4,8,1,16,1,14,1,8,1,28,4,16,1,1,1,11,1,1,1,28,4,14,1,16,1,8,2,7,1,6,3,8,1,6,4,8,1,16,1,8,1,6,1,16,2,8,2,16,11,6,3,8,1,11,1,1,69,}, + {1,602,9,1,29,1,6,1,30,1,6,2,30,4,6,6,28,1,30,2,28,2,6,3,16,3,14,2,8,1,28,4,29,1,1,2,16,1,28,4,14,1,16,1,8,1,6,7,13,2,6,2,8,5,16,14,6,4,1,69,}, + {1,600,11,1,8,1,6,1,30,4,28,1,30,1,6,1,13,3,6,1,8,3,6,7,8,1,16,1,8,1,6,2,16,3,28,5,17,1,11,1,28,5,14,1,8,1,6,11,8,2,6,1,8,3,16,13,6,4,8,1,1,69,}, + {1,599,6,3,30,2,6,2,30,4,6,2,13,1,16,3,8,3,6,1,8,2,6,2,8,5,16,3,28,11,14,2,6,15,8,3,16,13,6,4,8,1,16,1,1,68,}, + {1,597,11,1,6,2,30,3,13,1,6,2,30,2,6,4,30,1,6,8,16,4,6,3,7,1,6,1,16,3,28,9,14,2,6,11,13,2,6,4,7,1,16,10,14,1,16,4,6,3,8,1,1,69,}, + {1,596,6,1,8,1,6,6,30,1,6,12,30,1,28,3,6,4,8,1,16,2,8,1,6,1,8,1,16,2,14,1,28,6,6,1,14,2,8,1,6,2,30,1,6,5,30,2,28,2,6,1,8,1,6,1,8,1,6,1,8,1,16,1,14,1,6,1,28,2,16,1,14,1,16,7,14,1,8,1,6,1,8,2,9,1,1,68,}, + {1,594,14,1,9,1,6,1,8,1,6,2,13,2,6,2,30,1,6,6,8,1,16,1,6,8,28,1,6,6,8,1,6,1,8,1,16,3,14,1,16,1,7,1,16,1,14,4,13,1,28,1,6,6,30,1,28,1,30,3,6,6,14,1,16,1,28,6,16,1,14,1,16,7,6,1,8,1,6,1,7,1,11,1,1,67,}, + {1,593,11,1,6,1,8,1,6,6,30,1,6,5,13,1,6,2,13,1,6,6,30,1,6,3,30,1,6,7,8,2,16,4,14,4,16,1,6,2,30,1,6,1,30,1,28,1,30,1,6,1,30,1,6,1,30,1,6,1,30,2,6,6,14,1,28,8,14,1,16,8,6,2,8,1,16,1,1,67,}, + {1,592,11,1,7,1,6,1,13,1,6,6,13,1,6,5,8,1,6,1,8,1,6,7,16,1,8,1,13,1,6,1,13,3,6,7,8,4,16,1,8,1,6,4,28,1,30,1,6,1,8,1,28,1,30,2,6,2,28,1,6,3,30,1,6,4,8,1,16,1,28,4,7,1,28,4,14,1,16,6,8,1,6,2,8,2,1,67,}, + {1,591,11,1,7,1,6,5,13,1,6,3,13,1,6,7,8,2,6,2,30,1,6,1,13,1,28,1,30,1,6,2,28,1,6,1,30,1,6,2,30,1,13,2,6,8,30,1,6,1,30,2,6,1,30,1,28,1,30,1,28,1,6,1,8,1,28,1,30,2,6,1,30,2,28,1,30,1,6,1,13,1,6,3,16,1,28,3,11,1,16,1,11,1,28,3,8,1,16,6,8,1,6,2,8,2,1,67,}, + {1,590,11,1,8,1,6,4,13,1,6,8,8,2,6,7,14,1,6,5,16,1,6,1,30,1,28,1,6,1,28,1,30,2,28,1,6,2,28,1,30,2,6,2,30,1,13,1,30,1,28,2,13,1,28,3,8,1,13,1,28,2,30,3,13,1,30,2,6,1,30,2,6,3,16,1,28,2,6,1,1,1,11,2,16,1,28,3,16,7,6,1,8,1,16,2,1,67,}, + {1,590,8,1,16,2,13,1,6,2,8,1,6,1,16,1,6,10,13,2,6,3,13,1,8,1,6,6,13,1,6,1,30,1,13,1,6,1,13,1,6,1,28,2,6,1,13,1,28,1,6,1,8,1,6,1,28,2,8,1,28,3,30,2,28,1,16,1,28,2,30,1,6,2,28,1,30,2,6,2,13,1,6,2,13,1,6,2,28,2,1,1,11,1,16,1,28,4,16,8,8,2,6,1,1,67,}, + {1,589,16,1,14,4,30,1,6,3,30,1,6,5,13,1,16,1,6,5,13,1,6,6,16,1,6,4,8,1,6,5,30,1,6,1,30,1,28,1,6,2,30,2,28,1,14,1,6,1,28,1,30,1,28,2,30,1,16,1,13,1,30,3,6,1,30,1,28,1,6,1,30,2,6,7,28,3,9,1,28,5,14,1,16,6,6,3,9,2,1,66,}, + {1,585,14,1,9,1,14,1,8,1,6,1,30,1,6,1,8,1,14,1,6,9,8,1,6,9,8,1,14,1,6,2,8,1,6,4,28,1,16,1,13,1,6,1,13,1,6,1,30,1,6,2,28,1,30,1,28,2,6,1,13,1,28,2,6,1,28,1,6,1,13,2,6,1,30,1,28,2,30,2,6,3,30,2,6,2,30,2,6,5,28,7,6,1,16,7,6,3,7,1,16,1,1,66,}, + {1,582,8,1,6,1,28,1,6,4,30,1,6,3,8,1,6,2,30,1,6,10,13,1,8,2,6,4,13,1,6,2,8,1,6,1,13,1,6,1,16,2,6,4,13,1,6,3,30,1,16,2,6,5,30,1,6,6,13,4,28,1,13,1,30,1,28,1,6,10,28,7,14,1,16,8,6,2,7,1,8,1,1,66,}, + {1,580,14,1,6,2,28,1,6,3,30,1,6,5,16,1,6,3,13,1,6,1,13,1,6,9,13,1,6,2,16,1,8,1,6,9,16,1,6,8,28,2,14,1,16,1,28,1,6,1,30,1,6,4,30,1,28,5,8,1,30,1,6,1,30,1,6,2,28,2,30,1,6,2,8,1,13,1,6,1,13,1,6,1,28,5,16,9,8,1,6,1,8,1,16,2,1,66,}, + {1,577,14,1,7,1,6,1,30,2,6,1,13,1,8,1,13,2,8,3,16,1,8,1,16,1,9,1,6,6,13,1,8,1,6,1,8,1,6,3,16,1,6,3,8,1,13,1,6,4,8,1,6,3,13,2,8,1,6,7,30,1,6,2,8,1,13,1,28,2,8,1,6,1,28,1,6,1,30,2,14,2,30,1,6,3,30,1,6,1,13,1,6,1,28,1,6,9,13,1,28,4,16,2,8,1,16,10,7,1,1,67,}, + {1,576,6,4,8,1,13,2,6,4,30,2,28,1,6,10,16,1,6,2,13,1,8,1,6,1,16,1,6,3,14,1,8,1,6,2,8,2,16,1,8,1,6,2,8,1,13,1,6,4,13,3,6,2,8,1,13,1,6,2,16,1,28,1,6,1,30,1,8,1,28,1,6,3,30,1,16,1,28,1,6,3,8,1,6,8,13,1,6,5,13,1,8,1,14,3,16,2,6,1,16,4,8,1,16,1,8,2,6,1,8,1,16,1,1,66,}, + {1,574,14,1,9,1,6,1,13,1,6,19,13,1,6,1,8,1,13,1,6,10,8,3,6,18,28,1,6,4,28,1,6,1,13,1,16,1,28,1,6,1,30,1,6,1,13,1,6,3,16,1,6,16,28,1,8,1,14,1,8,2,6,1,8,3,6,1,8,2,6,1,8,1,6,4,1,66,}, + {1,573,11,1,6,1,8,1,13,1,6,24,16,1,6,7,13,1,6,2,8,2,6,7,16,1,6,5,16,1,13,2,6,1,30,1,16,2,6,1,28,1,16,2,6,1,30,1,6,1,16,1,6,2,14,1,6,23,8,1,16,3,8,1,6,5,8,2,6,4,1,66,}, + {1,572,11,1,8,1,16,1,6,11,30,2,6,5,13,1,6,3,8,1,6,3,8,1,16,1,6,8,16,1,6,8,8,1,13,1,6,3,13,1,8,1,6,5,30,1,6,1,14,1,6,1,28,1,6,1,16,1,6,4,8,1,6,6,8,1,6,1,30,1,6,17,8,3,16,2,14,1,16,1,8,1,16,1,7,1,6,2,8,2,1,66,}, + {1,571,11,1,8,1,6,16,30,1,6,1,8,1,13,1,8,1,6,1,13,1,6,2,8,1,6,3,16,1,13,1,6,8,16,1,6,6,13,1,16,1,6,3,8,2,6,7,30,1,8,1,6,2,16,1,28,1,6,13,16,1,8,1,13,1,6,9,8,1,13,1,6,5,8,3,6,1,8,1,14,1,16,1,6,1,16,1,14,1,16,2,8,1,1,66,}, + {1,570,11,1,16,1,6,25,8,1,6,3,8,1,6,9,16,1,8,1,6,3,8,1,6,1,8,1,6,5,8,1,6,6,30,1,6,1,8,1,6,5,16,1,6,3,30,1,16,1,6,6,8,1,6,12,13,1,6,1,8,1,13,1,6,5,8,1,6,6,7,1,8,3,1,66,}, + {1,569,14,1,8,1,6,21,8,1,6,4,8,1,6,2,8,1,6,5,13,1,8,1,6,1,13,1,6,2,8,1,6,13,13,1,8,1,13,2,6,3,13,1,6,4,14,1,6,6,14,1,6,3,13,2,6,5,13,1,6,9,16,1,13,1,6,8,13,1,6,6,8,1,11,1,1,65,}, + {1,569,16,1,7,1,6,20,8,1,6,1,8,1,6,3,8,1,6,1,8,1,6,5,8,2,6,8,8,1,13,1,6,3,8,1,16,1,6,1,16,1,6,8,16,2,6,3,14,1,28,1,6,6,16,1,13,1,6,3,8,1,6,6,30,1,6,8,8,2,6,16,16,1,1,65,}, + {1,568,16,1,9,1,6,22,13,1,6,3,13,1,8,1,6,1,16,1,6,4,16,1,6,1,8,1,6,7,8,2,6,5,8,2,13,1,6,2,8,1,6,1,13,3,8,1,6,2,28,1,8,1,14,1,6,5,13,1,6,3,16,1,6,5,16,1,8,3,6,2,16,2,6,24,7,1,14,1,1,64,}, + {1,568,7,1,6,3,8,1,6,14,13,1,6,8,8,1,6,3,8,1,6,1,8,1,6,2,14,1,6,5,8,2,13,1,6,2,16,1,6,5,16,1,6,11,8,1,16,1,28,1,6,8,8,1,16,1,6,3,16,1,8,1,6,9,8,1,6,15,30,1,6,6,8,1,14,1,1,64,}, + {1,567,6,1,16,2,14,1,16,1,8,1,6,7,8,1,6,15,8,1,6,7,16,1,6,9,16,1,6,1,8,1,16,1,6,3,13,1,6,5,8,2,6,5,14,1,6,9,16,2,6,3,14,1,6,5,13,1,6,3,13,1,6,2,8,1,6,9,14,1,6,5,30,2,6,1,16,1,6,4,1,64,}, + {1,567,9,1,6,2,8,2,16,1,14,1,16,1,8,1,6,2,7,1,6,3,8,1,6,10,16,1,6,3,13,1,6,6,8,1,6,6,30,1,6,1,8,1,13,1,6,15,8,1,16,1,6,3,16,1,6,2,8,1,6,1,8,1,16,2,14,1,8,1,6,3,8,1,6,17,13,1,8,1,6,4,8,1,6,4,28,1,6,2,30,1,13,1,6,3,16,2,1,63,}, + {1,566,16,2,6,1,8,1,7,1,6,3,8,1,14,2,8,1,6,1,8,1,7,1,8,1,6,1,13,2,6,6,13,1,6,1,8,1,6,2,13,1,6,2,8,1,6,3,8,2,6,6,16,1,14,1,6,5,16,1,6,13,16,1,6,3,13,1,6,5,28,3,13,1,6,2,8,1,6,16,13,2,6,3,8,1,6,6,13,1,30,1,6,6,13,1,28,1,1,63,}, + {1,566,8,3,6,1,8,3,16,1,6,2,16,1,14,1,16,1,6,2,8,1,13,1,6,7,8,1,6,2,8,1,6,1,13,1,6,9,13,2,6,3,16,1,13,1,6,5,13,1,8,1,6,12,8,2,6,2,30,1,28,1,6,1,13,2,6,1,28,1,6,7,13,1,16,1,6,17,16,1,13,1,6,8,13,1,6,2,28,1,6,5,16,1,1,62,}, + {1,565,11,1,16,1,7,1,6,1,8,4,6,1,16,1,6,3,14,2,8,1,6,5,8,1,6,3,8,1,13,1,6,2,13,1,8,1,16,1,6,1,8,1,6,1,16,1,6,1,8,1,6,14,8,1,6,10,28,1,6,1,16,1,6,10,16,2,6,7,8,1,6,13,13,1,6,2,16,1,6,13,8,1,28,2,30,1,13,1,6,2,11,1,1,61,}, + {1,565,11,1,9,1,8,10,6,2,8,1,14,2,6,4,16,1,6,4,16,1,6,4,8,1,6,2,8,3,6,1,13,1,6,4,8,1,6,8,13,2,6,7,30,1,6,1,16,2,6,4,16,1,6,6,8,1,6,3,8,1,16,1,13,1,6,8,8,2,6,2,8,1,6,1,8,1,6,4,8,1,6,2,13,1,6,7,13,1,6,5,30,1,6,3,16,1,1,61,}, + {1,565,6,1,8,13,6,2,14,2,6,4,8,1,6,3,8,1,6,4,8,1,6,3,8,2,13,1,6,1,8,2,6,3,13,1,6,8,13,1,6,6,13,1,14,1,8,1,6,2,14,1,6,3,8,2,6,5,13,1,16,1,6,5,8,2,28,1,6,5,13,1,6,6,8,1,6,2,13,1,6,7,16,1,6,2,13,1,8,1,6,5,30,1,13,1,6,1,30,1,6,1,7,1,1,60,}, + {1,565,6,1,8,5,16,1,8,2,16,1,8,2,6,2,8,1,6,2,13,1,6,4,8,1,6,1,13,1,6,1,8,2,6,3,8,1,6,4,13,1,6,1,16,1,6,4,16,1,8,1,6,10,30,1,13,1,16,2,8,1,6,2,13,1,6,1,28,1,6,1,16,1,6,2,16,1,6,7,14,1,8,1,28,1,6,4,13,1,16,1,6,1,28,1,6,3,13,1,6,16,16,1,8,1,30,1,6,8,13,2,6,1,28,1,6,1,13,1,1,60,}, + {1,564,11,1,16,1,6,1,8,13,6,3,13,1,6,2,13,1,6,1,13,1,6,2,8,1,16,1,6,1,13,1,6,2,16,3,6,2,16,1,6,4,16,1,6,10,28,1,6,1,13,1,6,2,28,1,6,4,16,1,6,2,16,1,6,2,16,1,8,1,6,7,16,2,28,1,6,5,16,1,13,1,6,11,8,1,6,2,13,1,6,4,8,2,6,1,13,1,6,8,30,1,8,1,6,4,8,1,11,1,1,58,}, + {1,564,16,2,8,4,16,1,8,2,16,1,8,2,16,1,8,1,16,1,8,2,6,2,14,1,6,6,13,1,8,1,6,3,8,1,6,3,16,1,8,1,6,5,16,1,6,11,16,1,8,1,6,4,13,1,8,1,6,2,8,1,6,2,8,1,6,3,13,1,6,8,8,1,16,1,28,1,6,3,16,1,6,1,16,1,6,4,13,1,6,11,8,2,6,1,13,1,8,1,6,11,30,1,6,2,30,1,6,3,11,1,1,57,}, + {1,564,8,1,16,1,8,8,16,1,8,1,16,1,8,3,16,1,6,5,8,1,6,1,8,1,6,2,16,1,6,3,8,1,6,3,16,1,8,1,6,2,16,1,6,1,16,1,6,3,13,1,8,2,13,1,6,4,16,1,6,1,30,1,6,6,8,1,6,8,8,2,6,9,16,2,6,1,16,1,14,1,6,3,13,1,6,3,8,1,6,1,30,1,6,10,13,1,6,15,13,1,6,4,29,1,14,1,1,56,}, + {1,564,6,1,8,1,16,1,8,10,16,3,8,1,6,2,13,1,6,5,8,1,16,1,6,3,8,1,6,2,7,1,6,1,8,2,6,5,13,1,16,1,13,1,6,8,8,1,6,6,28,1,8,2,6,2,28,1,6,20,28,1,6,1,16,1,13,1,6,14,16,1,6,3,13,1,6,1,8,1,6,8,13,1,6,1,13,2,6,2,30,1,13,1,6,1,13,1,16,1,1,56,}, + {1,564,8,2,16,1,8,3,16,1,8,1,16,1,8,1,6,1,8,1,16,3,14,1,6,3,8,1,6,5,8,1,16,1,6,3,14,1,6,1,7,1,6,2,16,1,8,1,6,4,8,1,6,10,8,1,6,6,28,1,8,2,6,2,28,1,6,1,14,1,6,3,13,1,6,5,13,1,6,5,8,1,6,4,8,1,13,1,6,13,16,2,6,9,8,1,6,1,13,1,6,3,16,2,8,1,6,3,13,1,30,1,6,1,30,1,8,2,1,55,}, + {1,563,7,1,8,2,16,2,8,5,16,2,14,1,16,1,8,1,16,1,8,1,6,3,13,1,6,4,8,1,7,1,8,1,6,2,16,1,8,2,6,1,8,1,6,1,14,1,6,11,28,1,16,1,13,1,6,2,16,1,6,6,16,1,8,1,6,3,14,1,16,1,6,7,8,1,6,7,13,2,6,5,8,1,6,13,16,1,6,6,16,1,6,4,16,2,6,1,28,1,6,7,13,1,30,1,6,2,30,1,6,2,1,54,}, + {1,563,16,2,8,2,16,1,8,2,16,3,14,1,16,1,8,2,16,2,6,3,8,1,6,2,8,1,6,3,16,1,6,2,8,1,16,1,6,5,8,1,6,3,8,1,6,1,13,1,6,4,28,1,16,2,6,3,13,1,16,1,6,2,13,1,16,1,14,1,6,5,13,1,8,1,6,22,13,1,30,1,6,11,8,2,6,5,13,1,16,1,6,7,8,2,13,1,6,5,30,1,6,1,13,1,6,3,13,1,9,1,1,53,}, + {1,563,14,1,8,3,16,3,8,1,16,1,14,1,8,2,16,4,6,3,8,1,6,2,13,1,6,3,16,1,6,1,16,2,6,3,8,1,6,1,16,1,6,2,16,1,8,1,6,7,14,1,8,1,6,7,16,2,6,1,28,1,6,3,30,1,6,2,13,1,16,1,6,8,8,1,6,2,13,1,6,1,13,1,6,3,28,2,6,1,13,1,8,1,6,12,16,1,6,7,13,1,6,6,14,1,8,1,6,1,28,1,6,1,8,1,6,6,13,1,6,4,11,1,1,52,}, + {1,563,14,1,8,4,16,1,8,1,16,2,7,1,16,5,6,3,13,2,6,6,8,1,16,1,8,1,6,1,8,1,6,4,16,1,6,3,8,3,6,3,8,1,14,1,8,1,6,9,28,1,6,3,13,1,8,1,13,1,6,1,28,1,6,2,13,1,6,5,28,1,8,1,6,5,30,1,6,7,8,1,30,1,6,11,8,1,6,14,13,1,6,4,8,1,6,6,28,1,6,3,13,1,6,1,11,1,1,51,}, + {1,563,7,1,8,2,16,1,8,2,16,2,8,1,16,6,6,2,16,1,6,4,13,1,8,1,6,1,8,1,6,1,16,1,6,2,16,1,6,3,14,1,6,2,8,1,6,3,8,1,16,2,8,2,6,9,30,1,28,1,6,7,13,1,16,1,6,4,28,2,6,1,28,1,8,1,14,1,6,5,13,1,16,1,6,3,28,1,6,2,28,1,8,1,6,3,30,1,6,7,13,1,6,16,8,1,6,3,8,1,13,1,6,4,8,1,6,1,30,1,13,1,6,2,7,1,1,51,}, + {1,563,28,1,16,1,8,1,16,2,8,1,14,1,8,1,16,7,6,2,16,1,6,4,13,1,16,1,6,1,7,1,16,1,6,1,8,1,6,1,8,2,16,1,8,1,16,1,6,3,8,1,6,6,8,1,6,8,28,1,6,1,8,1,6,8,13,1,8,1,6,4,13,1,16,1,14,2,6,8,13,2,6,3,8,2,6,1,8,1,13,1,16,1,8,1,14,2,8,2,16,1,6,1,30,1,6,1,8,1,6,8,8,1,16,2,6,4,8,1,6,9,8,1,13,1,8,1,13,1,6,3,16,1,1,50,}, + {1,563,28,1,16,1,8,1,16,2,8,1,14,1,8,1,16,6,8,1,6,3,8,2,6,3,16,1,6,1,16,1,6,3,8,1,6,1,8,1,6,2,8,1,6,1,8,1,6,2,16,5,6,2,13,1,6,6,30,1,8,1,6,1,28,1,6,7,16,1,6,4,28,1,6,12,30,1,6,6,16,1,6,4,8,2,28,1,6,9,8,1,16,1,6,3,13,2,6,7,13,1,6,1,30,1,6,1,13,1,6,4,13,1,6,2,30,1,8,1,6,2,7,1,6,1,1,49,}, + {1,563,6,1,16,1,8,1,16,1,8,1,16,2,8,1,16,5,14,1,6,4,8,2,6,5,16,1,6,1,13,1,8,1,6,2,16,1,6,5,16,2,8,1,6,2,8,3,6,9,13,1,6,6,30,1,6,1,14,1,6,3,16,3,8,1,6,1,30,2,6,4,16,1,6,3,13,1,6,5,8,1,16,1,6,17,30,1,6,10,13,1,6,13,13,1,30,1,13,1,6,2,7,1,11,1,1,48,}, + {1,563,6,1,16,3,8,1,16,9,6,5,8,1,6,3,13,1,6,4,13,1,6,1,8,2,6,1,8,2,6,1,16,1,6,4,8,1,6,1,16,1,8,2,6,9,16,1,6,2,28,1,6,1,13,1,6,17,8,1,30,1,6,7,16,2,13,1,6,5,13,1,6,34,13,1,6,5,28,1,6,2,1,48,}, + {1,563,6,1,16,1,8,1,16,1,8,1,14,1,16,6,14,1,6,4,16,1,6,1,8,2,6,6,8,1,6,2,8,1,6,2,16,1,6,1,8,1,6,5,8,1,6,1,16,1,8,1,16,2,6,8,8,1,6,2,13,1,6,12,8,1,6,1,8,1,6,4,28,1,6,5,13,1,6,16,8,1,6,9,13,1,6,1,13,1,16,1,6,1,8,1,6,1,13,1,6,2,16,1,8,2,6,4,8,1,16,2,6,1,8,1,6,2,16,2,30,1,6,2,1,47,}, + {1,563,28,1,8,1,16,2,8,1,14,1,16,7,6,1,16,1,6,5,8,1,6,3,16,1,14,1,8,1,6,3,16,1,8,1,6,1,16,1,8,2,6,1,8,1,16,2,8,2,16,1,8,1,6,6,14,1,16,1,8,1,28,1,6,24,13,1,6,3,8,1,13,1,6,2,28,1,6,4,13,1,8,1,6,3,8,1,6,3,8,2,6,3,30,1,6,1,13,1,6,4,16,2,6,3,28,1,6,2,16,2,6,5,8,1,6,2,30,1,6,1,16,1,6,7,14,1,1,46,}, + {1,563,8,1,16,3,8,1,14,1,16,6,8,1,6,5,8,1,6,2,13,1,6,2,8,2,16,1,6,3,8,1,6,1,8,1,16,1,6,2,16,1,8,3,16,1,6,3,8,1,6,1,16,1,8,1,6,1,16,1,8,1,28,1,16,1,6,15,13,1,6,7,13,1,6,4,13,1,6,4,8,1,13,1,6,3,13,1,6,5,8,1,6,3,13,1,6,5,30,1,13,1,28,1,6,2,16,1,6,7,8,1,6,7,8,3,6,1,8,1,6,7,16,1,1,46,}, + {1,563,16,5,14,1,16,5,14,1,6,2,8,1,6,3,8,1,6,1,8,1,16,1,6,1,8,1,6,2,16,1,6,1,8,1,6,1,16,1,6,1,16,1,6,5,8,1,6,4,8,1,6,2,8,1,6,1,16,2,6,2,13,1,6,18,13,1,6,9,13,1,6,4,28,1,6,1,8,1,30,1,6,4,13,1,8,1,6,42,30,1,6,1,8,1,14,1,1,45,}, + {1,563,16,4,8,1,14,1,16,5,14,1,6,2,13,1,6,1,13,1,6,1,13,1,6,2,8,1,13,2,8,1,6,1,16,1,7,1,6,2,8,1,6,1,16,1,6,4,8,2,6,1,14,1,6,4,8,1,6,1,8,1,16,1,6,2,16,1,6,21,13,1,6,7,8,2,6,10,8,1,13,1,6,3,30,1,6,14,8,1,6,4,16,1,6,6,13,1,6,12,8,1,13,1,6,1,16,1,1,45,}, + {1,563,11,1,16,1,8,1,16,1,8,1,14,1,8,1,16,4,8,1,6,2,13,1,6,3,8,1,6,2,8,1,6,1,13,2,6,1,8,2,6,2,8,3,6,2,16,2,6,3,16,1,6,2,8,1,6,1,16,1,8,1,14,1,6,2,16,1,6,4,13,1,6,11,30,1,28,1,30,1,28,2,30,1,6,10,8,1,6,2,16,1,6,1,28,1,6,2,30,1,6,4,13,1,8,2,6,4,13,1,8,1,13,1,6,7,8,1,6,2,8,1,6,2,13,1,6,1,13,1,6,2,13,1,6,9,30,1,6,2,30,1,6,3,8,1,11,1,1,44,}, + {1,564,16,1,8,1,16,1,8,1,14,1,16,2,8,2,16,1,6,10,16,1,6,2,8,1,6,1,8,1,6,1,8,1,6,1,16,2,6,2,8,1,16,1,6,2,8,1,6,2,16,2,8,1,16,1,8,1,6,4,16,1,13,1,6,16,30,1,6,1,28,1,30,1,28,3,30,1,6,9,16,1,6,2,16,2,8,1,6,2,8,1,16,1,13,1,8,1,6,2,13,1,8,1,16,1,6,2,13,1,6,4,16,1,8,1,6,2,13,1,6,4,8,4,6,9,16,1,6,10,16,1,1,44,}, + {1,564,7,1,8,2,6,1,14,1,16,2,14,3,6,2,8,1,6,5,8,1,6,1,13,1,6,1,13,2,6,1,16,1,6,3,16,1,7,1,6,1,8,1,16,1,6,1,8,4,6,1,16,1,8,3,28,1,6,3,14,1,8,1,6,12,8,1,6,7,30,5,28,1,6,9,28,1,13,1,6,1,30,1,6,2,13,1,16,1,6,7,8,1,16,2,6,5,8,1,6,4,28,1,6,2,16,1,8,1,6,4,13,1,6,1,16,1,6,16,7,1,11,1,1,43,}, + {1,564,8,1,9,1,8,1,6,1,16,3,8,1,16,2,6,5,16,1,8,1,6,1,8,1,6,1,8,1,6,1,8,2,6,1,16,1,6,2,8,1,6,3,8,2,6,1,16,1,6,1,8,3,6,2,8,1,6,2,8,1,16,2,8,1,6,1,8,1,6,4,7,1,6,2,8,4,13,1,6,3,8,1,13,1,6,1,8,1,13,1,6,4,30,3,6,11,30,1,6,2,13,1,6,7,30,1,28,1,6,1,16,1,8,1,6,3,8,1,6,5,8,1,14,1,8,1,6,7,13,1,6,4,16,1,13,1,6,2,13,1,6,4,8,1,6,3,7,1,1,43,}, + {1,564,16,2,6,1,16,1,14,1,16,1,6,1,8,3,6,1,13,1,6,2,13,1,8,1,6,2,8,1,13,1,6,2,8,1,7,1,6,1,16,1,6,2,8,1,6,1,7,1,8,1,7,1,6,1,16,1,6,1,8,2,6,3,14,1,6,2,16,1,6,1,16,1,6,3,8,2,6,1,8,1,6,2,7,1,8,1,6,1,8,1,6,5,8,4,6,1,8,1,16,2,6,3,30,3,6,6,8,1,28,1,13,1,6,1,28,1,6,1,13,1,6,14,28,1,6,1,13,1,6,16,8,1,6,1,8,1,6,1,8,1,6,13,1,43,}, + {1,564,11,1,16,1,8,1,14,1,6,2,8,2,16,1,8,1,6,2,16,1,6,2,13,1,6,1,8,1,6,1,16,1,6,2,8,2,6,1,16,1,6,3,8,2,6,2,8,2,16,1,6,2,8,1,6,1,16,1,8,1,6,1,16,1,8,1,6,3,8,1,6,2,8,2,6,1,8,5,6,3,8,1,16,6,8,1,16,1,6,2,16,1,8,1,6,11,13,1,6,1,13,1,6,4,30,1,6,13,28,1,13,1,8,1,28,1,6,1,8,1,6,5,13,1,6,2,13,1,6,1,8,1,6,3,13,1,6,6,8,1,6,7,8,1,9,1,1,42,}, + {1,565,8,1,14,1,6,2,8,2,6,1,8,1,6,2,8,1,16,1,6,4,8,1,6,1,8,1,6,1,8,1,6,1,8,2,16,1,6,1,8,1,16,1,6,2,8,1,6,3,16,1,6,1,8,1,6,1,8,1,16,1,6,2,16,1,6,1,8,1,6,1,8,3,6,1,8,3,6,1,8,1,6,4,16,10,8,1,16,2,6,1,16,2,6,10,16,1,6,2,8,1,6,2,13,1,28,1,30,1,6,1,30,1,6,4,30,1,6,13,16,2,8,1,6,5,13,1,16,1,8,2,6,5,16,1,6,1,8,2,6,3,13,1,6,3,28,1,1,42,}, + {1,565,6,1,16,1,6,1,8,2,6,1,8,1,16,1,6,1,8,1,6,1,16,1,8,1,6,1,8,2,6,2,8,1,6,1,8,1,6,1,8,1,14,1,6,1,8,1,16,2,8,1,6,2,8,1,6,2,8,1,6,1,8,1,6,1,14,1,6,1,8,1,16,1,6,1,7,1,8,1,16,1,8,8,6,2,8,1,16,13,8,1,16,1,8,1,6,1,16,2,8,1,6,11,8,1,6,2,8,1,6,12,13,2,6,7,16,2,6,2,8,1,16,1,6,7,8,1,6,2,8,1,6,12,7,1,1,42,}, + {1,565,11,1,6,2,8,1,6,2,8,2,6,1,16,1,6,2,16,1,6,1,8,1,16,1,6,3,8,1,6,1,8,2,16,1,6,1,16,1,6,1,8,5,6,2,16,1,8,1,6,1,16,1,8,3,6,2,8,1,6,1,8,3,6,1,8,1,6,1,8,2,6,1,8,1,16,18,8,1,6,1,16,2,8,1,6,12,16,1,6,2,8,1,13,2,6,1,16,1,6,1,30,1,6,1,28,1,6,2,16,1,6,8,8,1,28,1,6,4,8,1,6,1,13,1,6,7,16,1,13,1,6,8,30,1,6,2,7,1,16,1,1,41,}, + {1,565,16,1,8,1,6,1,8,1,6,2,8,2,6,4,16,1,6,3,13,1,6,1,8,2,6,1,8,2,6,1,8,1,16,1,6,2,8,1,6,1,8,3,7,1,8,4,16,1,8,1,6,2,8,1,6,1,8,7,6,2,8,1,16,17,8,3,6,2,8,3,6,9,8,1,14,1,6,7,8,1,6,1,8,1,14,1,13,1,8,1,16,1,8,1,6,2,16,1,8,1,6,1,16,1,8,1,6,2,16,1,6,5,16,1,6,7,16,1,6,1,16,1,6,12,8,1,1,41,}, + {1,565,16,2,6,1,8,1,6,3,8,1,6,4,16,1,6,4,13,1,6,1,16,1,6,4,14,1,6,2,16,1,8,1,6,1,16,1,6,1,7,1,6,1,8,2,6,5,8,1,6,1,7,1,8,5,6,3,16,21,8,2,6,1,8,1,16,2,8,1,6,9,28,1,6,2,8,1,6,2,28,1,6,1,28,1,6,2,13,1,8,1,13,1,8,1,6,1,30,1,6,1,30,1,6,1,8,1,13,1,6,4,8,1,13,1,8,1,16,1,6,10,13,1,8,1,6,5,8,2,6,6,1,41,}, + {1,565,16,2,6,1,8,1,6,3,8,1,6,4,16,1,6,2,8,1,6,2,8,2,6,4,16,1,6,2,16,1,6,2,16,1,6,2,8,3,6,1,8,5,6,3,8,5,6,1,8,1,16,11,14,1,16,9,8,1,6,3,16,3,8,1,6,8,28,1,6,4,30,1,6,1,30,1,6,1,30,1,6,1,28,1,6,3,28,1,6,2,30,1,6,1,30,1,6,12,8,1,14,1,16,1,8,1,6,6,13,1,6,6,13,1,6,1,13,1,6,1,8,1,16,1,1,40,}, + {1,565,16,1,6,1,13,2,6,2,13,1,8,1,6,4,16,1,6,1,13,1,6,1,8,1,6,2,16,1,6,3,16,1,8,1,7,1,6,1,16,1,6,1,8,1,16,1,6,1,8,1,6,1,14,1,6,3,8,1,6,1,8,7,6,3,8,1,16,11,14,6,16,7,6,2,8,1,16,2,8,1,6,12,30,3,6,1,30,2,6,1,30,2,6,5,30,1,6,1,30,1,6,7,13,1,6,8,16,1,8,1,6,1,14,1,8,1,6,4,8,1,6,7,9,1,16,1,1,40,}, + {1,565,16,1,7,1,6,4,8,1,13,1,6,4,16,1,6,6,16,1,6,1,8,1,6,1,16,1,6,3,16,1,6,1,16,1,8,1,6,1,8,1,6,1,14,1,6,2,8,1,6,1,8,3,6,1,8,4,7,1,6,2,16,11,14,6,16,8,6,2,8,1,16,3,8,1,6,7,8,1,13,1,30,1,6,2,28,1,6,3,30,1,6,2,30,2,6,1,13,1,16,1,6,1,30,3,6,6,16,1,6,1,13,1,6,1,8,1,16,1,8,1,6,1,8,1,6,6,13,1,6,1,8,1,6,6,13,1,6,2,8,1,16,1,1,40,}, + {1,565,14,1,6,1,8,1,6,3,8,1,13,1,6,4,16,1,6,2,16,1,14,1,16,1,6,2,8,2,6,1,8,1,6,1,8,1,6,1,14,1,6,1,16,1,8,1,6,1,7,1,6,1,16,1,6,1,16,2,6,2,8,6,7,2,6,1,8,1,16,11,14,6,16,8,6,2,8,1,16,4,6,7,16,1,8,1,30,1,6,2,13,1,6,1,28,1,6,1,28,1,6,2,30,2,6,1,16,1,6,1,30,1,6,4,28,1,6,2,16,1,14,1,8,1,6,13,8,1,6,2,13,1,16,1,6,9,14,1,1,40,}, + {1,565,14,1,8,2,6,3,8,1,13,1,6,4,16,1,6,1,16,2,8,1,16,1,8,1,6,2,8,4,6,2,14,1,6,1,8,1,7,1,6,2,16,1,8,1,6,1,14,1,8,2,6,1,8,1,6,1,8,4,6,3,16,12,14,2,16,1,14,4,16,7,8,2,6,1,16,1,8,2,16,2,8,2,6,4,8,1,6,1,28,1,6,1,13,1,6,1,16,1,6,2,28,1,6,1,28,1,6,5,16,2,13,1,8,2,16,1,14,2,16,1,13,1,28,1,30,1,6,8,8,1,6,4,16,1,6,2,8,1,6,9,28,1,1,40,}, + {1,565,11,1,16,1,6,3,13,1,8,1,13,1,6,4,16,1,6,1,14,1,6,3,8,5,6,1,16,2,6,1,16,1,6,1,8,1,6,1,16,1,6,1,16,1,6,1,14,1,6,1,8,1,16,1,8,1,6,1,8,5,6,2,16,17,14,3,16,7,8,2,6,1,16,1,8,1,16,3,8,1,6,2,13,1,6,2,16,1,6,4,28,1,6,2,13,1,6,4,28,1,6,1,16,1,6,2,8,1,28,2,6,3,28,3,30,3,6,1,30,1,6,3,13,2,6,1,8,2,6,2,28,1,16,1,13,1,6,1,8,1,16,1,6,2,8,1,16,1,6,4,1,40,}, + {1,565,14,1,6,4,13,1,8,2,6,5,16,1,6,1,8,1,6,1,8,2,6,2,8,2,6,1,8,1,16,2,6,1,8,2,6,1,16,2,8,1,16,1,7,1,6,1,16,4,8,5,6,2,16,18,14,2,16,7,8,2,6,1,16,5,8,3,6,2,8,1,13,1,6,2,13,1,6,1,16,1,13,1,30,1,28,1,6,1,13,1,16,1,6,2,14,1,8,1,6,2,8,1,28,1,6,1,28,1,6,1,13,1,30,5,28,1,30,5,6,4,13,1,6,8,16,1,6,3,8,1,6,3,1,40,}, + {1,565,28,1,6,5,13,1,8,1,6,4,16,1,8,1,6,3,16,1,6,1,7,1,8,1,6,2,8,1,6,1,16,2,8,1,6,1,8,1,6,2,16,1,6,1,16,1,6,1,16,2,6,2,8,2,6,1,8,1,13,1,6,2,8,1,16,18,14,2,16,7,8,1,6,1,8,1,16,5,8,3,6,2,16,1,6,3,8,1,6,3,28,1,6,5,16,1,8,1,28,2,13,1,16,1,28,1,6,3,8,2,28,1,30,9,6,18,13,2,6,1,1,40,}, + {1,565,6,6,8,2,6,3,8,1,16,1,6,1,8,1,6,2,8,1,6,2,8,2,6,1,8,3,6,2,16,1,8,3,6,3,16,1,14,1,8,2,6,1,16,1,8,3,13,1,6,2,16,1,8,1,16,3,8,2,16,1,8,1,16,19,8,3,16,3,8,1,16,2,8,3,6,15,8,1,28,2,6,2,16,1,6,1,28,1,6,2,16,1,13,1,30,7,6,1,30,1,6,2,16,1,8,1,16,1,8,2,6,5,8,1,13,1,6,3,8,1,6,2,8,1,6,1,1,40,}, + {1,565,6,1,13,1,6,4,8,2,6,3,8,1,6,2,8,1,6,1,16,1,8,1,6,1,16,1,14,1,16,2,8,2,6,2,16,2,8,3,6,1,8,1,6,1,8,1,6,2,8,2,16,1,8,1,6,5,16,1,8,3,6,1,8,3,16,21,8,1,6,1,8,1,16,2,8,2,16,1,8,1,6,1,8,1,6,1,7,1,6,5,16,1,8,1,6,5,8,2,30,1,6,2,30,1,8,1,14,1,6,2,8,1,6,1,28,1,6,2,30,2,6,2,30,1,6,1,8,4,6,3,8,1,6,6,8,1,6,4,16,1,6,3,1,40,}, + {1,565,8,1,6,5,8,1,16,1,6,2,16,1,8,1,6,1,8,1,6,2,16,1,6,1,16,2,6,2,8,2,6,1,8,6,6,2,8,2,6,2,16,1,6,1,16,1,8,2,6,1,8,1,6,2,8,1,6,1,8,2,6,1,8,1,6,2,8,4,16,18,8,3,16,6,8,3,6,7,14,1,16,1,8,1,6,3,8,1,16,1,6,4,28,1,8,1,16,2,6,9,13,1,8,1,6,6,8,1,6,1,13,1,6,5,13,1,8,1,6,4,8,1,6,1,7,1,1,40,}, + {1,564,14,1,16,1,6,5,8,1,16,1,6,2,16,1,6,4,16,1,6,1,16,1,8,1,6,1,7,1,6,1,8,2,6,2,8,1,6,1,16,1,8,1,6,1,16,2,8,1,6,3,8,2,14,1,6,2,8,1,6,4,8,1,6,4,8,1,6,1,8,2,16,1,6,1,16,18,6,2,8,1,16,6,8,1,6,1,7,1,6,2,16,1,6,1,8,1,6,3,16,3,7,1,8,1,6,17,8,2,6,10,8,1,13,1,6,4,8,2,6,1,13,1,6,4,7,1,1,40,}, + {1,564,8,2,6,2,13,1,6,2,8,1,16,1,6,1,8,1,6,2,13,1,7,1,6,1,16,1,8,2,6,2,8,1,6,1,14,1,6,1,8,1,7,1,16,1,6,1,14,1,6,2,14,1,16,2,6,1,8,1,6,2,16,1,6,1,8,1,6,1,8,1,6,13,8,5,16,14,8,1,6,2,8,1,16,6,8,2,6,2,16,2,6,3,8,1,28,1,6,2,8,1,16,1,6,1,28,1,6,5,13,1,6,8,13,1,6,8,8,1,16,2,8,1,16,1,8,2,6,7,16,1,8,1,6,4,1,40,}, + {1,564,16,1,9,1,6,3,13,1,6,1,8,1,16,1,8,1,16,1,6,1,8,1,6,2,16,1,6,1,16,1,6,1,8,2,6,1,8,2,6,1,8,1,6,1,8,2,16,1,6,1,16,1,8,1,6,1,8,1,16,1,6,1,8,1,6,1,8,3,6,1,8,1,6,10,13,1,6,2,8,2,6,1,8,4,16,13,8,1,6,1,8,1,16,6,6,2,8,1,16,1,14,1,6,4,16,1,6,5,8,1,13,1,8,1,6,7,13,1,6,2,8,1,6,1,8,1,6,6,8,1,16,5,8,1,16,1,8,1,16,1,8,1,6,5,13,1,28,1,16,1,6,3,7,1,1,40,}, + {1,564,14,1,7,1,6,3,13,1,6,1,8,1,16,1,8,1,6,2,8,1,6,2,8,2,6,1,8,1,6,3,16,1,6,1,16,1,14,1,6,1,8,1,6,1,16,1,6,1,14,1,6,2,16,1,8,7,6,1,7,1,14,1,6,2,8,1,6,1,8,1,6,5,8,1,6,3,8,7,16,10,6,2,8,1,16,6,8,2,6,2,14,1,16,1,8,1,6,2,16,1,6,2,8,2,6,2,16,1,8,1,6,2,8,1,6,5,7,1,6,1,13,3,6,6,8,1,16,11,8,1,6,7,8,1,6,2,14,1,1,40,}, + {1,564,28,1,6,4,13,2,8,2,16,1,6,4,8,1,6,1,16,1,6,4,16,1,8,1,6,1,14,1,8,3,6,1,8,1,16,1,8,1,6,1,8,2,16,1,8,1,6,1,8,2,6,5,16,1,6,4,8,1,6,11,8,8,16,6,8,1,6,2,16,7,8,1,6,2,14,1,8,2,6,2,8,2,6,1,13,1,6,1,8,1,6,1,16,1,13,1,6,3,8,1,16,1,8,1,16,1,8,1,6,1,8,1,6,8,8,1,16,11,8,4,6,1,8,1,6,1,8,1,6,1,16,1,6,2,16,1,1,40,}, + {1,564,6,3,13,1,8,1,6,1,8,3,16,1,6,2,8,1,6,1,16,1,6,1,8,1,7,1,8,1,6,2,16,1,6,1,16,1,8,1,6,1,8,3,6,1,14,1,8,1,7,1,8,1,6,1,16,1,8,1,6,1,8,3,16,1,6,3,16,1,6,2,16,1,8,1,6,1,8,2,6,5,13,1,6,5,8,7,6,1,16,3,8,2,6,2,16,5,8,1,16,1,8,1,6,1,8,1,16,2,6,2,8,1,7,1,8,1,6,5,8,2,6,3,14,1,8,1,6,2,8,1,6,9,8,1,16,1,8,1,16,12,8,2,6,3,8,4,6,1,9,1,1,40,}, + {1,564,8,1,6,5,8,2,16,3,6,2,16,1,6,1,14,1,6,1,8,2,6,1,14,1,6,2,14,1,6,1,8,2,6,1,16,1,6,1,8,1,6,1,8,2,6,1,16,1,6,1,8,2,16,3,8,1,6,1,16,2,6,2,8,2,6,2,16,1,8,1,6,10,8,1,6,2,8,1,6,4,16,3,8,2,6,1,8,1,16,5,8,1,16,1,8,1,6,2,16,1,6,1,8,1,6,2,16,1,6,2,8,1,6,4,8,2,6,1,8,2,6,2,8,2,6,3,28,1,6,4,8,1,16,16,8,1,13,1,6,3,16,1,6,1,8,1,7,2,1,40,}, + {1,563,14,1,9,1,6,4,13,1,8,3,16,2,6,2,8,2,16,1,6,1,8,1,6,1,8,1,16,1,6,1,14,1,8,1,6,1,16,1,8,1,6,2,16,1,8,3,16,1,6,1,14,1,6,2,16,1,6,2,8,2,6,1,16,1,8,1,6,3,16,1,6,2,16,1,8,1,6,12,13,1,6,5,8,3,16,1,6,2,16,6,8,3,7,1,6,1,16,1,8,2,6,1,8,1,16,1,6,1,8,1,6,5,16,2,6,1,8,1,7,1,6,2,16,1,8,1,6,2,30,1,6,1,30,1,6,2,13,1,16,1,8,2,16,3,14,1,16,1,14,1,16,8,8,2,6,4,8,1,16,1,8,1,1,41,}, + {1,563,8,2,6,4,8,4,16,2,6,1,8,1,6,1,16,1,6,2,8,1,6,1,14,1,6,1,8,1,16,1,6,1,7,1,8,3,6,1,16,1,6,1,8,2,6,1,16,2,6,1,8,1,16,1,8,1,6,1,16,1,8,1,6,1,14,1,8,1,6,3,16,1,6,2,14,1,8,1,6,18,16,2,8,2,6,1,8,2,16,5,8,3,6,2,14,1,16,1,6,2,8,1,16,2,6,2,8,1,6,2,8,2,6,3,16,1,28,1,6,1,8,1,6,4,30,1,6,3,8,3,16,2,14,2,16,11,8,1,6,5,16,1,8,1,6,1,1,41,}, + {1,563,16,1,8,1,6,5,8,2,16,4,8,3,6,1,8,1,6,1,16,1,8,1,6,1,16,1,6,1,7,1,8,4,6,1,16,1,6,1,8,2,6,1,14,1,6,2,8,1,16,1,6,2,16,1,6,1,8,1,16,1,6,2,8,1,6,2,8,1,14,1,8,1,6,3,8,1,6,16,8,3,6,2,16,6,8,2,6,1,16,1,8,1,16,1,6,1,8,1,6,3,16,3,8,1,16,2,6,1,8,1,6,3,16,2,13,2,6,3,30,1,6,3,8,2,6,1,16,1,14,3,16,12,8,1,7,1,6,2,16,1,6,3,29,1,1,41,}, + {1,563,16,1,8,1,6,1,13,1,6,3,8,2,16,3,14,1,6,1,16,1,6,1,8,1,6,1,8,1,16,1,6,1,8,1,16,1,6,1,8,1,7,1,8,3,6,1,16,1,6,1,8,1,6,1,14,1,8,1,6,1,8,2,6,1,16,2,6,2,14,1,6,1,8,1,16,1,8,1,16,1,6,2,8,1,6,3,8,1,16,2,6,14,8,2,6,3,8,1,16,2,8,1,16,3,6,1,8,1,6,2,8,2,6,1,8,1,6,1,8,1,6,4,8,1,6,13,30,1,28,1,30,1,6,2,8,2,16,5,14,3,16,9,8,1,6,3,16,1,6,1,8,2,14,1,1,41,}, + {1,563,7,2,6,4,13,1,8,2,16,3,14,1,6,1,8,1,6,3,16,1,8,1,6,1,14,1,6,1,8,1,6,1,8,2,16,1,6,1,16,1,8,1,7,1,8,2,16,1,7,1,8,3,6,1,8,2,6,1,16,2,6,1,16,1,6,2,16,1,6,5,16,2,6,2,8,1,6,13,8,1,6,1,8,2,6,1,8,1,16,4,8,1,6,1,16,1,14,1,16,1,6,2,16,1,8,1,6,1,8,1,13,1,6,5,16,1,13,1,6,2,28,1,8,3,16,1,6,3,30,2,6,3,8,2,6,1,16,3,8,2,14,3,16,1,14,2,16,6,8,1,6,3,8,1,6,1,8,2,16,1,1,41,}, + {1,563,28,1,6,5,8,2,16,1,8,1,16,4,6,1,8,2,6,1,16,1,6,1,16,1,8,4,6,1,16,1,8,1,6,1,16,1,6,1,8,1,6,1,14,1,6,2,8,2,6,1,8,2,6,1,16,1,8,1,6,2,16,1,8,1,6,1,16,1,8,1,6,4,16,1,6,2,8,1,16,1,6,13,8,1,6,1,8,1,6,1,8,1,16,5,6,1,16,1,8,1,6,1,14,1,8,1,6,2,8,1,6,1,8,1,6,2,13,1,6,3,16,2,6,2,8,1,16,1,6,2,16,2,6,1,30,4,6,2,8,2,16,1,14,1,16,3,8,2,16,1,14,3,16,7,8,2,6,2,13,1,6,1,8,3,1,41,}, + {1,563,6,3,13,1,6,2,8,2,16,5,14,1,6,1,8,1,6,1,16,1,8,1,6,1,14,1,6,1,8,1,6,1,8,1,6,1,16,1,6,2,14,1,6,2,16,2,6,1,8,1,6,1,8,1,6,1,8,2,6,1,8,1,6,3,8,2,6,1,16,1,8,1,6,3,7,1,16,1,8,1,6,1,16,2,6,13,8,1,6,3,8,1,16,3,8,2,6,1,8,2,6,2,16,1,8,1,6,1,16,1,6,4,13,1,6,3,16,2,6,2,16,2,6,1,28,1,7,1,14,1,30,4,6,3,8,1,6,1,14,1,16,8,14,1,16,8,8,2,6,1,8,1,16,1,6,1,8,1,6,1,1,42,}, + {1,563,6,1,7,1,6,4,8,2,16,5,14,1,16,1,6,2,14,1,6,1,16,2,6,1,8,1,7,1,8,1,6,1,16,1,6,2,16,1,6,1,16,2,8,2,6,1,8,1,6,2,8,1,6,1,8,4,6,1,28,1,16,3,6,6,8,2,16,1,6,2,16,4,8,1,6,10,8,1,16,5,6,2,16,1,8,2,6,3,8,1,6,1,8,2,6,6,8,1,16,1,6,2,14,1,6,1,28,2,16,1,14,1,30,2,28,1,30,1,6,2,8,2,16,8,8,1,6,1,16,1,14,1,16,8,8,1,6,2,16,1,30,1,8,1,6,1,1,42,}, + {1,563,8,1,7,1,6,1,13,1,6,2,13,1,8,3,16,3,14,2,6,1,16,1,7,1,6,1,16,1,6,1,8,4,6,1,16,1,6,1,16,1,8,1,16,1,14,1,6,3,16,7,6,1,8,1,7,1,8,1,6,2,28,1,6,8,16,1,6,3,16,1,6,3,8,1,16,1,6,8,8,3,16,5,6,1,16,1,14,1,16,1,8,1,6,2,16,1,8,2,6,2,13,1,6,5,14,1,6,2,8,1,14,1,16,1,6,1,14,1,8,1,28,1,30,2,6,2,8,1,7,1,8,1,16,10,6,1,16,1,14,1,16,6,8,2,6,4,8,1,28,1,1,42,}, + {1,563,8,1,6,5,13,1,8,2,16,4,14,2,8,1,7,1,6,1,16,1,6,2,8,1,6,1,8,2,6,1,14,1,6,1,8,2,16,1,6,2,8,1,14,1,16,2,8,2,6,1,8,2,6,1,8,1,6,4,13,1,6,1,13,1,6,2,16,1,6,1,8,1,13,1,6,1,8,1,6,2,16,1,8,1,6,3,7,1,8,1,6,6,8,3,16,5,8,2,6,3,16,1,8,1,6,1,16,3,6,1,8,1,6,2,13,1,6,3,14,1,6,3,8,2,6,1,13,1,6,2,30,2,6,2,8,1,6,1,8,1,16,11,6,1,8,1,16,6,8,2,6,5,16,1,1,42,}, + {1,563,8,1,6,5,8,2,16,6,14,2,6,1,8,1,16,1,6,1,7,1,8,1,7,2,8,1,6,1,14,1,7,1,6,2,8,1,6,2,14,1,8,1,6,1,7,1,8,1,6,1,8,1,6,1,8,1,6,1,16,4,6,5,8,2,6,2,8,1,6,3,8,1,16,1,6,2,8,1,6,3,8,1,16,2,8,1,6,2,8,2,16,9,6,2,8,1,16,1,8,1,6,1,8,1,6,1,16,3,8,1,6,3,16,1,14,1,6,2,30,1,6,5,28,1,6,3,13,1,8,3,16,12,6,1,8,1,16,4,8,3,13,1,6,2,16,1,7,1,8,1,1,42,}, + {1,563,8,1,6,5,8,2,16,5,14,1,16,1,14,1,8,1,6,1,16,1,6,2,8,4,6,1,14,1,6,1,7,1,8,1,6,1,7,1,14,1,6,2,8,3,16,1,6,1,8,1,16,1,14,1,8,2,6,1,8,1,16,2,6,3,16,1,8,1,6,2,8,2,6,3,16,1,6,6,16,1,8,1,6,1,16,2,6,1,16,1,8,1,16,4,8,1,16,1,8,1,16,2,8,1,6,1,8,2,14,1,16,1,6,4,8,1,14,1,13,1,16,1,8,2,6,1,8,1,14,1,8,1,28,1,6,2,30,1,6,3,30,1,6,1,8,3,16,14,6,1,8,1,16,3,8,2,7,1,6,3,14,1,6,1,1,43,}, + {1,563,8,1,6,4,13,1,8,2,16,7,14,2,6,1,7,1,6,1,8,1,6,1,8,1,7,1,8,1,7,1,16,1,6,1,8,1,6,1,16,1,14,1,6,1,8,8,16,1,8,2,6,3,16,3,6,2,16,1,7,1,6,2,16,1,6,3,16,2,6,5,16,2,6,3,16,1,6,1,8,1,6,1,16,3,8,1,6,1,16,1,6,4,16,1,8,1,6,2,8,1,16,1,14,1,8,1,6,3,8,1,16,2,6,1,8,3,16,2,6,3,30,2,28,1,6,2,13,1,8,2,16,15,6,1,16,2,8,3,6,4,8,1,28,1,1,43,}, + {1,562,7,1,8,1,6,5,8,2,16,6,14,1,16,2,8,1,6,1,8,1,6,1,8,5,16,1,6,2,16,1,14,1,6,1,7,1,8,6,6,1,14,1,8,1,6,3,8,1,6,1,8,2,16,1,8,1,6,1,8,2,16,3,6,2,16,1,8,3,6,2,8,1,6,1,8,2,6,1,8,4,6,2,8,6,16,1,8,1,6,2,16,1,7,1,8,1,6,2,16,1,6,6,16,2,28,1,8,1,16,1,28,2,16,1,8,1,30,2,6,1,30,1,28,1,6,1,13,2,6,1,8,1,16,15,6,2,16,1,8,3,6,4,8,1,6,1,1,43,}, + {1,562,8,3,6,4,13,1,8,1,16,8,14,2,6,1,16,1,8,1,7,1,8,2,6,1,16,1,8,1,6,1,7,1,16,1,6,1,8,1,7,1,8,5,6,1,16,2,6,7,8,1,16,1,8,1,6,4,8,1,6,2,8,1,6,2,8,1,6,6,8,1,16,1,6,1,8,2,6,1,8,1,16,2,6,1,8,2,6,1,16,2,8,2,6,1,16,1,8,2,6,1,8,1,6,7,16,2,6,2,16,1,8,1,6,1,16,1,6,3,30,3,6,1,8,1,6,1,8,2,16,14,8,2,6,2,8,2,6,5,8,1,9,1,1,43,}, + {1,562,6,1,8,1,6,4,13,1,8,2,16,9,14,1,16,1,6,1,16,1,8,1,6,1,8,1,6,1,16,1,6,2,14,1,6,1,8,1,6,1,8,7,14,1,6,2,8,3,6,1,8,1,6,1,16,2,6,15,8,1,7,1,6,3,8,1,6,2,16,1,6,1,16,2,8,1,6,1,16,1,6,2,16,3,6,1,16,2,6,2,8,1,6,6,28,1,8,1,16,1,6,2,16,1,14,1,6,1,8,1,6,2,30,4,6,1,8,1,6,1,8,2,16,14,8,2,7,1,6,1,8,4,6,3,7,1,11,1,1,43,}, + {1,562,7,1,9,1,6,1,13,1,6,2,13,1,8,2,16,8,14,1,16,1,14,1,6,1,8,2,6,3,14,1,6,1,16,1,8,1,6,1,8,7,6,1,14,1,6,2,8,1,6,1,8,1,7,1,6,3,16,2,6,5,8,2,6,6,8,1,6,2,8,2,16,1,6,3,16,2,8,1,6,3,16,3,8,1,6,2,16,2,6,3,14,1,6,7,28,1,16,2,6,7,30,2,6,1,28,1,30,1,6,1,13,1,6,1,8,2,16,6,8,1,16,6,8,3,6,3,8,1,6,1,13,1,6,2,7,1,6,1,1,44,}, + {1,562,8,2,6,6,8,1,16,7,14,1,16,2,14,2,6,1,8,3,6,1,16,1,8,1,14,1,6,1,8,1,6,1,8,5,6,1,14,1,16,1,6,1,8,1,6,1,8,1,6,6,16,1,6,1,28,1,6,1,16,1,14,1,16,4,8,1,6,5,8,1,16,3,8,2,16,5,8,1,16,5,8,1,7,1,6,1,16,2,8,1,6,1,16,2,8,1,6,6,16,1,8,1,6,8,30,1,28,1,30,1,6,3,7,1,8,1,6,1,8,1,16,3,8,1,16,1,8,1,16,6,8,4,7,1,8,1,16,1,6,3,8,1,6,1,8,1,1,44,}, + {1,562,7,1,9,1,6,1,13,1,6,4,8,1,16,10,14,1,1,1,8,2,16,1,6,1,8,2,16,1,6,1,7,1,8,6,6,2,14,1,6,2,8,2,7,1,6,1,8,1,6,4,16,2,14,2,8,2,6,2,13,1,16,1,8,1,16,1,6,3,8,1,16,1,6,3,16,6,8,1,16,6,8,1,16,1,6,2,16,2,8,1,6,1,16,2,8,1,6,4,8,1,14,1,16,1,6,3,13,1,6,1,30,1,6,1,30,3,28,1,30,1,6,1,8,1,6,1,8,2,16,6,8,3,16,1,8,3,6,1,8,1,6,1,8,2,6,1,8,1,6,2,8,3,11,1,1,44,}, + {1,563,8,1,6,1,8,1,6,3,7,1,8,1,16,8,14,1,16,1,14,2,28,2,8,1,16,1,8,1,7,1,16,1,6,1,7,1,8,4,7,1,8,1,6,1,14,1,8,1,6,1,8,4,6,6,16,2,8,1,6,7,8,2,16,1,6,4,8,4,16,1,8,1,16,3,6,1,16,1,8,4,16,2,8,2,6,2,8,1,16,1,6,2,16,2,14,1,16,3,8,1,16,1,6,1,8,2,16,3,6,2,30,2,28,1,30,1,6,2,8,2,6,1,8,3,16,2,8,9,6,1,7,1,6,2,8,1,6,4,14,1,6,1,16,1,14,1,1,44,}, + {1,563,8,1,7,1,6,5,8,1,16,7,14,1,16,3,1,1,28,2,16,1,8,7,7,1,8,3,6,1,8,1,14,1,6,2,8,2,6,1,8,1,6,1,13,1,6,2,28,1,14,1,16,1,8,1,6,10,16,1,8,1,6,3,16,3,8,1,16,5,6,1,8,1,16,3,8,1,6,2,16,2,6,1,8,1,6,1,16,2,6,9,16,1,8,1,6,2,8,1,16,2,28,1,30,3,28,1,6,2,8,1,6,2,8,15,6,4,8,2,6,1,16,1,8,1,6,2,1,45,}, + {1,563,6,3,13,1,6,2,8,2,16,6,14,1,16,4,11,1,28,3,16,1,8,1,16,1,6,2,8,6,6,1,14,1,6,2,8,4,6,6,14,1,8,1,6,10,16,1,8,2,6,1,8,1,6,1,8,2,16,2,8,2,16,3,8,1,6,1,16,3,8,1,6,1,8,1,6,1,16,1,8,2,6,2,16,1,8,1,6,5,8,1,16,1,8,1,6,4,28,1,6,1,14,1,8,1,28,1,30,3,6,2,13,1,6,1,8,4,6,1,8,1,6,1,8,1,6,1,8,2,6,2,8,1,6,1,8,1,6,3,8,2,6,3,8,1,6,1,8,1,1,45,}, + {1,563,6,6,8,1,6,1,16,10,14,2,16,1,28,1,6,1,28,1,16,1,8,5,16,1,8,2,6,1,8,1,14,1,6,1,8,4,7,1,6,1,8,1,6,3,16,1,8,1,6,12,8,2,6,2,8,2,6,5,16,4,6,1,16,5,8,1,6,2,16,1,6,4,8,1,13,1,6,2,16,2,6,2,8,1,16,1,6,4,28,1,16,2,6,1,30,2,6,2,13,1,6,1,8,1,6,3,8,5,6,1,8,4,6,1,8,2,6,1,7,1,6,1,8,1,13,2,6,3,8,1,16,1,1,45,}, + {1,563,6,1,7,1,6,1,13,1,6,3,8,1,16,11,14,1,16,1,11,1,29,1,28,2,16,1,6,1,8,3,6,1,8,2,6,1,14,1,6,1,8,6,6,1,8,1,6,3,14,1,6,5,30,2,6,6,8,2,6,1,8,1,6,1,16,11,6,1,8,2,6,1,8,1,6,1,16,1,6,1,16,1,6,1,8,1,6,1,8,1,6,3,8,1,6,5,16,2,6,3,28,1,6,1,14,1,28,1,6,1,28,2,30,1,8,1,13,1,6,4,8,1,6,1,8,1,6,5,8,1,6,1,8,2,6,5,13,2,6,1,8,1,6,1,8,1,1,46,}, + {1,563,6,3,8,1,6,3,8,1,16,10,14,2,16,1,11,1,28,3,8,2,16,1,6,2,8,2,6,2,14,1,6,1,8,4,6,2,8,1,6,3,14,1,16,1,6,13,16,2,8,1,16,16,8,4,6,2,16,1,6,1,7,1,6,4,16,2,6,5,16,1,6,4,8,1,16,1,28,2,6,1,8,1,6,5,8,1,6,1,7,1,6,2,8,1,6,1,8,1,6,1,8,1,6,3,8,1,6,1,16,1,8,1,6,4,8,1,7,1,6,2,1,46,}, + {1,563,6,1,16,1,6,1,8,1,13,1,6,3,16,6,14,1,16,3,14,2,16,1,11,1,28,4,16,1,6,1,16,1,8,3,6,1,16,2,6,1,8,2,6,1,8,1,6,2,8,1,6,3,14,1,6,8,28,1,6,5,16,5,6,1,16,14,8,1,7,1,8,2,6,1,8,3,6,3,8,1,16,1,8,1,6,5,16,1,13,1,6,3,14,1,6,1,30,1,16,1,8,2,14,1,6,2,13,1,6,6,8,1,6,1,8,1,6,2,16,2,6,2,16,1,8,1,16,1,6,2,16,1,6,1,16,1,6,2,14,1,1,46,}, + {1,562,14,1,7,1,16,1,6,1,8,1,6,2,13,1,6,1,16,11,14,1,16,1,11,1,28,5,16,1,8,4,6,1,16,1,6,1,8,4,6,1,8,3,13,1,6,1,14,2,6,6,30,1,6,3,28,1,6,3,16,2,8,1,6,1,8,1,16,4,8,1,16,2,8,1,16,9,8,2,6,1,16,1,6,1,16,2,8,1,6,2,8,1,14,1,6,5,8,1,6,2,8,1,16,1,6,1,28,1,8,2,6,1,8,2,16,1,6,2,8,1,6,3,16,1,8,1,6,5,8,3,6,3,8,1,6,1,8,1,16,1,6,1,8,2,16,1,8,1,1,46,}, + {1,562,16,1,8,1,6,2,8,1,6,2,13,1,8,2,16,10,14,2,11,1,28,6,16,1,8,1,16,1,8,1,6,1,16,1,6,1,8,2,16,1,8,2,6,1,8,1,13,1,6,2,14,1,6,1,30,1,6,5,30,1,6,6,8,1,14,1,8,1,6,1,16,1,8,1,16,1,8,1,16,6,8,1,16,4,6,3,8,1,16,2,6,1,16,2,8,1,16,2,8,1,6,2,16,1,14,1,8,1,6,3,16,1,6,4,28,1,16,1,6,1,16,1,28,2,6,1,16,1,6,6,16,1,14,1,6,3,8,1,6,2,8,1,16,1,8,1,6,3,8,3,6,1,8,1,16,1,7,1,1,47,}, + {1,562,6,2,8,1,6,2,13,1,6,2,8,2,16,9,14,4,28,7,7,1,8,1,16,2,6,1,8,6,6,2,8,1,6,1,16,2,6,9,30,1,6,4,16,1,8,1,6,1,8,1,16,10,6,1,16,3,6,1,16,1,8,1,16,1,8,2,16,3,8,1,6,3,16,3,6,1,8,1,16,3,8,2,6,3,28,1,8,1,14,1,6,1,16,3,6,1,8,1,6,3,8,1,16,1,6,3,16,1,8,1,16,1,8,1,6,2,8,1,6,1,16,1,6,1,8,1,6,5,8,1,16,1,8,1,1,47,}, + {1,561,14,1,16,1,6,1,13,1,6,1,13,3,6,1,7,1,8,1,16,10,14,2,11,1,28,8,6,1,8,2,16,1,6,1,8,4,6,1,8,2,6,2,14,1,6,8,30,1,6,5,16,2,8,1,6,1,16,11,6,1,16,3,6,1,16,3,8,1,6,3,8,4,6,2,8,1,6,1,16,1,6,1,8,1,16,1,6,1,8,1,6,4,8,1,16,1,13,1,28,1,6,1,14,1,8,1,13,1,6,3,8,1,16,3,6,2,16,1,8,1,6,1,8,1,16,1,6,1,8,1,6,1,8,3,6,1,16,1,6,3,8,2,16,1,1,47,}, + {1,561,7,1,8,1,6,2,13,1,6,1,13,1,6,2,8,2,16,10,14,3,28,9,7,1,6,1,16,2,8,5,6,1,8,3,16,1,6,5,30,1,6,1,30,1,6,6,16,1,8,1,6,1,8,2,16,10,6,1,16,3,8,1,6,1,8,2,16,2,8,1,6,1,8,7,6,1,8,1,16,1,6,6,8,1,16,1,14,1,8,1,30,1,6,8,8,1,6,2,14,1,6,3,8,1,6,2,8,1,16,1,6,2,8,1,6,3,16,1,6,1,16,1,6,3,17,1,1,47,}, + {1,561,8,1,6,4,13,3,6,2,8,1,16,10,14,3,28,9,6,1,16,1,8,2,16,1,8,6,6,1,16,1,8,1,6,6,30,1,6,1,30,1,6,4,16,2,6,1,8,1,16,12,6,1,16,2,8,1,16,1,8,1,6,2,8,1,16,1,8,2,6,1,16,1,8,3,6,2,16,1,6,2,14,1,6,5,16,1,8,1,6,4,30,1,6,1,30,1,6,7,14,1,6,2,8,1,7,1,16,1,6,2,16,2,6,1,8,1,6,3,8,2,16,1,6,1,8,1,28,1,1,48,}, + {1,560,16,1,8,1,6,5,8,1,13,1,6,2,8,1,16,10,14,3,28,11,16,1,6,1,8,1,16,2,8,1,6,2,8,1,6,1,14,1,6,12,8,1,6,1,14,1,6,1,8,1,16,13,8,1,16,6,8,1,6,2,16,2,8,1,6,1,8,3,16,1,8,2,16,1,6,2,14,1,6,9,30,1,6,6,8,1,6,1,8,2,6,5,14,1,6,3,8,2,6,1,8,1,6,4,8,1,6,2,16,1,1,48,}, + {1,560,8,2,6,3,13,1,6,1,8,1,13,1,6,2,8,1,16,10,14,3,6,1,28,11,16,1,8,2,16,2,8,1,6,2,14,1,6,8,28,1,6,5,16,2,6,1,16,1,8,1,16,14,8,1,16,2,8,2,16,1,8,2,6,1,16,1,6,1,16,1,8,2,16,1,8,1,16,1,8,2,6,1,8,1,6,1,16,1,6,6,8,1,16,3,8,1,13,1,6,3,16,2,8,2,6,5,8,2,6,3,7,1,6,1,8,1,13,3,6,2,8,1,6,1,14,1,1,48,}, + {1,559,16,1,8,1,6,4,8,1,13,1,6,1,8,1,6,2,8,1,16,11,14,2,16,1,6,1,28,11,16,1,8,1,6,2,16,2,6,1,16,1,6,1,8,1,13,1,6,10,8,1,14,1,6,2,16,14,8,1,16,6,8,1,16,3,8,3,16,1,8,4,16,1,6,1,16,1,8,1,6,1,16,2,6,4,8,1,16,1,8,1,6,2,13,1,16,2,6,3,8,1,6,3,8,1,6,5,13,1,6,1,8,1,16,1,6,5,8,2,6,2,1,49,}, + {1,559,6,6,14,1,6,1,13,1,7,1,6,1,8,2,16,11,14,2,16,1,11,1,16,1,28,11,7,1,16,1,6,1,7,1,8,1,16,2,8,1,6,12,16,2,6,1,16,1,8,1,16,9,8,1,16,2,8,1,6,1,8,1,16,3,8,1,16,1,8,1,16,2,8,2,16,1,8,5,6,1,8,1,16,1,8,1,6,1,8,1,6,1,16,1,7,1,6,1,13,1,16,1,14,1,8,1,6,4,8,1,6,1,14,1,6,3,8,1,6,5,7,1,6,4,8,1,16,1,8,1,6,3,8,1,6,1,8,1,6,1,11,1,1,49,}, + {1,558,9,1,8,1,6,5,8,1,6,1,8,1,6,3,8,1,16,11,14,1,16,3,11,1,28,13,16,1,6,2,8,1,16,1,8,3,7,1,6,8,8,1,14,1,6,1,8,1,16,15,8,1,16,4,8,3,16,3,8,1,16,1,8,5,16,1,8,1,6,1,8,1,6,1,8,1,6,1,16,1,8,2,14,1,16,1,6,7,8,1,16,2,6,1,8,1,6,3,8,1,6,2,8,1,6,3,16,1,6,1,8,2,6,3,8,1,6,2,8,1,11,1,1,49,}, + {1,558,6,3,13,1,16,1,6,1,30,1,6,2,8,1,6,1,8,1,6,2,8,1,16,10,14,1,16,5,28,13,16,1,6,3,8,1,16,1,6,2,8,1,6,7,16,2,6,1,16,13,8,1,16,1,8,1,16,3,8,1,16,4,6,2,14,1,16,1,8,3,16,2,8,1,16,1,8,1,16,1,8,1,6,1,8,2,6,2,16,1,6,11,16,1,8,1,6,1,8,2,16,4,6,3,16,1,6,2,16,1,8,1,6,1,8,3,6,1,8,1,6,1,1,50,}, + {1,557,16,1,7,1,6,3,13,1,6,1,28,1,13,1,8,1,13,1,8,2,6,2,8,1,16,10,14,1,16,1,14,2,16,1,8,1,28,13,16,3,6,2,8,1,16,2,8,1,6,2,8,1,6,3,8,1,14,1,8,1,16,15,8,1,16,3,8,1,16,6,6,1,16,3,8,1,16,1,8,2,16,2,8,1,16,1,8,1,6,1,8,1,6,1,8,1,14,1,8,2,6,9,14,1,6,3,16,2,7,1,8,1,6,1,16,1,6,2,16,1,6,3,16,1,8,1,6,2,8,1,6,1,8,1,16,1,14,1,1,50,}, + {1,557,6,1,8,1,6,3,30,1,6,1,28,1,6,1,13,1,6,1,8,1,7,1,6,1,13,1,7,1,8,1,16,9,14,2,16,1,14,2,28,15,11,1,28,1,16,1,8,1,6,2,8,1,16,2,8,1,6,2,8,2,16,2,6,1,16,18,8,1,16,5,8,1,16,1,6,1,16,1,8,2,6,1,16,3,8,5,16,1,8,1,6,2,14,1,6,1,8,1,6,2,13,1,6,6,14,1,6,2,16,1,8,1,6,4,16,1,6,1,8,1,16,1,6,2,8,1,16,1,6,1,8,2,6,2,13,1,8,1,14,1,1,50,}, + {1,556,16,1,7,1,6,5,30,1,28,1,6,1,8,1,6,1,8,2,6,3,8,1,16,10,14,1,16,1,14,2,28,18,29,1,16,1,6,2,7,1,8,1,14,1,16,1,8,3,16,2,8,1,16,17,8,1,16,6,8,1,16,1,6,1,16,10,8,3,6,1,8,1,16,2,8,1,6,1,8,1,6,8,14,1,8,2,16,1,6,1,7,1,8,1,6,2,8,1,16,2,6,2,8,1,6,1,16,1,6,1,8,2,6,4,1,51,}, + {1,556,7,1,6,6,30,1,28,2,8,1,6,1,8,2,13,1,6,2,8,1,16,10,14,4,8,1,28,19,9,2,6,3,16,1,14,1,16,3,8,1,16,16,8,2,16,9,8,1,16,2,8,1,16,5,8,3,16,1,8,2,6,1,16,1,8,4,6,6,13,1,6,1,16,1,6,1,14,1,6,1,8,1,6,1,8,2,6,1,8,2,16,1,6,4,16,1,8,1,6,1,8,1,6,2,8,1,16,1,1,51,}, + {1,555,9,1,7,1,6,3,16,1,13,1,30,3,28,1,13,1,6,1,8,3,6,2,8,2,16,9,14,1,16,1,14,3,28,21,16,1,6,1,28,1,6,2,16,3,8,1,16,15,8,1,16,11,6,1,16,5,8,1,16,5,8,4,14,1,6,2,8,3,13,1,6,6,16,2,6,1,8,1,7,1,8,1,7,1,8,3,16,1,6,2,8,1,6,2,16,1,8,1,6,1,8,1,6,2,7,1,1,52,}, + {1,554,11,1,8,1,6,6,30,2,28,2,6,1,8,1,6,1,8,2,6,1,13,1,8,2,16,11,14,1,16,1,14,1,16,1,28,21,6,1,8,1,6,3,8,2,16,1,8,1,16,25,8,3,14,1,16,11,8,2,16,1,8,1,6,2,8,2,6,1,8,1,6,5,14,1,6,1,8,3,6,1,8,2,6,2,16,1,6,1,7,1,8,1,6,1,8,3,6,1,16,1,6,1,7,1,8,1,1,52,}, + {1,554,6,3,13,1,8,1,6,3,30,1,28,3,6,1,13,1,6,1,8,2,6,3,8,2,16,9,14,1,16,2,14,2,28,21,16,1,11,1,16,2,8,2,16,29,6,1,14,1,16,1,8,1,16,6,8,2,16,2,6,1,16,2,6,1,8,2,6,2,8,1,6,2,8,1,6,2,8,1,14,1,6,3,8,2,6,3,8,1,16,1,6,1,8,1,13,1,6,1,16,1,6,1,8,1,6,1,8,1,6,1,8,1,11,1,1,52,}, + {1,553,16,1,8,1,6,6,30,1,28,4,30,1,8,4,6,3,7,1,8,1,16,9,14,1,16,3,14,1,16,1,28,20,1,2,28,2,6,1,16,1,6,1,8,1,16,13,8,1,16,13,6,1,14,1,8,1,16,11,6,1,14,1,8,3,6,1,8,1,6,2,8,2,13,1,8,1,6,1,16,2,6,2,8,1,6,1,8,3,6,1,14,1,6,2,7,1,8,1,6,1,16,1,8,2,6,1,13,1,7,1,6,1,1,53,}, + {1,552,11,1,9,1,6,6,30,2,28,5,16,2,6,1,8,2,6,2,8,2,16,10,14,1,16,3,14,1,8,1,28,18,1,1,11,1,1,1,28,4,8,1,16,13,7,1,16,26,8,1,16,1,8,1,16,1,8,4,7,1,6,7,14,1,8,1,6,2,7,1,8,4,6,1,14,1,6,5,8,2,6,2,7,2,16,1,1,53,}, + {1,552,16,1,8,1,6,1,13,1,6,2,13,1,6,1,28,1,30,1,28,5,13,1,8,1,6,1,8,2,6,3,8,2,16,8,8,1,14,1,16,1,14,1,16,2,14,1,28,17,17,1,11,2,16,1,28,6,8,1,16,3,8,1,16,7,8,1,16,13,8,1,16,2,8,1,16,10,8,1,16,1,8,8,7,1,6,2,7,1,6,1,14,1,6,2,8,1,7,1,6,2,8,1,7,1,8,1,16,1,6,4,16,1,6,1,16,1,6,1,8,1,6,2,1,54,}, + {1,551,9,1,8,1,6,2,13,1,6,1,8,1,13,2,30,1,28,6,16,1,6,1,8,1,6,1,16,1,7,1,6,3,8,1,16,10,14,1,16,1,14,3,28,16,7,1,1,1,11,1,8,1,28,9,6,1,16,1,8,1,16,21,8,1,16,2,8,1,16,9,8,1,6,1,14,1,8,2,6,1,8,1,16,1,6,1,8,2,6,1,8,1,6,2,8,1,14,1,6,2,8,3,6,1,8,1,6,1,16,1,8,1,6,1,8,1,6,2,16,1,6,1,16,1,6,1,7,1,16,1,11,1,1,54,}, + {1,551,6,9,29,1,28,6,16,1,13,1,8,1,6,1,8,2,6,2,8,2,16,10,14,1,16,1,14,1,16,1,14,1,6,1,28,9,6,1,28,5,1,1,11,1,28,12,16,2,8,1,16,3,8,1,16,16,8,1,16,13,6,1,16,1,8,9,6,1,7,1,6,1,16,2,6,1,8,6,6,1,14,1,6,1,7,1,8,1,6,1,7,1,8,1,7,1,8,1,6,1,16,2,1,55,}, + {1,550,8,1,7,1,6,2,13,1,6,2,30,1,28,1,30,1,29,1,28,6,14,1,6,1,8,1,6,2,16,1,8,1,6,2,8,2,16,13,14,1,16,1,28,9,16,1,28,4,1,1,11,1,28,12,8,1,1,1,11,2,28,1,9,1,16,3,8,1,16,14,8,1,14,1,16,11,8,1,16,2,8,1,16,1,8,3,6,1,8,2,6,1,8,1,7,1,6,1,14,1,7,1,6,1,7,1,8,4,6,1,8,1,16,1,6,1,8,1,6,2,16,1,6,1,8,1,6,1,7,1,16,1,11,1,1,55,}, + {1,549,9,1,8,1,6,4,30,1,6,2,28,2,29,1,28,6,14,1,8,1,6,1,8,1,6,1,8,1,7,1,6,2,8,2,16,9,8,1,14,1,16,1,14,1,16,1,14,1,6,1,28,8,1,1,28,3,1,1,16,1,28,13,1,1,11,2,1,1,28,3,8,1,16,3,8,2,16,12,14,1,8,1,16,10,6,1,14,1,8,1,16,1,8,1,16,1,8,6,6,1,8,1,6,1,14,1,6,1,8,2,6,1,8,3,6,1,14,1,6,2,8,1,6,2,16,1,6,1,8,1,6,1,16,1,6,1,1,56,}, + {1,548,14,1,7,1,6,8,28,9,16,1,14,1,6,1,8,4,6,4,8,1,16,9,8,1,14,1,16,1,14,1,16,1,14,1,6,1,28,6,6,1,11,1,14,1,9,1,1,1,8,1,28,13,1,1,11,4,28,5,6,1,16,3,8,2,6,1,8,1,16,6,8,1,16,1,14,1,16,10,8,2,14,1,6,1,8,1,16,1,8,8,6,1,16,1,14,1,6,1,8,5,6,2,14,1,6,1,8,1,6,2,8,2,6,1,16,1,8,1,16,1,1,57,}, + {1,548,16,1,8,1,6,6,30,2,28,1,30,1,28,7,16,1,14,1,6,1,8,2,6,1,16,1,8,1,6,3,7,1,16,9,8,1,16,1,14,1,16,3,14,1,28,6,16,1,11,1,14,1,1,1,9,1,28,13,1,1,11,1,14,1,11,2,16,1,28,8,8,1,16,2,8,1,16,1,6,2,8,1,16,4,8,1,16,11,8,1,16,2,8,1,16,1,8,3,16,1,8,2,6,2,8,1,6,1,16,2,6,1,8,5,6,1,8,1,16,1,6,1,7,1,6,2,16,1,6,2,8,1,6,1,14,1,1,57,}, + {1,547,6,1,8,1,6,7,30,1,28,2,30,1,28,7,16,2,14,1,6,1,8,1,6,1,8,1,16,1,8,1,6,1,8,2,7,1,16,10,14,2,16,2,14,2,28,5,16,1,11,2,16,1,28,13,1,1,11,3,14,1,1,1,7,1,28,9,16,2,8,2,16,3,6,3,16,13,6,1,14,1,16,1,8,1,16,1,8,2,16,2,8,5,6,1,14,1,6,1,8,2,6,1,8,3,6,1,14,1,6,4,8,1,16,1,6,1,7,1,8,1,11,1,1,58,}, + {1,546,11,1,8,1,6,4,30,1,6,2,30,1,28,2,30,1,28,8,16,2,14,1,6,1,7,1,8,1,6,1,16,1,8,1,6,2,8,3,16,10,14,1,16,4,14,1,28,3,6,1,9,1,11,2,28,13,1,1,11,2,14,3,1,1,6,1,28,8,6,1,11,3,14,1,16,3,8,1,16,1,6,4,16,10,6,1,16,1,8,1,16,1,8,1,16,1,8,1,16,1,8,6,6,1,14,1,6,1,8,3,16,1,8,1,6,1,7,1,14,1,6,4,8,1,6,2,8,1,11,1,1,59,}, + {1,546,8,2,6,5,13,1,30,1,6,2,30,1,28,9,16,2,14,1,16,1,6,1,8,1,6,1,8,3,6,2,8,3,16,8,8,1,16,1,14,1,16,2,14,1,16,1,14,1,6,1,28,1,14,1,11,1,1,1,28,13,1,1,11,2,14,4,1,1,28,9,1,1,11,4,6,1,28,1,8,1,16,3,8,1,6,4,16,11,8,1,16,1,8,1,16,1,8,5,16,1,8,1,16,1,14,1,8,6,6,1,16,1,8,1,6,1,8,1,13,1,8,1,6,2,8,1,11,1,1,60,}, + {1,545,16,1,8,1,6,2,13,1,6,1,30,1,6,1,16,1,13,2,30,1,28,10,8,1,16,1,14,2,6,1,7,1,8,1,6,1,16,1,8,1,6,1,7,1,6,1,8,2,16,9,8,1,16,1,14,2,16,3,14,3,11,1,7,1,28,12,1,1,11,1,14,2,11,1,14,1,11,2,1,1,28,8,1,1,11,2,1,1,28,5,17,1,28,3,8,2,16,1,8,1,6,2,28,1,6,2,16,9,8,1,16,3,8,2,16,1,6,1,14,1,16,1,6,1,8,5,6,1,14,1,6,1,8,2,6,2,8,2,11,1,1,61,}, + {1,544,16,2,6,8,30,1,28,2,29,1,28,9,8,1,16,2,14,1,16,1,6,1,14,1,6,1,8,1,16,1,6,3,8,2,16,12,14,3,16,2,14,2,28,13,16,1,11,2,14,1,11,1,14,3,11,2,28,7,17,1,11,2,1,1,28,6,6,1,28,7,8,1,16,2,8,1,6,1,28,2,6,2,8,1,16,8,8,1,16,2,8,1,14,1,8,2,16,1,8,4,16,2,6,1,8,1,6,2,16,2,17,1,1,62,}, + {1,543,17,1,6,9,30,1,28,1,6,1,29,1,28,10,8,1,16,3,14,1,8,3,6,1,16,2,6,1,8,5,16,10,14,3,16,2,14,1,16,1,28,13,1,1,11,2,14,1,11,2,14,3,1,1,28,6,9,1,11,2,1,1,28,18,6,1,8,1,16,3,7,1,6,1,28,1,6,2,8,1,16,9,8,2,16,2,8,2,7,1,8,1,6,2,7,1,8,1,16,1,6,1,1,64,}, + {1,543,9,1,6,9,28,1,30,3,28,10,6,1,16,2,14,1,16,1,14,1,6,1,16,1,6,1,8,1,16,1,8,1,6,2,8,3,16,12,14,1,16,4,28,13,1,1,11,1,14,1,11,4,14,2,11,1,6,1,28,4,29,1,1,1,11,1,1,1,28,25,8,1,16,2,8,1,6,5,8,4,6,1,8,5,7,1,6,1,7,1,8,1,16,1,8,2,11,1,1,65,}, + {1,542,16,1,6,5,8,1,6,3,30,1,28,3,29,1,28,10,6,1,16,2,14,1,16,1,14,1,16,1,6,1,16,1,6,1,16,2,6,2,8,2,16,12,8,1,14,2,16,3,14,1,28,11,16,1,11,1,14,2,11,8,28,4,1,1,11,1,1,1,28,31,16,1,8,2,16,4,8,3,16,6,8,2,16,1,1,68,}, + {1,541,11,1,6,5,8,1,13,1,6,3,28,1,30,1,28,2,29,1,28,10,30,1,16,5,1,1,6,1,8,2,6,1,16,2,6,1,8,1,16,1,8,2,16,11,8,1,16,1,14,1,16,3,14,1,28,10,16,1,14,2,11,8,1,1,8,1,28,1,9,1,1,1,11,1,1,1,6,1,28,21,9,1,28,8,16,1,28,14,6,1,1,72,}, + {1,541,9,1,13,1,6,9,28,4,29,1,28,11,16,2,14,1,16,2,11,1,14,1,28,1,16,1,8,1,6,1,16,1,6,2,16,1,8,3,16,11,8,1,16,1,14,1,16,3,14,1,6,1,28,8,16,1,14,4,11,6,14,1,11,1,1,1,11,3,16,1,28,21,6,1,9,1,28,7,6,1,16,1,28,13,8,1,11,1,1,72,}, + {1,540,16,1,8,1,6,7,13,1,6,2,28,1,6,1,28,1,30,1,28,12,14,1,16,1,14,1,16,2,14,1,1,1,8,1,6,1,16,1,6,2,14,1,6,2,16,1,8,2,16,14,14,2,16,2,14,1,16,1,6,1,28,5,6,1,14,8,11,5,14,1,11,2,1,1,28,21,16,2,6,1,28,7,14,1,8,1,28,12,9,1,6,1,1,73,}, + {1,539,16,1,7,1,6,3,13,1,6,6,30,1,28,1,13,2,28,13,16,3,14,1,16,1,14,1,1,1,14,1,6,1,8,1,16,1,6,2,14,1,6,2,16,2,8,1,16,15,14,1,16,3,14,2,16,1,8,2,16,1,14,1,16,3,14,11,11,1,1,1,28,12,7,1,28,8,16,3,6,1,28,6,14,1,16,1,6,1,28,5,29,1,28,4,6,1,16,1,8,1,14,1,1,73,}, + {1,539,8,2,6,5,13,1,6,2,13,1,6,1,30,1,28,1,30,1,28,14,8,1,16,2,14,1,16,1,14,1,1,1,11,1,29,1,6,1,16,2,6,1,8,1,14,1,6,2,16,4,8,1,16,12,14,2,16,16,14,5,16,1,14,1,11,1,6,1,28,12,16,1,28,7,6,1,16,3,28,6,14,1,16,2,28,5,29,1,6,1,28,4,16,1,7,1,8,1,11,1,1,73,}, + {1,538,16,2,8,2,6,1,13,1,6,2,13,1,6,1,30,1,6,1,30,2,28,16,6,1,16,5,11,2,14,1,28,1,8,2,16,1,6,1,7,1,14,1,6,2,16,18,14,2,16,20,14,1,16,1,28,13,8,1,28,7,14,1,16,3,9,1,28,4,14,1,16,3,28,5,14,1,6,1,28,3,14,1,8,1,6,2,1,74,}, + {1,538,8,1,13,1,6,7,30,1,6,2,30,2,28,17,16,3,14,1,16,1,11,1,14,1,1,1,6,2,9,1,8,1,16,1,8,1,16,2,8,1,6,1,16,19,14,1,16,21,28,13,14,1,8,1,28,4,8,1,14,1,16,3,14,1,11,1,28,2,6,1,16,4,14,1,28,4,14,1,16,2,28,2,16,1,8,1,6,1,8,1,14,1,1,74,}, + {1,537,7,1,8,1,6,9,30,1,6,1,30,2,28,17,16,3,14,1,16,1,11,2,16,1,7,1,28,1,6,1,8,1,16,2,6,1,16,2,8,1,6,1,16,11,8,1,16,8,14,1,16,18,14,1,28,12,16,3,6,1,28,1,16,6,14,1,16,10,8,1,28,2,14,1,16,5,8,1,7,1,6,1,9,1,1,75,}, + {1,536,11,1,8,1,6,8,13,1,30,1,28,1,6,1,30,3,28,16,16,1,14,1,16,2,14,1,16,1,1,1,14,2,28,2,6,1,16,3,6,1,8,1,16,1,8,1,6,1,16,40,6,1,28,10,14,1,8,1,16,8,14,1,16,1,8,1,16,9,14,3,16,4,8,3,6,1,7,1,16,1,1,75,}, + {1,536,16,1,6,4,13,1,6,3,13,1,6,1,30,1,13,1,6,1,30,1,28,18,6,1,14,1,16,4,1,3,6,1,28,1,30,1,28,1,16,3,6,2,16,2,6,1,16,40,7,1,28,8,6,1,16,8,14,2,16,20,8,2,6,1,16,2,1,75,}, + {1,535,16,1,8,1,6,3,13,1,8,1,6,5,28,1,13,1,6,1,30,1,28,19,16,3,14,1,9,1,11,1,1,1,14,2,28,2,6,1,29,1,16,3,6,2,16,2,6,1,16,26,14,1,16,15,8,1,6,4,16,8,14,2,16,1,8,1,16,19,8,3,6,1,7,1,1,76,}, + {1,535,7,1,6,3,8,1,6,5,8,1,13,1,6,2,28,1,30,1,28,19,8,1,16,5,1,1,14,2,6,1,28,4,16,3,8,1,6,1,16,27,14,1,16,1,14,4,16,1,8,3,16,8,14,1,8,1,16,5,8,2,16,1,14,2,16,1,8,1,16,12,8,1,16,8,8,4,14,1,1,76,}, + {1,534,8,1,6,4,13,1,6,5,13,1,16,1,6,1,30,3,28,20,14,1,16,1,14,2,9,1,11,2,16,1,14,1,28,5,9,1,16,3,6,1,8,1,16,32,14,3,16,3,8,2,16,1,8,2,6,4,7,1,8,1,16,28,8,3,6,1,8,1,1,77,}, + {1,533,11,1,6,4,13,1,6,10,28,22,8,1,14,1,16,4,11,1,14,1,16,1,13,1,28,5,9,1,16,1,8,1,16,1,8,1,6,1,16,33,14,1,16,2,14,1,16,7,8,1,16,30,8,3,6,1,8,2,1,77,}, + {1,533,29,1,6,1,8,2,13,1,6,3,13,1,6,5,30,1,28,24,14,1,16,2,14,1,16,1,11,1,1,1,16,1,14,1,28,6,8,1,16,1,8,1,16,2,8,1,16,75,8,1,6,2,8,1,14,1,1,77,}, + {1,532,9,1,8,3,6,11,30,1,28,24,16,1,14,1,16,1,14,1,16,1,14,1,11,2,14,1,16,1,28,6,6,1,14,1,8,2,16,2,6,1,16,71,8,3,6,1,9,1,14,1,1,78,}, + {1,532,6,6,16,1,13,1,6,1,13,1,6,3,30,1,6,1,30,2,28,24,14,1,16,2,14,1,16,1,11,2,14,2,16,1,29,1,30,1,28,4,30,1,16,1,8,2,16,2,8,1,16,69,8,3,6,3,1,79,}, + {1,531,16,1,8,1,6,12,30,1,28,27,8,1,14,1,16,1,14,1,16,2,1,1,11,2,14,1,16,1,28,1,30,1,28,5,8,1,16,1,8,1,16,70,8,3,6,2,16,1,1,80,}, + {1,531,6,4,13,1,6,8,28,1,30,1,28,1,30,2,28,25,14,1,16,3,8,1,11,1,1,1,11,2,16,1,6,1,28,1,6,1,30,1,28,4,6,1,16,1,8,2,16,64,8,2,16,1,8,3,7,1,6,1,16,1,8,1,1,80,}, + {1,530,16,3,8,1,6,9,28,2,13,1,6,1,28,1,30,1,28,25,6,1,14,1,16,3,9,1,11,4,14,1,6,1,28,1,6,1,28,6,8,1,16,66,8,5,6,1,16,1,14,1,1,81,}, + {1,530,8,1,16,1,8,1,6,8,13,1,28,3,13,1,30,4,28,25,8,1,16,5,1,1,11,1,14,3,6,1,7,1,28,7,6,1,16,1,14,1,8,1,16,60,8,4,6,2,8,3,16,1,1,81,}, + {1,529,16,2,6,10,30,1,28,1,30,2,28,31,8,1,16,3,8,1,14,1,1,1,11,2,14,2,16,1,8,1,28,8,9,1,14,1,8,1,16,58,8,4,6,3,8,1,9,1,11,1,1,82,}, + {1,529,8,1,6,11,28,1,13,1,30,1,28,33,16,4,8,1,1,1,11,1,14,1,11,1,16,1,6,1,28,1,8,1,28,2,6,1,28,5,30,1,16,1,8,1,16,53,8,4,6,1,8,4,7,1,16,1,8,1,11,1,1,83,}, + {1,528,16,1,8,1,6,10,28,1,30,2,28,34,6,1,16,2,14,1,16,1,8,1,1,1,11,3,14,1,7,1,28,1,8,1,13,1,14,1,28,7,6,1,16,2,8,2,16,2,8,1,16,11,8,1,16,32,8,2,6,3,8,2,7,1,8,1,7,1,8,1,16,1,14,2,1,84,}, + {1,528,6,3,8,1,6,8,28,1,30,1,28,36,16,3,14,1,16,2,1,1,14,1,11,2,14,1,16,1,28,1,8,1,28,1,13,1,28,8,8,1,16,2,14,1,8,1,16,12,8,1,16,1,6,2,16,24,8,3,6,2,8,1,6,4,8,5,16,1,7,1,1,86,}, + {1,527,16,1,8,1,6,1,16,1,13,1,6,7,28,1,30,2,28,33,30,1,28,3,16,3,14,1,8,1,16,1,1,1,14,1,11,2,14,1,16,1,11,1,7,1,6,1,30,1,6,1,28,8,6,1,9,1,16,17,6,3,8,3,16,16,6,9,8,2,16,1,8,1,6,1,8,1,16,2,11,1,1,87,}, + {1,527,6,1,8,1,16,1,6,9,28,1,30,1,28,34,13,1,28,3,6,1,16,3,14,1,7,1,14,1,11,1,14,2,11,1,14,1,11,1,16,1,9,1,8,1,28,1,29,1,13,1,29,1,28,3,29,1,28,3,6,1,9,1,16,1,8,1,16,1,8,1,16,14,6,12,8,1,6,10,13,1,8,2,16,2,8,2,6,1,8,1,14,1,6,1,9,1,1,89,}, + {1,526,11,1,8,1,16,1,6,9,30,1,28,1,30,1,28,39,16,5,7,1,14,1,11,1,16,1,11,1,14,1,11,1,14,1,16,3,6,1,28,1,6,1,13,1,29,1,28,7,6,1,9,1,16,20,8,2,6,11,13,1,8,1,16,1,8,1,16,4,8,2,6,1,8,1,16,1,6,1,9,1,11,1,1,91,}, + {1,355,13,9,1,162,9,1,16,1,6,10,28,2,30,1,28,40,16,4,14,1,8,1,16,1,11,1,14,1,11,1,14,1,11,1,14,2,16,2,8,1,28,2,6,3,28,8,6,1,16,2,8,3,16,9,8,1,16,12,14,1,16,4,14,1,16,1,8,1,6,1,8,1,6,2,8,1,9,1,8,1,9,2,1,94,}, + {1,343,7,1,8,2,16,1,28,23,9,2,13,2,6,1,1,150,11,1,16,1,8,1,6,1,8,1,6,8,28,1,30,1,13,1,6,1,30,1,28,39,16,5,8,1,16,1,1,1,14,1,16,1,14,1,11,1,14,1,16,1,14,3,8,1,28,3,6,1,13,2,28,8,6,1,8,5,16,7,8,1,6,7,7,1,6,11,14,1,16,1,14,1,7,1,11,1,8,1,1,97,}, + {1,336,13,2,9,1,28,41,9,2,8,1,14,1,1,141,8,1,16,1,8,1,16,1,6,8,28,1,30,1,28,1,30,3,28,40,16,4,14,1,8,2,1,1,11,1,16,1,11,2,16,1,9,1,16,2,8,1,16,1,8,3,28,5,29,1,28,1,30,1,29,1,6,1,28,2,6,2,8,1,6,1,8,1,6,2,8,2,16,8,8,1,16,2,8,2,16,4,14,2,16,1,8,1,16,1,11,1,8,1,1,101,}, + {1,331,13,2,28,35,30,1,28,18,9,2,13,1,14,1,1,134,16,1,6,2,8,1,6,7,30,4,28,44,6,1,16,3,14,1,16,1,6,1,14,1,11,1,16,1,14,1,11,1,14,2,16,3,9,1,7,1,6,2,8,1,6,2,28,3,29,1,28,2,14,1,9,1,8,1,6,1,16,1,8,1,16,1,14,1,16,1,7,1,6,8,7,1,16,1,7,1,6,1,8,3,6,1,30,1,28,5,1,104,}, + {1,326,14,1,13,1,28,39,30,2,28,25,9,2,13,1,14,1,1,126,14,1,8,1,6,3,8,3,6,4,28,1,29,1,13,1,28,46,6,1,16,5,8,1,16,1,11,1,14,1,16,1,14,2,16,1,6,1,16,1,14,1,16,1,9,1,16,9,8,1,14,1,6,1,8,2,16,1,14,1,1,1,14,4,16,11,8,1,28,7,30,2,1,104,}, + {1,323,8,2,28,33,29,1,28,3,30,1,28,3,30,2,28,33,8,1,14,2,1,120,6,2,13,1,6,2,8,1,6,1,8,1,13,1,6,4,28,1,30,1,13,1,30,1,28,45,6,1,16,8,14,3,16,2,14,1,16,8,9,1,8,1,16,3,8,1,16,2,14,1,1,1,14,2,16,3,8,1,16,1,14,2,16,1,14,1,16,6,28,8,30,2,1,104,}, + {1,320,13,1,28,20,30,2,28,6,29,1,28,14,30,1,28,1,13,1,28,36,30,2,14,1,16,1,1,116,16,3,6,10,30,2,28,49,6,1,16,9,14,1,16,1,14,1,16,15,14,1,11,1,14,1,16,3,9,1,8,2,14,2,16,5,14,1,16,2,8,1,28,9,6,1,28,1,1,104,}, + {1,317,14,1,13,1,28,21,13,1,30,1,28,55,30,2,28,1,13,1,28,6,30,1,14,1,8,1,1,113,6,3,8,1,6,2,13,1,6,5,30,4,28,50,16,5,14,2,16,1,8,2,16,1,14,5,16,1,9,1,8,1,1,1,14,4,11,1,14,1,16,2,8,1,9,1,8,1,9,1,16,1,14,2,16,9,6,1,28,10,30,1,28,1,1,104,}, + {1,315,13,1,29,1,28,21,30,1,14,1,13,1,28,11,30,1,28,10,30,1,13,1,30,1,28,6,29,1,30,4,28,2,30,4,28,8,30,2,28,18,16,1,14,1,1,109,14,1,8,1,7,1,6,1,8,2,6,2,13,1,6,1,13,1,6,3,30,1,28,53,6,1,16,1,14,2,16,3,14,2,8,2,16,1,8,1,16,3,14,5,16,3,8,1,16,5,14,2,16,9,6,1,8,1,28,11,30,1,28,1,1,104,}, + {1,313,8,1,28,22,13,1,30,3,28,13,30,2,28,6,30,1,13,2,28,50,9,1,1,107,8,2,6,6,13,1,6,5,30,1,28,55,6,1,8,1,16,4,14,3,16,2,8,2,16,1,8,4,16,1,8,1,16,3,14,5,16,1,14,3,16,4,8,2,7,1,6,1,28,11,29,1,30,1,8,1,1,104,}, + {1,310,14,1,13,1,28,20,30,1,13,2,30,1,28,24,13,2,28,54,9,1,14,1,1,104,6,1,28,1,16,1,6,9,13,1,6,2,30,1,29,1,28,56,8,1,16,6,14,2,16,1,14,11,16,1,14,3,16,7,8,3,6,1,28,13,30,1,14,1,1,104,}, + {1,308,14,1,29,1,28,19,13,1,30,1,28,30,30,1,28,56,30,1,8,1,1,101,16,1,8,2,16,1,6,4,8,1,13,1,8,1,6,2,30,3,28,1,30,1,28,58,8,1,16,8,14,4,16,2,14,3,16,1,14,1,16,5,14,1,16,1,8,5,6,1,28,14,6,1,14,1,1,104,}, + {1,306,13,1,28,10,29,1,28,9,30,2,28,10,13,1,30,1,28,80,9,1,1,98,14,1,6,1,8,1,6,6,28,1,6,2,30,1,6,1,30,2,28,63,6,1,8,1,16,10,14,2,16,2,14,2,16,7,8,1,16,2,6,1,28,14,29,1,28,1,13,1,14,1,1,104,}, + {1,304,13,1,30,1,28,32,30,1,28,23,30,1,28,22,30,2,28,26,30,6,28,5,8,1,1,94,14,1,28,1,8,1,6,2,30,1,13,1,6,3,30,2,6,2,30,2,28,4,13,1,28,62,6,1,8,1,16,20,6,1,28,17,29,2,13,1,16,1,1,104,}, + {1,302,14,1,28,13,29,1,28,44,30,2,28,21,30,1,13,2,28,24,30,1,13,3,28,11,30,1,8,1,1,90,14,1,28,1,30,1,6,2,13,1,6,1,13,1,6,3,30,1,6,2,30,3,28,71,6,1,8,1,16,12,9,1,6,1,28,21,30,1,13,1,16,1,1,104,}, + {1,300,14,1,29,1,28,21,30,1,28,19,29,1,28,12,30,1,28,2,30,1,13,2,28,22,13,2,28,26,30,1,28,16,30,1,14,1,1,87,28,2,6,1,13,1,8,1,6,4,8,1,30,1,6,2,30,1,6,1,28,3,30,2,28,7,30,1,28,67,6,3,28,1,6,2,28,24,30,1,13,1,9,1,1,104,}, + {1,298,14,1,28,22,13,2,28,21,30,1,28,11,30,1,28,2,30,2,28,21,30,1,13,1,30,1,28,24,30,1,9,1,13,1,28,20,14,2,1,83,30,1,28,2,6,2,8,2,6,1,30,1,6,1,28,1,8,1,6,1,30,1,28,4,6,1,30,1,28,10,29,1,28,95,30,1,8,2,1,104,}, + {1,297,9,1,28,7,30,1,28,14,9,1,30,1,28,21,29,1,28,27,29,1,30,2,13,3,14,5,16,1,13,1,28,25,29,1,28,25,13,1,1,79,14,1,30,1,28,2,30,1,6,3,16,1,6,1,28,1,8,1,6,2,28,1,13,3,6,2,28,106,30,1,28,1,30,1,8,1,14,1,1,104,}, + {1,295,13,1,28,23,13,1,28,59,6,1,13,2,30,1,28,26,30,1,28,27,9,1,14,1,1,73,14,1,9,1,28,6,13,1,8,1,6,2,16,1,6,1,30,1,6,2,30,2,6,2,30,1,28,109,6,1,7,1,1,105,}, + {1,294,28,113,30,4,28,24,29,1,28,4,9,1,14,1,1,67,8,1,29,1,28,8,30,1,6,1,8,1,6,2,13,1,30,1,6,1,28,1,6,2,28,1,30,1,28,111,6,1,8,1,1,105,}, + {1,292,13,1,28,21,29,1,28,13,30,1,28,13,30,2,28,24,30,1,28,22,30,4,28,10,6,1,13,1,9,1,6,1,13,1,30,1,28,20,30,2,28,1,30,1,28,1,30,1,28,5,30,1,8,1,1,62,13,1,30,1,28,11,30,2,16,1,6,5,28,1,30,1,6,1,30,3,28,110,6,1,8,1,1,105,}, + {1,290,14,1,29,1,28,48,30,1,13,2,28,24,30,2,28,27,29,1,30,1,28,2,30,1,13,2,16,1,14,1,16,1,9,1,13,1,30,1,28,23,13,1,30,1,28,1,30,1,28,2,30,1,28,6,6,1,8,1,1,55,14,1,16,1,28,7,30,1,28,3,30,2,28,3,6,1,8,2,6,4,30,1,6,3,30,1,28,111,6,1,7,1,1,105,}, + {1,289,14,1,28,14,13,1,28,9,14,1,28,23,30,1,13,2,30,1,28,26,30,2,28,29,30,1,13,2,9,2,13,1,28,26,30,1,28,4,30,1,28,9,29,1,28,1,9,1,14,1,1,48,14,1,9,1,30,1,28,1,30,1,28,13,30,2,28,2,30,1,6,1,16,1,6,2,8,1,16,1,13,1,30,5,28,109,30,1,6,1,28,1,1,105,}, + {1,288,28,14,13,2,28,8,13,1,30,1,28,52,30,1,13,1,30,1,28,24,30,1,28,1,30,1,28,35,30,1,13,1,28,18,9,1,14,1,1,41,14,1,8,1,29,1,28,11,13,1,30,1,28,7,30,2,28,2,30,1,8,2,28,1,13,1,6,1,30,1,6,3,28,112,6,1,28,1,1,105,}, + {1,286,14,1,28,15,30,1,28,6,30,1,13,1,30,1,28,14,30,2,28,36,6,1,8,1,16,1,13,1,29,1,28,7,30,3,28,12,6,1,8,1,13,1,28,24,29,1,28,11,30,1,28,1,30,2,28,17,29,1,28,1,29,1,13,1,14,1,1,34,13,1,9,1,28,5,30,2,28,6,30,2,6,1,13,1,30,1,28,5,13,1,28,1,30,2,28,2,6,1,13,1,16,1,6,5,30,2,28,111,30,2,14,1,1,105,}, + {1,285,8,1,28,13,29,1,28,25,30,2,28,35,30,1,14,1,16,1,8,1,6,1,28,16,13,1,30,1,28,3,30,1,13,2,16,1,13,2,30,1,28,25,29,1,28,6,30,1,28,1,30,1,28,2,30,1,28,24,9,1,13,1,1,23,14,1,9,2,8,1,28,17,30,1,13,1,30,3,28,6,6,2,30,1,6,1,30,1,6,1,30,1,28,1,6,1,16,1,8,1,6,4,30,4,28,36,29,1,28,72,30,1,6,1,14,1,1,105,}, + {1,284,28,9,30,2,28,28,30,1,14,1,30,1,28,31,30,1,28,1,13,1,14,2,9,1,13,1,28,19,30,1,6,1,13,1,30,1,13,2,9,1,13,1,30,1,28,25,30,1,28,1,13,1,30,1,28,6,29,1,30,2,28,31,30,1,9,3,8,1,1,1,14,1,13,4,8,1,9,1,8,1,9,1,16,1,29,1,28,4,30,1,29,1,28,14,30,2,28,1,30,1,13,2,6,1,28,5,30,1,28,3,14,1,28,1,30,1,6,4,28,1,30,1,6,1,14,1,6,6,13,1,6,1,28,109,30,1,13,1,16,1,1,105,}, + {1,282,14,1,28,7,29,1,28,11,29,1,28,18,13,1,16,2,30,1,28,55,30,2,28,5,30,2,28,27,6,1,28,1,13,1,28,33,30,1,28,12,30,1,29,1,28,13,30,1,28,15,30,3,28,1,30,3,28,6,30,1,28,3,13,1,28,1,6,10,16,1,6,2,16,1,13,2,6,2,13,1,28,108,30,1,13,1,16,1,1,105,}, + {1,281,8,1,28,37,13,1,9,1,13,1,6,1,28,23,30,2,28,33,30,1,28,19,30,1,28,13,30,1,14,1,6,1,28,31,30,3,28,25,30,1,13,1,30,1,28,14,30,1,13,2,30,1,28,5,30,2,28,2,30,1,28,4,30,1,13,1,28,1,6,8,28,1,6,1,16,1,8,1,28,1,30,1,28,1,30,2,6,2,30,1,28,107,30,1,6,1,14,1,1,105,}, + {1,280,29,1,28,34,30,1,13,1,14,1,13,1,30,1,28,26,13,1,30,1,28,11,30,1,28,18,13,1,28,1,30,1,29,1,28,20,30,1,28,13,14,1,30,1,28,44,13,2,28,11,30,3,28,14,6,1,13,1,30,1,6,1,28,5,30,3,28,1,30,1,14,1,30,1,28,3,30,1,13,1,28,1,6,1,16,1,8,1,16,1,6,6,28,1,6,1,16,1,13,1,6,3,28,2,6,2,28,107,30,1,6,1,1,106,}, + {1,278,14,1,28,28,30,2,28,3,13,1,14,2,30,2,28,28,30,1,16,1,28,30,13,1,16,1,13,1,28,22,30,2,28,12,13,1,28,42,30,2,13,1,28,1,30,1,28,9,30,2,28,8,6,1,30,1,28,4,30,1,28,1,30,4,28,3,30,1,6,1,30,1,28,1,30,2,6,1,14,1,13,1,28,4,13,1,28,1,16,1,14,1,28,2,6,5,8,1,6,4,16,1,6,3,28,2,6,1,13,1,28,107,30,1,6,1,1,106,}, + {1,277,14,1,28,29,30,2,28,1,6,1,13,2,28,33,6,1,28,29,6,1,13,1,6,1,30,1,28,22,30,1,28,11,30,1,13,1,30,1,28,36,30,1,13,1,30,1,28,15,30,1,13,1,28,10,9,1,30,1,28,1,30,2,28,9,30,1,28,2,30,1,6,1,30,1,6,1,14,1,6,2,28,2,6,1,8,1,28,1,16,1,6,1,28,1,6,3,8,1,6,2,13,1,6,1,13,1,6,1,28,1,6,1,13,1,16,1,6,4,28,1,8,1,28,106,30,1,28,1,6,1,1,106,}, + {1,276,28,33,30,1,28,1,30,1,28,10,9,1,13,1,28,3,29,1,30,1,28,17,30,2,28,13,30,2,13,1,28,11,6,1,16,1,30,1,28,24,30,1,6,1,28,10,30,1,13,1,30,1,28,33,13,1,14,1,30,1,28,11,30,1,29,1,28,15,30,1,16,1,6,1,28,8,30,1,6,1,28,2,30,2,28,1,30,1,6,3,14,1,6,1,28,2,13,1,14,1,6,1,28,1,13,1,6,1,28,1,6,3,13,1,16,1,6,2,13,1,6,1,13,2,6,4,16,1,6,1,30,1,28,2,13,1,28,4,6,1,28,103,7,1,1,106,}, + {1,275,29,1,28,3,30,1,28,15,13,1,30,1,28,13,30,1,28,10,16,1,13,1,28,5,30,2,28,15,13,1,6,1,30,1,28,13,6,2,13,1,30,1,28,9,6,1,13,1,30,1,28,26,13,1,28,8,30,1,6,1,28,1,30,1,28,23,30,1,28,7,30,1,9,1,14,2,29,1,28,28,30,1,14,1,30,1,28,8,6,1,9,1,28,2,30,4,6,1,28,1,6,1,16,1,8,1,6,2,8,1,16,1,28,2,6,1,16,1,28,1,13,1,6,4,8,1,6,2,8,1,6,1,13,3,6,1,28,1,6,2,16,1,6,1,28,2,30,1,28,107,6,1,16,1,1,106,}, + {1,274,30,1,28,8,30,2,28,9,13,1,28,13,30,2,28,10,13,2,28,8,30,2,13,2,28,10,13,1,16,1,28,16,30,1,28,1,30,1,28,3,30,2,28,2,6,2,16,1,30,1,28,28,30,1,28,3,30,3,28,1,13,1,14,1,28,24,30,2,28,5,30,1,13,3,30,1,28,13,30,1,6,1,13,1,30,1,28,12,30,1,6,1,28,9,6,1,14,1,28,2,30,4,28,1,6,1,8,1,16,1,14,1,6,2,8,1,13,1,28,2,6,1,13,1,8,1,28,1,13,1,6,3,8,2,6,1,13,1,6,1,13,1,6,2,8,1,13,1,6,1,28,1,6,1,13,1,14,1,30,1,28,1,30,1,28,106,30,1,6,1,9,1,1,106,}, + {1,272,14,1,28,8,30,2,28,4,30,1,28,2,13,1,30,1,28,16,6,1,30,1,28,9,13,1,6,1,28,11,30,4,28,6,6,1,16,2,6,1,28,18,6,1,30,1,6,1,13,2,16,3,14,1,16,1,6,1,28,26,13,1,30,3,28,4,30,2,29,1,30,1,28,23,13,2,30,1,28,23,6,1,16,1,14,1,13,1,28,8,13,1,30,1,28,4,30,1,28,8,30,1,16,1,13,1,28,2,30,1,6,4,16,1,8,1,16,1,6,4,28,1,30,1,6,2,13,1,6,2,13,1,6,1,13,1,6,1,16,1,13,1,6,3,8,1,6,1,7,1,6,4,30,1,28,1,6,1,8,1,6,1,30,1,28,107,29,1,8,1,1,106,}, + {1,271,14,1,28,21,30,1,28,24,6,1,16,1,28,15,30,1,6,1,13,1,6,3,13,2,16,1,13,1,28,2,30,2,13,2,28,11,30,1,28,2,30,1,28,3,30,1,13,1,30,2,28,26,30,1,13,2,30,3,28,29,30,1,13,1,14,1,30,1,28,21,30,1,13,3,30,2,28,4,30,1,13,1,30,1,28,7,30,1,28,7,30,1,13,1,14,1,13,1,30,1,28,1,6,4,16,1,13,2,6,1,28,2,6,1,13,1,6,1,28,1,6,1,13,1,6,1,8,1,6,2,13,1,6,3,16,1,6,3,16,1,8,2,16,2,8,1,6,3,28,2,6,1,8,1,6,1,28,107,6,1,1,107,}, + {1,270,14,1,28,13,30,2,28,6,13,1,28,13,6,1,13,1,6,1,28,9,14,1,13,1,28,3,30,1,28,9,29,1,28,5,8,1,16,1,14,1,8,1,30,1,28,5,30,1,13,1,6,1,8,1,6,3,28,4,30,1,13,1,16,1,6,1,28,33,30,1,14,1,16,1,6,2,28,30,30,1,13,3,28,14,30,1,28,6,13,1,9,1,30,1,28,7,29,1,30,1,28,9,30,2,28,5,30,1,13,2,6,2,30,1,28,2,6,2,8,1,16,2,6,1,28,2,13,1,6,1,28,3,13,1,8,1,6,4,13,1,6,1,13,1,6,2,16,1,6,2,14,1,16,1,6,3,16,2,8,1,6,3,30,1,28,1,6,1,8,1,30,1,28,106,29,1,1,107,}, + {1,269,14,1,28,13,30,1,28,7,6,1,13,1,30,1,28,11,13,1,16,1,6,1,28,2,13,3,6,5,28,3,30,1,28,3,30,2,28,3,30,2,28,7,6,1,16,1,6,1,30,1,28,8,30,1,6,1,13,1,14,1,6,3,16,3,9,1,30,1,28,13,30,1,13,2,30,1,28,15,30,1,13,1,16,1,8,1,13,1,28,18,30,2,13,2,30,3,28,5,6,1,13,3,6,1,28,16,30,1,28,3,30,1,29,1,28,8,30,2,28,12,30,1,28,3,30,1,13,1,14,1,13,1,6,1,30,3,28,1,30,2,6,1,8,1,6,2,28,1,6,5,28,1,6,1,8,3,6,2,13,1,6,1,8,1,6,2,16,1,8,1,6,1,14,1,8,1,6,5,16,2,8,1,6,3,30,1,28,2,8,1,6,1,28,104,29,1,28,1,1,107,}, + {1,268,13,1,28,12,13,1,28,8,30,1,6,1,28,3,30,2,28,1,30,2,6,3,8,2,6,1,28,5,30,1,6,2,13,2,8,1,30,3,28,18,30,1,28,1,6,1,30,1,28,12,30,1,6,2,16,2,8,1,13,1,28,16,30,1,13,1,6,1,28,1,30,1,28,1,6,1,30,2,28,8,6,1,13,1,16,1,8,1,6,1,28,20,30,1,28,2,30,4,13,2,9,1,16,1,8,2,6,1,30,1,28,17,30,1,28,13,13,1,30,1,28,12,30,2,28,1,6,1,13,1,30,1,28,6,30,1,28,2,13,1,6,2,28,1,13,1,8,1,6,8,16,1,6,6,8,1,14,1,6,1,14,1,8,1,6,2,8,1,6,4,8,2,6,1,13,1,6,3,28,2,6,2,28,62,29,1,28,40,29,1,16,1,1,107,}, + {1,267,28,12,13,1,30,1,28,7,30,2,28,5,30,2,13,1,6,2,13,2,16,1,13,1,28,4,30,3,28,7,13,1,9,1,16,1,13,1,6,3,28,9,30,1,28,3,13,1,30,1,28,3,30,1,28,2,30,1,28,9,13,1,8,1,6,1,30,1,28,20,13,2,9,1,16,12,8,1,6,1,28,22,6,1,28,11,30,1,28,8,30,1,14,1,30,1,28,3,30,1,6,2,9,1,14,1,30,1,28,12,13,2,28,13,30,1,9,1,6,1,30,1,28,3,30,3,6,1,30,2,28,2,30,1,6,1,28,1,6,1,13,1,6,9,8,1,16,1,6,2,8,1,16,2,14,1,6,1,8,2,6,2,8,1,6,1,13,3,6,2,16,1,6,6,28,2,30,1,13,1,28,102,30,1,16,1,1,107,}, + {1,266,29,1,28,10,30,2,28,6,13,1,6,1,30,2,28,13,6,1,28,2,30,3,28,1,30,8,28,2,6,1,16,1,6,1,30,1,6,1,8,2,13,4,6,1,30,2,28,3,30,1,13,1,16,1,6,1,28,2,30,1,28,15,30,1,28,17,6,1,30,1,28,4,30,1,6,1,13,2,8,2,9,1,8,4,13,1,6,1,30,1,28,20,6,1,13,1,30,1,13,1,28,10,30,1,28,10,30,1,28,2,30,2,13,1,16,1,14,1,8,1,28,13,13,1,16,1,28,14,30,1,6,2,28,1,30,1,28,1,30,3,6,4,13,1,28,4,13,2,6,10,16,1,6,3,8,1,6,6,8,1,6,1,13,1,6,2,13,1,6,1,8,1,14,1,6,3,13,1,6,1,13,1,6,1,30,1,28,2,13,1,30,1,28,100,6,1,7,1,1,107,}, + {1,265,29,1,28,10,30,1,28,5,30,1,13,1,6,1,28,4,30,1,28,2,30,1,28,1,30,1,28,1,30,5,28,2,30,1,28,2,30,1,28,1,30,8,28,1,30,2,28,1,6,1,28,6,8,2,13,2,6,2,13,1,14,1,16,1,14,1,16,1,13,1,6,1,30,1,28,1,30,1,28,4,30,3,28,3,30,1,28,21,8,2,28,38,6,1,14,1,13,1,28,13,30,1,29,1,28,13,30,2,6,1,28,13,6,1,14,1,30,1,28,14,6,1,13,1,28,2,30,2,28,1,6,1,30,1,6,6,8,1,6,2,8,1,6,13,8,1,6,6,13,1,6,1,8,1,6,1,13,2,6,3,14,1,16,1,6,4,16,1,6,2,13,2,28,2,6,2,28,99,30,1,1,108,}, + {1,264,29,1,28,5,30,1,28,3,13,2,28,3,30,4,28,4,30,2,28,1,30,2,29,1,30,8,28,1,6,2,28,1,30,2,28,1,30,1,28,1,30,5,28,1,30,2,28,2,6,1,28,1,30,4,28,2,6,1,28,9,6,2,28,5,30,2,28,1,30,1,28,4,30,1,28,2,30,1,13,1,30,1,28,15,8,1,16,1,6,1,28,37,13,2,9,1,30,1,28,11,30,1,28,1,30,1,28,15,30,1,28,13,30,1,14,1,6,1,28,14,13,2,28,2,30,3,6,1,30,1,6,7,14,1,6,1,8,1,16,1,6,1,13,1,6,7,16,1,6,2,8,1,13,1,6,5,8,1,13,1,6,3,13,1,6,3,16,1,14,1,6,4,8,1,14,1,6,5,30,1,28,2,13,1,28,9,29,1,28,87,29,1,28,1,1,108,}, + {1,262,14,1,30,1,28,4,30,1,13,1,28,2,30,1,13,1,28,3,6,1,13,2,28,7,30,1,28,1,30,12,28,2,30,1,28,1,30,10,28,2,30,1,28,1,30,1,28,2,30,1,28,1,30,1,28,1,30,1,28,1,30,1,6,1,28,2,30,1,28,1,30,2,28,4,30,1,28,1,30,1,28,9,30,1,28,1,30,1,28,2,13,1,6,1,30,1,28,12,6,1,8,1,16,1,8,1,30,1,28,35,6,1,16,1,14,1,6,1,28,13,30,1,13,1,28,15,30,1,28,13,30,1,14,1,13,1,28,14,9,1,8,1,28,2,30,4,6,7,16,2,8,1,6,2,13,1,6,1,13,1,6,5,8,1,16,2,6,1,13,3,6,5,8,1,6,7,16,1,14,1,16,1,6,4,8,1,14,1,8,1,6,3,8,1,6,2,28,2,6,2,28,97,1,108,}, + {1,262,28,5,30,1,28,2,13,1,28,5,30,1,13,1,6,1,28,3,30,2,28,3,6,1,8,2,13,1,30,1,28,6,30,2,28,2,6,2,28,1,30,2,6,1,30,6,28,1,30,1,28,1,30,2,6,1,28,1,30,2,28,1,30,1,28,1,30,1,28,2,6,2,28,5,30,2,6,1,13,2,28,3,30,1,28,5,30,3,28,2,30,2,6,1,30,1,28,8,30,1,6,1,13,1,16,5,28,20,13,1,30,1,28,14,6,1,16,2,6,1,30,1,28,12,6,1,13,1,28,15,13,1,14,1,30,1,28,12,8,1,16,1,30,1,28,13,14,1,13,1,28,1,30,1,6,1,28,2,6,6,13,1,16,1,6,2,16,1,6,4,28,1,6,2,13,1,6,2,16,1,14,1,8,1,6,4,13,1,6,7,8,1,16,3,8,1,16,1,14,1,16,1,6,5,30,1,8,1,16,3,14,1,16,1,6,2,13,1,30,1,28,2,8,1,28,95,16,1,1,108,}, + {1,260,14,1,28,2,30,1,28,2,30,1,28,10,29,1,28,1,6,1,30,4,6,1,16,1,14,1,16,1,6,1,28,1,30,1,13,1,16,1,8,1,16,1,13,1,6,4,13,1,16,1,13,1,6,1,13,1,28,1,6,1,13,1,30,4,28,1,30,5,6,1,28,2,30,1,28,1,30,2,28,3,6,2,13,1,28,1,6,3,28,2,6,1,13,1,6,2,28,1,30,1,28,1,30,1,28,1,30,1,28,2,30,1,28,3,30,1,28,2,30,1,13,1,6,1,13,1,6,1,28,4,8,1,16,7,8,1,28,1,30,3,28,16,6,1,14,1,30,1,28,2,13,2,6,1,28,8,6,1,28,1,13,1,6,1,28,13,30,1,13,1,6,1,28,15,14,1,8,1,30,1,28,10,6,1,16,2,13,1,28,13,14,1,6,1,28,1,30,2,6,1,28,1,6,3,16,1,8,1,7,1,16,2,8,1,6,3,13,1,6,1,30,2,6,1,16,1,8,1,6,3,16,2,6,2,13,1,6,2,28,1,6,2,16,2,8,1,16,4,8,1,16,4,28,1,6,6,28,1,6,1,16,1,14,2,30,1,6,5,30,1,28,1,6,1,8,1,28,91,30,1,28,1,9,1,1,108,}, + {1,259,14,1,28,10,29,1,28,7,30,1,28,3,30,1,8,1,14,1,16,1,6,1,28,2,30,1,28,3,30,1,6,1,8,1,14,2,16,2,6,1,28,2,6,1,8,1,6,1,28,3,30,3,28,1,30,4,13,1,6,6,30,2,6,5,16,2,14,1,8,3,6,2,28,2,30,5,28,1,30,4,28,2,30,2,28,2,6,2,8,1,16,7,8,1,6,1,8,1,6,3,28,3,30,2,28,15,13,1,14,1,13,1,28,2,30,1,13,1,9,1,16,1,14,1,16,1,14,2,16,1,9,1,16,1,14,2,16,1,6,1,28,14,30,1,13,1,28,15,6,1,13,1,30,1,28,3,30,4,13,2,16,1,14,1,16,3,28,12,6,1,14,1,28,2,30,3,6,3,8,5,6,2,8,1,6,3,28,1,6,5,16,1,8,1,6,4,30,1,6,2,30,1,28,1,6,3,13,1,8,3,6,1,8,2,6,1,8,3,28,1,6,2,16,1,8,2,6,4,28,3,6,6,13,1,6,1,28,2,16,1,6,1,28,84,30,1,28,5,30,1,14,1,1,108,}, + {1,258,14,1,28,11,30,1,28,16,6,1,13,1,8,1,13,1,6,2,28,4,6,1,28,2,30,1,6,1,30,1,28,1,6,1,16,1,8,1,6,1,28,3,30,1,28,4,6,1,9,1,28,1,6,1,16,1,8,1,16,2,8,1,16,1,14,1,16,2,6,3,13,1,6,1,30,1,6,1,16,1,8,1,6,3,30,9,28,1,30,4,6,1,8,2,6,2,8,2,16,2,8,1,6,3,30,2,28,6,30,2,28,14,13,1,8,2,28,7,30,2,6,3,13,2,16,1,8,1,13,1,30,1,28,13,30,1,13,1,6,1,28,13,8,1,16,2,6,1,28,3,30,4,13,1,6,1,30,1,6,4,28,3,30,1,28,7,30,1,13,1,14,1,8,1,28,1,30,3,6,2,13,1,16,1,8,1,6,2,30,1,6,7,13,1,6,7,13,1,6,12,28,1,6,8,28,1,16,1,14,2,16,1,8,1,16,2,6,13,13,1,8,1,30,1,28,1,30,1,16,1,28,90,1,109,}, + {1,257,14,1,28,6,30,1,6,1,13,1,6,2,30,1,28,1,13,1,6,1,28,3,30,1,28,13,6,1,14,1,16,3,6,6,30,1,6,4,16,3,8,1,16,1,8,4,16,1,6,1,28,5,6,3,30,1,28,12,6,3,30,1,28,1,30,1,28,1,30,8,28,2,6,1,16,1,6,4,8,1,13,1,6,2,28,12,30,1,13,1,28,12,16,2,13,1,28,16,30,1,28,14,6,1,16,2,30,1,28,1,30,2,6,1,13,2,6,1,13,1,16,1,13,2,16,3,13,1,30,1,28,18,13,1,30,1,13,1,6,3,30,1,6,1,8,1,16,1,8,1,30,1,28,2,6,2,16,1,8,1,6,1,28,2,30,1,6,2,28,1,6,4,28,1,13,1,6,13,28,1,6,6,13,2,6,2,16,1,13,1,6,5,8,1,6,1,28,1,6,2,16,2,8,1,6,5,16,5,6,4,13,2,28,2,6,1,16,1,28,88,1,109,}, + {1,256,14,1,28,1,30,1,28,2,30,2,28,2,30,1,6,2,30,2,28,1,30,1,6,1,28,1,30,2,28,1,30,2,28,12,30,1,13,1,16,1,14,2,16,1,8,2,7,1,6,4,13,1,8,1,6,1,28,1,6,3,13,1,8,1,6,2,13,1,30,6,28,2,30,1,28,3,30,5,28,1,30,3,28,3,30,1,6,1,30,5,28,1,30,1,28,1,30,4,6,1,28,1,13,1,6,1,30,1,28,8,30,3,28,2,30,1,28,4,13,1,30,3,28,8,6,1,14,1,16,1,6,1,28,32,13,1,16,1,6,1,28,5,30,1,28,1,30,1,28,1,30,1,6,1,13,1,8,2,28,18,30,1,28,1,29,1,28,2,9,1,16,2,8,1,16,2,8,2,6,1,28,1,30,1,6,1,16,1,8,1,28,2,30,1,6,6,8,1,6,3,30,1,6,9,30,1,6,11,13,3,6,1,16,1,6,1,28,1,6,1,13,1,6,1,28,2,6,4,28,1,8,1,16,1,6,4,14,1,16,1,6,2,16,3,6,6,13,1,28,2,13,1,16,1,28,85,16,1,1,109,}, + {1,255,9,1,29,1,6,1,30,1,28,1,30,3,6,1,30,2,6,1,28,1,6,3,30,1,28,1,30,1,28,3,30,4,28,7,30,2,28,5,6,1,14,3,16,3,7,1,6,2,28,1,30,2,28,8,13,1,6,1,30,20,9,1,30,1,6,3,28,2,30,4,28,1,30,2,6,1,30,1,8,1,28,5,30,8,28,1,30,2,28,7,6,1,8,1,6,1,8,1,6,1,28,4,6,1,16,2,13,1,28,32,13,1,14,1,6,1,28,30,13,2,30,1,28,5,30,1,28,2,6,3,13,1,6,1,30,2,28,1,13,1,14,1,6,1,28,1,6,2,13,1,6,5,16,2,6,4,13,1,6,9,30,1,6,17,16,1,6,2,13,1,6,6,28,1,16,2,6,2,16,1,14,1,6,4,16,2,8,1,6,6,13,2,28,2,8,1,16,1,28,72,6,1,28,10,16,1,1,109,}, + {1,253,16,1,6,3,30,2,6,2,30,2,6,2,30,5,28,1,30,2,13,2,6,1,13,1,30,4,6,2,30,1,28,2,30,2,28,9,6,1,14,3,16,3,6,1,8,2,6,4,30,4,6,2,30,11,28,1,30,6,28,1,30,1,28,3,30,1,6,1,8,3,6,4,8,1,6,3,8,1,16,1,6,1,30,1,28,1,30,9,28,1,30,5,28,1,30,1,28,2,6,1,13,1,6,1,16,1,8,1,6,3,8,1,16,3,6,1,28,19,13,2,30,5,28,5,6,1,16,1,14,1,13,1,28,14,30,1,28,15,6,1,8,1,13,1,30,1,28,3,29,1,28,4,30,1,28,1,6,2,30,1,28,1,30,1,28,3,6,9,16,1,14,1,8,1,13,1,6,2,8,1,6,10,30,1,6,3,13,1,8,1,6,10,8,2,6,1,28,1,6,10,14,1,6,1,28,1,16,1,14,1,6,5,16,2,6,8,8,1,6,1,28,2,16,1,9,1,28,77,29,1,28,3,14,1,1,109,}, + {1,251,9,1,6,1,8,1,6,8,8,1,6,1,30,2,6,2,30,5,28,1,30,1,6,1,30,2,6,2,28,1,30,1,28,2,30,1,28,2,30,1,28,11,30,1,14,3,16,4,8,2,6,4,30,1,6,1,28,1,6,1,8,1,6,1,28,1,30,1,6,1,30,3,28,1,30,10,28,1,30,1,28,1,30,1,6,1,16,1,8,1,6,2,16,2,8,1,16,4,14,1,16,1,6,2,28,1,30,1,6,1,30,7,28,2,30,4,28,1,30,4,28,4,6,2,16,1,14,1,16,1,8,1,16,1,6,1,30,1,28,19,6,1,8,1,28,3,30,2,13,1,14,2,16,4,6,1,28,18,30,1,28,2,30,3,28,7,13,1,16,1,13,1,28,6,30,3,6,1,13,1,28,1,6,1,28,4,6,1,13,1,6,9,8,3,13,1,6,2,8,2,6,10,28,1,6,3,16,1,8,1,6,8,8,1,16,1,6,1,28,1,13,1,6,10,14,1,8,1,28,1,14,2,6,5,8,1,14,1,8,1,6,3,13,1,6,4,13,2,6,1,28,2,6,1,28,77,29,1,28,1,29,1,1,110,}, + {1,249,11,1,28,1,6,6,30,1,6,2,13,1,30,1,28,1,6,2,30,2,28,1,30,2,28,1,30,1,6,3,28,1,30,2,28,4,30,5,6,2,30,1,28,1,30,1,28,1,30,1,28,1,30,2,28,4,30,1,14,3,16,5,6,5,30,1,28,1,6,1,16,1,6,1,28,2,6,2,28,1,30,1,6,1,30,10,28,1,6,1,13,1,30,1,28,1,6,2,13,1,8,2,16,2,8,2,16,2,6,2,28,1,30,1,6,1,30,2,6,2,30,1,6,1,30,11,28,2,6,2,30,1,28,2,30,1,6,2,30,1,28,22,13,1,6,2,28,5,30,3,13,3,30,1,28,20,6,1,16,2,13,2,6,1,13,1,6,1,30,1,28,1,13,1,8,1,16,1,13,1,28,5,30,1,28,2,30,2,6,1,13,1,30,1,28,3,6,1,13,1,6,8,13,1,6,2,28,2,30,1,6,4,8,1,6,11,30,1,6,1,30,1,6,1,16,2,6,7,16,2,6,12,28,1,14,1,16,1,28,1,16,2,6,6,14,1,6,12,8,1,13,1,28,2,30,1,28,1,16,1,28,76,1,110,}, + {1,248,6,4,30,1,16,1,6,1,13,1,6,1,8,1,14,1,6,2,30,1,28,1,6,3,28,1,6,3,30,1,6,4,30,2,28,1,30,4,28,1,30,2,6,1,28,3,6,1,30,1,28,1,30,3,28,1,30,1,28,1,6,1,13,2,28,3,14,2,16,5,8,1,6,4,28,2,6,1,8,1,16,1,6,1,28,2,6,1,30,11,6,1,30,1,6,1,30,1,28,7,30,1,28,7,6,1,30,1,6,1,30,1,6,2,30,4,6,1,30,5,28,1,30,2,28,2,6,1,14,1,8,1,13,1,28,9,30,1,6,1,28,16,13,1,16,1,13,1,30,1,28,13,30,1,13,1,30,1,28,14,30,1,28,1,30,1,6,4,13,1,16,2,8,1,16,3,8,1,28,3,30,1,28,3,30,1,28,2,30,1,13,1,6,1,28,2,6,17,28,2,6,5,13,1,6,6,30,1,6,2,30,1,6,2,28,1,6,1,8,1,16,2,6,4,8,1,14,1,6,14,16,2,6,2,16,2,13,1,6,4,16,2,6,3,13,1,6,4,8,1,6,3,8,2,13,1,30,1,28,1,6,1,28,74,30,1,16,1,1,110,}, + {1,246,11,1,6,1,8,1,6,3,28,1,6,5,28,1,6,4,28,2,30,2,28,1,30,1,28,1,30,1,28,1,30,4,28,1,30,2,28,2,30,4,28,2,30,1,28,3,30,1,28,1,30,1,13,1,6,1,28,3,30,1,6,1,30,1,28,3,13,1,1,1,14,1,16,5,8,1,6,2,13,1,30,1,28,1,6,2,8,1,16,1,8,1,6,2,28,1,30,10,6,1,28,2,30,3,6,1,30,2,28,3,30,1,6,2,30,1,28,1,30,1,6,3,28,1,6,3,30,2,28,2,6,1,28,4,6,1,28,1,6,2,8,1,16,1,6,1,30,1,28,2,30,7,28,1,30,1,6,3,28,1,6,2,13,3,8,1,16,4,8,1,16,3,8,1,28,16,30,1,6,6,28,9,16,1,6,1,28,5,30,3,28,1,6,2,13,1,30,1,28,3,30,1,28,2,30,1,28,2,6,2,16,1,28,2,6,8,13,1,6,2,8,1,6,11,13,1,6,1,30,1,8,1,6,7,13,1,6,5,30,1,6,1,8,1,16,1,6,3,14,1,16,1,6,14,14,1,16,1,8,2,6,1,8,2,6,3,28,1,14,1,16,1,6,8,8,1,6,3,13,1,6,2,8,2,6,1,28,75,14,1,1,110,}, + {1,245,8,2,6,10,13,1,6,2,28,1,30,1,28,1,6,1,9,1,6,1,28,1,13,2,30,2,28,1,30,1,6,1,13,1,6,1,28,3,30,2,28,2,30,10,13,1,6,1,28,2,30,1,28,3,30,4,28,2,14,1,11,1,14,1,16,4,8,2,6,3,28,2,6,3,16,2,6,1,30,3,6,1,30,6,6,2,28,1,6,1,30,3,6,1,30,1,6,1,30,1,6,2,30,3,28,1,6,1,13,1,6,2,30,3,6,2,13,2,8,1,6,1,8,3,16,6,8,1,6,1,28,2,30,2,28,3,30,1,28,1,30,2,28,1,16,1,8,1,16,16,8,1,6,1,28,16,30,1,6,3,16,2,13,2,6,1,28,3,30,1,13,1,16,1,6,1,30,1,28,11,30,1,28,2,30,1,28,1,30,7,16,1,8,1,28,1,6,7,13,1,6,2,7,1,8,1,6,9,30,1,6,3,28,1,6,6,8,1,16,1,6,1,8,1,13,1,6,4,13,1,6,2,8,1,16,1,8,1,14,2,16,1,6,12,28,1,16,2,6,2,16,1,8,1,6,3,28,2,6,1,14,1,16,1,6,7,8,1,6,1,16,1,8,3,6,3,13,1,8,2,6,1,28,2,13,1,16,1,28,59,6,1,28,9,1,111,}, + {1,243,14,1,16,1,7,1,6,7,13,1,6,3,13,2,8,1,6,4,30,3,6,3,13,2,6,1,30,1,6,3,30,2,28,4,30,1,28,2,30,1,13,1,6,2,13,1,6,1,28,4,30,1,28,1,30,3,28,2,30,3,28,2,13,1,1,1,14,1,16,6,6,4,28,1,30,1,6,3,13,1,16,1,6,1,30,1,28,1,30,6,13,1,8,1,6,1,28,1,6,1,30,3,28,1,30,6,6,2,28,1,30,1,6,5,30,1,28,1,6,1,8,1,16,8,13,1,16,1,8,1,6,1,8,1,6,3,30,7,28,2,8,3,16,5,13,2,6,1,13,3,6,1,30,1,6,1,13,1,28,21,6,1,13,2,6,2,13,1,16,2,14,3,13,1,28,7,30,1,28,2,30,1,28,2,30,1,28,2,30,1,28,2,30,4,6,2,16,1,6,1,28,1,6,9,8,1,16,1,6,2,13,1,6,2,13,1,6,9,8,2,6,2,16,1,8,1,6,1,16,1,14,1,16,1,28,1,6,1,30,1,6,2,28,1,6,4,13,1,16,1,8,2,6,13,16,2,6,2,13,1,16,3,8,1,16,1,8,1,14,1,16,1,8,1,6,5,16,6,8,1,16,2,8,2,6,1,8,1,6,1,8,1,16,1,13,1,28,2,30,1,13,1,6,1,28,66,1,111,}, + {1,242,14,1,6,1,8,1,6,6,13,1,6,1,30,1,28,1,30,1,28,2,6,3,13,1,6,1,30,1,28,1,30,2,28,4,30,1,28,1,30,1,28,1,6,3,13,3,6,1,30,4,13,1,6,1,30,1,28,3,30,7,28,1,6,1,30,1,28,1,30,4,29,1,28,2,14,1,11,1,14,1,16,5,8,1,6,3,30,2,28,1,6,1,13,1,6,1,8,1,16,1,8,1,6,1,28,1,30,3,6,1,8,2,16,1,6,1,30,4,6,1,30,2,6,1,30,2,6,3,28,1,30,1,6,1,13,2,6,2,8,2,6,6,30,1,6,2,28,4,6,1,8,1,16,1,6,2,30,5,28,1,30,2,28,1,13,1,6,2,8,1,6,2,28,13,30,2,28,6,30,1,28,9,30,2,28,4,30,1,28,1,30,1,6,1,13,1,28,13,13,2,6,1,30,1,28,2,30,1,28,2,30,2,6,3,13,1,14,1,6,1,30,1,6,8,16,2,8,1,6,6,13,1,6,8,16,1,8,1,16,2,8,2,16,1,14,2,6,6,28,1,6,20,14,1,16,1,6,1,8,1,16,1,8,1,6,1,8,1,16,1,8,1,16,4,6,4,8,1,16,3,8,1,6,2,8,1,7,1,6,1,8,1,16,3,6,2,8,1,6,1,13,1,8,1,13,1,6,1,28,2,30,1,13,1,8,1,28,63,1,111,}, + {1,241,14,1,6,4,30,1,6,2,8,2,6,1,30,1,6,4,30,1,28,1,6,3,30,10,28,3,30,2,28,3,30,1,6,1,13,1,16,1,13,1,28,2,30,1,28,1,30,1,28,1,30,1,28,1,30,9,6,1,30,1,13,2,6,1,28,1,30,1,28,2,16,1,1,1,11,1,16,1,8,1,16,4,6,5,28,2,30,1,13,1,6,3,8,1,6,1,28,1,6,1,13,1,8,1,6,1,8,2,6,1,30,2,6,1,30,4,6,1,30,1,6,4,28,1,6,2,8,1,16,4,6,1,28,9,30,1,6,1,28,2,8,2,6,3,30,7,28,1,6,3,28,9,30,1,28,3,30,1,28,1,30,1,13,1,30,2,28,9,30,1,28,4,6,1,30,2,28,21,6,1,13,1,6,1,28,3,30,3,28,1,6,5,16,2,6,8,8,1,16,3,8,1,6,11,30,1,6,1,28,1,13,1,16,1,6,3,30,2,6,1,13,1,6,2,13,1,6,3,8,1,6,1,28,5,6,3,9,1,6,10,16,2,6,1,8,1,6,3,8,1,6,2,16,3,8,1,6,5,16,2,6,10,8,1,16,2,6,3,13,2,8,2,13,2,6,1,28,2,30,1,13,2,28,59,8,1,1,111,}, + {1,240,8,1,29,1,7,1,6,1,13,1,6,3,8,1,16,1,6,6,30,2,6,4,30,5,28,1,30,4,28,1,30,2,28,1,6,1,13,1,6,1,28,8,30,4,28,2,30,7,28,1,30,3,28,1,30,1,13,1,8,1,30,2,28,2,6,1,1,1,11,1,14,1,16,5,8,1,6,4,30,4,6,3,13,1,16,1,14,1,6,2,28,1,6,2,13,1,6,2,30,6,6,1,30,1,6,1,30,1,6,1,30,1,28,2,16,2,6,1,28,4,30,2,6,2,30,1,6,3,30,2,6,1,28,2,6,6,30,1,6,1,30,1,6,1,30,2,28,1,6,1,28,2,30,4,28,1,30,1,28,6,30,1,28,2,13,1,6,2,28,1,30,1,28,11,13,1,16,1,8,1,28,12,30,1,28,5,30,1,28,2,6,1,16,1,8,1,30,1,28,2,30,3,6,7,16,1,6,1,28,1,6,5,8,1,16,1,14,1,16,1,8,1,6,1,8,1,6,2,13,1,6,1,8,1,6,10,16,1,8,1,6,1,28,1,6,2,30,1,28,2,16,1,13,1,6,2,16,2,28,1,6,4,30,1,28,1,6,7,13,1,6,4,16,2,6,4,8,1,6,2,13,1,6,9,8,2,16,1,8,1,6,2,8,4,7,1,8,2,6,2,16,2,6,1,8,3,6,3,8,1,13,1,8,1,13,1,28,4,13,1,8,1,6,1,28,53,29,1,28,1,8,1,1,111,}, + {1,239,6,1,8,2,6,3,30,1,6,2,8,1,6,9,8,1,6,1,28,2,30,13,6,1,30,1,28,1,30,1,28,1,6,2,14,3,13,1,6,1,28,3,6,2,28,3,30,4,6,1,30,4,28,2,30,1,6,1,8,1,13,1,6,1,30,1,28,2,11,1,1,1,11,1,16,1,8,1,16,4,6,7,28,3,6,1,8,1,30,1,28,2,30,1,28,1,6,2,13,1,6,1,30,4,6,4,30,2,6,3,28,1,6,2,30,1,28,1,6,2,30,2,6,10,28,2,6,1,28,1,30,1,6,4,30,1,6,1,30,1,28,1,6,1,28,4,30,11,28,2,30,1,28,2,6,5,30,1,28,8,6,2,13,1,6,1,28,2,30,1,28,3,30,1,14,1,6,1,28,11,6,1,16,2,13,1,30,1,28,2,30,2,6,1,30,1,6,6,16,1,6,3,8,1,6,1,8,1,16,3,8,1,6,2,8,2,6,1,30,1,8,1,6,5,13,1,6,3,30,1,6,1,30,1,8,1,6,1,28,1,13,1,6,3,30,1,28,1,13,1,8,1,6,1,16,2,28,1,6,6,30,3,6,1,16,2,6,6,14,1,16,1,8,1,6,2,8,1,16,1,13,1,6,4,8,1,16,2,6,5,16,1,8,1,16,2,6,1,8,1,6,1,8,1,6,1,8,3,6,1,16,1,6,2,16,1,8,1,6,1,8,1,7,1,8,1,6,2,8,1,6,1,13,3,8,1,6,1,28,4,13,1,9,1,30,1,28,49,30,1,28,2,7,1,1,111,}, + {1,238,6,1,8,1,6,5,13,1,6,10,8,3,6,1,13,2,6,1,30,5,28,1,30,3,28,3,13,1,30,1,28,3,16,1,13,2,8,1,6,3,9,1,16,1,6,1,28,1,6,1,13,1,6,1,30,1,28,3,30,2,13,1,30,1,28,1,6,1,28,2,6,1,30,1,28,1,6,1,8,1,13,2,28,2,14,1,1,1,14,2,16,4,8,2,6,4,30,2,6,2,30,1,28,2,30,1,6,3,28,2,6,2,13,1,8,1,6,1,30,1,6,1,30,4,6,1,30,1,6,4,28,1,30,1,6,2,30,1,6,2,30,1,6,2,30,2,6,7,28,2,6,2,30,1,6,5,28,1,13,1,16,1,28,2,6,1,30,3,6,1,30,6,28,1,30,1,28,1,6,1,8,1,6,1,13,1,8,1,16,3,8,1,30,1,28,2,30,1,28,2,30,1,6,1,16,1,8,1,6,1,28,2,30,1,28,5,8,1,30,1,28,7,30,1,28,2,6,1,8,2,6,1,28,2,30,1,6,1,28,1,6,8,16,2,6,1,7,1,16,1,8,1,6,1,16,2,8,2,6,1,28,1,6,5,16,1,6,2,13,1,6,3,13,1,6,6,28,1,13,1,6,8,16,1,8,1,6,5,30,1,6,4,30,1,6,2,8,1,14,1,13,1,6,2,8,1,14,1,8,1,6,3,16,1,8,1,6,5,13,1,16,2,8,2,6,3,8,1,7,1,6,1,16,2,8,10,6,2,16,1,8,1,6,1,7,1,8,1,6,4,13,1,6,1,13,1,6,2,13,3,28,5,30,1,13,2,30,1,28,48,7,1,1,111,}, + {1,237,6,2,8,1,16,3,8,2,6,1,8,1,28,2,13,1,6,5,13,1,16,1,28,2,30,1,6,1,8,2,6,10,13,1,8,1,30,2,28,2,6,1,9,1,6,1,30,1,28,5,6,2,28,2,6,1,13,4,6,2,30,1,13,1,6,1,28,2,6,2,13,1,8,1,6,1,28,1,30,1,6,1,13,1,6,1,28,2,14,1,1,1,11,1,14,1,16,1,8,1,16,3,8,1,6,4,30,1,6,7,30,2,6,1,30,1,28,1,6,1,16,1,13,1,8,2,6,5,28,1,6,3,8,1,6,1,30,2,6,7,30,1,6,5,30,1,6,1,14,1,6,1,28,1,13,1,30,1,6,8,16,1,13,1,28,2,6,2,30,1,6,2,28,1,30,3,28,1,30,3,6,1,16,2,13,2,6,1,13,2,8,2,16,1,6,2,28,2,6,1,16,4,28,2,30,1,28,2,30,1,28,2,30,1,6,1,28,5,30,1,28,4,6,1,16,2,8,1,6,1,28,1,30,1,6,2,28,1,6,7,16,1,14,1,16,1,6,2,16,2,14,1,16,1,6,1,8,1,28,2,30,1,6,1,28,3,6,1,16,1,6,11,8,1,6,11,13,1,6,12,30,1,6,3,16,4,8,2,28,1,6,1,16,1,6,8,16,2,6,1,16,1,6,2,13,1,6,1,8,2,16,1,8,1,16,1,8,9,6,1,16,2,6,2,8,4,6,1,8,1,6,11,28,6,6,1,13,2,14,1,28,38,13,2,28,4,12,1,1,111,}, + {1,236,6,3,8,2,6,1,28,1,6,2,8,1,16,1,6,2,14,1,13,1,6,2,16,1,6,2,30,1,28,4,30,1,6,5,13,1,6,2,13,1,8,1,16,2,30,1,28,1,30,2,28,1,16,1,28,3,30,5,28,2,30,1,28,3,30,1,28,1,30,1,6,2,13,1,9,1,6,1,30,1,13,1,16,1,13,1,6,1,13,1,6,1,28,2,13,1,6,1,28,1,30,1,29,1,28,1,14,1,1,1,11,1,14,2,8,1,16,3,8,1,6,5,30,1,6,7,30,2,6,1,30,1,28,1,6,4,16,3,8,2,6,2,16,1,8,1,30,1,28,1,6,15,16,2,28,1,6,9,28,1,8,2,6,1,28,1,6,1,30,2,6,4,30,5,28,2,16,2,13,1,6,1,28,4,30,2,6,2,8,2,6,1,16,1,14,1,16,2,28,2,30,2,28,1,30,3,28,1,6,3,28,2,30,1,28,5,13,1,16,2,8,1,6,1,28,3,6,4,30,1,6,3,8,1,16,2,8,1,6,1,28,2,6,1,13,2,6,1,8,1,28,1,30,1,6,1,13,1,6,1,13,1,6,1,30,1,6,1,13,2,6,8,28,1,6,1,8,1,30,1,6,4,13,1,6,4,13,1,6,19,8,1,16,1,8,1,6,2,16,1,8,1,6,9,16,2,8,2,6,2,8,1,6,1,8,1,16,1,8,1,6,1,16,1,8,1,6,2,8,2,6,1,8,2,16,2,6,2,8,1,7,1,8,2,6,5,13,1,6,5,30,1,6,3,29,1,6,1,30,1,28,6,30,1,8,1,14,2,28,31,6,1,8,1,30,1,28,6,1,112,}, + {1,235,16,1,9,1,28,2,6,2,8,2,6,3,8,1,28,1,30,1,8,1,13,1,6,1,13,1,6,1,28,2,6,4,30,5,28,10,30,4,6,1,30,12,13,1,28,9,30,1,8,2,6,1,30,2,28,2,13,1,6,1,28,3,30,2,28,1,14,1,1,1,11,1,14,2,8,1,16,4,6,5,13,3,6,1,30,1,6,5,30,1,6,2,28,1,6,1,8,1,14,1,16,2,8,1,16,1,8,1,14,1,8,2,6,5,30,1,6,2,30,1,6,2,30,1,6,2,30,1,6,1,13,1,16,1,6,1,28,1,6,10,8,1,6,1,30,1,6,7,30,1,6,1,30,1,28,1,6,1,30,1,28,1,6,1,28,1,16,1,13,1,28,2,30,2,28,3,6,2,8,1,16,2,8,1,16,2,28,2,30,1,28,1,30,1,28,1,30,2,28,3,6,2,28,6,6,1,8,2,16,1,8,1,30,1,28,5,6,5,28,1,8,1,16,2,8,1,6,1,28,2,30,1,28,1,30,1,6,1,13,1,28,1,6,2,8,1,6,2,13,2,6,3,13,1,6,9,8,2,6,11,13,1,6,1,13,1,6,13,28,1,8,1,6,1,13,1,8,1,6,2,8,2,6,6,30,1,6,3,7,1,16,1,8,2,6,5,8,4,16,2,8,2,16,6,6,2,8,1,6,4,16,2,8,1,6,3,13,1,6,5,28,7,29,1,28,8,30,1,13,3,6,1,29,1,28,20,8,1,7,1,16,1,7,1,29,1,28,8,1,112,}, + {1,234,14,1,16,1,6,1,13,1,6,2,8,2,6,2,28,2,6,1,13,1,28,3,30,1,28,1,6,1,13,1,8,1,6,6,30,2,6,1,30,1,6,2,13,1,6,2,30,8,28,1,6,1,13,1,30,1,28,2,30,3,28,1,6,1,8,1,30,1,28,2,6,1,13,2,14,1,13,1,28,1,30,1,6,3,30,1,28,1,30,1,6,1,30,1,6,3,28,2,30,1,13,1,6,1,28,2,11,1,1,1,11,1,14,2,16,4,8,1,6,4,28,2,8,1,13,2,6,5,8,1,13,1,6,1,8,1,13,1,6,3,30,1,28,1,6,1,8,1,6,6,30,2,6,1,30,1,6,6,30,1,6,2,16,1,6,1,28,1,6,4,30,1,6,6,8,1,6,1,13,1,30,1,6,1,30,2,6,4,30,1,6,5,8,1,6,1,30,1,28,2,6,1,30,2,6,1,30,2,6,1,13,1,16,3,8,1,28,2,30,2,28,1,30,6,28,2,30,1,6,1,30,1,6,2,8,3,16,2,8,1,6,1,28,2,30,3,28,3,6,1,13,1,6,2,8,1,16,2,8,1,28,2,6,2,30,2,28,1,6,2,28,1,6,1,13,1,6,2,8,1,6,6,13,1,6,9,8,1,6,11,8,1,6,1,8,1,6,16,8,2,6,3,8,1,6,5,30,2,6,4,8,2,16,1,6,3,16,2,8,2,6,1,8,2,16,8,6,2,8,1,6,1,8,1,16,7,14,1,6,6,28,1,6,1,13,1,6,2,28,18,30,1,6,1,13,1,9,1,16,2,14,7,16,1,14,1,16,3,9,1,8,1,6,1,28,11,8,1,1,112,}, + {1,234,14,1,8,1,6,3,16,1,8,1,6,4,13,1,6,2,13,2,6,1,13,1,6,4,16,2,8,2,6,3,13,3,6,1,16,2,6,1,13,2,6,3,30,2,28,1,6,1,28,2,6,1,13,1,6,2,30,1,28,1,6,2,13,1,30,1,28,2,9,1,16,1,13,3,16,1,13,1,30,2,6,1,28,2,30,1,6,4,13,1,8,1,6,1,28,1,30,1,6,3,28,2,1,2,11,1,14,2,16,3,8,3,6,3,30,3,6,1,16,1,14,1,16,3,6,4,30,1,28,3,30,2,28,1,30,1,28,4,6,1,13,1,6,3,30,1,6,4,30,1,6,3,16,1,8,1,6,13,8,2,28,1,30,1,6,1,30,1,6,1,30,2,6,1,30,1,6,5,16,2,8,1,6,1,28,1,6,1,30,1,6,1,30,1,6,5,8,1,6,3,30,1,6,1,30,3,6,2,30,5,6,2,28,1,16,4,14,1,16,3,6,1,28,2,6,1,30,1,28,1,30,3,28,1,6,1,8,1,16,5,6,1,28,1,6,6,13,1,6,4,8,1,6,2,13,1,6,5,16,1,6,9,16,1,6,6,13,1,6,6,8,1,6,16,8,2,6,3,8,1,6,6,30,1,6,3,8,2,6,1,16,1,6,1,16,7,6,3,8,3,6,1,8,1,6,2,8,3,16,5,6,4,13,1,16,1,6,4,28,1,13,2,6,2,8,2,13,1,28,48,16,1,1,112,}, + {1,232,16,1,8,2,13,1,6,2,8,2,6,4,8,1,6,4,8,1,13,1,28,3,6,2,30,1,13,1,7,1,6,1,8,3,16,1,6,3,30,1,28,1,6,2,13,1,6,2,30,1,6,1,13,2,6,2,28,2,6,1,13,1,16,1,14,2,16,1,13,1,30,1,28,2,16,1,8,1,6,1,28,3,30,1,8,1,13,1,30,1,6,2,30,2,6,4,30,1,6,1,8,1,6,1,28,1,30,1,6,3,28,1,6,1,1,1,11,3,14,1,16,5,13,1,6,4,30,1,6,4,8,1,6,4,28,2,30,1,6,3,30,1,6,5,30,2,6,11,8,1,16,1,8,1,6,13,13,1,6,1,13,1,28,1,6,10,30,1,6,1,8,1,16,2,6,1,28,1,6,1,30,1,6,1,30,1,6,3,8,2,6,3,30,2,6,4,30,3,6,2,30,1,6,1,28,2,8,2,6,1,16,2,8,2,13,1,6,3,30,1,28,2,30,4,28,1,30,1,6,2,8,1,16,1,8,2,6,1,28,1,6,8,28,2,13,1,6,5,13,1,6,4,16,1,6,6,13,1,6,1,8,1,16,1,6,12,16,1,8,1,6,16,8,1,16,1,6,2,13,1,8,1,6,10,8,1,6,2,8,1,16,1,8,1,7,1,8,1,6,1,8,1,16,3,8,2,6,5,8,1,16,2,6,1,16,2,8,1,6,3,8,1,6,4,8,1,14,1,6,3,28,1,16,1,6,1,28,6,6,1,28,46,1,113,}, + {1,232,6,1,8,1,6,3,8,2,6,4,8,2,6,3,8,1,13,1,28,1,6,2,30,1,28,1,30,1,6,9,30,1,28,6,6,1,13,1,6,2,16,3,8,1,14,1,6,1,28,3,6,1,8,1,13,1,30,1,28,2,16,1,8,1,28,2,30,3,28,1,30,1,13,1,30,2,6,3,30,1,6,4,30,2,6,2,13,1,6,4,28,1,8,1,1,1,11,2,14,2,16,4,8,1,13,1,6,5,28,1,6,2,28,2,8,1,6,1,28,1,6,3,30,2,6,3,30,1,6,1,30,1,6,2,30,1,13,3,6,7,16,3,6,1,13,1,6,1,8,2,6,9,8,1,6,2,30,1,6,9,30,1,6,2,16,3,28,1,6,8,8,1,6,1,28,4,30,1,6,4,30,1,6,2,30,2,6,1,30,1,28,1,13,1,6,1,8,2,6,1,28,6,6,3,30,1,28,1,6,1,30,1,6,1,30,1,28,1,30,1,6,1,13,1,6,3,28,1,6,21,7,1,14,1,6,8,16,2,6,1,8,1,6,4,13,1,6,4,8,1,16,1,8,1,16,1,8,1,6,15,8,1,16,1,6,2,16,1,6,4,13,1,6,4,8,1,16,2,8,1,6,1,16,1,28,1,6,2,8,3,16,2,8,1,16,8,8,1,6,1,16,1,8,1,6,1,8,1,7,1,8,1,13,4,28,1,6,1,16,1,8,1,6,2,28,1,16,1,8,1,28,2,30,1,28,2,8,2,28,45,17,1,1,113,}, + {1,231,9,1,8,1,6,9,8,1,16,1,6,3,16,1,8,1,6,5,30,2,28,1,6,5,13,1,30,1,28,1,6,3,30,3,28,4,6,5,13,2,8,1,13,1,6,1,28,5,8,1,16,1,28,2,6,1,30,3,6,2,30,1,6,1,30,1,6,2,13,2,6,5,30,1,6,1,30,1,6,1,13,1,6,4,28,1,16,1,1,1,11,2,14,2,16,5,8,1,6,9,13,1,6,1,30,1,6,2,30,1,6,4,30,1,6,2,30,1,6,3,13,1,30,1,6,6,16,4,6,2,28,1,13,1,6,1,13,2,6,5,30,1,6,1,8,2,6,2,30,1,6,11,8,1,16,1,6,9,13,3,28,2,30,2,28,3,6,1,13,1,6,2,30,1,6,1,30,1,6,1,30,1,28,1,6,1,16,1,8,1,6,1,28,4,30,1,28,3,30,1,13,1,6,3,30,3,6,1,30,1,28,1,30,1,6,3,28,1,6,11,8,1,6,1,13,1,6,3,13,1,6,4,16,1,14,1,6,1,8,1,6,4,8,1,16,2,6,3,16,2,8,1,6,2,13,1,6,5,8,2,16,1,6,15,16,1,8,1,6,2,8,1,6,1,8,1,13,1,6,6,16,4,8,1,16,1,8,3,16,1,8,1,6,1,8,1,16,1,8,1,16,8,8,2,16,1,6,1,8,2,7,1,6,2,8,1,6,1,13,1,6,1,28,1,16,2,6,2,28,2,13,1,9,1,13,1,6,2,13,1,8,1,6,1,28,8,16,2,28,19,29,1,28,15,16,1,1,113,}, + {1,229,8,1,28,1,16,1,6,1,16,1,14,1,8,1,6,2,7,1,6,2,16,2,6,3,16,1,8,1,28,1,13,1,6,5,30,1,6,5,13,1,28,1,6,7,30,3,6,1,30,1,28,7,6,1,13,1,8,1,6,3,30,1,6,1,16,1,28,2,6,1,30,2,6,1,30,1,6,4,30,2,6,1,28,1,6,7,30,1,6,1,30,1,6,1,13,1,6,1,13,2,28,2,14,1,1,1,11,2,14,2,16,4,8,1,6,11,13,1,6,6,30,1,6,7,8,1,6,3,8,2,14,1,16,1,8,1,6,3,28,4,6,10,8,2,16,1,8,1,6,10,8,1,16,2,8,2,6,8,16,1,6,1,28,2,6,2,30,1,6,1,28,1,30,1,6,1,8,1,6,2,30,4,28,1,6,1,14,1,8,1,13,1,28,2,6,3,30,1,6,1,28,2,30,1,6,3,30,1,6,4,30,1,6,1,30,1,6,1,30,1,6,1,8,2,6,7,13,1,6,2,16,1,6,5,8,1,6,3,8,1,14,1,16,1,6,1,8,1,6,1,16,1,6,1,16,2,8,2,6,3,16,1,8,1,16,1,6,6,8,2,16,1,6,1,8,2,6,14,16,1,7,1,6,2,8,1,6,1,8,1,6,1,13,1,8,1,6,1,8,1,6,1,8,1,16,2,6,1,8,1,6,1,8,1,14,1,8,2,16,1,8,1,16,1,8,3,16,1,8,1,16,6,6,1,8,1,16,1,8,1,6,1,8,4,6,1,13,1,6,2,28,1,8,2,6,3,28,2,6,2,13,1,8,1,13,1,6,2,28,7,16,2,28,11,6,1,28,24,8,1,1,113,}, + {1,227,14,1,30,1,28,1,16,1,8,1,16,1,14,1,16,2,6,2,16,4,6,3,16,1,8,1,6,8,30,1,6,5,30,2,6,10,30,1,6,4,30,3,28,3,6,5,14,1,13,1,30,8,6,1,28,1,6,5,28,1,6,1,13,1,6,3,8,1,28,1,6,4,8,1,6,2,16,1,28,1,30,1,1,1,11,3,14,1,16,6,6,8,28,2,16,1,6,8,30,1,6,2,13,1,16,1,13,1,6,1,16,1,6,2,16,2,8,2,6,2,28,2,6,3,30,1,28,2,6,1,16,3,8,1,16,1,8,1,6,1,8,1,6,1,8,1,6,5,8,2,16,6,6,2,16,1,6,7,8,1,16,1,6,1,30,2,6,3,30,3,6,1,13,2,6,2,28,1,30,1,6,1,8,1,16,2,8,1,28,1,30,1,6,2,30,2,6,1,30,3,6,12,30,1,6,1,30,1,13,1,8,1,6,10,8,2,6,1,8,1,6,1,8,1,16,5,8,1,6,1,16,1,6,2,8,1,16,2,6,8,8,1,6,4,8,1,16,3,6,2,8,1,16,1,8,1,6,13,16,1,8,1,6,3,8,1,6,3,8,1,6,1,8,1,6,1,16,2,8,1,6,4,8,1,16,3,8,3,6,2,8,1,16,7,8,1,6,1,16,2,7,1,8,2,6,2,8,1,6,1,13,1,28,1,8,1,16,1,6,6,28,2,30,2,28,9,6,1,14,1,28,8,9,1,28,3,9,1,28,24,7,1,1,113,}, + {1,226,13,1,28,2,6,1,16,3,6,4,28,1,6,1,16,1,8,1,6,3,16,2,6,11,30,1,6,16,30,1,6,1,30,1,6,3,30,1,6,2,28,3,6,3,13,1,6,1,13,1,6,1,30,1,6,1,30,1,6,4,8,1,13,1,6,4,8,2,13,1,6,1,13,1,16,1,14,1,6,1,30,1,28,1,13,1,6,2,8,1,6,1,16,1,30,1,28,1,8,1,1,1,11,3,14,1,16,6,8,1,6,6,30,2,6,1,16,2,13,1,6,6,16,4,8,1,6,2,13,1,16,2,6,3,28,2,6,7,28,1,6,1,8,1,16,6,13,1,6,4,16,11,8,1,6,1,13,1,28,1,6,6,16,2,6,1,28,1,6,4,30,1,6,1,28,2,6,1,13,1,16,1,6,3,16,4,28,1,30,1,6,5,30,4,6,3,13,1,30,1,6,11,16,1,8,1,6,5,13,1,6,3,8,1,6,1,16,3,14,1,8,1,6,3,13,1,6,3,13,1,6,2,13,1,6,1,28,1,6,2,28,1,6,3,8,1,6,2,16,4,14,1,16,1,6,4,8,2,6,12,8,1,14,1,16,1,6,3,16,1,6,3,8,1,6,2,16,3,6,3,8,2,16,1,6,1,8,1,16,4,8,1,16,9,8,1,6,2,14,1,16,1,7,1,6,6,8,1,16,1,6,8,28,1,30,1,28,10,16,1,9,1,28,8,16,1,28,3,6,1,28,24,7,1,1,113,}, + {1,224,14,1,30,2,28,2,14,1,8,1,16,1,6,1,28,1,6,2,8,1,6,1,28,3,6,2,16,2,6,13,30,1,6,3,13,1,6,19,30,1,6,1,13,2,6,3,28,2,30,1,6,1,30,1,6,4,30,1,6,1,14,1,13,1,30,1,28,1,6,1,16,2,8,1,6,2,8,1,13,2,28,3,8,1,13,1,6,2,8,1,6,2,28,1,6,1,14,1,1,1,11,2,14,2,16,6,8,1,6,8,30,1,6,1,8,1,16,1,8,1,6,1,8,2,14,1,8,1,6,1,8,1,6,1,8,1,13,1,6,5,28,2,6,10,28,1,6,1,8,1,16,1,6,2,8,1,6,5,8,1,16,9,8,1,6,3,28,1,6,6,8,3,6,8,30,1,28,2,6,1,8,1,16,4,8,1,16,1,28,1,30,1,6,1,30,2,6,3,30,1,6,2,30,1,6,13,30,1,6,1,13,1,6,1,8,1,13,1,6,8,8,1,16,1,6,1,16,2,6,9,13,1,6,1,28,2,6,1,13,2,6,2,30,1,6,5,13,1,16,1,8,1,6,7,8,2,16,1,6,11,8,1,14,1,8,1,6,3,8,1,6,1,16,1,6,1,16,1,8,2,16,2,6,1,16,1,6,1,16,1,8,1,16,1,6,1,8,2,16,3,6,2,16,10,6,1,8,1,6,1,16,3,8,3,16,2,8,2,6,5,30,1,6,3,28,1,30,1,28,9,9,1,8,1,28,8,14,1,28,9,6,1,28,18,7,1,1,113,}, + {1,223,8,1,28,1,30,1,28,2,13,1,14,1,8,1,6,1,13,1,6,2,8,1,6,1,7,1,8,3,6,1,8,2,6,14,28,2,6,2,8,1,6,21,8,2,6,4,28,1,6,3,30,1,28,1,6,2,30,1,13,1,8,1,6,1,28,1,30,1,8,1,14,1,6,1,28,4,30,1,28,1,30,2,13,2,6,1,13,1,6,1,16,1,6,1,30,1,28,1,13,1,16,1,1,2,11,2,14,2,16,1,7,1,16,3,8,1,6,7,28,1,30,2,6,3,13,1,8,1,6,1,13,1,6,1,28,6,30,1,28,3,30,1,6,12,28,1,6,1,8,1,6,2,28,6,6,1,16,1,8,3,6,6,8,1,6,2,28,1,6,7,8,1,6,1,28,1,6,9,28,1,6,1,13,1,16,3,8,1,16,1,28,2,6,11,8,1,6,2,28,1,6,11,8,1,6,1,8,2,6,8,13,1,6,1,8,2,6,1,28,1,13,2,6,5,13,1,6,2,13,1,8,1,6,1,13,3,6,1,30,1,6,4,8,1,6,6,30,2,6,3,13,1,16,1,13,1,6,10,16,1,14,1,6,2,13,1,6,1,8,1,16,1,8,2,6,1,8,2,16,2,8,1,6,1,8,1,16,1,8,1,6,1,8,1,6,1,16,2,6,5,16,2,6,1,8,1,16,6,6,3,8,1,16,1,8,1,16,4,6,8,28,15,16,1,28,7,14,1,8,1,28,8,6,1,28,19,12,1,1,113,}, + {1,221,14,1,6,1,28,1,30,1,28,3,14,1,8,1,6,5,13,1,6,1,8,1,13,2,6,1,8,2,6,13,8,1,13,1,6,1,30,2,6,1,8,1,6,17,16,4,6,4,8,1,6,2,28,1,30,1,8,1,9,1,13,1,30,1,6,2,16,1,30,1,28,2,8,1,16,1,6,1,28,1,30,1,13,2,6,1,30,1,13,1,6,1,13,2,6,1,8,1,6,1,8,1,28,1,6,1,28,1,30,1,8,1,16,1,9,1,1,1,11,3,14,2,8,1,16,4,8,1,6,9,30,1,28,1,30,1,8,1,6,1,28,3,6,3,28,1,30,1,13,1,28,3,6,17,30,1,28,1,30,2,6,4,28,3,6,2,30,1,28,1,30,1,6,13,16,1,8,1,13,1,6,11,28,1,6,1,13,1,8,1,16,2,6,1,28,1,6,1,30,1,6,3,30,1,6,6,16,1,13,2,6,12,13,2,6,1,8,1,6,6,13,1,6,3,16,1,6,3,13,1,6,1,13,2,6,6,8,1,6,5,13,1,6,1,30,1,6,2,13,1,6,1,13,1,6,1,30,1,6,3,30,2,13,1,6,3,13,1,8,1,6,10,14,1,16,1,6,6,8,1,16,1,6,2,16,2,6,3,16,2,8,1,16,5,6,3,16,3,8,4,16,3,8,1,16,2,8,1,6,13,13,1,6,1,28,1,6,1,16,3,8,1,6,1,8,2,28,8,6,1,7,1,28,4,16,1,14,1,28,6,6,2,28,21,1,114,}, + {1,220,28,7,9,1,16,1,6,3,8,1,6,3,8,1,7,1,6,2,8,2,6,13,16,1,6,1,30,2,6,2,13,2,8,1,6,13,8,3,16,4,8,3,6,2,8,1,6,2,28,2,8,2,13,1,6,1,13,1,9,1,28,2,6,1,8,1,6,1,30,1,6,1,13,1,6,5,30,1,6,1,13,1,6,1,13,1,6,2,8,1,6,1,28,1,13,2,28,1,7,1,14,1,1,1,11,3,14,1,16,1,8,1,16,4,8,1,6,9,30,1,28,1,6,1,30,1,6,6,13,1,28,3,30,1,6,15,13,1,6,1,28,2,30,1,6,9,28,6,30,1,6,2,30,2,13,1,6,5,13,1,6,1,16,1,8,1,6,12,28,2,13,1,16,1,6,1,28,1,6,12,16,1,6,1,8,1,6,1,16,1,8,1,6,1,30,1,6,9,8,1,6,1,13,1,6,14,13,2,6,8,13,2,8,1,6,3,8,1,6,2,13,1,6,2,8,1,6,1,28,1,13,1,6,2,13,1,6,2,28,1,6,5,16,1,6,8,16,3,6,8,14,1,16,2,6,1,16,1,6,1,16,8,6,2,8,1,16,2,8,1,16,5,6,1,16,3,6,1,8,2,6,1,16,2,8,1,6,2,13,1,6,1,13,1,6,5,28,1,6,1,16,1,8,1,6,2,28,3,6,2,7,1,28,6,6,2,8,1,6,2,8,1,16,1,6,1,28,28,8,1,1,114,}, + {1,218,8,1,28,2,30,1,28,5,16,1,6,2,8,2,6,2,7,1,6,1,8,2,6,2,16,1,6,13,8,1,16,1,30,2,28,4,6,1,8,2,6,10,8,1,16,5,8,2,6,1,8,2,6,4,13,2,6,1,30,1,28,1,6,1,16,1,8,1,6,1,28,2,13,1,6,2,30,1,28,1,6,1,8,1,6,3,16,1,6,1,28,1,13,1,6,1,13,1,6,2,8,1,14,2,16,1,8,1,16,1,6,2,8,1,1,1,11,4,14,1,16,1,8,1,16,3,8,2,6,21,30,1,6,16,13,1,6,2,30,2,6,13,13,1,6,1,28,1,13,1,6,1,28,1,6,1,8,1,6,8,8,1,6,14,28,3,6,4,30,1,6,6,8,1,16,1,8,1,6,3,8,1,6,1,28,1,6,14,8,1,6,5,13,1,6,3,8,1,6,3,13,1,6,1,8,2,6,3,16,1,13,1,8,1,6,5,13,1,6,1,13,1,16,1,6,2,8,1,6,1,13,1,6,3,13,1,6,8,8,1,16,3,13,2,16,1,8,2,6,3,16,1,6,3,13,1,6,3,8,1,16,1,8,2,6,1,8,1,16,7,8,1,28,1,8,1,6,1,16,8,6,2,16,2,8,2,6,1,8,1,6,2,16,1,8,1,6,4,13,1,6,3,28,1,16,2,6,1,28,8,6,1,9,1,28,7,6,4,28,30,7,1,1,114,}, + {1,216,14,1,30,1,28,1,30,1,9,1,6,1,28,4,8,2,6,2,8,2,7,1,6,1,16,1,6,2,8,1,6,1,16,1,6,6,13,1,6,6,13,1,16,1,6,4,13,1,28,1,6,3,16,1,6,8,8,1,16,6,8,2,16,1,8,1,13,1,6,3,13,1,6,2,13,2,6,2,30,2,6,1,28,2,13,1,6,4,30,1,28,1,6,4,14,1,30,1,28,1,8,1,6,4,8,1,16,2,6,1,8,1,6,1,16,1,13,1,6,1,16,1,1,1,11,3,14,2,8,2,16,3,8,1,6,20,8,1,6,17,30,1,6,1,28,2,30,2,6,9,30,1,6,4,28,1,6,3,13,1,6,6,13,2,28,1,6,14,8,1,6,1,30,2,6,9,8,1,16,4,6,1,28,1,30,1,13,1,28,1,6,12,16,1,6,1,8,1,16,1,6,4,13,1,6,1,13,1,6,2,16,2,6,1,8,3,6,1,13,2,6,3,8,4,6,3,13,1,6,14,13,1,6,8,16,1,14,1,16,1,8,1,16,1,8,1,6,3,16,1,8,1,6,5,16,1,8,1,16,1,8,1,6,2,16,2,8,1,6,1,16,17,6,1,8,1,16,1,7,1,16,1,8,1,16,1,8,2,28,1,16,1,6,2,13,1,6,4,28,1,16,2,6,2,28,1,30,1,28,7,6,1,8,1,28,40,17,1,1,114,}, + {1,214,14,1,6,1,28,1,29,1,6,1,28,6,6,1,16,1,6,2,7,1,8,1,6,2,8,1,7,1,6,1,8,1,6,1,8,1,16,1,6,12,8,1,14,1,8,1,6,8,13,1,6,1,16,1,6,3,13,1,6,1,8,1,16,7,8,3,13,1,6,3,13,2,6,2,8,1,6,1,13,1,8,1,13,1,6,1,28,2,30,1,6,9,28,1,6,1,8,1,6,1,28,1,6,4,8,1,16,1,6,2,28,1,6,2,8,1,6,1,13,1,16,1,6,1,1,2,11,2,14,2,16,1,6,1,16,4,8,2,6,17,13,1,28,2,6,16,13,1,6,1,28,1,30,1,6,16,8,1,28,2,6,1,13,1,6,6,13,1,8,1,6,1,8,1,16,1,6,12,13,2,28,1,6,9,16,3,13,3,6,2,30,1,6,1,13,1,6,12,8,1,6,2,16,2,6,8,16,1,14,1,6,1,7,1,8,1,6,1,8,1,6,8,8,1,6,1,13,1,6,1,13,1,6,6,13,1,6,8,13,1,6,2,13,1,6,5,13,3,6,3,8,1,13,1,6,1,16,5,14,1,6,1,8,1,6,3,16,3,6,1,8,2,16,1,8,1,6,1,8,1,16,4,8,1,16,1,8,1,16,5,6,1,8,1,16,1,7,1,8,1,16,1,8,3,28,1,6,1,16,1,6,6,28,1,16,1,8,1,6,1,30,1,6,1,28,8,29,1,16,1,6,1,28,39,1,115,}, + {1,213,9,1,28,3,30,1,28,2,30,1,28,4,13,1,8,1,6,1,7,1,8,1,6,1,8,1,6,1,16,1,6,2,13,1,6,1,8,1,6,2,13,1,6,9,7,1,14,1,16,1,6,2,13,1,6,4,28,2,6,3,14,1,8,1,28,1,6,1,16,7,8,1,6,2,30,1,28,8,6,1,13,2,6,1,8,1,16,1,8,1,6,8,8,1,16,2,8,3,30,1,28,1,30,1,8,1,13,1,6,2,16,1,14,1,6,1,28,2,6,2,13,2,6,1,16,1,6,1,9,1,1,1,11,3,14,2,16,1,6,1,16,4,6,1,8,1,6,7,13,1,6,7,16,1,8,1,6,17,8,1,6,2,30,1,6,17,8,1,13,1,28,3,6,1,8,1,6,4,8,1,16,1,8,2,6,11,13,2,8,1,6,10,16,2,8,1,16,1,6,1,28,3,6,3,8,1,6,12,8,1,6,3,8,1,6,9,14,1,16,1,6,1,8,1,7,1,6,1,8,2,6,4,16,1,8,2,6,1,8,1,6,3,13,1,6,2,8,1,13,1,6,10,13,1,6,1,13,1,6,3,8,2,30,1,28,1,6,3,28,2,6,1,13,1,6,1,8,1,16,4,6,1,8,1,6,3,8,1,16,2,6,1,8,1,6,1,8,1,16,1,6,1,8,1,16,1,8,2,16,5,8,1,16,3,6,2,16,2,8,3,6,1,8,1,13,1,28,1,16,1,8,1,6,4,28,1,8,1,16,1,13,1,28,2,6,1,30,1,28,1,30,1,28,5,6,1,16,1,6,1,28,39,1,115,}, + {1,211,14,1,6,1,28,1,30,1,28,4,30,1,13,1,28,2,30,1,6,1,8,1,6,1,8,2,7,1,8,1,6,1,16,1,8,1,6,1,7,1,6,1,16,1,6,13,16,2,6,3,8,1,6,5,28,1,6,2,8,1,6,1,8,1,14,1,16,2,14,1,16,3,8,1,6,1,28,15,6,1,8,2,16,1,8,1,13,1,6,4,14,2,16,1,8,3,16,4,6,3,8,3,6,1,30,1,28,1,8,2,6,2,8,1,6,1,8,2,28,1,1,2,11,3,14,2,7,2,16,4,8,1,6,6,13,1,6,7,16,1,8,1,28,1,30,1,6,18,13,1,28,1,6,16,13,2,6,1,28,2,6,4,8,2,6,1,8,4,28,1,6,9,8,1,6,1,8,3,6,8,16,1,8,1,6,1,8,1,28,5,6,3,8,1,16,1,6,10,16,2,13,1,6,2,13,1,6,5,13,1,6,3,16,1,8,1,6,1,8,5,6,1,8,1,6,2,16,1,8,2,16,1,6,6,13,1,16,1,8,1,13,1,8,1,6,12,8,1,28,1,6,2,30,1,13,2,6,2,13,1,6,1,28,2,6,2,16,1,6,2,16,2,13,1,6,4,16,1,8,2,6,1,8,2,6,1,16,1,8,1,6,1,16,1,8,1,16,9,6,1,16,1,8,1,16,2,6,1,8,2,6,1,8,1,28,1,6,1,16,1,6,4,28,1,14,1,16,1,6,1,28,1,6,1,28,1,30,1,28,7,16,1,8,1,6,1,28,38,8,1,1,115,}, + {1,210,29,1,28,1,30,1,28,7,6,1,28,2,30,1,6,1,8,6,6,1,16,1,6,3,8,1,6,3,13,1,6,9,14,1,16,1,6,1,28,1,6,2,8,1,16,1,8,2,13,1,16,2,6,2,8,1,6,3,8,1,16,2,8,1,16,1,6,1,28,3,6,2,13,3,6,1,13,4,6,2,30,1,28,3,13,1,8,1,6,2,13,1,6,1,16,1,14,1,8,1,6,3,28,1,6,1,8,1,6,1,16,3,6,3,8,1,16,1,30,1,28,1,8,4,6,1,13,1,8,3,28,1,16,1,1,1,11,3,14,2,16,1,6,1,7,1,16,3,8,2,6,10,8,2,16,1,8,1,6,18,8,1,6,1,16,1,30,2,6,15,16,1,8,1,13,1,28,1,30,3,13,1,6,1,16,4,6,3,8,2,6,6,8,6,6,1,8,1,6,7,8,1,16,2,6,1,28,1,30,1,6,3,30,1,6,1,30,2,6,1,16,2,28,1,6,7,16,2,8,1,6,5,8,1,6,8,8,1,6,2,8,4,16,1,8,2,6,1,16,2,6,1,8,1,16,1,6,1,7,1,6,3,8,1,16,1,14,1,6,14,8,2,6,1,28,1,13,1,6,1,13,1,6,4,13,1,6,1,30,1,28,1,6,1,13,1,8,1,6,1,8,1,6,2,8,7,16,1,6,1,16,4,8,2,6,1,16,7,8,1,6,1,16,1,8,2,16,2,6,4,13,1,28,1,8,1,16,1,6,2,30,1,6,1,16,1,6,1,30,1,6,2,29,1,6,1,28,6,6,1,16,1,6,1,28,39,7,1,1,115,}, + {1,208,14,1,6,1,29,1,28,9,6,1,30,1,13,1,28,1,8,1,6,1,8,1,7,1,16,1,8,2,16,1,8,1,6,1,13,1,6,1,16,1,6,3,13,1,6,7,8,1,14,2,6,1,28,1,6,4,16,1,14,1,16,3,8,1,16,2,8,1,6,4,13,1,8,1,13,1,28,2,6,1,13,3,6,13,13,1,28,1,6,1,13,1,6,1,28,1,16,3,6,2,28,3,30,2,28,4,8,1,16,1,6,2,13,1,8,2,6,1,8,1,6,1,8,3,6,1,8,1,16,1,8,1,16,2,14,1,1,1,11,3,14,2,8,1,6,1,16,4,8,1,6,25,13,1,6,5,13,1,8,1,13,1,30,1,28,1,6,15,16,2,8,1,6,1,28,1,6,2,28,2,13,1,8,1,16,3,6,3,13,1,16,1,6,2,8,2,16,5,8,2,6,10,16,1,6,1,8,1,28,1,6,8,28,2,6,1,16,2,6,6,16,2,8,1,6,1,28,2,30,1,6,2,16,1,8,2,6,6,16,1,6,2,8,5,16,1,8,1,6,1,16,1,14,1,6,1,8,1,16,1,8,2,6,1,8,1,6,2,8,1,14,1,6,1,8,1,6,10,13,1,6,1,8,2,6,3,13,1,6,6,8,2,13,1,6,2,8,1,6,4,8,1,6,1,8,2,6,1,8,1,6,1,8,2,16,5,6,2,16,11,8,2,16,1,8,1,6,2,13,2,28,1,30,1,16,1,13,1,6,1,28,1,16,1,14,1,30,1,6,2,30,1,28,1,29,1,28,5,8,1,16,1,8,1,28,5,6,1,28,34,1,116,}, + {1,207,14,1,28,1,30,1,28,9,30,1,13,1,16,1,28,1,30,1,8,1,6,1,16,5,8,1,6,2,8,1,30,1,6,11,16,1,14,1,16,1,6,1,28,1,6,11,13,2,6,3,13,2,8,1,28,2,6,1,13,1,6,16,13,1,6,1,13,1,6,3,7,1,16,1,8,1,6,1,30,1,28,2,6,1,8,1,6,2,13,1,6,3,30,1,8,1,16,1,6,1,8,1,6,1,13,2,6,1,16,1,8,4,6,1,8,2,14,1,16,2,1,2,11,3,14,2,6,1,16,4,8,2,6,15,13,1,6,15,13,1,6,1,28,1,30,1,6,14,16,1,6,1,13,2,28,1,6,4,30,1,28,1,6,1,8,2,6,3,30,1,6,2,14,1,8,1,16,8,8,2,6,1,8,2,6,5,8,1,6,1,13,1,28,1,6,4,30,1,6,2,13,1,8,1,6,4,8,1,14,1,6,3,8,1,16,3,8,1,28,4,30,1,6,2,16,1,8,1,6,6,16,1,6,1,13,1,8,2,7,1,8,4,6,1,8,1,14,1,6,1,8,1,16,1,8,3,6,3,16,2,6,2,16,1,6,11,8,1,6,7,13,1,6,1,8,1,13,1,6,1,13,1,6,1,13,1,6,2,16,2,6,1,8,1,6,5,8,3,6,1,16,1,8,2,16,2,6,1,8,1,6,1,14,1,6,1,8,1,6,1,7,1,8,2,16,1,8,2,16,1,6,1,8,3,6,4,28,1,9,1,16,1,6,1,28,1,14,1,16,1,6,3,28,1,29,1,28,5,16,2,8,1,28,41,1,116,}, + {1,206,14,1,28,3,30,1,28,2,30,1,28,5,13,1,30,1,28,2,6,1,16,5,8,2,6,3,8,1,6,3,8,1,7,1,6,4,16,1,14,1,16,3,28,1,6,4,28,12,30,1,6,2,13,1,28,2,13,2,6,18,13,1,6,4,8,2,6,1,28,2,6,1,8,1,6,6,13,2,6,1,28,1,6,2,8,2,6,1,7,1,8,6,6,1,7,1,16,1,14,1,16,2,11,6,14,1,16,1,6,1,16,5,6,15,13,1,6,17,28,1,6,13,13,1,16,1,6,3,28,2,6,5,8,1,6,3,28,4,6,3,16,3,8,2,6,7,13,1,16,1,6,5,16,1,8,1,13,1,6,9,13,2,6,2,13,1,6,2,16,6,8,1,6,1,30,1,6,2,30,2,6,2,8,1,16,1,6,1,13,1,6,4,14,1,6,3,8,2,16,1,8,2,16,1,6,1,8,1,14,1,6,1,16,1,13,1,6,2,8,1,6,2,16,1,14,1,6,1,8,1,6,1,8,1,16,1,6,10,8,1,16,1,6,9,8,1,13,1,6,5,8,2,16,3,8,3,28,1,16,2,8,1,6,1,8,4,16,1,8,1,6,2,16,1,6,5,8,2,6,2,8,2,6,1,8,1,16,2,6,1,28,1,6,1,28,1,6,3,28,1,14,1,16,1,28,1,6,1,28,2,6,1,28,3,8,1,16,1,8,1,6,1,28,41,8,1,1,116,}, + {1,205,14,1,30,1,28,5,30,2,28,2,29,1,28,2,6,1,30,1,28,1,30,1,6,1,16,3,8,2,7,1,8,1,6,1,8,3,6,4,16,1,8,1,16,2,14,1,16,2,8,1,6,2,13,3,30,1,28,2,30,1,6,5,30,1,28,3,30,1,6,1,13,1,6,1,28,1,6,1,13,1,6,3,13,1,6,19,7,1,6,1,8,2,28,2,6,1,8,1,6,9,13,1,6,4,8,1,6,2,16,1,7,1,8,1,6,1,8,2,6,2,16,1,28,1,6,1,16,1,14,1,1,1,11,4,14,2,7,1,6,1,16,4,6,4,13,1,6,14,13,1,6,9,13,1,16,1,8,1,28,1,30,1,6,13,8,1,6,1,13,1,6,1,30,1,28,1,6,6,13,1,6,1,28,2,6,1,13,1,6,1,28,2,6,1,13,1,6,1,13,1,6,1,30,1,28,1,30,1,28,3,6,1,30,1,6,2,8,1,16,1,6,3,8,3,6,11,13,2,6,5,8,1,16,2,8,1,16,1,6,1,28,1,6,6,13,1,6,1,8,1,6,1,8,1,6,3,16,2,6,1,28,1,6,1,8,1,16,1,6,1,16,2,8,3,16,1,6,1,28,1,6,3,16,5,6,1,8,2,7,1,16,2,6,8,16,1,8,1,13,1,6,1,13,1,6,6,8,1,6,2,8,2,6,2,8,1,16,1,6,2,16,5,8,1,16,1,8,2,6,4,8,1,16,1,8,1,6,1,16,3,6,2,8,4,6,3,16,1,8,6,6,1,28,1,16,1,6,2,28,1,14,1,8,1,28,1,30,1,6,1,28,3,16,3,6,2,28,42,8,1,1,116,}, + {1,204,14,1,28,5,30,1,9,1,6,1,28,1,30,1,28,3,6,2,28,1,30,2,13,1,8,1,6,4,8,3,16,1,8,1,16,1,6,4,8,1,16,4,8,1,6,3,13,1,6,1,28,3,6,1,13,3,6,4,13,2,6,3,13,1,6,2,28,1,13,1,6,17,8,1,6,6,8,2,6,2,30,1,16,2,6,5,13,1,6,5,8,1,6,4,16,1,6,2,8,1,7,1,16,1,8,3,28,1,8,1,28,2,16,2,11,5,14,1,11,1,16,1,6,1,16,4,8,2,6,12,13,1,6,4,13,2,30,1,6,7,30,1,16,1,8,1,30,1,6,13,8,1,6,4,28,1,6,15,30,1,6,3,28,2,30,1,6,1,13,3,6,1,30,1,6,4,16,5,8,2,6,13,28,3,6,2,13,1,8,1,6,3,28,1,6,8,13,1,8,3,16,1,8,2,16,1,8,1,28,1,6,2,8,2,16,2,8,1,16,1,8,1,6,1,14,1,7,1,6,4,8,1,16,2,8,3,6,1,8,2,6,1,8,1,16,1,6,8,8,1,13,1,8,1,6,5,13,1,6,2,8,1,6,2,8,2,6,1,16,2,6,1,28,1,6,2,8,4,16,1,7,1,8,2,6,3,8,3,6,2,16,2,6,1,16,5,8,1,6,3,8,1,6,1,8,2,6,1,8,1,16,2,8,1,6,2,28,1,9,1,14,1,28,4,6,1,16,2,8,1,6,1,28,3,29,1,6,1,28,1,8,1,28,37,1,117,}, + {1,203,14,1,28,5,13,1,16,1,6,1,28,1,30,2,28,2,6,4,28,1,6,1,28,1,6,3,8,1,13,1,6,1,28,1,6,10,8,1,6,3,13,2,6,1,28,2,6,1,13,2,6,1,13,1,6,8,8,1,6,2,8,1,6,9,13,2,8,1,6,1,8,1,6,5,7,1,6,8,14,1,8,1,6,3,16,1,6,1,8,1,16,1,8,1,6,9,8,1,13,1,6,1,8,3,28,1,8,1,6,1,16,1,8,2,16,1,28,1,13,1,28,1,8,1,16,1,8,1,16,1,1,1,11,5,14,1,16,6,8,1,6,11,13,3,6,2,16,1,8,1,6,3,13,1,8,1,6,4,28,1,13,1,6,14,7,1,8,1,6,2,30,1,28,1,6,18,28,3,6,10,13,1,6,1,8,2,16,1,8,1,16,1,8,1,6,1,30,1,6,10,30,1,6,1,28,1,13,1,6,1,28,1,30,1,6,4,28,1,6,10,8,2,6,1,16,4,6,1,13,1,8,1,13,1,6,1,16,1,6,1,16,3,8,1,16,3,7,1,8,1,6,1,8,2,7,1,8,1,6,2,8,2,6,1,8,1,6,2,8,1,16,1,13,1,6,4,8,1,6,1,16,1,6,2,8,1,16,1,6,1,28,1,6,5,8,2,16,1,8,1,16,1,14,1,16,1,6,1,13,1,6,3,8,1,6,1,8,1,16,1,6,2,8,1,6,4,13,1,8,1,6,2,16,2,6,1,16,1,8,2,16,1,8,3,28,1,6,1,16,1,13,1,8,2,6,2,13,1,6,4,28,1,6,1,8,1,16,1,9,1,8,1,6,1,16,1,8,2,28,2,6,1,8,2,16,1,8,1,28,1,8,1,6,1,28,36,1,117,}, + {1,202,9,1,28,1,30,2,28,1,30,1,16,1,6,1,28,1,30,4,28,1,6,1,9,1,6,1,28,1,6,2,8,3,16,2,8,1,6,1,28,1,30,1,28,4,6,1,28,1,6,6,8,1,13,1,28,2,6,15,8,1,6,2,8,2,6,2,13,1,6,8,8,3,6,1,7,2,8,4,7,1,16,1,8,3,6,1,16,1,8,1,6,8,16,3,6,6,13,1,6,1,8,2,6,1,7,1,8,1,16,1,28,1,6,2,16,1,8,1,16,1,6,1,13,1,6,1,7,1,16,2,6,1,1,1,11,4,14,2,16,6,8,1,6,5,13,1,6,3,8,1,6,4,13,1,6,12,28,1,6,15,16,1,8,1,13,1,30,1,28,1,6,10,30,2,6,7,28,2,6,10,13,1,8,3,6,1,8,3,6,2,30,1,6,16,28,1,30,1,6,4,13,1,6,9,8,1,13,1,6,2,8,1,16,1,8,1,6,1,13,1,8,2,6,1,8,1,16,1,6,1,16,4,14,1,8,4,6,5,8,2,16,1,8,3,6,2,13,1,16,2,6,3,8,1,16,1,6,3,8,1,16,1,14,1,8,1,28,1,6,2,16,4,8,2,16,1,14,1,6,2,13,1,8,1,6,2,28,1,6,1,8,1,13,1,6,8,8,1,6,2,16,2,6,1,8,2,6,1,8,1,16,1,8,3,28,1,6,1,8,1,6,6,8,1,6,3,28,1,6,7,28,2,8,1,16,1,8,1,6,2,28,2,16,1,8,1,28,25,29,1,28,6,29,1,28,3,1,117,}, + {1,200,9,1,28,2,30,1,28,2,30,1,13,1,30,1,28,2,6,1,28,1,30,1,28,1,6,1,16,2,28,1,30,1,6,1,8,1,13,1,8,1,16,3,6,2,16,1,8,3,13,1,8,1,6,1,13,1,6,1,16,1,6,2,8,1,6,1,28,1,30,1,6,1,13,1,6,15,16,1,6,2,16,1,6,3,8,1,6,5,7,1,6,1,8,4,16,14,28,1,6,4,8,1,6,1,8,2,28,1,6,1,16,1,14,1,16,1,6,4,13,1,6,1,16,1,8,1,16,1,6,1,8,3,6,3,8,1,16,1,8,4,16,2,6,1,14,1,1,1,11,4,14,2,16,6,8,1,6,13,28,1,6,3,30,1,6,6,16,2,8,1,13,1,6,13,8,1,6,3,28,1,6,1,13,1,6,7,13,1,6,2,28,1,6,6,16,1,6,14,30,2,6,10,13,1,6,13,30,2,6,2,8,1,13,1,6,10,8,1,6,3,8,2,6,2,8,3,6,1,16,2,6,1,16,3,14,1,8,2,16,2,8,1,6,1,8,1,6,3,8,1,16,1,8,3,6,2,13,1,6,1,8,1,16,4,6,3,28,1,6,1,8,1,6,1,14,1,16,5,8,1,16,2,8,1,16,2,6,1,8,2,6,1,13,2,6,2,28,2,13,1,8,1,6,9,16,3,8,8,6,1,28,1,8,2,6,3,13,1,6,5,30,1,6,5,28,2,7,1,16,1,8,1,6,1,28,4,6,1,16,1,28,25,29,1,28,10,7,1,1,117,}, + {1,198,14,1,6,1,28,2,30,2,28,1,13,1,8,1,28,3,6,4,8,1,14,1,6,1,28,2,6,1,13,1,6,2,8,1,16,2,6,1,8,2,6,1,8,2,6,6,16,1,6,2,28,1,30,1,13,2,6,17,16,1,6,1,8,2,6,2,13,1,14,1,6,4,8,1,16,19,8,1,6,2,8,2,16,2,8,1,16,3,6,3,13,1,8,1,16,2,13,1,6,2,16,1,6,1,14,1,6,1,7,1,8,2,16,1,8,1,6,1,16,2,6,1,16,2,6,1,8,1,16,2,8,1,1,1,11,5,14,1,16,7,8,1,6,11,13,1,6,1,13,2,6,4,8,1,6,2,14,1,13,1,28,2,8,1,6,1,13,1,6,3,13,1,6,8,13,1,8,1,28,1,6,1,13,1,6,8,8,1,6,2,28,1,6,6,13,1,6,12,13,1,28,5,30,2,6,13,13,1,6,1,8,1,6,5,30,2,6,1,13,1,16,1,6,12,13,1,6,1,8,1,16,1,6,2,8,1,13,1,8,1,16,1,6,1,16,1,6,1,8,1,16,3,8,1,16,4,6,1,8,1,16,1,8,1,16,1,6,1,13,1,6,1,28,2,6,3,8,2,16,1,8,1,16,1,8,1,13,1,6,3,28,1,6,1,16,2,6,1,16,1,8,4,6,2,8,1,6,1,8,1,6,1,8,1,6,1,8,1,6,2,13,1,6,3,28,1,6,1,16,2,6,8,16,4,6,1,8,3,6,2,8,1,28,1,8,1,16,1,6,11,30,1,6,1,30,1,29,1,28,1,16,2,6,1,28,5,6,1,16,1,6,1,28,14,6,1,28,21,17,1,1,117,}, + {1,197,28,5,6,2,16,1,13,1,28,3,6,3,14,1,8,1,14,1,6,1,28,1,30,1,28,1,6,1,13,1,6,1,8,1,16,1,8,1,6,2,7,1,8,2,6,7,13,1,14,1,6,3,13,1,6,18,8,1,16,2,8,2,6,3,8,1,16,26,8,3,16,1,8,1,16,1,8,4,6,1,28,1,6,4,8,3,16,1,8,1,6,1,28,1,8,4,7,1,8,1,14,1,8,1,16,1,8,1,16,1,6,1,16,3,8,1,11,1,1,1,11,4,14,2,16,6,8,1,6,18,30,1,6,1,16,1,8,1,6,1,28,1,13,1,28,2,13,1,6,1,8,1,6,6,13,2,30,1,13,2,8,1,6,1,30,1,6,10,13,1,8,1,6,1,30,1,6,8,13,1,6,1,8,1,6,9,30,1,28,5,30,1,13,1,6,4,13,1,6,7,8,1,6,1,8,1,6,6,28,1,30,1,6,1,8,1,13,1,6,15,16,1,6,1,8,1,6,1,8,1,16,1,8,1,6,1,16,1,6,1,16,7,8,1,16,1,6,1,16,1,6,1,13,2,28,2,6,1,13,2,6,7,28,1,6,4,13,1,6,3,13,1,8,1,6,4,8,1,6,4,8,1,16,2,6,1,8,1,6,6,30,1,6,1,16,2,6,8,16,3,8,1,6,1,8,1,6,1,8,2,6,1,28,1,6,1,16,1,6,1,8,1,6,8,30,1,6,2,28,3,14,1,8,1,28,5,8,1,16,1,8,1,28,14,7,1,28,3,6,1,28,18,1,118,}, + {1,195,8,1,28,6,30,1,6,1,30,1,28,2,30,1,8,2,6,2,8,1,6,2,28,1,30,2,28,2,30,1,13,1,8,1,16,1,6,1,8,2,6,1,8,2,6,7,13,1,14,1,6,2,13,1,6,16,28,1,6,1,16,1,14,1,16,2,8,1,13,1,6,2,30,2,8,1,16,5,8,2,16,7,8,1,16,9,8,5,13,2,6,6,13,1,6,1,30,1,6,4,8,1,28,2,6,1,16,3,7,1,16,1,6,3,28,1,7,1,8,1,16,1,6,1,16,2,8,1,14,1,1,1,11,4,14,3,16,6,8,1,6,20,28,2,13,2,8,1,28,2,6,2,8,1,6,8,13,1,6,1,8,1,6,2,13,1,6,8,8,1,6,1,13,1,28,1,6,1,13,2,6,5,13,1,8,1,6,13,13,1,6,1,13,1,6,15,13,1,6,1,8,1,6,5,13,1,6,1,28,1,6,1,13,1,8,1,6,11,28,1,6,1,8,1,16,1,7,1,6,1,8,1,6,2,8,1,16,1,6,1,14,1,8,2,16,2,8,1,16,5,6,1,8,3,28,1,6,1,8,2,13,4,6,3,16,1,6,7,30,1,6,5,8,1,6,4,8,1,6,2,8,1,16,3,6,1,7,1,6,6,28,1,6,1,16,1,8,1,6,4,30,2,6,2,16,1,8,1,16,1,6,2,8,1,6,3,28,1,6,1,16,1,13,1,6,8,30,3,28,2,30,1,28,1,16,2,28,3,8,1,16,2,6,1,28,13,6,1,8,1,28,4,6,1,28,18,1,118,}, + {1,193,14,1,28,1,29,1,30,2,28,2,30,1,6,1,30,1,28,3,6,1,14,1,13,1,28,4,6,1,28,1,6,2,30,1,28,1,13,1,6,1,8,3,6,1,8,4,6,2,8,1,7,1,6,4,8,1,14,1,6,17,28,1,6,1,8,1,16,4,6,1,13,1,8,1,6,4,28,1,30,1,6,3,13,1,6,1,8,1,13,1,8,5,16,4,8,1,16,4,6,2,30,1,28,9,30,1,6,1,16,1,14,1,8,1,6,6,28,1,6,1,8,1,16,1,14,1,16,1,8,1,6,1,16,1,28,3,16,1,8,1,16,3,14,1,16,2,11,6,14,2,16,7,8,1,6,13,13,1,6,5,28,1,6,1,13,3,8,1,30,1,6,3,16,3,13,1,6,3,8,3,6,1,28,1,6,10,8,2,13,1,6,1,13,2,6,10,8,1,6,2,8,1,6,5,13,1,6,16,13,1,6,4,8,1,6,6,13,1,6,1,28,1,6,13,13,1,6,1,8,1,16,2,6,1,8,2,6,1,8,3,16,2,8,1,16,8,8,2,16,2,28,1,16,2,8,3,6,5,16,2,8,1,6,7,30,1,6,2,13,1,6,4,8,1,6,1,16,1,6,2,8,2,16,1,8,1,6,8,28,1,16,2,7,1,6,3,30,1,28,1,30,1,6,1,8,1,16,1,8,2,6,1,8,1,6,3,28,1,6,1,16,1,6,2,13,1,6,1,28,6,30,1,28,1,6,1,28,4,8,2,6,1,16,1,8,2,28,4,6,2,7,1,28,8,16,1,28,4,7,1,28,18,7,1,1,118,}, + {1,191,14,1,30,1,28,6,30,3,28,2,30,1,8,1,14,1,6,1,28,2,30,2,28,1,30,1,6,3,30,1,6,1,16,1,6,1,16,1,7,2,6,1,8,1,7,1,6,3,8,1,6,6,14,1,16,1,6,17,16,6,6,5,8,1,6,2,30,1,6,1,13,1,6,7,8,2,16,1,8,2,16,1,8,1,6,1,8,1,6,4,30,1,28,8,30,4,28,1,6,1,8,1,14,1,8,1,6,1,13,1,6,3,8,1,16,3,6,5,16,5,14,2,8,1,16,2,7,1,14,1,1,1,11,4,14,3,16,6,8,1,6,9,8,1,6,2,13,1,6,5,8,1,6,2,13,1,6,6,28,1,6,1,16,1,6,1,13,1,8,1,9,1,16,1,13,2,6,1,30,2,6,5,13,2,6,2,8,3,13,1,6,1,13,2,6,6,8,1,6,1,13,1,6,10,8,1,6,21,13,1,8,1,6,7,30,1,6,1,30,1,6,12,13,1,8,1,16,2,6,2,8,1,6,2,8,1,16,1,6,1,14,1,16,3,8,1,16,6,8,1,14,1,6,2,16,1,8,3,6,2,8,1,6,3,16,1,14,1,6,8,30,1,6,1,8,1,6,3,16,1,6,2,8,1,16,2,6,1,28,1,6,2,16,1,8,2,6,6,28,1,6,1,14,1,16,1,6,3,28,3,13,1,6,1,8,1,16,1,8,1,6,4,16,1,28,1,8,2,6,1,8,1,28,2,6,3,16,2,6,2,28,3,6,1,28,3,6,2,13,1,6,1,28,2,8,1,6,1,28,4,14,1,28,6,9,1,28,5,16,1,28,18,7,1,1,118,}, + {1,190,29,1,28,8,30,1,6,1,30,1,28,1,30,1,8,1,14,1,6,1,28,1,6,3,28,1,30,1,6,5,14,1,6,1,16,2,8,1,6,1,8,1,7,1,6,1,7,1,6,2,13,1,6,5,7,1,14,1,6,15,28,1,6,1,16,5,8,1,6,1,13,2,6,2,13,1,28,7,6,3,28,3,6,3,8,2,13,1,6,2,28,7,6,2,13,1,8,6,13,2,6,1,13,1,6,1,8,1,14,1,16,1,6,3,16,1,14,1,6,1,28,4,6,1,8,1,14,1,6,1,16,1,8,1,16,2,8,1,16,2,6,3,14,1,11,7,14,1,16,7,8,1,6,11,8,1,6,1,13,1,6,3,13,1,6,3,8,1,6,5,13,2,6,1,28,2,6,4,28,3,13,1,16,1,6,7,8,2,16,1,6,1,28,1,6,2,13,1,6,4,8,1,6,4,8,1,6,1,8,1,7,1,6,1,8,1,6,1,8,1,6,13,13,1,6,7,13,1,6,1,13,1,6,1,16,1,6,10,8,1,6,12,8,1,16,2,6,2,16,1,8,1,6,1,16,2,6,1,16,2,8,1,6,4,16,9,8,1,16,1,8,5,6,1,8,1,14,1,6,2,7,1,6,7,28,1,6,2,16,1,8,2,6,2,8,2,16,1,8,2,6,1,16,1,6,1,8,1,6,7,30,1,28,1,16,1,14,1,16,1,8,1,6,1,28,1,6,4,13,2,8,1,14,1,6,3,28,2,16,1,6,2,28,1,6,1,16,2,8,1,6,4,13,1,16,1,7,1,28,3,29,1,28,5,8,2,28,6,14,1,28,6,6,1,28,3,29,1,14,1,28,19,12,1,1,118,}, + {1,188,8,1,28,7,30,1,28,1,30,1,13,1,30,3,28,1,8,1,6,1,28,1,6,4,28,1,6,4,28,1,16,2,6,1,16,1,8,1,16,1,8,1,6,1,8,4,6,2,13,1,6,4,16,1,14,1,6,1,13,1,6,13,16,4,8,1,6,7,30,1,28,2,6,3,13,4,8,1,6,5,8,3,6,2,28,3,30,1,6,4,8,1,16,1,8,3,6,1,8,2,6,2,13,1,6,5,16,2,8,1,6,2,14,1,8,1,28,2,8,4,6,1,13,1,16,1,8,1,16,3,28,2,8,1,16,2,6,1,14,2,11,6,14,2,16,6,8,1,6,2,13,1,6,22,13,1,6,2,28,2,6,4,13,1,28,1,30,1,6,2,28,1,6,1,8,2,6,2,13,2,8,1,16,2,13,1,6,1,28,1,8,1,6,2,13,1,6,6,13,1,6,1,8,1,13,1,6,2,7,1,8,1,6,1,8,1,6,3,13,1,6,7,8,1,6,8,8,1,13,1,6,1,13,1,6,1,13,1,6,3,13,1,6,6,13,1,16,1,6,6,13,1,6,4,16,1,8,1,16,1,6,2,8,1,16,1,8,1,6,1,16,1,8,1,16,2,6,1,28,1,8,2,16,1,8,1,16,6,8,1,16,2,8,3,6,1,8,1,16,4,6,2,8,1,6,11,16,1,8,1,6,2,8,6,6,1,16,2,8,1,6,5,30,2,28,1,6,1,8,1,16,1,6,2,16,2,6,2,30,3,6,1,8,1,16,1,6,1,28,2,6,1,8,1,7,1,6,1,8,1,16,1,8,1,6,3,28,1,30,1,28,2,8,1,16,1,6,1,28,7,16,1,6,1,28,7,16,1,28,10,16,1,28,20,1,119,}, + {1,186,8,1,28,8,30,1,28,2,6,2,30,2,6,3,28,1,6,9,30,1,8,1,14,1,8,1,6,2,8,4,7,1,8,1,6,1,8,1,13,1,6,3,13,1,6,2,16,1,14,1,6,1,8,1,6,11,8,1,16,4,6,4,28,6,13,1,6,1,13,1,6,7,8,1,6,1,8,2,6,1,16,1,8,2,30,1,28,1,6,2,8,4,16,1,8,3,6,4,13,1,6,3,8,1,6,6,16,2,8,1,6,1,16,2,6,1,8,2,6,1,8,2,16,1,6,1,16,1,8,1,16,1,6,2,28,1,16,2,6,1,16,2,14,2,11,6,14,2,16,7,8,2,6,5,13,1,6,8,13,1,6,7,8,2,6,1,28,1,6,1,13,3,6,2,13,1,6,1,13,1,6,1,13,1,6,3,8,1,16,3,8,1,13,1,6,1,13,1,6,2,13,1,6,3,13,2,6,2,8,1,6,2,8,1,6,2,16,1,6,1,8,3,7,1,8,1,6,3,8,1,6,1,13,1,6,5,16,1,6,5,7,1,6,3,13,1,6,4,8,1,6,3,13,1,6,5,13,1,8,2,6,10,8,2,16,1,8,1,6,2,8,1,16,1,8,2,16,3,8,2,16,1,6,1,8,3,16,5,8,3,16,2,8,2,6,2,16,3,8,2,16,1,8,1,6,7,30,1,6,1,8,2,6,1,8,1,6,1,8,2,16,1,8,2,16,1,6,1,8,3,6,4,30,1,6,1,30,1,28,1,13,1,28,2,30,1,6,4,28,1,30,1,6,1,28,2,6,1,13,1,6,2,30,1,6,1,13,1,8,1,16,1,6,3,8,1,28,1,6,2,30,1,6,1,28,2,16,1,8,1,6,1,28,5,16,1,28,8,16,1,8,1,28,8,29,1,7,1,28,21,16,1,1,118,}, + {1,184,14,1,28,4,29,1,28,5,13,1,28,1,30,1,6,4,28,1,6,8,8,1,6,3,13,1,14,1,6,1,28,2,8,2,7,1,8,6,6,7,16,1,14,1,6,1,8,1,13,1,6,9,8,1,16,2,14,1,8,1,6,3,28,1,30,4,6,2,13,1,6,11,8,3,6,1,8,2,13,1,28,1,6,1,16,1,8,1,6,1,8,4,6,1,8,6,6,1,7,1,6,10,16,2,6,1,16,2,8,1,6,1,8,1,6,1,8,2,16,1,6,2,16,2,8,1,28,1,6,1,16,2,8,1,6,1,16,1,14,2,11,7,14,2,16,7,6,23,8,1,6,1,28,1,6,2,13,1,6,1,13,1,6,2,13,1,6,4,13,1,6,2,8,1,6,1,28,1,6,3,28,1,6,2,8,1,6,3,8,2,6,1,13,1,6,1,8,1,13,1,6,2,8,2,16,1,6,2,8,1,6,1,8,2,6,3,13,1,6,2,13,2,6,4,14,1,6,6,8,1,6,1,7,1,6,1,8,3,16,1,6,9,13,1,6,1,16,1,6,10,16,1,8,1,16,1,6,2,8,2,16,6,8,1,16,3,6,1,16,1,6,1,16,8,8,2,16,1,8,1,16,4,8,2,6,2,8,2,6,1,16,1,6,3,30,1,6,1,28,1,8,4,6,1,8,1,6,1,16,1,8,2,16,1,6,4,8,1,6,2,30,1,6,2,28,1,30,1,14,1,6,1,28,3,6,2,8,1,28,1,6,1,30,3,28,3,6,1,30,1,28,1,6,1,8,1,6,5,30,1,6,2,30,1,28,1,29,1,28,1,6,1,8,1,6,1,28,4,16,1,29,1,28,7,9,1,16,1,28,32,14,1,16,1,1,117,}, + {1,182,14,1,30,1,28,1,30,1,28,2,29,1,28,5,6,1,28,3,13,1,6,3,8,1,6,7,8,2,6,2,8,1,14,1,8,1,28,1,13,2,8,1,13,1,6,1,8,2,7,1,8,1,6,1,8,1,13,1,6,4,28,1,16,1,14,1,6,2,7,1,16,1,6,7,16,5,6,2,13,1,30,1,6,1,13,1,6,1,13,1,6,14,13,2,6,1,16,1,6,1,16,1,13,2,6,2,8,4,7,1,8,1,6,1,8,8,6,4,8,1,6,3,13,1,6,1,13,1,6,4,8,2,6,2,8,2,7,1,8,2,16,1,6,2,16,1,8,1,6,1,16,1,8,1,16,2,6,1,16,3,11,5,14,1,11,1,14,2,16,7,8,2,6,17,13,1,6,2,8,1,6,3,13,2,6,8,13,1,6,3,16,1,28,2,6,1,30,1,28,1,6,4,13,2,6,3,8,1,6,1,8,4,6,1,8,1,16,1,6,2,8,1,6,1,8,2,6,1,7,1,8,2,6,1,8,1,6,2,13,1,8,1,6,3,13,1,6,1,16,2,6,3,13,1,8,1,7,1,8,1,6,1,8,2,6,1,16,1,14,1,6,6,13,1,6,2,8,1,6,1,16,1,6,9,8,2,16,1,8,1,6,1,16,1,6,2,16,5,8,1,16,4,6,1,16,1,6,1,16,14,8,1,6,3,8,4,6,8,8,1,16,2,6,1,8,3,16,1,8,1,16,1,8,1,28,1,8,1,16,1,8,3,6,2,28,2,14,1,16,1,30,3,28,1,6,1,16,1,8,1,13,1,28,1,30,3,6,2,28,1,30,1,28,2,6,2,28,1,6,7,30,1,28,1,6,1,28,1,16,1,8,1,6,1,28,4,16,1,28,7,6,1,8,1,28,33,8,1,16,1,14,2,1,115,}, + {1,180,14,1,29,1,28,2,30,1,13,1,28,7,30,1,28,1,30,1,28,1,30,1,8,1,6,3,16,1,6,7,16,1,8,1,16,2,14,1,16,1,28,1,6,2,13,2,8,1,7,1,8,4,7,1,8,2,6,5,14,1,16,1,6,3,16,2,8,1,6,3,8,1,16,2,14,1,16,1,8,1,6,3,30,1,6,4,30,1,6,15,8,3,6,1,16,1,6,1,8,1,6,2,8,1,7,1,8,2,7,1,8,13,7,1,6,2,13,1,6,1,13,1,6,2,8,1,6,3,8,1,6,1,28,1,6,1,13,1,8,2,16,1,8,2,16,1,8,2,6,1,8,1,16,4,6,1,16,2,8,1,14,1,11,5,14,4,16,7,8,1,6,15,13,1,6,3,8,1,6,5,13,1,6,2,13,1,6,1,8,1,6,2,13,1,6,1,13,1,6,2,8,1,6,3,13,2,28,1,6,2,13,1,6,1,13,1,6,1,13,1,6,4,8,3,6,1,8,2,6,2,8,1,6,1,8,5,6,1,7,2,8,1,6,2,8,2,6,2,8,1,6,1,8,1,16,1,8,1,6,4,8,2,6,1,16,1,13,1,6,2,16,2,6,10,8,1,16,1,6,8,8,3,16,1,8,1,6,1,28,1,6,2,16,4,8,1,16,5,6,1,7,1,6,1,16,2,8,1,16,2,6,1,16,5,8,1,16,1,6,6,8,1,16,2,7,1,6,1,13,1,6,4,8,1,16,1,6,1,16,1,6,1,8,3,16,1,8,1,16,1,6,1,28,1,16,3,8,1,16,2,8,1,14,1,16,1,6,2,13,1,30,1,28,2,14,1,16,1,8,1,6,1,30,1,6,1,30,3,6,1,30,1,28,2,9,1,8,1,6,6,30,2,28,1,6,1,28,2,16,1,6,1,28,5,8,1,6,1,28,2,6,1,29,1,6,1,7,1,28,34,16,1,8,1,6,1,8,2,11,1,1,114,}, + {1,179,30,1,29,1,28,12,30,1,28,3,13,1,8,1,6,2,16,1,8,1,6,6,16,2,8,1,16,3,6,5,8,2,6,1,8,7,6,4,16,1,14,1,6,5,8,1,14,2,16,1,14,3,16,1,8,1,13,1,6,26,16,1,8,1,16,1,8,2,16,1,6,2,8,1,6,1,8,2,16,1,8,1,16,1,8,11,13,1,6,3,13,1,6,3,8,3,6,1,8,1,6,1,28,1,13,2,8,5,16,2,8,1,6,2,16,4,6,2,16,1,7,1,16,1,11,6,14,3,16,7,8,2,6,11,13,1,6,1,13,1,6,15,8,1,6,2,8,1,6,4,8,1,6,6,28,1,13,1,8,1,6,4,8,1,6,1,13,1,6,1,8,2,6,1,8,1,6,1,8,2,6,1,16,1,6,2,8,6,6,1,16,1,6,1,8,1,6,1,8,1,6,2,8,2,16,1,8,1,16,3,8,2,6,2,16,1,6,1,13,1,6,4,16,1,6,4,13,2,6,4,16,2,6,4,13,1,6,2,8,1,16,1,8,1,16,1,8,1,6,3,16,12,7,1,6,1,7,1,8,1,16,2,8,1,6,1,8,1,16,2,8,2,16,1,6,1,8,1,16,1,8,2,6,3,16,4,8,1,6,3,16,3,6,1,16,1,8,1,6,1,16,1,8,1,16,2,8,1,16,1,28,1,6,1,16,3,8,1,16,1,8,2,28,1,6,1,28,1,30,1,6,1,30,1,28,1,6,1,16,1,8,1,6,1,28,1,6,3,29,1,6,1,30,1,28,2,8,1,16,1,6,1,28,1,6,3,30,2,6,2,28,2,14,1,8,1,6,1,28,6,8,1,7,1,8,1,28,12,6,1,7,1,6,1,29,1,28,22,8,1,16,1,8,2,16,1,8,1,11,1,1,50,16,1,6,1,8,1,9,2,11,1,1,57,}, + {1,176,14,1,9,1,28,13,13,2,28,3,6,1,8,1,6,1,8,1,16,2,6,6,16,4,8,2,6,6,8,2,6,1,8,1,7,1,6,3,8,2,6,3,16,1,14,1,8,1,6,1,13,1,6,4,8,3,6,1,8,1,6,12,30,2,6,15,8,1,16,3,8,3,16,1,6,2,8,3,16,3,8,3,16,2,8,5,6,2,8,1,6,4,28,2,16,1,8,1,6,2,16,1,8,1,16,1,6,1,8,8,6,1,8,2,16,5,14,1,8,2,16,1,14,1,11,5,14,4,16,1,8,1,16,5,8,2,6,13,13,1,6,2,13,1,6,4,13,1,6,2,13,1,8,1,6,2,13,1,6,1,8,1,6,4,16,1,13,1,6,1,13,1,6,2,8,1,6,4,13,1,28,1,13,1,6,3,8,2,6,1,8,1,6,1,16,1,6,2,16,1,8,2,16,1,8,1,6,2,8,3,6,2,8,2,6,1,8,3,16,2,8,1,16,2,6,1,16,7,6,1,13,1,6,1,28,2,6,1,16,1,8,1,6,1,13,2,6,1,13,1,6,5,8,1,16,1,6,4,13,1,6,2,16,3,6,1,8,2,6,2,16,3,8,1,16,1,8,1,16,6,8,1,6,2,8,1,16,2,8,1,6,3,8,10,6,1,8,1,16,2,8,1,16,6,8,1,6,2,16,1,8,2,16,4,8,1,28,1,6,5,28,1,6,3,28,1,6,1,30,2,6,1,28,2,16,1,8,1,6,2,28,1,6,3,28,1,6,1,28,2,6,1,8,1,16,1,28,2,6,1,8,1,6,1,28,4,16,1,9,1,6,1,28,20,9,1,8,1,6,1,28,24,14,1,6,2,14,1,8,1,6,1,16,2,6,1,1,47,11,1,8,1,16,5,8,1,11,1,1,56,}, + {1,174,14,1,9,1,28,14,16,1,13,1,28,3,13,2,6,1,16,1,14,2,6,1,8,2,6,2,8,1,16,3,8,1,28,1,6,3,13,2,6,1,13,1,6,1,8,1,7,1,6,1,8,9,16,1,14,1,16,1,6,5,13,1,6,1,13,1,6,1,13,1,6,13,30,1,6,1,30,2,6,1,30,1,6,1,30,3,6,6,16,5,8,1,16,1,8,2,6,1,8,1,6,2,8,1,16,6,8,1,16,1,8,6,6,1,7,1,6,5,16,3,8,1,6,2,8,1,6,1,16,2,28,1,6,1,8,1,6,1,8,3,16,1,13,1,6,1,8,1,16,1,8,1,16,3,14,1,8,1,16,2,14,1,11,5,14,4,16,6,8,3,6,12,8,1,6,1,8,1,6,2,13,1,6,1,13,2,6,3,13,1,6,2,8,1,13,1,6,1,16,2,8,2,16,2,6,2,8,1,6,4,8,1,6,1,28,2,6,4,8,6,16,4,8,1,6,1,16,2,8,2,16,2,6,1,16,2,8,1,16,1,8,2,16,2,8,1,16,2,8,3,6,2,16,5,13,1,6,1,13,1,6,4,16,1,6,4,8,1,6,6,8,2,6,5,8,4,6,1,16,2,6,2,16,3,8,1,6,2,16,8,6,1,16,1,8,2,16,3,6,3,14,1,7,1,16,3,8,3,6,3,16,1,8,1,6,1,16,5,28,1,8,1,16,3,8,1,16,4,6,1,16,1,8,1,6,14,28,2,8,3,6,2,28,3,30,1,28,1,6,1,9,1,6,1,8,1,16,1,28,5,6,1,8,1,16,2,6,1,28,20,6,1,28,14,6,1,28,11,16,3,6,1,16,1,8,2,6,1,8,1,16,1,8,1,1,45,11,1,16,6,8,1,16,1,8,1,16,1,1,55,}, + {1,173,9,1,28,14,30,1,13,1,6,1,28,4,8,2,6,3,28,1,6,1,8,1,16,6,8,1,6,2,28,1,6,6,8,1,7,1,8,1,6,1,8,1,16,7,14,1,16,1,7,1,6,1,13,3,6,1,30,1,28,2,6,3,13,1,8,1,6,1,13,1,6,2,13,1,6,6,30,1,6,1,30,5,6,4,28,1,6,1,8,1,16,8,8,1,16,1,6,2,14,1,16,20,14,1,16,3,14,1,16,1,6,1,13,1,28,1,8,1,6,3,8,1,14,1,16,2,8,4,16,1,6,1,16,1,6,2,16,4,8,1,6,1,16,3,11,5,14,4,16,8,8,2,6,2,13,1,6,6,8,1,6,9,8,1,6,5,16,1,6,1,28,2,6,2,13,1,8,1,13,1,6,1,28,2,8,1,16,1,6,1,8,1,16,1,8,1,28,3,6,1,8,1,16,1,6,2,7,2,8,1,6,3,16,2,6,4,16,8,8,2,16,4,7,1,6,2,28,1,6,1,8,1,13,1,6,3,8,1,6,4,8,1,16,1,6,3,8,1,16,1,6,5,8,1,6,5,16,2,8,4,16,4,28,1,16,3,6,2,16,1,8,1,16,1,8,2,16,9,8,1,14,1,16,6,6,2,8,1,6,1,16,3,8,1,16,1,8,2,6,1,8,3,16,3,6,2,16,1,6,3,8,1,16,1,8,1,16,2,8,1,6,1,16,1,8,3,6,6,30,1,28,1,6,1,28,2,6,2,28,2,14,1,8,1,16,2,8,1,14,1,16,2,6,1,8,1,6,1,30,1,6,1,13,1,16,1,6,5,13,1,6,2,28,29,9,1,28,18,14,1,16,1,8,1,6,1,16,1,8,3,6,1,8,1,16,2,17,1,1,43,14,1,16,7,6,2,7,1,8,1,16,1,14,1,9,1,16,1,1,50,}, + {1,171,9,1,28,12,30,3,16,1,6,1,28,6,14,1,6,1,8,2,6,1,28,2,16,6,6,2,8,1,16,1,6,2,8,1,6,1,8,1,6,1,8,1,6,1,8,1,6,1,8,4,16,3,14,1,16,2,6,4,28,3,30,1,6,5,28,2,6,4,13,2,6,5,30,2,6,2,30,4,6,1,28,1,6,1,16,12,8,2,13,1,6,1,8,1,16,22,8,1,7,1,6,1,30,1,8,1,13,1,14,1,6,5,16,8,6,1,16,1,6,1,16,1,14,1,16,1,6,1,8,1,6,1,14,1,16,1,8,1,11,5,14,5,16,8,8,1,6,16,13,1,6,3,13,1,16,1,8,1,16,1,8,1,6,2,13,1,6,1,28,1,6,1,28,1,30,1,28,2,6,4,8,1,16,1,13,1,28,1,6,1,16,1,8,1,6,2,16,2,6,2,8,1,6,2,8,1,6,2,13,1,28,3,13,2,16,1,8,1,16,5,8,1,6,2,16,2,6,2,28,3,6,2,8,1,6,3,28,2,6,3,8,1,16,1,8,1,6,3,16,2,6,1,8,1,6,3,8,2,6,2,8,2,16,8,7,1,6,1,7,1,16,3,6,2,16,16,8,1,16,5,6,2,8,2,16,1,8,1,16,3,8,2,6,2,8,1,16,2,8,1,7,1,6,2,8,1,6,2,16,3,8,3,16,2,6,1,8,2,6,2,13,1,30,1,6,1,30,1,28,5,6,1,30,1,6,1,30,1,28,1,6,1,8,1,14,1,8,2,16,2,6,2,28,1,30,1,6,3,13,1,16,1,6,3,30,1,6,1,28,19,16,1,28,28,6,1,14,1,16,6,6,1,8,4,16,2,1,41,16,9,8,1,6,1,8,1,7,1,8,1,16,3,8,1,9,1,16,1,11,1,1,46,}, + {1,169,9,1,28,8,30,1,28,5,29,1,30,1,13,1,30,1,28,6,30,1,16,1,8,1,16,1,8,2,13,1,28,1,13,1,16,2,8,1,16,2,6,1,8,2,6,2,16,1,6,1,7,1,6,1,8,1,16,1,6,1,8,1,6,2,13,1,7,1,8,1,6,1,8,1,7,1,6,2,13,1,6,4,13,6,6,5,30,1,6,4,8,1,6,5,30,1,6,1,30,4,6,1,28,1,30,1,16,8,8,3,16,1,13,1,6,6,8,4,16,15,6,8,8,1,16,1,14,1,16,1,6,7,8,1,16,2,14,1,6,1,16,1,8,2,6,2,28,1,8,1,6,1,16,1,14,1,7,1,14,1,11,5,14,5,16,7,8,3,6,7,8,1,6,2,8,1,6,1,13,1,6,2,13,1,6,9,13,2,6,2,13,1,6,3,13,2,6,3,13,1,6,2,13,2,8,1,6,3,16,2,6,1,16,1,8,1,16,2,8,1,16,1,6,1,28,1,8,1,6,1,28,1,6,1,7,1,8,1,16,2,6,1,16,1,8,5,6,1,13,1,28,1,6,1,8,1,13,1,6,5,28,1,6,1,13,1,8,1,6,3,8,1,16,1,6,3,8,1,16,1,8,1,6,5,8,2,6,3,16,2,8,3,6,1,8,1,6,3,8,2,16,1,8,1,16,1,6,1,8,1,16,22,8,1,6,1,16,6,8,1,16,1,8,1,6,2,16,2,8,1,6,4,16,1,6,2,16,6,8,4,6,3,28,2,30,1,28,4,29,1,28,1,6,5,28,1,6,3,28,1,6,3,28,5,6,5,28,1,30,1,28,19,7,1,28,28,6,1,14,2,16,3,14,1,16,1,6,1,16,1,6,1,7,1,8,2,16,2,14,1,1,39,7,1,14,1,16,10,6,1,8,1,16,7,7,1,8,2,1,43,}, + {1,167,9,1,28,17,30,1,28,8,8,2,16,2,6,2,8,1,6,1,8,2,6,2,16,1,8,2,16,1,6,1,8,1,6,1,16,1,8,1,6,1,8,1,16,1,8,1,6,1,16,2,6,2,8,7,6,3,13,1,6,13,16,1,8,1,6,2,8,1,6,7,30,4,28,1,6,1,16,7,8,1,6,2,8,1,13,1,6,1,28,2,30,1,28,1,30,1,6,5,8,2,6,1,16,6,8,1,16,2,8,2,6,5,30,2,28,2,30,1,6,3,16,2,14,1,8,1,28,1,6,5,16,2,6,1,16,1,6,1,16,1,6,2,16,1,6,2,16,3,14,1,11,2,14,1,11,2,14,5,16,6,8,1,16,1,6,1,8,2,6,3,8,1,6,12,13,1,6,4,8,1,6,1,13,1,6,1,13,2,6,2,8,1,6,2,13,1,6,4,8,1,6,8,8,1,16,7,6,1,30,1,6,1,16,1,8,2,6,2,8,3,6,1,8,1,16,1,8,1,16,1,8,1,6,2,8,1,6,1,13,1,8,1,16,1,8,1,6,5,8,3,16,1,6,4,16,1,6,4,16,2,6,1,8,1,6,1,8,1,6,1,8,2,13,1,8,1,6,1,8,1,6,6,8,5,6,1,16,1,8,1,6,1,8,1,16,13,8,1,16,9,6,1,16,1,6,1,16,2,8,1,16,1,8,4,14,1,16,1,28,1,6,2,13,1,6,2,16,1,6,2,16,2,8,1,16,1,6,1,8,3,6,2,30,1,28,1,30,1,28,7,30,1,6,1,30,1,6,1,13,1,6,9,30,3,6,1,28,1,6,1,28,1,30,1,28,1,30,1,28,3,6,1,28,17,9,1,28,27,8,1,6,1,16,1,14,1,16,3,14,1,16,1,6,1,16,2,6,2,8,2,16,3,11,1,1,36,11,2,16,11,8,1,16,11,8,1,16,1,1,41,}, + {1,165,16,1,28,1,30,1,28,3,30,1,28,4,30,1,28,5,30,1,16,1,28,4,13,1,28,5,8,1,16,2,8,1,16,2,6,1,8,1,16,1,6,1,28,1,6,2,8,1,16,1,8,1,16,1,6,1,8,1,16,1,8,1,16,3,8,2,16,2,8,2,16,1,8,1,13,1,8,2,6,1,28,1,6,1,8,1,6,15,8,1,16,1,6,7,30,3,6,1,30,1,28,2,8,1,14,1,16,5,8,1,6,1,8,2,30,1,28,12,6,1,28,1,6,1,8,1,6,1,8,2,16,1,8,1,16,2,6,4,28,1,30,1,6,8,28,1,6,4,16,3,6,1,8,2,16,1,8,1,28,4,6,1,16,1,14,2,16,1,7,1,28,1,16,4,11,4,14,6,16,2,8,1,16,6,8,1,6,7,8,1,6,7,13,1,6,1,13,1,6,1,13,1,6,2,8,1,6,4,13,1,6,1,28,1,8,2,6,2,13,2,6,2,8,1,6,2,13,1,6,5,13,1,6,1,16,5,6,1,13,1,6,1,8,1,16,1,8,2,6,2,8,1,6,1,16,1,6,1,8,3,6,2,16,1,6,1,16,1,6,1,8,1,16,1,8,1,16,1,6,4,8,1,6,1,8,3,16,1,6,3,14,1,8,1,6,3,16,3,6,2,8,2,6,1,16,2,8,3,6,2,13,1,8,1,6,1,8,1,16,5,6,1,16,1,8,2,6,1,8,1,16,23,6,1,16,1,6,1,16,4,8,1,7,1,8,1,14,1,8,1,6,1,16,1,8,3,6,2,16,1,6,6,16,2,6,3,28,5,29,1,28,3,29,1,30,1,6,1,30,1,6,2,30,1,6,7,30,1,6,4,28,2,6,1,28,1,6,1,28,1,30,2,28,3,6,1,28,15,6,1,28,27,1,1,16,2,14,1,16,4,14,1,16,1,6,1,14,2,6,2,16,1,8,2,16,2,7,1,14,1,16,1,1,24,7,1,8,1,16,4,11,3,8,1,16,14,8,2,16,12,1,39,}, + {1,163,9,1,28,7,30,1,28,3,30,1,29,1,28,5,14,1,30,1,28,3,30,1,9,1,28,5,14,1,8,1,16,3,8,1,16,2,6,1,8,1,16,2,6,1,16,1,8,2,7,1,6,1,16,2,8,1,16,2,8,1,6,1,16,2,8,1,7,1,8,2,13,1,6,4,8,1,13,1,6,16,16,2,6,2,8,1,6,7,30,1,28,1,6,1,16,7,6,1,8,1,13,1,30,1,28,1,6,7,8,2,16,5,8,1,6,5,8,2,6,8,7,1,13,3,6,4,13,1,6,3,13,1,6,1,16,2,6,2,8,1,16,4,8,1,7,1,16,2,6,1,7,1,14,1,6,2,16,4,11,4,14,6,16,3,8,1,16,4,8,4,13,2,6,3,13,1,6,3,8,1,13,1,6,4,13,1,6,4,8,1,6,2,13,1,6,1,13,1,8,1,6,2,16,1,13,1,6,1,13,1,6,2,8,2,6,5,8,1,6,4,8,1,16,3,6,1,28,1,6,1,8,1,6,1,8,3,16,1,6,2,8,5,6,1,28,1,30,1,6,2,8,2,6,2,8,2,16,1,6,2,16,1,14,1,6,1,8,3,16,1,8,1,6,1,8,1,16,1,14,1,6,1,8,1,6,3,8,1,16,1,6,1,8,2,16,1,8,1,16,3,8,2,6,1,8,2,6,2,8,2,6,2,16,5,8,3,16,14,14,1,16,1,8,1,16,5,8,1,6,1,16,6,8,1,6,1,14,1,16,1,6,1,8,4,16,1,6,1,8,1,14,1,8,1,6,1,16,3,6,1,8,1,6,2,28,8,29,2,28,1,6,15,28,2,6,1,8,1,6,2,28,2,6,1,28,1,6,1,28,3,29,1,7,1,16,1,6,1,28,40,8,1,14,1,16,1,14,1,16,2,14,1,16,2,14,1,16,1,6,1,14,1,16,1,6,1,8,1,14,1,6,1,8,1,16,10,8,1,9,1,16,13,14,1,16,41,17,1,1,37,}, + {1,161,9,1,28,8,30,5,29,1,28,5,14,1,30,1,28,4,16,1,30,1,28,5,16,1,8,1,16,11,8,5,16,1,8,3,6,2,30,1,6,1,8,1,6,2,8,1,6,5,8,1,13,1,6,1,13,1,6,16,16,1,8,1,6,1,8,1,6,5,30,1,28,1,30,1,6,1,16,6,8,1,6,1,13,1,6,1,28,1,6,3,13,2,8,1,13,1,8,10,16,1,7,1,8,1,6,2,16,1,13,1,6,5,8,2,6,1,8,1,7,1,6,9,13,1,6,3,16,1,8,1,6,1,8,1,16,8,28,1,6,1,8,3,16,4,11,4,14,7,16,6,8,1,6,11,8,2,6,8,13,1,6,1,13,1,8,1,6,2,13,1,8,1,6,2,8,1,28,1,6,1,13,2,6,2,13,1,8,1,6,7,16,1,6,4,16,1,8,2,6,3,8,1,6,1,8,5,6,3,8,1,6,8,8,1,6,1,8,1,16,1,8,2,6,1,8,1,6,1,16,2,6,1,8,4,7,1,6,1,8,1,16,2,6,1,8,1,6,3,16,2,6,1,8,2,16,3,8,2,16,1,6,1,13,1,6,2,7,1,6,1,8,3,16,2,8,1,16,2,8,1,16,1,8,2,16,14,14,1,16,7,8,1,16,9,7,1,8,2,16,1,8,2,16,2,6,1,14,1,16,1,8,1,16,3,8,1,6,1,30,1,28,3,29,2,28,2,29,1,30,2,6,1,30,1,28,1,6,13,28,1,6,1,14,1,16,1,6,2,16,1,14,1,28,5,6,1,28,4,6,1,28,39,7,1,16,1,11,1,14,1,16,3,14,1,16,2,8,1,14,1,16,1,8,1,16,2,6,1,16,1,8,2,7,1,6,1,8,3,16,29,8,1,16,2,14,1,16,29,9,1,1,37,}, + {1,159,9,1,28,5,30,1,28,4,30,3,28,7,13,1,6,1,28,5,16,1,28,5,6,1,16,9,8,1,16,1,6,1,8,4,6,1,16,2,8,1,6,3,28,2,6,2,30,1,28,2,30,1,6,3,8,2,13,1,6,5,13,1,6,10,8,1,16,2,6,2,13,1,16,1,6,3,30,1,28,1,6,1,16,6,6,3,13,1,30,1,6,9,8,2,6,1,7,1,8,7,16,1,8,1,6,1,7,1,8,1,6,4,16,2,8,5,6,11,8,1,6,1,16,1,8,1,6,1,16,2,8,3,16,1,8,2,16,1,6,1,16,1,7,1,8,1,16,5,14,1,11,1,14,9,16,8,8,2,6,2,13,1,6,3,8,1,6,3,8,2,6,3,13,1,8,1,6,2,8,1,13,1,6,4,8,1,6,2,8,1,6,3,8,3,16,1,6,2,8,1,13,1,6,2,8,1,6,1,8,1,6,2,8,1,6,1,8,1,6,1,8,2,6,1,13,1,8,1,6,1,8,5,6,3,8,1,6,4,16,1,6,1,28,1,16,1,8,1,6,1,8,3,16,1,6,2,8,1,6,1,16,1,6,2,8,1,16,3,6,2,8,1,16,2,8,2,6,3,16,9,8,1,6,2,16,1,7,1,6,2,8,3,16,7,8,2,16,17,8,1,16,14,8,1,16,1,8,1,16,1,8,1,16,1,8,1,16,1,8,1,16,1,6,1,8,1,16,2,6,2,28,1,29,1,28,4,30,3,6,2,30,2,6,5,30,2,6,7,28,1,6,1,14,1,6,1,28,1,6,1,28,1,30,1,6,1,14,1,28,50,11,1,16,1,11,1,16,3,14,1,16,1,14,1,6,1,16,1,14,1,16,1,8,1,16,5,6,1,16,4,8,1,16,3,8,1,6,1,16,2,8,13,7,1,8,4,16,2,8,1,16,32,8,2,11,1,1,36,}, + {1,157,9,1,30,1,28,5,30,1,28,4,13,1,28,10,14,1,28,5,30,1,13,1,28,1,30,1,13,1,6,2,14,1,16,1,6,1,16,9,6,1,16,1,8,3,16,3,6,2,13,2,8,1,6,7,13,1,6,1,13,1,8,1,6,1,8,1,6,15,16,2,14,1,16,1,28,1,6,2,16,2,7,1,6,2,8,1,14,1,16,4,8,1,28,1,6,1,8,1,6,1,30,1,6,11,8,7,16,1,8,1,16,2,6,1,28,1,8,3,6,3,16,1,8,4,6,1,8,2,6,1,13,1,6,8,9,1,13,1,8,2,6,1,16,1,8,1,6,1,28,2,8,1,16,1,8,1,7,2,16,3,14,1,16,3,8,1,14,11,16,1,14,1,16,1,8,1,16,5,8,3,13,2,6,2,8,1,6,7,8,1,6,2,13,1,6,5,8,1,6,5,13,1,6,2,8,1,6,1,8,1,6,1,28,2,13,1,8,2,6,2,8,1,7,1,6,1,8,1,16,1,6,4,8,1,6,1,28,1,8,1,6,1,8,5,16,1,6,1,13,1,6,1,16,2,13,2,16,2,6,1,16,1,8,1,16,1,6,1,16,1,8,1,16,2,6,3,8,2,6,1,16,1,6,1,8,1,16,1,8,1,6,2,16,3,8,1,6,1,8,1,6,2,8,3,16,3,8,2,6,3,16,1,8,1,6,1,8,3,16,1,8,1,16,7,8,1,16,16,8,1,16,1,6,1,8,1,16,8,8,2,16,1,14,1,16,2,8,2,16,8,8,1,6,1,16,1,28,1,30,1,28,2,29,1,28,1,30,2,6,1,13,1,6,7,13,1,6,10,28,1,14,1,16,1,28,2,6,2,28,2,6,1,14,1,28,49,1,2,16,2,11,1,16,6,14,1,16,2,14,3,16,1,6,2,14,1,16,1,8,1,16,2,6,1,16,7,14,2,16,53,1,36,}, + {1,155,9,1,28,7,30,2,28,1,30,1,13,1,28,7,30,1,28,3,16,1,6,1,28,5,30,1,6,2,14,1,16,1,6,1,8,1,16,1,8,1,6,1,16,4,8,2,16,3,6,1,16,1,8,1,16,4,6,3,13,2,6,2,13,4,6,4,8,2,13,1,6,14,16,5,6,2,28,1,6,2,16,7,14,1,16,1,6,2,28,1,8,1,6,3,30,1,6,10,8,7,16,4,7,1,6,1,8,1,16,2,8,1,16,1,8,1,16,2,8,1,16,1,8,4,13,2,6,8,8,1,7,1,6,3,16,1,6,1,28,1,8,1,16,1,6,2,16,1,6,2,16,2,28,1,8,1,14,2,8,1,16,2,14,1,11,1,14,9,16,3,8,1,16,5,8,2,6,1,8,1,6,1,8,2,6,1,8,1,6,15,8,1,6,2,13,3,6,1,13,1,8,1,13,1,6,3,28,1,6,1,13,1,6,1,13,1,6,1,8,1,6,1,8,1,16,2,13,1,6,1,30,1,28,1,6,1,13,1,6,1,16,2,8,2,16,2,8,1,16,1,8,1,6,2,8,3,6,1,8,3,6,1,8,1,16,1,6,1,16,2,8,1,16,1,8,1,6,2,8,1,16,1,6,1,8,6,6,2,8,1,16,2,8,1,7,1,16,1,8,1,6,1,16,1,6,1,8,1,6,8,16,1,8,1,6,1,8,4,16,8,8,1,16,8,8,1,16,8,8,4,16,5,28,1,6,3,16,4,8,1,16,1,8,1,16,7,6,2,30,1,28,5,29,1,6,8,8,1,13,1,6,1,8,1,13,1,6,3,13,2,6,2,8,1,28,1,14,1,8,1,28,2,6,2,28,1,29,1,28,1,14,1,29,1,28,9,6,1,28,37,8,1,1,4,16,1,11,1,16,1,14,2,16,1,8,1,14,1,16,6,8,1,6,1,14,2,16,10,8,2,7,1,16,45,14,1,16,1,11,2,1,1,6,1,9,1,1,37,}, + {1,153,9,1,28,3,30,1,28,5,13,1,30,1,28,9,30,1,6,2,13,2,6,1,28,5,30,1,28,2,6,4,13,1,28,1,6,1,16,5,8,1,16,4,8,4,16,2,8,1,6,1,7,1,6,5,13,4,6,2,16,1,6,1,8,1,13,1,8,2,6,2,13,1,6,7,8,1,16,6,6,2,13,1,6,4,8,1,16,1,14,1,16,2,8,1,6,1,28,1,30,1,6,1,8,1,6,1,30,1,6,1,30,2,6,1,30,1,6,7,8,2,7,1,8,1,6,1,16,8,8,3,16,1,8,1,6,1,16,6,8,1,6,1,8,1,13,1,6,9,8,1,7,1,8,1,6,1,9,1,8,1,6,2,16,1,8,2,6,1,8,1,6,1,8,1,16,2,6,1,8,1,16,2,8,1,16,2,14,11,16,3,8,1,16,5,8,2,7,1,8,1,6,1,8,2,6,2,8,1,6,6,8,2,6,4,8,1,6,2,8,2,6,2,8,1,6,1,13,1,8,1,6,3,13,1,8,1,28,1,6,1,13,1,8,1,6,3,16,2,8,1,6,1,28,4,6,1,16,2,6,1,8,6,16,1,6,4,8,1,6,1,8,2,16,1,6,2,8,1,16,1,6,1,16,3,8,1,16,1,6,2,8,1,16,1,6,1,16,1,8,1,16,1,8,2,6,3,16,3,6,1,8,1,16,1,8,1,6,1,16,2,6,3,30,3,28,1,6,1,16,2,8,1,6,1,8,3,16,15,8,1,16,1,8,1,16,5,8,1,16,5,6,1,16,4,6,2,16,2,6,2,7,1,16,1,14,1,8,1,6,1,16,3,8,2,16,2,8,1,6,1,28,2,29,1,28,2,30,1,29,1,6,7,8,1,16,1,8,2,6,1,8,1,6,1,8,3,6,1,13,1,6,3,28,1,16,1,14,1,28,3,30,1,28,3,8,2,28,47,1,6,11,1,9,1,11,1,16,3,14,1,16,6,14,1,8,1,16,1,14,1,16,56,14,1,9,1,1,44,}, + {1,151,9,1,28,11,29,1,28,10,30,2,13,1,30,1,28,8,30,1,6,2,28,3,6,1,28,1,8,1,16,11,8,1,16,1,8,1,16,2,6,1,7,1,8,1,6,1,8,1,6,2,7,1,8,1,13,1,8,3,6,1,14,1,6,1,8,2,6,2,13,1,8,1,6,6,16,8,8,1,7,1,13,2,6,17,30,2,6,11,8,2,16,13,13,1,6,1,8,2,16,7,6,1,8,1,6,5,30,1,6,3,16,1,8,1,6,1,28,1,16,1,8,1,28,1,8,2,16,2,8,2,16,1,8,1,16,2,28,1,8,1,6,1,28,1,8,1,14,1,16,1,14,11,16,4,8,1,16,4,8,2,6,1,8,1,6,3,7,1,6,1,8,1,6,2,8,1,6,1,8,4,6,3,8,1,6,1,8,1,13,1,6,1,8,1,13,1,6,1,13,1,6,1,16,1,30,4,8,1,13,2,28,1,6,1,8,4,16,1,8,1,6,1,28,2,13,1,16,1,6,3,8,1,6,2,8,3,16,3,6,3,8,1,16,1,8,3,16,1,6,2,8,1,16,1,8,1,16,2,8,2,16,1,8,1,6,2,16,1,8,2,16,1,8,1,16,2,8,1,6,1,8,1,6,2,16,3,8,2,16,2,8,1,6,1,13,1,6,2,13,1,6,3,8,1,16,2,8,6,16,5,8,1,16,7,8,2,6,2,16,13,14,1,16,7,8,3,16,1,6,2,8,1,6,1,8,1,16,3,6,2,28,3,30,1,29,1,6,6,8,1,16,2,14,1,16,1,8,1,6,1,16,1,8,6,13,1,6,2,13,1,28,1,8,1,14,1,6,1,29,1,28,1,29,1,28,3,6,1,16,1,28,46,8,1,1,8,16,2,11,1,14,1,16,1,14,1,16,18,14,1,16,46,1,46,}, + {1,149,9,1,28,6,30,1,28,10,30,1,28,6,6,2,28,3,30,1,28,5,6,1,8,1,6,1,28,2,30,1,28,1,30,1,28,1,8,1,14,1,16,2,8,1,16,7,8,1,6,1,16,2,6,2,8,2,6,1,8,2,6,1,8,1,6,3,8,1,7,1,6,1,14,1,6,1,8,3,6,6,8,1,16,8,8,1,6,3,13,1,6,2,30,1,6,3,16,1,6,6,13,2,6,2,30,5,6,9,8,1,16,10,8,3,6,3,16,10,6,1,8,1,6,7,8,1,16,1,7,1,6,1,8,1,16,1,6,2,8,3,16,2,6,1,16,2,6,2,28,1,14,1,16,5,14,11,16,1,14,1,16,2,8,1,16,5,8,3,7,2,6,1,8,3,7,1,8,2,7,1,8,2,6,1,8,3,7,1,8,1,6,2,8,1,13,3,6,2,16,1,13,1,6,1,30,1,6,2,8,1,13,3,30,1,6,2,16,2,8,1,6,2,13,1,16,2,8,1,16,1,6,2,8,2,16,1,8,2,16,1,8,2,16,2,6,2,8,1,16,2,8,1,16,3,6,2,16,2,6,1,8,1,16,1,8,1,16,2,6,2,16,2,8,2,16,1,8,1,16,2,8,1,16,2,6,1,8,1,16,6,6,1,8,1,28,1,13,1,8,4,6,2,16,3,6,1,8,2,16,2,8,1,16,5,8,1,16,4,14,1,16,2,6,1,8,1,16,23,8,1,6,1,8,1,14,1,6,1,8,1,16,4,8,1,6,1,28,2,6,1,29,1,6,1,8,3,16,3,14,1,16,7,8,1,16,3,8,1,16,1,8,3,6,2,28,2,8,1,14,1,6,1,28,3,29,1,28,1,9,1,8,1,28,46,1,10,11,1,16,1,11,1,16,4,14,1,16,5,14,1,16,55,9,1,1,46,}, + {1,147,13,1,28,7,29,1,28,5,13,1,28,5,13,1,28,5,13,2,28,3,30,1,6,1,28,4,30,1,16,1,13,1,28,3,30,1,28,2,6,2,8,3,16,2,6,1,16,3,8,2,16,1,8,1,16,2,6,1,7,1,6,1,8,1,7,1,8,2,13,1,8,1,6,1,13,2,8,2,6,1,14,1,6,1,8,1,6,1,8,1,6,5,8,1,16,4,8,2,16,1,7,1,6,3,13,1,6,1,28,2,30,2,6,4,16,1,8,2,6,3,8,1,6,1,13,1,30,6,6,8,8,1,16,7,8,2,6,2,28,3,30,1,6,4,13,1,8,1,16,8,6,7,16,2,6,2,8,1,6,1,28,1,13,2,8,1,16,3,6,1,8,1,16,2,6,1,16,1,14,2,16,4,14,11,16,1,14,1,16,2,8,1,16,6,8,4,6,1,8,3,6,1,8,2,6,1,8,2,6,1,8,3,6,1,7,1,8,1,6,2,8,1,6,2,8,1,6,1,13,1,6,3,8,1,6,3,8,2,6,5,13,1,6,1,8,2,16,1,8,2,16,1,8,1,6,2,16,3,7,1,8,1,16,2,8,1,16,1,6,3,16,1,8,2,16,3,6,2,8,1,16,1,6,1,8,1,16,4,8,1,6,2,16,2,8,1,16,3,8,2,16,1,8,5,16,3,8,1,6,3,8,1,6,1,8,3,16,1,8,1,16,3,8,2,16,1,8,2,16,5,8,1,16,8,8,1,16,19,8,1,16,7,7,1,14,1,8,1,16,4,6,5,8,1,16,6,8,2,16,6,28,1,16,1,6,1,16,2,8,1,6,1,8,4,6,2,8,1,28,1,14,2,28,5,14,1,6,1,28,45,11,1,1,12,16,1,14,2,16,2,14,1,16,6,14,1,16,10,14,1,16,45,1,45,}, + {1,145,14,1,6,1,28,1,30,1,28,11,9,1,30,1,28,4,13,2,28,5,13,1,28,4,13,2,28,2,6,1,8,1,16,1,14,1,6,1,28,1,29,1,30,2,28,2,6,1,8,3,16,2,6,2,8,1,16,1,8,3,16,3,8,1,6,1,7,1,6,1,8,1,7,1,8,2,13,3,8,4,6,1,14,1,6,1,8,2,6,2,8,2,16,5,8,1,16,1,8,1,6,2,8,1,13,1,6,2,30,2,6,2,13,2,6,4,28,1,8,1,13,1,6,3,13,1,6,2,30,4,6,1,30,1,6,6,7,1,16,5,8,1,16,1,8,1,6,2,28,12,13,1,6,1,8,1,16,6,8,1,13,1,6,4,8,1,14,1,6,4,28,1,13,1,6,1,8,4,16,2,6,1,16,2,14,1,8,1,28,1,8,1,14,1,16,2,7,1,14,13,16,9,8,4,6,1,8,3,7,1,8,2,7,2,8,1,7,1,8,1,7,1,6,1,8,2,6,2,8,1,6,1,8,1,6,2,8,1,6,2,8,1,6,1,8,1,14,1,6,1,8,2,6,1,8,2,6,3,13,1,6,1,8,1,16,1,8,1,16,3,8,1,7,1,6,1,16,4,8,1,16,2,8,1,16,1,6,3,8,1,6,1,8,3,16,1,8,1,6,1,8,1,16,2,8,2,16,1,8,1,16,2,6,2,16,3,6,1,8,1,16,3,8,1,6,2,8,3,16,3,6,4,7,1,8,8,16,1,8,1,16,1,8,4,16,4,8,2,16,7,8,1,16,18,14,1,16,1,8,1,16,6,8,1,16,1,14,1,6,1,16,3,6,3,8,1,16,1,14,2,8,2,6,1,8,2,6,2,8,3,16,3,6,1,28,1,7,1,16,3,8,1,16,1,8,3,6,2,7,1,28,2,14,2,7,1,28,2,16,2,28,9,6,2,29,1,28,34,1,15,16,1,11,1,14,2,16,6,14,1,16,3,14,1,16,6,14,1,16,35,8,1,16,9,8,1,9,1,16,1,17,1,1,41,}, + {1,143,14,1,6,1,28,9,29,1,28,3,13,1,14,1,13,1,28,5,14,1,28,6,6,1,28,3,30,1,6,1,30,1,28,1,6,1,16,1,8,1,6,1,30,3,28,1,30,3,6,2,8,1,16,3,6,1,16,2,8,1,6,4,16,3,8,5,6,1,8,3,13,3,6,2,8,2,14,1,6,2,16,5,14,2,16,2,8,2,6,2,8,2,6,1,30,1,28,1,6,1,13,1,6,1,13,1,6,6,30,1,6,2,16,1,13,1,6,3,8,1,6,1,30,1,6,1,30,1,6,1,30,1,6,6,16,5,8,2,6,2,28,2,6,2,16,5,8,1,6,7,7,1,16,1,8,1,16,1,8,2,16,2,8,1,6,4,16,2,6,2,8,3,6,1,8,1,13,1,8,3,16,1,8,1,6,1,8,1,16,1,14,1,28,1,16,1,8,1,6,1,14,1,16,3,11,1,14,11,16,11,8,13,7,1,8,1,7,1,8,2,7,1,8,1,6,1,8,1,6,3,8,2,6,1,8,1,6,2,16,1,8,2,6,1,8,3,16,1,6,1,8,1,6,2,8,1,16,2,8,3,16,1,8,2,16,5,8,2,16,3,6,4,8,1,16,3,8,1,6,2,8,1,16,1,6,1,16,5,8,1,6,2,8,1,16,6,8,1,6,1,28,1,6,2,8,4,6,1,7,1,8,3,6,1,8,2,16,1,8,1,16,1,8,1,16,3,8,2,16,3,8,1,16,4,6,1,16,26,8,1,14,1,16,8,6,1,14,1,16,1,8,1,16,1,8,1,6,1,8,1,16,2,14,1,8,1,6,1,8,1,6,10,8,2,16,1,6,2,16,3,8,1,16,1,8,1,16,1,8,2,6,2,29,1,28,2,8,1,6,1,16,3,6,1,28,1,29,1,28,5,16,3,6,1,28,1,8,1,28,32,1,18,11,1,16,1,11,1,14,1,16,1,14,1,16,1,14,2,16,7,14,1,16,5,14,1,16,31,8,2,16,10,8,1,7,1,9,1,1,41,}, + {1,142,9,1,28,11,30,2,13,2,16,1,6,1,28,5,30,1,8,1,28,5,9,1,6,1,28,6,6,1,14,1,8,1,28,3,30,5,28,1,6,2,8,1,16,5,8,1,16,2,8,1,6,1,8,1,6,1,8,1,6,1,8,5,7,1,8,3,6,2,7,1,8,1,7,1,8,1,16,2,8,1,6,2,16,2,8,1,7,1,8,2,6,2,8,2,6,1,16,1,6,1,28,1,6,2,13,1,6,11,30,1,6,2,16,1,6,3,13,1,6,1,30,4,6,5,8,1,16,4,8,2,6,1,28,1,6,2,8,1,16,4,8,1,16,9,8,1,6,1,8,1,6,1,8,3,16,4,6,2,28,1,13,1,14,1,13,1,8,1,6,1,16,4,6,1,7,1,6,1,16,1,8,1,16,2,6,2,14,1,6,2,16,2,8,1,16,1,14,2,16,1,14,12,16,4,8,1,16,6,8,7,7,1,8,1,7,1,8,3,6,1,8,3,7,2,6,1,8,2,6,1,8,1,13,1,6,1,16,1,6,4,28,1,6,1,8,2,6,1,8,3,6,1,8,1,6,2,16,2,8,1,16,4,6,1,8,3,16,4,8,1,16,1,8,1,16,1,6,4,16,1,8,1,16,3,6,3,16,2,8,1,16,1,8,1,16,1,8,1,16,1,6,3,16,6,6,9,8,2,16,1,8,1,6,1,8,7,16,1,8,1,16,2,6,1,16,1,8,1,16,3,8,1,16,1,8,1,16,17,14,1,16,10,8,1,14,1,16,1,8,2,16,5,8,1,14,1,8,1,16,1,8,2,16,2,14,1,16,1,6,1,8,1,6,8,13,1,6,2,8,4,28,1,16,1,8,2,16,1,8,1,16,3,7,1,6,2,28,1,6,2,28,2,6,2,28,7,16,1,8,1,28,5,16,1,28,32,1,20,9,1,16,2,14,1,11,1,14,2,16,31,14,1,16,11,8,3,16,13,6,1,1,41,}, + {1,140,9,1,29,1,28,1,29,1,28,8,30,1,6,1,30,2,6,1,30,2,28,6,8,1,13,1,28,4,30,1,16,1,28,2,30,1,28,4,6,1,8,1,28,3,30,4,6,1,30,1,6,3,8,2,16,2,8,1,16,2,8,1,16,1,8,1,16,1,8,1,6,2,8,1,7,1,8,5,6,2,7,1,8,1,6,2,7,1,8,1,16,2,8,3,6,1,8,4,16,1,8,2,6,2,8,1,7,1,6,17,30,2,6,1,16,1,8,1,6,1,8,2,30,2,6,1,30,1,6,4,8,1,16,4,8,1,6,2,28,1,6,1,8,2,16,1,8,5,16,10,8,1,6,1,8,2,16,1,8,2,16,1,8,2,16,1,8,1,6,2,14,1,16,1,6,1,8,1,6,4,8,1,14,1,6,2,8,2,16,2,8,2,16,1,28,1,16,8,14,12,16,6,8,1,16,5,8,7,7,1,8,3,6,1,8,2,6,1,8,3,6,4,8,1,13,1,6,1,13,1,6,2,8,1,6,3,8,1,16,1,6,1,7,1,8,2,6,1,16,1,7,1,8,1,16,2,8,2,16,3,8,2,6,1,16,6,8,2,16,2,6,1,8,1,16,2,8,1,16,1,8,1,16,1,8,1,6,1,16,3,6,1,8,1,16,1,8,2,16,1,8,1,6,2,8,1,16,4,8,6,6,5,16,2,8,1,16,1,8,4,16,3,8,1,16,1,8,1,16,2,8,1,16,6,8,1,16,3,8,1,6,1,8,1,16,12,14,1,16,1,8,2,16,2,8,1,16,4,8,1,16,2,6,1,8,2,16,1,8,3,14,1,16,2,9,1,16,4,6,1,8,2,6,9,8,2,6,1,8,1,6,1,7,1,6,1,16,1,6,1,16,3,8,1,16,1,8,1,7,1,6,5,28,10,8,1,9,1,28,6,16,1,28,30,8,1,1,24,11,1,16,2,29,1,6,1,8,1,16,7,9,1,8,2,6,3,28,1,8,1,16,1,17,1,16,2,9,1,8,3,7,3,8,3,16,2,6,1,16,9,8,1,16,16,1,41,}, + {1,138,14,1,28,2,30,2,28,8,30,1,13,1,30,1,28,11,8,1,30,1,28,4,16,1,8,1,28,3,30,1,28,2,6,2,28,4,30,1,6,1,30,1,6,1,30,3,6,2,8,1,16,2,8,1,16,4,8,5,6,1,16,1,8,2,7,1,8,1,7,2,8,1,16,3,6,1,8,1,6,1,8,1,16,3,8,1,6,2,7,1,16,1,8,1,16,2,8,1,6,2,13,1,8,1,6,19,28,1,6,1,16,2,8,3,6,1,30,1,6,5,8,1,16,3,6,5,8,1,16,1,8,6,16,12,8,4,6,1,8,1,6,1,8,1,16,5,14,2,6,1,16,1,6,7,14,1,6,1,8,1,16,1,8,1,16,2,14,1,6,2,16,6,6,1,16,1,14,12,16,5,8,1,16,6,8,7,6,1,8,7,6,2,8,1,6,1,8,1,6,7,8,2,13,1,16,1,8,1,6,1,8,1,16,1,6,3,8,2,6,1,16,1,8,1,16,2,6,1,8,1,16,2,6,3,16,4,8,1,16,2,8,2,16,1,6,1,8,1,16,1,8,4,16,2,6,1,8,7,16,3,8,1,6,3,16,4,8,7,6,4,8,2,16,1,8,3,16,1,8,1,16,3,8,1,16,14,6,2,16,4,8,1,16,9,14,1,16,2,8,3,16,1,8,1,16,3,8,2,6,1,8,1,16,1,6,1,16,6,9,1,8,1,16,2,8,3,6,10,8,3,6,1,8,1,6,1,8,1,16,1,8,1,16,5,8,2,13,1,6,2,7,1,28,11,9,1,6,1,28,5,7,1,16,1,28,30,1,63,16,1,11,1,16,1,14,1,16,20,6,1,1,42,}, + {1,136,14,1,6,1,28,1,29,1,30,1,28,6,30,1,28,3,16,1,30,1,28,12,6,1,28,4,13,1,14,1,28,3,30,1,28,2,13,1,16,1,28,2,30,3,6,2,30,3,6,4,8,2,16,1,8,1,16,3,8,7,16,1,8,5,6,1,8,1,16,2,8,1,6,1,7,1,8,1,16,3,6,1,28,1,30,1,6,6,13,1,8,1,6,1,13,1,6,19,30,2,6,1,8,2,7,1,8,1,16,1,6,5,8,1,16,5,8,1,6,3,13,1,8,1,6,2,8,3,16,1,8,1,16,12,8,1,7,1,8,1,16,1,6,1,16,1,8,3,16,2,14,2,16,1,8,1,6,2,8,2,6,4,16,1,6,1,14,1,8,2,16,3,8,1,6,1,16,7,6,1,16,1,14,12,16,13,8,17,6,1,8,1,6,5,13,1,6,2,8,5,6,2,16,2,8,1,16,2,8,1,16,1,8,2,16,1,8,2,16,2,8,1,7,1,6,1,16,3,8,2,16,5,6,1,8,5,16,1,8,1,16,1,6,3,8,3,16,1,8,1,16,1,8,2,16,1,6,1,8,1,6,1,16,2,8,3,6,1,7,1,8,6,6,3,8,1,16,1,8,3,16,6,8,2,16,8,8,1,16,3,6,1,8,2,16,3,8,1,16,13,8,4,7,1,8,1,16,3,8,1,6,1,16,1,9,1,8,2,16,1,8,1,16,1,9,1,8,1,9,1,16,2,6,1,8,2,6,9,8,1,6,2,8,1,6,1,8,1,6,3,16,4,8,4,6,2,8,1,29,1,6,1,28,10,29,1,6,1,28,2,6,1,28,1,6,1,14,1,28,30,1,67,16,1,8,1,14,1,16,17,8,1,11,1,1,42,}, + {1,135,16,1,6,1,28,9,9,1,6,1,30,1,13,1,14,1,30,1,28,7,30,1,28,2,30,1,28,2,30,1,6,2,13,1,14,2,13,1,28,2,30,1,28,1,30,1,28,1,14,1,6,1,28,1,30,1,29,1,30,1,6,1,13,1,6,1,30,1,6,7,8,1,14,1,8,2,16,1,8,8,16,10,6,2,8,1,16,3,6,3,8,1,13,1,8,1,13,2,6,3,16,1,6,20,30,2,6,5,28,1,16,2,8,1,6,1,8,1,16,4,14,1,16,1,8,1,6,7,8,5,16,14,8,2,16,1,6,1,8,3,13,1,16,2,8,1,6,3,8,1,16,2,14,3,16,2,6,1,16,1,8,1,16,1,8,1,14,1,16,1,8,3,16,7,6,1,16,1,14,12,16,6,8,1,16,5,8,21,6,3,13,1,8,3,6,1,8,2,6,1,8,2,6,2,16,2,8,2,16,2,8,3,16,2,6,1,16,2,6,1,8,1,16,3,6,1,16,1,8,1,16,3,8,2,16,2,8,3,16,1,8,3,6,2,8,1,16,1,8,7,6,1,16,2,8,1,13,1,6,1,8,11,6,2,8,1,16,3,8,2,16,5,8,2,16,13,8,1,16,17,14,1,16,3,6,4,8,1,16,1,14,1,7,1,6,1,8,1,14,1,8,1,6,2,8,1,7,1,8,1,9,1,7,1,16,1,8,2,6,1,8,1,6,5,13,1,6,8,8,1,6,1,8,1,16,4,8,1,9,1,6,7,29,1,28,11,8,1,16,1,28,1,6,1,16,1,28,30,1,70,16,1,11,1,16,15,11,1,1,44,}, + {1,133,8,1,28,1,30,1,28,3,30,1,28,4,6,1,14,1,13,1,28,1,30,1,16,1,6,1,28,6,30,1,28,6,30,1,6,2,16,3,13,1,28,1,30,5,6,1,14,1,28,2,30,3,28,1,6,7,13,1,6,2,16,1,14,1,8,2,16,1,8,2,16,1,8,3,6,1,8,1,16,2,8,3,16,4,6,2,8,1,16,1,8,1,16,1,8,1,6,1,8,1,16,1,8,2,13,3,6,3,16,1,6,2,13,1,6,19,28,1,6,3,8,1,6,2,16,8,8,1,6,1,16,1,6,1,28,1,6,3,7,1,8,5,16,14,8,1,16,1,14,1,6,2,13,2,6,1,30,1,6,9,7,1,16,1,8,1,16,4,7,1,8,1,14,2,16,1,6,3,16,7,8,1,16,1,14,13,16,12,8,13,7,1,8,6,6,3,13,3,8,1,6,2,7,1,8,3,6,3,28,1,6,3,16,2,6,1,8,1,16,1,8,1,16,3,6,1,8,1,6,1,16,1,8,2,6,1,8,3,16,3,8,2,6,2,16,1,8,3,16,1,6,3,16,2,6,1,16,2,8,3,16,2,6,1,28,1,30,1,6,1,7,1,16,1,8,10,6,2,8,1,16,3,8,3,16,5,8,2,16,7,8,1,16,3,7,1,16,7,8,1,16,7,8,1,16,2,14,1,16,3,13,1,6,3,13,1,8,1,14,1,8,1,30,1,6,1,8,1,14,1,8,1,6,4,16,1,8,3,6,6,8,4,6,8,8,1,16,3,8,2,7,1,6,2,8,1,6,3,29,1,28,46,1,73,11,1,16,11,6,1,16,1,1,46,}, + {1,131,11,1,28,5,6,1,13,1,28,4,6,1,14,1,28,2,30,2,28,5,30,1,28,2,6,1,28,2,30,1,28,2,30,1,6,3,30,2,28,2,30,5,28,1,16,1,8,1,28,1,30,1,6,1,30,1,28,1,8,1,14,1,13,1,6,4,30,1,16,1,6,2,16,1,14,1,8,9,6,1,16,1,14,1,6,3,16,2,8,3,6,1,8,2,16,1,6,3,8,4,6,1,8,1,6,2,13,1,6,1,16,2,8,1,6,1,13,2,6,18,28,1,16,4,8,2,16,7,6,1,28,1,8,2,6,1,28,1,6,2,8,1,6,2,8,2,16,18,8,1,6,2,28,2,30,2,6,10,8,2,6,2,8,1,16,1,8,3,6,1,28,2,6,1,7,1,16,7,8,1,16,2,14,12,16,14,8,5,6,1,8,2,7,1,8,5,7,1,8,3,6,5,8,2,16,1,6,3,8,4,6,2,8,1,6,3,14,1,8,2,16,1,8,1,16,3,8,1,6,2,8,1,13,1,6,3,8,2,16,4,8,1,6,2,16,1,8,3,16,1,8,1,6,2,8,1,16,1,8,2,16,1,8,3,16,1,8,1,6,5,8,1,16,2,8,9,6,2,8,1,16,2,8,2,16,7,8,1,16,10,8,1,6,1,8,1,16,7,8,1,16,7,8,1,16,1,14,1,16,4,6,6,14,1,16,1,6,1,28,1,29,1,8,1,14,2,8,1,28,1,6,1,16,2,8,2,6,4,8,3,16,1,8,1,6,2,28,1,6,3,13,1,8,2,16,1,8,1,16,1,6,4,8,1,9,1,6,4,28,6,7,1,6,1,16,1,7,1,6,1,29,1,28,33,17,1,1,75,17,2,6,1,8,1,16,1,8,1,6,1,8,1,16,1,1,49,}, + {1,129,14,1,30,1,28,5,6,1,8,1,28,4,6,1,16,1,28,7,30,1,28,4,6,2,28,3,30,1,28,1,8,1,16,1,30,1,28,4,30,1,6,1,28,1,30,3,6,1,14,1,6,1,30,3,28,1,6,1,16,2,6,6,14,1,6,2,16,2,8,4,16,1,8,5,16,2,6,4,8,3,6,1,7,1,8,2,13,1,6,3,7,1,8,4,6,1,8,1,13,1,6,3,16,1,8,1,6,1,8,1,6,18,7,1,16,6,6,1,8,1,6,2,8,2,6,1,28,2,6,1,13,1,16,1,6,5,8,1,16,21,6,2,28,1,6,1,8,4,6,1,13,1,6,11,8,1,16,1,8,1,6,3,8,1,16,1,8,1,6,1,16,6,14,1,8,1,16,2,14,12,16,14,8,19,6,2,7,1,8,1,6,1,8,2,16,2,8,1,6,2,8,6,6,2,8,1,16,1,8,2,16,1,8,1,16,2,6,2,7,1,16,1,6,6,8,1,16,5,8,5,16,2,8,1,6,2,16,2,8,5,16,1,8,1,6,1,8,2,6,3,8,1,16,2,8,9,6,1,8,1,6,1,16,4,8,1,16,6,8,2,16,5,8,1,16,4,6,1,8,1,16,7,8,2,16,1,8,1,16,4,8,1,16,1,14,1,16,4,6,6,9,1,14,1,16,1,6,1,28,1,30,1,6,1,14,1,11,1,6,1,16,3,6,5,8,1,16,1,8,1,16,1,8,1,6,3,28,1,6,2,8,1,6,1,8,2,16,1,8,1,6,3,8,1,9,1,28,1,6,2,28,1,6,2,28,2,6,1,16,2,6,3,29,1,28,2,6,2,9,1,29,1,28,28,8,1,1,134,}, + {1,128,16,1,29,1,28,4,30,1,13,1,28,3,30,1,28,1,30,1,16,1,28,5,30,1,28,3,30,1,28,3,6,3,28,2,30,1,6,1,14,1,13,1,28,2,30,2,28,2,13,1,30,1,28,3,8,1,14,1,28,1,6,4,16,2,8,1,6,4,28,1,16,2,6,2,8,1,16,3,8,6,6,1,8,1,16,2,6,1,8,2,6,3,8,3,13,1,8,1,6,2,8,1,6,1,7,1,8,2,6,2,8,1,6,1,13,1,6,2,7,1,14,1,8,1,6,13,8,4,16,9,6,4,8,1,6,5,30,1,6,1,16,1,8,1,6,3,8,1,16,3,14,1,16,4,8,3,16,11,8,1,6,2,16,2,8,2,6,11,13,2,8,1,13,1,6,2,16,1,7,1,16,4,6,1,16,7,8,1,16,2,14,12,16,9,8,1,16,4,8,10,7,1,8,1,6,1,7,1,8,2,6,1,8,3,6,1,8,1,6,2,7,1,8,1,6,1,8,1,6,1,8,9,6,2,16,2,8,3,16,2,8,1,6,1,7,1,16,2,6,7,8,1,16,1,8,1,16,1,8,4,16,1,8,1,16,2,6,3,16,2,8,4,16,1,8,1,6,1,8,2,16,1,6,2,13,1,16,3,8,9,6,3,16,5,8,1,16,5,8,3,16,2,8,4,16,2,8,2,16,1,8,2,16,4,8,1,6,1,8,1,16,2,8,1,16,3,8,2,16,5,8,1,6,3,30,2,13,1,16,2,29,1,30,1,28,1,6,1,14,1,16,1,8,1,16,2,8,1,6,5,8,1,16,3,6,6,8,5,6,2,7,1,8,1,6,5,28,1,6,1,28,2,14,1,6,1,28,11,6,2,28,27,1,135,}, + {1,126,8,1,28,1,30,1,28,4,30,1,13,1,28,3,30,1,6,1,8,1,14,1,30,1,28,2,30,1,28,1,30,3,28,1,30,4,28,1,6,2,8,1,16,3,14,1,16,1,28,1,30,3,28,1,30,1,16,1,6,1,13,1,16,1,8,2,14,1,8,1,28,1,6,3,16,2,8,1,6,1,28,1,6,4,14,1,16,1,6,2,16,5,8,2,16,1,8,3,16,2,8,1,6,1,8,4,6,1,8,1,6,1,8,3,6,1,8,1,16,1,6,1,8,5,7,1,13,1,6,1,8,1,6,1,8,1,16,1,6,2,8,2,6,6,7,1,8,1,16,7,14,3,16,3,6,2,13,1,6,5,8,1,16,1,13,2,30,2,16,1,14,1,6,2,16,6,6,2,8,1,6,3,8,2,6,1,16,8,6,3,16,2,8,1,7,1,6,1,8,1,13,1,6,13,16,1,6,2,8,2,16,4,6,3,28,1,6,1,8,1,16,1,6,1,16,2,14,12,16,14,8,1,16,1,8,18,6,10,16,1,8,7,6,1,8,2,16,1,8,1,16,2,8,1,16,1,8,3,16,2,6,1,16,4,6,3,8,1,16,2,6,1,8,2,16,1,8,5,6,2,8,1,16,2,8,1,6,1,16,2,8,1,6,1,8,4,6,2,8,1,16,2,8,2,16,1,8,2,16,1,6,1,8,3,6,2,8,1,16,5,8,1,16,5,6,1,16,1,8,1,16,2,8,1,16,1,8,1,16,3,8,1,16,1,8,1,16,1,8,1,16,5,6,1,8,2,16,1,8,6,16,5,8,1,6,3,30,1,28,1,6,2,28,4,8,1,16,3,8,2,6,4,8,1,16,5,8,3,6,1,8,1,6,1,8,1,6,1,16,1,8,1,7,1,9,1,6,2,28,1,6,3,28,1,6,1,28,2,6,1,14,1,28,13,7,1,28,26,1,136,}, + {1,124,14,1,6,1,28,2,30,1,28,3,30,2,28,3,30,1,6,2,13,1,6,1,28,3,30,1,28,2,6,1,30,1,28,1,30,3,28,1,6,1,16,1,13,1,8,1,14,1,16,1,8,1,16,1,30,3,6,3,16,1,14,1,8,1,6,1,8,1,16,3,6,4,8,1,16,2,6,1,28,2,6,3,14,1,16,1,13,1,6,2,8,2,16,11,8,1,6,1,8,5,16,1,8,4,6,1,13,1,8,1,6,1,8,3,7,2,6,1,13,1,8,1,13,1,6,1,16,1,14,1,7,1,6,1,8,1,7,1,13,1,6,2,8,3,16,10,8,1,16,1,8,1,6,2,13,1,6,1,30,2,6,6,13,2,6,3,16,1,14,3,16,2,8,1,6,2,8,1,6,4,8,1,6,2,8,1,6,1,16,6,6,3,16,2,8,3,6,9,30,1,6,1,30,1,6,4,16,1,6,3,8,1,16,8,14,1,16,1,6,1,8,1,16,2,14,11,16,16,8,15,6,2,8,2,7,1,6,4,8,1,6,7,8,6,6,1,8,1,16,2,8,4,16,1,8,2,16,1,8,1,6,1,8,1,16,1,8,1,16,1,8,2,6,2,8,1,16,1,8,2,16,1,8,1,16,1,8,3,16,1,8,1,6,2,8,1,16,6,8,5,16,1,6,3,16,3,8,9,6,3,16,5,8,1,16,1,8,2,16,2,6,1,8,1,16,2,8,3,6,1,16,3,7,1,8,1,16,1,8,1,6,1,16,5,6,2,8,6,7,1,8,1,16,5,6,1,30,3,28,1,6,1,14,1,16,1,29,1,6,2,16,5,8,1,6,4,8,1,16,5,8,1,16,3,8,3,6,1,16,1,6,1,28,3,7,1,14,1,8,1,6,1,28,2,16,1,28,2,6,1,16,1,28,12,6,2,28,10,29,1,28,14,1,137,}, + {1,123,28,8,6,1,28,5,30,3,28,3,30,2,28,2,6,2,30,5,28,1,16,1,14,1,6,5,30,2,6,2,30,2,8,1,14,2,6,1,28,1,30,1,6,2,30,1,6,4,16,2,6,1,28,1,30,1,28,1,13,1,8,1,16,1,14,1,6,1,28,1,30,1,8,1,7,1,8,2,7,1,16,9,6,1,8,6,14,1,6,2,8,2,6,1,8,1,16,1,6,1,8,9,6,1,16,1,14,1,6,2,8,1,7,1,6,1,8,3,16,4,14,1,16,3,8,1,16,1,6,4,16,1,8,1,6,10,13,1,6,2,8,2,28,1,6,1,16,4,6,1,8,2,6,2,7,1,8,1,16,4,8,1,6,1,8,2,16,5,6,2,8,1,16,2,8,5,6,4,13,1,30,2,6,1,28,1,6,3,13,1,6,1,16,1,8,2,6,1,16,11,14,3,16,1,14,11,16,16,8,2,16,1,8,15,6,1,8,1,6,5,8,2,6,1,8,2,6,1,8,1,6,2,8,3,6,1,8,2,16,1,8,3,16,3,6,1,16,3,8,3,16,1,8,2,16,1,8,1,6,2,8,1,16,1,6,1,8,1,16,1,8,3,16,1,8,2,6,3,8,1,16,4,8,3,16,1,8,4,6,1,8,2,16,2,6,1,8,4,6,1,8,4,6,2,8,1,16,4,8,3,16,1,8,1,16,1,6,2,8,1,16,2,8,1,6,1,16,1,8,1,16,2,8,1,6,1,8,1,7,1,8,4,16,3,8,1,6,1,8,3,6,1,8,2,6,2,8,1,16,4,8,1,6,3,16,1,14,2,6,1,8,1,14,1,6,1,16,4,6,4,8,1,16,5,8,2,16,3,8,1,16,1,8,1,6,2,8,1,9,1,28,2,8,1,28,2,7,2,28,5,6,1,8,1,28,11,9,1,28,25,17,1,1,137,}, + {1,121,14,1,28,8,16,1,13,1,28,4,6,1,9,1,28,5,29,1,30,2,28,1,6,2,30,3,6,1,28,1,8,1,14,1,8,1,30,1,28,3,6,1,30,1,6,1,30,2,6,2,16,2,6,1,28,5,30,1,6,4,16,1,8,1,30,1,6,1,13,1,6,3,16,1,8,1,28,1,6,4,8,1,16,3,6,3,8,4,6,1,8,7,14,1,6,1,8,5,16,1,7,2,8,7,6,1,7,1,16,2,8,1,7,1,8,4,16,8,6,4,8,1,16,1,8,1,13,1,6,6,30,1,28,1,30,2,6,3,8,3,16,1,6,2,16,2,6,2,16,1,6,3,7,1,8,2,16,5,8,1,16,1,6,1,16,2,8,1,16,1,6,1,8,1,6,1,8,1,16,4,8,1,6,1,13,2,6,6,30,2,6,4,8,1,14,1,6,3,16,1,14,1,16,3,8,1,16,4,14,1,16,4,14,11,16,17,8,1,16,1,8,10,6,1,8,1,7,2,8,7,6,1,8,2,6,1,8,3,16,2,8,4,16,2,6,2,16,3,8,3,6,1,16,3,8,3,16,2,8,1,16,2,6,3,16,1,6,1,8,5,16,3,8,1,6,1,8,1,16,1,8,1,6,1,8,1,16,1,8,1,6,1,8,4,16,1,8,2,6,1,16,1,8,1,16,1,6,1,8,1,6,1,8,5,7,1,6,1,8,2,6,3,8,1,16,1,14,1,8,1,6,1,8,3,16,1,8,1,7,1,16,2,6,1,8,5,16,1,8,1,6,1,8,6,16,3,8,1,6,1,13,1,8,4,13,1,8,1,6,1,8,1,14,1,8,2,6,2,16,4,7,1,14,1,6,2,16,5,8,2,6,2,16,6,8,1,16,5,8,2,6,1,8,2,6,5,28,3,14,1,6,1,28,4,6,1,9,1,8,1,28,7,7,1,14,1,28,25,16,1,1,138,}, + {1,120,6,1,28,7,6,1,16,2,28,4,30,1,14,1,6,1,28,1,30,1,6,1,30,2,28,1,30,2,28,1,6,1,13,1,6,2,30,2,6,1,16,2,28,2,6,1,30,1,6,1,13,1,30,2,6,2,30,1,6,1,14,1,8,1,28,1,6,3,28,1,30,1,13,1,6,4,16,1,13,1,6,4,28,1,6,5,8,3,7,1,16,2,6,3,8,1,6,4,8,6,7,1,8,1,16,1,8,5,7,1,16,1,6,2,8,5,7,1,6,2,16,3,6,2,8,1,16,5,14,1,16,1,8,3,7,2,8,1,16,1,8,1,6,7,30,1,6,1,28,1,30,5,6,2,8,2,6,1,8,2,6,1,7,1,6,1,8,1,6,3,8,2,6,1,8,2,16,1,8,1,16,3,8,1,16,1,6,2,16,2,8,1,6,2,28,1,16,5,8,2,7,1,6,11,7,1,8,1,14,1,8,1,6,1,28,1,16,2,8,2,6,4,16,2,14,1,8,1,6,1,8,1,16,2,14,12,16,15,8,1,16,1,8,15,6,1,8,2,6,5,8,1,13,1,6,1,16,1,6,3,8,2,16,3,8,1,6,1,7,1,6,1,7,1,16,1,8,1,16,1,8,2,16,2,8,1,16,1,8,3,16,1,8,3,16,1,8,1,6,2,8,3,7,1,16,1,8,3,16,1,8,1,16,1,6,2,8,1,6,3,8,1,16,1,8,3,16,1,8,4,6,3,16,1,7,1,6,1,8,4,7,1,8,4,6,1,8,1,6,3,8,1,16,3,8,1,6,1,8,3,6,1,8,1,16,2,6,4,8,1,16,2,8,1,6,1,8,1,6,1,8,1,6,1,8,2,16,2,14,1,8,1,6,2,8,1,13,1,6,3,13,1,6,1,16,1,14,1,6,2,16,1,8,1,16,3,6,2,16,1,6,1,28,1,8,1,16,4,6,2,8,1,16,5,8,1,16,4,8,1,16,1,8,1,7,1,8,2,6,4,28,1,6,2,28,1,6,1,11,1,16,1,28,7,16,1,28,4,6,1,14,1,7,1,28,11,6,1,28,14,1,139,}, + {1,118,9,1,28,3,30,1,28,4,30,1,13,2,30,1,28,2,30,1,28,1,13,1,8,1,28,2,6,3,28,1,30,4,13,1,8,1,6,1,30,2,6,1,14,1,16,1,6,1,30,1,6,2,30,1,13,1,8,1,6,6,16,1,6,4,13,1,6,3,8,1,16,4,6,5,28,1,6,1,13,1,6,1,13,1,6,2,8,1,6,1,8,1,16,1,6,2,8,7,16,1,6,1,8,6,16,1,8,1,7,1,8,3,6,1,16,1,8,1,6,1,8,1,16,1,8,4,16,4,8,2,6,2,8,1,16,4,8,1,6,2,8,1,6,1,16,1,8,1,6,7,30,1,6,2,30,6,6,2,30,1,6,1,13,1,16,1,6,2,16,1,6,7,8,1,6,1,8,2,16,5,8,1,6,1,8,1,28,1,6,1,16,1,8,1,16,1,7,1,16,1,8,2,16,3,8,3,6,4,8,1,16,3,8,3,16,4,6,3,16,1,7,1,8,1,6,1,16,4,8,1,16,2,6,1,16,2,8,1,16,1,14,12,16,16,8,1,16,1,8,6,16,1,8,6,6,1,8,2,6,5,8,1,13,2,8,2,28,1,8,1,6,2,8,1,6,1,8,2,6,4,8,7,6,3,8,1,16,1,8,7,6,2,8,1,16,1,8,3,16,1,8,2,16,3,6,1,8,1,6,5,8,1,16,1,8,2,16,1,8,1,16,1,8,1,16,2,6,2,8,1,16,2,8,3,16,1,8,4,6,1,8,2,6,1,8,1,7,1,6,2,8,1,16,2,8,3,16,1,7,1,6,1,16,3,8,1,6,1,8,1,6,1,8,1,16,1,14,1,6,2,8,1,13,1,8,1,7,1,8,3,16,1,14,1,9,1,29,1,6,1,13,1,8,1,13,1,6,3,13,1,14,1,6,2,8,1,13,2,9,1,16,2,6,1,28,1,8,1,16,1,8,1,16,4,6,2,8,1,16,5,8,1,16,6,8,2,6,1,8,1,9,1,6,2,28,4,6,1,14,1,11,1,6,1,28,10,9,1,16,1,6,1,28,13,6,1,28,13,1,140,}, + {1,116,14,1,30,1,28,3,13,1,30,1,28,2,30,2,6,1,28,4,30,1,28,1,13,1,14,1,28,2,30,1,28,2,6,1,30,5,6,4,28,1,8,1,14,1,13,1,28,1,6,1,30,1,6,1,28,1,16,1,8,1,30,1,6,5,16,1,6,7,16,2,8,1,16,2,13,1,6,3,13,1,6,2,8,1,6,5,16,1,6,2,14,1,6,1,8,5,6,1,8,1,16,2,7,1,8,5,16,3,6,1,8,4,16,1,8,5,16,7,8,3,6,1,8,3,7,1,8,2,7,1,6,2,13,1,6,9,30,1,6,1,30,1,6,2,30,2,6,1,30,1,6,5,16,1,6,2,16,1,6,1,13,1,6,6,8,3,16,4,8,1,16,2,8,1,6,1,8,1,16,4,8,1,16,1,6,1,16,4,8,1,6,3,16,12,6,1,16,1,6,1,8,1,16,2,8,1,16,11,6,1,16,1,14,12,16,18,8,2,16,1,8,15,6,1,8,2,13,1,8,3,6,2,16,1,6,1,8,1,6,6,8,1,6,1,8,5,16,1,6,4,8,1,16,1,8,2,16,1,8,1,16,1,8,2,6,2,8,1,16,3,8,5,16,4,6,3,8,1,6,2,8,1,16,1,8,8,6,2,8,1,16,1,8,10,7,1,8,5,6,1,8,2,16,1,8,3,6,2,16,1,8,1,6,1,16,2,6,2,8,1,6,1,8,1,16,1,6,2,13,2,8,1,6,3,16,2,14,1,16,1,28,1,6,2,13,2,6,2,28,1,6,1,30,1,6,6,8,1,16,1,8,1,6,2,16,4,8,2,6,1,7,1,16,5,8,4,16,3,8,2,6,1,28,2,29,1,16,3,14,3,16,1,6,1,28,27,6,1,28,12,1,141,}, + {1,115,8,1,28,1,30,1,28,2,6,1,13,1,28,2,30,1,13,1,6,1,28,3,30,2,28,1,6,1,14,1,30,1,28,1,30,2,28,1,6,3,30,1,6,1,28,1,6,1,16,1,6,1,8,1,16,1,8,1,16,2,28,1,6,5,14,1,8,1,6,5,8,1,14,1,6,7,14,1,16,1,6,2,28,2,30,1,6,5,14,1,8,1,6,1,13,2,6,1,16,1,8,2,14,1,8,7,6,1,8,1,16,1,6,1,8,5,16,3,6,1,8,3,16,3,8,1,16,4,8,8,6,3,13,1,6,2,8,1,6,3,8,1,6,23,8,1,16,1,8,2,16,1,6,8,8,2,16,8,8,1,6,1,8,1,16,1,8,4,16,11,14,1,16,10,8,2,6,1,8,3,6,1,16,8,14,1,16,4,14,12,16,17,8,1,16,1,8,16,6,3,8,1,6,1,8,2,6,1,8,2,6,2,16,1,6,1,8,1,16,1,7,1,8,1,16,2,6,2,8,3,16,1,8,2,6,1,16,1,6,2,16,2,8,3,16,1,8,1,16,1,8,1,6,2,16,2,8,2,16,2,8,2,16,1,8,2,16,1,8,1,6,1,16,1,8,2,6,1,8,1,14,1,16,1,8,7,6,2,8,1,16,2,6,1,8,7,6,1,8,6,6,2,8,2,16,1,8,1,6,1,8,2,16,1,6,2,8,2,16,2,8,2,6,1,16,2,6,2,13,3,6,3,7,1,16,1,14,1,16,1,28,1,6,1,13,1,6,2,28,1,6,3,28,2,30,1,6,5,8,1,16,1,8,1,6,1,16,3,8,2,6,1,8,1,16,5,8,1,16,1,8,2,16,2,8,2,6,4,29,1,6,1,7,1,6,1,8,1,6,1,28,23,14,1,28,14,6,1,28,3,1,142,}, + {1,114,13,1,6,1,8,1,6,1,28,1,8,1,13,1,28,2,30,1,13,1,30,2,28,1,6,2,30,2,6,1,16,1,13,1,28,1,30,3,13,1,6,2,13,1,6,1,28,1,6,1,14,1,16,1,8,1,6,1,8,1,16,2,6,6,13,1,14,1,6,6,8,1,14,1,6,6,16,1,14,1,16,1,28,4,6,1,13,1,6,3,8,1,16,2,6,2,13,1,6,1,16,2,6,1,16,1,8,7,7,1,8,1,14,1,8,5,16,4,6,1,8,3,16,1,8,2,7,1,8,1,16,3,8,1,16,1,8,4,6,5,13,2,6,2,8,1,13,2,6,1,13,1,6,22,16,3,14,1,6,9,8,3,16,9,6,6,8,1,16,13,8,2,6,1,8,1,16,1,6,1,8,1,6,1,16,2,8,1,7,1,16,1,6,1,8,1,16,6,8,1,6,1,16,1,14,1,16,1,14,1,16,2,14,1,16,1,14,2,16,1,14,6,16,17,8,1,16,1,8,3,16,1,8,11,6,2,8,1,6,2,8,1,6,2,8,1,6,1,8,2,16,1,6,2,8,1,16,1,6,2,8,1,16,1,8,1,6,1,8,3,16,3,8,1,16,2,6,2,14,1,16,1,8,6,6,2,8,1,16,2,8,1,16,1,8,2,16,2,8,2,16,1,8,3,16,2,6,2,16,1,14,1,6,1,8,1,16,1,8,5,6,2,16,2,8,1,6,1,8,4,6,1,8,5,6,1,8,1,6,1,7,1,6,2,8,2,16,1,8,4,6,1,8,2,6,1,8,1,16,1,8,1,6,1,8,1,9,1,16,1,14,1,6,1,29,1,6,1,13,1,6,4,13,1,8,1,16,1,6,1,28,1,29,1,28,2,6,1,8,1,16,1,8,2,6,1,28,3,30,1,6,4,16,1,8,1,16,3,8,4,16,4,8,6,16,1,8,1,6,1,7,1,6,1,28,1,6,2,29,1,28,28,6,1,28,13,29,1,28,2,1,143,}, + {1,112,14,1,28,1,6,1,28,1,13,1,6,1,13,1,16,1,13,1,6,1,16,1,8,1,6,1,28,3,13,1,6,1,30,1,28,1,6,1,14,1,28,1,6,1,30,2,6,1,14,1,13,2,6,2,8,1,16,2,8,1,6,1,28,1,6,9,16,1,14,1,6,6,8,1,14,1,8,1,6,1,13,1,6,3,16,1,14,1,8,1,6,1,13,2,6,2,8,2,6,3,16,2,6,1,13,1,8,1,6,1,8,1,16,1,6,1,16,2,7,1,8,7,14,1,8,4,6,1,16,3,8,5,16,1,6,1,8,1,6,1,16,1,8,7,9,1,6,3,30,1,6,3,8,1,16,1,6,2,8,1,6,1,13,1,6,23,16,2,14,1,16,1,6,8,8,1,6,1,8,1,16,8,8,1,6,2,28,1,6,1,30,1,6,1,8,1,6,1,8,1,16,7,8,1,6,1,7,1,8,1,6,1,8,1,7,1,6,1,13,1,6,1,13,1,8,1,6,2,8,1,14,1,8,2,6,1,16,8,8,1,6,1,16,3,8,1,16,1,14,3,16,1,14,3,16,1,14,3,16,13,8,1,16,3,8,15,6,2,8,2,6,2,8,1,6,2,8,1,6,1,8,1,6,1,16,1,6,2,8,1,16,1,8,1,6,1,16,1,8,2,7,1,6,1,16,1,8,1,16,1,8,1,16,1,8,1,7,1,16,2,8,1,6,2,14,1,8,7,6,2,8,1,16,2,8,2,16,1,8,4,16,2,8,3,16,1,8,1,6,1,7,1,16,1,8,9,6,1,8,1,16,1,8,3,6,2,7,1,8,2,6,2,8,1,16,3,8,4,16,1,8,4,16,1,6,1,8,1,13,1,6,1,8,1,7,1,8,1,16,1,8,1,6,2,8,1,16,1,14,1,6,1,28,1,6,4,13,1,6,1,13,1,16,1,9,1,6,1,28,2,29,1,13,1,8,1,6,1,16,2,8,1,16,1,13,1,28,3,30,1,29,1,28,2,8,1,16,3,8,3,16,4,8,2,16,2,8,3,16,1,8,1,7,1,6,2,29,1,28,1,6,1,28,44,8,1,1,144,}, + {1,111,29,1,28,1,30,1,28,2,30,1,6,2,30,2,6,1,13,1,6,1,28,1,30,2,6,3,28,1,6,1,16,1,6,1,30,2,6,1,30,1,16,1,8,1,6,1,28,1,6,1,8,1,14,1,16,2,28,5,6,8,8,1,6,6,16,2,8,1,6,1,8,1,6,2,8,1,16,1,14,1,6,2,13,1,8,2,6,1,8,1,16,2,6,1,16,1,14,1,16,1,6,1,7,1,6,1,7,1,8,1,14,1,6,1,16,2,8,6,6,1,16,3,8,4,16,2,8,1,6,2,8,2,16,2,6,2,7,2,8,3,13,1,8,3,28,1,6,1,13,1,8,1,6,4,28,1,8,1,16,1,6,2,8,2,6,22,8,1,16,3,8,1,13,1,6,5,8,1,6,1,16,9,8,1,6,5,16,2,8,1,6,1,8,1,6,1,7,1,16,5,6,2,8,1,16,2,8,1,6,10,16,1,14,1,16,3,8,1,16,6,6,1,16,2,6,2,16,1,14,4,16,3,14,1,16,1,14,3,16,19,8,17,6,4,7,1,8,1,6,2,7,1,6,1,16,1,8,1,6,1,16,1,6,1,8,3,16,1,8,1,6,1,8,5,16,1,8,3,16,1,6,2,16,2,6,1,8,1,16,1,8,3,6,2,8,2,16,3,8,2,16,2,6,1,16,2,8,4,16,1,6,2,8,1,16,1,8,6,16,1,8,1,6,2,8,4,16,1,8,2,6,2,8,1,16,8,8,3,16,1,8,6,7,2,6,2,8,1,16,1,8,1,6,3,13,1,16,1,6,1,30,1,28,1,30,2,6,2,29,1,6,5,30,1,6,1,16,2,8,1,13,2,6,1,8,1,16,1,6,1,28,3,29,1,28,2,16,5,8,2,16,3,8,2,16,1,8,3,16,1,8,2,7,1,16,1,28,1,6,1,28,24,14,1,8,1,28,5,30,1,28,8,29,1,28,3,8,1,1,146,}, + {1,109,14,1,6,1,28,1,29,2,28,2,30,1,28,4,30,6,28,1,6,3,16,2,28,1,6,2,30,1,6,1,14,1,6,1,28,2,6,2,8,2,30,1,6,4,30,1,6,12,13,2,6,1,8,1,16,1,7,1,6,1,8,1,7,1,8,2,16,2,8,1,7,1,6,1,8,3,16,4,8,1,16,1,8,1,6,1,8,1,7,1,8,2,16,1,6,1,16,1,14,1,6,1,8,5,6,1,14,1,16,2,8,4,16,2,6,3,8,1,16,2,8,2,6,2,8,4,13,1,6,4,8,2,6,1,8,1,13,1,6,4,16,2,6,1,8,2,6,22,16,4,6,1,8,1,6,5,16,9,8,1,6,4,7,1,16,6,6,1,16,1,6,2,8,1,16,2,8,3,6,9,13,2,8,1,6,1,16,4,8,2,16,7,6,1,16,1,8,1,6,1,16,3,14,3,16,4,14,4,16,19,8,1,16,1,8,16,6,1,8,1,6,2,8,4,6,2,8,1,16,1,6,2,8,2,16,1,8,2,6,1,8,3,16,1,8,1,16,2,8,3,16,1,6,2,16,1,8,5,7,1,8,2,16,1,8,2,16,4,8,2,6,1,16,2,8,1,16,2,8,2,16,1,6,2,8,1,16,1,8,7,7,1,6,1,16,1,6,1,28,1,8,2,16,5,8,1,6,2,7,1,8,5,16,3,8,1,6,1,8,1,16,1,6,3,8,1,13,1,6,1,13,2,8,2,6,1,28,1,30,2,13,1,6,1,28,9,6,1,13,1,30,2,6,4,29,1,28,3,6,2,28,5,16,5,8,1,16,7,8,2,16,1,8,1,16,1,8,1,6,1,28,26,8,1,9,1,28,6,14,1,28,11,11,1,1,147,}, + {1,108,14,1,28,2,30,1,28,2,30,2,28,3,30,1,28,3,30,1,6,1,30,1,28,1,8,2,6,1,16,1,14,1,6,1,30,1,6,1,30,1,6,1,16,2,28,1,6,1,30,1,28,1,6,10,13,1,6,14,16,2,6,1,8,4,14,1,16,1,6,2,8,2,6,1,16,4,8,1,13,1,8,2,6,1,8,1,7,1,8,1,7,1,16,1,6,1,16,1,14,1,7,1,8,4,7,1,8,1,14,1,16,2,8,3,16,1,14,1,16,1,6,1,8,2,7,1,8,1,6,1,8,1,6,1,8,2,6,1,8,3,6,3,8,2,6,2,13,3,6,3,8,2,14,1,6,1,8,1,6,18,8,3,16,6,6,1,8,1,6,3,16,5,8,2,6,2,8,2,6,4,16,9,8,1,6,2,28,1,8,1,6,16,8,1,6,1,8,1,6,1,14,1,8,1,16,8,6,1,16,1,6,1,16,4,14,3,16,4,14,4,16,17,8,1,16,3,8,13,7,2,6,1,8,1,6,1,7,1,8,2,16,1,6,1,8,2,6,1,8,1,16,1,6,1,8,1,16,1,8,4,6,1,8,4,16,1,8,1,16,2,8,2,16,1,8,1,6,2,16,3,8,1,16,1,8,2,16,1,8,1,16,11,8,3,16,1,8,3,6,2,16,2,8,6,6,1,8,1,16,1,6,1,28,1,6,3,8,1,16,2,6,3,8,2,6,1,8,2,6,3,7,1,8,7,6,1,13,3,6,1,13,1,6,1,13,2,6,2,29,2,6,1,13,1,6,1,13,2,8,1,6,4,29,1,6,2,28,1,30,2,28,2,29,1,6,2,28,2,6,2,28,4,16,4,8,1,16,7,8,4,16,1,8,2,6,1,28,2,6,1,16,1,14,1,16,1,9,1,8,1,28,4,29,1,28,13,6,1,28,7,7,1,28,10,17,1,1,148,}, + {1,107,28,3,6,1,28,3,30,2,28,1,30,3,28,1,13,2,30,3,6,1,14,1,6,9,14,1,6,4,30,1,6,10,16,1,8,1,6,5,16,2,6,2,13,1,8,2,6,1,16,2,6,1,8,2,7,1,8,1,14,1,16,1,6,1,8,2,7,1,6,1,16,1,14,1,16,1,8,1,28,1,6,4,8,1,7,1,8,5,16,2,6,1,8,3,6,1,16,3,8,1,7,1,8,2,16,3,6,1,8,5,6,3,16,2,8,2,6,3,8,2,7,1,8,3,13,4,6,1,8,1,6,1,14,1,6,1,8,2,6,13,8,3,16,9,8,1,16,1,8,1,6,2,16,4,8,1,6,2,8,2,7,1,6,3,7,1,16,11,8,2,6,1,8,1,6,4,8,3,6,4,30,3,6,4,8,2,6,1,8,1,16,1,8,1,16,7,8,1,16,1,6,1,16,4,14,7,16,2,14,2,16,19,8,18,6,1,7,2,8,1,16,1,6,2,8,1,16,1,6,1,16,2,6,1,8,1,16,2,8,1,16,1,6,1,8,3,16,1,8,1,16,5,8,2,16,1,8,1,6,1,16,3,8,1,16,2,8,2,16,1,8,3,16,3,8,1,16,1,8,1,16,2,8,3,16,1,8,2,16,1,6,3,16,2,7,1,8,4,6,2,16,1,6,2,8,1,7,1,6,2,8,1,16,1,8,1,6,1,8,2,16,1,8,7,6,1,13,1,8,2,16,1,8,1,6,2,8,1,6,1,13,2,6,1,30,1,6,1,13,1,8,1,9,1,8,1,6,1,13,1,8,1,13,1,6,1,16,5,8,1,6,3,28,11,6,1,28,3,6,1,8,1,16,4,8,1,16,5,8,5,16,1,8,2,28,3,14,1,6,1,28,11,29,1,6,1,28,27,1,150,}, + {1,106,30,1,28,1,6,1,13,1,30,1,28,3,30,1,28,1,30,5,16,1,30,1,6,2,28,1,14,2,28,3,6,5,16,2,6,14,28,1,16,1,8,2,16,1,8,1,6,1,16,1,14,1,16,1,8,3,13,1,8,1,7,1,16,1,14,1,8,5,14,1,16,1,6,1,8,4,16,3,28,1,6,1,16,1,6,1,30,1,8,5,7,1,16,2,8,1,14,1,8,4,16,1,14,1,16,1,8,1,6,2,8,1,16,3,8,1,7,1,8,6,16,1,6,1,16,3,6,2,8,2,13,1,8,2,7,1,6,1,8,2,6,1,8,1,6,2,8,2,16,1,8,3,7,1,6,3,13,1,6,7,16,11,8,1,6,3,16,3,14,1,16,2,6,2,8,1,16,1,6,3,8,1,16,15,8,1,6,1,8,1,6,1,8,1,16,2,8,2,6,4,30,1,6,3,30,1,6,1,13,1,6,2,8,1,16,1,6,1,14,1,6,1,16,5,14,1,16,1,6,1,16,6,14,7,16,2,14,2,16,20,8,8,16,1,8,2,7,1,8,6,6,1,8,3,6,1,8,3,6,1,16,2,6,1,16,1,8,2,16,2,6,1,8,1,16,2,7,1,16,1,8,1,16,1,8,1,16,4,8,1,16,2,6,4,8,1,16,3,8,1,6,3,7,1,6,1,8,2,16,1,8,1,16,2,8,8,6,2,8,1,16,1,8,5,6,1,8,1,16,1,6,2,8,2,6,4,16,2,8,11,6,3,16,1,8,2,6,2,13,2,6,2,13,1,30,1,6,1,13,3,30,1,28,3,30,1,13,1,6,2,8,3,13,1,16,1,8,1,6,1,28,11,6,2,28,2,8,1,16,10,8,7,16,1,28,2,6,1,16,1,28,14,16,1,6,1,28,24,1,151,}, + {1,104,14,1,28,1,6,2,13,1,30,1,28,1,30,2,28,1,30,6,6,1,8,1,30,1,6,1,28,1,8,1,14,1,30,2,6,3,8,1,6,3,16,2,6,15,16,1,8,2,16,3,14,1,16,2,8,6,16,3,7,1,16,1,8,1,16,1,14,2,8,5,16,2,6,2,16,1,6,2,8,2,13,1,8,5,16,4,7,1,8,2,16,3,6,4,8,11,16,3,8,2,6,1,13,1,8,4,7,1,8,3,6,1,8,2,13,1,6,1,16,1,8,1,16,2,6,1,8,3,6,3,13,1,6,4,8,1,16,7,8,2,6,4,13,1,6,3,8,1,14,1,16,2,8,1,6,1,16,1,6,3,16,18,8,3,16,4,8,2,7,1,6,12,8,1,16,1,6,1,16,1,6,1,16,1,8,1,16,4,6,2,16,6,14,6,16,1,14,4,16,21,8,7,16,1,8,8,6,1,7,1,8,4,6,1,8,1,7,1,6,1,16,2,6,1,8,1,16,1,8,1,16,1,8,1,6,1,8,1,16,1,8,5,16,5,14,1,16,1,6,3,8,1,6,3,16,1,6,10,8,2,16,1,6,2,8,7,6,2,8,1,16,1,6,2,8,1,13,1,6,1,8,1,16,1,7,1,8,2,6,1,8,3,6,1,8,1,16,2,8,11,6,2,8,4,13,1,6,6,30,2,6,1,13,2,30,1,6,1,30,1,28,1,30,1,28,5,13,1,6,1,16,2,6,1,28,2,29,1,28,7,30,1,28,1,29,1,28,1,6,1,16,4,8,1,16,5,8,1,16,1,8,2,16,2,8,1,16,1,28,3,7,1,28,13,6,1,14,1,6,1,28,16,6,1,29,1,28,4,11,1,1,152,}, + {1,103,14,1,6,1,13,2,28,2,30,1,29,1,30,1,28,1,6,1,8,1,28,2,6,1,30,1,28,1,16,1,6,3,28,1,16,1,8,1,30,1,6,4,8,1,14,1,16,1,14,2,7,1,6,7,13,1,6,6,8,1,14,2,8,3,16,3,8,1,6,1,8,4,7,1,16,2,14,1,8,3,16,1,14,2,7,1,16,1,8,3,16,2,6,1,8,2,13,1,8,9,16,2,6,1,16,1,7,1,8,1,16,1,14,1,8,1,6,2,8,4,6,1,8,9,16,2,8,1,7,1,6,1,8,9,7,1,6,2,8,1,6,2,16,3,8,1,6,1,8,1,16,1,7,1,13,1,6,1,13,1,6,3,8,1,16,7,6,4,8,3,6,4,8,1,6,1,8,1,16,2,6,1,16,1,6,2,8,4,16,16,8,1,16,5,8,1,16,1,8,2,6,13,16,1,6,1,16,1,6,1,16,2,8,1,16,3,28,1,7,1,16,2,14,1,16,3,14,2,16,3,14,7,16,19,8,14,7,1,8,3,7,1,6,1,8,3,16,1,8,1,16,1,8,1,16,2,6,1,8,4,16,1,6,2,16,1,8,1,16,2,8,2,16,1,8,1,16,2,8,2,6,2,16,2,8,1,16,1,6,1,8,2,7,1,6,2,8,5,6,2,8,1,16,2,8,8,13,2,6,2,8,2,7,1,8,1,13,1,6,1,16,2,6,1,8,6,6,2,16,1,14,1,8,11,6,2,13,1,8,1,13,1,8,1,13,1,6,6,30,2,29,1,6,1,16,1,8,1,6,2,28,1,6,1,30,1,28,1,29,1,28,3,29,1,6,1,8,1,16,1,13,1,28,13,6,1,16,5,8,1,16,6,8,6,28,16,8,1,7,1,28,10,6,1,28,11,8,1,17,1,1,153,}, + {1,102,6,3,30,1,28,2,30,3,28,1,13,1,14,1,13,1,6,5,14,1,6,3,7,1,14,1,6,5,16,2,8,1,6,1,8,1,6,8,16,1,6,1,7,1,6,3,16,2,14,1,16,2,8,1,6,3,16,1,6,1,28,1,6,2,8,1,16,1,8,2,16,4,8,3,16,1,14,1,8,1,16,1,8,3,16,2,8,8,16,1,8,2,7,1,8,1,16,2,6,1,16,2,6,1,16,1,14,1,8,1,6,1,8,4,6,1,8,1,16,2,8,6,16,3,6,1,8,15,6,2,16,2,14,1,8,1,6,1,8,2,7,1,8,2,6,2,8,1,16,6,6,3,8,1,16,2,8,1,6,9,8,1,16,2,6,1,16,1,6,2,8,1,6,1,16,1,8,2,16,15,6,1,16,1,7,1,8,1,16,4,8,1,7,1,6,9,8,2,16,3,6,1,8,1,6,1,16,2,8,1,6,3,8,1,16,7,14,12,16,19,8,3,16,2,8,1,16,1,8,12,6,2,8,2,6,2,7,1,8,1,6,1,8,4,16,1,8,2,7,1,8,1,16,1,8,3,16,2,8,1,16,2,8,1,6,2,16,2,8,1,16,1,8,4,16,1,8,2,16,2,8,1,16,3,8,1,6,2,8,1,16,2,6,1,8,3,6,1,8,4,13,1,6,2,16,1,8,1,6,3,8,2,6,1,8,7,6,2,8,1,16,2,8,10,6,3,13,4,6,1,30,2,6,1,30,4,29,1,13,2,29,1,30,1,28,1,30,1,29,1,28,8,6,1,8,1,6,1,28,13,16,10,8,5,16,1,7,1,8,1,29,1,28,37,8,1,1,156,}, + {1,101,6,3,28,2,30,1,28,1,6,1,30,1,28,1,6,1,14,1,8,1,6,4,28,1,16,2,30,1,6,2,16,2,28,1,6,3,8,1,14,1,6,2,28,2,30,1,6,7,16,3,8,1,16,7,6,4,30,1,6,1,8,1,6,1,8,3,14,1,16,5,8,2,16,1,14,1,16,1,8,5,16,3,7,1,8,6,16,1,8,3,7,1,14,1,16,1,7,2,16,4,8,1,7,1,8,6,16,2,7,1,8,5,16,2,8,1,6,2,7,1,8,14,16,4,8,4,16,1,8,1,6,1,8,1,16,6,6,2,8,1,16,2,13,1,6,11,8,1,6,1,16,2,6,1,16,1,6,1,7,1,8,2,16,18,8,1,16,1,8,1,16,8,8,4,16,3,14,3,16,2,8,2,16,11,8,1,16,4,14,12,16,20,8,8,16,1,8,6,16,1,7,1,6,2,8,5,6,1,7,1,6,1,8,6,6,1,8,1,16,1,8,1,16,1,8,5,16,2,6,3,8,1,16,3,8,1,16,1,8,2,16,1,8,4,16,1,8,1,16,1,8,1,16,1,6,2,8,1,16,2,6,1,8,6,6,1,13,1,8,1,6,2,13,3,8,1,6,1,8,2,6,1,8,8,6,2,8,1,16,2,8,5,7,1,8,2,13,2,6,3,13,1,6,2,13,1,6,2,30,4,28,1,29,1,28,1,6,1,29,1,28,14,6,1,7,1,28,12,16,5,8,1,16,6,8,6,28,36,8,1,16,1,1,157,}, + {1,100,8,1,30,1,28,1,30,4,28,1,13,1,28,1,6,1,14,1,16,1,6,5,16,1,14,1,8,1,6,3,14,1,6,1,30,1,6,3,16,2,6,4,28,1,13,1,8,1,6,1,13,1,6,3,14,1,16,2,8,1,16,4,8,3,28,1,16,2,8,2,16,2,8,2,16,1,8,2,16,3,8,3,16,4,8,5,16,3,7,1,8,7,16,2,8,2,14,2,7,1,16,1,8,1,16,1,8,1,16,1,6,1,8,7,16,2,8,3,16,1,8,1,16,3,8,1,7,2,8,13,16,6,7,1,6,4,16,8,6,1,16,1,14,1,16,1,6,14,13,1,16,1,6,1,8,1,16,1,7,1,16,1,8,2,16,35,14,1,16,2,8,1,6,1,8,1,16,1,8,3,16,11,6,1,16,1,14,1,16,1,14,12,16,19,8,2,16,1,8,14,7,2,6,3,8,5,6,1,8,4,16,1,8,2,16,2,8,2,16,2,8,2,16,3,6,2,16,1,8,1,16,5,8,2,16,2,8,1,16,2,8,4,16,1,8,1,6,2,7,1,16,1,6,1,8,2,6,1,8,1,6,1,8,2,13,3,6,6,8,8,6,1,8,2,16,1,6,2,13,1,16,2,6,1,8,1,6,1,8,4,13,3,6,4,30,1,6,2,30,4,28,1,29,1,28,2,30,1,6,1,30,1,28,2,6,1,28,11,30,1,8,1,6,1,28,10,7,1,16,4,8,1,16,6,8,5,16,1,28,3,6,1,28,14,8,1,28,7,6,1,28,7,8,1,1,160,}, + {1,98,14,1,8,1,29,1,28,1,30,1,28,2,30,1,6,1,30,1,6,2,14,1,16,1,28,2,6,2,16,1,14,1,16,1,8,1,6,3,8,1,14,1,6,5,16,1,8,1,6,3,13,1,6,1,13,2,6,1,8,1,6,2,8,1,14,1,16,1,7,1,6,1,13,1,6,1,13,1,6,2,16,4,8,1,16,4,8,2,16,1,14,1,16,1,8,1,6,1,16,2,8,3,16,4,8,5,16,2,7,1,8,6,6,1,16,1,14,1,16,2,8,1,16,1,8,1,16,1,8,1,16,2,7,1,6,1,8,7,16,1,14,1,16,1,8,3,7,1,16,3,8,3,16,1,8,10,16,6,8,1,6,1,8,1,13,2,7,1,6,2,8,1,16,1,14,1,16,1,6,3,16,1,8,1,13,1,6,16,16,1,7,1,8,1,16,1,6,1,16,12,8,2,16,1,8,4,6,1,8,1,6,2,16,17,6,3,8,2,6,3,16,13,8,1,16,1,14,12,16,22,8,1,16,1,8,9,7,1,8,2,7,1,8,1,7,1,6,2,8,1,7,1,6,1,8,2,16,3,6,1,8,1,6,1,8,1,16,3,8,4,16,1,8,1,16,1,8,2,6,1,8,1,16,5,8,1,16,1,8,1,16,4,8,8,6,2,8,1,16,1,8,1,6,1,8,1,13,1,8,1,13,1,6,1,8,1,13,3,6,4,7,1,8,1,7,1,8,2,13,1,8,9,6,2,8,1,16,2,6,2,8,4,13,2,6,1,13,1,30,2,13,1,6,2,30,2,6,1,30,1,29,1,28,3,6,1,30,2,6,2,30,1,28,14,6,2,28,9,6,1,16,5,8,1,16,4,8,6,16,1,28,4,9,1,28,11,16,1,28,9,16,1,29,1,28,4,17,1,1,162,}, + {1,97,14,1,28,1,29,1,30,3,28,1,30,1,6,2,28,1,6,1,16,2,6,2,28,1,6,1,13,1,16,2,6,5,8,1,16,1,6,5,14,1,8,1,6,5,16,2,6,1,7,1,8,2,16,1,14,2,6,6,16,1,14,1,16,2,8,1,16,1,8,2,16,2,8,2,16,1,14,1,16,1,6,1,7,1,6,3,16,6,8,5,16,2,8,1,6,1,8,6,16,1,14,1,16,4,8,1,16,2,8,1,16,2,7,2,8,2,7,1,8,2,6,1,16,1,14,1,16,1,8,4,16,3,8,3,16,1,7,1,8,8,16,4,8,5,6,4,8,1,16,2,6,5,16,1,8,1,6,18,8,1,16,1,6,2,16,1,8,1,16,8,8,2,16,2,8,2,6,3,8,1,6,4,16,2,6,4,8,1,6,1,7,1,6,8,16,1,6,2,16,1,8,1,6,1,16,2,6,1,16,4,6,3,8,1,16,4,6,1,16,1,14,12,16,21,8,2,16,2,8,1,16,1,8,8,6,1,8,1,6,4,8,1,6,1,16,1,8,1,16,4,8,2,16,5,8,1,16,7,6,1,8,2,16,3,8,1,16,2,8,1,16,6,8,8,6,2,8,1,16,1,6,1,8,2,6,1,13,1,6,1,8,1,13,2,8,1,13,1,6,2,8,2,7,2,8,2,6,1,8,8,13,1,8,1,13,1,6,1,8,1,16,2,6,2,8,1,6,2,13,1,6,1,13,2,6,1,30,3,6,2,30,3,28,4,29,1,6,1,13,3,8,2,28,25,16,10,8,7,28,5,8,1,28,9,29,2,28,13,17,1,1,164,}, + {1,96,14,1,29,1,30,1,29,1,30,2,6,1,30,1,6,3,28,1,6,6,8,1,13,1,6,1,30,1,28,1,6,1,8,1,6,2,16,1,14,1,6,4,8,1,14,1,6,2,13,1,8,2,7,1,8,1,16,1,8,1,6,3,16,3,6,1,8,3,16,1,8,1,14,2,8,1,16,2,8,1,16,2,8,2,16,1,8,1,16,3,8,1,16,2,8,2,16,1,14,1,16,2,8,1,16,1,8,1,16,2,8,3,14,1,16,1,8,7,16,1,14,1,16,2,8,4,16,1,8,1,14,1,16,1,8,6,7,1,16,3,8,3,16,1,8,1,16,3,8,4,6,1,8,5,16,1,8,1,16,4,8,3,16,1,13,1,6,6,8,3,6,2,13,1,8,1,6,20,16,2,8,1,6,1,16,1,8,2,16,3,8,1,6,3,16,2,8,1,6,4,16,2,8,1,16,1,6,1,8,3,6,7,8,4,16,4,6,1,8,1,16,1,6,1,16,2,8,3,16,4,8,1,6,1,16,3,6,1,16,3,8,1,16,1,14,12,16,21,8,1,16,1,8,11,7,2,8,1,6,1,8,2,6,1,8,2,16,1,6,4,16,3,8,2,6,2,16,6,8,1,16,1,8,3,16,6,8,1,16,2,8,1,6,2,16,4,8,6,6,2,8,1,16,1,6,5,8,1,6,1,8,1,6,1,13,1,6,3,8,1,6,2,8,3,6,1,7,1,8,8,13,1,8,1,13,1,6,1,8,1,16,2,6,2,13,2,6,4,30,1,6,1,30,2,6,1,13,1,30,2,29,1,28,3,30,1,6,2,8,2,13,1,8,1,13,3,28,23,16,4,8,1,16,5,8,4,7,1,8,1,16,1,28,5,16,1,28,21,7,1,1,167,}, + {1,95,11,1,6,1,13,1,28,1,30,1,6,4,16,1,6,2,13,1,14,1,6,4,8,1,16,1,6,5,8,2,16,3,6,2,13,1,6,1,16,1,14,1,6,1,13,1,8,3,6,2,16,2,8,1,16,3,14,1,8,7,16,2,8,2,16,1,8,2,16,3,8,1,16,4,8,1,16,1,8,1,16,1,8,1,16,1,14,1,16,1,6,3,8,1,16,3,8,1,16,2,14,1,16,1,8,6,16,1,14,1,16,1,8,1,6,1,8,3,16,1,8,1,16,1,8,8,16,3,6,2,8,3,16,3,8,4,13,1,8,5,16,3,14,1,16,1,6,1,8,1,16,1,8,1,6,5,13,1,6,2,28,1,8,1,16,2,6,2,8,1,6,2,13,1,6,17,8,1,16,1,8,2,16,1,8,3,7,1,8,1,6,2,16,1,8,1,6,4,8,1,16,6,8,1,16,1,8,1,6,3,8,1,16,1,8,2,7,1,6,6,13,1,8,2,16,1,14,1,16,1,8,2,16,1,6,1,8,1,16,4,8,2,16,7,8,1,16,1,14,12,16,21,8,1,16,1,8,13,6,2,8,1,7,1,8,3,16,1,8,2,16,1,6,2,16,2,6,4,16,1,8,1,6,1,7,1,6,4,16,7,8,1,16,3,8,1,6,1,8,2,6,1,16,1,8,3,16,1,8,2,6,1,13,1,8,1,6,1,13,1,16,2,6,2,13,1,6,1,8,1,6,1,13,1,6,1,13,2,6,2,13,1,8,7,6,1,8,2,6,1,8,1,13,1,8,2,13,1,8,1,13,2,6,1,8,1,16,1,8,1,6,8,30,3,6,2,30,2,28,3,30,3,13,1,9,1,6,2,28,2,6,1,13,1,16,1,6,1,28,21,16,10,8,2,6,2,8,3,6,1,28,3,6,1,28,20,11,1,1,169,}, + {1,94,11,1,6,1,9,1,28,1,6,1,8,1,6,3,8,1,16,1,8,1,6,1,14,1,8,1,6,4,8,2,6,4,8,4,16,1,6,2,8,1,6,2,16,1,14,1,6,2,8,4,6,1,16,1,14,1,16,5,7,1,6,1,8,5,16,1,6,2,8,1,16,3,8,1,16,1,8,1,16,1,8,1,16,3,8,1,16,1,8,1,16,1,8,1,16,1,14,1,16,1,6,1,8,1,6,2,7,1,8,1,16,1,8,2,16,3,8,6,16,1,14,1,16,1,6,3,8,3,16,1,7,1,16,1,8,1,6,1,8,1,16,3,8,1,16,1,8,1,6,1,8,2,6,1,8,2,7,1,16,2,8,4,6,2,8,3,16,2,14,1,16,1,8,4,6,2,8,1,6,1,8,1,13,3,6,4,16,3,6,1,8,1,13,1,6,17,8,1,6,1,16,5,6,5,8,1,6,5,8,1,16,9,6,3,8,1,16,2,8,3,7,1,6,1,13,2,6,5,8,1,6,1,16,1,14,1,6,1,8,1,16,1,8,1,16,5,8,2,16,9,14,5,16,3,14,5,16,21,8,1,16,1,8,16,6,1,8,2,16,1,8,1,16,3,6,2,16,1,8,3,16,1,7,1,6,5,8,1,6,2,16,9,6,2,16,3,6,1,8,1,16,1,8,8,6,2,8,1,16,1,6,4,13,2,6,2,13,2,6,2,8,1,13,1,8,5,16,2,6,3,7,1,13,1,8,1,6,1,13,1,6,5,8,1,9,1,6,6,30,3,28,1,30,1,13,1,6,1,8,3,13,1,6,2,30,1,29,1,30,1,28,7,29,1,6,1,30,1,28,12,29,2,30,1,28,5,8,1,16,2,8,1,16,1,8,1,16,4,8,2,7,1,6,1,8,2,16,1,6,1,28,22,12,1,1,171,}, + {1,93,29,1,6,2,28,1,6,1,16,1,8,1,6,3,16,1,8,1,16,1,14,1,16,1,6,5,16,1,6,5,16,2,6,1,28,2,6,2,16,3,14,1,16,1,8,1,6,1,8,5,16,1,14,1,16,2,8,1,6,3,8,1,16,1,8,3,16,1,6,2,16,1,8,1,16,2,8,1,16,1,8,1,16,1,8,2,16,2,8,2,16,1,8,2,16,2,14,1,16,1,8,1,16,3,8,1,6,1,8,2,16,3,6,2,8,1,16,1,8,2,16,1,14,1,16,2,6,1,8,2,6,1,8,4,16,1,14,1,6,2,8,1,16,1,8,2,16,1,7,1,6,1,8,5,16,4,6,1,8,3,6,1,8,2,16,3,8,3,7,1,8,1,6,1,8,4,7,1,8,1,7,1,8,1,6,1,13,1,6,2,16,3,6,1,8,1,13,1,6,14,13,1,6,4,16,4,6,10,8,1,16,10,8,1,7,1,6,2,16,4,8,4,6,7,16,1,6,1,16,2,8,2,16,1,8,2,16,3,8,2,16,7,8,1,16,2,14,6,16,2,14,5,16,22,8,3,16,1,8,10,6,2,7,1,8,3,16,2,8,1,16,3,6,1,16,1,14,1,8,2,16,1,6,2,8,1,16,5,6,1,16,3,8,1,16,3,8,1,6,2,16,4,6,1,8,1,16,1,8,7,6,1,13,1,28,1,13,1,14,1,6,2,13,2,6,8,8,3,6,2,28,1,6,1,8,1,14,1,16,1,6,1,7,2,6,2,13,1,6,1,13,1,6,1,13,1,6,2,30,1,6,6,30,4,28,1,6,1,13,1,6,1,8,3,13,1,6,1,28,16,6,1,29,1,28,8,6,1,29,1,28,6,6,1,16,2,8,2,16,5,8,2,6,2,8,4,28,19,9,1,1,174,}, + {1,92,6,2,28,2,6,1,14,1,6,1,28,1,6,2,16,2,8,1,6,1,16,1,8,1,6,4,8,1,14,1,6,2,13,1,6,1,8,1,14,1,8,1,6,1,13,1,6,2,8,2,16,3,8,7,7,1,16,1,14,1,16,1,6,1,28,1,6,3,16,1,8,5,16,1,8,1,16,9,8,1,16,3,8,1,16,1,8,3,16,1,14,1,16,1,8,1,16,1,8,2,16,1,8,3,16,1,14,1,8,1,6,4,8,1,16,5,6,1,16,1,8,2,16,3,8,1,16,1,14,1,6,1,16,1,8,3,16,2,6,1,8,7,16,2,8,1,6,1,8,2,16,1,6,1,8,3,6,1,8,3,16,2,6,2,8,4,7,1,6,1,8,3,7,1,6,2,16,3,6,1,8,1,13,1,6,19,16,4,6,1,13,1,6,5,8,2,16,11,8,2,6,2,16,4,8,4,6,3,13,1,6,5,8,1,6,1,16,1,6,1,16,3,8,2,16,11,7,1,14,1,16,1,14,5,16,2,14,5,16,24,8,3,16,1,8,8,6,1,8,1,6,1,7,1,6,1,8,3,16,2,8,4,6,1,8,1,16,2,6,1,8,1,16,2,8,2,16,3,6,1,8,1,16,5,6,2,8,1,16,2,8,1,16,1,8,4,16,1,8,2,6,1,8,1,13,2,6,1,8,1,6,1,30,1,8,1,16,1,6,4,13,3,6,4,8,3,6,2,13,2,6,2,8,1,16,1,8,1,6,2,13,1,6,2,13,1,6,1,13,1,6,1,13,1,28,1,30,1,13,1,6,2,30,2,29,1,30,2,28,1,30,1,6,2,13,1,28,1,30,1,28,1,30,1,28,26,30,1,28,9,16,2,8,3,16,5,8,1,6,1,8,5,28,10,29,1,28,7,1,176,}, + {1,91,30,1,6,3,28,1,6,1,13,1,6,3,8,1,14,1,8,1,6,8,8,1,16,1,6,2,13,1,6,1,16,1,14,1,6,1,7,1,8,1,6,1,8,1,16,1,6,6,16,1,8,5,14,1,16,1,8,1,6,1,16,2,8,2,16,1,8,3,16,1,8,2,16,1,8,1,16,1,14,1,16,10,8,1,16,2,8,3,16,1,14,1,7,1,8,7,16,1,14,1,16,1,7,1,16,2,7,1,6,1,8,3,16,2,8,3,16,3,8,2,16,2,6,1,8,1,16,1,8,2,16,2,8,6,16,1,8,1,16,1,14,1,6,1,8,5,6,2,8,6,6,2,8,8,6,1,8,1,6,3,16,1,14,1,8,1,7,1,8,1,6,2,13,1,6,16,8,1,16,2,8,1,16,1,8,1,6,1,28,1,6,2,13,1,8,4,16,10,6,3,16,2,8,1,16,2,8,1,16,1,8,3,7,1,6,1,13,1,6,5,16,1,6,1,16,1,6,1,8,1,16,1,14,1,16,1,8,1,16,2,8,1,16,11,14,4,16,2,14,5,16,22,8,1,16,3,8,3,16,1,8,3,6,1,8,1,7,1,8,1,6,1,8,1,13,1,6,1,8,2,16,1,8,1,16,1,8,1,16,1,8,1,16,2,6,2,8,1,6,2,16,2,8,1,16,5,8,2,16,3,8,1,6,2,16,2,8,2,16,1,8,3,7,1,16,1,8,3,7,1,13,3,6,1,13,2,6,1,30,1,16,1,8,1,6,1,13,1,6,5,30,1,6,1,16,1,7,1,8,1,13,1,6,2,8,2,13,1,6,3,16,2,6,3,13,1,6,4,29,1,30,1,8,1,6,1,13,1,9,1,13,1,6,1,30,1,28,3,29,1,6,2,28,7,30,1,28,28,9,1,6,1,28,3,16,3,8,2,16,5,8,1,6,1,8,1,7,1,8,3,28,4,30,1,6,1,28,9,9,1,16,1,1,177,}, + {1,90,6,4,30,1,6,4,8,1,6,1,16,2,6,1,13,2,30,1,6,5,16,2,6,1,13,2,6,1,16,2,6,1,7,1,8,2,16,1,14,1,6,5,8,3,16,1,8,3,14,2,6,1,8,1,16,1,8,2,16,1,8,2,16,1,8,2,16,1,8,3,16,1,14,1,16,1,6,2,8,4,16,2,8,3,16,2,8,2,16,2,8,2,16,1,8,5,16,3,8,5,16,1,8,2,16,1,8,1,16,1,8,2,16,1,8,1,16,5,7,1,8,5,14,1,16,1,6,1,8,6,16,1,14,1,6,1,8,1,16,1,8,3,6,1,14,1,16,1,8,5,6,1,8,8,6,2,7,1,8,2,16,2,14,1,8,3,13,1,6,1,13,1,6,16,7,1,16,3,8,1,16,1,6,2,8,1,6,2,8,4,16,8,8,2,7,1,6,1,16,7,8,4,6,1,8,1,6,6,16,1,8,4,16,1,8,1,16,4,6,2,16,7,14,1,16,2,14,10,16,25,8,1,16,4,8,9,6,1,8,1,7,1,8,1,16,1,8,1,6,1,16,2,6,1,16,1,8,2,16,1,6,1,8,1,16,4,8,1,16,2,8,1,16,2,6,1,8,1,16,2,7,1,6,1,8,1,16,2,8,1,16,2,8,2,16,1,6,1,8,1,16,1,6,1,8,1,6,1,8,1,6,1,8,2,6,2,13,1,6,1,28,1,6,1,8,1,6,6,13,1,30,1,6,1,8,1,6,1,8,1,6,2,8,2,6,1,8,2,6,2,13,1,14,1,8,1,6,6,28,1,6,1,13,2,6,1,13,1,6,1,13,3,30,2,29,1,30,3,28,6,30,3,28,27,13,1,28,4,9,1,16,3,8,1,16,5,8,1,6,2,8,4,28,13,29,1,17,1,1,179,}, + {1,89,6,2,16,1,13,1,6,1,13,1,8,1,6,3,8,2,14,1,6,2,13,1,6,2,8,2,6,2,8,1,16,1,8,1,6,1,13,1,6,2,16,2,6,1,7,1,8,1,6,1,16,1,14,1,8,5,16,2,8,2,16,1,8,1,16,1,14,1,16,1,8,3,16,1,8,3,16,3,8,2,16,4,14,1,16,1,8,1,16,1,8,3,6,2,8,1,16,3,8,1,16,2,8,2,16,2,6,1,8,7,16,1,14,1,16,1,8,5,16,1,8,2,16,3,8,4,14,1,16,1,8,7,6,1,16,1,14,1,8,1,6,1,8,4,6,1,16,2,7,2,16,2,7,2,6,1,16,1,6,2,16,1,8,2,6,2,8,9,16,5,14,1,16,1,7,1,8,3,6,6,13,1,6,11,7,1,16,5,6,2,13,1,8,4,16,9,7,1,6,1,8,1,6,1,16,6,8,1,16,2,8,2,16,1,8,2,13,1,6,4,8,4,6,2,16,1,6,1,8,1,16,2,6,1,8,1,16,1,8,2,16,8,14,9,16,5,14,1,16,20,8,1,16,2,8,2,16,1,8,6,6,1,8,2,6,1,8,2,16,1,6,2,16,2,8,2,16,1,8,2,16,1,6,1,16,1,8,1,16,5,8,1,16,2,6,1,8,1,16,1,8,2,6,1,16,2,8,1,16,3,8,3,6,1,8,1,16,1,6,1,7,1,8,1,13,1,8,2,13,1,6,2,13,2,6,1,28,1,13,1,8,1,6,4,30,1,29,1,6,3,8,2,13,1,6,1,13,3,6,1,13,2,6,1,30,1,8,1,16,1,6,4,30,2,6,1,13,1,8,1,13,2,6,1,30,3,13,2,9,1,6,1,28,1,30,2,28,7,29,1,30,3,28,24,30,1,13,1,28,4,6,1,16,1,8,2,16,6,8,1,6,2,8,3,16,1,28,6,29,1,28,4,29,1,17,1,1,181,}, + {1,88,6,2,8,1,13,1,6,2,14,1,6,4,16,3,6,1,8,1,6,1,7,1,6,1,16,6,8,1,6,1,13,2,8,1,16,2,7,1,8,2,7,1,16,1,14,1,8,6,16,2,8,1,16,3,14,1,16,1,8,1,16,1,8,5,16,1,14,1,16,5,8,1,16,1,14,1,16,7,8,2,16,1,14,1,16,1,8,2,16,1,8,2,16,1,14,1,16,1,8,4,7,1,8,1,16,5,8,2,16,1,8,2,16,1,8,1,16,1,14,1,16,1,8,1,16,2,8,1,16,1,14,1,16,1,8,8,14,2,8,5,6,1,16,2,7,1,8,2,16,3,8,1,16,1,6,2,16,1,8,1,7,1,8,10,16,7,7,1,6,1,8,3,6,17,7,1,8,1,16,3,8,2,6,2,8,1,7,1,8,2,16,9,8,1,6,1,8,1,6,1,16,6,8,1,16,4,8,5,6,4,14,1,16,2,8,1,6,1,8,4,6,2,8,1,16,5,8,1,6,1,8,1,6,1,8,1,16,2,14,3,16,1,14,2,16,1,14,2,16,4,14,2,16,23,8,2,16,1,8,1,16,1,8,3,13,1,6,1,13,1,8,1,6,1,8,1,16,1,8,1,6,1,8,1,6,1,8,1,16,2,8,2,16,1,8,1,6,1,14,1,16,1,8,1,16,2,8,4,7,1,8,3,16,1,8,3,16,2,8,6,6,1,16,2,7,1,8,2,6,1,8,1,13,1,6,3,13,1,6,2,28,1,6,4,8,1,6,2,13,2,6,2,13,1,8,2,6,3,13,2,6,2,13,2,28,1,9,1,16,1,6,2,30,2,28,1,13,1,6,1,13,1,6,1,30,1,29,1,30,2,28,2,30,1,13,1,9,1,13,1,30,1,28,9,29,1,30,2,6,2,28,17,6,1,28,5,9,1,28,5,16,2,8,2,16,5,8,1,6,2,8,3,16,1,28,5,29,1,28,4,11,1,1,183,}, + {1,87,6,2,13,1,6,3,13,1,8,1,6,3,8,1,16,3,6,1,8,2,6,1,8,1,16,6,8,5,14,1,16,1,6,1,8,3,7,1,16,2,8,1,16,1,8,1,16,1,8,2,16,1,8,1,16,1,8,1,16,1,14,1,16,1,8,2,16,3,8,2,16,23,8,2,16,1,8,2,16,2,8,4,7,1,16,4,8,5,16,4,8,1,16,1,14,1,8,2,16,1,8,1,7,1,14,1,16,1,7,1,8,6,7,1,14,2,8,1,6,1,8,4,16,2,8,4,16,4,6,1,8,1,7,1,14,1,6,1,8,8,16,5,8,1,7,1,6,2,7,1,6,1,8,1,16,1,8,2,6,1,13,1,6,5,13,1,6,4,13,1,6,3,8,2,16,3,8,1,16,1,6,1,7,1,8,5,16,8,6,1,8,1,6,1,16,9,8,1,16,2,8,1,16,1,8,3,7,1,6,2,16,3,7,1,6,2,8,1,16,2,8,1,16,11,6,1,16,3,14,9,16,4,14,2,16,21,8,1,16,2,8,3,16,1,8,4,13,1,6,1,8,2,16,1,8,1,6,1,8,1,16,1,6,1,16,1,8,1,16,2,8,2,7,1,16,4,8,10,16,1,8,4,16,1,8,5,6,2,16,3,8,1,6,1,8,1,6,1,8,1,6,3,13,1,6,1,13,1,30,1,6,2,13,1,6,1,13,1,8,2,13,2,8,1,6,2,13,1,8,1,6,11,8,1,13,1,30,3,28,1,13,2,30,1,29,1,30,1,28,1,29,1,28,1,30,1,28,3,6,1,14,1,13,1,28,43,16,2,8,3,16,4,8,1,6,3,8,2,16,1,28,8,8,1,1,185,}, + {1,86,16,1,6,3,28,1,6,5,7,1,16,2,6,1,8,2,6,1,8,1,6,2,16,5,8,1,16,1,8,3,7,2,16,2,6,1,8,4,16,2,8,1,16,2,8,1,16,1,8,1,16,7,8,1,16,4,8,1,16,4,8,1,6,1,8,1,16,3,8,1,6,1,8,1,16,7,8,1,16,5,8,3,16,3,8,1,16,1,8,2,16,1,8,1,16,2,8,2,16,1,8,1,16,2,8,2,16,1,8,1,16,1,14,2,6,1,8,3,16,1,14,2,8,5,16,1,6,1,16,1,14,1,16,1,6,1,7,1,8,1,16,4,8,4,16,2,14,1,8,4,14,1,8,1,6,1,8,7,16,1,14,1,16,1,8,4,6,2,8,1,6,3,16,1,8,1,6,1,8,1,13,4,6,4,13,1,6,5,8,1,16,4,8,1,16,1,8,1,6,1,8,5,16,6,8,3,6,1,16,18,8,1,16,2,14,1,6,1,8,1,6,2,16,1,14,3,16,7,7,1,6,1,16,3,6,1,16,3,14,6,16,1,14,4,16,26,8,1,16,1,8,1,16,1,8,6,6,1,8,2,16,1,8,1,6,1,8,1,16,2,6,1,16,1,8,1,6,2,16,2,8,1,16,1,6,4,8,1,16,2,8,6,16,1,8,4,16,2,8,4,6,1,16,1,6,2,7,1,16,1,8,1,6,3,13,1,6,1,13,1,6,4,30,1,6,1,13,1,6,2,13,2,6,2,13,1,6,3,13,1,6,12,13,1,6,1,30,3,6,1,13,1,6,1,28,2,29,1,28,7,13,1,9,1,29,1,28,42,16,2,8,4,16,2,8,1,16,1,6,3,8,3,6,1,28,5,29,1,16,1,1,186,}, + {1,85,11,1,6,6,7,1,16,1,6,2,8,1,16,1,8,1,28,1,6,2,7,1,8,2,6,1,16,1,14,1,8,1,6,5,7,1,8,1,6,1,7,1,16,2,6,1,8,4,16,1,14,1,8,2,16,2,8,3,14,1,16,13,14,1,16,1,6,2,8,4,6,1,8,1,16,10,8,1,16,1,14,1,16,1,8,1,16,1,8,1,16,3,8,5,16,1,8,4,16,1,8,2,16,5,8,1,16,1,14,1,16,1,8,1,16,1,8,1,6,1,14,2,16,1,8,2,16,1,8,3,14,2,16,1,6,1,8,5,16,2,6,1,8,2,6,1,16,1,14,1,6,1,8,1,6,1,8,1,14,1,16,1,7,1,8,4,16,1,8,1,16,3,8,2,6,1,8,4,6,3,8,1,6,1,16,1,8,1,6,7,13,1,6,3,13,1,6,1,8,1,6,1,8,1,16,4,8,1,16,1,8,1,6,1,8,1,16,1,8,2,16,8,6,2,8,1,14,1,16,20,6,1,8,1,6,2,16,1,14,1,16,1,8,2,16,6,6,1,8,1,16,2,8,1,16,1,6,1,14,1,16,2,14,3,16,1,14,6,16,1,14,2,16,24,8,1,16,3,8,5,6,1,8,3,16,1,8,1,16,2,8,2,6,1,16,2,8,1,16,1,8,1,6,1,8,1,16,1,8,2,16,1,6,2,16,1,8,8,16,1,7,1,8,6,6,2,16,1,8,1,6,1,8,1,6,2,16,1,8,1,6,2,13,1,6,6,28,1,8,1,13,1,6,8,13,1,6,1,13,1,6,10,30,1,28,1,13,1,16,1,30,1,28,1,30,1,28,1,13,1,14,1,30,1,28,10,29,1,6,1,29,1,28,41,8,1,16,1,8,3,16,4,8,2,6,1,8,4,6,1,28,4,8,1,1,188,}, + {1,84,11,1,6,4,13,1,6,2,16,1,14,1,6,1,8,1,7,1,16,1,6,1,8,1,6,2,8,1,6,2,16,1,14,1,16,1,6,5,8,2,6,1,8,1,16,3,7,1,8,4,16,8,8,1,14,2,16,2,8,2,16,6,8,1,16,1,14,1,16,1,8,1,16,5,8,1,16,1,14,1,16,10,8,1,16,4,8,1,16,1,8,5,16,3,7,1,8,3,16,2,8,1,16,5,8,2,14,2,8,4,16,1,14,1,16,2,8,4,6,1,16,1,14,1,8,1,7,1,8,5,16,1,14,1,7,1,8,3,16,1,14,1,6,1,8,3,16,2,7,1,8,5,16,3,8,1,6,1,8,1,16,1,8,2,6,5,16,1,8,1,16,2,8,3,6,1,13,2,6,2,13,1,6,1,13,1,6,3,8,1,16,19,8,2,28,1,16,22,8,1,7,1,6,2,16,1,14,1,6,2,8,3,16,4,6,1,8,1,16,3,6,1,16,5,14,14,16,22,8,1,16,2,8,7,7,1,8,3,16,1,8,1,16,1,8,1,16,1,8,2,16,2,8,1,16,1,8,1,7,1,16,2,8,2,16,1,6,2,16,1,8,6,7,2,16,1,8,8,16,1,8,5,6,2,9,1,8,1,6,2,13,1,6,2,13,1,6,1,28,1,6,1,13,2,6,7,29,1,6,11,30,4,28,1,9,1,13,1,30,1,28,2,6,1,14,1,8,1,30,1,28,11,6,2,28,20,29,1,28,20,16,2,8,2,16,4,8,2,6,2,13,1,6,1,8,2,28,2,29,1,1,190,}, + {1,83,17,1,6,7,16,1,14,1,8,1,6,2,16,2,8,2,16,2,6,1,8,1,6,1,16,1,14,1,6,2,8,1,16,1,8,1,13,1,16,1,7,1,16,4,6,2,8,5,16,6,8,1,16,1,14,1,16,2,6,1,8,1,16,2,8,1,16,6,14,1,16,19,8,1,16,6,8,7,16,2,8,7,16,1,14,1,16,1,8,2,16,3,14,1,16,7,7,2,16,1,8,1,16,1,8,2,14,1,8,1,7,1,8,6,14,1,16,1,6,1,8,3,14,1,16,1,6,3,8,1,16,1,6,1,8,3,16,2,14,1,16,1,7,1,8,2,16,1,8,2,6,4,8,1,6,1,8,1,16,3,8,1,7,1,8,1,6,2,8,3,6,4,13,1,7,1,6,1,16,5,6,2,7,1,16,11,8,1,16,1,6,1,16,1,8,1,16,20,8,1,6,2,16,2,6,1,8,1,6,2,16,1,8,1,16,3,6,1,8,1,16,10,14,15,16,24,8,2,16,1,8,8,16,3,8,2,6,1,16,2,8,5,16,2,8,1,16,2,6,2,8,8,7,1,8,1,16,1,8,8,6,1,8,4,13,1,6,2,13,1,6,3,13,2,30,2,28,1,13,2,6,3,30,1,6,1,30,2,6,2,30,1,13,2,6,1,30,1,6,2,30,1,6,1,30,6,28,1,29,1,9,1,30,1,28,3,30,1,16,1,13,1,28,30,30,1,29,1,28,15,13,1,28,6,16,2,8,3,16,4,8,1,6,2,8,4,28,1,16,1,1,191,}, + {1,83,28,1,6,2,8,1,13,1,6,2,16,2,8,1,6,1,8,2,16,2,8,2,6,1,16,1,8,1,16,1,8,1,16,2,8,6,16,4,8,1,6,2,8,6,16,2,8,1,16,5,14,1,16,1,8,1,16,11,14,1,16,1,8,1,16,22,8,1,16,1,8,8,16,2,7,1,8,5,16,3,8,4,16,6,8,1,16,1,8,2,16,3,8,3,16,2,7,1,8,6,16,1,14,1,8,1,7,1,8,1,7,1,16,1,14,1,9,1,7,1,6,1,7,1,16,1,8,4,16,1,14,1,8,4,16,1,8,1,6,3,8,2,7,1,6,3,8,1,16,1,6,1,16,2,8,8,7,1,6,1,8,2,16,4,7,1,6,3,8,3,16,2,8,1,7,1,8,2,6,2,8,2,16,17,8,1,6,1,8,2,16,2,6,2,16,2,14,1,6,1,7,1,8,1,6,1,8,1,16,3,8,1,6,1,7,1,16,7,8,1,16,3,14,11,16,2,14,2,16,27,8,6,16,1,8,1,16,2,8,1,16,2,6,1,16,3,8,3,6,1,8,1,16,1,8,2,16,1,8,1,6,1,8,14,6,1,8,4,16,1,13,1,8,3,6,2,28,1,8,2,6,3,30,2,28,1,6,1,13,1,6,1,13,1,6,1,30,7,28,2,8,1,6,2,30,9,28,1,30,1,28,1,6,1,13,1,28,4,6,1,13,1,28,37,7,1,8,1,28,15,16,2,8,3,16,4,8,1,6,3,8,3,16,1,1,192,}, + {1,82,6,2,16,1,6,1,16,1,6,2,8,1,16,1,8,1,6,2,8,1,16,3,6,1,8,2,16,1,8,2,16,3,6,1,8,5,16,1,14,1,16,1,7,1,6,2,13,1,16,1,8,4,16,4,7,1,16,6,8,1,16,2,8,1,16,8,14,1,16,13,8,1,16,8,8,2,16,3,6,1,8,5,7,1,9,1,16,1,8,2,7,1,8,3,16,3,8,2,16,3,14,1,16,2,8,4,16,1,8,2,16,2,8,2,16,3,8,8,14,2,6,1,8,3,14,2,16,1,6,2,16,3,8,2,16,2,8,4,6,3,8,6,6,1,8,1,16,1,6,1,8,1,7,1,16,2,8,3,16,1,8,3,7,1,8,3,16,3,7,1,6,1,8,1,6,3,8,1,16,2,8,1,16,3,8,2,16,1,8,1,6,1,16,13,8,5,16,2,8,1,6,1,16,1,6,2,8,1,14,1,6,5,8,2,16,2,6,2,16,6,6,1,16,1,8,1,16,3,14,11,16,2,14,2,16,27,8,6,16,1,8,1,16,3,8,1,16,1,8,1,16,4,8,1,16,1,8,2,16,1,8,3,6,2,16,1,8,8,7,1,6,1,8,4,16,1,8,6,6,1,7,1,8,1,13,1,28,1,8,2,9,1,6,1,30,2,6,1,28,1,13,1,16,1,6,2,30,9,28,1,30,1,13,1,8,1,30,1,29,1,30,6,29,1,28,1,29,1,28,2,30,1,29,1,28,41,9,1,8,1,28,16,8,1,16,2,8,1,16,5,8,1,6,2,8,2,7,1,8,1,14,1,1,192,}, + {1,81,9,1,6,1,16,1,6,2,16,1,6,2,16,2,6,1,8,1,6,1,8,1,16,3,7,1,8,2,14,1,6,2,8,2,16,1,8,6,16,1,14,1,16,1,6,1,8,3,16,2,8,3,16,3,8,1,6,1,8,1,16,3,8,2,16,26,8,1,16,1,14,1,16,3,8,5,16,3,8,4,13,1,8,1,7,1,6,1,8,1,16,1,9,1,13,1,8,4,16,3,8,4,14,2,16,1,8,3,16,2,14,1,16,1,8,2,16,1,8,2,14,1,16,2,8,6,7,1,16,1,14,1,16,1,7,1,8,1,7,1,16,1,14,1,16,1,6,2,16,2,7,1,8,7,6,1,8,9,7,1,6,1,16,1,14,1,16,1,8,1,16,8,8,1,7,1,8,1,16,4,8,1,6,1,8,1,28,1,6,11,8,1,6,1,16,5,8,1,16,1,8,1,16,2,8,1,16,6,8,2,6,3,8,1,7,1,6,1,16,1,8,1,16,3,8,1,6,1,13,1,8,3,16,1,8,1,16,1,8,1,16,6,28,1,16,5,14,17,16,24,8,6,16,2,6,1,16,2,8,1,16,1,6,1,16,6,8,1,7,1,6,1,16,1,8,1,16,1,8,1,6,2,8,2,6,1,8,3,13,1,8,2,6,1,8,4,16,1,8,9,13,2,30,1,13,2,6,1,8,1,6,1,28,1,6,2,28,1,30,1,6,1,30,1,6,1,30,4,29,1,30,2,29,1,30,1,28,2,13,1,6,1,28,2,30,2,29,3,30,1,28,6,6,1,28,4,6,1,8,1,6,1,28,9,6,2,28,5,30,1,29,1,28,14,30,1,6,1,28,17,6,1,16,2,8,2,16,4,8,1,6,3,8,3,6,1,1,192,}, + {1,26,11,1,7,1,9,1,8,1,16,1,9,1,1,48,11,1,6,2,13,1,6,1,16,1,8,1,6,1,8,1,16,1,8,3,6,2,16,2,8,1,7,1,6,1,8,1,16,1,6,3,7,1,8,8,16,1,7,1,8,7,16,1,8,1,16,3,6,2,7,2,8,2,16,10,8,1,14,1,16,2,8,1,16,12,8,1,16,2,14,2,16,1,8,2,16,3,8,3,16,2,8,1,6,2,13,1,8,1,6,3,8,1,16,2,6,1,7,1,8,3,16,1,8,6,14,1,16,1,6,1,8,1,16,1,8,2,16,1,14,1,8,2,16,2,7,1,16,1,14,1,8,6,7,1,6,1,8,1,14,1,16,2,6,1,8,1,16,3,6,2,16,2,6,2,8,3,7,1,6,2,8,9,6,1,8,1,6,1,16,4,7,1,6,2,16,10,14,1,8,2,16,1,6,10,8,1,16,2,6,2,8,1,16,2,6,2,8,2,16,2,8,2,6,9,13,1,8,1,6,1,8,1,6,1,16,1,8,2,16,2,8,1,6,1,13,1,8,5,16,8,8,1,16,5,14,9,16,2,14,6,16,22,8,1,16,3,8,2,16,4,8,1,6,1,16,2,8,1,16,3,8,1,16,1,8,3,16,1,6,1,16,1,8,3,13,1,6,1,8,5,13,1,6,1,8,1,13,1,8,9,7,1,8,5,6,4,13,2,30,1,28,1,13,1,8,1,13,1,6,1,28,1,30,2,29,2,30,2,28,2,30,1,29,2,30,2,28,2,30,2,29,1,28,11,29,1,13,1,28,3,13,1,8,2,6,1,28,1,29,2,28,5,29,1,6,1,8,1,28,3,29,2,6,1,30,1,29,1,28,13,29,1,28,6,6,2,28,11,16,2,8,2,16,5,8,1,6,2,8,3,6,1,1,192,}, + {1,25,17,1,16,2,6,1,7,1,16,1,14,1,6,1,1,47,6,5,16,1,8,1,6,1,8,1,16,1,6,2,8,1,7,1,8,1,16,2,6,1,8,1,6,1,16,2,6,1,8,2,16,1,8,1,6,1,8,5,16,2,8,1,6,1,8,1,13,2,8,3,16,2,8,1,16,1,6,1,8,1,16,4,8,1,16,1,14,1,16,9,14,2,8,5,16,9,14,1,16,5,8,1,16,2,8,1,16,1,8,4,16,1,14,1,8,1,6,7,8,1,16,2,8,1,6,3,8,7,16,1,14,1,8,6,14,2,8,1,16,3,8,1,14,1,16,1,6,1,8,1,16,5,8,11,16,1,8,1,6,1,8,1,6,2,8,1,6,1,8,10,16,1,6,2,16,1,14,1,16,2,6,2,16,2,8,1,6,2,8,1,16,7,6,1,16,1,6,4,13,1,6,3,8,5,16,1,6,1,8,2,16,1,6,1,8,2,6,6,8,5,16,2,8,1,16,1,8,2,6,1,8,2,16,1,8,1,6,1,8,1,16,2,6,2,8,2,7,1,8,1,16,13,8,1,16,1,14,3,16,1,14,12,16,24,8,1,16,2,8,3,16,4,7,1,6,2,16,2,8,2,16,1,8,1,16,2,8,2,6,2,16,1,8,3,6,1,8,5,6,1,13,1,8,1,6,2,13,1,6,1,13,2,8,4,7,1,8,3,13,3,6,2,13,1,8,1,6,1,28,1,13,1,8,1,6,1,30,1,13,1,6,1,13,1,6,1,28,1,30,1,29,1,28,2,30,1,29,1,28,3,29,1,28,3,30,1,13,1,6,1,28,14,30,1,6,1,28,10,29,1,28,5,30,1,28,2,29,1,28,21,30,1,28,13,16,1,8,3,16,4,8,2,6,2,8,2,7,1,16,1,8,1,1,191,}, + {1,25,16,2,8,2,6,2,8,1,16,2,6,1,11,1,1,43,8,1,13,1,6,4,8,1,6,1,16,3,6,1,8,2,6,1,16,2,6,2,16,1,8,1,16,1,6,1,8,2,16,1,14,1,7,1,6,1,16,1,8,3,16,1,8,1,16,2,6,1,8,1,6,1,13,1,8,1,13,1,7,1,16,3,8,1,6,1,16,8,14,1,16,8,14,1,16,1,8,1,16,2,8,4,16,1,8,1,16,8,8,1,16,1,14,1,16,5,8,3,6,2,9,1,16,1,9,1,6,8,16,1,8,1,6,2,8,2,16,1,8,2,6,1,8,2,9,1,14,2,8,2,16,3,8,1,16,2,8,2,16,1,8,1,16,1,14,1,16,1,8,2,16,4,8,1,6,1,8,3,16,1,8,1,6,1,8,4,6,1,8,3,6,1,8,6,16,1,8,6,16,4,8,3,6,2,13,1,8,1,16,2,6,2,8,4,16,1,6,1,16,1,6,6,7,1,8,2,6,1,7,1,8,3,16,4,6,1,7,1,6,3,8,1,16,12,8,3,6,1,8,1,6,1,8,2,6,1,8,1,16,2,6,2,8,4,16,3,8,1,16,5,6,1,16,3,8,1,16,1,14,18,16,23,8,1,16,1,8,1,16,3,8,1,16,4,6,1,8,1,14,1,8,1,16,3,8,4,6,2,8,2,6,3,16,1,8,4,13,1,6,1,13,1,6,3,13,1,6,1,8,1,6,1,8,2,7,2,8,2,13,3,6,2,13,1,8,1,6,1,30,2,9,1,13,1,30,1,28,2,30,1,8,2,30,1,28,1,29,1,28,1,30,1,28,10,30,1,13,2,28,11,30,1,6,1,28,9,29,1,28,2,30,2,28,4,30,1,28,38,16,2,8,2,16,5,8,1,6,2,13,1,8,3,14,1,1,191,}, + {1,26,16,1,8,2,6,3,16,1,8,2,16,2,1,41,11,1,7,1,6,4,8,4,16,1,8,1,7,1,8,3,16,2,6,1,8,3,16,1,8,3,16,1,14,1,8,3,16,1,8,4,16,2,8,1,6,2,13,1,6,1,8,1,6,1,16,3,7,1,8,1,16,17,14,2,16,5,8,1,16,2,8,1,16,1,14,1,16,4,8,3,16,1,14,1,16,2,8,2,16,2,8,3,6,2,13,1,16,1,9,1,6,5,30,1,28,1,13,1,8,1,6,3,8,1,13,1,8,2,16,1,8,1,6,2,8,1,16,1,8,8,16,1,8,2,16,1,9,2,16,1,6,1,8,2,16,3,14,1,7,1,8,1,16,1,8,1,7,1,8,2,16,1,8,1,16,1,8,5,16,2,6,1,8,10,16,6,8,1,6,7,8,2,16,1,6,2,8,1,6,1,8,2,6,1,13,1,6,2,8,1,13,1,6,2,8,5,16,5,6,1,8,1,6,1,8,1,16,14,8,4,16,1,8,3,6,1,8,2,16,1,8,2,6,1,8,3,16,1,8,1,16,6,8,1,6,2,16,4,14,19,16,19,8,2,16,2,8,2,16,9,6,1,16,2,8,1,16,2,6,1,7,1,16,2,8,1,6,1,8,2,6,3,16,1,8,1,6,2,13,2,6,3,13,2,6,1,13,3,6,2,8,2,6,1,13,3,30,2,13,3,6,2,30,1,13,1,30,2,29,1,28,1,30,1,29,1,13,1,9,1,30,1,28,14,29,1,13,1,9,1,28,11,6,1,28,9,30,1,16,1,28,7,29,1,30,1,28,37,6,1,16,1,8,3,16,4,8,1,6,4,7,1,8,2,1,191,}, + {1,26,8,1,16,2,8,1,6,1,8,3,6,1,8,1,16,1,8,1,16,1,11,1,1,37,14,1,8,1,6,4,16,3,8,1,6,1,8,1,6,1,8,4,16,2,8,2,6,1,8,1,16,1,8,3,16,2,6,1,8,1,7,1,16,2,8,1,16,1,14,2,16,2,6,1,13,1,6,1,13,1,6,2,7,1,16,2,8,2,16,1,8,1,16,1,8,1,16,2,8,1,16,2,14,1,16,8,14,1,16,10,14,1,16,2,8,2,16,9,8,1,16,1,8,3,13,1,6,3,13,1,8,1,6,4,30,2,13,1,16,1,13,1,30,1,29,1,28,1,29,1,30,1,6,2,16,1,9,2,8,1,6,1,8,7,16,2,8,2,16,5,8,3,6,1,8,1,14,1,8,1,6,1,8,1,16,2,7,2,8,2,16,2,8,1,6,1,8,3,14,1,6,1,8,9,16,6,8,1,6,1,8,1,13,2,6,2,28,1,6,2,8,2,16,1,6,2,8,2,6,4,8,1,6,1,8,3,6,1,8,4,16,4,8,1,16,1,6,1,8,1,16,14,8,1,16,1,8,2,6,1,16,1,8,3,6,1,16,1,8,1,16,1,8,1,6,1,7,1,8,3,16,1,6,1,16,8,6,1,16,2,8,1,16,1,14,19,16,18,8,3,16,1,8,1,6,1,16,3,8,2,16,5,8,1,6,1,16,2,8,2,16,2,8,1,6,2,16,1,8,6,13,1,6,9,13,2,6,4,8,1,16,1,13,1,6,3,30,2,13,2,30,1,6,1,30,1,28,1,6,2,30,2,29,1,28,3,13,2,30,1,28,16,30,1,6,1,28,10,6,1,28,9,16,1,6,1,28,46,16,1,8,3,16,4,8,1,6,3,13,1,8,1,6,1,16,1,11,1,1,190,}, + {1,27,14,1,16,5,6,1,8,1,16,1,8,1,16,3,9,1,11,1,1,35,8,2,6,1,16,2,6,1,16,2,6,6,8,2,6,1,16,1,8,4,16,1,8,4,16,2,8,4,16,6,8,1,6,4,13,1,6,2,14,1,16,1,6,1,8,4,16,4,8,1,16,1,14,1,16,7,8,1,16,1,14,1,16,9,14,2,16,12,8,5,6,1,13,1,6,1,30,1,6,1,8,1,9,1,6,6,8,2,6,1,29,1,28,2,29,1,28,2,29,1,28,1,6,1,16,1,6,2,13,1,8,1,9,1,8,2,13,1,8,2,16,2,8,2,16,1,8,2,16,1,6,1,8,1,13,1,7,1,6,1,14,1,16,1,6,2,16,2,8,1,6,2,8,1,16,2,13,1,8,1,6,1,8,1,14,1,16,1,8,7,16,4,8,2,6,1,8,5,6,1,8,2,13,1,6,2,8,3,16,1,8,1,16,1,8,1,6,3,8,1,6,1,13,3,6,1,8,5,16,4,6,1,16,1,6,1,16,1,8,1,16,13,8,1,16,6,6,3,16,1,8,1,16,2,6,1,8,1,7,2,8,1,16,1,8,1,16,6,6,1,16,1,6,1,16,1,8,1,16,2,14,19,16,17,8,1,16,2,8,2,6,1,16,5,8,1,6,1,16,2,8,1,16,2,6,2,16,3,8,1,6,1,8,1,7,1,28,1,16,1,8,3,13,1,8,1,6,2,13,2,6,12,13,1,6,6,13,2,30,1,28,1,30,1,28,3,6,1,30,1,6,1,28,3,30,1,28,2,30,1,13,1,29,1,28,13,29,1,28,2,6,1,30,1,28,9,29,1,30,1,28,9,6,1,28,8,29,1,28,37,16,2,8,2,16,4,8,1,6,3,13,1,6,1,7,1,8,1,16,1,1,190,}, + {1,27,17,1,8,1,16,3,8,1,6,2,8,2,6,1,8,2,16,2,6,1,1,33,16,1,6,3,16,1,8,1,16,2,6,2,8,3,16,1,8,1,7,1,6,1,8,1,16,1,8,4,16,2,8,3,16,2,8,2,16,1,8,1,16,1,14,1,8,1,6,2,8,3,6,6,16,2,6,1,8,2,9,1,8,4,16,2,14,1,16,3,8,1,16,4,8,1,16,1,14,2,16,8,14,1,16,8,8,1,16,7,8,2,9,2,8,3,13,1,9,1,6,1,28,7,6,1,30,1,6,1,30,1,28,6,6,1,8,1,6,1,28,1,29,1,6,1,13,1,8,1,9,1,8,3,16,3,8,1,16,2,8,1,16,1,7,1,6,1,13,1,6,2,16,2,6,2,8,1,16,1,14,1,16,1,6,2,16,2,6,1,8,2,16,2,6,1,8,3,16,3,14,1,16,1,8,1,6,1,8,1,16,2,6,1,8,3,6,1,8,4,13,1,6,2,16,1,7,1,8,1,16,2,6,1,8,3,6,1,8,1,6,1,8,6,16,6,8,1,16,1,6,1,8,1,16,6,8,1,16,14,6,1,16,1,6,1,16,1,6,1,16,1,8,3,7,1,8,1,14,1,16,7,8,1,7,1,16,3,7,1,16,3,14,18,16,17,8,4,6,1,16,4,8,1,16,2,8,1,6,1,16,5,6,1,16,1,8,1,16,1,8,1,16,1,8,2,6,1,16,1,8,2,6,2,8,1,13,1,6,11,13,1,6,5,30,1,6,2,13,1,6,1,30,8,28,10,29,1,30,1,28,13,13,1,28,3,30,1,28,10,30,1,28,56,16,2,8,1,6,1,8,1,16,3,8,1,6,1,28,1,6,2,13,1,8,2,16,1,11,1,1,189,}, + {1,28,11,1,6,1,16,1,8,3,6,2,8,1,16,1,8,1,6,2,8,1,16,1,14,1,16,1,11,1,1,29,11,1,6,3,16,2,6,1,16,1,6,2,16,1,8,3,14,1,16,2,8,1,6,2,16,1,6,1,8,1,6,1,16,2,8,3,16,2,8,3,16,3,6,2,8,3,16,1,8,1,6,5,16,1,14,1,8,1,6,1,8,1,7,1,8,3,16,1,8,1,16,21,14,2,16,2,8,2,16,2,8,1,16,6,8,1,16,2,8,1,7,1,8,1,6,1,13,1,6,1,13,1,7,1,13,1,9,1,6,1,29,2,28,8,29,4,28,10,30,1,6,1,9,1,8,3,9,1,16,1,14,2,8,1,6,1,8,2,6,1,13,1,6,2,16,2,6,2,8,1,16,1,14,1,16,1,6,1,8,1,16,1,6,1,7,2,14,1,8,1,6,1,8,1,16,1,8,1,16,3,8,3,16,2,8,2,14,1,8,1,16,1,8,5,13,1,8,1,13,1,6,2,16,1,6,1,8,1,16,1,8,4,6,1,8,3,7,1,8,2,16,10,8,2,16,23,8,1,16,1,6,4,8,1,16,1,14,1,16,1,6,3,8,1,16,3,8,1,16,7,14,19,16,16,8,1,16,1,8,2,6,1,8,1,16,8,8,2,16,1,8,2,7,1,16,3,8,4,6,2,8,3,6,1,8,2,6,12,30,1,6,1,30,1,6,2,30,1,6,4,30,3,28,1,30,4,29,1,28,1,30,3,28,7,29,1,30,1,28,12,29,1,28,4,6,1,29,1,28,64,1,1,6,1,16,2,8,2,16,3,8,2,6,3,13,1,6,2,8,1,16,1,1,189,}, + {1,30,14,1,16,2,8,3,6,1,16,2,6,2,8,2,16,2,8,1,6,1,9,1,1,27,29,1,8,1,6,2,8,1,6,2,8,1,6,1,8,1,16,1,7,1,8,1,6,1,16,2,8,1,16,1,8,1,16,1,14,1,16,1,8,2,16,2,8,3,16,3,8,3,16,2,8,6,9,1,6,4,29,1,13,1,14,1,16,1,6,1,8,6,16,1,14,1,16,2,8,2,16,2,14,1,16,5,8,2,16,8,8,1,16,3,14,2,16,7,8,1,14,1,16,1,8,3,13,1,6,4,30,1,6,1,8,1,6,2,29,1,28,4,16,1,9,2,7,1,1,15,14,1,8,1,9,1,16,5,8,1,9,1,8,1,7,1,8,1,6,4,16,2,6,3,16,1,14,1,6,1,8,1,16,1,8,1,6,1,8,1,16,1,6,1,8,2,7,1,8,1,16,2,7,1,8,1,16,2,6,1,8,1,6,2,16,2,8,1,16,1,8,7,6,1,7,1,8,1,6,2,16,2,8,2,6,1,8,2,7,1,8,3,16,31,8,3,16,4,6,1,8,1,16,3,14,1,8,2,6,2,8,1,16,1,8,1,16,1,8,1,16,4,8,1,16,2,8,1,14,19,16,16,8,3,7,1,8,1,16,9,8,2,16,3,6,1,16,2,8,4,16,1,6,1,16,3,13,1,6,1,8,1,6,20,30,2,28,1,29,1,28,2,30,1,29,1,28,6,29,1,6,1,30,1,28,26,16,1,28,9,30,1,6,1,28,8,6,1,28,43,1,2,14,1,16,2,6,1,8,2,16,2,8,1,7,1,6,6,7,1,16,2,1,188,}, + {1,31,16,1,14,1,8,1,16,4,8,1,16,2,8,3,16,1,8,1,16,3,11,1,1,24,6,1,8,1,13,1,6,3,13,1,8,1,16,1,8,4,7,1,8,1,16,1,14,1,8,2,16,3,8,2,7,1,8,1,14,1,8,4,16,2,8,1,16,1,8,2,16,3,8,4,16,1,8,1,6,4,28,1,8,1,14,1,9,1,6,4,13,1,6,1,8,5,16,1,8,1,16,7,8,1,16,4,14,2,16,1,8,1,16,1,8,1,16,5,14,1,16,3,7,1,16,6,8,1,13,1,8,1,6,4,30,1,6,1,28,1,7,1,16,1,1,31,11,1,8,1,6,1,16,2,8,1,6,4,28,1,8,2,6,3,14,1,8,1,6,2,16,1,6,1,8,1,16,1,8,5,6,1,8,2,16,1,8,1,6,1,8,3,7,1,6,1,14,1,8,1,16,1,8,7,6,1,8,2,16,4,6,1,16,1,8,5,16,7,8,1,6,1,8,1,16,18,8,2,16,1,8,2,7,1,6,2,8,1,16,9,8,2,6,1,7,1,16,4,6,1,8,1,16,2,8,2,16,3,14,18,16,1,14,1,16,15,8,1,16,1,8,2,16,1,8,2,16,6,8,3,16,2,8,1,6,1,16,2,8,3,16,1,8,1,6,1,16,1,8,5,6,13,30,2,6,1,30,6,28,1,30,3,28,1,29,1,28,1,30,2,28,5,6,2,28,19,6,1,28,5,16,2,28,9,6,1,28,7,29,1,13,1,28,41,6,1,1,3,11,1,16,2,8,1,6,1,8,2,16,1,8,2,6,4,8,1,7,2,8,1,16,1,14,1,1,187,}, + {1,32,8,1,16,4,6,1,8,1,7,1,8,3,6,1,8,1,16,2,8,1,16,3,1,22,11,1,8,1,6,3,8,4,16,1,8,1,16,2,8,3,16,2,6,2,8,1,16,1,7,1,6,1,8,3,16,1,8,2,16,1,8,1,16,1,14,1,8,2,16,1,8,1,16,3,8,5,16,1,6,1,30,3,29,1,28,1,9,1,14,1,13,3,8,6,6,1,8,2,16,1,9,1,8,1,16,1,14,3,16,1,8,1,16,1,8,1,16,4,14,1,16,1,8,2,9,1,8,1,16,2,9,1,8,1,16,3,8,2,16,2,9,1,16,3,9,1,8,1,9,1,16,1,6,1,9,1,14,2,1,38,16,1,1,1,8,1,6,3,30,1,28,1,13,1,9,1,6,1,29,2,16,1,6,3,9,1,6,1,14,1,16,1,6,1,8,1,7,1,6,1,16,1,6,1,16,1,8,1,6,1,8,1,16,1,8,4,16,2,6,1,8,4,6,1,8,2,7,1,8,2,16,3,6,2,7,1,16,8,8,2,16,1,6,2,16,1,6,2,16,1,8,1,16,15,8,2,6,6,8,1,16,2,8,1,6,1,16,1,6,2,14,1,7,1,8,1,6,2,16,2,8,1,16,1,8,1,16,4,8,1,16,4,14,20,16,16,8,2,16,2,6,1,16,6,8,1,16,1,8,2,16,2,8,2,16,2,8,4,6,1,8,1,16,1,8,2,13,1,6,12,30,12,29,1,28,1,29,1,28,3,29,1,6,1,28,3,6,1,13,1,29,1,28,21,6,1,28,6,13,1,14,1,28,16,30,1,28,41,1,6,8,1,16,1,8,1,6,2,16,4,8,1,6,4,13,1,6,2,8,1,6,1,1,187,}, + {1,33,8,1,16,2,8,1,16,1,7,1,8,3,6,3,8,1,16,1,8,3,16,4,11,1,1,18,28,1,8,2,6,2,16,1,6,1,7,1,16,1,8,2,16,2,8,3,16,2,7,1,8,1,7,1,6,3,16,1,8,1,6,1,16,2,8,4,14,1,16,1,8,1,16,1,8,1,16,5,8,4,16,1,6,1,30,1,29,2,28,2,8,1,6,1,13,1,8,2,16,1,9,1,8,1,14,2,6,1,13,2,8,5,16,2,14,1,16,1,8,1,16,1,8,4,16,1,14,1,16,2,8,1,16,1,8,4,16,1,14,1,16,1,8,2,9,2,8,2,9,1,8,1,6,1,11,1,16,1,11,1,1,45,11,1,16,1,28,1,6,1,8,2,6,1,13,3,28,1,8,1,6,1,29,1,6,2,14,1,8,1,7,2,8,1,16,1,14,1,16,1,6,2,16,1,8,5,16,3,8,8,6,1,7,1,16,5,6,1,16,1,8,1,16,5,6,2,8,4,6,3,7,1,6,1,16,5,8,2,16,4,8,1,6,6,8,5,6,1,8,1,6,1,16,2,6,5,8,1,16,1,6,1,8,1,16,1,8,1,16,2,8,1,16,4,6,1,16,4,14,20,16,14,8,3,16,5,14,1,16,3,8,1,16,2,6,1,16,3,7,1,6,1,16,1,8,4,7,1,6,1,8,1,16,1,13,1,6,1,13,1,6,12,30,5,29,1,30,1,29,1,28,14,13,1,6,1,30,1,6,1,30,1,28,10,30,2,28,16,6,1,8,1,28,20,6,1,28,34,8,1,1,7,11,1,16,2,7,1,6,1,8,2,16,1,8,1,16,1,6,5,8,1,6,1,8,1,16,1,8,1,1,186,}, + {1,33,11,1,16,3,8,3,16,1,8,1,6,1,8,1,7,1,6,1,8,2,16,8,9,1,1,15,9,1,16,1,6,1,8,2,6,1,8,1,6,1,8,1,16,1,7,1,8,2,16,2,8,2,16,1,8,5,16,1,8,1,16,1,8,2,16,2,7,1,8,2,16,1,14,1,16,1,6,1,8,1,16,1,8,1,16,1,14,1,16,1,8,2,16,1,8,2,16,1,8,1,13,1,30,1,28,2,6,4,13,1,6,4,9,1,13,2,8,1,13,1,6,1,13,1,8,5,16,2,9,1,8,6,9,1,16,2,9,1,8,2,9,1,16,1,9,1,16,1,14,1,16,2,9,1,8,1,7,1,28,1,16,2,1,54,9,1,28,1,9,1,13,1,29,2,6,2,16,1,8,1,28,1,6,1,8,1,9,1,8,1,6,1,7,1,8,1,16,1,8,2,16,1,8,4,16,3,14,1,16,1,8,1,7,1,16,1,8,1,16,1,8,5,16,1,14,1,16,2,8,3,6,1,8,2,16,2,6,1,8,1,16,1,8,1,6,5,16,1,8,1,6,1,16,3,6,2,16,2,6,5,8,4,16,2,8,7,6,1,16,3,6,3,8,1,16,1,8,1,6,1,16,2,8,1,16,2,7,1,16,3,8,1,6,1,16,4,14,21,16,13,8,1,7,1,16,4,8,1,6,1,16,3,8,1,16,1,8,2,6,1,16,3,8,1,6,1,16,1,8,4,6,1,8,3,13,2,6,1,13,1,6,3,13,1,6,5,30,9,28,1,29,2,28,12,30,1,28,15,30,1,28,9,29,1,6,2,28,24,29,1,28,35,1,9,11,1,16,2,8,1,6,2,16,4,8,1,6,4,13,1,8,1,6,2,16,2,1,185,}, + {1,34,11,1,16,1,14,1,16,4,8,1,16,1,6,4,8,1,16,2,6,1,8,1,16,5,6,1,16,1,1,12,11,1,8,1,16,1,6,1,16,2,6,1,8,4,16,1,8,2,16,2,8,2,16,2,8,8,14,1,16,1,6,1,8,3,16,2,8,1,6,1,16,2,8,1,16,1,14,1,8,6,16,1,8,1,6,1,8,1,13,2,8,1,6,1,28,4,30,1,29,1,6,3,13,1,16,2,6,4,13,2,6,1,13,3,8,3,16,4,8,1,7,1,8,4,13,1,8,2,6,2,28,1,16,1,8,1,1,60,16,2,28,4,8,1,14,1,13,1,6,1,30,1,8,3,6,1,8,2,16,1,8,3,16,2,14,1,16,3,8,1,7,1,16,6,8,1,16,6,6,4,8,5,16,2,6,1,28,1,6,1,8,2,16,1,8,1,16,1,8,1,16,4,6,1,8,1,6,1,7,1,6,1,8,4,16,7,8,8,16,1,6,1,7,1,8,1,7,1,16,1,7,1,6,1,7,1,8,2,16,2,8,2,16,4,8,1,16,4,14,21,16,12,8,2,16,6,8,2,16,2,8,1,16,2,8,1,6,1,16,2,8,2,6,1,16,2,8,2,6,2,8,2,13,1,6,1,13,1,6,4,13,1,6,4,30,5,29,2,28,1,29,1,30,1,28,15,29,1,28,9,29,1,28,7,29,1,28,7,29,1,6,1,30,1,28,3,29,2,28,7,30,2,28,10,8,1,28,34,11,1,1,11,16,3,7,1,6,1,8,2,16,2,8,2,6,4,8,4,16,1,11,1,1,184,}, + {1,36,8,1,16,3,8,2,16,6,8,2,6,1,7,1,6,1,8,1,16,2,8,1,16,2,9,1,6,1,1,10,8,1,16,1,6,2,16,1,8,2,16,1,8,2,6,1,16,2,8,1,16,2,8,2,16,1,14,1,8,7,16,1,14,1,7,1,6,1,16,1,8,1,16,3,8,1,6,1,16,5,8,2,16,1,8,2,16,1,14,1,8,1,6,3,16,1,14,1,9,1,6,1,28,5,8,1,6,3,29,1,13,1,16,1,8,1,6,7,13,1,6,1,13,1,6,1,13,2,6,3,8,1,16,1,6,3,30,1,6,1,16,1,11,1,1,68,9,1,6,1,28,1,6,1,9,1,6,3,8,1,7,1,16,1,8,2,16,1,6,1,16,6,8,2,7,1,6,1,7,1,8,2,16,4,14,2,16,2,6,3,13,1,6,6,8,2,6,2,8,6,16,2,8,1,16,3,8,3,16,11,8,2,16,1,8,3,6,1,16,3,6,1,8,2,6,2,16,3,8,1,16,15,14,21,16,12,8,2,16,7,6,1,7,1,16,2,8,2,6,1,16,3,8,1,16,1,8,1,6,1,16,1,8,2,6,1,16,1,8,1,6,2,13,1,6,2,13,1,6,5,30,8,29,1,28,16,29,1,28,9,30,1,28,16,29,1,28,18,6,1,30,1,28,39,29,1,6,1,1,13,11,1,16,1,8,2,6,2,8,1,16,1,8,1,16,1,8,3,6,2,13,1,6,1,8,1,6,1,8,1,16,1,11,1,1,183,}, + {1,37,11,1,16,7,8,5,16,1,8,1,7,1,6,1,8,2,16,5,14,1,6,1,8,1,16,1,1,5,6,1,8,1,6,2,8,1,16,1,6,1,16,2,8,2,7,1,8,1,16,1,8,1,14,1,8,1,6,1,8,1,16,2,6,1,8,3,7,1,8,2,16,2,6,1,8,2,16,3,8,3,16,1,8,1,16,1,14,2,16,1,8,1,16,2,8,2,16,1,14,1,6,1,30,1,28,2,29,1,8,2,13,1,28,3,29,1,6,2,29,1,28,3,30,1,6,1,7,1,6,3,8,1,16,1,6,5,29,1,6,1,30,2,9,1,16,1,9,2,16,1,14,1,1,76,16,2,28,1,6,1,8,5,6,1,16,1,6,1,8,1,16,2,8,3,16,2,8,2,16,1,8,1,6,2,16,2,8,2,6,2,16,2,13,2,6,2,8,1,16,1,28,1,13,1,6,1,8,1,6,1,8,1,6,1,8,5,16,5,8,1,6,1,16,3,8,1,16,11,8,4,6,1,16,3,6,1,16,1,6,1,8,1,16,4,14,2,16,14,14,21,16,11,8,1,16,10,6,1,7,1,16,3,6,1,16,4,8,2,6,1,8,5,13,1,6,3,13,1,6,7,30,5,28,1,29,2,28,6,30,1,6,1,30,1,28,1,29,1,28,6,6,1,30,2,6,1,28,7,6,1,28,39,6,2,28,34,16,1,1,15,16,3,8,1,6,2,8,1,16,2,8,3,6,3,8,5,6,1,1,183,}, + {1,39,16,3,8,7,6,1,16,5,8,2,16,2,8,1,6,1,9,1,8,2,9,2,6,1,8,1,6,2,13,1,6,3,8,2,6,1,16,1,8,1,6,1,8,1,7,1,14,1,16,1,6,1,16,1,6,1,8,1,16,1,8,2,6,1,8,1,6,1,8,4,16,1,14,1,8,4,16,1,14,1,6,1,8,1,16,3,8,1,16,2,14,1,16,1,8,1,16,1,8,3,14,1,16,1,30,3,29,1,28,1,8,1,9,1,13,1,30,1,8,1,13,1,30,1,28,6,6,1,9,1,8,1,28,1,6,2,8,1,6,2,9,1,8,2,6,3,7,1,16,1,14,1,1,84,9,1,14,1,8,5,16,1,8,1,16,1,8,2,16,2,7,1,6,1,7,1,6,3,16,1,8,1,6,1,8,1,6,1,8,1,16,2,6,6,8,1,16,1,6,1,7,1,6,1,8,2,6,1,8,1,6,1,8,4,16,5,8,1,6,1,16,3,8,1,16,11,8,1,16,1,8,2,16,2,6,1,7,1,8,1,16,4,6,1,7,1,16,1,8,1,6,1,16,9,8,1,16,4,14,21,16,10,8,1,16,2,8,1,16,8,8,3,16,6,8,2,16,1,6,2,8,1,16,1,8,2,6,4,13,1,6,6,30,4,28,2,29,1,28,6,30,1,6,2,30,2,28,6,29,1,13,1,6,1,28,1,30,1,6,1,13,1,28,7,6,1,28,11,30,1,28,28,30,1,28,32,1,17,11,1,16,2,8,1,7,1,6,2,8,1,16,2,8,1,6,1,8,1,6,4,8,1,6,2,8,1,16,1,1,182,}, + {1,40,16,2,8,1,16,2,8,7,16,1,8,1,16,1,8,2,16,1,8,1,6,1,8,2,6,2,8,1,6,5,13,3,6,1,8,1,6,1,7,1,8,2,6,1,8,1,16,1,14,1,7,1,8,4,16,1,8,1,6,2,16,1,8,1,6,1,7,1,8,3,14,1,16,1,8,1,16,1,8,1,16,1,14,1,16,1,8,3,16,1,8,2,16,1,14,1,16,1,8,3,16,1,8,1,16,1,14,1,13,1,6,2,30,1,28,2,13,1,8,1,6,1,28,1,29,1,28,7,6,1,7,1,8,1,28,4,29,1,28,2,29,1,28,1,16,1,9,1,1,89,11,1,9,1,8,1,16,1,8,2,16,2,8,1,16,1,8,2,6,1,7,1,8,2,6,2,28,1,6,1,16,1,7,1,8,1,16,1,8,1,6,7,8,1,6,1,8,1,16,1,7,1,8,5,7,1,8,3,16,6,8,2,16,13,8,4,6,1,16,2,8,1,6,1,16,4,6,3,8,1,16,1,8,1,6,2,8,1,16,2,8,2,16,2,14,1,16,6,14,7,16,1,14,14,16,7,6,1,16,3,7,1,14,1,16,5,8,3,16,7,8,3,16,1,6,2,8,3,6,12,30,3,29,1,28,10,6,1,29,1,28,5,30,1,28,1,29,1,6,1,29,1,28,5,30,1,29,1,28,13,29,1,30,1,28,18,30,1,6,1,29,1,28,2,29,1,28,28,29,1,28,9,11,1,1,19,14,1,16,2,8,1,6,3,16,1,8,2,16,1,8,2,6,3,8,2,6,2,16,1,9,1,1,181,}, + {1,40,11,1,8,1,16,3,8,3,16,2,8,1,6,1,8,6,16,2,8,3,13,1,8,3,6,2,30,1,6,1,13,1,6,2,16,1,6,2,8,2,6,1,8,1,16,2,6,1,8,3,6,1,16,1,8,1,7,1,8,2,16,2,8,1,6,1,8,2,14,1,16,1,8,2,16,1,8,1,16,5,8,1,16,1,8,3,14,2,16,1,8,4,16,2,13,1,6,1,30,2,28,1,30,1,6,1,8,1,6,1,28,9,6,1,8,2,29,1,6,1,29,2,6,1,9,1,1,94,9,1,16,1,8,1,7,1,6,1,16,2,8,1,6,2,8,1,16,1,8,5,6,1,8,1,16,2,8,1,7,1,6,1,8,5,6,2,8,2,6,1,16,4,6,1,8,5,16,5,8,1,6,2,16,4,8,1,16,19,6,1,16,1,8,1,6,4,7,1,8,1,16,1,8,1,16,1,8,3,16,1,8,2,16,6,14,9,16,1,14,12,16,1,14,1,16,11,14,1,16,6,6,1,16,3,8,1,16,2,8,1,14,1,8,2,16,1,8,1,6,1,8,2,6,1,13,1,6,1,13,1,6,7,30,7,29,1,28,9,30,1,28,17,6,2,28,8,29,1,28,2,6,1,8,1,6,2,28,1,30,1,28,57,9,1,1,22,7,1,16,2,8,1,6,3,16,4,6,2,8,1,6,3,8,1,7,1,6,1,16,1,8,1,1,180,}, + {1,42,9,1,16,3,8,2,16,3,8,8,16,1,7,1,6,2,7,1,8,2,6,5,13,1,8,1,6,1,16,1,6,2,8,4,16,1,8,3,16,1,8,1,7,1,8,1,16,1,8,2,7,2,16,1,14,1,8,1,7,1,8,1,16,1,8,2,16,3,8,1,16,4,8,1,16,8,8,4,9,1,16,1,9,1,6,1,30,2,28,2,29,1,6,1,9,1,6,2,28,3,29,1,6,1,29,1,30,1,6,2,29,1,7,1,9,1,1,98,16,2,6,1,8,1,16,2,7,1,8,10,16,1,14,1,16,1,8,1,6,1,7,1,8,8,16,1,6,1,16,5,8,2,6,1,8,1,16,5,8,1,6,1,8,1,6,2,8,1,16,15,14,2,16,3,8,1,6,1,8,1,6,3,13,1,8,2,7,1,16,4,8,1,6,1,8,1,16,1,8,2,16,6,14,23,16,4,14,2,16,4,8,1,16,2,14,1,16,1,8,1,16,3,6,1,16,2,8,1,16,2,8,1,6,1,8,1,16,1,8,4,16,1,8,1,7,1,8,1,6,7,30,6,29,1,28,11,30,1,28,19,7,1,29,1,28,6,29,1,6,1,28,7,29,1,28,12,6,1,30,1,28,7,6,3,28,31,29,1,17,1,1,23,11,1,16,3,8,2,6,2,16,2,8,3,6,2,8,1,6,2,8,2,6,1,16,1,6,1,1,179,}, + {1,43,16,5,8,1,6,1,16,2,8,2,7,1,8,1,6,1,16,1,8,4,6,2,8,1,6,1,13,3,6,2,8,1,16,1,6,1,16,1,6,2,8,2,6,1,8,6,16,1,8,2,16,1,8,1,6,1,8,1,7,2,16,1,14,1,16,1,8,1,6,1,8,1,16,1,8,1,16,1,8,1,16,5,14,1,16,3,8,1,16,1,14,1,16,2,8,1,16,1,8,4,9,2,8,1,6,1,30,1,29,1,28,4,8,1,6,1,28,4,29,1,28,1,16,1,11,1,1,102,9,1,8,2,16,1,6,1,8,11,16,1,14,1,16,1,8,10,7,1,16,4,6,1,8,1,16,3,8,1,16,4,7,1,6,1,16,1,8,1,6,7,16,2,6,2,16,7,8,1,6,1,8,1,16,2,6,2,7,1,8,1,6,2,8,1,6,1,8,3,16,2,14,1,8,2,6,1,16,5,8,1,16,1,8,1,16,3,14,8,16,1,14,2,16,1,14,7,16,3,14,1,16,2,14,2,16,1,6,1,16,1,14,1,16,3,8,2,16,2,6,1,8,2,6,1,16,2,8,1,16,1,8,1,16,1,8,1,6,1,8,1,16,1,8,1,6,1,8,1,16,1,6,1,7,1,6,6,30,1,6,1,30,3,29,1,30,1,29,2,28,11,29,2,28,8,29,2,28,16,6,1,9,1,28,12,29,1,28,7,6,1,29,1,28,7,29,1,8,1,6,1,28,30,17,1,1,26,16,3,8,1,16,1,8,1,6,1,8,1,16,2,8,3,6,4,8,1,6,1,8,1,7,1,16,1,1,179,}, + {1,44,14,2,16,2,8,3,16,2,7,1,16,1,8,1,16,2,8,4,7,1,6,3,8,3,6,2,8,1,16,1,8,1,14,1,6,1,8,10,16,1,8,1,6,1,8,1,16,1,13,1,6,4,8,1,16,2,8,2,7,1,16,4,8,1,16,2,8,1,16,2,14,1,16,4,8,2,16,4,8,4,16,2,13,2,6,2,30,1,6,1,13,1,8,1,6,2,29,1,8,1,11,1,1,105,11,1,16,1,8,1,14,1,6,1,8,11,16,3,6,1,8,1,7,2,8,7,16,4,6,2,8,2,14,1,16,4,6,1,8,1,16,1,6,2,8,3,16,4,6,2,16,1,6,2,16,1,8,1,16,6,6,1,8,1,16,1,6,2,8,1,6,1,8,1,7,1,6,1,8,3,6,1,8,1,16,1,8,1,7,1,6,1,16,6,6,1,16,1,8,1,16,3,14,6,16,1,14,5,16,1,14,1,16,5,14,2,16,2,14,1,16,4,6,1,14,1,16,5,6,1,7,1,16,3,14,1,6,1,8,1,16,1,6,1,8,2,16,1,8,1,13,1,7,1,16,2,6,1,8,1,6,2,13,1,8,2,6,4,13,1,6,1,29,1,30,4,28,11,30,1,28,2,30,1,28,8,30,1,6,1,28,13,6,1,13,2,8,1,28,2,30,1,28,25,30,1,6,4,28,28,6,1,17,1,1,28,9,1,16,3,8,1,6,2,8,2,16,2,8,2,6,5,8,1,6,1,8,1,16,1,1,178,}, + {1,46,8,1,16,2,8,1,16,3,8,1,16,3,8,5,7,1,6,1,13,1,6,6,8,1,16,1,7,1,16,1,8,1,6,1,8,2,16,1,7,1,8,2,16,1,8,3,16,1,13,1,6,1,8,1,16,1,8,1,6,5,8,2,9,1,8,4,16,4,8,2,9,1,8,1,16,1,14,1,16,1,8,1,16,8,9,1,16,1,8,4,13,1,6,1,13,1,6,1,29,2,6,1,9,1,1,109,7,1,16,1,7,1,16,1,8,11,14,1,16,2,8,8,7,1,8,1,16,4,8,1,6,1,8,1,16,6,6,1,16,1,6,3,16,1,8,1,16,7,8,2,16,1,8,2,16,1,8,1,6,5,16,2,8,1,6,1,8,1,16,1,8,1,7,1,6,3,8,1,6,1,8,1,16,2,6,2,7,1,16,1,8,1,16,4,8,1,16,1,8,1,16,3,14,5,16,2,14,2,16,1,14,9,16,1,14,1,16,7,8,1,14,2,16,4,8,1,16,2,8,1,16,2,6,2,14,1,16,1,8,4,6,2,16,1,8,1,6,1,16,1,6,1,8,1,9,1,13,1,6,4,13,1,30,4,28,13,6,3,30,2,29,1,28,9,29,1,30,2,28,7,30,1,28,2,29,1,6,2,28,3,6,1,29,1,28,56,11,1,1,31,16,5,6,2,8,3,16,1,8,1,6,2,8,1,6,2,8,4,16,1,1,177,}, + {1,48,16,2,8,1,16,2,8,1,16,2,8,2,16,1,8,1,16,2,8,1,13,3,6,2,13,1,6,2,8,2,6,1,8,2,6,1,8,1,7,1,14,1,16,1,6,1,8,1,16,2,7,2,8,1,9,1,6,3,16,2,6,1,30,1,6,2,7,1,8,1,16,2,6,1,8,1,6,1,8,1,16,5,8,2,16,1,8,1,16,2,8,1,16,2,9,1,16,1,9,1,16,1,9,1,8,1,16,3,9,1,8,3,28,1,6,1,9,1,1,113,16,2,8,10,16,2,14,1,16,1,6,1,8,3,16,1,8,2,16,5,14,1,16,1,6,5,16,3,8,1,6,1,16,1,7,1,6,1,8,1,16,1,8,3,16,9,6,2,7,1,6,1,8,2,16,2,6,1,8,1,16,1,8,4,14,1,16,1,6,3,8,1,7,1,16,2,8,1,16,1,6,1,16,1,8,1,16,4,8,1,16,2,8,1,16,3,14,5,16,2,14,8,16,1,14,3,16,4,14,1,16,4,6,1,14,2,16,3,8,1,6,1,14,1,6,2,14,1,16,1,8,1,6,2,16,2,6,1,8,1,6,2,8,1,16,1,6,1,8,1,16,1,6,4,9,1,8,1,6,1,30,1,6,1,30,1,6,2,30,2,28,11,30,2,28,3,30,1,28,12,6,2,28,6,6,1,28,16,30,1,28,47,9,1,1,34,16,4,8,1,7,1,6,2,16,2,8,4,6,4,8,1,6,1,8,2,11,1,1,175,}, + {1,48,11,1,6,1,16,6,7,2,6,1,8,2,6,1,13,1,8,1,13,2,6,2,16,1,8,1,6,1,8,2,6,1,8,1,7,1,8,2,6,1,16,2,6,1,16,3,8,2,6,1,8,2,6,2,30,1,6,6,29,1,6,2,8,1,9,2,7,1,6,1,7,1,8,2,16,2,8,2,9,1,16,6,9,1,16,1,8,2,9,1,16,3,7,1,9,1,16,1,14,1,1,117,8,1,16,1,8,5,16,6,8,1,6,1,16,1,8,1,6,2,16,8,8,2,16,1,6,4,16,1,8,2,6,1,16,1,6,2,8,5,16,10,8,2,6,1,8,1,16,2,8,4,16,2,6,1,8,1,6,1,8,1,14,1,16,1,8,1,6,3,16,1,8,1,16,2,6,1,16,6,6,1,16,5,8,1,11,1,14,5,16,2,14,9,16,3,14,3,16,4,14,1,8,1,6,1,14,1,16,1,8,1,16,1,6,1,8,3,14,1,16,4,6,2,16,2,8,2,16,3,6,1,8,1,16,1,6,1,30,1,8,1,16,1,8,1,6,2,30,2,6,1,8,1,13,1,6,2,30,1,28,6,30,1,29,1,28,1,30,1,6,1,28,8,30,1,28,9,6,1,8,1,6,1,28,66,29,1,6,1,1,37,16,3,8,3,6,1,8,1,16,3,8,1,6,6,8,1,6,1,8,1,16,1,11,1,1,174,}, + {1,50,16,1,14,1,16,3,8,6,6,2,8,2,6,2,8,1,16,1,8,2,16,1,8,1,6,1,16,1,8,1,7,1,8,1,6,1,16,2,6,1,8,1,16,1,8,1,16,1,8,2,6,1,8,1,13,4,6,1,7,1,6,2,28,2,29,1,28,1,6,3,8,1,13,1,8,2,16,4,8,4,9,1,8,3,9,2,6,1,16,2,6,1,11,2,1,121,14,1,16,1,6,1,8,4,16,4,8,1,6,1,8,1,16,1,6,2,8,1,16,1,6,1,8,1,16,1,8,1,6,4,16,2,6,3,8,1,6,1,16,2,8,3,6,1,8,1,7,1,8,2,16,1,8,1,16,10,6,3,16,4,8,1,6,1,16,2,8,1,6,2,16,1,6,2,16,6,6,1,16,1,6,1,8,2,16,11,8,1,11,1,14,6,8,1,16,1,14,7,16,1,14,2,16,4,14,1,16,4,14,1,6,1,8,1,14,1,16,1,8,1,7,1,8,1,16,1,14,1,8,1,16,1,8,1,6,1,8,1,16,1,6,2,8,1,16,3,9,1,6,1,13,1,16,1,8,1,6,2,8,1,9,1,6,3,29,1,6,1,13,2,6,1,28,1,6,2,30,1,28,2,30,1,6,1,13,1,6,1,30,1,29,1,30,1,29,1,28,13,30,2,28,4,29,1,6,1,28,1,29,1,28,54,29,1,28,9,11,1,1,39,16,1,14,1,16,3,8,1,6,1,16,1,8,1,16,1,8,1,6,1,8,1,6,5,8,1,6,1,8,2,11,1,1,173,}, + {1,51,6,1,14,1,16,2,8,7,6,1,8,2,13,1,6,1,16,1,8,1,6,1,16,2,6,2,16,2,6,1,16,4,6,1,8,1,16,1,8,7,6,1,8,2,13,1,6,3,7,1,28,5,29,1,8,1,6,5,8,1,16,1,9,2,8,1,7,2,6,2,7,1,8,1,6,1,9,1,14,1,16,1,1,125,16,2,6,1,8,1,16,5,7,1,8,1,16,1,8,1,6,1,8,2,6,1,16,3,8,2,16,4,8,1,6,2,8,1,6,1,8,1,16,1,6,1,16,2,7,1,8,1,6,1,8,4,16,11,6,1,16,1,28,1,8,1,16,3,8,1,16,1,6,1,16,2,6,2,8,1,6,2,8,1,6,1,16,4,8,1,6,1,16,1,6,1,16,1,8,1,16,4,8,1,14,1,16,3,8,1,16,1,8,1,14,4,16,1,14,4,16,2,14,5,16,1,14,2,16,1,14,1,16,9,6,1,16,3,14,1,16,1,8,1,14,1,8,4,6,1,16,2,6,1,13,1,8,2,6,1,13,1,30,1,16,2,13,1,6,3,16,1,6,3,28,1,6,1,8,1,6,1,30,1,28,2,6,1,29,1,28,2,13,1,6,1,29,1,28,1,30,1,6,1,30,1,28,8,29,2,28,13,30,1,13,1,6,1,28,8,29,1,6,1,28,43,30,1,28,5,29,1,6,1,1,42,16,3,8,1,16,2,6,1,8,2,16,1,8,4,6,4,8,4,11,1,1,172,}, + {1,52,11,1,16,2,8,4,16,1,8,2,7,1,8,1,13,1,8,2,16,1,6,2,8,2,6,1,8,2,16,1,8,2,16,2,8,4,16,1,8,3,16,3,6,1,28,6,6,3,28,4,29,1,6,5,28,1,6,4,8,1,6,3,16,1,8,1,1,130,16,1,8,5,16,1,6,1,16,2,7,1,16,1,8,5,6,1,16,2,8,1,6,5,8,3,6,2,16,1,6,2,16,1,8,6,16,2,8,1,16,8,6,1,16,1,28,1,6,1,16,6,8,1,16,2,6,1,8,4,16,1,8,1,28,1,6,1,16,2,8,1,6,1,14,1,8,2,16,1,8,2,16,1,8,2,16,1,8,1,16,1,8,1,6,1,16,2,14,2,16,1,14,5,16,1,14,1,16,3,14,5,16,4,14,1,8,1,16,1,14,1,16,10,6,1,16,1,14,1,6,1,8,2,13,1,6,1,16,2,6,1,8,1,6,2,13,1,29,1,8,1,16,1,6,3,30,1,6,2,30,4,8,1,6,1,28,4,30,1,28,1,6,1,28,5,30,2,28,23,6,1,28,10,6,1,28,1,6,1,28,42,29,1,28,4,8,1,11,1,1,44,7,1,16,3,8,1,16,1,6,1,8,2,16,1,8,3,6,4,7,1,8,3,7,1,14,1,1,171,}, + {1,53,11,1,16,2,8,2,16,2,8,1,6,1,16,2,8,1,7,1,16,1,6,3,8,1,16,1,6,1,8,2,16,2,7,1,8,2,16,2,8,3,16,1,8,3,16,2,8,1,6,1,29,1,28,5,6,2,30,2,6,2,29,1,28,3,6,6,29,1,6,1,9,1,17,1,1,133,11,1,9,1,8,3,6,1,8,2,6,1,8,8,16,1,14,1,6,2,8,6,13,1,8,3,16,2,8,1,16,1,8,8,16,8,6,1,16,1,6,2,16,6,8,2,16,2,6,1,16,7,6,3,8,1,16,1,14,1,16,1,6,1,8,1,16,3,6,1,16,1,8,1,16,3,6,1,14,1,16,1,14,2,8,1,14,1,11,1,14,8,16,1,14,7,16,3,14,1,11,1,14,1,16,9,8,1,6,1,14,1,16,1,8,3,6,2,14,1,13,1,6,5,28,1,16,1,13,1,6,2,28,1,6,1,13,1,30,2,28,2,6,2,28,5,29,1,6,1,29,1,28,6,29,1,28,82,9,1,1,47,6,1,16,3,8,2,6,1,8,2,16,1,8,2,6,1,8,1,6,3,8,3,16,1,14,1,1,171,}, + {1,55,9,1,14,1,16,3,7,2,16,2,6,1,8,1,16,1,6,1,8,1,6,1,8,1,16,1,7,1,16,1,8,2,14,1,16,1,8,2,16,1,14,1,16,1,8,3,16,2,8,5,6,2,29,1,28,1,6,2,30,1,28,1,29,1,28,1,6,3,28,7,6,1,9,1,1,138,14,1,8,2,6,1,16,1,8,2,16,1,8,8,16,2,8,1,16,1,8,2,7,1,8,4,7,1,8,1,7,1,16,6,7,1,8,2,16,1,8,2,16,7,6,1,8,1,13,1,6,1,16,4,8,1,16,2,7,1,16,1,8,1,16,2,14,1,16,1,6,4,16,2,8,1,6,2,16,1,6,1,14,1,16,1,8,1,16,2,8,2,16,1,6,1,16,3,6,1,16,2,14,2,16,2,11,1,14,2,16,1,14,8,16,6,14,4,16,11,6,1,8,1,14,1,8,1,6,1,8,2,30,1,13,1,16,1,6,5,30,2,16,1,6,1,30,1,28,1,30,1,13,1,6,1,28,3,30,1,6,1,28,7,30,1,28,56,29,1,28,29,29,1,6,1,1,50,11,1,16,4,8,4,16,1,8,1,16,1,8,2,6,6,16,1,14,1,1,170,}, + {1,56,6,1,14,1,16,1,8,3,16,1,8,1,6,1,16,2,6,1,8,1,16,1,7,1,16,1,8,4,16,1,14,1,8,3,14,1,16,1,8,1,9,1,8,2,16,2,8,3,9,1,13,2,8,1,13,1,6,1,8,1,6,1,28,5,29,5,7,1,9,1,1,142,14,1,7,1,16,1,14,1,7,1,8,1,6,1,16,1,8,6,16,3,8,1,16,1,8,5,16,1,8,4,16,6,8,5,16,7,8,1,6,1,16,1,6,1,7,1,16,6,8,2,16,1,6,1,16,2,6,4,8,2,6,1,16,2,6,2,16,1,8,1,16,2,14,1,16,2,6,1,16,2,8,1,16,5,8,1,14,5,16,1,14,9,16,1,14,2,16,1,14,3,16,1,14,2,16,2,14,1,16,1,14,1,16,8,6,1,8,1,14,1,6,1,8,1,6,1,13,1,28,1,16,1,8,1,6,1,13,1,6,3,29,1,30,1,13,1,30,2,13,1,9,1,6,1,28,3,6,2,28,5,29,1,28,26,6,2,30,1,6,1,29,1,28,11,29,1,28,15,29,2,28,9,29,1,28,18,11,1,1,52,11,1,16,4,8,2,6,1,8,2,16,1,8,3,6,4,8,2,16,2,1,169,}, + {1,57,11,1,16,1,8,2,16,1,8,1,6,2,8,2,6,1,8,1,16,1,7,1,8,4,16,3,8,4,14,1,8,2,16,2,8,1,16,2,8,5,16,1,14,1,13,1,6,3,29,1,28,4,29,1,6,1,11,1,1,145,11,1,16,3,6,2,8,1,6,1,16,2,8,3,16,5,8,1,16,2,8,2,6,1,8,4,7,1,8,1,16,3,7,1,16,3,8,2,16,7,8,1,6,1,16,1,28,1,6,1,16,7,8,1,16,3,8,1,6,7,16,1,6,1,14,1,8,1,6,2,8,1,16,5,8,1,6,1,16,1,8,1,16,4,8,1,16,2,14,3,16,1,14,3,16,1,14,3,16,2,14,4,16,1,14,3,16,5,14,1,16,7,8,1,16,2,8,1,6,1,8,1,14,1,6,2,13,1,6,2,8,1,6,2,30,1,6,1,30,1,6,1,30,1,28,1,6,1,8,3,28,4,6,2,28,6,29,1,28,10,29,1,28,47,29,1,28,11,29,1,28,15,14,1,1,54,17,1,14,1,16,4,8,2,16,1,8,4,6,5,8,1,6,1,16,2,1,168,}, + {1,58,17,1,16,2,8,2,6,1,8,4,7,1,16,2,8,1,14,1,8,2,16,1,14,1,16,1,8,3,16,4,8,2,16,4,8,4,9,1,8,2,6,2,29,1,30,1,6,1,28,1,6,1,8,1,1,149,16,2,14,1,6,1,8,1,6,2,8,1,16,7,8,1,6,2,16,4,8,7,16,3,8,3,16,10,6,1,8,1,6,2,16,8,8,1,16,2,8,1,6,3,8,1,6,1,8,2,6,1,7,1,16,1,8,1,16,1,6,2,8,1,16,2,8,2,16,1,8,2,16,1,8,2,16,2,8,1,6,1,16,2,14,5,16,1,14,5,16,1,14,1,16,3,14,5,16,1,14,1,16,1,14,2,8,2,14,2,16,1,14,1,16,4,8,3,28,1,8,1,14,1,13,1,6,1,30,1,6,1,14,1,6,4,30,3,29,2,6,2,28,2,29,1,6,1,8,1,28,9,29,1,28,42,29,1,28,13,30,1,28,26,6,1,16,1,11,1,1,56,16,5,8,2,6,1,16,2,8,1,16,1,8,1,6,6,16,2,1,167,}, + {1,60,8,1,16,1,8,8,14,1,8,1,16,2,8,2,14,1,16,1,8,2,16,1,8,2,16,3,8,1,9,1,8,2,16,2,8,2,9,1,13,3,6,2,7,1,28,1,9,1,1,153,9,1,8,8,16,3,8,1,6,1,8,1,16,1,13,1,6,2,16,5,8,3,16,5,8,1,6,2,8,1,6,1,8,2,16,4,8,3,28,1,8,1,16,11,6,1,8,1,16,1,6,1,8,2,6,4,16,1,8,1,16,1,6,1,7,1,14,1,8,1,16,2,8,1,16,2,8,1,16,1,8,1,16,7,14,8,16,1,14,4,16,1,14,3,16,1,14,2,16,2,14,1,16,2,14,1,6,2,14,1,16,6,8,1,16,1,8,2,13,1,6,1,16,1,9,1,6,2,16,2,6,3,30,2,29,1,30,1,29,1,28,7,30,1,28,2,30,1,28,14,29,1,28,34,29,1,28,13,29,1,28,24,8,1,16,3,14,1,1,57,7,1,16,4,8,2,6,1,8,1,16,1,8,1,16,1,6,1,8,2,6,3,7,1,16,2,1,15,8,1,16,6,8,1,7,1,1,142,}, + {1,61,16,3,8,2,16,1,8,3,16,4,8,1,16,3,8,1,16,3,9,1,8,2,16,4,8,2,16,2,8,4,9,1,6,1,16,1,11,1,1,156,16,1,14,1,7,1,8,1,16,2,8,2,7,1,6,2,8,2,6,1,28,1,6,1,8,1,16,1,8,1,6,1,8,1,16,9,8,4,16,2,8,7,6,1,16,1,6,1,8,1,16,6,8,2,16,1,8,2,16,1,14,1,16,1,8,1,6,4,13,1,6,1,8,1,16,2,8,1,16,1,8,1,6,1,16,1,8,2,16,1,8,2,16,1,8,1,16,2,8,1,16,4,14,3,16,1,14,5,16,1,14,6,16,1,14,1,16,2,14,1,16,1,14,1,16,4,6,1,14,2,16,5,6,1,8,1,16,2,6,1,8,1,6,3,16,1,9,1,6,2,29,1,30,2,28,1,29,1,28,2,29,1,28,10,29,1,28,11,29,2,30,1,28,13,29,1,28,56,29,1,8,1,16,4,8,1,16,1,1,58,16,5,8,4,16,2,8,4,6,2,8,1,6,1,16,2,1,9,8,1,14,1,29,1,6,1,8,1,16,1,8,1,16,1,8,1,16,2,8,1,16,1,8,1,7,1,16,1,11,1,1,139,}, + {1,62,11,1,16,3,8,1,16,1,8,1,7,1,16,2,8,1,16,6,8,1,16,2,8,1,16,8,9,1,8,2,9,2,6,1,16,1,1,160,16,1,6,1,8,2,16,2,8,2,16,2,6,1,8,3,6,3,8,1,16,1,8,1,6,3,8,1,16,4,8,2,6,11,8,1,6,1,16,2,8,2,16,5,8,1,16,3,6,2,8,1,14,1,16,2,6,4,13,1,6,1,16,4,6,2,8,1,16,1,8,1,16,1,6,1,8,1,16,2,8,1,16,1,6,1,16,5,14,3,16,1,14,3,16,1,14,2,16,1,14,1,16,4,14,1,16,8,14,1,8,2,14,2,16,5,8,1,6,1,16,1,14,1,6,1,8,1,13,1,6,4,28,1,9,2,6,3,28,14,29,1,28,20,29,1,28,2,6,1,29,1,28,57,16,6,8,1,7,1,16,1,1,59,11,1,16,5,6,1,8,1,16,1,8,1,16,2,8,2,6,4,8,1,16,1,14,2,1,3,14,2,6,1,8,1,16,2,8,2,7,1,6,3,8,1,6,1,7,1,8,1,6,1,7,1,6,1,8,1,16,1,1,139,}, + {1,64,16,2,14,1,16,1,8,3,14,1,8,2,16,1,8,1,16,1,8,1,16,2,9,1,16,2,8,1,16,4,8,5,9,1,16,1,9,1,1,162,16,1,14,1,6,1,8,1,16,2,8,2,16,2,8,1,16,1,8,2,16,2,6,1,28,1,6,2,8,1,16,3,8,1,6,1,8,2,6,1,16,1,6,4,13,1,6,1,8,3,16,1,8,1,6,1,16,8,8,1,16,4,6,2,8,1,6,1,8,1,14,1,16,1,8,1,6,3,8,1,6,1,16,1,8,1,16,1,8,1,6,2,8,2,16,5,8,1,16,2,8,1,16,3,8,1,16,1,14,1,16,1,14,1,16,1,14,2,16,1,14,2,8,1,16,1,14,4,16,11,14,1,16,3,14,1,16,5,8,1,6,1,13,1,16,1,13,1,6,2,13,1,28,1,30,1,16,1,9,1,13,1,16,1,30,1,6,1,8,1,13,1,6,1,28,18,8,1,28,14,29,2,28,57,6,1,16,7,8,2,16,1,1,60,11,1,8,1,16,4,8,3,16,1,8,1,16,1,8,2,6,2,8,1,6,2,8,1,16,2,8,1,6,1,16,2,8,2,6,7,8,1,6,6,8,1,6,2,9,1,14,1,1,137,}, + {1,66,8,1,16,2,8,2,14,1,8,1,16,5,8,1,16,6,9,1,16,2,8,2,9,1,8,1,29,1,8,1,1,165,16,2,6,1,8,1,14,1,8,2,16,2,8,5,6,1,16,2,7,1,6,6,8,1,16,2,8,1,6,1,13,1,6,1,13,1,6,1,8,6,16,1,7,1,16,12,6,2,16,1,6,1,8,3,14,1,16,1,7,1,6,2,30,1,8,1,16,1,6,1,8,2,6,1,13,1,8,2,16,1,8,2,16,2,8,1,16,2,8,1,16,5,14,3,16,4,14,1,16,1,6,1,14,8,16,12,8,1,16,4,8,1,16,1,8,1,14,1,16,1,6,4,28,1,8,1,9,1,6,1,29,1,28,2,30,1,28,1,29,1,6,1,13,1,8,1,6,1,28,11,29,1,28,2,29,1,28,72,7,1,16,8,8,1,7,1,8,1,1,63,16,5,8,1,6,1,16,1,8,1,16,3,8,2,6,4,8,4,6,8,8,1,6,1,13,1,6,5,8,1,6,2,7,1,6,1,9,1,16,1,1,137,}, + {1,68,16,1,6,1,16,1,14,1,16,1,8,2,16,3,14,1,8,1,9,1,16,1,9,1,16,2,8,1,9,1,8,1,9,1,8,2,9,1,1,168,8,1,16,1,7,1,14,1,7,1,8,1,16,2,8,13,6,2,7,1,16,1,14,1,16,1,6,2,13,2,8,2,6,1,8,2,16,1,8,2,16,1,7,1,16,1,7,1,16,1,8,1,16,6,8,1,6,1,16,3,6,1,8,2,7,1,16,1,14,1,16,1,6,1,8,1,16,1,6,2,8,1,6,2,8,1,13,1,8,1,16,1,6,2,16,11,14,5,16,4,6,1,14,2,16,6,14,3,16,16,14,1,16,1,6,3,13,1,6,1,28,1,6,1,8,1,6,1,28,1,29,1,28,6,6,1,8,1,16,1,28,82,29,1,6,1,16,11,8,1,7,1,8,1,11,1,1,63,9,1,16,4,8,6,16,1,8,1,6,5,8,1,6,17,8,6,16,1,11,1,1,137,}, + {1,70,8,1,11,1,9,2,16,1,9,1,8,1,16,9,8,1,6,1,16,1,11,1,1,170,11,1,6,1,8,5,16,1,8,1,6,1,8,7,7,1,8,3,7,1,6,1,8,1,14,1,16,3,8,1,6,2,8,9,16,1,6,2,7,1,8,2,16,4,6,2,7,1,16,4,6,1,8,2,6,1,16,1,14,1,16,2,8,1,6,1,8,2,6,2,13,1,8,2,16,1,6,2,16,11,14,2,16,1,7,1,14,1,16,3,14,1,8,2,16,1,14,1,16,9,14,3,16,1,8,1,16,4,9,2,16,1,9,1,8,3,6,2,8,1,6,3,28,2,6,2,28,8,29,1,28,1,6,1,7,1,28,81,16,14,6,1,8,1,16,1,1,64,6,1,16,4,8,6,16,2,8,1,6,7,8,3,6,10,8,3,16,3,6,1,11,1,1,138,}, + {1,73,17,1,16,1,11,1,6,1,9,2,16,1,14,1,16,2,8,1,16,1,14,1,11,1,1,174,9,1,16,1,8,1,6,1,16,1,8,2,16,1,8,13,6,1,16,3,6,1,8,1,16,1,8,1,6,1,8,1,7,1,8,3,6,1,8,1,16,4,8,1,6,4,16,1,6,2,8,1,6,4,8,1,16,2,6,2,16,1,6,3,16,2,6,1,16,2,8,1,6,3,8,1,16,1,8,1,6,1,16,16,14,1,16,3,14,1,8,2,16,1,14,2,16,9,6,1,16,1,14,1,9,5,16,1,8,4,13,3,6,5,28,2,6,2,28,9,29,1,30,1,6,1,28,77,6,1,16,10,8,1,16,4,8,1,6,1,9,1,8,1,1,66,16,3,8,1,16,1,8,8,16,1,8,1,6,5,8,3,6,1,8,1,6,7,16,3,11,1,8,1,1,141,}, + {1,262,16,2,6,1,8,2,16,3,8,11,6,1,8,1,16,2,6,1,8,3,16,2,6,1,8,7,6,1,16,2,6,2,8,1,16,2,6,4,16,2,8,1,6,2,8,2,16,1,6,2,8,1,16,1,6,4,16,1,8,1,14,1,6,2,7,1,8,1,16,1,6,2,8,1,16,10,14,6,16,6,6,1,16,1,14,4,16,1,8,4,16,1,6,1,28,1,16,1,14,1,8,4,16,1,6,2,7,1,6,7,29,2,6,1,28,2,6,1,8,1,6,1,28,9,6,1,13,1,28,74,6,1,14,1,16,10,8,1,16,1,8,1,16,3,8,2,16,1,8,1,1,66,11,1,16,4,8,8,16,2,8,4,16,2,8,3,6,6,7,1,16,2,1,145,}, + {1,262,17,1,16,2,8,1,14,1,16,1,8,13,6,1,16,1,14,1,8,1,6,1,16,1,6,1,16,1,6,1,16,1,14,1,8,1,6,1,8,5,16,1,14,1,8,2,6,1,16,4,8,1,6,2,16,1,8,1,16,1,6,1,16,1,8,1,6,1,16,1,6,2,30,1,8,1,6,3,28,1,8,1,6,1,8,1,16,1,6,1,8,1,14,1,8,1,6,1,8,1,16,1,8,1,16,10,14,4,16,8,9,1,16,2,14,5,16,2,8,2,16,1,14,2,16,1,9,1,8,2,28,1,6,2,14,1,16,1,14,4,16,1,14,1,16,1,8,1,6,1,29,1,28,2,29,1,6,1,13,1,28,9,8,1,7,1,28,70,6,1,8,1,16,22,6,1,8,1,1,66,11,1,16,4,8,4,16,6,8,8,6,6,8,1,9,1,1,146,}, + {1,263,11,1,16,1,8,1,16,1,6,4,16,3,8,5,7,2,16,1,14,1,16,1,6,1,16,1,6,3,16,11,8,1,6,1,8,1,6,1,16,3,8,2,6,2,16,2,8,3,6,2,8,1,6,1,13,1,16,5,6,2,16,1,6,1,16,3,8,1,6,2,16,1,8,1,16,11,6,1,16,1,14,1,16,6,7,1,16,1,8,5,16,3,14,8,8,3,6,2,16,1,8,1,14,2,16,5,9,1,8,1,7,2,8,1,6,1,28,4,7,1,8,1,6,1,28,6,6,3,28,67,6,1,14,2,16,11,8,1,16,2,8,1,16,7,8,1,7,1,16,1,1,68,16,4,8,4,16,5,8,1,16,2,8,7,6,3,13,1,9,1,11,1,1,146,}, + {1,265,16,1,8,1,6,1,8,6,16,6,14,2,16,1,7,1,16,1,7,1,6,4,8,1,16,1,8,1,6,3,8,1,16,2,6,2,16,1,6,1,8,3,16,1,6,2,8,2,16,1,8,3,16,1,13,1,8,1,6,2,14,1,16,1,6,3,16,1,14,1,6,2,16,1,6,1,8,2,6,2,8,2,16,12,6,1,16,1,14,1,16,1,9,3,8,1,28,1,16,1,14,1,16,3,8,1,7,1,8,4,9,1,16,2,14,1,16,2,8,1,6,1,8,1,6,1,13,1,8,1,6,1,28,1,6,1,8,1,6,1,30,1,6,1,30,1,28,1,6,2,29,1,28,2,6,1,7,1,30,1,28,2,29,1,6,1,28,1,29,1,6,1,30,1,28,3,6,1,7,1,6,1,28,15,29,1,28,48,6,1,8,1,16,14,8,1,16,11,6,1,7,1,28,1,1,68,6,1,14,1,16,2,8,1,16,1,8,1,16,9,8,2,16,1,8,4,6,4,8,1,1,147,}, + {1,265,8,1,16,1,7,1,8,2,16,1,6,1,8,2,6,1,16,5,6,1,16,1,6,1,8,2,6,1,13,1,6,5,16,1,8,3,6,2,8,2,6,2,8,1,16,4,7,1,6,1,16,5,6,1,16,1,6,1,16,1,6,1,16,1,8,1,6,3,8,1,6,1,16,2,6,1,13,1,16,1,8,2,6,1,8,2,16,6,8,1,16,7,14,1,11,1,16,1,8,1,16,2,6,1,28,1,14,3,16,1,14,3,8,1,7,2,8,2,7,1,6,3,7,1,6,3,13,1,6,1,7,1,6,2,28,1,6,1,8,2,6,2,30,1,28,1,29,3,28,3,8,1,6,1,28,7,6,5,28,63,6,1,16,1,14,2,16,11,8,1,16,13,8,3,9,1,1,69,16,5,8,3,16,11,8,4,6,2,13,1,8,1,9,1,1,146,}, + {1,265,11,1,14,1,8,1,6,1,8,1,14,1,7,1,8,1,16,2,6,5,16,3,8,2,6,15,16,8,6,2,16,3,8,1,16,2,6,1,8,3,6,5,16,1,6,1,16,1,6,2,13,1,6,2,8,3,16,2,8,1,16,1,8,2,16,8,14,3,8,3,6,1,28,1,16,2,6,1,8,4,16,1,14,1,6,1,7,1,6,1,7,1,8,1,6,4,7,1,6,8,28,1,7,1,9,2,8,1,6,2,29,1,30,1,6,2,7,1,8,1,13,1,28,72,6,1,9,1,14,2,16,6,14,1,16,6,6,1,16,14,8,3,16,1,1,70,8,1,16,12,8,1,16,5,8,2,16,1,8,1,28,1,6,1,8,1,9,1,14,1,1,145,}, + {1,266,16,1,8,2,14,1,16,1,6,1,8,2,6,2,13,1,8,3,16,1,6,1,8,2,6,7,8,1,16,2,6,2,14,4,16,1,8,2,6,2,8,1,16,2,8,1,6,2,16,4,6,3,16,1,6,4,30,1,6,1,13,1,8,1,16,1,6,1,30,1,6,1,13,1,8,1,6,1,8,1,16,3,8,3,16,9,14,1,16,1,6,1,8,4,28,1,6,1,16,1,8,1,6,4,28,1,8,1,16,1,6,2,7,1,6,10,30,1,6,5,29,1,30,1,28,1,6,1,7,1,8,1,16,1,8,1,16,1,14,1,6,2,28,13,6,1,28,55,6,1,8,1,14,3,16,28,8,1,16,2,7,2,6,1,7,1,17,1,1,68,11,1,16,4,8,1,16,17,6,1,28,1,6,1,8,1,9,1,11,1,1,144,}, + {1,266,11,1,8,3,7,1,8,1,16,1,8,1,16,1,8,2,13,1,6,1,8,1,6,2,16,1,8,1,16,1,6,6,8,1,16,1,8,1,6,1,14,1,16,1,6,9,16,1,6,1,8,1,16,1,6,2,8,1,16,1,8,1,6,1,16,1,6,1,8,1,6,1,7,1,8,1,6,2,30,1,6,1,16,1,8,1,6,2,16,1,8,1,6,2,16,4,8,2,16,10,8,1,7,2,8,2,6,1,8,2,29,1,6,1,16,2,8,1,6,2,28,1,6,1,16,1,8,1,28,2,7,1,16,4,9,1,6,2,7,1,8,1,7,1,6,5,30,2,28,3,6,2,28,1,8,1,6,3,28,6,29,1,6,1,28,7,6,2,28,51,8,1,14,1,16,1,14,2,16,25,8,1,16,6,8,2,16,2,6,1,14,1,1,68,9,1,16,20,8,2,13,1,6,2,7,1,8,1,11,1,1,143,}, + {1,266,6,2,8,3,6,1,8,1,6,1,8,3,6,1,8,3,6,2,16,1,8,1,6,6,8,1,16,1,8,1,16,2,6,1,8,1,6,3,13,1,8,2,16,2,8,1,6,2,8,1,16,1,6,3,8,1,16,3,6,2,8,1,6,4,8,3,6,4,7,1,16,1,14,1,16,1,8,1,6,1,8,1,16,12,6,1,7,1,6,1,7,1,6,2,7,2,6,2,8,1,16,1,14,2,16,3,8,1,29,1,28,1,7,1,16,4,8,1,6,1,9,1,16,1,8,2,7,2,6,2,29,1,6,1,8,1,9,1,6,1,29,1,28,4,29,1,28,9,29,1,6,1,29,1,28,7,30,1,28,47,8,1,16,1,14,1,16,4,14,2,16,23,8,1,16,10,8,2,7,1,11,1,1,68,16,21,8,3,6,3,9,1,11,1,1,142,}, + {1,265,11,1,16,1,7,1,6,2,8,1,6,1,8,5,6,1,8,2,6,1,8,2,16,2,6,6,16,2,6,1,16,1,8,2,6,2,13,2,6,1,8,1,16,1,8,1,16,1,6,3,8,1,16,2,8,1,6,2,16,3,6,1,16,1,8,1,6,4,14,1,6,6,16,2,8,1,6,2,8,2,16,12,8,1,6,1,7,1,6,9,7,1,16,4,6,2,29,1,28,1,6,1,16,1,28,2,6,6,29,1,6,2,28,1,29,1,28,2,6,4,28,1,29,1,28,13,6,2,28,6,6,1,29,1,28,43,6,1,14,2,16,8,14,1,16,22,8,1,16,2,8,1,16,8,8,1,6,1,8,2,11,1,1,67,11,1,14,1,16,21,6,3,28,1,6,1,16,1,1,142,}, + {1,264,14,1,8,1,16,1,8,1,6,1,16,1,8,1,13,1,6,1,8,3,6,2,16,1,8,2,6,2,16,2,8,1,6,5,14,1,8,1,6,1,8,2,6,5,8,6,6,2,16,1,8,1,16,2,8,1,6,3,8,1,16,2,14,1,16,3,14,1,8,1,6,5,8,1,16,1,8,1,6,2,8,4,16,11,8,1,6,13,28,1,29,1,28,1,6,3,29,1,28,1,6,1,8,1,6,2,29,1,6,1,29,1,6,1,28,1,6,1,29,4,30,1,28,5,6,1,30,1,6,2,28,3,29,1,28,13,29,3,28,31,6,1,28,10,8,1,14,2,16,10,14,1,16,15,6,1,8,1,14,1,16,2,8,1,16,3,8,1,16,7,14,1,16,1,8,1,7,1,8,2,9,1,6,1,1,67,7,1,16,6,8,1,16,16,8,1,7,1,28,1,6,1,16,1,7,1,1,140,}, + {1,264,16,1,9,1,8,3,16,2,8,1,13,1,8,2,6,3,16,1,8,1,13,1,6,2,16,1,6,1,16,1,6,5,14,1,8,1,6,1,16,1,13,1,6,6,8,3,16,1,8,1,6,2,16,1,8,1,16,1,6,2,8,1,6,1,8,1,6,1,16,1,6,2,16,3,8,1,6,6,16,1,8,1,6,1,8,5,16,2,8,1,16,10,6,14,29,1,6,6,28,2,29,1,6,2,29,3,30,1,29,1,30,1,29,5,28,2,6,1,29,1,28,4,6,1,30,1,28,48,29,1,28,7,6,1,8,1,14,3,16,2,14,2,16,8,14,1,16,18,8,2,16,3,8,1,16,6,8,1,16,3,8,5,16,1,11,1,1,67,16,25,6,3,16,2,14,1,1,138,}, + {1,263,8,1,16,1,8,1,6,1,8,3,6,1,8,3,7,2,6,1,8,1,16,1,8,1,6,4,16,1,8,1,16,1,6,3,16,2,6,1,8,3,28,1,6,4,8,1,6,2,8,1,16,1,8,1,6,1,8,1,16,1,8,1,16,1,8,1,6,1,16,1,8,1,6,1,16,1,13,1,6,1,8,1,6,1,8,1,6,7,16,1,8,1,6,1,13,1,8,5,16,1,8,1,16,11,9,1,16,3,9,1,6,2,29,2,6,4,29,1,6,4,29,2,6,2,29,1,28,2,29,1,8,1,6,1,29,1,28,1,29,1,28,2,29,1,28,1,29,2,28,1,29,1,28,1,29,1,28,1,29,1,28,4,6,1,29,1,28,51,6,1,8,1,16,1,14,4,16,1,14,1,16,21,14,1,16,7,8,1,16,3,6,1,16,7,8,1,16,2,8,4,16,4,6,1,14,1,8,1,1,66,7,1,16,17,8,1,16,3,8,1,16,2,8,1,6,2,8,2,16,1,1,137,}, + {1,262,6,1,16,1,8,1,6,2,8,1,6,1,8,2,6,1,8,1,6,1,8,3,14,1,8,1,6,5,8,1,6,1,16,2,8,1,14,1,16,1,6,1,8,1,6,1,8,2,16,1,6,5,8,2,16,1,14,1,6,2,16,1,8,1,6,1,16,1,6,1,16,3,6,1,16,1,6,12,16,1,6,1,13,1,6,1,8,4,16,1,8,1,16,8,8,1,6,1,16,3,8,1,29,1,6,3,8,1,7,1,29,2,6,2,29,2,6,1,29,4,6,1,28,1,6,1,28,1,6,1,29,1,28,3,6,2,29,6,28,1,29,1,28,3,29,1,28,2,29,1,28,4,30,1,29,1,28,46,6,1,8,1,16,1,14,5,16,16,14,1,16,18,8,1,16,8,8,1,16,4,8,2,16,4,8,1,7,1,8,1,16,1,29,1,11,1,1,64,11,1,16,23,8,1,16,2,6,3,8,2,7,1,9,1,16,1,1,133,}, + {1,262,16,1,7,1,8,1,16,1,6,1,8,1,7,1,8,1,7,1,16,1,8,1,16,4,6,1,8,1,6,1,8,1,14,1,16,1,6,1,28,1,8,1,6,1,16,1,14,1,8,1,7,1,8,1,28,1,6,1,16,1,13,1,16,1,14,1,6,2,16,4,14,1,16,1,7,1,6,1,16,2,6,1,8,1,6,1,8,1,16,3,6,2,8,2,13,1,6,8,13,1,6,2,8,1,13,1,8,4,16,6,8,4,16,1,8,1,16,2,6,2,29,2,6,1,28,2,7,1,6,1,29,2,6,1,29,3,6,1,29,2,28,5,29,1,6,1,29,1,28,3,29,5,28,1,29,1,28,2,29,1,28,4,29,1,28,1,29,1,28,3,30,1,6,1,28,43,8,1,14,2,16,23,14,1,16,8,6,1,16,2,8,1,16,27,8,1,6,1,16,3,9,1,11,1,1,63,11,1,16,26,8,1,6,2,7,1,8,1,16,2,6,1,14,1,1,131,}, + {1,261,14,1,16,1,6,1,16,1,8,1,13,2,8,1,6,1,16,1,8,1,6,1,8,5,6,1,8,1,14,1,8,1,6,1,16,1,8,1,6,4,8,2,6,5,8,1,7,1,16,4,8,1,16,2,8,2,6,1,8,2,16,1,6,3,16,3,6,2,8,1,6,13,13,2,7,1,8,2,16,3,8,2,16,1,8,2,16,7,6,1,28,1,6,2,29,1,28,4,6,2,29,1,28,1,29,1,6,1,29,1,28,2,6,1,8,1,16,2,8,1,6,1,29,5,28,4,6,1,29,3,28,2,29,3,28,2,29,1,28,1,6,2,8,1,6,1,28,5,29,2,28,33,6,1,16,2,14,1,16,6,14,1,16,7,14,1,16,11,14,1,16,25,8,1,16,13,8,2,16,2,8,1,9,2,14,1,1,64,16,25,8,2,6,5,8,1,16,1,8,1,1,130,}, + {1,259,11,1,16,1,8,1,7,1,8,1,16,1,8,1,7,1,8,1,7,1,6,1,16,1,7,1,8,1,6,6,14,1,6,2,16,1,7,1,8,1,16,1,6,2,13,1,6,8,8,1,6,1,8,1,6,5,8,1,6,1,7,1,8,2,16,1,8,1,6,6,8,2,13,2,6,14,8,2,16,4,8,2,16,9,8,1,28,3,29,1,6,1,7,1,29,1,28,3,6,1,16,1,28,3,29,1,28,3,29,1,28,5,29,5,28,1,29,1,28,11,6,1,28,2,6,1,28,10,29,2,28,26,6,1,8,1,16,1,14,3,16,53,8,1,16,2,8,2,16,16,8,1,16,1,8,1,16,1,1,63,16,25,8,6,6,2,16,1,17,1,1,129,}, + {1,258,11,1,16,1,8,1,6,3,16,1,6,5,7,1,6,2,16,1,8,1,6,1,8,1,6,1,16,1,6,6,8,2,6,2,28,1,6,1,13,1,8,1,30,1,6,2,16,1,8,1,7,1,6,1,8,1,6,6,8,1,16,1,8,1,16,3,8,3,6,1,16,2,6,1,8,1,13,1,6,13,7,1,8,1,16,4,8,3,16,10,6,1,16,1,28,6,6,3,8,1,9,1,8,1,7,1,29,3,28,3,29,1,28,7,29,2,28,5,29,1,28,12,29,2,28,29,9,1,8,1,17,1,6,1,16,1,14,1,16,55,8,1,16,1,8,1,16,3,8,1,16,18,8,3,7,1,16,1,1,61,11,1,16,10,8,1,16,2,14,1,16,13,8,4,9,2,1,130,}, + {1,257,11,1,8,2,6,2,8,1,7,1,16,1,8,2,16,1,8,1,13,1,6,1,16,2,8,1,16,1,8,1,6,1,8,2,13,1,6,6,16,1,6,3,16,2,14,1,16,1,6,1,8,1,16,1,6,5,13,1,6,1,8,5,16,6,8,1,6,1,16,1,8,3,13,1,6,13,7,1,16,2,8,3,7,1,8,1,16,12,1,5,8,1,9,2,16,1,28,5,29,1,28,2,29,2,28,3,29,2,28,21,29,1,28,14,29,2,28,7,29,3,28,2,16,1,8,1,17,1,1,5,7,1,16,4,14,2,16,54,14,1,16,1,8,4,16,11,14,1,16,4,8,1,6,1,8,2,16,1,6,1,14,1,1,60,11,1,16,9,8,1,16,4,14,3,16,3,8,1,16,2,6,1,8,3,16,3,6,1,11,1,1,130,}, + {1,256,14,1,6,1,8,2,6,2,7,1,8,1,6,1,8,4,6,1,14,1,16,1,6,1,8,1,7,1,16,1,6,1,8,1,6,3,13,1,6,1,28,1,7,1,8,1,7,1,28,1,6,1,14,1,8,1,6,2,8,2,16,1,6,1,13,1,6,4,13,1,6,2,8,4,16,5,8,1,6,1,8,4,13,1,6,2,13,1,6,11,16,3,8,2,6,1,8,1,16,12,14,1,1,13,17,1,9,1,8,1,9,1,16,2,8,1,28,6,29,3,28,3,9,2,6,1,28,17,29,1,8,1,6,1,29,2,6,1,29,2,28,4,9,1,8,1,1,1,11,1,16,1,9,1,11,1,1,11,9,1,16,4,14,2,16,52,8,1,14,1,16,1,8,3,16,12,14,1,16,5,8,3,16,1,8,1,16,2,7,1,16,1,1,59,11,1,14,2,16,5,8,2,7,1,16,11,1,140,}, + {1,256,6,1,8,2,16,1,8,2,16,1,6,1,8,2,6,2,8,1,16,1,8,1,6,1,8,1,6,2,8,1,6,1,8,1,6,6,16,2,8,1,6,1,14,1,16,1,6,4,8,1,16,1,7,1,6,4,13,1,6,2,8,3,16,1,8,1,16,4,6,2,8,1,16,1,8,3,6,2,8,2,6,11,14,1,8,2,6,1,7,1,16,1,8,1,16,1,8,1,16,11,14,1,1,30,7,1,8,3,10,1,9,5,16,1,9,2,16,2,9,1,16,2,9,2,16,4,9,2,8,3,7,1,1,21,8,1,16,57,8,1,14,1,16,1,8,1,6,1,7,1,16,6,8,1,16,4,8,1,16,1,14,1,16,5,8,2,16,4,8,2,16,1,8,1,16,1,1,59,8,1,16,6,8,5,6,1,8,2,16,5,1,140,}, + {1,255,16,1,9,1,7,1,8,3,13,2,8,1,6,1,8,3,6,3,8,1,6,2,16,1,6,2,8,1,16,1,6,4,16,2,8,1,6,2,16,1,6,4,8,2,16,1,8,1,6,4,8,1,16,1,8,1,6,2,8,2,16,3,8,1,6,3,16,3,8,1,6,1,8,2,16,1,8,1,6,10,16,2,6,3,8,4,16,12,8,1,1,81,8,1,9,1,14,1,16,2,14,2,16,54,6,2,8,1,16,12,14,1,16,15,8,1,16,1,6,1,9,1,1,58,11,2,7,1,16,11,6,1,14,1,11,1,1,142,}, + {1,254,7,1,16,1,6,1,8,3,6,2,8,2,6,1,13,1,6,2,8,2,13,1,6,2,14,1,8,2,6,1,8,2,16,1,6,2,16,2,8,2,6,1,16,1,8,2,6,3,8,1,16,1,13,1,8,1,6,4,16,2,8,1,6,1,7,1,8,1,16,3,8,1,6,3,8,1,16,1,8,4,16,2,8,2,6,10,14,1,6,3,8,3,16,2,8,1,16,1,8,1,16,2,8,1,16,7,11,1,1,80,9,1,16,58,8,1,6,1,8,2,16,12,14,2,8,1,16,15,8,2,16,1,8,1,1,60,16,1,8,1,16,2,17,1,16,1,11,1,16,2,8,1,16,1,1,145,}, + {1,253,16,2,8,1,6,1,13,1,8,2,6,2,8,1,6,1,8,4,6,4,8,1,14,1,6,1,8,1,6,3,8,1,16,2,7,1,6,1,8,1,6,2,16,1,8,2,6,3,16,1,6,3,16,1,6,2,16,2,6,3,7,1,8,1,16,3,6,3,16,3,8,2,16,3,6,2,7,1,6,9,13,1,8,1,6,1,13,1,8,6,16,1,8,2,16,1,8,2,16,4,8,1,16,3,1,80,7,1,16,58,8,2,16,9,8,1,16,2,8,1,14,2,16,17,6,1,8,1,6,1,8,1,6,1,9,1,11,1,1,213,}, + {1,252,11,1,16,1,8,1,7,1,16,1,6,1,8,1,6,1,8,2,13,1,6,1,8,1,6,1,8,1,6,4,16,2,6,1,8,1,6,5,7,1,8,2,16,1,6,3,13,1,8,1,16,1,8,1,6,1,16,2,8,1,6,1,8,2,14,2,16,1,6,5,16,2,8,1,6,3,8,1,16,3,8,1,16,1,8,2,6,2,8,1,6,14,8,6,16,1,8,2,16,8,8,1,16,1,6,1,1,80,8,2,16,48,8,1,16,10,8,1,16,10,8,1,16,1,14,1,16,11,8,1,16,6,6,1,8,1,16,2,8,1,16,3,14,1,1,211,}, + {1,251,11,1,8,2,6,1,13,1,8,4,13,1,8,1,6,1,13,1,7,1,8,4,16,3,6,1,8,1,6,1,16,1,14,1,16,1,14,1,16,1,6,6,30,1,6,1,8,2,16,1,14,1,16,1,6,1,8,1,6,6,8,1,6,4,16,2,6,3,16,4,8,2,16,1,8,1,6,2,8,1,6,1,13,1,6,13,13,1,6,1,8,5,16,2,8,2,16,4,8,1,16,1,8,1,16,1,9,1,1,79,16,1,14,1,8,1,16,3,14,1,16,61,8,1,16,2,8,2,16,21,8,1,16,5,8,1,16,2,8,1,1,210,}, + {1,251,6,1,8,2,13,1,8,1,13,1,8,3,6,1,8,1,6,1,8,1,6,2,8,1,6,1,16,2,6,2,16,1,6,1,8,1,14,1,8,3,6,1,16,2,6,6,13,1,8,1,6,2,8,2,6,11,8,3,6,2,16,1,8,1,16,2,8,2,16,1,8,1,6,2,8,2,6,8,30,1,6,6,13,1,7,1,8,1,7,1,8,5,16,5,8,2,16,2,8,1,16,1,17,1,1,78,16,2,8,1,16,3,14,1,16,74,8,1,16,5,8,3,16,10,8,3,16,1,7,1,16,1,1,208,}, + {1,250,9,1,8,1,6,1,8,1,13,1,6,1,8,2,16,1,8,1,6,3,16,1,8,1,6,2,13,2,8,3,6,2,14,1,8,1,7,1,6,5,16,1,6,8,8,2,6,9,8,1,6,1,8,1,7,1,8,2,6,1,16,1,8,2,16,2,8,2,16,1,8,1,6,1,8,1,16,1,8,2,7,1,6,13,7,1,8,2,16,2,8,1,16,1,8,1,16,3,8,1,16,8,9,1,1,78,16,2,8,1,16,1,9,1,16,1,14,1,16,61,8,1,16,18,8,3,16,12,8,1,16,1,8,1,16,2,11,1,1,206,}, + {1,249,11,1,14,1,8,1,6,2,8,1,13,1,7,1,6,1,16,1,8,1,16,2,14,1,8,2,6,2,8,2,13,1,6,3,13,1,16,1,7,1,6,5,13,1,6,1,16,1,6,5,16,1,8,1,6,7,8,1,16,1,8,1,6,3,8,1,7,1,8,4,16,2,8,1,16,1,8,3,6,2,16,1,8,1,7,1,8,1,6,1,8,1,6,13,7,1,8,1,14,1,16,1,6,1,8,2,16,3,8,2,16,3,8,1,16,4,1,77,16,1,14,1,9,1,16,1,9,1,16,2,14,1,16,76,8,1,16,4,8,1,16,2,8,1,16,12,8,2,16,2,1,206,}, + {1,249,16,3,6,1,8,2,6,3,8,3,16,1,6,1,8,1,13,1,6,9,16,1,6,1,8,1,6,5,8,2,13,1,6,2,16,1,14,1,8,2,16,1,13,1,6,3,8,1,14,1,16,4,6,1,8,1,7,1,8,6,16,3,8,1,16,1,6,2,16,2,8,2,6,1,8,1,6,1,8,1,6,10,7,1,8,2,16,2,14,1,8,3,16,13,1,77,16,7,14,1,16,57,8,2,16,24,8,2,16,11,8,1,6,1,8,3,16,2,11,1,1,203,}, + {1,247,11,1,16,2,8,1,16,1,8,2,6,1,8,1,6,1,8,1,6,2,8,1,6,1,8,2,6,2,13,1,6,7,8,2,16,1,6,3,30,1,6,1,16,1,6,3,14,1,8,1,6,4,16,1,6,2,16,1,14,1,6,4,8,2,6,1,8,4,16,2,8,1,16,4,8,1,6,1,16,4,8,4,6,2,13,1,6,9,8,2,16,1,6,1,16,2,8,1,16,3,8,1,16,10,1,77,16,3,8,1,9,1,16,2,14,1,16,83,8,2,16,5,8,1,16,5,8,2,16,2,8,2,16,3,11,1,1,201,}, + {1,247,9,2,7,1,6,1,8,2,6,2,16,1,6,1,7,1,6,3,8,2,6,4,13,1,6,6,8,4,6,1,30,1,6,1,16,2,8,1,6,2,16,1,6,5,8,2,7,1,14,1,7,1,6,3,8,7,16,2,8,2,16,4,6,2,16,4,8,5,7,1,8,1,6,1,13,1,6,1,13,1,6,2,8,8,14,1,16,1,8,1,16,13,1,76,9,1,14,1,16,3,8,1,16,2,14,1,16,84,8,1,16,3,14,1,8,3,16,9,8,3,16,2,8,1,1,200,}, + {1,246,6,1,9,1,7,1,8,1,6,1,8,3,7,1,8,2,6,1,16,1,8,1,6,2,8,1,6,4,13,1,16,1,6,6,13,1,6,1,16,5,8,1,6,2,8,3,6,3,8,1,16,1,6,1,8,1,16,1,6,1,8,1,6,2,16,1,7,1,6,1,8,4,16,2,8,1,16,4,6,2,16,5,8,1,16,1,8,2,16,1,8,6,13,1,8,7,16,1,6,1,16,2,8,1,16,12,8,1,1,76,16,83,8,1,16,9,8,1,16,3,14,1,8,3,16,11,8,2,16,2,8,1,16,1,1,198,}, + {1,245,11,1,16,1,6,3,13,2,7,2,16,1,8,3,16,1,6,4,8,1,6,2,13,1,8,3,6,6,16,1,8,1,7,1,8,1,16,1,6,1,8,1,6,2,16,1,8,2,6,3,16,1,8,1,6,1,8,2,6,3,8,1,16,1,6,2,8,2,16,3,8,1,16,5,8,1,16,7,8,1,16,2,8,14,16,2,8,3,16,13,11,1,1,76,11,1,16,81,7,1,16,12,8,1,16,3,8,4,16,1,8,1,16,2,8,1,16,11,17,1,1,196,}, + {1,245,6,3,8,1,16,1,8,1,6,1,7,1,8,4,6,1,8,2,6,1,8,3,6,5,16,1,6,6,14,1,6,1,8,1,6,1,8,1,6,1,8,1,6,2,8,1,16,1,8,1,6,3,16,1,8,1,6,1,16,1,6,1,8,2,6,1,16,2,6,1,8,2,16,1,8,3,16,17,8,1,16,1,8,13,16,1,8,1,6,2,16,12,9,1,1,78,16,12,14,1,16,67,8,1,16,12,8,2,16,4,8,2,16,2,8,1,16,2,8,1,16,13,1,195,}, + {1,244,11,1,16,1,8,2,16,1,6,2,7,2,6,2,8,2,6,1,8,1,6,2,8,3,6,3,13,1,6,2,16,1,30,1,6,2,30,1,8,2,13,1,6,1,13,1,8,1,6,1,8,1,16,1,6,1,13,1,8,1,16,1,6,3,14,1,6,2,16,1,8,2,6,1,8,1,16,1,8,1,6,1,8,4,16,20,8,1,16,1,8,10,16,18,6,1,1,77,11,1,16,12,14,1,16,65,8,1,16,13,8,2,16,5,8,1,16,2,8,1,16,2,8,2,16,10,8,1,16,3,17,1,1,193,}, + {1,244,16,1,8,1,16,1,8,3,7,1,6,1,8,1,6,2,16,1,6,2,8,1,6,2,8,1,16,1,8,1,6,4,13,1,6,1,16,1,8,1,30,1,6,2,13,1,16,1,6,1,30,1,6,2,13,1,8,1,16,1,6,1,13,1,6,1,16,1,14,1,16,1,14,1,16,1,8,1,6,2,16,5,6,1,8,4,16,25,8,9,16,1,8,1,16,15,8,1,1,77,11,1,14,1,16,11,14,1,16,79,8,1,16,6,8,1,16,2,8,1,14,1,8,3,16,1,8,1,16,13,1,193,}, + {1,243,6,1,16,1,6,1,16,1,8,1,6,1,16,1,6,2,8,3,6,2,16,1,6,1,7,1,6,1,16,1,8,1,6,5,8,1,6,2,16,1,13,1,28,2,14,1,6,6,8,2,6,2,8,1,16,1,8,1,16,1,8,1,6,1,16,1,8,1,6,2,16,2,14,1,8,1,6,1,8,3,16,1,8,1,16,24,8,1,16,1,8,4,16,21,1,78,8,1,16,12,14,1,16,57,6,1,8,1,16,18,8,1,16,9,8,1,16,2,8,3,16,1,8,2,16,13,9,1,1,191,}, + {1,242,14,1,8,1,6,2,8,1,6,2,16,1,6,1,8,2,6,1,16,1,6,1,8,1,6,4,14,1,6,6,13,1,6,1,13,1,6,1,16,1,6,1,28,1,16,1,8,2,6,1,28,1,6,1,16,2,8,1,6,1,16,2,6,2,8,3,6,1,16,1,6,1,8,1,6,1,16,2,6,1,8,1,16,1,8,1,16,1,8,2,16,3,8,1,16,4,8,1,16,15,8,1,16,5,8,1,16,1,8,1,16,17,11,1,1,78,11,1,14,1,16,88,8,1,16,10,8,1,16,3,8,5,16,14,7,1,17,1,1,189,}, + {1,242,16,1,9,1,6,1,7,1,16,1,6,1,8,2,13,1,8,1,6,1,8,1,7,1,6,1,16,1,6,3,16,2,6,7,8,1,6,3,14,1,8,4,16,2,14,1,16,1,6,2,16,2,6,7,8,3,16,1,6,3,8,2,16,10,8,1,16,42,6,1,1,80,7,1,14,1,16,14,14,4,16,84,8,2,16,1,8,1,16,1,8,1,16,14,8,1,9,1,11,1,1,187,}, + {1,241,7,1,16,1,6,3,8,1,6,1,8,4,6,1,16,1,6,2,14,1,6,3,16,1,6,1,8,1,6,7,13,1,6,1,13,1,6,1,16,1,8,3,6,1,16,2,6,1,8,1,6,1,8,2,16,1,6,3,13,1,16,2,6,1,8,3,16,1,6,2,16,1,8,1,16,1,8,1,16,2,8,1,16,3,8,1,16,44,8,1,1,81,8,1,14,1,16,14,14,5,16,86,8,1,16,16,8,1,16,1,1,187,}, + {1,240,14,1,16,1,6,3,8,3,6,1,8,1,6,2,16,2,7,1,6,2,8,1,16,1,14,1,6,1,7,1,6,13,16,1,8,1,6,3,8,2,6,2,8,1,6,1,8,1,7,1,6,3,14,1,8,1,6,1,8,2,16,1,8,2,16,7,8,1,16,3,8,1,16,44,8,1,1,82,6,1,14,1,16,16,14,3,16,61,8,1,16,41,8,1,16,1,8,1,11,1,1,184,}, + {1,240,16,1,8,1,6,2,8,2,6,1,8,1,6,2,8,1,16,2,6,2,7,1,6,3,8,3,6,10,13,1,6,4,16,1,8,1,6,5,8,3,16,1,8,1,16,3,6,2,8,2,16,4,8,1,16,5,8,1,16,46,9,1,16,1,1,84,6,1,11,1,9,3,16,15,14,3,16,56,8,1,16,28,8,1,16,15,8,1,16,1,8,1,11,1,1,183,}, + {1,239,14,1,16,1,6,2,13,1,6,1,8,2,13,1,6,2,8,3,6,2,8,2,6,1,7,1,8,1,6,13,13,2,6,3,8,1,16,2,6,4,8,1,7,1,16,1,8,1,16,1,6,3,8,1,16,4,8,1,16,55,8,1,1,85,11,2,9,1,8,2,16,17,14,2,16,24,14,1,16,29,8,1,16,45,8,1,16,2,1,183,}, + {1,239,8,1,16,1,6,1,13,1,6,2,14,1,13,1,6,1,13,1,6,1,8,2,7,1,6,1,13,1,6,18,30,1,6,1,13,1,8,1,6,3,8,1,14,1,8,1,6,2,8,1,6,6,8,1,16,3,6,1,8,4,16,51,8,1,16,1,11,1,1,85,17,1,11,2,14,1,7,1,8,1,16,16,14,2,16,100,6,1,16,2,11,2,1,181,}, + {1,239,8,3,6,1,13,1,6,1,14,1,6,2,8,1,6,3,8,1,7,1,8,1,6,21,8,1,6,2,8,1,6,1,30,1,8,2,6,3,8,1,6,2,8,2,16,2,8,1,6,2,16,2,6,1,16,54,1,87,16,1,1,3,8,1,6,1,16,18,14,3,16,97,6,1,16,1,11,1,1,1,16,1,1,180,}, + {1,239,8,2,6,2,8,1,6,1,14,1,6,1,8,1,6,1,16,1,8,3,13,1,6,24,13,1,6,1,13,1,6,4,8,1,6,2,8,2,16,1,6,1,16,2,6,2,16,3,8,1,7,1,16,1,8,1,16,50,11,1,1,88,17,1,1,3,16,1,7,1,16,9,14,4,16,6,14,2,16,96,7,1,8,1,16,1,1,2,11,1,17,1,1,178,}, + {1,238,11,1,6,1,7,1,13,1,8,1,6,1,8,1,16,1,6,2,16,2,8,2,13,1,6,2,13,1,6,28,8,2,6,1,7,1,8,4,16,2,6,1,16,7,8,1,16,44,8,1,16,4,8,1,1,89,12,1,11,1,1,3,16,1,7,1,16,7,14,6,16,101,1,3,16,1,8,1,17,1,11,1,1,2,9,1,11,1,1,176,}, + {1,238,7,1,8,1,7,1,13,1,8,1,6,1,14,1,8,1,6,2,16,1,6,1,8,1,7,1,8,1,13,1,6,1,13,1,6,26,13,1,8,1,6,2,16,2,8,4,16,2,6,1,16,6,7,1,6,1,16,48,7,1,1,91,12,1,1,4,14,1,8,1,16,4,14,1,16,3,14,2,16,10,14,2,16,90,11,1,1,4,17,1,16,1,11,3,1,2,9,1,1,175,}, + {1,237,8,1,16,1,7,1,8,1,6,2,9,1,14,1,6,1,8,3,6,2,16,1,8,1,13,1,6,28,8,1,6,1,16,1,14,1,16,9,8,1,16,5,6,1,8,1,16,45,8,1,16,2,11,1,1,92,11,1,1,4,8,1,16,6,14,2,16,3,14,1,16,1,14,1,16,8,14,1,16,89,1,1,11,4,1,1,11,1,16,1,11,4,1,1,11,1,12,1,1,173,}, + {1,237,6,1,7,1,8,1,7,1,13,1,6,1,14,1,8,1,6,2,8,3,6,1,16,1,8,1,6,1,13,1,6,22,13,1,6,1,13,1,6,3,8,1,14,1,16,1,6,1,8,1,6,2,8,1,16,6,8,1,16,1,14,1,8,1,6,1,16,47,14,1,1,94,12,1,11,1,1,3,16,1,1,1,8,1,14,1,16,4,14,3,16,4,14,1,16,7,14,1,16,88,14,1,11,5,1,1,11,7,1,1,17,1,11,1,1,172,}, + {1,237,6,1,8,1,6,2,8,1,14,1,16,1,6,1,8,2,6,4,14,1,13,1,6,11,13,1,6,14,13,1,8,1,6,1,8,1,16,2,6,1,7,1,6,1,8,2,6,1,8,1,6,1,8,1,16,1,8,1,16,1,14,1,16,1,8,1,6,1,8,1,16,47,6,1,1,95,12,1,1,3,16,1,1,2,6,1,16,8,14,2,16,1,14,1,16,96,11,15,1,1,11,2,1,171,}, + {1,236,14,1,7,1,8,1,6,1,8,2,16,1,6,2,8,1,6,3,8,1,16,2,6,1,13,1,6,1,8,1,6,8,8,1,16,2,6,11,8,1,6,2,8,2,16,1,6,2,8,3,16,3,6,1,8,2,6,1,8,1,16,1,8,1,28,1,6,1,16,1,8,1,16,42,8,1,16,2,6,1,1,97,17,1,1,2,12,1,1,3,9,1,16,1,14,1,16,3,14,2,16,2,14,2,16,2,14,2,16,92,11,7,1,1,11,1,1,1,11,6,1,1,11,1,12,1,1,170,}, + {1,236,16,1,8,1,6,1,13,1,6,1,8,2,6,1,8,3,6,2,16,1,8,1,7,1,13,1,6,1,13,1,6,9,8,2,16,2,6,7,13,1,6,2,8,1,6,1,8,4,16,2,8,4,16,3,8,1,6,1,8,2,6,2,8,1,16,47,11,1,1,98,12,1,17,1,1,1,9,1,1,4,11,1,16,1,14,1,16,4,14,1,16,2,14,5,16,92,1,1,11,9,1,2,11,1,16,1,11,3,1,1,11,1,1,170,}, + {1,236,8,2,6,2,8,1,6,2,8,1,6,2,8,1,16,1,6,1,8,1,16,1,6,2,13,1,6,1,13,1,6,8,8,1,16,1,6,1,16,2,8,1,6,2,13,1,6,2,8,1,13,1,6,2,8,1,6,2,8,1,6,2,16,3,8,1,16,4,8,1,16,50,14,1,16,1,17,1,1,100,11,1,9,1,12,1,1,2,17,1,1,2,11,1,8,1,14,1,16,1,14,2,16,2,14,1,16,1,14,3,16,92,11,1,1,1,11,4,1,2,11,4,1,1,11,2,16,1,11,1,1,1,11,1,1,1,17,1,1,169,}, + {1,236,6,1,8,1,6,3,8,1,16,2,8,2,16,2,8,1,6,2,8,1,6,12,8,3,6,1,16,2,6,2,7,1,6,1,8,1,6,2,8,1,7,1,8,3,6,1,16,1,6,2,16,3,8,1,16,3,8,2,16,37,14,1,16,12,1,111,11,1,7,1,14,1,16,3,14,1,16,2,14,2,16,93,11,2,1,1,11,4,1,1,11,5,1,1,11,2,16,1,11,1,1,2,9,1,1,169,}, + {1,235,14,1,8,1,13,2,6,2,8,4,16,1,6,1,8,3,6,15,8,2,6,2,16,2,8,1,6,2,8,2,6,1,8,6,16,2,8,2,16,6,8,3,16,47,11,1,1,113,11,1,8,1,14,1,16,2,14,5,16,93,11,1,1,1,11,7,1,1,11,7,16,1,11,1,1,1,11,1,1,169,}, + {1,235,7,1,8,1,13,1,6,1,8,1,6,1,8,1,6,1,7,1,8,2,6,4,8,1,13,1,6,2,13,1,6,10,13,1,8,1,16,1,8,1,6,1,16,3,7,1,6,1,8,2,7,1,8,4,16,1,8,2,16,1,8,1,6,1,16,5,8,1,16,4,8,1,6,1,8,1,16,1,6,1,16,1,8,1,16,37,1,116,11,1,8,1,14,1,16,5,14,1,16,2,14,1,16,90,1,2,11,12,1,1,11,3,16,1,1,1,16,1,1,169,}, + {1,236,8,2,6,1,16,1,6,1,16,1,6,1,8,1,6,1,8,1,6,1,8,4,6,1,13,1,6,3,13,2,6,9,8,3,6,1,16,3,8,2,6,1,8,10,16,1,8,1,16,4,8,2,16,3,6,1,8,1,16,4,7,1,16,35,14,1,6,1,1,117,11,1,9,1,14,1,16,1,14,2,16,4,14,1,16,90,1,3,11,1,1,2,11,3,1,2,11,1,17,1,11,2,1,2,11,1,1,1,16,1,1,170,}, + {1,235,14,1,8,1,6,2,16,1,6,1,8,1,7,1,6,1,16,1,6,1,8,2,6,1,16,1,6,2,8,1,6,14,8,3,16,1,6,1,8,1,16,2,8,4,16,1,8,4,16,1,8,1,16,3,8,4,6,1,16,5,8,1,16,2,14,1,16,1,8,1,16,33,8,1,16,1,8,1,1,119,11,1,16,1,14,1,16,4,14,3,16,89,14,1,1,4,11,7,1,3,11,2,1,1,11,2,1,1,16,1,1,169,}, + {1,235,16,1,8,1,6,2,16,1,6,1,16,1,6,1,8,5,6,1,16,1,8,2,6,1,8,1,6,1,13,1,6,13,8,3,6,2,16,3,8,3,6,1,8,5,16,11,6,1,16,1,14,2,16,2,6,1,16,36,1,121,11,1,16,1,14,1,16,2,14,6,16,87,11,1,1,4,11,2,1,1,11,6,1,1,11,1,16,2,11,1,1,1,11,1,1,1,9,1,1,168,}, + {1,235,29,1,6,3,14,1,6,1,16,1,6,2,16,2,6,2,8,1,16,1,6,4,13,1,6,11,8,1,6,2,8,3,16,1,8,1,6,1,8,1,16,5,8,4,16,12,6,3,7,1,16,1,6,1,8,1,16,18,14,1,16,15,7,1,1,123,11,1,16,1,14,1,16,3,14,2,16,1,14,1,16,87,11,1,1,1,11,1,1,5,11,7,1,2,17,1,9,1,16,1,11,1,1,2,17,1,1,167,}, + {1,235,6,3,8,1,14,1,6,1,8,2,16,2,7,1,8,1,7,1,8,1,16,1,8,1,6,1,8,1,6,5,13,2,6,3,13,1,6,1,13,1,8,1,6,1,7,2,6,3,16,2,8,1,6,1,8,1,16,6,8,1,16,13,7,1,6,2,16,1,6,1,8,1,16,34,11,1,1,124,16,1,14,1,16,3,14,2,16,1,14,2,16,57,8,1,16,28,1,2,11,2,1,5,11,1,1,1,11,3,1,1,11,1,1,2,11,1,9,2,11,1,1,169,}, + {1,235,6,1,7,1,6,1,8,1,14,1,6,2,8,3,7,1,16,1,6,1,16,2,8,1,7,1,6,1,8,1,6,2,13,1,6,4,13,2,6,1,8,1,6,1,8,2,7,1,8,6,16,1,8,5,16,42,14,1,16,13,9,1,1,126,9,1,16,1,14,1,16,2,14,2,16,1,14,1,16,86,1,3,11,3,1,4,11,8,1,2,12,1,8,1,16,1,1,2,11,1,1,165,}, + {1,235,6,3,16,2,6,1,8,1,7,2,6,3,16,1,14,1,8,1,6,2,8,3,6,5,13,2,8,4,6,1,8,8,16,1,8,6,6,2,16,50,8,1,16,2,1,127,16,1,14,1,16,2,14,4,16,86,14,1,1,1,11,1,1,2,11,3,1,5,11,1,17,1,12,1,11,3,1,3,11,1,10,1,7,1,11,2,1,165,}, + {1,235,6,1,7,1,16,2,6,1,8,6,6,1,14,1,8,4,6,1,8,2,6,1,7,1,13,1,6,1,13,1,8,3,7,2,8,8,16,1,8,3,16,1,8,1,6,4,28,1,6,1,16,51,11,1,1,128,7,1,14,1,16,2,14,3,16,86,11,1,1,1,11,2,1,3,11,3,1,5,17,1,16,2,11,1,1,1,11,1,1,3,17,1,9,1,11,1,1,165,}, + {1,235,8,3,7,1,6,1,8,1,16,1,6,1,8,1,7,1,8,1,16,1,6,1,8,1,6,1,16,1,8,1,7,2,6,1,8,1,7,1,6,2,7,1,8,15,16,1,8,2,16,1,8,4,16,19,8,1,16,32,7,1,1,129,11,1,14,1,16,2,14,1,16,1,14,1,16,78,14,1,16,3,14,1,16,3,11,1,1,7,11,5,1,4,17,1,9,1,8,1,16,1,11,2,1,2,11,1,17,1,1,1,12,1,1,163,}, + {1,235,8,1,6,1,8,1,6,1,8,1,16,1,8,2,6,1,14,1,16,1,8,1,16,1,8,2,16,3,8,4,7,3,8,15,16,2,8,1,16,2,8,2,16,52,8,1,1,131,8,1,11,1,16,2,14,2,16,78,14,1,16,3,14,1,16,3,1,10,11,2,17,1,11,2,17,1,11,1,1,2,11,1,16,1,8,1,16,1,11,2,1,1,11,1,17,1,1,1,12,1,1,162,}, + {1,235,16,1,6,1,8,1,6,1,14,1,8,1,6,1,8,1,7,1,14,1,16,1,6,2,16,1,6,1,16,1,8,1,16,2,8,15,16,1,8,8,16,2,8,3,16,51,11,1,1,131,17,1,8,1,14,1,16,81,14,1,16,3,14,1,16,3,1,12,11,5,17,1,16,1,11,1,1,2,11,1,16,2,11,1,1,1,11,1,1,1,11,2,1,161,}, + {1,234,11,1,8,2,6,1,8,1,16,1,6,1,8,1,7,1,8,1,16,1,8,1,6,1,8,1,7,1,8,2,6,2,16,2,8,14,16,1,8,2,16,1,8,4,16,1,8,2,16,16,8,1,6,2,8,2,16,31,14,1,9,1,1,133,11,1,16,4,14,2,16,72,14,1,16,3,14,1,16,6,14,1,1,13,11,2,16,2,11,1,1,1,11,1,12,1,16,1,11,1,1,2,17,1,12,1,1,1,11,1,1,1,12,1,1,161,}, + {1,233,9,1,16,1,6,1,8,2,16,1,8,1,6,1,8,1,6,2,8,1,7,1,6,1,16,1,8,1,16,1,28,1,6,3,16,2,8,15,16,2,8,3,16,20,7,1,6,1,8,5,6,2,8,3,16,24,8,1,1,135,6,1,14,1,16,75,14,1,16,5,14,1,16,5,11,1,1,16,11,1,16,1,9,1,16,1,11,1,1,1,11,1,16,2,1,2,11,3,1,1,11,1,1,160,}, + {1,231,11,1,7,1,9,1,8,1,6,1,13,2,16,1,8,3,6,1,8,2,16,1,8,5,28,1,6,3,16,2,8,9,16,4,8,1,16,5,8,1,16,1,8,1,16,21,7,1,6,3,28,1,6,1,28,2,6,2,16,22,11,1,1,136,8,1,14,1,16,48,8,2,16,24,14,4,16,2,14,1,16,2,14,1,16,2,11,1,1,18,11,1,17,1,8,2,17,1,1,1,11,1,16,1,12,1,11,3,1,1,16,1,1,160,}, + {1,230,16,2,8,1,6,5,9,1,8,2,6,1,8,1,14,1,8,4,16,1,8,3,6,3,8,1,16,2,8,7,16,1,8,5,16,6,8,2,16,1,8,1,16,24,8,2,6,4,8,1,16,19,11,1,1,138,16,4,14,1,16,2,14,1,16,40,6,1,8,1,16,31,14,1,16,1,14,2,16,2,1,3,11,1,1,18,11,1,16,1,8,1,16,1,11,4,16,1,11,1,1,1,16,1,1,159,}, + {1,228,11,1,8,1,16,1,8,1,7,1,6,3,8,1,6,1,13,1,6,1,8,3,16,1,8,4,16,1,8,4,6,2,8,1,6,1,16,3,8,2,16,1,8,2,16,1,8,1,16,4,8,1,16,40,8,1,16,6,14,1,16,11,1,139,16,1,14,1,16,2,14,1,16,1,14,3,16,38,8,2,16,28,14,1,16,2,14,5,16,2,1,22,11,1,1,1,11,1,17,1,16,3,11,3,1,1,16,1,1,159,}, + {1,227,6,1,16,1,8,1,7,1,13,2,6,1,13,1,6,1,13,1,8,2,6,1,8,1,7,1,16,2,8,2,6,1,16,2,8,3,16,1,8,1,6,2,8,1,6,1,8,1,16,2,8,6,16,5,8,1,16,48,14,1,16,7,14,1,17,1,1,140,9,1,16,4,14,1,16,2,14,1,16,37,8,1,16,29,14,2,16,1,14,1,16,1,14,1,16,1,14,1,16,1,11,1,1,13,11,2,1,12,11,1,17,2,12,2,11,1,1,1,9,1,1,158,}, + {1,226,8,1,16,1,8,1,6,1,8,1,13,2,6,1,13,2,6,1,16,1,8,1,6,1,8,2,16,2,6,1,8,1,16,3,8,5,16,1,6,2,8,2,6,1,16,5,8,1,16,3,8,1,16,1,8,1,16,56,14,1,6,1,1,141,9,1,14,1,16,5,14,1,16,37,8,2,16,30,14,7,16,1,11,1,1,13,11,4,16,2,11,1,1,8,11,1,1,1,11,3,1,1,17,1,1,158,}, + {1,225,7,1,16,1,7,1,16,1,8,3,6,1,13,2,6,2,16,1,8,1,6,2,8,1,14,1,16,1,6,2,16,2,8,7,16,1,8,1,6,1,8,2,6,1,7,1,16,3,8,1,16,1,8,2,16,59,8,1,1,143,8,1,14,1,16,4,14,2,16,36,8,1,16,31,14,4,16,1,14,2,16,1,11,1,1,17,11,1,16,1,9,1,6,1,7,1,12,1,11,1,1,7,11,2,1,1,11,1,1,158,}, + {1,224,6,1,14,1,6,2,16,1,8,2,13,1,6,1,16,1,13,1,6,2,16,1,8,1,6,2,16,2,8,2,28,1,6,1,8,2,7,1,8,2,16,1,8,3,16,1,8,1,6,1,8,2,7,2,8,1,16,6,8,1,16,56,14,1,9,1,1,144,16,1,14,1,16,2,14,1,16,38,8,1,16,17,8,1,16,6,11,3,16,5,14,1,16,1,14,4,16,1,11,1,1,19,11,2,12,1,9,1,8,1,6,2,7,1,8,2,16,2,11,3,1,1,17,1,1,157,}, + {1,223,11,1,16,1,8,1,6,1,16,1,6,2,7,1,8,2,16,1,8,2,6,1,16,1,8,1,6,1,8,6,6,2,7,1,16,1,8,3,16,1,8,4,16,2,8,1,7,2,8,1,7,1,8,1,16,4,8,2,16,54,14,1,9,1,1,145,11,1,8,1,14,1,16,1,14,1,16,1,14,1,16,4,14,1,16,48,8,2,16,4,11,1,1,1,11,1,1,3,14,1,16,3,14,6,16,1,11,1,1,26,11,2,17,2,16,1,17,1,11,2,1,1,12,1,1,157,}, + {1,222,17,1,7,1,8,1,7,1,8,1,16,1,6,1,8,1,6,1,16,1,8,1,6,2,8,2,14,1,6,1,8,1,6,1,16,1,8,4,16,1,14,1,16,1,8,3,16,1,8,6,16,1,8,3,6,2,8,1,6,1,7,1,8,1,16,19,8,1,16,35,8,1,16,1,8,1,17,1,1,146,11,1,16,1,14,1,16,5,14,1,16,1,14,1,16,53,11,1,1,3,11,1,1,3,14,1,16,3,14,4,16,2,17,1,7,1,9,2,16,1,11,1,1,29,11,1,1,158,}, + {1,222,16,1,8,1,6,1,8,1,16,1,7,1,8,1,6,1,8,2,7,2,8,1,7,1,16,2,6,1,8,2,6,1,8,2,6,1,16,2,8,2,16,2,8,6,16,1,8,2,16,1,14,2,16,3,6,4,8,1,16,56,1,148,11,1,16,1,14,1,16,3,14,2,16,4,14,1,16,49,14,1,1,4,11,2,1,2,11,1,16,4,14,1,16,1,14,1,16,3,1,8,17,1,9,1,16,1,11,2,1,3,9,1,16,2,17,1,11,4,1,7,11,1,17,1,1,160,}, + {1,221,9,1,16,1,7,1,8,2,16,1,6,3,8,1,6,1,7,1,8,3,6,1,8,2,7,1,8,5,16,2,8,2,6,1,8,1,16,1,8,3,16,3,8,1,16,1,14,1,16,1,8,2,16,5,8,2,16,35,8,2,16,18,1,150,11,1,16,1,14,1,16,1,14,1,16,1,14,4,16,51,1,6,11,2,1,2,11,1,16,7,11,1,1,194,}, + {1,221,6,1,16,2,6,1,16,2,6,2,13,2,8,3,6,1,8,2,6,1,8,7,16,2,8,2,6,1,16,1,6,1,8,1,16,1,8,4,14,2,16,1,8,1,6,3,8,1,16,36,8,1,7,1,6,4,8,3,16,13,8,1,1,152,11,1,9,1,11,1,16,1,14,1,16,2,14,1,16,1,14,1,16,49,1,4,11,1,1,4,11,2,1,1,16,4,14,1,7,1,11,1,1,195,}, + {1,220,9,2,8,2,6,1,16,1,13,1,6,1,8,2,13,1,6,1,8,1,6,1,8,1,6,1,8,5,6,1,8,2,16,1,8,1,16,1,8,2,16,1,8,1,6,1,8,2,16,1,8,1,16,2,14,1,8,5,16,39,8,1,6,1,8,3,16,15,9,1,17,1,1,153,17,1,16,1,11,1,14,1,16,1,14,1,16,4,14,2,16,45,11,1,1,2,11,1,1,2,11,2,1,2,11,2,1,1,11,1,16,2,7,1,16,1,1,197,}, + {1,220,16,1,8,1,6,1,8,2,7,1,6,1,8,2,13,2,8,1,13,2,8,1,6,1,8,1,16,1,8,1,7,1,16,2,8,3,16,1,8,2,16,1,8,1,16,4,8,2,16,1,14,1,16,1,8,3,16,60,14,1,1,157,6,1,11,2,14,1,16,2,14,2,16,47,11,1,1,3,11,1,1,2,11,2,1,2,11,2,1,1,8,1,17,1,1,199,}, + {1,219,14,1,8,3,16,1,8,1,6,2,8,3,13,1,16,1,6,2,8,2,6,2,8,3,6,1,8,5,6,2,16,1,8,2,14,1,16,1,8,2,16,2,8,2,16,2,8,3,16,56,8,1,16,1,1,158,11,1,16,1,11,1,14,1,16,2,14,1,16,47,1,2,11,1,1,3,11,1,1,2,11,2,1,1,11,2,1,1,11,1,1,199,}, + {1,219,16,2,8,3,7,1,8,2,7,1,8,2,6,1,8,1,6,1,8,8,6,1,8,4,16,1,7,1,28,1,6,1,16,1,14,1,16,1,6,1,16,6,8,1,16,2,8,1,16,1,8,1,16,54,1,163,16,1,9,1,11,1,14,1,16,1,14,2,16,44,11,1,1,3,11,2,1,4,11,2,1,4,16,1,1,199,}, + {1,219,6,1,8,1,6,1,8,1,13,2,6,1,16,1,7,1,6,1,8,1,7,1,8,1,6,1,8,3,7,1,16,1,8,2,6,1,8,1,16,1,8,3,16,3,6,1,16,1,8,5,16,3,8,1,16,1,8,1,16,2,8,1,16,3,8,1,16,50,8,1,1,165,16,1,9,1,11,1,14,2,16,5,14,1,16,38,1,6,11,2,1,2,11,4,1,1,11,1,1,1,12,1,1,198,}, + {1,218,11,1,9,1,6,1,8,1,6,1,7,1,6,1,16,1,8,1,6,1,8,1,16,1,6,2,8,4,7,1,6,1,8,2,6,1,16,2,8,5,16,1,8,2,6,1,8,1,16,2,8,1,16,3,6,1,16,6,14,1,8,2,16,33,6,1,8,1,16,1,8,1,16,13,7,1,1,167,16,1,7,1,11,2,16,1,14,1,16,8,14,1,16,31,11,1,1,7,11,3,1,3,11,4,17,1,1,198,}, + {1,218,14,1,8,1,16,1,8,1,6,1,8,1,6,1,16,1,6,2,16,1,6,2,8,2,6,1,16,1,8,5,16,1,14,1,16,1,8,3,16,1,8,2,16,1,8,1,6,1,16,2,8,1,16,3,8,3,16,5,8,1,16,1,8,1,16,32,8,2,16,15,14,1,1,166,12,1,1,3,17,1,9,1,16,1,11,1,14,1,16,2,14,2,16,35,11,1,1,2,11,2,1,5,11,1,17,1,11,1,1,1,11,1,1,4,11,1,1,197,}, + {1,218,29,1,16,1,6,1,8,2,6,2,16,1,6,1,8,1,16,1,6,1,8,3,16,2,6,1,8,4,16,3,8,5,16,2,8,1,16,2,8,2,16,3,8,1,16,5,6,4,16,49,14,1,6,1,1,173,16,1,6,1,16,1,14,2,16,2,14,1,16,33,1,5,11,1,1,6,11,3,1,1,11,1,1,1,11,1,12,1,1,197,}, + {1,218,7,1,16,1,13,2,8,5,16,1,6,1,7,1,8,1,7,1,16,1,14,1,8,5,6,2,8,3,16,1,8,5,16,1,8,2,16,7,8,2,16,2,6,2,8,1,16,50,7,1,1,176,17,1,16,1,6,1,16,1,14,2,16,33,1,6,11,1,1,10,11,1,1,2,16,1,1,196,}, + {1,217,9,2,6,1,13,1,6,2,7,1,16,1,6,1,8,4,7,1,8,8,6,1,8,6,16,1,8,1,16,1,8,1,16,1,8,1,16,1,14,1,16,2,8,1,6,1,8,1,16,8,14,1,16,9,14,2,16,36,14,1,8,1,1,180,17,1,16,1,6,1,16,1,11,1,16,1,14,1,16,29,1,8,11,1,1,3,11,2,1,3,11,1,17,1,1,1,10,1,1,196,}, + {1,217,16,1,8,2,13,1,8,2,6,1,8,3,6,1,8,2,6,1,8,15,16,1,8,5,16,2,8,1,16,1,6,2,8,1,16,6,8,1,16,3,6,1,8,1,16,6,8,1,6,1,16,36,9,1,1,184,16,1,9,1,8,2,16,1,14,2,16,26,1,15,11,1,1,2,17,2,11,1,1,196,}, + {1,217,6,1,7,1,8,1,6,2,8,1,7,2,8,2,6,1,8,3,6,2,8,16,16,2,8,1,16,2,8,1,16,5,8,1,16,2,8,1,16,5,8,1,16,10,8,1,6,3,8,3,16,26,8,1,1,190,17,1,16,3,14,1,16,1,14,1,16,17,14,1,16,4,1,6,11,1,1,7,11,2,1,201,}, + {1,217,7,2,6,1,8,1,6,2,7,1,6,2,8,2,6,1,8,3,7,1,8,3,7,2,8,3,7,1,16,4,8,1,16,2,8,3,16,6,8,1,16,1,8,1,16,22,8,1,6,7,8,1,16,22,1,194,8,1,11,1,6,1,16,2,14,1,16,16,14,1,16,2,1,7,11,1,1,209,}, + {1,216,9,1,8,2,7,1,13,1,6,1,7,1,8,1,6,1,8,1,16,1,8,3,6,1,8,2,7,1,8,3,14,1,16,2,7,1,8,1,16,6,8,3,16,4,8,1,16,2,8,1,16,1,8,1,16,28,8,1,6,6,8,4,16,13,11,1,1,198,8,1,16,1,8,1,7,1,16,3,14,1,16,1,14,1,16,11,11,1,1,10,11,2,1,1,11,1,1,5,12,1,1,196,}, + {1,216,14,1,8,1,6,2,13,1,6,1,8,2,6,1,8,2,6,1,8,1,7,1,6,1,8,1,6,1,16,1,8,1,7,1,16,2,8,4,14,1,16,2,6,1,8,1,16,1,8,1,16,1,8,1,16,11,8,1,6,1,16,3,8,1,16,7,8,1,16,22,8,5,16,9,1,205,7,1,16,2,8,1,6,1,8,1,16,4,14,4,16,3,11,3,1,14,11,1,16,1,11,1,1,196,}, + {1,216,6,1,7,1,8,1,13,1,8,1,6,1,8,1,16,1,8,1,16,1,8,3,16,2,6,2,14,1,6,2,14,1,16,1,8,1,16,1,8,2,14,1,16,1,8,1,6,1,16,2,8,2,16,1,8,1,16,9,14,1,16,11,6,1,8,1,16,36,11,1,1,212,16,1,7,1,9,1,16,2,7,1,28,1,6,2,9,1,16,1,17,1,7,2,8,1,10,1,9,1,16,2,17,1,11,2,6,1,16,1,11,1,17,1,9,1,1,199,}, + {1,216,8,1,6,1,13,1,8,5,16,2,8,3,6,1,8,1,16,3,6,1,7,1,14,1,8,1,6,1,8,1,6,1,16,2,6,1,8,2,16,4,8,2,16,3,8,2,6,2,16,2,6,1,8,1,16,10,6,1,16,36,11,1,1,439,}, + {1,215,9,1,16,1,6,1,13,1,8,1,6,2,8,1,16,1,8,2,6,1,8,1,7,1,8,1,6,1,16,1,8,1,6,1,8,1,16,2,6,3,8,2,16,1,8,3,16,7,8,1,16,1,8,2,6,3,8,2,6,1,7,1,16,44,7,1,1,441,}, + {1,215,14,1,7,1,13,1,8,1,13,1,8,1,7,1,8,1,7,1,8,2,6,1,8,2,6,2,8,3,6,1,16,1,8,1,7,1,8,1,6,1,16,1,6,1,8,1,16,1,8,3,16,2,8,3,16,57,1,441,}, + {1,215,9,1,8,1,6,1,8,3,7,1,8,1,6,1,8,1,6,2,8,2,7,1,8,1,7,1,8,1,6,1,8,1,16,1,8,2,6,2,16,1,8,3,16,3,14,1,16,2,8,4,16,43,14,1,16,8,14,1,8,1,1,442,}, + {1,215,8,1,6,1,8,2,6,1,8,2,6,1,8,2,6,1,8,1,6,3,8,3,6,2,16,1,8,1,6,3,16,1,8,1,6,1,16,1,8,1,16,1,14,1,16,1,8,1,16,10,8,1,16,29,14,3,16,15,1,443,}, + {1,214,8,2,6,1,8,13,6,1,8,1,7,1,6,1,8,4,6,2,16,1,8,1,6,2,8,2,6,1,8,1,7,1,16,1,14,1,8,1,16,5,8,1,16,34,8,1,6,3,8,1,16,8,8,1,1,444,}, + {1,214,6,1,8,1,6,1,13,1,8,3,7,2,8,2,6,1,7,1,16,2,7,3,8,3,6,1,8,2,6,1,16,2,8,1,6,4,16,1,6,1,16,2,6,1,8,1,6,2,16,8,8,1,16,24,8,1,6,4,8,2,16,11,17,1,1,444,}, + {1,213,29,1,8,1,6,2,8,8,6,1,7,1,8,1,6,2,8,2,7,1,8,2,6,1,8,2,16,1,14,1,16,1,8,1,6,1,8,2,6,2,16,1,14,1,16,1,8,1,6,2,16,2,6,1,16,35,14,1,16,11,9,1,11,1,1,445,}, + {1,212,6,1,8,1,6,2,13,1,8,5,7,1,8,4,13,1,6,1,8,1,6,1,8,1,7,1,6,4,16,4,7,1,6,1,8,1,16,2,8,1,16,2,8,1,16,3,8,1,16,1,8,1,16,8,6,2,8,1,16,35,11,1,1,447,}, + {1,211,9,1,6,1,13,1,6,1,13,2,8,5,13,1,8,1,13,2,8,1,13,1,8,1,7,1,8,1,6,1,8,1,16,1,8,1,6,2,16,2,6,1,8,1,6,1,16,2,14,1,16,6,8,1,16,12,8,2,16,35,8,1,1,448,}, + {1,209,11,1,6,1,13,1,6,2,13,1,6,1,13,1,8,11,7,1,8,3,16,3,8,1,6,2,8,1,16,1,8,1,6,1,14,1,6,4,16,3,14,1,16,1,14,1,16,4,8,1,16,43,9,1,1,448,}, + {1,209,9,1,7,1,6,1,13,1,6,1,13,3,8,9,7,1,8,3,6,1,16,1,8,2,6,1,14,1,6,6,16,2,6,2,16,1,8,1,16,2,6,1,8,2,6,2,16,1,6,2,16,1,8,1,16,2,6,1,8,1,16,37,1,449,}, + {1,207,16,1,9,1,8,1,6,1,13,1,6,1,13,1,6,1,13,3,8,6,7,1,8,3,6,1,8,1,6,1,8,2,6,3,16,1,6,5,16,1,8,1,16,1,7,1,16,1,6,2,16,1,6,3,28,1,6,1,8,2,16,3,8,1,16,2,8,1,16,8,8,1,16,19,8,1,16,7,11,1,1,449,}, + {1,206,7,1,16,1,7,1,6,2,13,4,6,1,13,1,7,1,8,7,6,1,8,2,6,2,8,1,7,1,8,1,13,1,6,1,8,3,6,4,8,1,16,2,8,2,16,1,8,1,16,1,8,4,16,2,14,1,16,10,6,2,16,17,8,1,6,3,8,1,16,8,6,1,1,450,}, + {1,205,9,2,8,1,6,1,13,1,6,1,13,1,6,4,7,2,8,7,7,1,6,1,8,2,6,2,8,1,6,3,16,1,8,2,6,4,8,3,16,1,8,2,16,3,8,1,16,3,8,1,6,2,16,10,6,2,16,11,6,4,8,3,16,10,9,1,1,451,}, + {1,204,9,1,16,1,6,3,13,1,6,1,13,1,6,3,7,1,6,1,7,1,8,7,7,1,8,2,6,2,8,1,6,2,7,1,6,1,8,2,13,1,6,2,16,1,8,4,16,2,14,2,6,1,16,2,8,1,14,1,16,2,6,1,8,1,16,1,8,1,16,12,8,2,16,13,14,1,16,11,1,451,}, + {1,203,8,2,6,1,8,2,13,4,6,5,7,1,8,8,6,1,8,1,6,2,16,1,8,1,6,3,8,1,16,1,6,1,28,1,6,1,16,9,8,1,6,1,16,5,8,1,16,3,6,1,16,37,11,1,1,451,}, + {1,202,8,1,9,1,7,2,13,3,6,1,13,2,6,4,8,10,13,2,8,1,6,2,16,3,7,1,14,1,16,1,8,1,7,1,16,1,14,1,6,3,16,2,6,1,16,1,6,1,8,1,6,1,16,1,8,1,16,4,8,1,16,39,6,1,1,452,}, + {1,201,16,2,6,2,13,1,6,1,13,1,6,1,13,3,6,2,13,2,8,12,13,1,6,3,8,1,16,2,6,2,16,1,6,1,8,1,16,1,6,2,8,1,16,2,7,1,8,1,6,1,8,1,16,3,8,1,16,1,8,1,14,1,16,40,9,1,1,452,}, + {1,200,16,1,9,1,8,1,6,1,13,3,6,1,13,4,6,2,13,3,8,8,6,1,8,2,6,1,8,1,6,2,8,1,6,1,16,1,8,3,7,1,16,2,6,1,8,3,16,2,8,2,16,5,6,2,16,5,14,1,8,2,16,20,14,1,16,4,8,2,16,5,6,1,1,453,}, + {1,200,11,1,8,1,6,1,13,1,8,1,13,1,8,1,6,1,13,1,6,1,8,1,6,3,13,1,6,1,13,1,8,10,6,1,8,1,6,4,8,1,6,4,16,3,8,3,16,1,8,1,16,3,6,1,16,1,8,1,16,3,7,1,6,1,8,1,16,3,6,1,8,2,16,17,14,1,16,2,8,1,16,1,6,4,16,5,9,1,11,1,1,453,}, + {1,199,16,2,7,1,6,1,13,1,6,1,8,2,13,2,6,1,8,1,6,3,13,2,8,11,7,1,6,1,13,1,6,8,13,1,6,1,8,1,16,1,8,1,16,5,8,1,16,2,7,1,16,4,8,1,6,1,8,3,6,2,16,20,6,1,16,1,8,1,28,1,8,1,16,7,9,1,1,454,}, + {1,199,14,1,16,1,6,2,13,1,6,1,8,1,13,1,6,3,8,1,6,2,13,2,8,1,13,1,8,2,7,2,8,2,7,1,8,2,7,2,6,1,13,1,6,8,13,1,8,1,7,1,8,1,16,2,8,1,16,4,14,1,6,2,16,7,8,1,16,21,8,1,6,1,8,1,7,1,8,1,14,2,16,7,11,1,1,454,}, + {1,199,6,1,8,1,6,1,13,3,7,1,6,1,13,2,6,1,8,1,6,3,13,1,8,8,7,1,8,1,7,1,6,1,13,1,6,1,13,1,6,8,8,4,16,6,14,1,8,1,28,1,8,1,16,29,8,2,16,6,14,1,16,5,11,1,1,454,}, + {1,199,7,2,13,3,7,2,6,1,13,2,6,1,13,1,6,1,13,1,6,1,13,1,8,3,7,1,8,5,7,3,8,1,6,1,13,1,6,8,13,1,8,1,16,1,8,1,6,1,8,1,16,4,8,1,6,2,16,6,14,1,16,28,14,1,16,9,1,454,}, + {1,198,8,2,6,1,13,3,7,2,13,2,6,2,13,3,6,2,8,3,7,1,8,3,7,1,8,1,7,1,8,2,13,1,6,11,8,2,16,2,8,3,16,1,8,1,6,2,16,5,14,1,16,1,8,1,16,26,14,1,16,1,8,1,16,8,17,1,1,454,}, + {1,198,8,1,7,1,8,1,13,3,7,2,13,7,6,1,13,1,8,12,13,1,6,9,8,3,16,6,8,1,6,1,8,1,16,4,8,1,14,1,16,1,6,1,8,1,16,1,8,1,28,1,16,24,8,1,16,8,8,1,1,455,}, + {1,199,8,2,13,2,8,2,7,1,13,2,6,1,13,1,6,3,13,1,8,12,13,1,6,11,8,1,16,15,8,2,16,26,8,1,6,2,8,2,16,6,14,1,8,1,1,455,}, + {1,199,6,1,9,1,13,1,6,1,8,2,7,1,8,1,13,1,6,1,13,1,6,2,13,1,6,2,13,1,8,10,6,11,8,1,16,1,8,1,16,14,7,1,8,1,16,1,14,1,16,24,8,1,6,1,8,1,16,8,7,1,16,1,1,455,}, + {1,199,16,1,9,1,13,1,8,1,6,1,8,2,13,3,6,1,13,2,6,1,13,3,8,6,7,1,8,4,6,8,13,1,6,1,8,2,16,15,8,1,6,1,8,1,16,5,6,2,16,10,14,1,16,3,8,1,7,1,16,1,8,1,6,1,16,9,14,1,16,1,1,456,}, + {1,200,8,5,13,11,8,1,13,1,8,5,7,1,8,1,6,1,13,1,6,9,8,2,16,17,8,1,16,1,8,1,6,2,7,1,16,1,6,1,16,11,8,1,16,5,6,1,8,1,16,11,6,1,1,456,}, + {1,199,17,1,16,1,6,1,8,1,6,2,8,1,13,2,6,1,13,1,6,1,13,2,6,1,13,3,8,6,16,1,8,1,7,1,13,1,6,1,13,1,6,6,8,4,16,21,6,1,8,1,16,16,7,1,8,1,16,13,14,1,8,1,1,455,}, + {1,200,11,1,28,1,8,1,6,1,8,1,13,3,6,1,13,1,6,1,13,2,6,1,13,2,8,2,7,1,8,5,16,1,8,2,6,8,8,2,16,32,14,1,8,2,16,3,8,1,16,16,8,1,16,2,1,455,}, + {1,201,6,2,8,2,13,2,6,1,13,2,6,1,13,1,8,1,13,2,8,5,7,1,8,2,6,1,7,1,16,1,8,1,6,8,8,3,16,31,8,2,16,1,8,2,16,17,14,1,16,3,8,1,1,454,}, + {1,199,17,1,1,2,6,2,13,1,8,1,13,1,6,1,13,2,6,1,13,1,8,2,6,1,13,2,8,3,6,2,7,1,8,1,6,1,7,1,8,1,16,1,6,7,8,1,16,32,6,2,16,1,8,1,16,9,14,1,16,13,17,1,1,454,}, + {1,199,7,1,1,2,14,1,28,1,13,4,6,4,8,2,6,1,13,1,8,2,6,1,8,3,6,1,8,2,6,2,8,1,13,1,6,6,8,2,16,45,8,2,16,11,7,1,1,454,}, + {1,199,9,1,1,1,11,1,1,1,9,1,30,1,13,4,6,1,13,1,6,1,8,2,6,1,13,1,8,8,7,1,8,1,6,1,8,1,6,5,13,2,8,1,16,41,14,1,16,2,6,3,16,13,11,1,1,453,}, + {1,199,16,1,1,1,11,1,1,2,6,2,13,1,6,1,13,2,6,2,13,1,8,3,7,1,8,4,7,1,8,5,13,1,6,1,13,1,6,3,8,1,13,1,8,1,16,38,14,1,16,2,6,3,8,1,16,3,8,1,16,12,1,453,}, + {1,199,16,1,1,1,11,2,1,2,28,1,6,1,13,3,6,3,8,2,6,1,13,1,8,10,13,3,6,3,13,1,8,2,16,32,8,2,16,2,14,1,16,2,7,1,6,2,16,1,14,1,16,1,8,1,6,1,8,1,16,12,7,1,1,453,}, + {1,199,16,1,11,3,1,2,11,1,28,1,6,1,13,1,6,1,13,3,8,13,7,1,6,7,8,2,16,30,8,2,16,7,8,1,14,2,8,1,6,3,8,2,16,13,8,1,1,452,}, + {1,199,16,1,1,1,11,2,1,2,11,1,16,1,6,3,13,1,6,1,13,1,6,1,8,3,13,1,8,5,16,1,8,3,7,1,6,6,8,2,16,28,8,2,16,1,14,2,16,2,8,2,16,1,14,1,16,1,8,1,28,2,6,3,16,1,8,1,16,13,9,1,1,452,}, + {1,199,10,1,1,2,11,1,1,1,11,1,17,1,11,1,7,2,6,3,13,1,6,1,8,9,16,3,8,2,7,1,6,3,7,1,8,4,16,29,14,1,16,1,8,1,6,2,16,2,14,1,8,1,6,1,28,1,29,1,6,4,8,3,16,13,11,1,1,451,}, + {1,199,7,1,1,1,11,1,1,2,11,3,1,1,7,1,6,2,13,2,6,2,8,3,13,1,8,6,16,4,8,7,16,29,8,1,16,1,8,1,16,5,6,1,28,1,6,1,30,1,6,1,30,2,6,1,13,1,8,2,16,13,14,1,16,1,1,451,}, + {1,201,11,1,1,3,12,1,1,2,11,1,8,1,6,2,13,1,8,8,7,1,8,6,16,4,14,1,16,30,6,3,16,4,8,1,6,3,30,4,29,1,6,2,13,1,8,1,16,10,14,1,16,4,6,1,1,451,}, + {1,201,11,1,1,2,11,2,1,3,8,2,6,1,13,2,7,1,8,9,6,6,8,2,6,3,8,1,6,2,16,24,8,1,6,2,8,1,6,1,8,1,6,1,8,1,6,6,30,1,6,4,13,1,8,1,16,1,8,1,16,7,14,1,16,4,9,1,7,1,1,451,}, + {1,199,11,1,1,1,11,1,1,2,11,1,1,5,8,1,6,1,13,3,7,1,8,9,6,13,16,25,8,6,6,1,7,1,6,9,8,1,6,1,8,3,16,14,9,1,1,450,}, + {1,199,10,1,1,1,11,1,1,1,11,1,12,1,1,5,16,1,8,1,6,2,8,1,13,1,8,11,6,7,28,1,6,1,16,26,8,9,6,7,13,2,6,1,8,1,6,1,8,1,14,1,16,16,1,449,}, + {1,203,11,1,1,7,6,1,13,1,6,2,8,11,16,2,8,3,6,3,16,3,8,1,16,24,8,2,16,1,8,7,7,1,6,4,13,2,8,1,7,1,6,1,16,1,14,1,16,1,8,1,16,15,9,1,1,448,}, + {1,200,11,1,1,1,16,1,1,8,6,1,8,1,13,1,6,1,13,1,7,1,8,12,16,3,8,1,16,2,8,1,16,29,8,8,6,1,8,5,6,2,16,2,8,1,16,16,8,1,6,1,1,448,}, + {1,200,12,1,11,1,12,1,1,8,14,1,6,2,13,1,8,11,16,1,8,1,16,3,8,2,16,1,8,2,16,32,8,7,6,2,13,1,6,2,14,1,16,1,6,1,16,18,9,1,8,1,1,447,}, + {1,212,7,1,8,1,6,1,13,1,8,19,16,2,8,1,16,30,8,2,16,1,8,3,6,1,16,1,8,1,7,1,6,1,14,1,16,1,6,1,16,3,8,1,16,16,6,1,1,447,}, + {1,212,9,1,7,1,13,1,8,12,16,2,8,2,16,1,8,1,16,1,8,1,16,1,8,1,16,31,8,3,16,1,8,3,6,1,7,1,28,1,14,1,16,1,6,1,8,1,16,21,11,1,1,446,}, + {1,212,17,1,6,1,8,1,13,1,8,16,16,1,8,3,16,2,8,1,16,29,8,1,16,1,8,3,16,1,8,1,7,1,6,1,14,1,8,1,6,1,8,1,16,2,8,2,16,18,9,1,1,446,}, + {1,213,28,1,7,1,13,1,8,13,16,1,8,7,16,31,8,1,16,2,8,2,16,1,6,2,14,1,6,2,8,1,14,1,16,1,6,1,8,3,16,18,11,1,1,445,}, + {1,213,7,1,6,1,13,2,8,19,16,34,8,1,16,2,6,1,8,1,14,1,6,2,8,1,16,2,6,1,8,3,16,1,8,1,16,17,6,1,1,445,}, + {1,213,16,1,8,1,6,1,13,1,8,13,16,1,8,1,16,2,8,1,16,4,8,1,16,31,6,1,8,1,14,1,16,1,6,2,16,1,14,1,6,2,8,1,7,1,8,3,16,1,8,1,16,16,6,1,1,445,}, + {1,213,8,2,6,1,13,1,8,15,16,2,8,3,16,2,8,2,16,7,28,1,6,1,16,19,8,2,16,1,14,1,16,1,6,1,8,1,16,2,6,1,8,8,16,17,14,1,7,1,1,444,}, + {1,213,16,1,6,1,13,2,8,16,16,2,8,5,16,9,8,2,16,1,8,1,16,19,8,2,16,2,8,13,16,15,8,1,14,1,6,1,1,443,}, + {1,214,6,1,7,1,8,17,16,2,8,3,16,1,8,1,16,2,8,1,16,9,8,2,16,16,6,3,16,1,8,1,6,1,16,1,8,11,16,17,8,1,16,1,11,1,1,442,}, + {1,214,6,2,8,23,16,1,8,1,16,2,8,2,16,7,8,4,16,12,8,4,16,1,6,1,8,1,16,1,8,9,6,1,8,3,16,18,6,1,1,442,}, + {1,214,28,1,8,2,13,1,8,22,16,1,8,7,16,5,8,2,16,1,8,2,6,1,8,1,16,7,6,1,7,1,16,1,8,2,6,1,16,1,8,2,16,1,8,6,7,2,8,4,16,2,8,1,16,14,8,1,16,2,1,441,}, + {1,214,28,1,6,1,8,32,16,2,8,2,16,3,6,1,8,1,16,2,8,1,6,6,8,1,16,1,8,1,6,2,8,1,16,3,8,11,6,1,8,1,16,2,8,1,16,17,9,1,1,441,}, + {1,214,6,2,13,1,8,7,7,1,8,8,16,1,8,20,16,3,8,1,6,1,8,7,6,2,8,1,16,8,8,9,6,1,16,2,6,1,8,1,16,16,8,1,16,1,14,1,1,440,}, + {1,214,14,1,8,1,6,1,13,1,8,37,16,8,8,1,16,14,8,4,6,1,8,2,6,1,16,2,6,1,8,1,16,2,8,1,16,1,8,1,16,10,8,1,16,4,1,440,}, + {1,214,14,1,8,1,6,1,13,1,8,9,13,2,8,3,13,1,7,1,8,7,6,2,13,1,8,1,6,2,8,1,7,1,8,7,16,2,8,2,16,19,8,4,6,2,14,1,16,1,6,1,8,1,16,2,8,1,16,15,8,1,16,2,14,1,1,439,}, + {1,214,14,1,8,1,6,1,8,7,6,3,13,2,6,3,8,1,16,2,8,1,6,1,8,1,6,1,8,1,6,1,13,1,8,1,6,2,13,3,6,1,8,8,16,3,8,2,16,17,8,1,16,1,8,1,7,1,6,1,14,1,8,1,6,1,8,1,16,2,8,4,16,17,11,1,1,438,}, + {1,214,16,1,8,1,13,1,8,7,6,3,13,1,6,5,8,2,6,1,16,1,6,1,8,1,6,11,13,2,8,2,7,1,8,5,16,20,8,2,16,1,14,1,8,1,6,1,8,1,16,1,8,1,7,1,8,2,16,1,8,1,16,1,8,1,16,6,8,1,16,6,8,1,16,3,1,437,}, + {1,214,14,1,6,1,13,1,8,8,13,1,6,9,16,2,8,1,6,3,13,1,6,11,8,1,7,1,8,1,6,1,8,5,16,21,8,1,6,1,16,2,8,1,6,2,8,5,16,17,8,1,16,1,11,1,1,435,}, + {1,214,7,1,8,1,13,1,8,7,13,1,6,9,8,1,6,1,13,1,16,2,6,13,8,2,6,1,8,2,6,1,8,1,16,1,8,2,16,12,8,1,16,4,14,1,16,1,6,3,16,2,7,1,6,1,8,8,16,1,8,1,16,2,8,1,16,10,9,1,8,1,16,3,11,1,1,433,}, + {1,214,28,1,13,2,8,5,6,1,7,2,6,13,8,1,16,1,14,1,16,1,8,1,6,1,30,2,6,6,13,1,6,3,8,7,16,2,8,1,16,11,14,1,16,2,8,1,6,1,16,3,8,11,16,1,8,1,16,14,8,3,16,1,14,1,8,1,1,432,}, + {1,214,28,1,13,2,8,5,7,1,8,1,6,17,8,1,14,3,16,1,13,1,6,7,8,4,16,1,8,2,16,3,8,1,16,8,14,2,16,2,8,1,7,1,6,1,16,1,14,1,16,1,6,2,8,4,13,1,8,7,16,2,8,1,16,12,8,4,16,1,11,1,8,1,11,1,1,430,}, + {1,214,29,1,13,2,8,1,13,2,8,2,7,2,6,3,13,1,6,17,8,1,16,2,14,3,16,1,14,2,16,1,14,1,16,1,14,1,16,2,6,1,8,1,7,1,8,2,16,3,8,1,16,1,8,1,6,5,7,1,8,1,16,2,8,2,6,1,8,5,6,1,8,7,16,2,8,1,16,15,8,3,16,1,14,1,16,2,1,429,}, + {1,214,6,1,13,5,8,2,7,2,8,1,6,3,13,1,6,10,13,1,6,2,7,1,8,1,13,1,6,9,8,1,16,1,6,1,8,1,6,2,28,1,6,1,16,2,8,1,16,1,8,1,16,3,8,4,16,2,8,1,16,1,8,1,6,1,16,4,8,2,16,1,8,1,7,1,8,2,7,2,8,3,16,1,6,1,8,1,16,1,8,1,16,12,8,5,16,5,1,427,}, + {1,214,6,2,13,2,8,5,7,1,8,1,6,3,13,2,6,1,13,1,6,18,13,1,6,7,8,5,16,3,8,3,16,4,8,1,16,1,8,2,16,5,8,2,16,1,8,4,7,1,8,2,7,1,6,2,16,1,8,2,16,1,8,2,16,13,8,3,9,1,16,1,14,1,16,3,11,1,1,426,}, + {1,214,6,2,13,2,8,5,6,1,13,1,6,1,8,1,6,1,13,1,6,1,13,2,6,15,13,1,6,1,13,2,6,1,13,1,6,3,8,4,16,1,8,8,16,15,8,2,16,1,8,6,6,1,16,1,8,1,6,1,16,1,8,4,16,13,8,2,9,2,16,6,1,425,}, + {1,214,6,1,13,3,8,2,13,1,8,2,6,2,13,1,8,1,6,2,13,1,6,20,13,1,8,7,16,1,8,4,16,1,8,2,16,3,8,2,16,15,8,6,6,1,16,2,6,1,16,2,6,1,16,1,8,3,16,13,8,1,9,1,8,1,16,7,1,424,}, + {1,213,14,1,7,1,6,1,13,1,6,1,8,2,13,1,8,3,13,4,6,1,8,1,6,8,13,1,6,3,13,2,6,7,8,1,6,1,8,5,6,1,8,3,16,1,8,2,16,2,8,2,16,2,8,1,16,16,8,2,6,2,14,1,16,1,6,1,8,1,16,1,6,1,8,8,16,10,8,2,9,1,16,4,8,1,16,2,11,1,17,1,1,422,}, + {1,213,7,1,6,1,13,3,8,2,13,1,8,3,13,2,8,1,6,1,13,1,6,2,13,1,6,11,13,1,6,2,13,1,6,1,8,2,7,1,6,2,8,9,16,1,8,1,16,2,8,2,16,20,8,1,6,1,8,1,14,1,16,1,6,1,8,1,16,1,7,1,6,1,8,5,16,1,8,2,16,11,8,2,16,1,8,1,16,1,14,1,16,2,8,1,14,1,8,1,17,1,1,421,}, + {1,213,8,1,6,2,13,2,8,6,6,1,8,1,13,1,6,2,13,1,6,18,8,1,7,2,8,17,16,2,8,1,16,15,8,1,16,1,8,1,16,1,14,1,8,1,6,1,8,1,16,1,6,2,8,2,7,2,8,4,16,2,8,2,16,13,14,1,16,4,14,1,8,1,11,1,1,420,}, + {1,213,8,1,6,2,13,2,8,5,13,1,8,2,6,1,8,2,6,12,13,1,6,3,13,1,6,1,13,3,7,1,8,16,16,19,8,2,16,1,14,1,6,2,16,2,6,1,7,2,8,1,7,1,8,3,6,1,16,2,8,2,16,15,14,1,16,3,8,1,16,2,8,1,1,420,}, + {1,213,9,1,6,2,13,2,8,5,13,1,6,1,13,1,6,1,13,1,6,17,13,3,6,1,13,1,8,13,16,1,8,2,16,11,8,1,16,1,8,1,16,9,6,1,8,1,16,2,6,1,8,1,7,1,8,1,6,2,8,2,6,1,16,2,8,2,16,11,8,1,16,9,8,1,16,3,1,419,}, + {1,213,9,1,13,1,6,1,13,2,8,5,13,1,8,1,13,1,8,1,6,3,13,2,6,14,13,1,6,2,8,14,16,2,8,1,16,11,8,1,16,10,8,2,16,2,8,1,16,1,6,2,7,1,6,1,7,1,8,1,6,1,8,1,16,1,6,2,16,2,8,1,16,2,8,1,16,6,8,1,16,1,8,1,16,3,14,1,16,6,14,1,16,1,1,418,}, + {1,213,9,1,6,2,13,2,8,5,13,1,6,3,8,2,13,1,6,9,13,1,6,6,13,1,6,2,13,1,8,1,6,2,8,11,16,1,8,1,16,2,8,2,16,3,8,4,16,1,8,1,16,7,8,1,6,1,8,1,16,2,8,4,7,1,6,1,8,3,6,1,14,1,8,1,6,1,8,1,16,2,8,1,16,2,8,1,16,1,8,1,16,6,8,3,16,1,14,1,16,8,1,418,}, + {1,213,16,1,6,1,13,3,8,5,13,1,8,1,6,5,8,1,16,2,8,1,6,20,8,9,16,3,8,5,16,1,8,1,16,5,14,1,16,5,8,1,6,1,8,1,16,2,6,1,8,1,16,1,8,4,6,2,8,1,6,1,16,2,6,1,8,1,16,1,8,6,16,1,8,1,16,7,8,2,16,9,14,1,6,1,1,417,}, + {1,213,16,1,6,1,13,3,8,5,6,1,13,1,8,2,16,1,8,1,6,5,8,1,16,3,13,1,6,9,13,1,6,5,8,3,6,1,8,6,16,2,8,2,16,2,8,1,16,1,8,1,16,3,6,3,7,1,8,3,7,1,16,3,6,1,8,2,16,1,8,5,7,1,8,1,6,2,16,1,7,1,8,4,16,1,8,7,16,7,8,1,16,10,14,1,16,1,1,416,}, + {1,213,16,1,6,1,13,3,7,1,8,3,7,2,8,2,6,3,8,3,16,1,8,1,6,4,13,1,16,1,6,12,13,1,6,1,8,3,7,1,8,8,16,1,8,4,16,1,8,3,16,1,6,2,8,2,16,4,8,1,6,1,8,2,16,1,8,4,16,1,8,2,6,1,8,1,6,1,16,2,6,1,8,3,7,1,8,7,16,21,11,1,1,415,}, + {1,213,16,1,6,1,13,4,8,3,7,2,6,9,8,1,16,4,6,2,16,1,14,1,6,8,13,1,6,3,8,1,13,1,8,3,7,1,8,11,16,1,8,1,16,1,8,1,16,1,8,1,6,1,16,1,8,5,16,4,8,1,16,1,8,2,16,1,8,4,7,1,6,1,16,1,6,2,8,1,6,1,8,5,16,1,8,4,16,20,14,1,16,1,1,414,}, + {1,213,16,1,6,1,13,1,6,1,13,2,8,3,7,1,6,1,8,2,6,12,16,1,8,1,6,2,8,1,6,9,13,2,8,6,6,1,8,11,16,2,8,2,16,1,8,3,16,1,8,1,16,2,8,2,16,1,8,1,16,2,8,6,7,1,6,1,16,1,6,2,8,1,6,1,8,1,6,1,8,8,16,22,11,1,16,1,1,413,}, + {1,213,16,1,6,1,13,1,6,1,13,1,8,5,7,2,6,14,13,1,16,1,8,1,6,13,8,1,7,1,8,1,6,1,8,1,7,1,8,1,6,2,8,8,16,1,8,1,16,1,8,1,16,2,8,1,16,2,8,1,16,1,8,1,16,1,8,2,16,1,8,1,16,4,8,4,6,1,16,1,8,3,6,2,7,1,8,6,16,26,1,413,}, + {1,213,16,1,6,3,13,1,8,5,7,1,6,17,16,1,13,1,6,3,16,1,8,3,7,1,6,9,7,1,8,12,16,3,8,2,16,5,8,1,16,3,8,1,16,2,8,3,16,1,8,3,6,2,8,2,6,1,8,1,6,1,8,1,6,2,8,3,16,3,8,2,16,6,8,1,16,14,14,1,17,1,1,412,}, + {1,213,16,1,6,3,13,2,8,4,7,2,13,1,7,1,6,4,13,1,6,10,16,1,8,1,6,1,13,1,8,1,16,7,8,2,6,2,7,3,6,1,7,1,8,11,16,2,8,1,16,2,8,3,16,2,8,2,16,2,8,2,16,2,8,1,16,1,8,3,6,3,7,1,8,1,6,4,7,1,6,1,7,1,16,2,8,1,16,26,1,412,}, + {1,213,16,1,6,2,13,4,8,4,6,8,13,1,6,10,8,1,16,1,8,1,6,5,7,2,8,2,16,2,8,2,6,2,8,11,16,1,8,1,16,1,8,1,16,2,8,1,16,3,8,1,16,3,8,1,16,5,8,1,16,3,8,1,6,1,8,3,6,3,7,1,6,2,8,1,16,2,8,2,16,25,14,1,9,1,1,411,}, + {1,213,16,1,13,1,6,1,13,3,8,5,7,1,6,9,13,1,6,11,8,2,16,4,8,2,6,4,8,4,7,1,8,10,16,1,8,2,16,1,8,1,16,9,8,2,16,4,8,1,16,1,8,2,16,1,8,3,6,1,8,1,6,3,16,2,7,1,6,1,8,1,16,17,8,1,16,8,14,1,16,1,11,1,1,410,}, + {1,213,16,1,13,1,6,1,13,2,8,3,13,1,7,1,8,1,7,1,6,1,13,1,6,27,8,5,6,2,13,1,6,2,8,1,7,1,8,6,16,1,8,2,16,1,8,1,16,2,8,1,16,3,8,1,16,1,8,1,16,4,8,1,16,2,8,1,16,1,8,4,7,1,8,2,6,1,8,1,6,1,8,1,14,1,6,2,8,1,16,1,8,4,16,23,14,1,9,1,1,410,}, + {1,213,16,1,13,1,6,2,13,1,8,4,7,1,8,1,6,1,7,1,6,1,13,1,6,1,13,1,6,32,8,2,6,1,8,11,16,1,6,1,16,14,8,1,16,2,8,8,6,1,8,1,14,1,6,3,8,2,16,1,8,2,16,1,8,2,16,10,7,1,16,11,11,1,16,1,1,409,}, + {1,213,16,1,13,1,6,2,13,1,8,5,7,2,6,37,13,1,6,1,13,1,6,2,7,1,8,7,16,1,8,1,16,2,8,2,16,9,8,2,16,3,8,1,16,1,8,5,6,2,14,1,7,1,6,1,7,1,8,1,6,1,8,5,16,11,14,1,16,12,14,1,9,1,1,409,}, + {1,213,9,1,6,3,13,1,8,5,7,1,8,1,6,40,13,1,6,1,8,2,6,1,8,5,16,2,8,2,16,4,8,1,16,4,8,1,16,5,6,1,16,4,8,3,6,1,14,1,8,1,6,1,8,1,16,1,6,1,8,1,6,1,8,2,7,1,16,11,8,1,16,11,14,1,16,1,14,1,9,1,1,409,}, + {1,213,8,1,13,2,6,1,13,1,8,1,13,1,8,3,7,1,8,1,13,1,6,43,8,2,6,1,16,2,8,1,16,1,8,2,16,1,8,2,16,2,8,1,16,2,8,1,16,1,8,1,16,4,6,2,16,2,8,2,16,1,8,2,14,1,16,1,6,1,8,2,6,2,8,1,6,1,8,2,16,1,14,1,16,19,8,1,16,4,14,1,17,2,1,408,}, + {1,213,8,2,13,1,6,1,13,3,8,3,7,1,13,2,6,39,13,1,6,3,8,1,6,3,16,2,8,4,16,1,8,1,16,2,8,1,16,8,6,2,8,1,16,4,8,2,14,1,16,1,7,1,8,2,6,2,8,1,6,2,7,1,16,1,14,1,8,1,6,1,8,1,16,16,8,1,16,2,14,1,16,2,14,1,1,1,11,2,1,407,}, + {1,213,14,1,13,1,8,1,6,3,7,1,8,4,13,1,6,42,8,1,6,1,7,1,8,1,16,1,6,2,16,8,8,1,7,1,16,7,8,3,16,3,8,1,16,1,8,1,16,2,7,1,8,1,6,1,8,2,6,3,8,1,16,1,14,1,8,1,7,1,6,1,16,11,14,1,16,11,11,2,1,1,12,1,11,1,1,406,}, + {1,214,6,1,8,1,6,2,13,1,8,5,6,37,13,1,6,2,13,1,6,1,8,2,6,3,16,2,6,2,16,15,8,3,16,3,8,1,16,4,8,1,7,1,6,2,16,1,7,1,6,1,7,1,6,1,16,1,14,1,16,13,14,1,16,1,14,1,16,7,14,1,16,2,14,1,16,1,11,2,1,1,17,1,12,1,1,405,}, + {1,214,6,1,13,2,6,1,8,2,16,1,8,2,16,3,8,2,6,40,8,2,6,2,16,3,6,2,8,1,16,9,8,1,7,1,16,1,8,2,16,6,8,1,16,1,8,2,6,2,16,1,8,1,7,1,6,2,16,2,8,1,7,1,8,2,16,19,14,2,16,2,11,2,17,1,11,2,1,407,}, + {1,214,29,1,6,2,13,1,8,7,16,3,14,1,16,1,8,1,6,42,8,1,16,3,6,3,8,1,16,1,8,2,16,1,8,1,6,1,8,1,16,1,6,1,16,2,8,1,16,4,8,1,16,1,8,2,6,1,8,1,16,1,8,3,6,1,16,1,14,1,6,2,8,4,16,6,14,1,16,11,14,1,16,2,11,2,1,1,11,1,12,1,11,2,1,406,}, + {1,214,7,1,6,2,13,1,8,1,6,2,8,3,6,2,8,4,16,3,8,1,6,29,13,2,6,7,13,1,8,3,16,3,6,1,8,1,6,3,8,1,16,1,6,3,16,10,8,2,7,1,16,2,8,4,14,1,16,1,8,1,6,1,8,5,16,2,14,2,16,5,14,1,16,5,8,1,16,1,14,1,16,1,14,1,11,1,16,1,1,2,11,1,12,1,17,1,11,1,1,1,11,1,1,403,}, + {1,214,16,1,6,2,13,1,8,1,13,1,7,2,8,6,6,5,8,4,13,1,6,9,13,1,6,16,13,1,6,3,13,1,8,1,13,3,6,4,8,2,16,5,6,1,8,2,16,11,8,2,6,1,8,1,16,1,8,1,16,1,8,2,14,1,16,2,8,1,16,1,8,1,6,1,8,3,16,1,14,1,16,5,14,2,16,1,14,2,16,2,8,1,16,1,14,1,16,2,11,2,1,1,11,2,1,1,17,1,16,1,11,2,1,1,12,1,1,402,}, + {1,214,8,2,6,1,13,3,8,1,7,2,8,1,7,1,8,1,7,1,8,5,6,30,8,1,6,3,13,1,6,3,13,1,8,2,6,1,8,2,7,1,6,1,7,1,8,2,6,1,8,2,16,1,8,2,16,11,8,1,6,2,16,4,7,1,14,1,16,1,8,1,6,1,16,2,6,1,8,3,16,1,14,1,16,4,14,2,16,2,14,4,7,1,16,1,14,3,16,1,11,3,1,1,11,2,1,1,16,2,11,2,1,1,12,1,1,401,}, + {1,215,7,1,6,1,13,3,8,5,7,1,6,5,8,1,13,1,8,3,13,5,6,7,7,1,16,10,6,9,13,1,8,1,13,1,6,2,7,1,8,1,6,1,8,3,6,1,13,1,8,1,13,1,6,1,8,2,16,9,8,1,16,2,8,1,6,1,8,1,16,3,8,1,16,2,8,3,16,1,6,1,8,3,14,1,16,2,8,1,16,2,14,1,16,2,14,1,16,3,14,1,16,1,8,1,14,1,16,1,14,1,16,1,17,1,11,3,17,1,11,2,1,2,12,1,16,1,17,1,1,1,11,2,1,400,}, + {1,215,6,1,13,4,8,5,6,1,7,1,6,9,13,2,6,8,8,1,16,4,8,1,6,5,8,1,16,4,8,1,6,3,7,1,8,1,13,3,8,4,6,4,13,1,6,2,8,1,7,1,8,4,16,10,6,2,16,6,8,1,16,1,8,1,16,2,8,2,16,1,14,1,16,2,7,1,16,1,14,3,11,5,16,2,14,1,16,1,14,2,16,2,1,2,11,3,17,1,1,1,11,1,1,2,11,1,17,1,11,1,1,1,11,1,1,400,}, + {1,215,7,1,13,4,8,1,13,1,8,2,7,1,8,1,6,2,13,1,6,9,13,1,6,6,16,3,8,1,6,3,8,1,6,3,8,3,6,2,16,4,8,1,6,2,8,2,13,2,8,1,7,1,8,1,6,1,8,1,13,1,6,1,13,1,6,4,8,3,16,10,6,2,16,7,8,1,6,1,16,3,8,1,16,1,14,1,16,1,8,2,16,1,14,1,16,1,11,1,1,6,11,1,14,1,16,1,14,2,16,2,11,1,1,4,11,6,1,2,11,2,1,1,11,1,1,399,}, + {1,215,9,1,8,1,13,3,8,1,7,1,8,3,6,1,8,4,6,14,8,1,6,1,16,1,8,1,6,2,8,1,6,7,8,1,16,2,7,1,6,1,16,5,7,1,6,3,7,1,8,1,7,1,6,10,8,2,16,9,8,1,6,2,16,7,6,1,16,3,8,1,16,1,14,1,16,2,8,1,16,1,14,1,16,1,11,1,1,2,11,2,1,2,11,1,1,1,11,1,16,5,11,3,1,2,11,5,16,1,17,1,11,1,1,2,11,2,1,399,}, + {1,215,11,1,8,1,13,1,6,1,13,1,6,1,8,5,6,2,8,1,16,1,8,1,6,12,8,2,6,1,8,1,6,1,8,1,16,1,6,11,16,2,8,1,6,1,8,1,16,4,6,1,7,1,8,2,6,1,13,1,6,9,8,3,16,8,6,2,16,7,6,1,16,5,14,1,16,4,14,2,11,1,1,1,11,9,14,1,16,3,1,1,11,1,16,1,12,1,11,1,1,5,11,1,17,1,12,1,11,3,1,401,}, + {1,216,6,1,13,4,8,4,16,1,6,3,8,1,16,2,8,1,6,10,8,1,16,2,6,1,8,2,6,14,16,2,8,1,6,1,8,1,16,3,8,1,6,2,8,1,6,9,13,1,8,2,16,8,6,2,8,1,16,4,14,1,16,1,6,1,8,1,16,4,14,1,16,5,14,1,1,1,11,8,1,1,11,3,16,2,17,1,1,1,11,2,17,1,16,1,12,1,1,6,11,2,17,1,11,2,1,1,12,1,1,398,}, + {1,216,6,3,13,3,8,5,13,1,6,3,8,1,16,4,6,6,16,2,8,1,6,1,8,2,6,5,13,1,6,3,13,2,6,2,8,1,6,3,16,2,8,1,7,1,6,1,16,2,8,1,6,2,13,2,6,7,13,1,8,4,16,5,6,2,8,1,16,6,6,1,8,1,16,10,14,1,1,2,11,8,1,1,11,2,1,1,11,1,16,1,11,1,1,3,11,2,17,2,11,1,1,6,11,3,1,400,}, + {1,216,8,2,6,1,13,1,8,1,6,1,8,1,13,1,8,5,7,1,6,3,7,1,6,2,16,6,8,1,6,1,13,1,8,1,6,3,8,1,13,1,6,3,8,1,13,1,6,2,13,2,8,1,13,1,6,1,8,1,6,2,8,1,16,3,8,2,16,2,7,1,6,5,13,1,6,4,8,2,16,6,8,1,6,1,8,1,16,5,14,1,6,1,7,1,16,11,1,2,11,14,16,1,1,7,11,2,17,1,11,2,1,406,}, + {1,217,6,1,8,1,13,2,8,1,13,1,8,5,7,1,8,1,6,1,7,1,8,3,6,8,8,1,16,1,6,3,8,1,6,1,8,2,6,1,8,1,6,2,8,1,6,1,13,1,8,2,7,2,8,6,16,2,8,1,6,1,16,2,6,3,8,1,13,2,6,1,13,2,8,3,16,1,8,1,16,3,8,1,6,1,16,8,6,1,16,5,14,1,16,4,14,1,1,4,11,9,1,2,11,6,1,9,11,2,1,5,12,1,1,398,}, + {1,217,6,1,8,1,6,2,13,1,8,9,6,5,8,2,6,1,8,5,6,2,13,1,6,1,13,1,8,2,6,1,7,1,8,1,6,1,8,2,6,1,8,13,16,1,8,1,6,1,14,1,16,1,6,5,13,1,6,1,8,5,16,4,6,1,8,1,16,5,14,1,16,1,6,1,16,5,14,2,16,4,11,1,1,1,16,1,11,1,1,1,11,14,17,1,16,1,11,1,17,1,11,2,1,10,11,1,1,401,}, + {1,217,11,1,7,1,13,3,8,5,7,1,8,2,13,3,6,15,8,1,6,1,8,3,7,2,8,2,7,1,8,14,16,2,6,1,14,1,16,1,8,1,7,1,8,2,7,2,8,3,16,5,6,1,8,1,16,5,14,1,16,1,8,1,6,1,16,4,14,2,16,4,11,2,1,1,11,2,1,2,11,2,12,1,11,10,1,4,11,2,1,3,11,1,1,1,11,2,1,6,11,1,1,398,}, + {1,218,28,1,13,2,8,1,6,1,8,9,13,1,6,15,8,2,6,1,7,1,8,4,7,1,8,4,16,1,8,2,16,1,8,6,16,4,7,1,16,3,8,5,16,6,8,1,16,6,14,1,16,1,8,1,6,1,16,1,14,1,16,2,14,3,16,2,14,2,1,2,11,2,17,1,11,1,1,1,11,2,17,2,11,10,1,11,11,1,1,6,17,1,1,398,}, + {1,218,16,1,8,1,6,1,13,1,8,1,7,1,8,8,6,15,13,1,8,2,6,1,8,5,16,2,8,13,16,1,8,1,16,3,8,1,16,1,14,1,16,9,8,2,16,6,14,2,8,1,6,1,16,4,14,3,16,4,11,1,1,1,11,2,1,1,11,2,1,1,11,2,17,2,11,7,1,1,11,1,1,1,10,1,11,1,16,1,11,1,1,12,17,1,1,400,}, + {1,219,6,1,13,1,6,1,8,1,13,1,8,10,6,15,7,1,8,3,16,3,14,1,16,2,14,1,16,5,8,6,16,14,8,1,6,2,8,1,16,7,14,1,16,1,7,1,8,1,16,4,14,2,16,3,14,1,11,1,16,1,11,1,1,1,11,4,1,1,11,2,17,1,12,1,17,1,11,5,1,1,11,2,1,1,16,1,1,3,10,1,17,1,11,1,6,1,7,2,8,2,7,1,1,1,11,1,9,1,1,401,}, + {1,219,6,1,8,1,13,1,6,1,13,1,8,10,6,16,8,1,16,12,14,1,16,3,8,1,16,11,8,2,16,2,8,2,7,2,16,7,14,2,16,1,8,2,16,1,14,1,16,2,14,2,16,2,14,2,16,1,11,1,16,1,11,1,1,2,17,1,11,1,1,1,11,1,1,1,11,2,12,1,16,1,12,1,11,8,1,1,16,1,1,415,}, + {1,220,7,1,6,1,13,2,8,10,13,2,6,10,13,1,6,2,16,4,8,2,6,5,8,4,16,2,14,2,16,1,8,1,16,14,7,1,16,8,14,2,16,1,7,1,6,1,16,1,14,1,16,2,14,2,16,2,14,2,16,1,11,1,16,1,1,1,11,2,1,1,11,2,1,1,11,1,1,2,11,1,16,3,11,3,1,1,11,4,1,1,11,1,1,415,}, + {1,220,6,1,8,1,13,3,8,11,6,12,8,1,14,1,16,1,8,1,6,3,8,5,16,6,8,1,16,1,14,2,16,1,8,1,16,21,14,1,16,1,7,1,8,1,16,4,14,3,16,4,11,6,1,2,11,1,17,1,1,3,11,1,17,1,16,2,17,1,11,8,1,1,12,1,1,414,}, + {1,220,17,1,7,1,6,1,8,1,13,1,8,11,13,2,6,9,8,1,14,2,8,1,6,2,8,2,16,13,8,1,16,2,14,1,16,20,14,1,16,1,7,1,16,6,14,2,16,1,14,1,16,1,14,2,11,1,1,1,11,2,1,5,11,2,1,3,11,1,16,3,17,1,11,2,1,1,11,2,1,3,11,1,1,414,}, + {1,221,6,1,8,1,13,2,8,13,6,9,14,2,8,1,6,1,16,1,8,1,16,19,14,1,16,17,14,1,16,2,8,1,16,6,14,2,16,2,14,2,16,1,11,1,1,1,11,5,1,1,11,1,1,2,16,1,11,1,1,2,11,2,9,1,16,1,17,1,11,7,1,1,9,1,1,414,}, + {1,222,6,1,8,1,13,1,8,2,13,1,8,10,6,3,13,1,6,4,14,2,16,1,6,2,8,1,16,22,14,1,16,20,14,1,16,3,14,2,16,4,14,1,11,8,1,2,11,1,1,1,11,1,9,1,11,1,1,2,11,1,16,1,9,1,16,2,11,3,1,1,11,2,1,2,12,1,1,413,}, + {1,222,9,1,8,1,7,1,8,15,6,4,16,1,14,2,7,1,6,2,16,1,8,1,16,23,14,1,16,13,14,2,16,3,14,1,16,4,14,2,16,2,14,3,1,1,11,3,1,1,11,4,1,4,11,1,16,1,1,3,16,1,9,1,16,2,11,1,1,1,11,5,1,1,12,1,1,413,}, + {1,223,28,1,8,1,7,1,8,13,6,1,8,3,14,2,8,2,6,1,8,1,16,1,8,1,16,25,14,2,16,9,14,1,16,1,14,1,16,8,14,2,16,2,14,3,11,2,1,2,11,2,1,1,11,2,1,4,11,1,1,1,16,2,1,2,11,1,16,1,9,1,16,1,17,1,11,3,1,1,11,2,1,1,7,1,1,413,}, + {1,223,11,1,8,2,7,1,8,11,16,4,14,1,16,1,8,1,6,1,7,1,16,1,8,1,6,1,16,15,8,3,16,9,14,2,16,5,14,1,16,2,14,2,16,8,14,2,16,3,14,1,16,1,11,4,1,2,11,1,1,1,11,3,1,6,16,2,1,2,11,1,9,1,16,1,12,1,11,6,1,1,11,1,1,413,}, + {1,224,6,1,8,1,6,1,7,1,8,1,16,1,8,2,16,10,8,7,16,14,14,5,16,11,14,2,16,1,14,1,16,5,14,1,16,5,14,1,16,1,14,3,16,4,14,1,11,6,1,1,11,1,1,1,11,2,1,1,11,1,1,5,7,1,12,1,1,1,11,1,9,2,16,1,11,2,1,1,11,1,1,1,11,1,1,2,9,1,1,412,}, + {1,225,6,1,8,1,6,1,8,4,7,1,8,1,16,4,8,2,7,1,8,1,6,1,8,3,16,1,8,1,16,11,14,1,16,1,14,1,16,2,8,1,16,4,14,2,16,9,14,2,16,2,14,1,16,2,14,1,16,2,14,1,16,3,14,4,16,5,11,1,1,1,11,5,1,1,11,4,1,1,11,1,1,5,12,1,8,1,11,1,1,1,11,1,9,1,8,1,16,1,17,1,11,4,1,2,17,1,1,412,}, + {1,225,11,1,8,2,6,1,8,10,6,1,16,1,8,1,16,4,8,1,16,9,14,3,16,4,8,1,16,17,14,4,16,1,8,1,16,2,14,1,16,5,14,2,16,3,14,2,11,1,1,2,11,3,1,1,11,1,1,13,16,2,1,2,17,1,9,1,16,1,17,1,11,1,1,1,11,3,1,1,8,1,1,412,}, + {1,226,16,1,9,1,8,10,16,16,14,3,16,4,8,1,16,12,14,1,16,4,14,2,16,1,14,2,16,3,14,3,16,3,14,3,16,2,14,2,16,1,11,1,1,1,11,8,1,2,11,1,1,1,11,1,1,8,7,1,9,1,1,2,16,1,9,1,16,1,11,5,1,1,16,1,1,412,}, + {1,227,8,7,16,1,8,1,16,16,14,3,16,1,8,2,16,3,14,3,16,1,8,1,7,1,8,2,16,6,14,3,16,1,14,3,16,1,14,4,16,2,14,1,16,1,14,5,16,1,14,1,16,2,11,1,1,4,11,6,1,2,11,3,1,8,11,1,9,1,11,1,1,1,11,1,9,1,16,1,11,2,1,2,11,1,1,1,11,1,1,412,}, + {1,227,17,1,6,1,8,1,7,1,8,3,16,1,8,1,16,15,14,3,16,1,8,1,16,1,8,1,16,1,14,1,16,2,14,2,16,13,14,2,16,1,14,4,16,1,14,2,16,1,14,4,16,1,14,2,16,3,14,1,11,5,1,1,11,5,1,5,11,1,1,9,17,1,16,1,1,2,16,2,12,1,11,5,1,1,7,1,1,411,}, + {1,228,11,1,8,3,16,1,8,1,16,1,8,2,16,13,14,3,7,1,8,1,16,1,8,1,16,1,14,1,16,5,11,2,14,1,16,9,14,20,16,2,11,2,1,1,11,3,1,2,11,6,1,3,11,1,1,9,11,1,16,1,11,1,1,1,11,1,9,1,16,2,11,4,1,1,16,1,1,411,}, + {1,229,11,1,16,1,8,3,16,14,14,3,16,1,8,1,16,1,8,1,16,1,14,2,16,2,14,1,11,1,1,7,11,1,16,5,14,10,16,2,14,2,16,1,14,7,11,1,1,1,11,2,1,1,11,3,1,1,11,6,1,14,17,1,16,1,1,2,16,2,17,1,11,4,1,1,11,1,1,411,}, + {1,230,6,1,9,1,8,4,16,11,14,3,16,1,8,1,16,2,14,2,16,3,1,3,11,6,1,2,11,1,14,1,16,4,14,5,16,1,14,7,11,1,14,1,11,1,14,1,11,2,16,1,6,1,1,2,11,2,1,1,11,4,1,1,11,1,1,1,11,3,1,14,11,1,17,1,1,2,11,1,16,1,17,1,11,4,1,1,11,1,1,411,}, + {1,231,8,1,16,1,8,2,16,1,8,1,16,8,14,2,16,5,14,2,16,3,11,1,1,2,16,1,11,2,17,1,11,1,17,1,11,4,1,2,11,1,16,3,14,5,11,1,16,1,6,1,16,2,17,1,11,1,28,1,29,1,6,3,8,1,16,1,1,2,16,1,1,2,11,1,1,2,11,3,1,2,11,2,1,1,11,1,1,1,11,1,1,13,11,2,1,2,11,1,16,1,11,4,1,1,6,1,1,411,}, + {1,232,9,1,16,1,8,1,16,9,14,2,16,5,14,1,16,3,11,1,1,1,11,5,17,1,11,1,1,1,11,7,1,1,11,1,16,1,14,3,16,1,14,1,11,1,9,1,11,1,1,15,16,1,1,2,11,1,1,2,11,3,1,1,11,1,1,2,11,1,1,1,11,2,1,12,11,3,1,2,11,1,17,1,11,3,1,1,10,1,1,411,}, + {1,233,6,1,16,1,8,1,16,7,14,1,16,5,14,3,16,2,11,1,1,1,11,1,16,1,11,1,1,1,11,2,17,1,11,10,1,1,16,3,14,1,16,1,14,1,16,1,11,1,1,18,11,1,1,4,11,2,1,2,11,3,1,4,11,2,1,10,11,2,1,1,11,7,16,1,1,411,}, + {1,234,6,1,16,6,14,1,16,5,14,3,16,2,17,1,1,2,11,2,16,1,17,1,1,1,17,1,11,12,1,1,11,1,16,1,14,3,16,1,11,1,1,19,11,1,16,1,1,4,11,1,1,4,11,1,1,3,11,1,1,1,11,1,16,1,1,9,11,3,1,2,11,4,1,1,16,1,1,411,}, + {1,234,17,1,8,1,16,2,8,1,16,1,14,2,16,4,14,3,16,2,11,1,1,1,11,1,12,1,1,1,11,2,9,1,1,1,17,1,11,1,16,1,11,7,1,1,11,2,1,1,11,1,16,2,14,1,16,1,11,1,1,22,16,1,1,4,11,1,1,4,11,3,1,3,11,1,9,1,11,1,1,5,11,1,1,2,11,1,1,1,11,1,1,2,11,3,1,1,17,1,1,411,}, + {1,235,11,1,8,1,14,1,16,6,14,3,16,3,11,1,1,1,11,3,16,1,11,2,16,1,11,3,16,1,11,1,1,2,11,6,1,2,11,1,16,1,11,1,16,1,11,1,1,24,11,1,16,1,1,3,11,1,1,5,11,1,1,2,11,1,1,2,16,1,1,9,11,1,1,1,11,1,1,2,11,2,1,1,11,1,1,411,}, + {1,236,11,1,8,1,16,5,14,1,16,1,14,1,16,3,1,2,11,3,16,1,11,4,16,1,1,1,11,2,16,1,1,1,11,4,1,2,11,2,1,1,11,2,8,1,11,1,1,27,17,1,11,1,1,8,11,1,1,5,11,1,17,1,1,7,11,3,1,2,11,2,1,1,11,1,1,411,}, + {1,237,11,1,16,1,14,1,16,7,11,1,1,1,16,1,17,1,1,1,17,1,11,1,17,1,11,4,17,1,11,1,17,1,11,1,16,1,11,3,17,1,11,3,16,1,1,2,11,1,16,1,1,30,11,1,17,1,1,15,16,2,1,6,11,1,1,1,11,1,1,2,11,1,1,1,11,1,1,411,}, + {1,239,11,1,6,1,14,2,16,3,14,1,1,1,11,1,16,2,11,5,17,1,11,2,16,1,17,1,11,1,17,1,16,1,1,1,11,2,17,1,11,2,1,1,11,1,1,2,11,1,1,33,11,1,16,1,1,14,11,1,9,1,17,1,1,5,11,3,1,3,11,1,1,411,}, + {1,241,11,1,16,1,11,2,17,1,11,1,1,1,11,3,17,1,11,3,16,1,11,3,17,2,1,1,11,1,16,1,17,1,1,1,11,1,12,1,11,1,1,1,11,1,17,1,1,1,16,1,1,36,11,2,1,14,11,2,1,5,11,3,1,2,11,1,1,411,}, + {1,246,11,2,1,1,11,7,16,1,11,3,16,1,11,2,12,1,16,1,1,1,11,1,16,2,1,1,11,2,1,1,10,1,1,37,17,1,16,1,1,15,11,2,1,5,11,1,1,2,11,1,1,411,}, + {1,247,11,2,1,1,11,2,17,1,11,7,12,1,11,2,17,1,16,1,1,1,11,1,16,1,17,1,1,1,11,2,1,1,16,1,1,39,11,1,12,1,1,14,11,2,1,4,11,2,1,1,11,1,1,411,}, + {1,249,9,1,1,1,11,1,12,1,11,1,1,1,11,2,17,1,11,3,17,1,11,3,1,1,11,1,9,1,16,1,1,1,11,2,1,1,12,1,1,41,11,1,17,1,1,14,11,1,1,1,11,2,1,1,11,1,1,1,16,1,1,411,}, + {1,251,11,6,17,1,16,1,1,1,11,1,16,1,11,5,9,1,16,1,1,1,17,1,11,1,1,1,10,1,1,43,17,1,16,1,11,1,1,12,11,1,1,2,11,2,1,1,9,1,1,411,}, + {1,251,11,1,16,1,1,1,16,1,11,3,17,1,16,1,1,1,11,1,16,1,1,1,16,1,11,1,1,1,8,1,16,1,1,1,17,1,1,1,11,1,1,47,11,1,16,1,1,9,11,2,1,1,11,3,1,413,}, + {1,252,17,1,9,1,1,1,16,1,11,3,16,1,11,1,1,1,9,1,11,1,1,1,11,1,1,1,16,2,1,1,11,1,1,1,9,1,1,49,11,2,16,1,1,13,16,1,1,411,}, + {1,255,11,1,17,1,1,1,11,1,12,1,16,1,1,1,11,1,9,1,1,1,11,2,16,2,1,1,11,1,1,1,11,1,1,52,11,2,9,1,11,1,1,8,12,1,1,412,}, + {1,256,17,1,11,3,17,2,1,1,11,1,16,1,1,1,16,1,11,1,8,1,11,1,1,2,11,1,1,56,9,1,1,1,8,1,11,1,1,3,16,1,11,1,1,412,}, + {1,256,11,3,1,1,11,1,8,1,16,1,1,1,11,1,1,1,11,4,1,1,12,1,1,478,}, + {1,257,17,1,11,2,1,1,11,1,6,1,16,1,1,1,11,1,17,1,11,3,1,1,11,1,1,478,}, + {1,258,16,1,11,2,1,1,11,1,8,1,11,1,1,3,11,1,1,2,17,1,1,478,}, + {1,259,16,1,11,1,1,1,11,1,1,1,11,3,1,1,11,1,1,1,11,1,1,479,}, + {1,260,11,1,1,3,11,2,1,4,11,1,1,479,}, + {1,262,12,1,17,1,1,5,16,1,1,480,}, + {1,264,12,1,16,2,11,1,17,1,1,481,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, + {1,750,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino14.lua b/map_gen/data/presets/dino14.lua new file mode 100644 index 00000000..bbadbaaf --- /dev/null +++ b/map_gen/data/presets/dino14.lua @@ -0,0 +1,451 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 444, +width = 342, +data = { + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,121,28,9,1,212,}, + {1,91,28,15,1,10,28,17,1,209,}, + {1,86,28,17,29,1,30,1,28,5,1,1,28,7,29,2,26,1,28,1,29,1,26,1,29,1,28,12,1,205,}, + {1,83,28,10,26,1,28,11,25,1,29,1,28,17,29,1,28,4,29,1,28,4,29,1,28,6,1,201,}, + {1,82,28,2,29,2,28,11,26,1,25,1,28,2,26,1,27,1,28,2,29,1,28,28,27,1,29,1,28,2,29,1,28,5,1,198,}, + {1,80,28,2,29,1,28,15,26,1,9,1,26,1,29,2,28,3,26,1,9,1,29,1,28,14,26,1,29,1,28,9,29,1,28,6,29,2,28,3,1,196,}, + {1,78,28,9,29,1,28,11,26,2,29,2,15,1,25,1,28,1,26,1,29,1,28,15,26,1,29,1,28,11,29,1,26,1,28,4,29,1,28,5,1,194,}, + {1,77,28,15,26,1,28,5,26,1,29,2,28,1,29,1,26,1,28,3,29,1,28,4,26,1,28,4,29,1,28,3,29,1,28,14,26,1,28,2,29,1,28,2,29,2,6,1,7,1,28,4,1,192,}, + {1,75,28,3,29,1,28,14,25,1,28,4,29,3,28,1,26,1,29,1,28,2,29,1,26,3,29,3,28,1,26,1,28,2,29,1,26,2,28,18,26,1,27,1,28,2,26,1,29,1,28,1,29,2,27,1,7,1,28,2,1,191,}, + {1,74,28,6,29,1,28,13,25,1,29,2,26,3,29,2,28,2,29,1,28,1,29,2,28,2,29,2,28,2,26,2,28,10,29,1,28,11,26,1,28,2,29,1,27,1,26,1,27,2,29,1,9,1,12,1,29,1,28,2,1,190,}, + {1,73,28,20,29,1,9,2,26,2,28,13,26,1,29,1,28,2,26,2,28,5,29,1,28,9,29,4,28,3,29,1,28,4,29,1,25,2,29,1,26,1,27,1,6,1,28,3,1,188,}, + {1,72,28,20,27,2,26,1,28,1,29,2,26,4,29,2,28,8,25,1,29,1,28,2,26,1,29,1,28,2,29,1,28,2,29,1,28,1,29,1,28,2,25,1,29,1,28,10,26,1,25,3,26,1,29,1,26,1,9,2,29,1,28,1,7,1,10,1,28,1,1,188,}, + {1,71,28,19,9,1,10,1,27,1,12,2,15,1,9,1,29,1,28,2,27,1,9,1,29,1,28,1,29,1,9,1,27,1,29,1,28,6,29,1,28,2,26,2,28,2,29,1,28,1,29,1,28,2,26,1,28,1,29,1,26,1,28,9,26,1,29,1,28,1,29,2,28,3,29,1,30,1,29,1,26,1,12,1,9,1,29,1,28,1,1,187,}, + {1,69,28,11,26,1,25,1,26,2,28,1,29,1,28,2,29,1,15,1,11,3,17,1,11,2,12,1,9,3,12,1,9,1,27,1,6,1,30,1,9,1,10,1,25,1,9,1,25,1,26,1,25,1,9,1,29,1,26,1,29,1,28,3,27,1,29,1,28,3,26,1,28,2,29,1,28,2,29,1,26,1,28,2,26,1,28,1,29,1,9,1,27,1,28,2,29,4,10,2,29,1,28,1,29,1,28,2,29,1,6,1,28,2,1,186,}, + {1,68,28,3,29,1,28,3,26,1,28,6,26,1,25,1,28,3,10,1,11,5,12,1,7,1,8,1,9,1,12,1,11,3,12,3,9,1,10,1,9,1,12,1,11,1,17,1,16,2,25,1,10,1,9,1,27,2,26,1,29,1,25,1,29,1,26,1,29,1,28,1,29,1,25,1,28,5,26,1,29,2,26,1,29,1,25,1,10,1,29,1,27,1,12,1,9,1,10,1,7,1,9,2,16,1,9,3,27,1,29,2,28,1,6,1,28,1,1,186,}, + {1,66,28,4,29,1,28,6,25,1,29,1,25,2,28,4,26,1,11,2,17,1,11,1,12,2,7,1,29,1,10,1,7,1,10,1,7,1,6,1,7,1,16,1,11,4,12,3,11,2,16,1,17,1,12,2,16,1,9,1,7,1,6,1,7,1,9,3,10,1,9,1,7,1,29,1,10,1,27,1,9,2,7,1,10,1,9,1,10,2,9,1,10,1,9,2,10,1,9,1,12,2,9,1,12,1,16,1,9,1,10,1,9,4,6,1,28,1,7,1,28,2,1,185,}, + {1,65,28,10,29,1,26,1,29,1,26,1,28,5,25,2,27,1,26,1,9,3,6,1,29,1,7,1,27,1,9,1,29,1,28,3,7,1,12,1,11,2,17,1,11,1,16,2,11,1,1,1,11,3,16,2,17,1,12,2,17,1,16,1,12,1,9,1,16,1,7,1,8,1,10,1,16,1,10,1,9,1,12,1,16,1,9,2,16,2,12,1,17,1,11,1,12,2,11,1,12,1,9,1,12,1,16,1,17,1,16,1,9,2,12,2,9,1,10,1,6,2,28,2,1,185,}, + {1,64,28,1,29,1,28,8,29,1,26,1,28,1,29,1,28,3,25,1,9,1,27,1,9,2,29,2,27,1,26,1,10,1,9,3,27,1,28,6,7,1,9,1,12,1,17,2,12,2,16,1,12,1,11,1,12,1,16,1,12,1,9,2,16,1,9,1,16,1,12,1,16,1,12,1,9,1,16,3,9,1,16,1,12,1,16,2,12,2,17,2,16,1,17,2,11,4,12,1,16,3,12,2,16,2,9,2,16,1,10,1,29,1,28,2,1,185,}, + {1,63,28,10,9,2,29,1,26,1,28,2,29,1,25,1,29,3,26,3,29,2,26,3,29,2,28,3,26,1,30,1,28,2,6,2,27,2,9,1,11,1,12,1,16,3,12,2,16,2,12,1,16,1,12,1,16,1,10,1,16,1,10,1,16,5,9,2,17,1,16,2,11,1,12,1,11,2,14,1,9,1,15,1,9,2,1,1,11,1,16,2,12,2,11,1,12,1,16,1,9,1,10,2,9,1,10,1,29,1,28,2,1,184,}, + {1,62,28,10,29,1,26,1,28,1,26,1,28,2,29,1,26,1,28,2,29,1,28,3,26,1,28,4,29,1,28,2,26,1,29,5,6,1,10,2,29,1,28,1,29,1,7,1,9,1,12,1,16,1,12,2,9,1,12,1,9,1,10,1,16,1,12,1,9,1,16,1,9,1,10,1,16,4,9,1,10,1,12,1,16,2,12,2,11,2,9,1,28,6,16,1,11,1,16,3,12,2,16,2,9,2,16,1,9,1,29,1,28,2,1,184,}, + {1,61,28,1,29,1,28,14,29,2,28,3,29,1,25,1,28,2,29,1,28,1,26,2,29,1,28,1,29,1,26,2,29,4,27,1,7,1,9,2,28,3,29,1,9,1,16,1,7,1,27,2,10,1,9,1,16,1,12,1,11,1,12,1,9,1,10,3,9,1,16,2,12,1,9,2,12,1,16,2,11,3,13,1,28,8,15,1,17,1,16,6,9,2,16,1,12,1,28,3,1,184,}, + {1,61,28,9,29,1,28,8,29,1,28,2,26,1,28,1,26,1,29,2,25,1,9,1,26,1,29,4,26,2,29,3,26,1,27,1,9,1,10,1,28,3,29,1,9,2,29,1,28,3,29,1,10,1,9,1,12,4,9,1,16,5,9,2,17,1,16,2,11,2,9,1,28,2,9,1,14,1,28,5,29,1,11,1,12,2,16,3,9,3,16,1,10,1,29,1,28,2,1,184,}, + {1,60,28,14,29,1,28,2,29,1,9,1,28,1,26,1,27,1,25,1,9,1,29,1,28,2,29,2,28,1,29,1,26,2,29,4,26,2,29,1,10,1,9,1,27,1,29,1,28,3,6,1,9,1,27,1,28,3,27,1,9,1,7,1,10,1,29,2,27,1,9,3,16,2,12,1,16,2,12,1,16,1,12,1,11,2,9,1,28,2,26,1,9,1,28,5,29,1,11,1,12,2,16,3,9,1,16,1,9,2,27,1,29,2,28,1,1,184,}, + {1,59,28,18,29,1,27,2,10,1,17,1,26,1,28,3,29,1,28,1,29,2,28,2,29,1,26,1,29,1,26,1,29,4,9,2,26,1,29,2,28,3,9,1,26,1,28,3,26,1,9,2,27,1,28,2,29,2,10,2,9,3,12,1,16,1,12,1,16,1,12,1,17,1,11,1,14,1,28,9,14,1,11,1,12,2,16,1,9,1,16,1,9,1,16,2,10,1,9,1,26,1,28,2,1,184,}, + {1,60,28,1,10,1,16,1,12,2,9,1,16,1,17,1,12,1,28,9,11,1,12,2,28,2,29,1,26,2,29,1,25,1,26,1,28,2,26,1,29,1,28,1,29,5,26,1,9,1,25,1,29,3,28,3,27,1,29,1,28,2,29,1,28,1,25,1,9,1,29,1,28,3,29,1,10,1,9,1,6,1,29,1,27,1,9,1,27,1,29,1,27,1,12,1,17,1,11,1,1,1,9,1,29,1,28,5,29,1,11,1,17,1,12,2,16,3,9,1,16,1,9,4,25,1,29,1,28,1,1,184,}, + {1,60,28,1,11,1,9,1,12,1,9,3,12,1,16,1,9,1,12,1,6,1,28,10,29,2,27,1,11,1,9,1,28,2,29,1,26,1,29,1,28,1,29,1,26,3,29,2,25,1,9,1,26,1,29,1,26,1,29,2,28,1,29,1,27,1,28,4,29,1,26,1,9,1,25,1,29,1,28,1,29,2,9,2,29,1,28,1,26,1,9,1,26,1,29,1,28,2,6,1,12,1,11,1,1,1,11,1,15,1,9,2,15,1,14,1,11,2,17,1,16,2,9,1,16,4,9,3,30,1,9,1,29,1,28,2,1,183,}, + {1,60,28,1,11,1,16,1,9,1,10,1,9,5,16,1,12,1,11,1,9,1,28,8,7,1,9,1,27,1,28,3,27,1,26,3,9,2,25,1,26,1,29,2,26,1,27,1,29,2,26,1,29,3,28,1,25,1,27,1,28,1,29,1,28,3,29,1,9,2,28,1,29,3,9,1,27,1,29,2,28,1,26,1,28,1,29,1,26,1,27,1,29,1,6,1,9,1,17,1,1,3,11,4,17,1,12,2,16,2,9,2,12,1,9,3,27,1,10,1,26,1,29,1,28,3,1,182,}, + {1,60,28,1,9,1,12,1,9,6,16,1,12,1,16,2,9,1,16,1,17,1,12,1,6,1,28,8,29,1,9,1,29,1,25,1,15,1,9,1,27,1,29,1,28,1,29,1,28,1,29,1,25,1,26,2,29,3,26,1,29,1,26,1,25,1,26,1,28,2,29,1,28,2,29,1,9,1,27,1,28,1,29,3,25,1,26,1,28,3,29,1,28,1,29,1,26,1,27,1,9,1,29,2,9,1,17,1,1,3,11,3,12,3,16,3,9,2,10,1,9,1,16,1,9,1,25,1,26,1,28,5,1,181,}, + {1,61,8,1,17,1,12,1,16,2,9,1,10,2,16,1,12,1,16,4,11,1,1,2,12,1,29,1,28,6,27,1,11,2,12,1,27,1,29,2,26,1,28,1,29,1,25,1,9,1,26,1,29,3,26,4,9,1,26,1,29,2,28,1,29,1,28,2,26,1,9,1,29,2,26,2,29,1,25,1,26,1,29,3,28,2,29,2,12,1,27,1,6,1,28,1,10,1,7,1,12,1,11,1,1,2,11,4,12,1,16,4,9,2,10,1,29,2,28,1,26,2,28,5,1,180,}, + {1,60,28,1,10,1,11,2,12,2,16,1,10,1,8,1,9,1,12,2,16,2,12,1,11,2,1,3,16,1,28,5,12,1,11,1,9,1,29,1,28,3,26,1,15,2,9,1,26,1,28,1,29,1,26,1,9,1,29,1,26,3,27,1,29,1,28,1,29,1,28,4,27,2,29,2,26,2,29,1,26,1,29,4,28,1,29,1,28,1,29,1,15,1,27,1,28,2,6,1,9,2,16,1,12,1,11,5,16,5,10,2,29,1,9,2,28,1,29,1,26,1,28,3,29,1,28,1,1,180,}, + {1,60,28,1,11,1,17,2,12,2,16,1,9,2,16,1,12,5,11,4,1,3,28,4,12,1,7,1,6,1,9,1,26,1,27,1,9,2,26,1,29,1,28,1,29,1,26,1,9,1,27,1,29,1,26,1,29,1,26,2,29,3,28,1,29,4,25,1,26,1,28,1,29,1,26,1,29,2,26,1,29,4,28,1,29,1,15,1,9,1,10,1,26,1,29,1,28,2,6,1,9,3,16,1,11,1,1,1,11,1,12,1,11,2,12,1,9,1,10,1,7,1,16,2,6,1,25,1,29,3,28,4,29,1,28,1,1,179,}, + {1,60,28,1,11,1,12,2,16,2,12,1,16,2,12,3,16,1,12,2,16,1,12,1,11,3,1,2,12,1,28,7,29,1,11,1,25,1,29,1,9,2,26,1,29,1,9,1,26,2,28,1,26,4,28,1,29,2,28,1,29,2,26,2,27,1,28,2,29,1,26,4,29,4,28,1,29,1,11,2,29,1,28,1,26,1,29,3,9,2,8,2,9,1,17,1,11,1,12,5,16,1,10,1,9,4,26,1,28,3,29,1,28,1,29,1,28,2,1,179,}, + {1,60,28,1,16,1,11,1,12,1,16,3,12,2,17,2,12,5,17,1,12,1,11,2,12,1,17,1,11,1,9,1,28,6,29,1,10,1,27,1,12,1,9,1,29,2,27,2,29,3,25,1,26,1,29,1,26,1,29,2,28,2,26,1,29,1,26,3,28,2,26,3,29,6,28,1,29,1,9,1,1,1,26,1,29,1,28,1,29,3,10,1,9,2,10,1,8,1,9,1,16,1,12,1,11,2,12,1,16,1,9,2,10,1,9,1,12,1,29,1,28,4,29,1,28,4,1,179,}, + {1,61,8,1,11,1,12,5,16,1,12,4,17,1,12,1,17,1,12,2,11,1,12,1,16,1,9,1,16,1,1,1,12,1,28,5,7,1,12,2,27,1,28,2,25,1,9,1,26,1,29,2,9,1,27,1,26,2,29,2,26,1,29,1,28,1,29,2,26,2,29,1,28,1,29,1,26,4,28,1,26,1,29,5,28,1,26,1,28,1,29,1,27,1,28,2,26,1,10,1,9,1,12,1,9,1,10,1,9,3,10,1,16,1,11,2,12,2,7,2,27,1,28,5,29,1,28,5,1,178,}, + {1,61,28,1,11,1,12,4,16,1,12,3,17,1,12,8,17,3,11,1,1,1,11,1,6,1,28,8,12,1,9,1,29,1,28,1,26,1,9,1,25,1,29,1,26,2,29,1,25,1,29,2,26,1,29,2,26,2,29,1,9,2,26,2,29,5,28,2,26,1,29,1,28,1,29,1,26,2,28,2,26,2,9,2,10,1,12,1,9,1,10,1,9,1,10,2,7,2,12,1,11,3,28,3,29,1,9,1,28,2,29,1,6,1,28,4,1,178,}, + {1,62,28,1,1,1,11,1,16,2,17,1,12,1,16,1,11,1,12,5,17,5,11,4,1,1,11,1,10,1,28,6,7,1,9,1,26,2,9,2,15,1,29,1,26,4,9,1,29,2,25,1,26,1,28,1,26,1,29,2,26,1,25,1,26,4,29,2,26,2,29,2,28,1,29,2,15,1,9,1,28,3,29,1,10,1,12,2,9,1,11,1,9,1,10,1,9,2,16,1,6,2,10,1,11,1,1,1,29,1,28,2,29,1,26,1,28,3,6,1,26,1,28,4,1,177,}, + {1,62,28,1,12,1,11,1,12,1,11,1,16,1,12,8,17,5,11,2,17,2,11,1,1,2,11,1,28,5,9,2,26,2,27,1,15,1,26,1,28,1,27,1,9,1,29,1,9,1,26,1,29,1,26,1,28,2,9,1,26,1,29,3,26,1,25,1,26,1,29,1,28,1,29,1,26,1,28,1,26,1,15,1,25,1,26,1,28,2,15,2,29,1,28,2,29,1,15,1,12,2,9,1,12,2,16,1,9,1,10,1,9,1,16,3,6,1,9,1,28,1,29,1,28,2,29,2,28,2,6,1,28,6,1,176,}, + {1,63,28,1,11,2,16,1,11,1,16,1,12,1,16,1,12,6,17,4,11,2,17,1,12,2,11,3,1,1,9,1,28,6,29,1,9,1,10,1,29,1,27,1,9,1,29,2,9,1,29,1,26,1,25,1,29,1,26,2,28,1,29,2,9,2,26,1,29,2,26,3,29,1,26,2,29,1,26,2,28,2,29,2,28,3,27,1,17,1,9,1,10,1,9,1,12,1,10,1,6,1,7,1,12,1,17,1,9,1,16,1,10,1,28,2,26,1,9,1,29,1,28,3,9,1,7,1,28,7,1,175,}, + {1,64,28,1,1,1,11,1,12,2,16,1,12,2,17,2,12,2,17,8,11,6,1,2,9,1,28,5,10,1,16,1,27,1,10,1,27,1,29,1,10,1,29,1,28,1,25,1,29,2,9,1,29,3,28,1,26,6,25,1,29,2,26,1,29,5,28,1,26,1,11,1,9,1,30,1,29,1,27,1,17,1,9,2,10,1,9,4,27,1,9,1,17,1,10,1,28,1,27,1,26,1,25,1,15,1,29,1,28,2,25,1,17,1,29,1,28,4,29,2,28,2,1,174,}, + {1,65,6,1,1,1,11,1,12,1,11,1,12,1,16,1,12,3,17,5,11,1,17,2,11,8,1,2,12,1,28,4,12,1,1,1,9,1,11,1,10,1,29,1,9,1,28,1,27,1,9,1,29,2,26,1,29,2,26,1,15,1,25,1,29,3,26,2,15,1,9,1,29,4,28,1,25,1,9,1,26,1,29,1,9,2,27,1,12,3,9,1,10,1,6,1,28,1,9,1,27,2,26,1,9,1,10,1,28,1,10,1,9,1,28,1,10,2,25,1,26,1,28,1,9,1,16,1,6,1,28,9,1,173,}, + {1,66,29,1,1,1,17,1,12,7,17,4,11,2,17,1,11,2,17,3,11,1,12,1,11,3,1,2,9,1,28,6,10,1,12,1,11,1,12,1,9,1,29,2,9,2,12,1,15,1,26,3,29,1,26,1,28,1,26,1,29,1,26,1,29,2,26,1,29,2,26,1,15,1,11,1,9,1,29,1,28,3,25,1,10,1,9,1,7,1,9,1,11,1,10,1,25,1,9,1,15,1,26,1,29,1,6,1,10,1,9,1,27,1,28,1,26,1,10,1,9,1,29,1,28,1,12,1,16,1,6,1,28,10,1,172,}, + {1,67,8,1,1,1,11,1,17,1,12,5,17,4,11,2,17,1,11,5,17,1,11,2,17,1,11,2,1,3,9,1,28,4,9,1,11,3,9,1,12,1,17,1,9,2,11,1,12,3,27,1,28,1,26,1,9,1,26,1,29,1,26,2,29,4,26,1,11,2,9,1,29,1,28,1,29,1,9,2,15,1,11,1,9,1,11,2,25,1,28,1,29,2,28,2,9,1,17,1,9,1,29,1,28,1,29,1,9,2,29,1,28,1,29,1,27,1,7,1,28,10,1,172,}, + {1,67,28,1,6,1,11,2,17,1,12,2,11,1,12,2,17,1,11,1,12,1,17,1,11,9,17,4,11,3,1,2,12,1,6,1,28,4,7,1,11,1,10,1,29,1,17,1,11,1,12,1,9,1,12,1,9,1,7,1,12,1,17,1,15,1,9,1,26,3,29,4,26,3,29,1,28,2,15,1,11,1,12,1,11,1,12,2,11,1,27,1,28,1,29,1,28,2,29,1,26,1,25,1,12,2,26,1,28,2,10,1,9,1,29,1,28,3,26,1,29,1,28,9,1,172,}, + {1,69,10,1,17,1,1,1,11,2,16,1,11,1,12,2,11,12,17,1,11,2,17,1,11,5,1,3,12,1,10,1,29,1,28,4,10,1,11,1,17,1,16,1,12,1,9,1,11,2,12,1,16,1,10,1,26,1,28,2,26,1,29,1,26,2,28,1,29,2,28,1,29,2,26,1,9,1,15,1,9,1,26,1,1,1,15,1,29,2,28,1,29,2,15,1,1,1,9,1,15,2,29,1,28,2,27,1,9,1,29,1,28,3,30,1,25,1,28,10,1,171,}, + {1,66,28,1,1,3,28,1,11,4,16,1,17,1,12,2,11,23,1,2,11,1,1,1,12,1,7,1,28,3,29,1,12,1,16,1,12,1,11,1,12,1,16,1,9,1,12,1,9,1,29,2,26,2,28,1,29,2,28,1,29,1,26,1,9,1,27,1,9,1,11,1,10,1,29,1,28,1,26,1,25,1,26,1,28,1,29,1,28,1,29,3,28,1,27,1,9,1,29,1,26,1,28,1,26,1,9,1,28,1,29,1,10,1,26,1,28,2,25,2,28,9,1,170,}, + {1,71,28,1,11,4,12,1,11,1,17,1,12,1,11,27,1,3,16,1,28,2,12,1,16,1,9,1,16,1,9,1,12,3,9,1,29,1,28,1,26,1,9,1,25,1,26,1,25,1,28,1,25,1,15,1,9,2,11,1,9,1,28,2,29,1,9,1,25,1,28,2,9,2,25,1,29,2,28,1,27,1,25,1,9,1,26,1,28,1,26,1,28,1,29,1,9,1,25,1,28,1,29,1,9,2,26,1,28,8,1,170,}, + {1,72,28,1,11,4,12,1,17,1,11,26,1,1,11,1,1,1,11,2,1,1,11,1,28,2,12,1,11,1,9,2,16,1,12,1,11,1,12,1,10,1,27,1,12,3,11,1,26,1,28,1,15,1,9,1,27,1,10,1,27,2,11,1,9,1,28,1,26,2,28,1,29,1,9,1,12,1,15,1,12,1,9,1,29,2,25,1,9,1,25,1,28,1,29,1,28,1,29,1,27,1,26,1,28,1,29,1,9,2,26,1,28,8,1,170,}, + {1,73,28,1,12,1,11,4,12,1,17,1,11,22,1,1,11,8,12,4,11,1,12,4,17,1,11,1,12,3,17,1,12,1,29,1,26,1,9,1,12,1,1,2,15,1,9,1,27,1,29,2,26,2,29,1,12,1,9,1,10,1,9,4,28,1,26,1,12,1,9,1,29,1,27,1,26,1,29,1,28,4,29,1,9,1,27,1,29,1,28,8,1,169,}, + {1,74,28,1,9,1,1,1,11,2,17,1,11,31,17,1,11,1,9,1,12,2,11,2,9,1,12,1,11,1,12,2,11,3,12,1,9,2,15,1,9,1,11,2,9,1,15,1,9,1,29,2,15,1,26,1,28,1,26,1,27,1,9,1,8,1,12,2,27,2,29,1,27,1,9,1,29,1,28,1,9,1,15,1,27,1,28,5,29,1,9,2,28,8,1,169,}, + {1,76,29,1,1,1,11,34,12,9,11,2,12,1,11,2,9,3,27,1,10,1,27,1,29,1,6,1,27,1,28,1,29,1,12,1,11,1,12,1,9,1,25,1,27,1,12,2,16,1,10,2,6,1,12,1,9,1,10,2,26,1,9,2,28,2,26,1,27,1,10,1,26,1,30,1,15,1,25,1,26,1,28,7,1,169,}, + {1,77,28,1,11,1,1,1,11,1,17,1,11,29,12,3,9,1,12,5,9,1,12,1,17,1,11,3,17,1,12,1,9,1,10,1,27,2,7,3,10,1,11,3,12,6,16,1,9,5,12,2,9,1,10,2,7,2,10,1,9,1,10,2,9,1,27,1,26,1,29,2,26,1,28,6,1,168,}, + {1,78,28,1,11,1,1,1,11,5,1,1,11,24,12,6,17,1,11,1,17,1,12,4,17,2,11,9,1,4,11,6,17,1,11,2,17,1,12,1,17,1,11,1,16,1,9,4,10,2,9,2,7,1,9,1,12,1,28,2,25,1,29,1,28,7,1,167,}, + {1,79,28,1,17,1,1,2,11,1,1,1,11,3,1,2,11,21,12,7,17,1,11,1,12,7,11,24,16,1,10,2,9,3,10,3,9,1,11,1,16,1,29,1,28,2,15,2,28,3,10,1,6,1,28,2,1,167,}, + {1,80,28,1,11,3,1,1,11,1,1,1,11,15,1,4,11,5,12,9,11,1,12,7,11,22,12,1,9,1,10,2,9,1,10,1,9,4,7,1,10,1,16,1,11,1,26,1,29,2,27,1,29,2,28,5,1,167,}, + {1,80,28,1,6,1,12,1,11,1,1,3,11,1,1,2,11,21,17,1,12,8,11,2,12,6,17,1,11,15,17,1,11,2,17,1,11,1,12,1,9,1,12,1,16,1,9,1,8,2,9,3,16,1,9,1,6,2,9,1,29,1,12,1,29,1,28,3,29,1,28,1,29,1,28,3,1,166,}, + {1,81,28,1,12,3,11,3,1,1,11,3,1,4,11,8,17,2,11,5,12,10,11,2,12,10,17,1,11,1,17,1,11,2,17,1,12,6,17,1,12,1,17,1,11,1,9,1,7,1,9,1,12,1,9,1,10,1,9,1,16,1,9,1,8,1,9,2,10,1,7,1,28,1,29,1,27,1,28,1,27,2,29,1,28,2,29,1,28,4,1,165,}, + {1,80,28,1,27,1,12,2,9,2,12,6,11,18,17,1,12,2,9,1,12,7,11,5,12,10,11,2,17,2,12,1,17,1,12,2,17,1,12,5,10,1,6,1,16,1,12,1,9,3,16,1,9,3,16,1,9,1,28,1,29,2,27,1,29,1,28,9,1,165,}, + {1,78,28,1,6,1,12,2,9,4,10,1,9,1,12,4,9,2,12,2,11,1,12,3,11,10,17,1,12,13,17,1,11,4,17,1,12,2,11,6,17,1,11,5,12,3,9,1,10,1,12,2,7,2,11,1,16,1,7,1,29,1,9,1,12,3,16,1,29,1,7,1,9,1,26,1,10,1,26,1,28,10,1,164,}, + {1,76,28,2,12,1,11,1,12,2,9,6,10,1,9,1,12,3,9,2,12,2,17,1,11,1,17,1,12,3,11,2,9,4,12,17,11,1,17,1,11,10,12,2,11,2,12,5,9,1,7,1,9,1,11,1,10,1,9,1,6,1,17,1,9,1,29,1,9,2,12,1,11,1,9,1,6,2,9,1,27,2,25,1,28,1,29,1,28,8,1,164,}, + {1,75,28,1,6,1,11,3,10,2,9,4,12,6,17,1,11,1,12,7,11,1,12,1,9,2,10,1,12,8,9,2,12,4,9,2,12,7,11,5,12,1,9,1,12,12,9,1,7,1,12,2,9,1,6,1,27,1,29,1,28,1,10,1,6,1,9,3,29,3,28,1,29,1,28,3,29,1,28,1,29,1,28,5,1,164,}, + {1,74,28,1,10,1,1,1,11,2,12,1,10,1,9,2,12,19,9,1,27,1,9,2,12,3,9,2,12,3,9,7,12,1,9,2,12,4,11,2,12,16,16,1,12,2,10,1,16,1,9,1,6,1,12,1,11,1,25,1,28,3,6,1,16,1,12,1,29,1,28,3,26,1,28,4,29,1,28,1,29,1,28,4,1,164,}, + {1,73,28,1,17,1,1,1,11,1,12,2,9,1,12,20,9,1,10,1,27,1,9,5,12,1,9,1,12,1,11,1,12,1,9,1,12,2,9,5,12,1,9,2,12,8,9,2,12,9,9,3,16,1,9,4,10,1,29,1,9,1,11,1,26,1,28,4,10,2,29,3,28,6,26,1,30,1,28,4,29,1,28,1,1,163,}, + {1,73,28,1,1,1,11,1,17,1,12,1,11,1,12,16,9,1,12,3,9,9,12,8,9,2,12,4,9,2,12,2,9,1,12,3,9,2,12,3,11,1,12,6,9,4,16,1,7,1,9,1,17,1,9,1,10,1,28,1,29,1,27,1,29,1,28,2,27,1,10,1,28,2,25,1,11,1,26,1,29,1,28,4,26,1,28,1,27,1,28,4,6,1,28,1,1,163,}, + {1,73,28,1,12,1,11,1,17,1,12,1,9,1,12,20,9,6,12,1,9,1,12,1,9,2,12,1,11,2,12,20,11,1,12,5,11,1,12,1,9,1,10,1,7,1,9,1,12,1,11,1,10,1,8,1,9,1,10,1,9,1,29,1,28,2,29,1,28,1,26,1,9,1,10,1,29,1,9,3,26,1,29,1,28,4,25,1,29,1,27,1,28,7,1,162,}, + {1,74,28,1,11,2,12,1,11,1,9,1,12,12,11,4,12,5,9,6,12,2,9,1,17,1,11,1,12,19,9,2,12,8,9,1,10,1,7,1,9,1,12,2,7,2,10,1,9,1,10,1,28,2,27,1,25,1,28,1,27,1,12,1,10,1,29,1,26,1,29,1,26,1,29,1,28,2,29,1,25,1,29,1,9,1,28,1,26,1,28,7,1,162,}, + {1,75,10,1,11,2,12,9,17,1,11,4,12,1,9,2,12,4,9,6,12,1,9,1,12,2,11,1,9,1,28,1,27,1,9,1,12,1,9,4,12,18,16,1,9,1,7,1,9,1,12,2,9,1,16,1,12,1,9,1,10,1,9,1,10,1,9,2,29,1,28,4,29,1,27,1,29,1,28,2,29,2,28,1,26,1,28,2,29,2,28,1,26,1,29,1,28,8,1,161,}, + {1,75,28,1,12,1,11,1,12,4,11,6,12,2,9,5,10,1,9,3,12,4,9,2,12,1,9,1,12,2,11,1,27,1,28,2,12,1,17,1,12,3,9,1,12,3,9,1,12,2,9,3,12,3,17,1,12,2,9,1,12,2,10,4,12,1,16,1,9,2,10,2,9,1,10,1,9,3,29,1,28,1,29,1,28,2,9,1,29,1,28,5,26,1,29,1,28,3,29,1,28,1,9,1,7,1,28,5,6,1,28,2,1,161,}, + {1,74,28,3,27,1,11,1,12,1,11,4,12,1,9,2,27,1,9,3,10,3,9,3,10,1,9,2,12,4,9,1,17,1,11,1,27,1,28,1,29,1,28,3,17,1,12,1,9,3,12,2,9,1,12,10,17,1,12,3,9,1,12,2,10,2,9,1,12,1,9,1,10,2,9,7,28,1,27,1,17,1,28,1,26,1,9,2,29,1,28,10,30,1,9,1,7,1,28,1,29,1,28,2,29,1,28,4,1,160,}, + {1,73,28,4,29,1,12,1,11,1,12,3,9,1,27,4,10,1,9,9,27,1,9,1,12,1,9,2,12,1,11,3,28,6,11,1,12,4,9,2,12,1,9,2,12,1,11,1,12,5,17,1,12,1,10,1,9,1,17,1,16,3,7,1,10,1,12,1,11,1,16,1,9,4,10,1,27,1,29,1,28,4,29,1,28,1,26,1,15,1,9,1,28,4,26,1,28,4,29,1,28,1,30,1,15,1,28,2,27,1,28,2,7,1,28,4,1,160,}, + {1,71,28,3,29,3,27,8,10,1,9,2,10,2,9,6,10,2,12,1,9,2,12,3,11,2,17,1,28,5,9,1,11,2,12,4,17,1,12,2,11,2,12,1,17,1,12,3,16,1,10,2,9,1,12,2,16,1,9,1,16,1,9,2,27,1,26,1,27,1,16,2,27,1,28,2,29,2,28,3,26,1,29,3,26,1,28,4,29,1,15,1,29,2,28,4,26,1,28,2,9,1,27,1,26,1,27,1,7,1,28,1,26,1,29,1,28,1,1,160,}, + {1,70,28,2,29,1,27,1,29,1,28,1,29,2,28,2,29,1,26,1,27,4,9,4,10,2,9,4,12,1,27,1,10,2,12,3,11,2,28,7,11,2,12,5,17,1,12,2,11,2,12,2,10,1,9,1,8,1,16,1,10,1,9,1,1,1,11,1,10,1,12,1,17,1,9,2,10,1,28,3,25,1,12,1,26,1,28,1,29,1,9,1,15,1,26,1,28,2,27,1,15,1,27,1,28,2,29,2,26,1,28,3,29,1,28,1,29,4,28,2,6,1,10,1,9,1,28,4,29,1,28,3,1,159,}, + {1,69,28,2,29,5,28,3,26,1,27,7,10,1,9,1,10,4,9,3,27,1,12,1,9,1,12,1,9,1,12,1,11,1,12,1,28,5,10,1,17,1,1,1,12,1,17,1,9,4,16,1,9,1,12,1,9,1,16,1,12,3,9,3,16,1,17,1,11,2,12,1,16,1,11,2,9,2,25,1,28,3,29,1,9,1,29,1,28,1,26,1,9,1,15,1,26,1,28,2,26,1,9,1,28,3,27,1,15,1,28,3,29,1,25,1,29,1,28,5,30,1,28,1,25,1,28,5,25,1,28,4,1,158,}, + {1,68,28,2,29,3,28,1,29,2,28,1,29,2,28,1,29,1,26,1,27,9,9,6,12,2,11,1,12,1,11,1,12,1,28,3,29,1,16,1,11,1,12,2,17,1,9,1,10,1,26,1,29,2,8,1,9,3,12,1,17,1,9,2,11,3,12,1,9,1,12,1,11,1,16,1,17,1,11,1,17,1,16,1,9,2,27,1,28,4,25,1,26,1,28,2,29,1,26,2,27,1,29,1,28,4,29,1,26,2,28,3,26,2,29,1,28,5,26,1,10,1,25,1,28,1,10,1,28,2,29,1,26,1,28,3,1,159,}, + {1,66,28,3,29,1,28,2,29,1,28,1,29,1,28,2,29,2,26,2,29,1,26,3,29,1,26,1,27,1,10,1,9,5,12,6,11,1,10,1,28,2,6,1,11,2,16,1,9,1,12,1,10,1,27,1,26,1,28,1,10,1,30,1,7,1,11,1,16,1,12,2,6,1,29,2,26,1,27,1,29,1,6,2,9,1,12,1,11,3,1,1,11,1,9,1,10,1,28,3,29,3,26,1,29,2,28,3,29,1,26,1,28,1,26,1,15,1,9,1,28,3,29,1,26,1,28,2,29,1,26,1,28,6,26,1,9,1,26,1,28,1,9,1,28,4,29,1,28,2,1,159,}, + {1,65,28,6,29,1,28,5,29,2,26,1,27,1,26,1,28,2,27,3,9,7,12,4,11,1,9,1,28,2,9,1,11,1,12,3,17,2,10,1,28,1,26,2,25,1,11,1,17,1,16,1,11,1,6,1,12,1,11,1,29,1,28,1,26,1,28,1,29,1,9,1,26,1,28,1,12,2,16,1,12,1,11,1,12,1,27,1,28,5,29,4,28,8,15,1,11,1,15,1,29,1,28,2,26,2,28,1,26,1,28,1,29,1,28,1,29,1,28,4,9,2,29,1,28,1,10,1,28,4,29,1,28,2,1,159,}, + {1,64,28,4,29,1,28,7,29,2,26,3,27,5,9,6,12,3,11,2,12,1,28,2,27,1,10,1,11,2,9,2,10,2,9,1,26,1,28,1,26,1,25,1,26,1,9,4,29,1,9,2,28,2,29,1,26,2,29,1,28,2,9,1,11,3,12,1,29,1,28,1,29,3,26,1,9,1,26,1,29,2,28,1,29,1,26,1,29,3,28,3,15,1,1,1,9,1,28,1,29,1,25,1,15,1,26,1,29,2,28,2,29,3,28,2,26,1,29,1,25,1,28,1,29,2,28,1,7,1,9,1,29,1,28,3,1,159,}, + {1,64,28,2,29,1,28,4,29,1,28,3,29,2,26,1,27,1,26,1,27,3,9,6,12,2,9,1,12,1,11,3,28,4,27,1,11,1,27,1,26,2,29,2,28,1,29,2,28,1,26,1,25,1,26,1,28,1,17,1,11,1,26,1,11,1,10,1,28,2,29,2,27,1,25,1,28,1,29,1,17,1,12,1,17,1,12,2,9,1,28,1,29,2,28,2,25,1,11,1,25,1,28,1,29,1,25,1,26,1,29,4,28,3,26,1,9,1,26,1,28,1,26,1,9,1,28,3,29,2,28,1,26,1,28,2,26,1,27,1,28,2,9,1,28,1,30,1,28,1,29,1,6,1,10,2,28,3,1,159,}, + {1,63,28,8,29,1,28,2,29,3,26,2,27,4,10,3,9,1,12,1,9,2,12,1,17,1,11,2,27,1,28,5,12,1,25,1,29,1,28,4,29,4,26,2,25,1,9,1,15,1,9,1,11,2,29,1,28,4,9,2,28,1,27,1,11,1,17,1,10,1,16,1,12,1,25,1,26,2,29,1,9,2,29,1,26,1,29,1,26,1,25,1,15,1,29,1,28,1,29,1,28,1,26,1,9,1,28,1,29,1,28,12,26,1,29,2,26,1,28,4,29,1,28,1,29,1,6,1,7,1,10,1,6,1,28,3,1,159,}, + {1,62,28,5,29,1,28,6,29,4,26,1,27,5,10,1,27,2,10,1,12,1,17,1,11,2,10,1,28,4,29,1,9,1,26,1,28,3,29,1,28,1,29,3,26,2,29,2,26,1,15,1,11,1,9,1,26,1,11,1,26,1,29,1,26,1,9,1,26,1,28,2,26,1,28,1,29,1,27,1,9,2,12,1,9,1,26,1,29,3,15,1,1,1,11,1,9,1,26,1,29,1,28,2,26,1,29,1,28,1,26,1,25,1,26,1,29,2,28,2,29,1,28,2,29,1,28,5,29,1,26,1,29,1,28,1,29,1,28,6,29,2,7,2,28,5,1,158,}, + {1,61,28,6,29,1,28,6,29,4,26,1,27,2,10,1,27,1,10,1,9,1,10,2,12,1,11,1,12,1,7,1,28,5,9,1,12,1,9,1,25,1,9,1,28,3,29,5,26,1,29,2,26,1,9,1,26,1,27,1,26,1,29,1,28,1,29,1,25,1,11,1,9,1,29,1,28,1,29,1,26,1,29,1,28,1,27,1,15,1,9,1,29,3,26,3,25,1,14,1,9,1,29,1,28,1,29,1,26,1,29,1,26,2,28,2,29,1,28,2,26,2,28,11,29,2,28,3,26,1,28,1,30,1,15,1,9,1,16,1,9,1,7,1,28,5,1,158,}, + {1,61,28,1,6,1,28,7,29,1,28,3,29,3,26,1,27,2,9,4,10,1,9,1,11,2,6,1,28,7,7,1,11,1,12,1,10,1,27,1,29,1,25,1,28,1,29,4,26,12,29,2,28,1,26,2,28,1,26,2,29,2,9,1,25,1,29,1,26,3,29,3,26,1,28,1,29,1,26,1,9,2,26,1,29,3,28,1,29,1,26,1,25,1,29,1,28,7,29,2,26,2,29,2,28,2,29,1,26,1,28,3,9,1,16,1,6,1,28,2,26,2,28,3,1,158,}, + {1,60,28,3,29,1,28,1,29,1,28,3,29,1,28,1,29,1,28,1,29,4,26,1,27,2,9,2,12,3,1,1,12,1,28,9,9,1,17,1,29,1,9,1,11,1,26,1,28,1,29,5,26,2,29,2,26,1,25,1,26,3,29,1,28,3,29,1,26,1,25,1,26,1,28,1,26,1,29,1,26,6,9,1,26,1,28,1,26,4,29,2,26,1,29,1,26,1,29,2,26,1,25,1,26,1,29,1,28,3,29,1,28,5,29,2,26,1,29,3,28,1,29,2,28,2,27,1,15,1,8,1,7,1,28,2,29,1,28,2,29,2,28,1,1,158,}, + {1,60,28,3,27,1,26,1,28,2,29,1,26,1,29,7,27,2,26,1,9,1,12,3,11,1,12,1,29,1,28,5,9,1,11,1,27,1,30,1,26,1,9,4,27,1,11,1,25,1,28,3,29,2,26,2,29,2,26,1,25,1,26,1,29,1,28,2,26,8,29,3,26,1,28,2,9,1,15,1,25,1,26,10,29,2,26,2,29,7,28,3,26,1,15,1,26,1,29,2,28,1,29,2,28,1,29,2,25,1,12,1,25,1,28,3,7,1,9,1,7,1,28,3,29,1,28,1,1,158,}, + {1,60,28,3,29,1,26,1,28,1,29,1,27,2,26,1,27,1,29,1,26,1,29,2,28,1,27,1,9,2,12,1,11,2,12,1,28,8,11,1,9,1,26,1,9,1,26,1,28,1,26,1,15,1,9,1,29,1,25,1,26,1,28,2,29,3,26,2,29,2,26,2,28,2,26,2,25,1,26,9,29,1,26,1,29,2,26,11,29,1,26,2,29,1,26,1,29,4,26,1,29,2,28,4,26,1,25,1,26,1,29,1,28,2,29,2,28,2,29,1,9,2,29,1,28,3,6,1,10,1,6,1,28,3,29,1,28,2,1,157,}, + {1,60,28,2,9,2,27,1,28,1,27,8,29,2,10,1,27,1,29,1,28,10,26,1,9,1,25,1,29,2,26,2,15,1,29,1,28,1,15,2,25,1,9,1,29,1,28,1,29,3,26,2,29,2,26,16,29,1,26,2,29,1,26,12,29,2,26,1,29,5,28,2,29,2,28,6,29,5,28,3,9,1,15,1,26,1,28,3,9,2,6,1,28,4,6,1,28,1,1,157,}, + {1,59,28,4,6,1,27,1,12,2,9,1,27,1,9,1,12,2,27,1,28,13,1,1,11,1,15,1,9,1,25,1,29,4,26,2,28,2,9,1,25,1,28,1,9,1,26,1,28,1,29,1,28,1,29,1,26,3,29,2,27,1,26,30,29,1,26,3,29,7,28,6,29,2,28,2,29,2,26,1,29,1,28,1,26,1,15,1,25,1,28,3,25,1,9,1,26,1,29,1,27,1,29,1,28,1,29,1,28,1,1,157,}, + {1,59,28,21,9,1,17,1,9,1,29,2,25,1,27,1,26,4,29,1,26,3,28,1,29,3,28,2,29,1,27,1,26,1,29,2,28,1,29,1,26,3,29,2,27,2,26,28,29,1,26,3,29,8,28,5,10,1,11,1,25,1,28,1,29,5,28,1,29,4,28,2,26,1,9,1,29,1,28,1,6,3,29,1,28,1,1,157,}, + {1,59,28,17,6,1,11,2,15,1,25,1,26,1,27,1,25,1,26,2,29,1,26,1,25,1,26,1,29,1,26,1,11,1,9,1,29,1,26,1,29,2,28,1,29,1,26,1,29,1,28,2,29,4,26,3,29,2,26,21,25,2,26,15,29,2,28,1,29,2,28,4,11,2,9,2,28,2,29,4,28,7,29,1,28,3,6,1,7,1,6,1,28,2,1,156,}, + {1,59,28,14,9,1,28,2,29,1,15,1,9,1,29,2,26,3,9,3,25,1,26,1,27,1,26,1,29,1,26,2,29,3,26,1,29,1,28,3,29,6,26,4,29,1,26,4,25,1,26,10,27,2,26,3,27,2,26,1,27,1,26,7,27,1,26,9,29,1,28,3,26,1,15,1,1,1,12,1,27,1,15,1,26,1,28,1,29,1,26,1,29,4,28,7,6,1,9,1,7,2,6,1,28,2,1,156,}, + {1,59,28,10,15,1,28,3,9,1,28,3,25,1,26,3,29,1,26,2,9,1,15,2,27,1,26,1,29,1,26,2,29,1,26,1,29,1,26,1,29,1,26,1,9,1,26,1,29,1,28,2,29,5,26,5,27,1,25,1,27,3,26,1,27,1,26,36,29,2,9,1,1,1,11,1,17,1,28,1,15,1,11,1,9,1,28,1,29,1,26,1,29,3,28,2,29,1,28,3,29,1,10,1,9,1,7,2,6,1,29,1,28,1,1,156,}, + {1,60,28,5,25,1,28,3,9,1,28,2,29,1,26,2,28,3,26,6,25,1,15,1,9,1,26,9,29,1,25,1,9,1,25,1,29,1,28,1,29,1,26,3,25,2,27,2,26,1,27,1,25,1,27,1,26,40,29,1,26,2,28,1,9,1,1,1,11,1,9,1,29,1,28,1,26,1,15,2,29,7,28,4,10,1,9,1,8,1,7,1,6,3,28,1,1,156,}, + {1,61,28,4,26,1,28,3,26,3,29,2,26,2,28,3,29,2,26,2,29,1,26,1,27,1,26,3,29,1,26,1,9,2,26,2,25,1,29,1,26,29,29,3,26,23,29,2,26,2,29,1,12,1,27,1,12,1,1,1,9,1,29,1,27,1,29,2,26,1,9,1,26,1,29,2,28,1,29,2,28,3,9,1,16,1,10,1,8,1,7,1,6,2,29,1,28,2,1,155,}, + {1,57,28,1,1,2,28,7,29,1,28,3,29,1,28,3,26,1,29,1,28,1,29,2,26,10,9,1,14,1,15,1,27,1,26,1,27,1,25,1,26,1,29,1,26,2,25,3,15,1,9,2,25,2,26,14,25,1,9,4,25,1,27,1,26,2,29,2,26,14,29,1,26,2,29,1,26,1,29,1,27,1,25,1,12,1,1,1,11,1,9,1,11,1,1,1,10,1,28,1,9,1,26,1,29,1,26,2,9,1,29,1,28,4,9,1,12,1,9,1,7,1,10,1,7,1,6,1,10,1,7,1,29,1,28,2,1,155,}, + {1,61,28,5,29,2,28,7,29,2,28,1,29,2,26,1,29,1,28,1,29,1,26,5,25,1,9,3,25,1,26,2,29,1,26,1,9,1,15,3,9,1,25,1,26,19,25,1,9,4,15,1,9,2,25,1,27,1,26,1,27,2,26,10,25,2,26,4,25,1,15,1,9,1,11,1,1,1,11,2,17,1,11,1,1,1,11,1,10,1,29,1,9,1,29,3,26,1,11,1,26,1,29,1,9,1,15,1,9,2,10,2,9,1,10,3,7,1,6,2,28,1,1,155,}, + {1,61,28,5,29,1,28,4,29,1,28,3,29,1,28,3,29,1,26,2,29,1,26,5,25,1,26,4,25,1,9,1,15,3,9,1,27,1,26,20,25,8,9,2,15,1,9,2,10,1,27,1,26,5,27,1,25,1,9,2,27,1,9,5,15,1,11,1,1,1,11,1,9,1,6,1,1,1,11,5,1,1,11,1,26,1,29,1,9,1,29,1,26,1,29,1,26,1,11,1,25,1,28,1,29,1,9,4,10,2,27,1,29,1,28,1,6,1,29,1,28,2,1,154,}, + {1,63,28,1,29,2,28,2,26,1,28,5,29,2,28,1,29,1,26,2,27,1,26,3,25,1,27,2,25,1,9,3,15,3,9,2,27,1,26,1,29,3,26,3,29,2,26,22,29,1,26,2,25,1,9,1,15,5,12,1,9,8,25,3,9,1,11,1,15,1,9,1,26,2,8,1,1,1,11,7,29,1,9,2,29,2,28,1,26,1,15,1,30,1,9,4,10,1,29,1,28,4,27,1,6,1,28,2,1,154,}, + {1,64,28,2,29,1,28,1,29,1,26,3,28,1,26,2,29,2,26,1,9,8,12,5,9,1,25,1,27,1,26,1,29,1,26,1,29,1,26,1,27,1,9,2,25,1,27,1,25,3,26,27,25,1,9,1,15,2,9,1,10,1,26,4,27,2,25,5,9,1,25,1,29,3,28,1,9,1,1,1,11,2,7,1,12,1,1,2,15,1,28,1,11,1,9,1,29,1,28,2,26,1,11,1,10,1,28,2,9,1,10,1,28,5,27,2,28,2,1,154,}, + {1,65,28,2,29,1,26,2,25,1,26,11,25,3,9,3,12,1,9,2,10,1,27,2,25,1,9,2,25,1,9,2,15,1,9,11,25,2,26,24,25,1,9,2,15,1,9,1,10,1,25,1,26,1,27,1,25,1,27,1,9,1,15,2,26,1,25,1,27,1,26,2,28,1,9,1,1,1,11,1,27,1,28,1,12,1,1,2,10,1,27,1,15,1,27,1,29,1,26,2,27,1,16,1,9,1,6,1,28,4,29,1,25,1,28,1,29,2,28,3,1,153,}, + {1,66,28,3,26,19,27,1,25,3,27,1,25,2,9,1,25,1,26,15,25,1,9,1,15,1,9,3,25,2,26,6,25,9,27,2,26,4,27,1,9,1,15,1,9,1,15,1,25,1,26,3,25,2,27,1,17,1,15,1,9,1,27,1,29,1,26,1,11,1,15,1,26,3,11,1,1,1,12,1,27,1,11,1,27,1,29,2,28,2,9,1,11,1,9,1,28,4,9,2,28,2,27,1,29,1,28,2,1,153,}, + {1,68,28,3,29,1,26,2,27,1,26,20,29,1,26,17,29,2,26,1,25,2,9,5,25,4,26,5,27,1,25,1,27,1,26,1,27,1,25,6,27,1,25,1,26,2,29,1,26,1,15,1,11,1,12,1,16,1,17,1,12,1,9,4,15,2,9,2,25,1,9,1,1,1,11,1,26,1,12,1,11,1,29,2,28,2,25,1,12,1,15,1,25,1,29,1,28,2,30,1,15,1,29,1,28,1,25,1,26,1,28,3,1,152,}, + {1,70,28,4,29,1,26,2,27,2,26,3,27,1,26,29,25,1,26,4,29,1,26,1,27,1,25,6,26,4,27,1,26,2,25,3,26,2,27,3,25,2,27,1,26,2,9,1,15,2,1,2,11,1,16,2,11,2,12,1,9,1,15,1,11,1,9,1,25,1,9,1,25,1,26,1,17,1,11,1,6,1,9,1,11,1,29,2,28,1,29,2,9,1,17,1,9,1,29,1,28,3,27,2,29,1,9,1,28,4,1,152,}, + {1,74,28,4,29,2,26,1,25,1,26,12,25,1,26,1,25,2,26,13,25,1,29,1,26,3,25,3,26,4,25,3,26,2,25,11,9,3,26,2,27,1,26,1,9,1,25,1,26,1,9,1,11,1,1,1,11,1,9,1,11,2,17,1,10,1,25,1,15,1,9,1,25,1,27,1,26,2,16,1,11,1,10,1,25,1,11,1,26,1,28,1,29,1,28,2,10,1,9,1,26,1,28,1,26,1,9,1,28,2,9,1,10,1,29,1,28,4,1,152,}, + {1,78,28,4,29,1,26,1,27,1,25,2,27,1,25,1,26,6,25,1,9,8,26,1,25,2,26,2,27,1,26,3,25,2,26,8,25,2,26,4,27,1,25,3,27,1,26,1,27,2,25,1,9,2,25,1,26,2,27,2,25,1,9,3,12,1,11,1,1,2,16,1,12,2,11,1,9,1,30,1,9,1,15,1,9,1,27,1,26,1,25,1,9,1,11,1,9,1,29,1,11,1,15,1,29,1,28,1,30,1,12,1,30,1,28,1,25,1,29,2,9,2,27,1,28,3,29,1,28,4,1,151,}, + {1,82,28,5,26,2,27,3,25,1,26,7,25,1,9,6,15,3,9,1,27,1,25,1,26,4,25,6,26,1,25,4,27,1,26,2,27,2,26,1,27,1,25,1,9,3,27,2,25,1,9,3,12,1,9,2,12,2,11,1,1,1,11,1,9,2,12,1,11,1,9,1,6,1,9,1,15,1,9,1,25,1,26,1,25,1,9,1,11,1,9,1,26,1,25,1,11,2,9,1,29,1,9,2,28,2,27,2,9,3,28,1,10,1,28,3,8,1,28,2,1,151,}, + {1,86,28,4,29,1,26,1,25,1,27,2,25,1,27,2,26,4,27,4,25,1,9,3,25,1,26,1,29,1,26,2,25,1,9,1,25,1,27,1,26,1,25,3,26,5,27,1,26,3,27,2,9,3,25,1,27,1,10,1,17,1,1,2,11,2,15,1,12,1,9,3,11,3,9,1,7,1,12,1,11,1,17,1,10,1,27,1,12,1,9,1,10,1,25,2,9,1,1,1,16,1,29,1,9,1,15,1,26,1,11,2,12,1,8,1,28,2,9,1,27,1,9,2,10,1,29,1,7,1,9,1,28,2,29,1,28,2,1,151,}, + {1,90,28,4,29,1,26,2,27,1,25,2,27,1,25,6,27,1,29,1,28,2,29,1,25,1,9,1,25,1,26,1,29,4,26,6,29,1,26,4,25,2,10,1,9,7,15,1,11,1,1,2,9,3,10,1,9,1,11,1,1,1,11,1,17,1,10,1,16,1,17,1,11,2,25,1,9,1,10,1,25,2,26,1,15,1,1,1,9,1,29,1,9,1,15,1,29,2,17,1,11,1,9,1,28,1,10,1,9,1,7,1,9,2,29,1,28,1,9,1,30,1,28,1,7,1,29,1,28,3,1,150,}, + {1,94,28,4,26,1,27,1,29,1,28,25,29,2,26,2,9,1,15,1,11,2,1,1,11,2,1,1,11,1,9,2,10,1,9,1,15,1,11,1,15,1,9,4,15,1,1,1,11,1,9,2,16,1,11,1,12,1,9,1,15,1,12,1,9,1,25,1,9,1,27,1,15,1,11,1,9,1,26,1,15,1,9,1,29,2,28,1,12,1,11,1,29,1,9,2,29,1,7,2,29,1,11,1,15,1,28,2,29,1,6,2,28,2,1,150,}, + {1,117,28,7,27,1,9,1,11,1,15,1,26,1,25,1,9,1,25,1,11,1,1,3,11,1,1,1,11,1,12,1,9,3,12,2,9,3,10,2,16,1,11,2,9,2,12,1,11,2,25,1,10,1,12,1,17,1,27,1,25,2,15,1,11,1,25,1,9,1,12,1,26,1,25,1,26,1,28,1,29,1,11,1,9,1,16,1,29,2,7,1,9,1,17,1,8,1,28,2,29,1,13,1,7,2,28,3,1,149,}, + {1,118,28,7,26,1,15,1,11,1,25,1,29,1,25,1,26,1,15,1,1,2,11,3,12,1,16,1,9,3,10,1,9,5,10,1,9,1,11,2,9,2,12,1,17,2,25,1,9,2,15,1,10,1,25,1,9,1,11,2,27,1,12,1,9,1,27,1,25,1,28,1,26,1,29,1,27,1,11,1,29,1,28,1,12,1,11,1,12,1,29,1,7,1,28,1,30,1,29,1,13,1,30,1,28,4,1,149,}, + {1,118,28,10,29,1,28,1,26,1,25,1,9,1,16,2,9,2,10,2,9,9,15,4,16,1,10,1,16,1,12,1,11,1,16,1,10,2,27,1,9,1,12,1,10,1,25,1,11,1,12,1,9,1,16,1,27,1,25,1,26,2,29,1,28,2,9,1,12,2,17,1,10,1,16,1,10,1,28,2,29,1,28,1,25,1,30,1,28,5,1,148,}, + {1,118,28,10,29,1,28,2,26,1,10,1,29,1,28,1,10,1,25,1,26,1,25,1,9,2,10,2,9,1,10,1,9,2,16,1,15,2,12,1,9,2,10,1,9,1,12,1,11,1,9,4,27,1,12,1,9,1,27,1,11,2,9,2,29,1,25,1,27,1,25,1,29,1,26,1,25,1,12,2,10,1,9,1,12,1,6,1,28,2,9,1,6,1,28,8,1,148,}, + {1,118,28,4,29,1,28,6,26,1,28,2,26,1,9,1,25,1,9,5,27,1,6,1,27,1,25,1,10,1,9,5,25,1,27,1,25,1,9,1,16,1,11,1,12,1,10,1,9,3,10,1,9,3,11,1,1,1,9,2,27,1,25,2,26,2,9,2,26,1,9,1,16,2,28,3,9,1,12,1,29,1,28,3,26,1,28,5,1,147,}, + {1,118,28,9,29,1,28,1,29,1,25,2,28,2,25,1,9,3,10,1,27,1,26,2,27,1,10,7,27,2,6,1,9,1,12,1,11,1,12,1,9,2,10,3,27,1,9,2,11,1,1,1,16,1,9,1,27,1,26,1,25,2,26,1,29,3,9,1,11,1,28,3,9,1,15,1,12,1,29,1,28,1,29,1,9,2,28,5,1,147,}, + {1,118,28,6,29,1,28,1,29,3,26,2,25,2,29,1,28,1,25,2,26,6,27,1,10,4,9,3,12,1,9,5,12,1,15,1,16,1,10,1,25,3,9,1,11,3,9,1,6,1,27,1,26,4,29,2,26,1,28,2,13,1,30,1,10,1,9,1,26,1,28,2,29,1,10,1,6,1,28,5,1,147,}, + {1,118,28,9,29,1,26,4,25,3,26,3,29,2,26,3,27,2,7,1,10,2,9,6,10,1,9,1,27,1,10,1,9,1,15,1,12,1,9,3,27,1,17,1,11,2,12,1,6,1,27,1,25,1,26,2,29,1,25,1,28,3,30,1,9,1,7,1,9,1,7,1,29,1,28,2,12,1,27,1,28,7,1,146,}, + {1,118,28,9,29,1,26,10,30,1,29,1,30,2,6,1,27,2,7,1,10,4,25,2,27,1,9,1,12,1,26,1,25,1,9,3,12,1,11,1,9,1,25,1,27,1,9,1,1,1,11,1,17,1,10,1,25,1,27,1,25,2,9,1,29,1,28,3,16,1,9,1,28,1,29,1,9,1,28,2,30,1,29,1,28,3,29,2,28,3,1,146,}, + {1,117,28,10,29,1,26,4,29,2,26,5,29,3,30,1,27,2,10,3,25,1,10,1,25,4,12,1,9,1,10,1,27,1,10,1,9,1,12,1,9,2,25,1,26,1,10,1,17,1,1,1,11,1,9,1,26,1,25,1,26,1,29,1,26,2,29,2,27,2,1,1,7,2,28,2,27,1,28,2,29,1,25,1,9,1,28,6,1,145,}, + {1,117,28,11,29,1,26,10,29,3,30,1,27,1,25,1,10,7,25,2,9,1,15,1,27,1,9,1,12,1,9,2,27,1,9,1,15,1,9,1,26,1,17,1,1,3,30,1,28,3,26,1,29,2,26,1,30,1,29,1,9,1,11,1,17,1,9,1,12,1,29,2,28,10,1,145,}, + {1,117,28,11,29,2,26,8,29,4,6,1,27,1,25,1,10,2,25,1,27,1,25,2,10,1,9,2,27,1,15,1,12,1,9,2,10,3,9,3,25,1,12,1,11,1,1,1,9,1,28,2,25,1,9,1,26,1,28,1,29,1,26,1,27,1,16,1,12,1,16,1,10,1,9,2,29,2,26,1,28,7,29,1,28,1,1,145,}, + {1,117,28,11,29,4,26,6,29,3,30,1,26,1,27,3,25,2,10,1,9,3,15,1,12,1,27,1,9,1,11,1,9,1,26,1,9,2,10,1,9,1,27,1,9,1,15,1,10,1,1,1,9,1,28,1,29,1,27,1,9,1,25,1,26,1,29,1,26,1,29,1,27,1,26,1,9,1,6,1,10,1,12,1,9,1,28,2,29,2,28,2,26,1,25,1,29,4,28,1,1,144,}, + {1,117,28,11,29,2,26,6,29,1,26,1,29,3,30,2,26,2,27,2,10,1,9,2,12,2,9,1,15,1,9,1,27,1,15,1,9,1,25,1,10,1,9,2,25,1,9,1,15,1,9,3,28,2,1,1,16,1,26,1,9,1,25,1,26,1,25,2,29,1,28,2,26,1,10,1,9,2,28,3,29,1,9,1,25,1,29,1,28,2,7,2,6,1,28,1,1,144,}, + {1,117,28,13,26,6,29,5,30,2,26,1,27,2,25,3,10,2,25,1,10,1,26,1,10,1,25,1,27,1,15,1,10,1,25,1,10,1,25,1,15,2,9,2,29,1,28,2,11,1,1,2,10,1,30,1,26,1,25,1,26,4,30,1,29,1,27,1,9,1,27,1,29,2,28,1,29,1,28,4,10,1,7,1,29,1,6,2,28,1,1,143,}, + {1,117,28,11,29,4,26,5,29,2,26,3,30,2,26,1,25,6,27,1,25,1,27,1,10,1,25,2,27,1,15,1,25,1,9,1,11,1,14,1,25,2,28,3,26,1,17,1,1,1,11,1,28,1,29,1,25,1,26,1,28,2,25,2,29,2,9,1,27,1,28,1,29,3,28,4,7,1,9,1,6,4,28,1,1,143,}, + {1,117,28,13,29,1,26,7,29,1,26,6,25,5,27,2,26,1,10,1,9,1,27,2,15,1,9,1,11,1,15,2,13,1,28,3,25,1,9,1,11,3,28,2,27,2,25,1,28,2,26,1,25,3,9,2,26,1,28,2,29,2,28,2,10,2,6,1,7,2,6,3,28,1,1,142,}, + {1,117,28,13,29,1,26,6,29,3,26,3,27,2,25,4,10,1,9,4,27,1,15,2,9,1,25,1,15,2,26,1,28,2,30,1,9,1,11,2,15,1,9,1,28,1,9,1,25,1,26,1,25,1,29,1,26,3,29,1,26,2,27,1,9,1,26,1,10,1,9,1,25,1,26,2,25,1,9,1,10,1,6,1,7,2,6,1,29,1,10,1,28,1,1,142,}, + {1,117,28,13,29,1,26,6,29,4,26,2,27,2,25,1,27,2,25,1,9,4,26,1,27,1,9,1,14,1,9,1,25,1,9,2,28,2,13,1,15,1,11,1,15,1,30,1,26,1,29,1,9,1,1,1,10,2,26,1,25,1,26,3,29,4,26,1,29,2,28,2,27,1,9,1,12,1,16,1,9,1,7,1,6,1,7,1,6,3,28,2,1,141,}, + {1,117,28,13,29,1,26,5,29,6,26,3,27,7,26,1,25,4,15,1,11,1,28,3,15,1,11,2,9,1,29,1,28,2,25,1,12,1,1,1,9,1,29,1,26,1,27,1,26,6,29,1,26,1,29,2,28,2,6,1,10,1,9,1,10,1,9,2,6,6,28,2,1,140,}, + {1,117,28,13,29,1,26,4,29,8,26,1,27,3,26,4,27,2,9,1,25,1,9,1,25,1,9,1,26,1,28,2,14,1,11,1,15,1,16,1,28,2,29,1,25,1,26,1,27,1,11,1,12,1,26,1,29,1,26,1,25,1,26,3,29,2,26,3,28,2,6,1,9,1,12,1,9,1,8,1,7,1,9,3,6,1,7,1,29,2,6,1,28,2,1,139,}, + {1,116,28,14,29,2,26,2,29,1,28,1,29,8,26,2,27,5,25,2,27,1,9,1,25,1,9,1,26,1,28,1,29,1,11,1,9,3,28,2,9,3,25,1,10,1,27,1,11,1,9,1,26,8,29,2,27,1,29,2,9,2,7,2,9,3,10,1,6,1,28,2,29,1,6,2,28,3,1,138,}, + {1,116,28,11,29,3,28,2,29,4,28,1,29,4,26,3,29,1,26,1,27,1,25,2,27,1,26,1,27,2,25,2,9,1,30,1,28,1,29,1,9,3,13,1,28,1,29,1,9,2,25,3,27,1,26,1,11,1,9,1,26,1,27,1,25,1,27,1,26,1,29,1,26,1,29,4,25,1,12,2,9,2,10,1,6,2,29,1,6,1,28,2,6,2,28,2,6,1,28,2,1,138,}, + {1,116,28,15,29,7,28,1,29,1,26,8,10,1,27,2,26,1,27,3,25,1,26,1,29,1,25,1,9,2,29,1,28,1,25,1,15,1,9,1,25,1,10,2,9,3,11,1,9,1,26,2,27,1,26,5,29,3,10,1,12,1,11,1,12,1,27,1,29,1,28,5,10,1,7,2,28,2,29,1,28,3,1,137,}, + {1,116,28,15,29,2,28,1,29,4,26,2,29,2,26,5,25,1,27,1,26,2,25,2,26,1,27,2,9,1,15,1,11,1,9,1,29,1,26,1,25,1,9,1,10,2,9,1,15,2,9,2,27,1,9,1,15,1,26,1,27,1,29,1,26,3,29,2,26,1,27,1,11,2,9,1,29,3,28,1,29,1,26,1,29,2,12,2,6,1,10,1,29,1,28,6,1,136,}, + {1,116,28,15,29,1,28,3,29,1,26,1,29,1,26,2,29,1,26,3,25,2,26,1,25,2,9,1,10,1,26,1,27,1,11,1,28,1,29,1,15,1,9,3,29,1,27,1,9,5,27,3,26,2,10,1,17,1,29,1,26,1,27,1,26,3,29,1,28,1,26,1,12,1,10,1,29,2,28,2,26,3,28,1,25,1,16,1,9,3,29,1,28,8,1,135,}, + {1,116,28,13,29,1,28,1,29,1,28,3,29,2,26,3,29,2,26,1,27,1,26,1,25,1,27,1,26,2,9,2,27,1,25,1,26,1,28,1,25,1,9,2,30,1,29,1,25,1,9,2,25,1,27,4,26,1,25,1,27,1,25,2,17,1,26,2,25,1,9,2,26,2,27,2,26,1,28,4,29,1,28,3,29,1,12,1,9,2,6,1,28,8,6,1,28,1,1,135,}, + {1,116,28,4,29,1,28,14,29,2,26,1,28,1,29,1,9,3,26,1,29,1,28,1,26,4,25,1,26,1,29,1,27,1,15,1,27,1,9,2,26,1,9,1,10,1,9,2,25,3,9,4,10,1,27,2,15,1,9,3,27,1,29,2,26,2,29,1,30,1,29,4,26,1,27,1,9,1,17,1,12,1,26,1,29,1,28,9,29,1,28,3,1,134,}, + {1,116,28,22,9,1,29,1,26,1,1,1,26,1,27,1,25,1,26,2,29,1,26,2,25,1,27,1,29,1,9,1,1,1,9,1,29,1,25,1,9,1,15,1,9,4,15,3,9,3,27,1,26,1,27,1,15,1,12,1,9,1,26,2,27,1,26,2,29,2,28,2,26,1,9,1,15,1,9,3,29,1,28,1,29,1,28,3,29,2,28,9,1,134,}, + {1,117,28,2,29,2,28,11,29,1,28,5,26,2,29,1,15,1,9,1,29,2,25,1,9,3,25,1,26,1,29,1,27,1,26,1,15,1,11,1,26,1,11,1,10,1,25,1,9,3,25,4,9,1,10,1,25,3,10,1,11,1,9,1,26,1,25,1,27,3,29,1,28,1,29,1,25,1,15,2,27,1,28,2,29,4,28,3,29,2,28,1,29,1,28,2,27,1,29,1,28,5,1,133,}, + {1,117,28,2,25,1,28,12,29,1,28,5,25,2,28,1,12,1,11,1,15,1,29,1,26,1,29,1,26,1,25,1,9,1,25,1,26,1,25,1,26,2,11,1,12,1,15,1,9,1,25,4,9,3,25,1,9,1,25,1,26,2,27,1,26,1,11,1,10,1,26,2,27,2,26,2,9,1,17,1,15,1,25,1,29,7,28,2,29,3,28,4,29,1,10,1,29,1,28,6,1,132,}, + {1,117,28,3,29,1,28,11,29,1,28,5,26,1,9,1,28,1,9,1,11,1,12,1,15,1,25,1,29,1,26,3,28,1,25,1,9,1,25,1,30,1,10,1,1,1,11,1,12,1,9,11,10,1,27,1,9,1,11,1,27,1,26,1,27,4,9,1,15,1,26,1,28,1,29,9,28,2,29,1,28,4,29,1,6,2,27,1,28,6,1,132,}, + {1,117,28,4,29,1,28,2,26,2,28,4,29,1,26,1,25,1,26,1,29,3,28,1,26,1,15,1,28,1,26,1,17,1,9,1,29,1,25,1,9,1,26,2,29,1,26,2,27,1,25,1,29,1,10,1,16,1,1,1,11,1,26,1,27,3,25,8,27,1,9,1,11,1,25,1,27,1,26,1,27,1,25,1,26,1,27,1,26,1,29,10,28,1,26,1,29,1,28,1,29,1,28,2,27,1,29,1,28,6,29,1,28,3,1,131,}, + {1,117,28,4,29,1,28,10,26,5,29,1,26,1,11,1,26,1,28,1,9,1,10,1,9,1,28,1,26,1,9,1,27,1,28,1,25,1,26,2,9,2,25,1,26,1,11,1,1,1,10,1,27,1,25,8,27,1,25,1,27,1,12,1,15,1,27,1,26,1,27,3,26,3,29,1,26,3,29,9,28,2,29,1,6,1,10,1,29,1,6,1,29,1,28,8,1,131,}, + {1,117,28,4,26,1,28,17,15,1,9,1,28,1,30,1,26,1,9,1,15,1,25,1,26,1,28,1,29,1,26,2,27,1,26,1,9,1,26,2,9,1,11,1,9,1,26,1,27,1,25,5,27,1,9,2,25,1,27,1,11,1,9,1,26,2,27,1,26,3,27,1,26,1,29,1,26,2,29,8,28,2,29,1,26,1,27,1,29,1,28,1,10,1,9,1,10,1,28,2,29,1,28,6,1,130,}, + {1,117,28,4,26,1,28,11,29,1,28,5,9,1,11,1,29,2,26,1,28,1,26,2,9,5,25,2,9,2,26,2,9,1,12,1,26,1,27,1,25,1,9,5,25,1,9,1,26,2,11,1,25,1,26,3,27,3,26,2,29,7,28,2,29,3,28,2,27,2,28,1,6,1,9,1,7,2,28,2,6,1,29,3,6,1,28,3,1,129,}, + {1,118,28,3,26,1,28,11,29,1,28,5,26,1,11,1,25,1,28,1,26,1,29,1,26,1,29,2,26,3,9,1,27,1,25,2,9,1,26,1,29,1,26,1,15,1,25,2,9,6,25,2,26,1,25,1,11,1,25,1,27,1,26,2,25,1,27,2,26,3,29,9,28,1,29,1,26,1,10,2,29,1,28,4,6,1,28,1,6,1,7,1,6,1,29,1,7,1,28,4,1,129,}, + {1,117,28,4,26,1,28,11,29,1,28,5,29,1,11,1,15,1,29,1,26,1,25,1,28,1,29,1,26,1,29,1,26,1,25,1,29,1,26,2,29,1,26,1,9,1,25,1,27,1,9,1,15,1,9,4,25,6,11,1,15,1,25,1,27,2,26,7,29,11,27,1,10,1,29,1,28,3,29,1,7,1,10,1,6,2,7,3,28,1,29,3,28,2,1,128,}, + {1,117,28,4,26,1,29,1,28,10,29,1,28,6,9,1,15,1,29,1,28,1,25,1,15,1,9,1,26,1,29,2,28,1,26,4,25,1,9,2,25,1,9,2,25,1,26,2,27,1,26,4,29,1,9,1,1,1,26,3,27,1,26,7,29,2,26,2,29,8,27,1,26,1,28,2,29,1,7,1,9,3,7,2,6,1,7,1,6,3,28,3,1,128,}, + {1,116,28,5,26,1,28,3,29,1,26,1,28,4,29,2,26,1,28,6,25,1,11,1,9,1,28,1,26,3,25,1,26,2,29,1,26,2,27,1,25,3,9,1,26,1,29,1,9,1,27,1,26,6,27,1,29,1,11,1,9,1,29,1,27,1,26,9,27,1,26,4,29,4,28,1,29,2,10,1,27,1,28,2,9,1,12,1,9,1,8,1,7,3,6,2,10,1,6,1,28,5,1,127,}, + {1,116,28,5,26,1,29,1,28,3,29,1,28,6,26,4,29,1,28,2,25,1,11,1,15,1,28,1,29,1,26,1,29,1,26,1,29,1,27,2,25,2,9,3,26,1,25,1,27,1,26,1,9,1,25,1,26,5,25,1,26,1,11,1,9,1,26,2,27,1,26,2,27,1,26,10,27,1,26,3,29,2,28,1,10,1,9,1,28,1,26,1,9,1,12,1,9,1,6,1,29,1,7,1,10,2,7,2,6,1,28,7,1,126,}, + {1,115,28,6,26,1,29,1,28,3,29,1,28,6,26,2,28,3,26,2,9,1,11,1,15,1,28,2,25,1,29,1,26,2,9,2,15,1,25,1,26,4,25,1,9,1,26,1,25,1,26,4,27,3,9,1,15,1,29,2,26,1,27,2,25,1,26,11,25,2,26,4,29,1,26,1,29,2,27,2,6,2,28,2,7,1,9,1,10,1,9,1,7,1,28,8,1,126,}, + {1,115,28,4,26,1,28,2,29,1,28,10,26,2,28,6,9,1,11,1,27,1,29,1,15,1,25,1,27,1,26,10,25,1,26,1,29,1,26,1,27,1,25,1,27,1,26,3,9,1,26,2,9,1,27,1,26,2,29,1,26,10,27,4,26,2,29,1,26,1,29,1,28,1,26,1,29,1,28,1,29,2,28,1,29,1,10,1,9,2,10,1,29,1,28,3,26,1,29,2,28,3,1,125,}, + {1,114,28,5,29,1,28,2,29,1,28,10,29,1,26,1,28,6,25,1,11,1,10,1,28,1,25,2,29,1,26,1,29,1,26,7,29,1,26,8,27,1,26,1,27,1,29,1,26,1,29,3,26,10,29,1,26,1,27,1,26,2,27,1,26,3,29,3,26,1,28,1,29,1,26,1,30,1,28,1,27,1,9,3,29,1,28,2,29,1,28,3,29,1,28,4,1,124,}, + {1,114,28,8,29,1,28,11,26,1,28,6,25,1,11,1,9,1,28,1,27,1,9,1,29,1,26,1,29,1,26,4,29,2,26,7,27,2,26,1,29,1,28,2,29,3,26,1,29,1,26,10,29,1,26,4,27,1,26,2,27,1,29,1,28,1,26,1,29,1,28,1,26,1,29,1,26,1,29,1,9,3,26,1,28,2,29,1,28,6,29,1,28,2,1,124,}, + {1,113,28,21,29,1,28,5,29,2,11,1,9,1,28,1,26,1,9,1,26,1,29,1,26,3,29,1,26,6,25,1,26,1,25,2,26,1,28,3,26,1,29,3,26,2,29,1,25,1,27,1,26,8,29,2,26,10,29,2,26,3,27,1,9,1,10,1,26,1,29,3,28,1,26,1,29,1,25,1,28,3,29,1,28,3,1,123,}, + {1,113,28,21,29,1,28,2,29,1,28,2,29,1,28,1,14,1,11,1,29,2,9,1,26,1,29,2,28,1,29,1,26,1,29,1,26,2,29,1,26,2,29,4,26,4,29,2,26,4,25,1,26,1,27,3,26,4,27,1,26,2,29,2,26,9,29,1,26,4,9,1,25,1,29,3,26,1,29,2,26,1,28,1,26,1,28,2,7,1,28,1,29,2,28,1,1,123,}, + {1,113,28,25,29,2,28,2,9,1,11,1,26,1,28,1,25,1,26,1,28,1,29,1,28,1,29,8,28,4,29,2,26,8,27,2,26,1,27,1,26,6,27,1,26,2,29,1,26,9,29,2,26,2,27,1,10,1,29,4,26,2,9,1,29,2,28,1,7,1,28,1,6,1,29,1,28,1,6,1,28,2,1,122,}, + {1,113,28,23,29,1,28,1,29,1,28,4,15,1,26,1,28,1,29,3,28,2,26,1,29,1,28,5,29,2,28,1,29,4,26,7,27,3,26,24,29,1,25,1,27,1,29,3,26,1,25,1,26,1,27,1,28,3,9,1,16,1,29,3,28,1,29,1,28,1,1,122,}, + {1,113,28,22,29,1,28,1,29,1,28,5,26,1,29,1,28,1,29,1,28,4,26,1,28,6,29,6,26,3,27,1,26,4,27,2,26,21,29,1,26,4,27,1,26,1,29,2,26,2,27,1,29,1,27,1,29,1,28,2,16,1,11,1,6,2,29,2,6,1,28,2,1,121,}, + {1,112,28,16,29,1,28,1,29,1,28,6,29,1,28,1,29,1,28,2,29,1,28,3,29,1,28,2,29,2,28,5,29,6,26,8,27,4,26,10,27,1,26,14,27,1,26,5,29,1,26,1,29,2,10,1,6,1,9,1,16,1,11,1,10,1,6,2,7,1,6,1,28,3,1,120,}, + {1,112,28,15,26,2,28,3,29,1,28,16,29,1,28,4,29,7,26,29,27,4,25,1,27,1,26,5,29,1,26,3,29,1,26,1,29,1,28,1,12,1,9,3,17,1,12,1,7,1,10,1,29,2,28,3,1,120,}, + {1,112,28,20,25,1,26,1,28,6,29,1,28,11,29,4,28,1,29,3,26,1,29,2,26,22,27,2,10,1,9,2,25,1,27,3,26,1,27,2,26,4,29,1,26,4,29,1,26,1,6,1,12,1,16,1,7,1,9,1,11,1,16,1,7,1,28,7,1,119,}, + {1,112,28,20,15,1,29,1,28,18,29,4,28,1,29,3,26,1,29,2,26,21,27,1,25,1,9,4,10,1,25,1,27,1,26,13,29,1,26,1,27,1,12,2,9,1,10,1,16,1,9,1,29,1,28,4,10,1,29,1,28,1,1,119,}, + {1,112,28,14,29,3,28,2,26,1,15,1,26,1,28,14,29,1,28,2,29,1,28,2,29,7,26,1,27,2,26,1,29,2,26,11,27,1,26,5,25,1,27,2,26,5,27,4,26,10,29,1,27,1,9,1,12,2,9,1,28,1,6,1,12,1,29,1,28,4,29,2,6,1,28,1,1,118,}, + {1,112,28,19,26,1,15,1,28,13,29,3,28,4,29,2,26,1,29,3,26,3,29,1,28,2,29,1,26,4,27,1,26,5,27,1,26,2,27,2,26,2,27,1,26,1,27,2,26,4,29,2,26,3,27,1,26,5,27,1,29,1,26,3,9,1,16,1,9,2,27,1,28,1,29,1,9,1,27,1,28,1,29,1,28,3,29,1,6,1,28,1,1,118,}, + {1,113,28,18,9,2,28,15,29,1,26,4,29,1,28,3,29,1,26,2,28,3,29,1,26,8,27,1,26,4,27,1,25,3,9,2,25,3,27,1,26,2,25,1,9,4,10,1,25,1,27,2,26,4,27,1,29,1,30,1,10,1,9,2,27,2,9,1,25,1,26,1,29,1,9,1,27,1,28,1,29,2,28,3,29,1,28,1,1,118,}, + {1,113,28,18,25,1,15,1,28,14,26,2,28,6,29,3,28,3,29,1,26,2,25,1,26,2,28,1,26,7,27,1,10,1,9,3,25,1,27,1,25,1,10,1,27,1,25,1,27,4,25,3,27,1,9,2,10,1,9,1,25,1,29,2,26,1,27,1,29,2,9,3,30,1,28,1,9,1,25,2,29,1,9,2,28,1,29,1,26,1,29,1,28,5,1,117,}, + {1,113,28,16,26,1,29,1,25,1,9,1,29,1,28,18,29,2,28,3,29,1,26,2,25,3,26,1,29,1,28,2,29,1,26,5,27,1,25,1,9,2,27,1,29,1,26,1,27,3,26,1,25,1,27,2,26,4,27,1,26,1,29,1,26,2,29,1,26,1,9,2,26,2,27,1,26,1,29,1,25,1,9,1,27,2,28,1,25,1,9,2,29,1,9,2,28,1,26,2,29,1,28,5,1,117,}, + {1,113,28,12,29,1,28,5,9,2,26,1,29,1,28,14,29,1,26,1,29,1,28,3,29,4,26,4,29,1,28,2,26,6,27,1,25,2,10,1,26,2,27,1,9,3,27,1,26,5,27,4,26,7,27,2,29,1,26,1,27,1,26,2,27,1,26,1,25,1,29,1,26,1,9,2,26,1,9,2,28,1,26,2,29,1,26,1,28,4,1,117,}, + {1,113,28,14,29,3,28,1,25,1,9,1,29,1,28,13,29,1,26,1,29,1,28,9,29,2,28,2,29,1,26,1,25,1,26,2,29,1,26,3,27,2,26,3,9,1,15,1,9,1,25,1,26,2,27,1,10,1,9,2,12,1,15,1,9,5,27,1,26,1,27,2,26,1,25,2,29,2,25,1,26,1,29,1,26,1,27,2,29,2,9,2,26,1,9,2,28,1,26,1,27,1,29,1,27,1,29,1,28,3,1,117,}, + {1,114,28,8,29,1,28,8,9,1,15,1,26,1,28,11,29,2,28,3,29,1,28,1,29,3,26,5,29,2,26,2,25,1,26,1,29,1,28,2,26,6,25,1,15,1,9,1,25,1,26,2,25,1,9,4,10,1,25,4,10,1,27,1,25,3,9,2,25,1,26,1,25,1,26,1,29,1,26,1,27,1,26,2,25,1,27,1,26,1,29,1,9,2,26,1,9,2,29,1,27,2,26,1,27,1,29,1,28,3,1,117,}, + {1,114,28,1,29,1,28,8,29,2,28,5,25,1,9,1,26,1,28,8,29,2,26,1,29,1,28,1,29,2,28,2,29,2,26,3,29,2,28,3,29,1,26,2,29,1,28,2,29,1,26,2,27,1,26,2,27,1,9,2,25,1,27,1,26,1,10,1,9,1,12,1,9,2,10,1,25,1,27,3,26,3,27,1,26,1,27,1,26,1,29,1,27,1,9,1,25,3,29,2,26,3,27,1,25,1,26,1,29,1,9,2,29,1,9,2,29,1,26,3,9,1,25,1,28,4,1,116,}, + {1,114,28,12,29,2,26,1,28,2,26,1,9,1,26,1,28,6,29,1,28,2,29,1,28,2,29,3,28,2,29,1,28,2,29,1,26,2,29,3,26,1,29,3,28,1,29,1,26,2,27,1,26,4,25,1,9,1,25,1,26,1,27,1,10,1,9,1,15,2,9,2,10,1,25,2,27,1,26,5,25,1,26,2,29,2,26,1,9,2,25,1,26,5,25,2,27,1,26,1,15,1,9,1,26,1,9,2,29,1,27,1,26,2,9,1,26,2,28,3,1,116,}, + {1,114,28,17,26,1,15,1,26,1,28,4,29,2,28,5,26,2,28,3,29,1,28,1,26,3,29,9,26,1,25,2,26,1,29,1,26,2,27,1,26,1,27,1,25,1,26,2,25,1,10,2,25,1,27,1,26,2,27,1,26,3,27,1,25,2,27,1,26,1,25,3,26,1,29,1,26,1,25,1,9,1,25,1,27,1,26,4,27,1,25,1,27,1,26,1,15,1,9,1,26,1,9,2,29,1,25,1,26,1,9,2,29,1,26,1,28,3,1,116,}, + {1,114,28,2,29,1,28,4,29,2,28,9,9,1,25,1,29,1,28,9,29,1,28,3,29,10,26,2,29,2,26,3,25,1,26,4,25,2,27,1,26,3,27,1,26,5,27,3,26,4,25,2,27,1,26,2,25,1,9,1,25,1,26,1,29,1,25,1,9,2,25,1,26,5,25,1,27,1,26,1,15,1,9,1,26,1,9,1,25,1,29,1,27,1,26,1,15,1,25,1,29,1,25,1,28,3,1,116,}, + {1,114,28,7,29,3,28,2,29,2,28,4,9,2,28,11,29,2,28,3,29,4,28,1,29,2,26,1,29,5,26,4,27,1,25,2,27,1,26,4,27,1,26,3,27,4,26,1,25,1,27,3,26,2,27,1,26,2,29,1,26,1,25,2,26,1,29,1,25,2,9,1,25,1,26,5,25,1,27,1,26,1,15,1,9,1,26,1,9,1,25,1,29,1,26,1,25,1,15,1,26,2,25,1,28,3,1,116,}, + {1,114,28,3,26,1,28,4,29,2,28,4,29,2,28,2,9,2,26,1,28,2,29,1,28,6,26,1,29,2,28,2,29,11,26,4,25,1,9,3,25,1,26,1,29,2,26,5,27,1,9,6,25,1,27,3,26,2,27,1,25,1,27,1,29,1,26,2,27,2,29,2,25,1,9,2,27,1,26,4,25,1,27,2,15,1,25,1,26,1,9,1,25,1,26,1,29,1,15,1,9,1,26,1,9,1,26,1,28,3,1,116,}, + {1,115,28,2,26,1,28,14,26,1,15,1,29,1,28,3,29,1,28,3,29,1,26,2,28,2,29,1,26,1,29,1,28,1,29,8,26,6,25,2,26,2,29,3,26,1,27,1,26,2,9,3,25,1,27,1,26,3,27,1,26,2,27,1,26,3,25,2,29,2,26,1,27,1,25,1,26,1,28,1,27,1,9,2,25,1,26,4,25,1,27,2,15,1,25,1,26,1,9,1,27,1,29,1,26,1,15,1,25,2,9,1,29,1,28,4,1,115,}, + {1,115,28,2,29,2,28,6,29,2,26,2,29,1,28,3,15,1,26,1,28,5,29,1,26,1,29,1,28,2,26,2,29,1,28,2,29,8,26,1,25,1,27,1,26,7,27,1,26,3,27,2,26,2,9,1,25,1,26,10,27,1,26,1,29,1,26,1,25,1,27,1,29,2,26,1,25,2,29,2,27,1,9,2,25,1,26,3,25,1,26,1,27,1,15,1,25,1,27,1,9,1,26,1,29,1,9,2,25,1,9,2,28,5,1,115,}, + {1,115,28,3,26,1,28,9,29,1,26,1,28,3,15,1,25,1,28,9,26,1,29,2,28,2,29,3,28,1,29,4,26,1,25,1,9,1,26,2,29,2,26,1,25,1,9,5,25,1,26,13,27,1,26,2,25,1,26,1,29,1,26,1,25,1,9,1,26,1,29,1,28,1,26,1,9,1,26,1,28,1,26,1,9,2,25,1,26,2,29,1,25,1,27,1,25,1,11,1,9,3,26,2,11,1,9,1,25,1,9,1,26,1,28,5,1,115,}, + {1,115,28,3,29,1,28,14,25,1,9,1,28,1,29,1,28,10,29,2,26,1,29,6,26,3,29,2,26,1,25,1,9,2,25,3,27,1,25,2,26,1,29,2,26,14,27,2,26,1,29,1,26,1,9,2,26,1,29,2,26,1,25,1,29,1,28,1,10,1,9,2,25,1,29,2,27,1,25,1,10,1,11,1,25,1,9,2,26,1,27,1,15,1,25,1,9,1,15,1,29,1,28,1,29,1,28,3,1,115,}, + {1,114,28,19,26,1,15,1,28,12,29,6,26,7,29,2,26,3,29,3,26,1,29,1,28,2,29,1,26,12,27,5,26,2,29,1,27,1,9,1,25,1,29,2,26,1,27,1,26,1,28,1,26,1,9,2,25,1,26,1,29,1,26,1,27,1,9,1,11,1,25,1,9,1,25,1,26,1,15,1,9,2,15,1,25,1,29,1,26,1,29,1,28,3,1,115,}, + {1,114,28,20,15,1,26,1,28,10,29,10,26,3,28,1,26,4,29,2,28,3,29,2,26,14,27,3,26,1,27,1,26,2,29,2,25,1,9,1,26,1,29,2,26,1,25,1,29,1,28,1,9,3,27,1,29,1,26,1,25,1,9,1,15,1,27,1,9,1,27,2,11,1,9,1,15,1,9,1,29,1,26,1,25,1,28,4,1,115,}, + {1,114,28,14,29,1,28,5,15,1,26,1,28,7,29,1,28,1,29,7,28,1,29,1,26,1,29,3,26,1,25,1,26,11,25,3,26,1,25,1,26,9,27,3,26,5,29,1,26,1,9,2,29,1,28,1,29,1,27,1,26,1,28,1,27,1,9,1,10,2,26,1,29,1,27,1,12,2,27,1,25,1,27,1,9,1,11,1,15,1,9,1,29,2,25,1,26,1,28,2,29,1,28,1,1,115,}, + {1,113,28,3,26,1,28,11,29,1,26,2,28,3,26,1,9,1,28,5,29,2,28,1,29,2,28,1,29,5,26,1,29,3,26,3,29,1,26,8,25,3,27,1,26,2,29,1,26,11,27,4,26,3,29,1,28,1,26,1,9,1,25,1,29,2,26,1,25,1,29,1,28,1,9,1,25,1,9,1,26,1,29,1,10,1,17,1,12,1,27,2,25,1,15,2,9,1,26,1,29,1,25,2,28,3,27,1,28,1,1,115,}, + {1,113,28,3,29,1,28,11,29,3,28,3,29,1,9,1,29,1,28,1,29,2,28,3,29,3,28,2,29,8,26,3,29,1,26,12,29,3,26,12,27,4,26,3,28,1,29,1,25,1,9,1,26,1,29,2,27,1,26,1,28,1,9,3,26,1,27,1,9,1,11,1,9,1,27,2,9,1,11,1,15,1,26,1,29,1,26,1,25,1,26,1,28,3,10,1,6,1,28,1,1,114,}, + {1,113,28,22,9,1,28,3,29,1,26,1,29,2,28,1,29,2,28,2,29,9,26,2,25,1,26,9,29,2,26,2,25,2,26,4,27,1,26,7,27,3,26,5,29,1,26,1,9,2,26,1,29,2,25,1,29,1,9,1,15,1,12,1,25,1,9,1,12,2,9,1,25,1,9,1,15,2,25,1,29,1,26,1,25,1,26,1,29,1,28,2,29,1,7,1,6,1,28,1,1,114,}, + {1,112,28,19,26,1,28,3,26,1,25,1,28,5,29,14,26,3,29,1,26,2,29,2,26,4,29,1,26,6,28,1,29,2,25,1,9,1,25,1,26,2,27,9,26,4,28,1,26,1,9,1,26,1,29,1,28,1,27,1,26,2,9,2,10,1,9,2,12,1,9,3,15,1,9,1,26,3,25,1,26,1,28,3,6,1,29,1,6,1,28,1,1,114,}, + {1,112,28,6,26,1,28,7,29,5,26,1,28,4,9,1,28,8,29,9,26,3,29,4,26,2,29,2,26,7,29,1,28,2,29,1,26,3,9,4,25,2,9,1,25,1,9,1,25,1,26,1,25,1,9,1,26,5,29,1,26,1,25,1,26,1,29,1,26,2,28,1,26,1,9,2,26,1,10,1,15,1,9,1,15,2,9,1,25,1,27,1,26,1,27,1,26,1,29,2,28,1,30,1,6,2,7,1,29,1,28,1,1,113,}, + {1,111,28,2,26,1,28,11,29,5,26,3,28,3,25,1,26,1,29,1,28,7,29,9,26,1,29,3,26,1,29,2,26,8,29,1,28,2,29,1,26,6,25,1,9,1,15,1,9,1,25,1,9,1,25,1,9,3,25,1,27,2,26,3,29,1,28,1,29,1,26,1,27,1,29,2,26,2,29,1,25,1,9,1,27,1,10,1,15,4,9,1,25,1,26,1,25,1,26,1,29,2,28,2,8,1,25,1,26,1,28,1,7,1,28,1,1,113,}, + {1,111,28,3,26,1,28,4,29,1,28,3,29,7,26,1,29,1,26,1,28,3,26,1,9,1,28,2,29,1,28,3,29,8,26,1,29,6,26,8,29,3,26,2,27,2,25,1,27,1,26,2,27,2,26,1,25,1,9,1,15,3,9,1,25,1,9,3,25,1,9,2,26,2,29,1,28,2,29,2,26,1,27,1,29,1,26,2,9,2,25,1,9,1,15,1,11,1,15,2,9,1,25,1,27,3,29,1,28,2,6,1,10,1,25,1,26,1,29,2,28,1,1,113,}, + {1,111,28,4,29,1,28,7,29,9,26,1,29,1,28,3,15,1,28,2,29,1,28,1,29,13,26,2,29,3,26,9,27,1,25,1,9,4,10,1,26,2,27,1,25,2,26,1,27,1,9,1,11,3,15,1,9,1,27,1,9,2,25,1,9,1,25,2,26,2,29,2,28,1,29,1,26,1,25,1,26,1,29,1,25,1,15,1,10,1,15,1,11,2,15,1,9,1,25,2,9,1,27,1,26,1,29,2,26,1,9,1,25,1,26,1,28,2,29,2,1,113,}, + {1,110,28,5,15,1,11,1,28,3,29,2,28,2,29,7,26,3,28,3,9,1,26,1,28,3,29,12,26,4,29,1,26,11,27,1,10,1,9,3,27,1,26,2,27,1,25,3,26,2,29,1,9,1,15,1,11,1,17,1,9,2,25,1,9,1,15,2,9,1,25,1,26,2,29,4,9,1,26,2,27,1,9,2,11,2,15,1,9,1,25,2,9,1,25,2,29,2,9,3,27,1,28,4,26,1,28,1,1,112,}, + {1,109,28,7,14,1,9,1,28,2,29,3,28,1,29,2,26,1,29,2,26,5,29,1,28,2,29,1,15,1,28,4,29,10,26,12,29,3,26,1,25,1,9,1,12,1,9,2,25,1,26,1,27,2,26,1,27,1,25,1,9,4,10,1,26,2,9,1,15,1,11,1,15,1,9,1,15,1,11,1,9,2,25,1,9,1,27,1,29,2,26,1,9,1,26,1,27,3,12,1,11,2,12,1,9,1,25,3,26,3,25,2,29,2,26,1,28,2,9,1,28,1,26,1,28,2,1,111,}, + {1,108,28,6,29,1,28,1,26,1,11,1,9,1,28,2,29,5,26,9,28,3,15,1,25,1,28,3,29,4,26,1,29,4,26,12,29,2,26,1,27,1,9,3,25,1,26,2,27,2,25,1,26,2,25,3,9,1,15,1,11,1,15,1,9,1,25,1,27,1,25,1,9,2,15,1,11,2,17,1,9,2,25,1,26,2,29,2,25,1,9,1,26,2,9,1,11,2,12,1,9,1,10,1,25,4,26,1,9,1,25,1,28,3,29,1,28,1,26,1,9,2,29,1,28,1,1,112,}, + {1,107,28,7,25,1,26,1,28,1,25,1,11,1,26,1,28,2,26,1,29,2,26,4,29,1,26,5,29,1,28,2,26,1,11,1,29,1,28,1,26,1,29,4,26,5,29,1,26,13,9,1,15,1,9,1,26,1,29,2,26,1,25,1,9,3,25,1,26,1,27,1,25,1,26,1,27,1,9,1,17,1,15,1,9,1,10,1,9,1,15,1,11,1,15,1,27,1,9,1,12,1,11,1,15,1,11,1,12,1,9,1,26,2,29,2,15,1,9,1,27,1,9,1,11,2,9,2,25,5,9,1,26,1,29,1,28,1,29,1,28,1,26,1,28,2,9,2,26,1,28,2,1,111,}, + {1,107,28,7,29,1,9,1,15,1,26,1,15,1,14,1,29,1,28,1,29,1,26,2,29,1,26,10,28,3,15,1,9,1,28,2,29,1,26,3,29,1,26,15,29,1,26,1,9,2,26,1,29,3,26,1,9,2,25,1,26,4,25,1,26,1,25,1,26,4,27,1,26,2,9,1,12,2,9,1,10,2,16,1,11,3,17,1,9,1,28,1,26,1,27,1,9,2,10,1,12,1,11,2,9,1,25,1,9,2,25,3,26,1,28,1,26,1,29,2,28,1,26,1,28,2,26,1,9,1,27,1,28,2,1,111,}, + {1,106,28,9,26,1,9,1,15,1,9,1,15,1,9,1,28,2,26,3,29,1,26,9,29,1,28,2,29,1,15,1,26,1,29,4,26,12,25,2,26,4,9,1,25,1,26,2,29,1,26,1,25,1,9,1,25,1,29,2,26,2,27,1,26,3,25,2,27,1,25,1,26,1,29,3,26,1,25,1,9,1,15,1,12,1,16,1,9,1,16,1,11,5,28,1,29,1,25,1,10,1,12,1,11,2,15,1,9,2,25,1,9,2,25,1,26,2,28,1,29,1,26,1,29,2,25,1,28,2,26,1,9,2,28,2,1,111,}, + {1,105,28,10,29,1,26,1,9,1,15,1,11,1,15,1,25,1,28,1,29,1,26,13,29,1,28,2,9,1,11,1,26,1,28,1,29,2,26,14,25,1,26,2,25,2,26,4,25,1,9,1,26,1,29,1,26,6,25,1,27,1,26,1,25,4,9,3,10,2,9,2,7,1,10,1,9,2,7,2,9,1,11,2,9,1,29,2,12,1,11,1,1,1,15,1,9,3,25,1,9,2,25,1,26,1,29,1,26,2,29,1,28,1,29,1,9,1,28,2,26,1,9,2,28,2,1,111,}, + {1,105,28,2,15,1,11,1,9,1,26,2,28,4,29,1,9,1,26,1,9,1,15,2,26,8,25,1,26,5,25,1,26,1,28,3,15,1,9,1,29,2,26,10,25,1,26,5,25,1,9,2,26,1,29,1,26,2,9,1,25,1,26,1,29,1,26,5,25,4,9,1,15,1,9,2,15,2,10,1,26,1,30,1,6,1,7,2,10,1,9,2,10,1,7,2,6,1,9,1,11,2,9,1,26,1,9,1,1,1,11,1,9,1,25,1,9,3,25,2,27,1,29,1,28,1,26,1,27,1,28,1,29,1,28,1,26,2,28,1,26,1,9,2,28,3,1,110,}, + {1,104,28,1,6,1,11,2,15,1,26,1,29,1,26,1,9,1,29,1,28,3,26,1,9,2,15,1,11,1,9,1,26,1,25,1,26,5,9,2,26,2,25,1,26,4,28,2,26,1,14,1,9,1,29,2,26,10,25,3,26,2,9,2,25,2,26,4,25,1,26,7,25,1,9,6,26,1,25,1,27,1,26,1,10,1,12,3,9,1,12,1,17,1,16,1,10,2,7,1,6,1,7,1,12,1,9,3,27,1,11,1,15,1,9,5,25,1,26,2,30,1,26,2,29,1,28,1,26,1,28,1,26,2,28,1,26,1,9,1,27,1,28,3,1,110,}, + {1,87,28,1,1,2,28,8,1,5,28,1,29,1,15,1,27,1,28,6,29,1,25,1,29,1,28,1,29,1,27,1,9,1,15,2,11,1,25,1,9,2,25,2,26,2,9,2,29,1,26,1,9,1,26,3,25,1,28,3,26,1,15,1,25,1,26,1,29,1,26,11,27,1,25,3,27,2,25,1,9,1,25,1,26,1,29,1,26,1,9,1,26,5,25,1,9,2,25,1,26,1,25,1,27,2,9,4,15,1,17,2,12,1,11,1,17,2,11,1,12,1,16,1,9,1,10,1,7,1,6,1,9,1,25,1,26,1,9,1,11,1,9,4,25,1,9,2,25,1,9,2,15,1,26,1,28,1,26,1,29,1,28,1,26,2,28,1,26,1,9,1,26,1,28,4,1,109,}, + {1,84,28,16,1,2,28,2,26,1,28,5,29,1,26,1,28,1,29,1,26,1,27,1,26,1,29,1,26,1,9,2,15,1,11,1,9,2,15,2,9,1,25,2,9,2,25,1,9,2,26,2,29,1,25,1,26,1,28,3,25,1,15,1,9,1,26,7,25,3,26,3,25,2,26,1,9,2,26,1,27,1,9,2,25,1,26,2,9,1,26,1,29,1,26,3,9,1,25,1,28,2,25,3,9,1,28,2,29,1,9,3,16,2,12,1,9,1,10,1,9,1,12,1,17,1,12,1,10,1,6,1,10,2,26,1,9,1,11,1,10,1,9,7,12,1,15,2,26,1,29,1,26,1,28,2,26,2,28,1,26,1,27,1,28,3,29,1,28,1,1,109,}, + {1,83,28,6,9,1,11,1,15,1,9,2,25,1,26,2,29,1,28,11,26,1,15,1,9,1,25,1,29,1,26,1,15,2,9,1,29,1,25,1,15,3,11,1,9,1,25,1,15,3,11,5,15,1,27,1,29,1,26,2,25,1,26,1,28,3,9,3,25,1,26,7,25,1,9,3,25,3,27,1,25,1,9,2,25,2,9,1,25,1,27,1,25,1,9,1,26,1,28,1,29,1,9,1,26,1,28,3,26,1,28,1,25,1,27,1,26,2,27,1,28,2,29,1,9,1,12,1,16,1,9,2,10,2,16,1,17,1,16,1,10,1,7,1,10,1,9,1,11,1,9,4,17,1,11,1,9,1,27,1,25,1,9,2,6,1,29,1,10,1,29,1,28,1,29,1,25,1,9,1,26,1,28,3,29,3,28,1,1,109,}, + {1,81,28,7,11,1,1,1,11,2,15,1,9,4,25,1,26,3,28,2,29,2,26,2,29,1,28,2,15,3,25,1,26,1,9,1,15,1,11,1,9,1,26,1,12,1,15,1,17,1,15,1,11,1,15,1,10,1,9,1,15,1,12,1,11,2,1,2,28,1,29,1,9,1,25,1,9,3,25,1,29,1,28,1,29,1,9,2,26,1,29,1,26,3,27,1,25,3,26,1,27,1,15,4,12,1,9,5,25,1,9,2,25,2,9,1,29,2,25,1,29,1,28,3,9,2,11,2,15,1,9,1,25,1,26,1,29,1,30,1,10,1,9,1,10,1,9,1,16,1,9,1,10,2,12,1,17,1,10,1,28,2,9,1,11,1,10,1,12,1,15,1,12,1,11,1,15,1,9,1,12,2,10,1,6,1,10,1,12,1,10,1,28,2,27,1,9,2,26,1,29,1,28,3,29,2,28,2,1,108,}, + {1,80,28,6,29,1,26,3,25,1,28,1,25,1,11,1,9,1,15,2,9,2,25,1,26,2,25,1,26,2,29,2,26,1,28,2,27,1,15,3,25,1,9,1,15,1,9,1,15,1,9,2,12,2,17,1,11,2,9,1,15,1,11,2,17,1,11,2,7,1,28,1,30,1,15,1,9,2,15,1,25,3,26,1,29,1,28,1,9,1,25,1,29,1,26,6,9,1,15,2,11,1,15,2,17,1,11,6,15,1,11,1,15,3,9,1,25,1,29,1,28,1,29,1,25,1,26,1,15,1,11,2,15,1,25,1,26,4,25,1,9,1,27,1,10,1,16,1,6,1,7,1,16,1,9,1,7,2,12,1,17,1,9,1,28,1,29,1,16,1,17,1,11,2,17,1,10,1,9,1,12,2,16,1,6,1,9,1,16,2,6,1,10,1,29,1,25,1,9,1,26,3,28,1,29,2,26,1,28,1,29,1,28,2,1,107,}, + {1,80,28,6,25,1,15,2,11,1,28,3,25,1,17,1,11,1,15,1,9,2,15,1,9,1,26,2,9,1,26,1,28,2,9,1,28,2,26,1,11,1,15,3,9,1,11,1,9,1,17,1,11,1,9,1,12,2,17,1,12,1,11,1,12,1,11,1,1,2,11,1,17,1,29,1,28,1,1,1,28,1,9,2,26,2,9,1,15,1,9,1,25,1,29,1,26,1,28,1,25,1,9,1,26,1,25,1,26,1,27,1,25,1,27,1,9,2,25,1,9,2,27,1,10,1,9,2,12,3,15,1,11,1,12,1,15,4,11,1,15,1,28,2,9,2,11,2,9,1,29,1,26,4,29,1,28,2,29,1,28,1,6,3,9,1,12,1,10,1,7,1,8,1,12,1,11,1,10,1,28,1,10,1,1,2,11,1,16,1,7,1,6,1,9,2,28,1,7,1,16,1,11,1,7,2,9,2,27,1,26,2,29,1,28,1,29,1,28,1,25,1,29,1,30,1,7,1,28,3,1,106,}, + {1,79,28,7,9,1,11,1,14,1,29,1,26,1,25,1,9,1,17,1,12,2,11,2,9,1,25,1,9,1,15,1,9,1,26,1,25,1,26,1,9,1,26,3,9,1,15,2,12,1,15,2,12,1,17,1,12,1,11,1,9,2,17,1,12,1,17,1,15,1,11,3,12,1,28,2,1,3,29,1,25,1,15,1,29,1,28,2,26,1,25,1,9,1,15,1,25,1,26,1,25,3,26,5,27,2,25,2,27,1,10,1,9,5,15,1,11,3,15,1,9,1,15,2,11,1,1,1,27,1,28,1,25,1,11,1,9,1,29,1,28,3,29,1,25,1,9,4,27,1,9,4,7,1,9,1,16,1,9,1,6,1,7,1,12,1,17,1,10,1,7,1,11,2,12,1,17,1,16,1,9,2,6,1,7,1,9,2,29,1,6,1,9,1,16,1,26,1,27,1,26,2,28,2,29,1,26,2,28,1,6,1,29,1,28,3,1,106,}, + {1,79,28,6,26,1,15,2,28,1,29,1,15,2,9,1,11,2,6,1,10,1,9,1,17,1,9,1,6,1,12,1,11,2,27,1,9,1,25,1,28,1,9,2,26,1,15,2,9,1,15,1,11,1,9,1,11,1,12,1,11,1,12,1,9,1,15,1,12,2,15,1,11,3,28,1,1,1,28,1,1,2,28,1,6,1,25,1,9,1,29,1,28,5,9,2,26,2,9,1,15,1,11,2,15,1,9,3,15,8,11,3,17,1,15,2,9,1,15,2,11,3,25,1,26,1,9,1,26,1,28,2,29,2,26,1,25,1,26,2,9,2,10,1,9,2,10,1,8,1,9,1,6,2,16,1,9,1,7,1,6,1,7,1,12,1,16,1,7,1,17,1,11,2,12,1,17,1,12,1,6,1,10,1,11,1,12,1,9,1,28,1,29,1,10,2,27,1,10,1,26,1,28,3,25,1,26,1,28,1,29,1,26,1,28,6,1,104,}, + {1,79,28,5,9,1,15,1,25,1,29,1,25,1,26,3,28,1,26,1,27,1,7,1,29,1,28,2,8,1,11,5,9,2,15,1,11,1,9,1,26,1,15,1,11,1,15,1,12,1,11,1,15,1,12,1,11,1,17,1,12,1,9,2,11,1,12,1,15,1,11,2,12,1,28,1,1,4,28,1,26,1,9,1,25,1,28,3,29,1,28,3,25,1,26,3,28,1,26,1,9,1,11,4,15,1,26,2,15,1,9,4,15,2,9,3,11,1,9,1,15,2,9,4,29,1,28,5,26,3,27,1,9,1,10,1,7,3,8,1,9,1,10,1,9,2,6,2,8,1,10,1,6,2,7,1,10,1,7,1,17,2,11,1,16,2,7,1,6,1,9,2,12,1,6,1,9,2,7,1,29,1,9,1,25,1,29,1,28,2,26,1,27,1,28,1,26,3,28,6,1,104,}, + {1,78,28,5,26,1,15,1,9,1,26,1,28,5,29,2,9,2,6,1,9,3,11,1,1,4,12,1,10,1,9,5,17,2,12,1,11,2,12,1,11,1,15,1,12,1,9,2,17,1,12,1,15,2,11,2,28,1,1,4,28,1,30,1,26,1,25,1,29,3,26,1,28,4,26,1,28,6,25,1,15,2,9,1,26,2,25,1,9,1,25,1,26,1,29,1,26,1,27,1,25,2,26,1,25,1,9,1,15,1,9,3,25,1,28,5,29,1,28,2,26,1,25,1,26,1,29,1,6,1,9,2,8,1,7,1,8,1,9,1,7,1,10,1,7,1,6,1,9,1,10,1,6,5,16,1,12,1,16,1,11,1,10,1,9,1,15,1,9,1,10,3,9,2,7,1,9,1,25,1,26,1,29,1,28,2,9,1,29,1,26,1,27,1,25,1,28,8,1,103,}, + {1,78,28,4,29,1,9,1,15,1,29,1,26,1,28,1,26,2,28,6,15,1,11,1,1,1,12,1,9,1,12,2,16,1,9,3,10,1,9,2,11,1,12,2,17,1,12,1,15,1,11,1,15,2,11,1,15,1,9,1,15,5,11,2,28,1,1,4,28,1,25,2,26,3,28,12,26,2,28,2,26,1,9,1,25,1,28,1,26,3,29,2,26,4,29,1,15,2,9,2,28,5,9,1,29,1,9,2,28,3,25,1,9,1,10,1,7,1,10,7,7,1,9,1,6,1,7,1,6,5,12,1,11,1,10,1,6,1,9,1,11,1,17,1,9,1,29,1,28,1,9,1,12,1,9,2,27,1,29,1,28,3,9,1,28,1,29,1,9,1,29,1,27,1,28,9,1,102,}, + {1,79,28,3,29,1,26,1,25,1,29,1,26,1,28,4,26,1,28,4,15,1,1,1,11,1,16,1,12,1,9,1,12,1,10,1,29,1,28,1,16,1,1,1,17,1,11,2,12,2,11,1,12,2,11,1,12,1,15,4,9,1,15,4,11,1,9,1,28,1,1,4,28,1,25,1,26,2,29,1,28,6,26,2,28,5,29,1,28,2,29,1,26,1,28,1,26,1,28,2,26,2,29,1,28,5,26,1,15,1,9,2,25,1,28,2,29,1,9,1,15,1,11,1,27,1,8,1,10,1,9,1,6,1,28,2,29,1,9,1,16,1,9,1,7,1,10,1,9,1,10,2,9,2,7,1,10,1,8,1,7,1,6,1,7,2,6,1,17,1,12,1,7,1,10,1,11,1,16,2,12,1,29,1,6,1,9,4,29,3,28,1,25,2,28,1,26,1,28,1,9,1,28,11,1,101,}, + {1,79,28,2,25,1,9,2,15,1,25,2,28,5,26,2,28,1,26,1,25,1,9,1,12,1,11,1,12,1,10,1,6,1,28,1,6,1,1,3,11,1,9,1,12,1,11,1,12,1,11,1,12,2,11,1,15,3,9,1,15,6,11,1,28,1,1,5,28,1,25,1,9,1,29,1,28,2,29,2,28,1,26,1,28,9,29,1,26,1,28,1,29,1,28,5,26,1,29,1,28,4,29,1,28,1,10,1,9,1,28,1,26,1,9,1,27,1,15,1,9,4,29,1,9,1,10,1,9,1,25,1,28,2,29,1,7,1,9,2,7,1,8,1,9,1,16,1,9,1,8,1,7,1,10,2,7,1,10,1,7,1,10,1,8,1,10,2,16,1,11,1,9,1,16,1,9,1,16,1,10,1,29,1,9,3,26,1,29,2,28,1,9,1,26,1,28,1,9,1,29,1,26,1,28,13,1,100,}, + {1,80,28,1,26,1,9,1,15,1,25,1,26,1,9,1,26,1,28,4,26,2,15,1,25,1,28,1,7,1,11,1,1,1,6,2,28,2,12,1,1,3,11,1,12,1,11,2,17,1,11,1,12,2,15,5,9,1,15,1,17,2,1,1,12,1,28,1,1,6,28,1,26,3,29,2,26,2,28,10,29,1,25,1,28,4,26,2,29,1,28,3,29,1,26,3,28,2,9,2,28,1,9,1,11,1,15,1,25,2,26,1,29,1,27,1,6,1,7,1,9,2,10,1,9,1,26,1,28,1,29,1,6,1,8,1,9,4,10,1,7,1,10,1,7,1,9,1,8,1,7,3,6,1,7,1,17,1,16,1,9,1,12,1,9,1,12,1,17,1,7,1,29,1,26,1,11,1,25,1,26,1,29,1,28,1,25,1,26,1,29,1,25,1,29,3,28,14,1,99,}, + {1,81,28,1,15,2,25,1,9,2,29,1,28,1,25,1,26,1,28,1,26,1,29,1,26,3,16,1,1,1,11,1,29,1,28,2,29,1,1,3,9,2,11,1,12,3,17,2,12,3,9,2,15,4,12,1,7,1,28,1,1,7,28,1,25,1,9,1,26,1,28,5,26,1,29,1,28,6,26,1,11,2,16,1,28,10,29,4,26,1,29,1,28,1,26,1,11,1,15,1,9,1,26,1,28,2,9,1,15,1,11,1,27,1,10,1,9,3,10,1,6,2,7,1,9,1,10,1,7,1,9,4,10,1,28,1,29,1,9,2,10,1,6,1,29,1,9,2,12,2,11,1,9,2,7,1,30,2,15,1,9,1,30,1,28,1,29,1,25,2,28,1,26,1,29,3,28,1,29,2,26,1,25,1,9,2,27,1,30,1,29,1,28,6,1,98,}, + {1,82,28,1,26,1,28,1,26,1,29,1,26,1,28,1,25,1,15,1,29,2,26,1,28,2,9,1,1,2,11,2,10,1,28,1,9,1,1,1,9,1,28,1,7,1,11,1,9,1,29,1,28,1,29,1,7,1,9,1,12,1,15,1,11,1,12,1,15,1,16,1,17,1,11,1,29,1,28,1,1,9,28,1,9,1,26,1,29,1,26,2,28,3,29,1,26,1,29,1,28,5,26,1,12,1,10,1,1,1,11,1,28,5,26,2,29,2,28,2,29,1,28,3,29,1,9,1,15,1,29,1,28,1,29,1,26,1,15,1,9,1,26,1,9,5,25,1,29,1,25,1,16,1,9,1,16,1,7,1,29,1,6,1,7,1,10,2,9,1,6,1,28,1,27,2,9,1,6,1,29,1,9,1,27,1,12,3,9,1,29,3,9,1,11,1,29,3,25,1,9,1,28,1,29,1,26,2,29,1,28,1,26,2,29,1,26,2,29,2,26,1,29,1,28,8,1,97,}, + {1,83,28,1,9,2,15,1,25,1,29,1,9,1,29,1,28,1,26,1,29,2,28,1,15,1,1,2,11,2,1,4,28,2,11,1,1,1,7,1,28,4,29,1,7,1,9,1,12,1,16,1,10,1,12,1,10,1,28,1,1,11,28,1,9,1,26,4,29,1,26,2,28,1,29,2,28,6,12,1,11,1,12,1,11,1,1,1,9,1,28,3,26,1,28,2,29,4,28,6,26,1,29,1,25,1,15,2,26,1,27,1,12,3,9,1,27,1,26,1,29,1,28,1,10,1,12,1,9,2,6,1,29,3,6,1,9,2,29,1,28,3,26,1,9,1,11,1,12,1,9,1,27,2,26,1,29,1,6,1,9,1,11,1,9,1,27,1,26,1,9,1,26,1,28,1,26,1,25,1,26,2,28,1,26,1,28,2,29,1,28,1,29,1,15,1,9,1,26,1,28,9,1,1,28,1,1,95,}, + {1,84,29,1,1,3,25,1,9,1,29,1,28,1,26,3,9,2,17,1,11,3,1,1,16,1,28,1,9,1,8,1,11,1,1,3,11,1,9,1,6,1,28,4,9,1,11,1,9,1,28,2,1,11,28,1,30,1,9,1,25,1,26,1,28,1,26,4,28,9,9,1,11,1,1,1,11,1,12,1,1,1,9,1,28,5,29,1,28,9,26,1,27,1,26,1,29,1,28,1,25,1,11,2,9,1,12,1,15,1,9,1,25,1,27,1,28,2,12,1,16,1,9,2,27,1,29,3,26,1,27,1,29,3,28,1,27,1,11,2,9,1,10,2,29,2,9,1,27,1,11,1,15,2,10,1,25,1,27,1,28,1,29,1,9,1,25,1,28,2,26,1,28,3,29,1,9,1,15,1,25,1,28,12,1,96,}, + {1,84,28,1,7,1,11,2,10,1,9,1,25,1,29,1,9,4,11,1,1,4,9,1,28,1,6,1,12,1,16,1,11,1,1,2,11,3,1,1,11,1,9,1,28,2,29,1,17,1,16,1,1,13,28,1,7,1,9,1,26,2,29,2,26,1,29,1,28,8,29,1,28,1,29,1,1,1,11,1,16,1,9,1,12,1,1,1,11,1,29,1,28,3,29,1,26,1,28,12,26,1,9,1,15,1,26,1,15,2,9,1,11,1,9,1,10,2,29,1,6,1,9,3,29,5,10,1,29,3,28,1,12,1,15,1,9,1,25,1,27,2,9,2,11,1,1,1,9,1,26,2,9,1,25,1,29,1,26,1,9,1,25,1,26,1,29,2,28,2,26,1,27,1,15,1,26,1,28,3,29,1,26,2,27,1,29,1,28,6,1,96,}, + {1,81,28,1,16,1,1,1,11,1,17,2,11,1,1,1,11,3,15,1,12,1,25,1,28,1,6,1,11,2,1,1,11,1,6,1,28,1,10,1,16,1,8,1,7,1,1,1,12,1,6,1,7,1,10,1,16,1,11,2,17,1,28,2,16,1,1,1,28,1,1,12,28,1,9,1,25,1,26,4,28,1,29,2,28,9,26,1,11,1,29,1,8,1,16,2,11,3,25,1,28,4,26,2,28,1,29,1,28,6,29,2,25,1,9,1,29,1,26,1,15,1,26,2,1,2,15,1,12,1,9,1,29,1,9,2,27,2,29,1,30,1,26,1,27,1,10,1,26,1,29,1,28,1,25,1,15,1,27,1,25,1,9,1,15,2,10,1,25,1,11,1,15,1,30,1,9,1,25,1,9,1,28,1,29,1,9,1,25,1,29,4,28,1,26,1,9,1,27,1,28,2,29,1,26,1,25,1,9,3,30,1,28,7,1,96,}, + {1,80,28,1,17,1,1,1,28,5,6,1,12,1,11,1,17,1,12,1,11,1,12,1,9,1,28,2,10,2,9,1,6,1,7,1,6,1,9,2,1,1,16,1,6,4,10,1,28,1,6,1,9,1,10,1,28,1,11,1,1,1,28,1,1,12,28,1,9,1,25,2,26,3,29,1,28,1,29,1,25,1,26,1,28,5,29,1,28,1,26,1,25,1,12,1,16,1,17,1,7,1,16,1,11,1,1,1,15,1,25,1,28,2,29,1,25,1,29,1,28,1,29,1,28,7,26,2,29,1,28,1,26,2,28,1,29,1,9,1,11,1,15,1,27,1,15,1,10,2,12,1,27,1,26,1,29,1,27,1,25,3,29,1,26,1,27,1,12,1,27,1,10,1,9,2,7,1,25,1,7,1,9,1,11,1,9,2,27,1,10,1,29,2,9,1,25,1,28,1,26,1,29,1,28,1,29,1,9,2,29,1,28,1,25,2,29,1,28,2,29,1,26,1,28,4,30,1,29,1,28,4,1,95,}, + {1,81,28,2,1,6,28,1,16,1,1,1,12,1,16,2,1,1,12,1,28,1,6,1,9,1,6,2,9,1,7,2,9,1,11,1,8,1,6,2,7,2,6,4,9,1,12,1,11,1,1,1,8,1,1,12,28,1,25,1,9,1,25,1,29,2,26,2,29,1,26,1,25,1,9,1,28,4,29,2,28,3,9,1,11,2,12,1,16,1,11,1,12,1,27,1,25,1,9,1,29,1,28,12,26,2,28,5,29,1,28,1,25,1,15,1,27,1,12,1,9,3,27,2,26,1,25,1,27,2,10,1,26,1,29,1,9,1,10,1,15,1,11,1,27,1,26,1,7,1,29,1,9,1,11,1,9,2,27,1,9,1,28,1,26,1,15,1,25,1,29,1,27,1,29,1,28,1,26,1,9,1,27,1,29,1,26,1,27,1,26,1,29,1,28,1,29,2,28,6,29,3,28,3,1,95,}, + {1,90,28,1,11,1,1,5,16,1,29,1,9,1,12,1,16,1,9,2,16,1,10,1,6,2,8,1,7,1,10,1,6,2,29,1,28,1,16,2,11,1,1,2,28,1,1,12,28,1,25,1,9,1,25,1,26,1,29,1,28,1,29,1,26,2,28,1,29,1,28,4,29,1,26,1,29,1,28,2,10,1,11,1,16,1,11,1,16,1,12,2,26,2,9,2,29,1,28,6,26,1,28,5,26,1,28,2,29,2,26,2,28,2,27,1,15,1,25,1,9,3,25,1,27,1,25,1,10,1,25,1,27,1,26,2,9,1,16,1,15,1,11,1,9,1,25,1,27,1,6,1,9,1,1,1,11,1,25,1,26,1,9,1,29,1,25,1,9,1,25,1,26,2,29,1,26,1,9,2,26,2,25,1,29,1,28,1,29,1,28,1,29,1,28,10,29,2,28,3,1,94,}, + {1,91,28,1,1,5,6,1,28,1,16,1,1,5,6,1,28,1,6,1,7,1,8,1,6,1,7,1,29,1,7,1,10,1,16,1,11,2,1,1,11,1,28,1,1,12,28,1,30,1,26,1,9,1,25,1,26,1,29,4,28,3,29,1,25,1,15,1,11,3,17,1,9,1,16,1,9,3,16,1,12,1,26,1,28,1,27,1,9,1,29,1,28,7,26,1,28,2,29,2,28,1,29,1,26,5,29,1,26,1,28,2,15,1,9,2,25,1,9,2,25,2,27,3,25,1,12,1,9,2,11,1,9,1,25,1,26,1,29,1,10,1,1,1,15,1,26,2,9,1,29,1,9,1,15,1,25,1,29,1,26,1,29,1,26,1,9,1,27,1,29,1,9,2,29,1,28,1,29,4,28,3,29,1,27,2,26,1,28,4,6,1,29,1,28,1,1,95,}, + {1,92,28,1,1,4,29,1,1,1,28,2,6,1,9,1,16,1,11,1,9,1,28,3,6,2,7,1,10,1,6,1,16,1,11,2,1,2,28,1,1,13,28,1,26,2,9,1,26,4,28,2,26,1,9,1,11,3,1,1,11,3,12,1,16,1,9,1,8,1,10,1,6,1,7,1,27,1,29,1,28,1,12,1,1,1,6,1,29,2,28,5,26,2,29,5,26,7,29,1,28,1,29,1,9,1,25,1,9,3,27,1,25,1,27,2,9,4,11,1,9,1,6,1,27,1,29,1,9,1,11,1,9,1,29,1,30,1,10,1,26,1,9,2,26,3,29,1,25,1,15,1,27,1,28,1,9,1,27,1,28,2,29,4,28,1,29,1,26,1,29,1,28,4,29,1,28,4,6,1,28,2,1,94,}, + {1,93,28,1,16,1,11,1,12,1,28,1,1,7,10,1,1,1,17,1,8,1,29,1,28,2,29,1,17,1,11,2,1,2,6,1,1,14,28,1,9,2,26,5,29,2,9,1,17,1,11,3,1,2,11,1,1,1,11,1,1,1,11,3,17,1,10,1,28,2,26,1,1,2,29,1,28,1,30,1,28,5,26,2,29,2,28,1,26,8,29,2,28,2,25,1,9,3,25,1,26,1,9,1,12,1,9,3,10,1,17,1,15,1,26,1,25,2,11,1,1,1,9,1,29,1,26,1,27,1,25,1,15,1,10,1,27,1,26,2,29,1,9,1,15,1,30,1,29,1,25,1,26,1,29,4,26,1,27,1,29,1,28,3,25,2,29,1,28,2,6,1,28,4,29,2,28,1,1,94,}, + {1,95,28,2,1,8,28,1,7,1,11,1,1,1,17,1,28,2,16,1,11,2,1,2,6,1,1,14,28,2,9,1,25,1,26,2,29,1,26,1,29,1,27,1,9,1,12,2,16,1,12,1,17,1,12,1,16,3,1,1,11,1,1,1,11,1,1,2,9,1,28,2,25,1,11,1,1,1,9,1,28,2,30,1,28,4,29,1,26,1,28,1,26,3,29,1,26,3,25,1,26,3,29,1,28,2,25,1,9,1,25,1,27,1,9,1,12,1,1,1,11,1,9,1,25,1,9,1,11,2,25,1,27,1,10,1,11,2,9,1,26,3,9,1,15,1,25,1,10,1,25,1,26,1,28,1,15,2,30,1,29,2,30,1,6,1,29,1,7,1,9,1,10,1,9,1,12,1,7,1,9,1,6,1,28,2,29,1,6,1,7,1,6,3,29,1,28,2,6,2,28,1,1,94,}, + {1,107,28,2,9,1,29,1,16,1,11,2,1,2,28,1,1,15,28,2,29,1,26,1,9,1,26,1,28,1,29,1,6,1,9,1,12,1,9,2,16,1,9,3,16,1,9,1,6,1,29,1,7,2,9,1,12,1,1,1,9,1,7,1,27,2,9,1,12,1,10,1,12,1,16,1,9,1,15,1,9,1,28,3,26,5,29,1,26,1,27,1,26,2,25,2,29,2,26,1,29,1,11,1,15,1,9,2,12,1,1,1,11,1,9,2,12,1,11,1,9,2,25,1,9,1,11,2,9,1,26,2,29,1,9,1,15,1,25,2,27,1,30,1,27,1,15,2,26,1,29,3,9,1,10,2,16,1,10,2,9,2,7,1,10,2,7,1,6,1,28,2,29,2,6,1,8,1,6,1,29,1,28,3,6,1,28,1,1,93,}, + {1,109,28,1,6,1,11,3,1,1,28,1,1,16,28,2,29,1,26,2,28,2,7,1,6,1,12,1,16,1,9,3,10,1,9,3,11,1,16,1,7,1,8,1,12,1,11,3,12,1,16,1,1,1,11,1,9,2,10,1,29,1,11,1,16,3,9,1,26,1,27,2,26,3,28,1,29,1,26,3,25,1,27,1,26,2,29,2,26,1,11,1,9,2,10,1,1,2,17,1,9,3,17,1,9,1,29,1,12,1,15,1,11,1,9,1,29,1,26,2,15,2,27,1,26,1,25,1,26,1,10,1,15,1,9,1,29,2,10,2,9,1,16,1,9,3,7,1,10,1,9,4,7,2,6,5,7,2,6,2,28,3,29,1,28,1,1,93,}, + {1,109,28,1,17,1,1,3,28,1,1,17,28,1,29,1,28,1,26,1,29,1,28,1,29,1,9,1,6,1,16,1,9,1,16,3,10,2,16,1,6,1,7,1,9,1,1,1,11,5,1,1,11,2,1,1,9,1,27,1,9,1,27,1,10,1,9,1,8,1,9,1,15,1,12,1,11,1,9,1,25,1,26,2,28,1,29,1,26,1,9,1,27,1,25,1,26,4,27,1,9,2,25,1,15,1,1,1,11,1,9,1,27,1,10,1,9,1,11,1,26,1,25,1,15,4,26,2,25,1,9,1,15,1,27,1,26,1,25,1,27,2,16,1,10,1,6,1,9,2,10,1,12,2,10,2,9,3,10,1,27,1,29,1,27,1,7,1,6,1,10,1,7,1,10,1,6,2,7,1,6,1,7,1,29,1,7,1,6,1,28,2,6,1,29,1,28,1,1,92,}, + {1,108,28,1,9,1,1,3,28,1,1,17,28,2,29,1,28,1,29,1,28,1,29,1,16,1,12,1,9,1,7,1,6,5,9,1,11,1,16,1,9,1,10,1,7,1,10,1,12,1,11,6,7,1,28,1,29,1,12,2,29,1,25,1,10,1,9,3,11,1,15,1,16,1,27,1,25,1,9,1,26,2,9,2,26,1,25,2,26,2,9,1,15,1,9,2,11,1,1,1,16,1,10,1,25,1,9,1,11,1,25,1,10,1,15,1,9,1,15,2,26,2,10,1,15,1,9,1,25,2,10,1,27,2,11,1,10,1,7,1,9,1,8,1,16,1,12,1,9,1,10,1,7,1,10,1,9,1,10,1,8,1,30,1,29,1,28,1,30,1,29,1,28,2,10,1,9,1,28,2,6,1,7,1,6,2,28,1,7,1,6,1,28,2,6,1,28,1,1,92,}, + {1,107,28,2,11,1,1,2,7,1,1,18,28,3,29,1,28,2,9,1,11,1,16,1,11,1,12,1,16,1,10,1,9,1,7,1,10,1,16,1,11,2,1,1,9,1,7,1,6,1,7,1,12,1,11,6,1,1,9,3,16,1,12,1,11,1,9,1,29,2,26,1,11,2,9,1,25,1,15,1,9,1,26,2,9,1,27,1,25,2,27,1,9,4,11,1,1,1,12,1,27,1,10,1,9,1,1,1,9,1,25,1,15,1,9,2,15,1,27,2,9,1,15,1,9,1,25,1,9,1,27,2,9,1,15,1,6,1,10,1,9,2,17,1,9,1,6,1,30,1,29,1,6,1,26,1,30,1,29,1,27,2,26,1,28,3,9,2,29,1,28,2,6,1,10,1,7,1,6,1,7,1,28,2,7,1,28,2,29,1,28,2,1,91,}, + {1,107,28,1,6,1,1,2,11,1,28,1,1,18,28,3,29,1,28,1,6,1,11,1,12,1,17,1,1,3,11,5,1,1,11,3,1,1,11,1,9,1,12,1,11,1,1,1,11,2,1,3,11,1,9,1,6,2,7,1,12,2,10,1,25,1,28,1,26,1,25,2,9,4,25,1,9,1,25,1,27,1,26,1,25,1,9,2,10,1,15,1,1,1,17,1,10,1,9,1,10,1,1,1,16,1,9,1,17,1,9,1,25,1,11,1,25,1,26,1,9,4,16,1,27,1,26,1,9,1,12,1,29,1,15,1,10,1,9,1,11,1,9,1,30,1,26,1,30,2,29,1,30,1,29,2,10,1,9,1,10,1,26,1,29,1,28,1,26,1,14,1,15,1,9,1,28,2,10,1,6,3,7,1,28,2,7,1,28,2,29,1,28,1,1,91,}, + {1,106,28,2,16,1,1,2,28,1,1,19,28,3,29,1,28,1,9,1,11,1,12,1,1,1,11,1,16,1,9,1,15,3,11,3,27,1,28,1,29,1,26,1,9,1,11,5,9,1,27,1,29,1,28,1,27,1,6,1,17,1,11,1,16,1,6,1,7,2,9,3,25,2,9,1,26,2,9,2,25,6,10,1,11,1,1,1,11,1,7,1,25,1,9,1,1,1,15,1,9,3,25,1,15,1,10,1,25,1,15,1,9,2,25,1,15,1,10,1,27,1,12,1,9,1,29,1,15,1,9,1,17,1,15,1,26,1,29,2,26,5,6,1,7,1,10,2,7,2,29,2,28,1,26,1,29,1,9,2,28,1,6,1,8,1,29,1,7,2,28,2,7,1,29,1,28,4,1,90,}, + {1,106,28,1,6,1,11,1,1,2,28,1,1,19,28,4,6,1,11,4,26,1,28,2,9,1,26,1,28,2,26,3,29,1,26,1,29,2,26,2,9,1,25,1,10,1,28,3,29,1,26,1,28,2,10,1,11,2,1,1,15,1,7,1,25,1,26,1,9,1,15,1,29,1,26,1,27,1,26,1,9,1,26,3,27,1,25,2,12,1,1,1,11,1,9,1,7,1,15,1,1,1,12,1,25,1,9,2,27,1,15,1,9,5,25,1,15,1,10,1,26,1,9,1,10,1,6,1,17,1,1,1,11,1,9,1,30,1,26,2,27,1,26,3,29,1,6,1,9,1,11,2,12,1,9,2,28,2,26,1,29,1,28,1,27,1,15,1,6,1,28,1,9,1,6,4,28,2,7,1,28,1,29,1,28,2,1,90,}, + {1,106,28,1,10,1,11,1,1,1,10,1,1,20,28,4,9,1,11,1,17,1,11,1,29,1,28,1,29,1,9,1,26,1,28,4,25,1,26,1,28,3,26,2,28,1,26,1,28,2,29,3,28,1,26,1,29,1,28,1,25,1,1,1,15,1,7,1,15,1,1,1,7,1,29,1,27,1,11,1,26,5,9,1,26,1,25,3,9,1,1,1,11,1,9,1,10,1,11,2,9,1,10,1,9,1,10,1,9,6,25,1,9,1,15,1,10,1,27,1,9,1,27,1,9,1,11,2,12,1,27,1,30,1,6,1,27,4,26,2,27,1,6,1,9,3,10,2,8,1,6,1,26,2,28,3,9,1,28,3,7,2,8,1,6,2,28,2,6,1,28,1,7,1,28,1,1,90,}, + {1,105,28,1,6,1,9,1,1,2,28,1,1,19,28,5,17,1,11,2,12,1,28,3,25,1,29,1,28,3,29,1,9,1,26,1,28,5,15,1,25,1,28,4,29,1,28,1,26,2,29,1,28,1,29,2,28,1,9,2,8,1,6,1,29,1,11,1,9,1,26,1,25,1,26,1,25,3,27,2,9,1,11,1,1,1,12,1,7,1,11,2,9,1,25,1,9,2,25,2,9,1,15,1,9,1,10,1,25,1,9,1,12,1,9,1,27,1,25,1,10,1,15,1,11,2,10,1,6,1,27,1,10,1,9,2,10,1,9,6,7,1,10,1,7,1,8,1,12,2,9,1,10,1,28,1,9,1,26,1,28,1,29,1,28,1,8,1,28,1,6,1,7,2,6,1,7,1,29,1,28,3,29,1,28,2,1,89,}, + {1,105,28,1,9,1,17,1,1,2,28,1,1,19,28,1,29,1,28,2,7,1,11,3,29,1,28,3,29,1,28,4,29,1,25,1,26,1,29,3,28,1,29,2,9,1,26,2,29,3,26,1,28,1,25,1,29,5,9,1,26,1,25,1,11,1,16,1,25,1,15,1,27,2,25,5,27,1,12,1,1,1,12,1,10,1,11,1,15,1,9,4,25,1,9,1,15,2,25,2,10,1,9,1,15,1,9,1,26,1,10,1,11,1,1,1,17,1,9,1,26,2,10,1,9,1,10,1,27,1,10,3,25,1,10,1,9,2,10,1,16,1,9,2,12,1,9,1,27,1,10,1,28,2,9,1,14,1,29,1,28,2,9,1,16,1,6,2,7,1,29,2,27,1,28,4,6,1,28,1,1,89,}, + {1,105,28,1,16,1,11,1,1,1,11,1,28,1,1,18,28,1,29,1,9,1,26,1,28,1,16,1,11,3,28,9,29,1,9,1,26,1,29,2,26,1,29,1,26,1,28,1,26,1,25,1,29,4,26,1,29,1,26,2,29,3,28,1,9,2,29,1,9,1,25,1,30,1,11,1,15,1,26,1,25,5,27,1,12,1,1,1,15,1,11,1,9,2,25,1,9,5,25,2,9,1,27,1,25,1,17,1,25,1,27,1,11,2,1,1,9,1,25,1,26,1,27,1,10,1,27,1,26,2,27,2,26,5,29,1,30,1,7,1,6,1,9,2,10,1,27,1,29,1,28,1,26,1,28,1,9,1,26,1,28,2,29,1,16,1,7,1,6,2,7,1,29,1,28,1,26,1,28,3,29,1,28,1,1,89,}, + {1,105,28,1,12,1,1,2,11,1,28,1,1,17,28,3,29,1,28,2,16,1,1,1,11,1,25,1,28,4,26,2,28,1,29,1,28,1,29,1,25,1,26,1,28,4,29,1,28,1,29,2,28,1,29,2,26,1,29,1,26,1,29,1,25,1,29,1,28,1,29,2,9,1,15,1,26,1,29,2,26,1,9,1,11,1,27,1,26,2,25,1,26,1,25,1,26,1,15,1,11,2,9,2,25,1,9,4,25,5,10,1,15,1,25,1,12,1,11,1,12,1,17,1,12,1,27,4,26,1,27,1,9,2,25,1,26,7,27,2,29,2,26,2,27,1,26,2,30,1,29,1,28,1,29,1,28,2,30,1,6,1,9,1,10,1,28,1,29,1,25,1,28,1,27,2,28,3,6,1,28,1,1,88,}, + {1,105,28,1,11,2,1,1,11,1,28,1,1,17,28,4,30,1,7,1,11,1,1,1,11,1,28,4,29,1,26,1,28,2,29,1,28,2,26,2,28,3,29,1,26,1,29,1,26,1,28,1,29,3,26,1,29,3,26,2,29,2,26,1,27,1,11,1,26,2,25,1,29,1,27,1,1,1,15,1,29,1,26,4,27,1,17,1,1,1,27,1,9,6,25,1,26,1,27,1,9,2,25,1,15,2,1,1,11,1,10,1,16,1,12,1,10,2,9,1,12,1,9,2,17,1,11,3,17,1,15,1,10,1,26,2,10,1,25,1,29,2,30,1,29,1,27,1,25,1,26,1,11,1,25,1,28,1,25,1,9,1,26,1,28,2,10,1,9,1,8,1,9,1,29,1,28,1,26,1,28,1,29,1,9,1,30,1,28,2,29,1,28,1,1,88,}, + {1,105,28,1,11,2,1,2,28,1,1,16,28,5,7,1,10,1,1,1,11,2,28,4,29,1,26,1,28,2,29,1,28,2,26,1,25,1,26,3,29,1,28,1,9,1,25,1,29,2,28,2,29,1,26,1,29,3,25,1,29,3,26,1,1,1,26,1,29,1,25,1,26,2,12,1,1,1,9,1,26,2,27,1,26,2,11,1,9,3,25,2,9,2,25,2,9,1,25,1,27,1,9,1,11,1,1,1,11,1,25,1,27,1,12,2,9,1,16,1,9,4,16,1,12,1,17,2,11,1,17,1,16,1,7,1,10,1,11,1,1,1,17,1,15,1,29,1,26,1,25,2,26,1,29,2,27,1,28,1,29,1,17,1,12,1,9,1,28,2,12,1,7,1,10,1,9,1,28,2,29,1,28,1,27,2,28,5,1,87,}, + {1,105,28,1,16,1,1,3,7,1,1,15,28,6,9,1,11,2,1,1,15,1,29,1,26,1,28,3,29,2,28,1,26,1,29,1,28,1,26,1,25,1,28,3,29,3,9,1,29,1,28,1,26,1,29,3,26,1,28,1,29,1,9,1,25,1,28,1,29,2,15,1,9,1,29,1,26,1,27,1,29,1,27,1,1,1,11,1,26,1,25,1,27,1,25,2,9,6,25,1,27,1,25,2,27,1,25,1,15,1,11,2,9,1,27,2,12,2,27,1,10,2,25,4,27,1,7,3,10,2,9,1,7,1,29,1,7,1,17,1,11,2,17,1,27,1,25,1,26,1,29,1,30,1,29,1,28,1,29,3,12,1,17,1,27,1,28,1,6,1,16,1,6,1,29,1,28,2,29,1,28,2,9,1,28,3,29,1,28,1,1,87,}, + {1,106,6,1,1,4,28,1,1,14,28,6,12,1,11,2,1,1,12,1,28,1,26,3,28,2,29,1,28,3,29,2,26,1,28,5,29,1,9,1,29,1,28,2,29,1,26,1,29,1,25,1,26,1,28,1,26,1,15,1,26,1,29,2,9,2,29,1,26,1,15,1,28,1,29,1,15,1,11,1,26,2,25,1,27,1,25,3,9,4,25,1,26,1,25,1,27,1,9,1,11,2,9,1,26,1,27,1,9,1,12,1,9,1,27,1,10,1,9,1,10,1,25,1,9,1,25,2,10,1,27,1,29,1,6,1,30,1,9,1,11,2,12,1,9,1,7,1,10,1,25,1,9,1,25,1,26,1,10,1,9,1,26,1,28,1,29,2,6,1,28,1,6,1,12,2,28,2,7,2,8,1,10,1,29,1,28,3,26,1,28,5,1,87,}, + {1,106,28,1,11,1,1,3,28,1,1,13,28,6,9,1,12,1,11,2,1,1,10,1,28,4,29,1,28,1,26,1,29,1,26,1,29,2,26,2,29,2,28,2,29,1,26,1,28,1,29,4,26,1,29,1,26,1,25,1,29,2,26,1,15,1,29,2,9,1,15,1,26,2,11,1,9,1,28,1,26,1,11,1,9,1,29,1,26,1,27,1,9,4,25,3,27,1,25,1,10,1,11,2,9,1,26,2,9,1,15,1,9,3,10,1,25,3,9,1,25,1,30,1,25,1,17,1,11,1,12,1,10,2,29,1,9,1,11,1,1,1,11,1,10,1,28,1,29,1,27,1,25,1,6,1,10,1,9,4,29,1,7,1,9,1,29,1,10,1,11,1,29,1,28,1,9,1,7,1,8,1,10,1,7,1,29,1,28,2,29,1,26,1,28,5,1,86,}, + {1,107,16,1,1,3,17,1,1,12,28,6,9,1,15,1,12,1,11,3,9,1,26,2,28,6,29,1,26,1,29,1,26,3,29,1,26,1,25,1,9,1,26,1,29,1,28,4,26,1,29,2,25,1,26,1,29,2,9,1,15,1,29,1,26,1,15,1,25,1,26,1,9,1,11,1,26,1,27,1,11,1,15,1,29,1,25,1,9,1,26,1,25,1,9,2,25,1,27,2,25,1,15,1,11,1,9,1,26,2,27,1,15,1,11,1,9,2,10,2,9,4,10,1,9,1,7,1,9,1,16,1,12,1,11,3,17,1,29,2,9,1,10,1,6,2,9,6,10,1,9,1,12,1,9,1,6,1,9,1,10,1,7,1,16,1,6,1,29,1,9,1,10,2,7,1,8,1,6,1,29,1,28,2,26,1,28,2,29,1,28,2,1,86,}, + {1,107,28,1,1,4,28,1,1,11,28,6,15,1,29,1,12,1,11,3,17,1,26,1,28,2,29,1,26,3,28,1,29,2,28,1,26,2,29,2,28,1,29,1,25,1,28,1,29,1,28,1,26,1,29,1,28,1,26,1,29,3,25,1,26,1,29,2,14,1,9,1,28,1,25,2,26,2,11,1,9,1,27,1,25,1,11,1,9,2,26,2,25,1,27,1,26,1,27,1,26,1,9,1,1,1,17,1,30,1,29,1,25,1,9,1,11,2,9,3,12,1,9,1,12,3,16,3,9,2,10,1,9,1,11,2,17,1,11,1,17,1,30,2,26,1,29,1,16,1,9,4,12,1,16,1,9,2,16,1,17,1,6,1,7,1,16,1,10,1,7,2,29,1,9,2,8,1,6,1,7,3,28,2,29,1,26,1,28,1,6,1,28,2,1,86,}, + {1,107,28,1,9,1,1,3,12,1,1,10,28,9,16,1,11,4,28,8,29,3,26,1,29,1,28,2,29,1,28,1,26,2,28,1,29,2,28,2,29,1,26,1,28,1,29,1,26,2,28,1,29,1,26,1,11,1,26,1,28,1,29,1,26,1,28,1,15,1,9,1,29,1,28,1,11,1,15,1,26,1,29,1,26,1,25,1,9,1,26,2,11,2,27,1,26,1,27,1,9,1,11,2,15,1,27,1,26,1,25,2,10,1,9,2,10,2,16,1,12,2,16,1,12,1,9,3,10,2,12,1,9,1,10,1,29,2,12,4,16,1,10,1,9,2,10,3,9,1,6,1,8,1,10,4,7,1,10,2,6,1,7,2,10,1,7,1,29,1,28,2,27,1,29,1,6,2,28,2,1,85,}, + {1,108,28,1,1,4,28,1,1,9,28,9,9,1,11,4,29,1,28,8,29,1,26,2,29,1,28,5,29,1,28,2,29,2,28,2,27,1,29,1,28,2,25,1,26,1,28,2,15,2,29,4,27,1,15,1,29,1,28,1,9,1,11,1,29,1,26,3,29,1,25,1,11,1,12,1,26,1,27,1,9,1,17,1,11,2,9,1,26,1,9,1,26,1,10,2,25,3,10,1,9,11,10,1,9,2,10,1,9,3,12,2,16,1,9,4,16,1,10,1,8,1,9,2,10,1,9,2,10,1,9,1,10,2,6,1,10,1,7,1,10,1,7,1,29,1,28,2,29,1,7,1,6,3,28,1,1,85,}, + {1,108,28,1,11,1,1,4,28,1,1,7,28,10,10,1,11,1,1,1,11,2,9,1,28,4,26,1,28,3,29,1,26,2,29,1,28,4,29,1,28,1,29,1,28,1,29,1,26,1,28,2,26,1,29,1,28,2,26,1,9,1,28,2,29,1,11,1,25,1,29,1,28,1,29,1,26,1,15,1,29,2,25,1,11,1,26,3,29,1,9,1,15,1,9,1,25,1,12,1,11,2,15,1,9,1,25,1,27,2,29,1,9,1,27,1,25,3,9,1,11,1,1,1,11,1,9,1,7,1,10,1,9,1,12,2,9,3,16,1,10,1,9,2,10,1,9,2,17,2,16,2,12,1,16,1,9,6,16,1,9,1,10,5,7,1,9,1,8,1,7,1,8,1,29,1,28,3,7,1,6,1,7,1,8,1,28,2,1,84,}, + {1,109,8,1,1,4,11,1,28,1,1,5,28,9,26,1,29,1,7,1,17,1,11,2,1,1,15,1,28,4,29,1,28,3,29,1,26,2,28,9,26,1,29,1,28,2,29,1,27,1,28,1,29,1,28,1,25,1,9,1,28,2,12,1,9,1,28,1,29,1,28,1,26,1,15,1,29,2,26,2,29,1,26,1,29,1,9,1,15,1,11,3,12,1,10,1,27,1,9,1,25,1,27,2,25,1,9,1,27,1,9,1,10,1,25,1,27,1,10,1,9,2,10,1,26,1,25,1,11,1,1,1,11,1,12,1,6,2,10,1,9,1,12,2,10,1,6,1,10,1,9,2,17,1,12,1,9,2,12,2,9,2,10,1,9,1,10,2,8,1,10,3,7,3,9,2,7,2,10,1,28,1,29,3,7,1,6,2,10,1,28,1,1,84,}, + {1,109,28,1,11,1,1,4,17,1,28,1,1,3,28,1,10,1,16,1,9,2,26,1,27,1,28,3,27,1,28,2,9,1,11,2,1,1,11,1,28,4,26,1,28,2,29,1,26,4,28,3,29,1,28,1,26,1,29,1,28,1,29,2,28,3,9,1,29,1,28,3,15,1,29,1,28,1,27,1,15,1,28,1,29,2,26,1,15,1,26,1,29,1,28,2,26,1,29,1,25,1,11,2,15,1,9,1,25,1,26,1,25,1,15,1,25,1,26,1,25,3,9,1,25,1,9,1,25,1,9,1,25,3,27,1,9,1,25,2,12,1,9,1,10,1,27,1,26,1,27,1,12,1,11,2,6,1,29,1,12,2,16,1,9,4,10,1,9,1,16,1,9,1,10,2,7,1,10,2,6,1,9,1,8,2,10,1,8,1,10,2,6,1,8,1,7,3,6,6,7,1,28,1,1,84,}, + {1,110,28,1,11,1,1,5,28,1,1,2,28,1,9,2,6,4,11,1,1,1,12,1,28,3,6,1,11,3,1,1,26,1,28,4,26,1,28,1,26,1,25,1,26,1,29,1,28,6,25,1,26,1,28,1,26,1,29,1,28,1,29,1,28,1,25,1,26,1,28,3,26,1,11,1,28,1,29,1,12,1,29,1,28,2,29,1,25,1,28,3,29,1,27,1,15,2,9,1,26,2,29,1,26,1,9,2,25,1,26,1,25,1,9,1,25,1,27,1,25,1,26,1,25,1,9,3,25,1,9,1,25,1,27,1,25,3,26,1,27,1,30,2,25,1,11,2,7,1,29,1,7,1,9,1,11,2,16,1,10,1,9,2,10,3,9,6,8,1,10,2,8,3,10,1,7,1,6,1,7,1,6,1,7,1,10,1,7,3,6,3,7,1,6,1,28,1,1,83,}, + {1,111,28,1,1,6,12,1,28,1,6,2,7,2,6,1,29,1,6,1,11,1,1,2,11,1,28,3,11,3,1,1,9,1,28,4,9,1,26,3,28,2,26,1,29,1,28,3,26,1,28,2,26,1,25,1,28,2,29,1,28,1,29,1,25,1,28,4,9,1,27,1,28,1,12,1,26,1,28,1,26,1,25,1,28,3,29,1,26,1,15,2,10,1,27,3,25,1,9,1,15,1,25,1,26,1,25,3,26,1,25,1,9,1,25,1,9,1,15,1,1,1,11,1,25,1,26,1,25,1,9,1,25,2,26,2,10,1,26,2,27,1,25,1,9,1,27,2,29,1,10,1,1,1,17,1,11,1,9,5,10,1,9,1,10,1,9,5,7,1,16,1,9,1,10,1,7,1,10,1,7,2,8,1,6,1,7,1,8,1,10,1,8,1,7,1,6,3,7,1,9,1,28,1,1,83,}, + {1,112,28,1,1,4,11,1,1,2,9,1,7,1,6,2,28,2,9,1,11,4,1,1,12,1,28,1,12,1,11,1,1,2,15,1,28,4,26,2,25,1,26,1,28,2,29,1,26,2,25,1,26,2,28,3,9,1,26,1,28,4,9,1,26,1,28,3,26,1,15,1,9,2,27,1,29,1,26,1,28,2,26,4,15,1,30,1,29,1,26,1,25,1,9,1,15,1,9,1,26,2,25,6,26,1,27,1,25,4,26,1,25,2,27,1,25,3,12,1,11,2,15,1,9,1,26,1,29,1,9,1,1,1,17,1,6,1,7,1,11,2,12,1,9,2,16,1,9,3,10,1,9,3,10,1,9,1,10,1,16,1,12,1,9,1,10,2,7,1,10,1,8,1,6,1,7,2,10,1,7,2,6,2,7,1,6,1,9,1,28,1,1,83,}, + {1,113,28,1,11,4,12,2,16,2,10,3,7,1,12,1,1,2,11,4,16,1,12,1,11,2,1,1,26,1,28,1,29,2,28,2,26,1,25,1,29,1,28,1,29,1,28,2,26,1,15,1,28,5,26,1,29,1,28,4,25,1,9,1,28,4,15,3,9,1,29,1,28,2,25,1,29,1,26,1,25,1,29,1,28,1,26,1,9,1,15,2,25,1,26,1,27,1,25,3,26,2,25,1,27,1,26,1,9,1,11,1,15,1,9,1,25,2,10,1,9,3,27,1,25,1,9,1,11,1,1,2,11,1,9,1,29,2,12,1,11,2,17,1,7,2,16,1,11,1,9,2,17,1,16,1,9,6,10,1,9,2,6,1,10,1,9,3,10,3,7,1,10,1,7,1,10,1,7,3,6,1,7,3,6,1,28,1,1,82,}, + {1,114,28,1,16,1,1,2,11,1,12,1,9,1,6,1,10,1,9,1,12,1,11,8,12,1,11,2,1,2,28,3,29,1,28,2,26,1,25,1,28,2,26,1,29,1,28,5,29,1,28,2,25,1,26,1,28,2,29,1,28,1,26,1,15,1,26,1,28,3,10,1,11,2,29,1,28,2,29,1,26,1,29,1,26,1,28,1,29,1,9,1,11,1,15,1,26,1,29,1,26,3,27,1,26,1,25,8,9,1,25,1,26,1,9,1,11,1,1,2,15,1,26,2,25,1,9,1,8,1,9,1,12,1,10,2,30,1,10,1,11,4,16,2,12,1,7,1,6,1,12,1,17,1,12,1,16,1,9,1,8,1,6,1,16,1,12,1,9,2,29,1,28,1,29,1,9,4,10,3,7,1,10,1,7,3,6,1,7,1,10,1,6,1,10,1,28,1,1,82,}, + {1,115,28,1,29,1,12,1,1,2,9,1,28,1,29,1,6,1,9,1,11,1,1,1,11,2,17,1,11,1,16,1,9,1,17,1,11,2,1,1,15,1,28,6,29,1,26,1,28,2,26,1,28,5,29,2,28,2,26,2,29,2,26,2,28,1,15,2,26,1,28,2,30,1,1,1,29,1,28,1,29,1,26,1,29,2,28,2,25,1,15,1,9,1,28,3,26,1,27,1,26,2,25,2,27,1,25,2,26,1,25,1,15,2,9,1,27,2,26,1,9,1,11,1,1,1,11,1,9,1,25,3,26,1,30,1,9,1,12,1,11,2,9,1,29,1,7,1,11,4,16,1,9,1,6,1,29,1,9,1,11,1,17,1,9,2,10,1,6,1,9,1,12,1,9,1,16,1,10,1,28,1,6,1,9,4,7,1,10,1,8,1,7,1,10,1,7,2,10,1,6,1,7,3,10,1,28,1,1,82,}, + {1,114,28,1,10,1,28,3,29,1,6,1,29,2,6,1,16,1,11,4,17,1,9,2,16,1,17,1,11,1,1,1,15,1,28,3,29,1,28,1,29,1,28,1,26,1,29,1,28,2,26,1,29,1,28,4,25,1,29,1,28,2,25,2,29,1,26,1,25,1,9,1,28,1,9,1,11,1,10,1,27,1,28,1,26,1,28,3,26,1,28,3,26,1,9,1,26,1,28,2,29,1,26,3,29,1,25,1,27,1,26,1,27,2,26,1,25,3,9,2,25,1,26,1,9,1,25,2,27,1,26,1,25,2,26,1,25,2,27,2,9,2,11,1,1,1,11,1,9,1,29,2,16,1,11,2,9,3,29,2,11,1,12,1,29,1,25,1,12,1,6,1,28,1,27,2,9,1,6,1,29,1,7,1,9,1,7,1,9,2,10,2,8,2,10,1,8,1,7,1,10,1,6,1,10,1,7,2,10,1,6,1,1,82,}, + {1,114,28,1,7,1,28,5,29,1,6,2,9,1,11,6,12,1,11,4,28,4,29,3,26,2,28,2,29,1,26,1,29,1,26,2,28,1,26,2,28,3,26,1,15,1,29,1,27,1,26,1,15,1,28,1,26,1,1,1,16,1,9,1,26,1,28,3,26,1,28,2,25,2,26,1,28,2,29,1,26,3,25,2,26,7,25,5,27,1,25,1,27,1,25,2,9,1,27,1,25,2,9,3,10,1,6,2,16,1,17,1,11,3,6,1,29,2,15,1,11,1,7,2,12,1,10,1,29,1,30,1,9,1,26,1,27,1,26,1,9,1,29,1,28,1,29,1,9,1,29,2,9,1,10,2,9,2,10,1,9,1,10,1,7,1,9,1,8,2,7,2,8,1,7,1,8,1,7,2,28,1,1,81,}, + {1,114,28,1,29,1,28,4,25,1,7,1,29,1,6,1,11,2,17,1,1,1,17,1,11,2,1,1,11,1,15,1,29,1,26,1,28,5,26,1,29,2,26,1,28,3,26,1,29,1,28,2,25,1,26,1,28,1,29,1,28,2,25,1,15,1,26,2,25,1,15,1,26,1,29,1,11,1,1,1,27,1,28,3,29,1,28,1,29,1,25,1,26,1,28,2,29,1,26,6,25,5,26,1,25,1,26,3,25,2,27,1,26,1,25,5,26,1,25,1,9,1,11,1,1,1,12,1,6,1,10,1,9,1,16,1,9,1,17,1,11,2,9,1,10,1,6,1,26,1,10,1,6,1,27,1,9,1,11,1,9,1,26,1,29,1,30,1,26,1,9,3,29,1,27,1,26,1,30,1,6,1,9,1,10,1,9,2,10,1,9,1,10,3,9,1,8,1,10,1,8,4,7,1,8,1,9,1,28,1,1,81,}, + {1,113,28,7,29,1,1,1,11,1,17,3,11,5,17,1,25,2,30,1,9,1,28,3,26,1,29,2,26,1,29,2,28,3,25,1,26,1,28,2,25,1,26,1,28,1,29,1,28,2,9,2,27,1,26,1,27,1,15,1,9,1,29,1,11,1,1,1,28,5,26,2,28,3,26,1,25,3,9,2,15,1,9,4,10,1,25,1,27,1,25,2,26,3,25,2,27,1,25,1,26,2,27,1,26,1,25,2,27,1,15,1,9,1,26,1,10,1,11,1,12,1,16,1,9,2,12,1,16,1,12,1,11,1,12,1,6,1,29,1,26,2,27,1,12,1,11,1,9,1,6,2,29,1,26,1,9,2,25,1,26,1,6,1,29,1,10,1,9,1,7,1,9,1,16,1,10,1,9,1,7,1,10,1,9,1,10,3,8,1,10,1,7,1,10,1,7,1,10,1,9,1,28,1,1,81,}, + {1,113,28,9,17,1,1,2,11,6,9,1,28,1,29,1,9,1,11,1,25,1,28,1,29,1,25,1,28,1,26,3,29,1,28,3,25,2,28,1,29,1,26,1,28,1,29,2,28,1,29,1,9,1,15,1,26,1,25,1,26,1,15,1,17,1,26,1,11,1,25,1,28,3,26,1,25,1,28,3,25,2,26,1,28,4,29,1,26,2,9,2,12,2,9,5,25,1,29,1,26,1,9,1,11,5,25,1,27,2,25,1,26,2,30,1,10,1,1,1,11,2,16,1,9,2,10,1,9,1,11,2,9,1,30,1,26,4,17,1,12,1,16,1,10,1,6,1,29,1,26,1,9,1,25,2,7,1,6,1,9,2,10,1,9,1,16,1,10,1,9,1,7,1,10,1,9,1,10,5,7,1,10,1,8,1,10,2,28,1,1,81,}, + {1,113,28,9,7,1,11,1,12,1,11,6,9,1,29,2,15,2,25,4,28,1,9,1,29,1,26,2,28,3,26,1,25,1,26,3,28,2,26,1,29,2,27,1,11,1,27,1,25,1,27,1,9,1,11,1,10,1,9,1,28,3,25,1,26,1,28,3,26,1,28,3,29,2,26,1,25,1,26,1,27,5,9,1,12,1,17,1,15,2,12,1,9,1,27,1,29,1,9,1,11,1,1,2,11,2,25,1,27,2,25,1,26,1,10,1,27,2,11,1,1,1,11,2,16,1,9,1,16,1,10,1,16,1,11,2,9,1,26,4,7,1,12,2,16,1,9,1,26,1,29,1,26,1,9,1,26,1,10,1,9,2,10,1,9,3,10,4,9,1,8,1,10,4,7,1,10,4,28,1,1,81,}, + {1,113,28,1,29,2,28,6,16,1,28,2,11,2,1,2,11,1,17,1,27,2,25,1,11,1,26,2,25,1,11,1,9,1,29,1,26,1,29,1,26,2,28,3,26,5,29,1,26,1,29,1,26,1,29,2,11,1,15,1,26,1,25,1,9,1,11,1,15,1,29,1,28,2,9,1,28,2,29,1,26,1,29,1,28,1,29,1,9,1,15,2,16,1,15,2,9,1,12,4,9,7,15,1,17,1,9,1,27,1,26,1,9,1,10,1,25,2,27,1,25,2,26,1,25,1,26,1,25,1,27,1,12,1,11,3,9,1,16,1,11,1,12,1,9,2,11,2,10,1,26,4,10,1,16,1,12,1,16,1,9,1,26,1,28,1,9,1,28,1,10,1,12,1,9,1,10,1,9,3,10,2,9,1,10,1,9,1,10,1,9,1,10,3,7,1,10,3,9,1,29,1,1,81,}, + {1,113,28,1,29,1,28,5,29,1,10,1,30,1,28,1,29,1,11,3,17,1,11,1,9,1,26,1,9,1,15,2,26,2,25,1,11,1,15,1,26,1,29,1,26,3,28,3,26,4,28,1,29,1,26,1,29,1,26,1,29,2,25,1,11,1,25,1,27,1,25,1,11,2,28,2,25,1,28,2,29,1,26,1,28,1,29,1,9,3,30,2,9,2,10,1,9,9,12,1,10,1,6,2,10,1,9,2,25,1,29,1,26,1,25,1,27,1,25,6,9,1,26,2,12,1,1,1,11,1,6,1,9,1,11,2,16,1,10,1,12,1,11,1,16,1,25,1,27,1,26,1,27,1,26,1,9,1,12,2,17,1,29,1,26,1,29,2,10,1,12,1,9,4,10,1,9,1,10,1,9,1,10,2,9,2,10,2,7,1,10,2,9,2,16,1,28,1,1,81,}, + {1,112,28,1,29,2,28,1,30,1,28,2,29,1,28,1,9,1,10,1,28,1,29,1,16,1,11,1,1,1,17,1,11,1,10,1,27,1,9,2,27,1,9,1,26,1,15,1,9,2,25,1,9,1,26,2,29,1,28,3,26,4,29,4,27,1,26,2,29,1,11,1,15,1,25,1,26,1,11,1,15,1,28,1,29,1,28,3,26,2,27,1,9,1,29,1,28,2,29,1,7,2,10,2,30,1,29,3,26,1,27,5,10,1,9,2,27,1,29,2,30,1,25,3,26,1,9,1,25,2,27,1,25,1,27,1,26,1,25,1,26,1,27,1,12,1,11,1,6,1,16,1,11,2,12,1,9,2,16,3,25,2,26,2,27,1,9,1,17,1,12,1,7,1,15,1,29,1,26,1,12,1,10,2,16,1,9,2,10,1,9,1,10,1,9,1,10,2,9,2,10,2,7,1,9,1,8,1,9,2,16,1,28,1,1,81,}, + {1,112,28,4,6,1,28,4,8,1,29,1,28,1,6,1,17,1,1,2,12,1,11,1,12,2,9,3,15,2,9,1,26,1,27,1,26,1,25,1,9,1,15,1,26,1,29,1,28,3,26,2,29,1,26,1,28,1,25,1,28,1,26,1,9,1,29,1,26,1,25,1,11,1,12,1,9,3,28,5,26,1,29,3,26,1,6,3,7,1,10,1,9,2,10,1,9,1,10,1,9,5,12,1,9,1,10,1,25,1,9,1,12,1,15,1,9,1,29,3,25,3,27,2,25,5,26,2,27,1,10,1,26,1,27,1,12,1,11,1,17,1,9,2,16,3,10,1,26,3,27,1,9,1,12,1,11,1,10,1,26,2,10,2,9,2,16,1,9,7,10,1,16,1,9,1,10,2,7,1,9,1,8,1,12,1,7,1,9,1,1,82,}, + {1,112,28,6,7,1,6,1,8,1,6,1,28,3,29,1,11,1,17,1,11,2,12,1,9,1,10,1,12,1,15,1,11,1,1,1,15,1,29,1,26,1,25,2,26,1,9,2,26,1,28,3,26,2,28,1,26,2,29,1,28,2,25,1,9,1,26,1,25,1,15,2,12,1,9,1,25,1,28,4,26,2,30,1,6,1,30,1,29,1,6,2,7,3,6,1,29,1,25,2,26,1,27,1,10,2,25,1,27,1,25,1,10,1,9,1,12,2,9,4,25,1,26,4,9,1,25,1,26,1,25,6,27,1,26,1,27,1,26,1,9,1,11,2,9,2,16,4,25,1,27,1,26,1,27,1,9,1,11,1,16,1,25,2,29,1,25,1,27,1,9,9,10,1,9,2,10,4,9,2,10,1,16,1,7,1,1,82,}, + {1,111,28,1,29,1,28,1,29,1,28,2,7,1,10,1,7,1,16,2,28,6,9,1,11,2,12,1,10,1,9,2,15,1,11,2,10,1,26,2,9,2,26,1,9,2,26,1,28,2,29,1,26,1,28,1,29,1,25,1,29,2,28,1,26,1,15,1,9,1,25,1,9,1,15,1,11,1,9,1,25,1,29,1,28,2,26,1,29,1,25,1,28,1,29,1,7,1,29,1,6,2,10,1,7,1,29,2,7,1,6,1,26,1,29,2,27,2,30,1,29,3,30,1,26,2,29,1,26,7,29,1,25,10,27,2,26,2,11,1,12,1,9,1,10,2,16,2,12,1,9,1,25,1,26,1,27,1,9,1,17,1,30,1,27,1,26,2,29,1,10,1,9,10,16,1,9,1,10,2,9,4,10,2,6,1,1,82,}, + {1,111,28,1,6,1,29,1,28,1,10,1,28,1,7,1,12,1,28,1,11,1,7,1,28,3,9,1,28,2,29,1,10,1,9,1,12,6,11,1,17,1,15,1,25,1,27,2,25,1,9,2,26,1,28,3,26,2,29,1,26,1,9,1,26,1,29,2,9,3,25,1,9,1,11,1,12,1,9,1,26,1,28,2,29,2,28,1,29,3,6,4,7,1,10,1,8,1,7,1,9,1,27,2,29,1,30,1,29,1,30,1,25,1,27,3,25,2,27,1,26,2,29,1,26,1,29,2,26,2,25,2,27,1,25,10,26,1,9,4,7,1,9,1,16,1,12,1,17,1,10,1,25,2,9,2,29,1,26,3,28,1,12,1,9,9,16,2,9,1,10,1,9,2,10,1,7,1,9,2,29,1,28,1,1,82,}, + {1,111,28,1,6,1,10,1,28,1,9,2,16,1,7,1,6,1,10,1,28,3,11,1,8,1,28,2,9,4,12,1,15,2,12,4,11,1,15,1,9,1,26,2,25,1,9,1,25,1,29,1,28,2,26,1,25,1,28,1,26,1,9,1,26,1,28,2,29,1,26,1,9,2,10,1,17,1,1,1,15,1,28,4,29,1,28,1,7,1,6,1,29,1,6,2,29,1,7,1,10,1,7,1,9,1,16,1,9,1,10,1,9,5,12,2,25,1,26,2,25,1,9,1,27,1,29,2,25,1,26,2,29,1,26,2,25,1,27,1,25,10,26,2,27,1,9,1,12,1,9,1,6,1,9,1,12,2,9,5,26,1,27,1,26,1,28,1,26,1,16,2,9,14,10,1,8,1,9,1,6,1,7,1,28,1,1,82,}, + {1,111,28,4,29,1,28,1,10,1,28,5,17,2,9,1,28,2,12,1,11,1,15,1,12,1,9,2,12,1,9,2,12,3,11,1,1,1,11,1,10,1,26,2,9,1,26,1,28,3,25,1,26,3,9,1,27,1,26,1,29,1,26,1,25,1,15,1,9,2,1,1,11,1,28,5,10,1,6,1,29,1,6,3,10,2,7,2,10,1,9,1,16,1,12,3,16,2,9,3,25,1,26,4,28,2,27,1,26,3,29,1,26,2,9,1,25,1,27,1,25,6,9,1,25,1,26,1,25,1,26,1,25,1,26,1,9,1,17,1,27,1,6,1,9,2,12,1,9,1,16,1,12,1,9,1,29,1,25,1,28,1,29,1,16,3,9,7,16,2,9,3,10,3,9,2,28,1,17,1,28,1,1,82,}, + {1,110,28,3,29,1,28,9,6,1,16,1,12,1,6,2,10,1,9,2,15,1,17,1,11,1,17,1,12,1,9,1,12,2,17,2,11,1,1,2,15,1,26,2,25,2,28,2,26,1,25,1,26,1,29,1,25,1,9,1,25,1,26,1,29,2,9,1,15,1,9,1,11,1,1,1,29,1,28,3,9,1,6,2,29,1,7,1,10,1,9,1,29,1,6,1,10,1,7,2,9,1,12,1,1,1,11,1,12,1,10,1,9,1,12,4,9,1,26,3,29,2,9,1,26,2,29,2,27,1,25,1,9,1,25,1,27,2,25,3,27,1,25,1,9,2,26,1,25,3,26,1,27,1,15,1,12,1,26,2,9,1,17,1,16,2,12,1,9,1,28,1,27,1,28,1,9,1,12,1,16,1,9,8,16,1,9,1,16,1,10,4,9,2,6,1,29,1,7,1,28,1,1,82,}, + {1,110,28,3,11,1,7,1,29,2,6,1,28,1,29,1,28,5,9,1,28,1,7,1,12,1,9,2,16,3,12,1,17,1,11,2,12,2,17,1,11,2,12,1,11,2,9,1,25,1,26,2,28,2,9,1,25,1,26,1,29,1,26,1,25,2,29,3,11,2,12,1,1,1,25,1,28,2,27,1,6,1,29,2,6,1,8,1,9,1,6,2,29,1,6,1,10,1,12,2,9,1,16,1,12,2,9,1,11,1,1,1,17,1,9,1,25,1,27,1,26,3,29,1,26,1,9,1,26,1,25,1,29,3,27,1,9,1,15,1,9,1,27,1,26,1,27,1,25,3,9,2,25,2,27,1,26,1,9,1,25,1,15,2,25,1,29,1,7,1,10,1,17,1,16,1,12,1,27,1,29,1,26,1,27,1,12,1,16,2,9,8,16,1,10,1,9,1,7,1,10,1,9,3,6,1,28,1,16,1,28,1,1,83,}, + {1,110,28,2,29,2,28,4,29,2,28,2,16,1,28,2,1,1,28,2,7,1,11,2,12,2,17,1,11,1,12,3,11,1,12,1,17,2,11,3,1,2,15,1,9,1,26,1,29,1,28,2,9,1,26,3,25,1,9,1,26,1,28,1,26,1,27,1,11,1,1,1,11,1,25,1,28,1,6,3,29,1,6,2,7,2,6,1,29,1,8,1,7,1,10,1,16,3,9,1,12,1,11,2,9,1,10,1,16,1,9,1,26,2,27,1,26,1,29,1,26,1,9,1,27,1,26,2,29,3,26,1,9,1,12,1,11,1,15,1,27,1,26,1,25,1,9,1,25,2,9,2,25,2,26,1,25,2,15,2,9,1,6,2,9,1,12,2,16,1,10,1,7,1,9,1,12,1,16,1,9,4,10,1,16,5,6,1,7,1,10,1,9,3,12,1,29,1,28,1,12,1,28,1,1,84,}, + {1,109,28,3,6,1,28,8,29,1,8,1,28,1,6,1,11,1,28,2,10,1,11,1,1,1,11,1,12,1,16,1,12,2,11,3,17,1,11,7,1,1,11,1,15,1,25,1,28,2,26,1,15,1,25,3,26,1,25,1,27,1,29,1,26,1,9,1,15,1,1,1,10,1,28,1,10,1,6,1,29,1,7,2,6,2,28,1,6,1,9,1,17,1,12,1,11,1,17,1,6,1,9,2,12,1,1,1,11,1,12,1,11,2,6,1,26,3,29,2,9,2,26,1,25,1,26,1,29,2,26,1,25,1,12,1,9,1,27,1,25,1,11,1,15,1,9,1,27,1,9,1,27,1,9,1,12,1,10,1,25,3,26,1,9,5,12,2,16,1,9,2,16,1,12,1,16,1,9,7,16,1,9,1,16,1,7,1,28,1,10,1,9,5,28,1,12,1,9,1,1,85,}, + {1,109,28,3,29,1,28,11,11,1,16,1,28,2,17,1,11,1,12,1,9,2,16,1,12,2,11,2,17,1,11,6,12,1,11,5,15,1,29,1,28,1,25,1,15,2,9,1,29,1,26,1,25,1,29,2,27,1,11,2,26,1,29,1,6,1,10,1,6,1,8,1,6,2,8,2,29,1,11,1,16,1,11,1,16,1,6,1,9,1,11,2,10,1,16,2,11,2,9,2,25,1,27,1,26,1,29,1,26,1,9,1,26,2,9,1,29,3,26,1,10,1,9,1,25,1,9,2,26,1,15,2,25,1,10,1,25,1,10,1,15,1,9,1,26,1,25,1,9,1,26,1,27,1,9,1,16,1,12,1,17,1,12,1,16,1,9,2,16,1,12,2,16,1,9,4,16,1,12,1,9,3,29,1,28,1,7,1,9,2,10,1,29,1,9,1,6,1,17,1,11,1,28,1,1,1,28,1,1,83,}, + {1,109,28,15,11,1,29,1,28,1,7,1,16,4,12,2,11,3,17,1,11,1,1,1,11,1,12,3,11,1,15,1,11,2,17,1,11,1,1,1,11,1,26,1,28,1,26,1,9,1,15,1,25,2,29,1,26,1,9,1,26,2,9,1,15,1,27,1,28,1,29,1,9,1,29,2,8,1,10,1,9,1,12,1,11,1,9,1,10,1,8,1,6,1,12,1,11,1,12,1,9,3,12,1,9,1,6,1,11,1,12,1,9,1,26,3,10,1,9,1,29,1,27,1,25,1,29,1,26,2,27,2,25,1,10,1,16,1,11,1,9,1,25,1,26,1,9,1,25,1,9,1,26,1,15,2,10,1,25,1,10,1,29,1,26,1,16,1,12,1,17,1,12,1,9,3,16,3,9,2,16,1,9,2,16,1,12,1,10,1,9,2,29,1,28,1,6,1,9,1,10,1,16,1,6,1,29,1,11,1,9,1,12,1,28,1,1,86,}, + {1,109,28,2,12,1,6,1,28,10,29,1,1,1,28,2,9,1,11,5,1,2,11,1,12,1,17,1,11,1,1,1,11,1,12,4,17,1,11,6,1,1,28,3,27,1,11,1,9,1,26,3,25,1,27,1,26,1,12,1,9,1,29,2,7,1,6,2,16,1,10,1,9,1,17,1,12,1,10,1,12,1,9,1,11,1,1,1,9,1,7,1,16,2,12,1,8,1,10,1,9,1,12,1,1,1,9,1,29,1,26,1,27,1,9,1,25,1,26,1,9,1,26,1,29,1,26,4,9,1,12,2,9,1,26,1,9,1,25,1,28,1,9,1,25,1,27,1,9,1,15,2,25,1,30,1,29,1,27,1,17,2,12,1,16,1,9,2,16,1,12,1,16,3,9,2,16,1,9,2,16,1,9,2,28,2,6,1,12,1,9,2,7,1,6,1,12,2,11,1,28,1,1,87,}, + {1,108,28,3,16,1,28,9,29,1,28,1,9,1,11,1,28,1,29,1,12,1,1,1,11,5,17,1,12,1,9,1,11,3,12,5,17,1,12,2,11,2,15,1,11,2,7,1,28,1,1,2,28,1,15,1,11,1,9,1,25,2,9,1,25,1,27,1,10,1,6,1,29,1,6,1,9,1,10,1,9,1,8,1,10,1,9,1,10,1,11,1,16,1,10,1,12,1,7,1,9,1,11,2,9,1,16,1,9,2,12,1,11,2,10,1,26,1,27,1,10,1,9,1,27,2,9,1,29,2,26,1,29,2,26,1,9,4,16,1,27,1,29,1,26,1,9,2,25,2,9,1,12,1,26,1,29,1,25,1,12,1,11,1,12,1,16,1,9,1,16,7,9,4,16,1,9,2,29,1,28,1,27,1,12,1,9,3,10,1,9,1,16,1,12,1,7,1,28,1,1,87,}, + {1,109,28,2,6,1,28,9,12,1,28,1,1,1,28,2,6,1,12,3,11,1,12,1,9,2,10,1,9,1,12,1,11,2,16,1,9,2,12,1,9,1,12,4,17,2,15,1,17,1,11,2,28,1,1,1,28,1,1,2,28,1,9,1,11,1,9,1,25,1,9,1,10,1,9,1,7,1,6,1,10,1,7,1,8,1,9,1,10,2,6,1,16,1,9,1,16,2,10,1,7,1,9,1,16,1,9,2,11,1,9,1,17,1,11,1,16,1,9,1,10,1,9,1,25,1,9,1,10,1,27,1,9,1,26,1,29,1,26,1,29,3,26,1,25,1,9,1,15,1,11,1,10,1,25,1,26,1,29,1,27,1,15,1,25,1,27,1,10,1,9,1,27,1,9,1,12,3,16,1,9,1,16,6,9,2,16,2,9,3,25,1,28,2,9,1,12,2,9,1,12,1,10,1,9,2,16,1,6,1,28,1,1,88,}, + {1,110,28,12,8,1,1,1,28,2,7,1,12,2,9,1,10,1,27,1,10,1,9,2,12,1,11,2,12,1,9,2,12,1,9,2,12,2,17,2,12,1,9,1,15,3,17,1,6,1,1,5,28,3,29,1,9,2,7,1,8,1,6,1,9,1,7,1,9,1,10,1,6,1,7,1,10,1,9,1,16,3,9,2,10,1,16,1,12,1,9,3,11,2,12,1,7,1,10,1,9,1,27,1,9,1,26,1,27,1,9,1,26,3,28,1,29,2,26,1,25,1,9,1,12,1,27,1,25,1,29,1,26,2,9,3,27,1,26,1,9,1,16,1,11,1,17,1,16,1,12,1,16,1,9,1,16,7,9,3,12,1,9,1,27,1,29,2,9,1,15,1,12,1,9,2,10,1,15,1,12,1,10,1,6,1,28,1,1,89,}, + {1,112,28,1,8,1,29,1,6,1,28,3,6,1,9,1,6,1,28,1,29,1,28,2,7,2,26,1,27,2,9,2,10,1,12,1,17,1,11,2,9,2,12,1,9,3,12,4,9,2,12,1,15,1,9,1,11,2,28,1,1,8,28,1,6,1,8,1,6,1,10,1,9,1,7,1,29,1,6,1,10,1,9,5,10,1,8,1,9,1,16,1,9,1,12,1,11,1,12,1,16,1,9,2,10,1,16,1,9,1,30,1,9,1,26,1,29,1,10,1,9,1,27,1,9,1,26,1,29,3,26,2,25,1,27,1,26,5,9,3,26,1,27,1,16,1,11,1,17,1,16,2,9,2,16,1,12,2,16,1,9,1,16,2,9,2,12,2,10,1,29,2,25,1,9,1,12,1,9,1,25,2,9,1,10,1,27,1,6,1,7,1,28,1,1,90,}, + {1,113,28,1,6,2,7,2,9,1,7,1,28,6,7,1,6,1,29,1,10,1,9,3,12,3,11,1,9,7,12,3,9,2,12,2,9,2,11,1,1,1,9,1,28,1,1,8,28,1,6,2,10,1,12,1,16,2,10,1,29,2,6,1,10,2,9,1,12,1,16,1,12,1,17,1,12,1,11,1,1,2,12,1,9,1,16,2,17,2,9,1,27,1,30,1,29,1,9,3,25,1,29,4,26,1,27,1,25,1,27,2,26,1,29,1,27,1,26,1,15,1,25,1,27,1,26,1,10,1,9,2,16,1,12,1,16,2,9,1,16,3,9,1,16,2,9,1,12,2,9,1,27,1,29,1,26,1,9,3,26,2,30,2,28,1,29,1,27,1,7,1,29,1,28,1,1,90,}, + {1,113,28,1,29,1,28,11,6,1,27,1,9,2,27,1,9,2,10,1,16,1,11,1,12,1,27,1,9,3,15,1,9,1,15,2,9,1,12,4,9,2,12,1,11,2,12,1,6,1,1,9,28,1,9,1,16,1,10,2,6,1,10,1,12,1,16,1,17,1,16,1,12,1,17,1,16,1,9,2,11,1,1,1,11,1,16,3,17,1,1,2,11,1,9,1,25,1,29,1,30,1,12,1,1,1,9,1,26,1,25,1,26,2,29,2,26,1,25,1,9,2,27,2,26,1,9,1,25,1,9,1,26,2,27,1,25,1,9,1,17,1,16,1,8,2,16,6,12,3,9,1,6,1,29,1,26,1,25,1,10,2,27,1,26,1,27,1,26,2,25,1,10,1,16,1,12,1,9,1,28,1,1,91,}, + {1,114,28,5,29,1,28,6,9,1,27,1,25,1,10,1,9,2,27,1,9,1,11,1,16,1,27,1,9,1,27,1,12,1,15,1,9,1,17,1,15,1,9,3,15,1,12,1,9,1,12,2,11,2,12,1,16,1,11,1,28,1,1,8,28,1,16,1,9,1,29,1,7,1,28,1,7,1,16,2,17,1,12,1,16,1,12,1,11,2,12,1,16,1,9,2,8,1,16,1,12,1,11,5,27,1,9,1,12,1,11,1,9,1,29,1,9,2,27,1,26,1,29,1,28,1,29,1,25,1,9,1,27,1,26,1,25,1,9,2,15,1,25,1,26,1,25,1,10,1,12,1,17,1,9,1,10,3,9,2,12,1,17,1,12,2,9,1,10,1,27,1,10,2,9,4,25,1,9,1,25,1,9,1,10,1,9,2,16,1,12,1,11,1,28,1,1,92,}, + {1,114,28,6,6,1,28,5,7,1,27,1,29,1,26,1,29,2,11,1,1,1,9,1,25,3,9,1,15,1,9,2,17,1,9,5,12,2,11,3,17,1,12,4,28,1,1,7,6,1,9,1,29,2,6,1,9,1,12,1,9,1,12,1,11,2,12,1,17,1,11,2,9,2,11,1,12,2,11,1,12,1,16,2,12,1,11,1,9,1,27,1,12,1,17,1,12,1,26,1,10,1,11,1,25,1,26,1,29,3,26,1,27,2,29,1,26,1,9,1,10,1,25,1,15,1,9,1,10,1,12,1,11,1,12,1,10,1,9,3,15,1,11,1,15,1,9,2,25,1,10,1,9,2,17,2,15,1,9,2,15,3,9,1,15,2,9,1,12,1,9,1,12,1,17,1,28,1,1,93,}, + {1,114,28,5,29,1,28,6,29,1,12,1,27,1,29,1,9,1,11,2,9,1,26,2,25,1,27,1,11,1,12,1,9,1,15,1,9,3,15,3,17,1,11,2,17,1,12,3,9,1,12,2,9,1,28,1,1,6,28,1,7,1,6,1,7,1,6,1,12,1,16,1,9,3,12,1,9,2,16,1,12,5,9,1,16,1,12,1,11,1,12,1,27,1,6,1,26,1,11,1,17,1,12,1,27,1,9,1,15,1,25,1,26,2,29,4,26,3,27,1,17,1,27,1,26,1,10,1,9,1,15,1,11,1,9,1,10,1,9,2,12,1,15,1,9,1,27,2,25,1,9,3,12,1,15,1,9,1,15,4,9,7,12,1,17,1,11,1,29,1,1,94,}, + {1,114,28,5,6,1,29,1,28,6,7,1,11,2,15,1,25,1,29,2,27,3,11,1,15,3,9,4,15,3,11,2,15,1,9,1,15,1,9,1,12,4,9,1,29,1,1,6,28,1,10,1,29,1,9,2,12,1,16,1,12,1,16,2,9,1,12,2,9,2,17,1,11,1,1,1,11,1,9,1,7,1,10,1,27,5,15,1,9,2,26,2,9,1,27,2,26,1,29,4,26,1,25,1,9,1,10,1,15,1,10,1,26,2,9,1,15,1,9,6,25,1,9,5,25,2,27,1,26,1,27,1,9,2,25,1,27,1,25,2,9,2,26,1,25,1,9,1,16,1,11,1,29,1,1,95,}, + {1,113,28,6,6,1,28,4,6,1,28,2,29,1,10,1,30,1,26,1,29,2,26,1,29,1,27,1,15,1,11,2,15,1,9,1,10,2,9,1,12,1,16,1,9,1,15,1,17,1,15,5,9,1,15,1,12,1,9,1,12,1,9,1,28,1,1,5,28,1,8,1,6,1,16,2,9,1,11,1,12,1,11,1,16,1,12,1,11,1,17,1,12,5,9,3,12,1,27,2,9,3,25,1,27,1,29,1,25,2,27,1,10,1,27,1,26,1,29,1,27,1,26,1,28,1,26,1,9,5,26,1,10,1,9,2,12,1,9,3,25,2,9,1,25,6,9,1,25,1,26,1,25,1,9,5,25,2,26,1,10,1,26,1,9,1,11,1,7,1,28,1,1,95,}, + {1,113,28,5,6,1,28,4,29,1,7,1,28,3,30,2,29,1,27,1,26,2,9,1,17,2,15,1,9,1,25,1,27,1,10,1,9,1,12,2,16,2,15,1,11,1,12,1,9,1,12,1,15,2,12,4,9,3,28,1,1,4,28,1,8,1,7,1,6,1,29,1,7,1,9,1,12,1,16,2,11,3,12,1,16,1,12,1,11,1,9,4,12,1,11,3,12,1,11,1,27,1,26,1,25,1,26,1,10,1,9,1,27,1,26,1,30,1,25,1,27,1,28,1,26,1,9,1,17,1,7,1,9,1,25,1,29,1,9,1,11,1,25,1,9,1,25,1,9,1,10,1,9,1,25,1,9,1,10,1,25,8,9,3,15,3,9,1,27,1,25,1,27,1,9,1,16,2,9,1,28,1,1,96,}, + {1,112,28,6,29,1,28,4,7,1,29,2,28,2,10,1,29,1,27,1,10,1,9,1,12,1,17,1,11,1,9,1,10,1,27,2,9,1,15,2,9,1,10,2,15,1,11,1,15,1,9,1,12,2,15,1,12,1,9,2,12,3,9,2,6,1,28,1,1,3,28,1,7,1,9,1,7,1,29,1,6,1,9,1,16,2,9,1,11,1,16,2,12,1,11,2,12,1,7,1,9,5,12,1,11,1,1,1,9,1,26,1,9,1,27,1,25,1,11,1,10,1,28,1,27,1,9,1,10,1,28,1,27,1,9,1,26,1,10,3,9,1,26,1,10,1,11,2,9,1,25,1,10,1,9,1,10,1,9,1,11,1,12,1,27,1,25,2,26,5,25,1,9,1,26,1,9,1,11,2,9,1,10,2,8,1,10,1,12,1,17,1,28,1,1,97,}, + {1,111,28,7,29,1,28,3,29,1,9,1,6,1,28,4,30,1,9,1,15,1,12,1,15,1,9,1,27,1,29,2,26,1,9,1,15,2,9,1,25,1,10,1,12,1,11,2,12,1,9,2,12,3,9,2,12,1,15,1,12,1,9,2,12,1,28,1,1,3,28,1,6,1,7,1,16,1,9,2,12,1,16,1,8,1,16,5,10,1,9,1,16,1,12,2,9,3,12,1,17,1,12,1,10,1,26,1,9,1,25,1,9,1,15,1,27,1,29,1,27,1,9,1,10,1,29,1,6,1,16,1,6,1,30,1,9,1,7,1,9,4,27,1,25,1,9,2,25,2,26,1,10,1,15,2,9,1,27,1,25,4,27,2,9,1,25,1,26,1,9,2,27,1,9,1,15,2,11,1,12,2,28,1,1,98,}, + {1,111,28,2,6,1,10,1,8,1,28,2,6,1,28,3,16,1,7,1,29,1,28,4,9,1,27,1,25,1,26,2,29,2,27,1,25,1,9,3,25,2,10,1,15,1,11,2,9,4,15,1,9,1,12,3,15,2,12,1,9,4,28,1,1,2,28,1,6,1,7,1,10,1,9,1,16,1,9,1,16,1,12,1,16,4,9,2,10,1,9,2,12,2,11,2,17,1,9,1,7,1,6,1,9,4,10,1,27,1,10,1,12,1,9,1,6,1,29,1,12,1,27,1,28,1,8,1,17,1,9,1,11,1,26,2,10,2,26,1,9,1,11,1,10,2,9,4,27,1,25,4,27,1,25,1,9,1,15,1,9,1,26,2,25,1,26,1,30,1,26,1,10,2,16,1,6,1,1,99,}, + {1,111,28,5,8,1,28,5,9,1,12,1,29,1,28,4,6,1,29,1,28,1,29,2,27,1,9,3,27,1,26,2,27,1,9,1,11,2,12,1,9,2,10,1,12,1,17,1,12,1,9,1,12,1,15,2,12,4,16,1,9,1,12,1,28,2,1,1,28,1,9,1,10,1,9,3,16,4,17,1,11,2,16,1,9,2,16,1,11,1,16,1,17,1,11,2,16,1,9,1,16,1,15,1,9,2,25,1,26,1,9,1,16,1,12,1,16,1,29,1,27,1,12,1,10,1,28,1,10,1,16,2,9,3,12,1,26,1,27,2,9,1,11,1,15,1,9,1,11,1,12,1,9,2,27,2,25,1,27,1,26,3,25,1,9,1,11,2,15,1,27,2,25,2,10,1,12,2,28,1,1,99,}, + {1,111,28,5,9,1,11,1,17,1,8,1,28,2,6,2,29,1,28,5,9,1,27,1,25,2,9,1,25,1,26,3,25,1,9,1,15,1,11,2,9,2,10,1,9,1,12,1,15,2,9,1,12,1,15,3,12,5,9,3,28,3,10,1,17,1,9,1,12,1,11,1,12,1,11,2,16,1,9,2,8,2,9,1,11,1,1,2,11,1,17,1,16,1,9,2,12,1,16,1,9,1,10,1,27,2,17,1,12,1,9,1,11,1,29,1,6,1,12,2,28,1,6,1,9,2,7,2,28,1,15,1,1,1,15,1,27,2,26,1,15,1,11,1,16,1,15,1,17,2,12,1,27,1,26,4,27,1,25,1,26,2,27,1,25,2,9,1,15,1,25,1,27,1,15,1,9,1,28,1,1,100,}, + {1,112,28,8,16,1,11,1,9,1,28,1,6,1,28,5,7,1,26,1,29,5,27,1,9,1,17,1,11,2,15,1,9,1,25,1,9,2,12,1,11,1,12,1,9,1,12,2,15,2,12,6,9,1,10,1,9,1,12,1,6,1,28,1,29,1,7,1,10,1,9,4,17,1,11,2,17,2,11,1,1,1,11,1,12,1,10,1,9,4,12,1,17,1,15,1,9,1,26,1,27,1,15,2,16,1,11,1,10,1,7,1,12,2,26,1,29,1,10,1,29,1,6,1,7,1,25,1,29,1,25,2,15,1,11,1,15,1,26,1,27,1,9,1,12,1,9,1,11,2,9,1,26,1,25,1,27,1,26,1,29,1,26,1,25,3,26,3,29,1,27,1,9,3,10,1,1,101,}, + {1,111,28,13,10,1,6,1,28,5,27,1,26,1,9,1,25,1,15,2,17,1,11,1,12,3,9,1,27,1,10,2,15,1,11,1,15,1,9,2,12,4,15,3,12,1,9,2,15,1,9,1,27,1,9,1,12,1,28,2,7,1,9,1,12,1,16,1,9,1,10,1,16,1,17,1,11,7,17,3,11,2,12,1,9,1,27,1,26,1,25,1,26,1,27,1,9,2,17,1,9,2,12,1,29,1,28,1,9,1,6,1,29,1,10,1,9,1,26,1,25,1,9,1,25,1,26,1,9,2,11,1,9,2,12,1,25,1,17,1,12,1,26,1,25,1,27,1,25,1,26,3,27,1,25,5,26,2,27,1,10,2,28,1,1,101,}, + {1,111,28,13,10,1,7,1,28,5,27,2,25,1,10,1,9,1,15,1,16,1,17,2,10,1,29,1,26,1,27,1,9,1,11,2,9,2,12,1,15,1,12,1,9,1,15,1,12,2,11,1,15,1,9,1,12,2,9,1,12,1,9,2,10,1,29,2,10,1,12,1,16,1,9,1,16,1,7,1,9,1,12,1,11,9,12,1,9,1,27,1,26,1,27,2,25,1,27,1,25,2,27,1,6,1,7,1,10,1,16,1,28,1,26,1,9,2,28,1,27,1,12,1,9,1,26,1,25,1,9,1,25,2,27,2,25,1,9,3,25,1,27,5,25,1,27,2,25,4,26,1,25,2,26,1,25,1,9,2,28,1,1,102,}, + {1,110,28,14,10,1,6,1,28,5,29,1,26,1,28,1,26,1,9,1,11,2,12,1,9,1,27,1,10,1,12,1,11,2,12,1,9,2,12,1,9,3,12,1,9,2,15,2,12,2,9,1,12,1,9,5,25,1,9,3,12,2,9,1,10,1,12,2,17,1,11,5,12,1,16,1,9,1,10,1,27,3,25,2,27,2,10,1,27,1,30,1,12,1,15,2,30,1,27,1,12,1,27,1,26,1,29,1,27,1,12,1,26,2,25,9,27,2,9,1,15,1,9,1,26,3,27,1,25,1,9,1,25,1,26,2,9,1,25,3,9,2,28,1,1,103,}, + {1,110,28,14,6,2,28,6,26,2,9,1,11,2,15,1,16,1,12,1,17,1,12,1,9,9,12,2,9,1,12,1,17,1,12,1,9,1,12,1,9,1,15,1,12,1,9,4,29,2,27,1,10,2,9,1,11,2,9,1,7,1,8,1,7,1,9,1,11,2,16,1,10,4,9,2,12,1,9,1,25,1,27,2,9,1,26,1,9,1,11,1,12,1,9,2,26,1,29,1,26,1,29,1,28,1,9,1,25,1,28,1,26,1,25,8,27,2,25,1,15,1,11,1,15,1,26,4,25,4,9,1,25,1,27,1,26,1,9,2,28,1,1,104,}, + {1,109,28,15,29,1,10,1,6,1,28,3,6,1,28,1,7,1,30,1,28,2,25,1,9,1,10,1,26,1,27,1,9,3,10,1,9,1,10,1,25,1,9,1,12,3,10,1,12,1,15,2,12,1,9,2,11,1,15,1,9,1,10,1,27,1,9,1,15,1,9,1,25,1,9,1,7,1,12,1,16,1,6,1,9,1,11,1,12,1,16,1,10,1,9,1,17,1,11,6,12,1,9,1,25,1,27,2,25,1,9,1,27,3,9,1,26,1,12,1,29,1,26,1,27,1,29,1,28,5,25,2,9,1,25,3,27,1,25,2,27,3,9,1,15,2,27,1,26,3,9,1,15,1,14,1,9,2,26,1,25,1,9,2,30,1,28,1,1,104,}, + {1,109,28,15,6,1,9,1,10,1,28,5,6,1,25,1,29,1,28,1,29,1,30,1,26,1,9,3,26,1,27,1,25,1,27,1,25,1,9,4,10,1,9,1,17,1,15,1,12,3,15,1,11,1,12,2,9,4,25,1,27,1,6,1,10,1,7,2,17,1,11,1,10,1,16,1,6,1,10,1,16,2,9,1,16,2,12,1,9,4,10,2,9,2,27,1,25,1,27,1,9,1,26,1,9,1,25,1,29,1,27,1,26,1,28,1,29,2,28,2,26,1,15,1,9,1,25,1,26,1,27,1,25,6,26,2,9,2,25,1,26,1,27,2,26,1,25,2,9,2,26,1,9,2,16,1,28,1,1,105,}, + {1,110,28,2,7,1,16,1,6,1,28,9,7,2,9,1,6,1,28,3,6,1,28,1,30,1,9,1,15,1,25,1,15,2,26,2,27,1,25,1,26,1,25,2,9,5,12,1,15,1,12,2,9,2,15,1,11,1,12,3,9,1,25,2,9,4,10,3,8,1,16,1,12,2,11,1,17,1,12,1,9,1,16,1,12,5,9,2,10,1,9,2,12,2,9,1,25,1,26,1,27,1,26,2,11,1,12,1,29,2,26,1,29,1,26,1,29,1,25,1,15,2,9,2,25,1,27,2,25,5,26,1,27,1,25,3,9,1,25,4,26,1,29,1,9,1,16,1,11,1,28,1,1,106,}, + {1,112,28,2,6,1,16,1,1,1,28,7,7,2,10,1,6,1,28,5,29,1,27,1,9,1,15,1,9,1,26,1,29,2,26,1,25,1,9,1,12,1,9,2,10,1,9,2,15,1,17,1,9,5,17,1,11,1,9,2,12,1,9,4,27,1,29,1,28,1,9,1,12,2,9,1,6,2,9,1,12,1,16,4,9,5,16,2,12,1,17,1,12,1,9,3,27,2,26,1,25,1,29,1,27,1,11,1,15,1,29,3,28,1,29,1,25,1,27,1,9,1,15,3,9,1,27,1,26,1,25,1,27,3,26,4,25,1,9,2,27,1,26,1,27,1,10,1,9,1,12,1,17,1,6,1,1,107,}, + {1,113,28,1,1,1,28,1,6,1,28,7,6,1,9,1,7,1,6,1,29,1,28,3,6,1,28,1,10,1,25,1,27,1,26,2,9,7,12,1,15,2,9,2,10,1,9,1,15,1,12,2,15,1,17,1,12,1,9,2,15,1,12,1,9,4,25,1,28,1,29,1,9,1,11,1,16,1,9,1,12,1,9,1,10,3,9,4,16,1,11,3,12,1,16,2,9,1,10,1,9,1,25,2,27,2,26,2,25,1,26,1,29,3,28,1,29,2,9,2,25,1,26,1,27,1,9,1,15,3,25,2,27,1,25,2,26,2,27,1,9,1,25,2,10,1,9,2,16,1,12,2,10,1,1,108,}, + {1,95,28,5,6,2,7,1,6,1,28,3,1,9,28,7,6,2,9,1,6,1,28,1,6,1,28,5,29,1,27,1,26,1,9,1,27,1,29,1,25,1,9,1,27,1,15,1,9,2,12,1,9,4,10,1,15,1,11,2,15,1,12,1,15,3,9,2,15,1,9,3,30,1,12,1,9,1,29,1,9,1,10,1,11,2,9,6,12,3,17,1,12,1,9,1,16,2,12,1,10,1,25,1,12,1,25,2,27,1,26,1,27,2,25,1,26,1,29,5,28,1,26,1,9,1,25,4,27,2,25,4,27,4,25,4,9,1,15,1,11,1,12,1,16,1,12,1,17,1,28,1,1,108,}, + {1,92,28,4,8,1,12,2,17,1,11,1,17,1,12,1,11,4,9,1,28,1,1,9,28,5,6,1,9,1,10,1,28,1,29,1,7,1,28,4,29,1,28,1,26,1,27,1,26,1,9,1,15,1,9,3,15,1,11,1,9,1,27,2,15,2,12,1,11,1,15,1,12,1,9,1,15,2,11,1,15,3,9,2,12,1,9,2,12,1,1,2,29,1,30,1,28,2,12,1,11,2,16,1,9,2,10,1,9,6,16,2,25,1,10,1,12,1,25,1,27,1,25,4,26,2,29,1,26,4,28,2,27,1,9,1,25,8,27,1,25,3,26,2,27,1,25,2,26,1,25,1,16,5,6,1,28,1,1,108,}, + {1,90,28,4,10,1,17,1,12,1,16,2,17,1,12,2,11,3,12,1,11,1,1,2,9,1,28,1,1,6,28,5,29,1,7,1,9,1,28,3,6,1,29,1,28,3,6,1,28,2,25,1,26,1,9,1,15,6,11,1,15,1,9,4,15,1,12,1,27,1,25,1,9,1,15,1,11,1,15,2,9,1,25,1,9,1,12,3,1,2,11,1,28,1,26,1,9,1,29,1,28,1,29,1,9,1,11,2,9,1,10,2,9,1,16,3,12,1,9,1,27,1,9,2,27,1,9,3,25,1,27,1,26,4,27,1,26,1,29,1,28,2,26,1,9,1,25,1,9,2,25,2,27,2,25,8,9,2,25,1,26,1,9,1,12,1,16,3,10,1,29,1,28,1,1,108,}, + {1,88,28,4,9,1,12,1,16,3,11,3,12,1,10,1,7,1,8,1,7,1,9,1,12,1,17,1,12,1,11,1,1,1,6,1,1,1,28,1,1,3,28,5,29,1,9,2,28,1,1,1,28,1,29,1,7,1,28,3,6,2,26,1,9,2,27,3,9,2,15,4,25,1,29,1,9,1,15,1,9,1,15,1,25,2,9,1,15,1,17,1,15,3,9,2,25,1,12,1,11,1,1,2,27,1,28,3,9,2,28,3,29,1,9,1,15,1,17,1,15,1,12,2,9,1,10,1,9,1,11,1,9,1,27,1,9,1,26,2,25,1,27,1,25,1,27,1,26,4,29,2,26,2,9,2,25,1,27,2,25,5,27,1,25,1,27,2,25,1,9,3,25,3,9,1,16,1,9,1,16,2,6,2,28,1,1,108,}, + {1,87,28,4,16,3,12,1,11,2,17,1,10,1,28,3,29,3,28,3,7,1,12,1,11,1,1,1,12,1,1,3,28,6,7,1,9,1,6,1,1,1,28,1,1,1,28,1,6,2,28,5,27,1,9,2,15,1,25,1,9,2,25,1,9,1,15,2,25,1,29,1,9,3,15,1,9,1,25,1,9,2,15,2,9,1,15,1,9,1,25,1,27,1,12,1,1,1,11,1,1,1,26,1,28,2,26,1,28,1,29,1,9,1,25,1,26,4,25,1,10,1,25,1,27,1,26,1,9,1,15,1,27,2,15,1,9,1,25,1,9,1,25,1,27,1,26,1,27,1,25,1,9,2,26,2,27,1,26,1,29,1,26,1,9,3,25,6,27,4,25,5,27,1,9,3,16,2,10,1,29,1,6,2,28,1,1,107,}, + {1,85,28,4,7,1,16,1,17,1,16,1,11,2,9,1,6,1,28,1,29,1,9,1,12,2,17,1,11,2,1,1,12,1,10,1,28,2,7,1,11,1,1,2,28,8,10,1,16,1,28,1,1,3,28,1,29,1,6,1,28,4,29,1,28,1,9,1,25,1,27,1,25,1,9,1,25,3,11,2,26,1,28,1,26,1,27,1,15,3,9,4,15,1,9,1,25,1,9,1,27,1,10,1,11,3,1,1,11,1,28,2,11,1,26,1,28,2,29,1,9,5,25,1,26,2,9,1,27,1,29,1,25,2,27,1,9,2,27,1,25,1,27,1,25,2,27,1,26,2,25,1,27,1,26,1,28,2,26,1,25,1,9,1,15,1,9,2,25,5,27,2,25,2,9,2,25,2,27,1,9,2,16,2,10,1,6,2,10,1,16,1,28,1,1,107,}, + {1,84,28,4,7,1,12,1,16,1,17,1,11,1,12,1,29,1,28,1,27,1,9,1,15,1,25,1,27,2,26,3,27,1,12,1,11,2,12,1,28,1,29,1,11,1,1,1,9,1,28,6,7,1,10,1,9,1,28,2,1,2,28,2,7,1,29,1,28,3,27,1,28,1,26,1,9,1,25,1,11,1,15,1,26,2,15,3,28,2,26,1,25,1,15,4,9,3,15,2,25,1,10,2,7,1,12,1,11,1,1,2,12,1,28,2,26,1,29,2,26,11,25,1,9,4,25,1,27,1,9,2,25,1,27,2,26,3,29,4,27,1,9,1,25,1,26,1,25,1,9,5,25,1,27,3,25,2,9,2,25,2,10,1,9,1,16,2,9,1,6,1,29,1,7,1,12,1,11,1,28,1,1,107,}, + {1,83,28,3,29,1,9,1,16,2,11,2,9,1,28,1,27,1,12,1,25,1,26,8,29,2,26,1,27,1,11,1,1,1,9,1,29,1,11,1,29,1,28,6,7,1,16,1,28,1,1,5,28,1,6,2,28,2,29,1,7,1,28,2,9,1,27,1,9,3,15,2,9,1,15,1,28,2,26,1,9,1,15,1,11,1,15,1,9,4,10,1,9,1,15,1,26,1,12,1,10,1,11,1,1,1,11,1,1,1,9,1,29,1,9,1,28,1,15,1,29,3,26,1,25,1,26,1,29,2,26,1,27,1,9,2,25,1,27,1,9,1,11,1,9,1,27,2,25,2,27,2,26,5,29,3,26,3,25,10,9,4,25,1,9,2,10,2,9,2,10,1,7,3,16,2,7,1,28,1,1,106,}, + {1,82,28,4,10,1,12,2,17,2,7,1,6,1,9,2,29,1,26,2,25,1,9,7,27,1,26,2,27,1,12,1,1,1,11,1,9,1,28,6,29,1,10,1,16,1,28,1,1,5,28,2,7,1,29,1,28,2,29,1,10,1,27,1,26,1,9,1,27,1,25,1,9,3,25,3,28,1,29,1,25,1,9,1,15,3,9,1,15,2,9,2,16,1,9,1,7,1,8,1,1,2,11,1,9,1,28,2,29,1,25,1,26,1,25,1,9,1,26,2,28,1,29,1,26,1,25,3,9,4,26,1,25,1,9,1,27,1,9,1,25,2,27,1,25,2,26,2,29,1,26,1,29,2,28,1,29,1,27,1,9,8,25,1,9,2,15,3,9,1,25,2,9,1,16,1,12,1,9,1,26,1,29,1,28,1,29,1,7,1,12,1,10,1,9,1,28,1,1,106,}, + {1,81,28,3,29,1,9,1,16,2,17,1,11,1,6,1,27,1,9,1,26,1,29,1,26,1,9,3,15,1,9,1,15,4,9,2,15,1,25,1,27,1,9,1,11,1,1,1,9,1,28,6,6,1,9,1,7,1,1,6,28,2,6,1,29,1,28,5,26,1,9,2,26,4,25,1,9,2,28,2,26,1,27,1,9,1,15,3,12,1,17,1,11,2,12,1,10,1,6,1,11,1,1,2,8,1,28,3,26,1,9,2,26,1,28,3,29,1,26,1,25,1,9,1,11,1,15,1,25,1,26,2,27,1,25,1,26,1,27,1,9,1,15,1,25,2,10,1,25,1,26,3,25,1,26,1,28,2,29,1,9,1,25,2,26,1,27,1,25,1,9,1,25,3,9,1,25,1,9,8,15,2,30,1,28,2,29,1,7,1,9,1,12,1,6,1,7,1,28,1,1,106,}, + {1,80,28,4,9,1,16,1,11,2,12,1,28,1,27,2,26,2,27,1,15,2,27,1,28,4,29,1,27,1,15,3,9,3,12,2,1,1,10,1,28,6,7,1,16,1,28,1,1,7,28,2,6,1,28,4,27,1,28,1,27,1,9,1,26,4,25,1,9,1,15,1,26,1,28,1,26,1,25,1,9,3,15,1,9,1,12,1,17,1,9,1,10,1,6,1,7,1,1,2,11,1,16,1,6,1,28,1,27,1,29,2,9,1,25,1,29,2,26,3,27,1,26,2,9,1,15,3,9,3,27,1,29,1,26,1,15,1,25,1,26,2,25,2,27,1,26,1,29,2,28,2,26,1,9,2,25,1,27,1,26,2,27,4,25,1,9,1,25,2,9,3,25,1,27,1,9,1,27,1,28,2,29,1,9,1,7,1,16,1,10,1,7,1,6,1,9,1,28,1,1,105,}, + {1,79,28,3,6,1,7,1,16,1,17,1,11,1,16,1,28,1,27,1,26,1,29,1,27,1,9,2,28,3,1,1,28,2,1,2,28,2,27,1,9,1,12,3,9,1,17,1,12,1,29,1,28,5,6,1,10,1,9,1,28,1,1,7,28,2,6,1,29,1,28,2,29,1,28,1,29,1,10,1,9,1,27,1,26,3,27,1,25,1,9,1,26,1,28,1,26,2,25,2,9,6,7,1,10,1,12,1,1,2,11,2,9,1,28,1,9,1,28,1,26,1,28,2,9,2,15,1,11,1,15,3,9,2,25,2,27,1,26,2,25,1,9,1,15,1,9,2,25,4,27,1,26,2,29,4,26,3,9,2,27,1,26,1,27,2,26,2,25,1,9,1,25,2,26,3,25,2,9,1,28,1,29,2,15,1,25,1,16,1,9,1,7,1,16,1,9,1,10,1,28,1,1,105,}, + {1,78,28,4,10,1,16,1,11,2,16,1,29,1,10,1,27,1,26,1,27,1,25,1,28,2,1,10,28,2,12,5,27,1,29,1,28,5,7,1,16,1,28,1,1,7,28,4,29,1,28,4,6,1,28,1,25,1,9,1,26,2,25,1,27,1,25,1,9,2,28,1,26,4,25,2,9,3,17,1,11,2,1,2,11,3,7,1,28,1,11,1,28,1,25,3,27,1,9,1,25,2,27,1,25,1,27,1,29,1,28,3,29,1,27,1,15,1,11,3,9,1,26,1,25,1,9,2,27,1,26,1,29,5,26,1,25,1,26,3,25,1,9,2,25,1,26,2,27,1,25,4,26,3,25,1,9,1,26,1,29,1,26,1,15,1,9,1,27,1,9,1,10,1,16,1,11,1,16,1,7,1,6,1,28,1,1,104,}, + {1,77,28,4,8,1,9,1,16,1,17,2,6,1,27,1,26,2,9,1,29,1,28,2,1,13,28,1,12,1,11,1,15,1,12,1,28,6,29,1,7,1,16,1,28,1,1,7,28,4,29,1,28,5,27,1,29,1,25,3,27,2,25,2,9,1,29,2,26,5,27,2,26,1,15,1,1,3,11,1,12,1,11,2,29,1,28,1,26,2,9,1,15,1,9,1,29,1,28,1,26,1,28,6,25,1,9,1,15,2,11,1,1,1,15,1,25,1,26,1,25,2,27,1,26,4,29,1,26,1,29,2,26,1,25,1,9,1,27,1,29,1,26,1,27,1,25,1,27,1,26,2,27,1,25,9,26,2,9,1,15,1,26,1,9,1,8,1,9,1,11,1,12,1,8,1,7,1,6,1,28,1,1,104,}, + {1,77,28,3,29,1,9,1,12,1,11,1,12,1,7,1,10,1,26,1,25,1,9,1,28,2,1,15,28,1,15,1,11,2,26,1,28,6,6,1,10,1,6,1,28,1,1,7,28,9,29,3,15,1,26,2,27,1,25,2,26,1,9,1,26,1,28,1,26,8,27,1,11,4,1,2,9,1,28,5,27,1,25,1,27,1,26,1,28,4,29,1,9,3,10,1,25,1,11,2,9,1,26,1,27,1,25,1,27,1,25,2,26,3,27,2,26,1,28,2,25,1,9,1,25,1,27,1,25,1,26,6,27,1,25,1,9,1,25,1,27,2,25,1,9,2,25,3,15,1,28,1,26,1,10,1,16,1,11,1,12,1,8,1,6,1,7,2,28,1,1,104,}, + {1,76,28,3,29,1,9,1,16,1,12,1,11,1,7,1,27,1,26,1,25,2,28,2,1,15,28,2,11,1,15,1,11,1,28,7,7,1,16,1,28,1,1,7,28,3,26,1,28,2,29,1,28,3,29,1,28,1,27,2,9,1,26,2,27,1,25,1,26,1,25,1,9,1,28,1,26,1,29,2,26,4,27,1,26,1,10,1,1,2,11,2,12,1,6,1,28,6,15,2,28,1,29,2,27,1,9,3,10,1,15,1,11,2,1,1,9,1,26,1,27,1,25,1,27,1,25,2,26,2,25,1,9,1,25,1,26,1,29,1,28,1,26,1,15,1,9,2,27,2,9,3,27,1,26,1,27,1,25,1,27,1,25,4,9,3,25,1,26,1,14,1,26,1,29,1,27,1,12,1,11,2,9,1,29,1,7,2,10,1,28,1,1,104,}, + {1,75,28,4,7,1,17,1,12,1,11,1,9,1,29,1,26,1,9,1,27,1,28,2,1,16,28,1,29,1,15,2,9,1,28,6,6,1,9,2,28,1,1,7,28,2,26,1,9,1,28,3,29,1,28,3,29,1,6,1,29,1,9,1,27,1,26,1,27,1,26,2,25,1,15,1,26,1,28,2,29,1,26,2,27,1,26,3,29,1,16,1,1,1,12,1,16,1,9,1,7,1,28,1,26,1,28,4,9,1,11,1,29,1,28,1,29,1,26,1,27,2,26,1,15,1,1,3,9,1,26,1,27,1,25,1,26,1,15,1,25,2,26,4,29,4,25,1,9,3,27,1,9,1,25,1,9,3,25,4,9,1,25,1,9,3,25,1,26,1,25,1,9,1,25,1,26,2,12,1,11,2,16,1,29,1,6,1,10,1,9,1,10,1,29,1,1,104,}, + {1,74,28,4,6,1,16,2,11,1,12,1,29,1,27,2,26,1,28,1,1,17,28,2,26,1,9,2,28,7,9,1,16,1,9,1,6,1,1,7,28,2,26,1,9,1,26,1,28,2,29,1,28,3,6,1,10,1,29,1,27,1,9,1,25,1,27,1,25,1,15,1,11,1,1,1,11,1,26,9,27,1,9,1,15,1,28,1,7,1,11,1,28,2,9,1,25,1,26,1,28,2,29,1,11,1,26,1,29,1,26,4,9,1,1,1,11,1,1,1,9,1,26,3,25,1,9,1,15,1,25,2,26,7,29,1,28,1,25,1,15,2,25,1,9,1,27,5,25,1,9,2,27,1,9,2,25,3,9,1,15,1,25,2,9,1,11,3,17,1,7,3,10,2,7,1,6,1,28,1,1,103,}, + {1,74,28,3,7,1,10,1,16,1,11,2,26,3,27,1,28,1,1,18,28,2,29,1,26,1,25,1,28,6,29,1,9,1,16,1,7,1,9,1,28,1,1,6,28,2,29,1,26,1,27,1,28,3,29,1,28,2,29,1,7,1,27,1,26,1,29,1,9,1,11,1,1,5,11,4,15,1,9,1,25,1,27,1,26,1,27,1,26,2,9,1,1,1,11,1,28,2,26,1,28,5,14,1,26,1,29,1,26,4,15,1,1,1,11,1,9,1,26,2,27,2,26,1,15,1,9,1,25,1,27,2,26,5,29,1,28,2,26,1,15,2,9,8,25,1,27,1,25,3,9,3,25,2,9,3,15,1,11,1,12,1,9,1,16,1,10,1,9,2,10,1,8,2,28,1,1,103,}, + {1,73,28,4,8,1,9,1,17,1,11,1,9,1,26,2,27,1,28,1,1,18,28,2,26,1,28,1,27,1,28,7,6,1,7,1,9,1,7,1,9,1,28,1,1,6,28,4,26,1,29,1,28,5,29,1,28,2,29,1,30,1,9,1,1,3,11,3,1,1,11,2,1,2,11,4,17,1,9,1,27,1,11,1,1,1,26,1,28,3,9,1,28,4,25,1,9,1,25,2,27,1,29,2,11,1,9,1,30,1,29,1,26,1,27,2,25,1,26,1,15,1,9,1,27,2,26,5,29,2,28,3,29,1,25,1,15,1,9,8,25,2,9,2,15,2,9,1,26,1,25,1,9,1,25,1,9,1,11,1,12,1,16,1,9,1,10,2,9,2,10,1,7,1,9,1,6,1,1,103,}, + {1,73,28,3,6,1,16,2,11,1,9,1,27,2,26,1,29,1,1,19,28,1,26,1,28,2,9,1,28,7,8,1,7,1,9,1,17,1,6,1,17,1,10,1,9,1,29,1,28,7,26,1,9,1,28,9,6,2,11,1,1,1,11,3,17,1,1,1,11,5,1,4,11,2,1,1,11,1,28,2,9,1,28,1,29,1,28,3,29,1,25,1,26,1,29,1,28,3,29,1,9,1,29,1,26,1,27,1,9,1,25,1,27,1,25,1,27,1,15,1,25,1,27,3,26,3,29,2,26,1,28,1,29,1,28,1,26,2,25,1,9,1,25,6,9,2,25,3,9,3,25,3,9,1,27,1,6,1,9,1,16,3,9,2,10,4,9,1,28,1,1,102,}, + {1,72,28,3,29,1,8,1,16,1,11,2,6,1,26,1,29,1,27,1,28,1,1,18,28,4,9,1,27,1,28,6,6,1,9,1,27,1,10,1,11,1,28,1,12,1,1,1,11,1,12,1,11,1,12,1,29,1,28,4,26,1,25,1,26,1,28,2,29,1,28,2,6,1,29,1,28,1,6,1,29,1,7,1,1,1,11,2,17,1,11,11,1,2,11,1,9,1,28,3,26,1,29,1,28,4,29,1,28,2,29,2,28,1,26,1,29,1,26,2,27,1,26,1,27,1,25,3,11,1,25,1,26,1,27,2,26,1,29,2,26,2,28,1,26,1,28,1,26,1,9,1,26,3,25,4,27,1,26,2,27,1,25,1,26,3,25,1,9,1,25,3,26,1,27,1,10,1,9,1,16,1,12,1,8,1,10,3,9,1,10,1,8,1,16,1,28,1,1,102,}, + {1,72,28,1,29,1,28,1,7,1,16,1,11,1,17,1,8,1,26,1,29,1,27,1,9,1,28,1,1,17,28,2,29,1,28,1,26,1,9,1,28,7,6,1,10,1,27,2,11,1,9,1,8,1,11,1,17,1,9,2,11,2,28,3,29,1,9,1,11,1,1,1,28,3,29,1,28,2,6,1,28,1,29,1,7,1,29,1,9,1,11,4,17,1,11,9,16,1,12,1,11,1,28,2,25,1,26,1,28,2,26,1,29,1,28,1,26,1,9,1,28,1,29,3,25,1,9,1,29,1,27,3,25,4,27,1,12,1,25,1,27,2,25,1,26,7,28,1,27,1,25,1,28,1,26,1,25,1,27,2,25,4,27,1,25,1,26,1,25,1,9,1,26,2,25,2,9,1,25,1,26,2,9,1,12,1,16,1,9,1,16,1,10,3,9,2,10,1,9,1,7,1,28,1,1,101,}, + {1,71,28,3,29,1,9,1,17,1,11,1,16,1,29,2,26,1,9,1,12,1,28,1,1,16,28,2,25,1,28,1,26,1,27,1,9,1,28,7,8,1,27,2,10,1,12,2,6,1,11,1,12,1,16,1,12,1,16,1,17,1,12,1,26,1,15,1,1,4,9,1,28,5,6,1,29,2,6,1,29,1,6,1,1,1,11,4,17,1,11,7,9,1,11,1,10,1,7,1,28,3,26,3,28,2,26,1,15,1,11,1,15,2,11,2,1,1,9,1,29,1,26,1,9,1,15,1,11,1,15,1,27,1,10,1,27,1,25,1,27,4,25,1,9,2,27,1,29,1,26,1,28,1,29,1,9,1,28,1,1,1,28,1,25,3,27,1,25,2,27,2,25,4,26,1,27,1,25,1,27,1,25,1,9,1,26,1,25,1,15,1,12,1,16,3,9,2,10,1,9,2,7,1,6,1,7,1,28,1,1,101,}, + {1,71,28,2,6,1,7,1,17,1,11,1,12,1,27,1,29,3,15,1,17,1,28,1,1,16,28,1,26,1,28,2,27,1,15,1,28,7,7,1,10,1,26,1,12,1,10,1,9,1,11,1,7,1,12,1,16,1,10,1,9,3,11,1,1,2,11,4,1,1,28,3,29,1,28,1,29,1,6,1,29,1,6,1,7,1,28,1,11,11,1,2,11,1,28,4,29,3,26,1,25,1,28,3,25,1,28,1,29,3,10,1,15,1,11,2,15,2,9,5,10,1,27,1,26,2,25,1,26,1,9,1,15,1,9,1,27,1,28,1,26,1,28,1,27,1,9,1,28,1,1,1,28,1,26,1,9,2,26,1,25,1,26,1,25,2,26,1,25,4,27,2,26,2,9,1,26,1,25,1,15,3,12,1,9,1,16,1,9,1,17,1,10,1,29,2,28,1,6,2,1,101,}, + {1,70,28,3,7,1,16,2,11,1,12,1,29,1,26,1,29,1,28,1,9,1,12,1,28,1,1,15,28,2,29,1,28,1,26,1,9,1,27,1,28,7,6,1,10,1,25,1,12,1,9,1,27,1,11,1,8,1,16,2,9,4,11,1,17,1,12,2,16,2,17,1,1,1,6,1,28,5,29,2,6,2,29,1,7,1,1,1,11,9,1,2,9,1,28,4,27,1,26,1,25,2,29,1,28,2,29,1,26,1,28,4,26,1,9,1,15,1,25,4,27,3,9,2,27,2,9,1,25,1,26,1,25,2,29,2,26,1,28,1,29,1,9,1,29,1,28,1,1,1,28,2,9,4,27,1,26,1,25,1,27,4,25,5,9,1,25,3,9,5,11,1,9,1,28,1,9,2,27,1,10,2,28,1,1,100,}, + {1,70,28,2,29,1,9,1,16,1,11,1,12,1,10,1,26,1,27,1,26,1,28,1,27,1,12,1,28,1,1,14,28,2,27,1,28,1,26,1,27,1,9,1,29,1,28,6,7,2,10,1,9,1,15,1,9,1,27,1,11,1,9,2,12,1,9,4,16,1,9,1,10,2,8,1,7,1,8,1,9,1,11,1,28,3,29,1,28,1,29,1,6,3,7,1,28,1,11,10,1,4,17,1,28,3,14,1,25,1,9,1,15,1,28,2,26,1,28,2,29,1,26,2,10,1,9,1,25,1,9,2,27,2,25,1,9,1,25,2,27,1,29,1,27,1,25,3,26,2,25,1,26,1,29,1,28,1,26,1,9,1,28,1,1,1,28,1,1,1,28,1,27,1,26,1,9,3,15,1,9,1,25,7,27,2,25,1,9,1,25,1,26,3,25,1,12,1,11,1,12,1,26,1,28,1,26,1,25,1,29,1,27,1,16,1,28,1,1,100,}, + {1,69,28,3,6,1,9,1,16,1,11,1,10,1,27,2,26,1,9,1,28,1,27,1,12,1,28,1,1,14,28,1,27,1,28,2,9,1,27,1,9,1,28,7,7,1,10,1,26,1,25,1,9,2,25,1,15,1,12,1,8,1,16,1,9,1,16,3,12,1,8,1,6,4,8,1,9,1,17,1,29,1,28,2,6,1,28,1,29,1,6,3,10,1,28,1,6,1,1,1,11,6,1,3,11,1,1,3,28,3,15,1,9,1,26,2,28,1,29,1,9,3,11,1,9,1,26,1,10,1,9,2,25,1,26,1,27,1,9,1,27,1,26,2,25,2,26,1,9,2,25,1,27,1,26,1,25,2,26,1,28,2,27,2,28,1,1,4,29,1,9,1,27,1,25,1,27,1,9,1,26,1,9,5,25,4,27,1,9,2,25,1,26,1,25,2,9,1,27,1,29,1,27,1,26,2,25,1,27,2,9,1,29,1,1,100,}, + {1,69,28,3,8,1,16,1,12,1,17,1,7,1,27,1,28,2,25,1,28,1,27,1,12,1,28,1,1,13,28,1,26,1,28,2,25,1,26,1,12,1,29,1,28,6,29,1,6,1,9,1,29,1,27,1,9,2,25,1,9,1,11,1,7,1,9,1,10,1,9,1,16,3,6,1,28,1,6,3,7,1,9,1,16,1,12,1,28,2,29,1,28,2,6,3,7,2,28,1,11,6,1,3,11,3,1,1,12,1,28,3,11,2,9,2,28,1,15,1,1,1,11,1,15,1,9,1,27,1,11,2,15,1,11,1,17,1,9,4,27,3,26,1,27,1,9,2,25,1,26,1,29,2,26,2,29,1,26,1,9,1,28,1,1,5,28,1,25,1,26,1,9,2,27,1,25,1,26,1,27,4,25,2,27,2,25,2,9,2,25,1,9,1,25,1,26,1,29,1,9,1,12,2,9,1,29,1,30,1,10,1,6,1,9,1,28,1,1,99,}, + {1,68,28,3,6,1,9,1,17,1,12,1,9,1,10,2,28,2,29,1,28,1,26,1,12,1,28,1,1,12,28,2,26,1,28,1,25,1,27,1,12,1,27,1,28,7,10,2,9,1,29,1,26,1,9,4,11,1,7,1,9,1,8,1,9,1,16,3,8,1,7,1,9,1,16,1,9,3,16,1,11,1,28,3,29,2,6,1,7,1,6,1,7,2,28,1,10,1,1,1,11,3,1,2,11,1,17,1,12,1,11,2,1,1,29,1,28,2,26,1,11,1,9,1,25,1,15,1,26,1,9,1,11,1,25,1,15,1,9,1,29,1,25,1,9,1,11,2,26,1,9,2,26,1,27,1,25,2,26,2,9,2,25,2,26,3,25,1,27,1,29,1,26,1,9,1,28,1,1,5,28,2,9,1,27,3,9,1,25,10,27,1,9,2,25,3,26,1,29,1,9,1,12,3,6,1,29,1,9,1,6,1,9,1,28,1,1,99,}, + {1,68,28,1,29,1,28,1,8,1,16,1,11,1,12,1,27,2,28,1,1,1,28,3,26,1,12,1,29,1,1,11,28,2,27,1,28,1,26,1,25,1,9,1,25,1,28,8,10,1,9,1,28,2,26,1,9,1,15,1,9,2,11,1,8,1,9,1,10,1,9,1,16,3,9,3,16,2,11,1,17,1,11,1,1,1,17,1,28,2,29,2,6,2,7,1,6,1,7,1,6,1,28,1,11,1,1,1,11,4,17,1,12,1,17,1,11,1,1,1,11,1,28,2,27,1,15,1,26,1,25,1,26,2,15,1,9,1,25,1,9,1,15,1,26,2,9,3,25,1,29,1,12,1,26,1,9,1,25,1,27,1,26,2,25,1,9,1,25,1,9,1,26,1,27,1,25,1,9,1,25,1,29,1,28,1,9,1,26,1,28,1,1,6,28,1,9,4,27,1,25,4,27,7,9,2,25,1,26,2,25,1,29,1,25,1,12,1,9,3,7,1,29,1,10,2,7,1,28,1,1,98,}, + {1,68,28,1,29,2,16,1,17,1,12,1,9,1,10,1,6,1,28,1,1,1,28,3,26,1,12,1,29,1,1,11,28,1,27,1,28,2,15,1,25,1,12,1,28,8,6,1,9,2,28,2,26,1,9,1,15,1,9,1,25,1,11,1,10,1,16,1,9,2,16,1,9,1,16,1,9,1,16,1,17,1,11,1,17,2,11,3,1,1,29,1,28,2,29,1,28,1,29,1,7,1,6,1,7,2,28,1,10,1,1,1,11,1,1,1,11,1,16,2,17,1,11,1,1,1,11,1,29,1,28,1,29,1,28,1,26,1,29,1,26,1,9,3,15,1,9,1,15,1,9,1,29,1,9,2,25,1,29,1,9,2,27,1,9,1,25,1,29,1,27,3,9,3,25,1,26,1,25,1,26,1,29,1,25,1,28,2,12,1,28,10,9,1,25,2,9,1,25,9,27,3,9,2,25,1,26,1,25,1,26,2,29,1,27,1,9,3,6,1,10,1,29,1,7,1,28,1,1,98,}, + {1,67,28,3,7,1,12,1,17,1,12,1,10,1,9,1,28,1,1,3,28,2,29,1,15,1,29,1,1,10,28,1,26,1,28,2,9,1,28,11,10,1,9,1,28,1,1,1,28,1,26,1,9,1,15,1,9,1,27,1,17,1,9,2,16,3,9,3,8,1,12,1,11,5,1,2,11,1,28,3,29,2,6,1,10,1,7,1,29,2,28,1,12,1,1,2,11,2,17,1,11,1,1,2,28,3,29,1,26,1,25,1,29,1,25,1,9,2,27,1,15,3,29,1,26,1,9,2,29,1,26,1,15,1,11,3,15,1,9,7,25,1,26,1,9,1,25,1,10,1,15,1,9,1,29,1,28,5,29,1,17,1,11,3,9,1,26,1,27,1,25,1,27,1,25,1,9,8,27,2,26,1,25,1,9,2,26,5,10,1,15,2,9,1,10,1,27,1,28,1,27,1,29,1,28,1,1,97,}, + {1,67,28,2,6,1,9,1,16,1,11,1,16,1,10,1,26,1,28,1,1,3,28,2,29,1,15,1,26,1,28,1,1,8,28,2,27,1,28,1,27,1,28,11,29,1,9,2,28,1,1,1,28,1,26,1,9,2,15,1,25,1,15,1,9,2,16,3,9,1,16,1,28,2,7,1,12,1,11,4,17,1,12,2,28,3,29,1,6,2,8,1,10,2,29,1,28,2,29,1,10,1,11,3,1,2,27,1,28,1,29,1,9,4,26,1,9,2,26,2,28,1,11,1,26,1,29,1,15,1,9,1,26,2,9,1,15,2,9,1,29,1,26,1,9,1,27,1,9,2,25,1,9,2,26,1,15,1,26,2,12,2,6,1,28,5,6,1,11,5,12,1,26,2,27,1,9,4,25,4,27,4,26,1,25,1,9,2,25,1,26,1,25,1,26,1,29,1,27,1,9,1,15,1,25,1,26,1,29,3,27,1,28,1,1,97,}, + {1,66,28,1,29,1,28,1,10,1,12,2,11,1,9,1,10,1,28,1,1,4,28,1,29,1,28,1,15,1,26,1,28,1,1,8,28,1,27,1,28,1,29,1,9,1,26,1,29,1,28,9,6,1,9,1,6,1,1,2,28,1,26,1,9,1,15,1,9,1,27,1,15,1,12,1,9,1,16,1,9,1,16,1,9,2,28,10,1,2,28,2,6,2,29,1,6,1,10,1,9,1,7,1,6,1,28,3,12,1,11,1,1,3,29,1,26,1,9,2,25,1,9,2,25,1,9,2,26,1,28,1,26,1,11,1,15,2,9,2,26,1,25,1,15,1,25,1,29,1,26,2,25,1,9,1,26,1,15,1,9,3,25,1,9,2,26,1,12,1,17,1,28,6,6,1,11,2,12,1,11,4,9,2,27,3,9,2,25,4,27,2,25,1,27,3,25,1,9,2,25,1,26,3,25,3,26,1,29,1,28,1,29,1,26,1,9,1,28,1,1,97,}, + {1,66,28,1,29,1,6,1,10,1,16,1,12,2,10,2,28,1,1,4,28,1,26,1,28,1,15,1,25,1,28,1,1,7,28,1,27,1,28,2,9,1,25,1,1,1,29,1,28,9,6,1,9,1,28,1,1,2,28,1,26,1,27,1,15,2,27,1,12,2,10,1,16,1,9,4,28,1,1,11,28,2,29,1,6,1,28,1,6,1,10,1,7,1,10,1,29,1,28,2,17,1,11,1,1,3,11,1,28,1,29,1,26,2,25,1,9,2,15,1,9,2,28,2,25,1,9,1,15,3,26,1,9,1,15,1,9,1,25,3,15,2,9,4,15,1,9,3,15,1,9,1,11,1,28,7,11,1,17,2,11,1,17,1,11,2,17,1,12,1,27,1,25,2,9,5,25,3,27,1,25,1,27,3,25,1,9,2,25,1,26,1,25,1,9,2,26,1,29,5,9,1,25,1,27,1,28,1,1,96,}, + {1,65,28,3,7,1,9,1,16,1,11,1,9,2,28,1,1,5,28,1,26,1,28,1,9,1,25,1,28,1,1,6,28,1,29,2,28,1,27,1,25,2,29,1,17,1,28,1,6,1,28,6,29,1,7,1,9,1,28,1,1,2,28,1,29,1,25,1,15,1,9,1,27,1,12,2,10,1,12,1,9,2,16,1,7,1,28,1,1,12,28,1,29,3,6,1,10,3,29,2,8,1,11,2,1,2,11,1,28,2,25,2,26,2,29,1,26,1,9,1,25,1,28,2,27,1,15,2,9,1,29,1,15,1,9,1,15,1,9,1,25,1,9,1,15,1,27,1,9,3,11,1,9,2,15,1,9,2,15,1,9,1,11,1,27,1,28,6,9,1,17,1,12,1,11,1,12,2,11,1,12,2,1,1,15,1,9,1,25,8,27,2,25,1,27,1,25,1,27,2,25,1,9,1,25,3,26,5,29,2,26,2,29,1,26,1,28,1,1,1,28,1,1,94,}, + {1,65,28,3,7,1,17,1,16,2,10,2,28,1,1,5,28,1,26,1,28,1,12,1,25,1,28,1,1,5,28,2,9,1,28,1,26,1,9,1,25,1,28,2,1,1,11,2,28,6,6,1,9,1,28,1,1,3,28,1,29,1,25,1,15,2,25,1,9,1,12,1,9,1,12,1,9,2,16,1,9,1,28,1,1,11,28,4,6,1,29,1,6,1,9,1,10,1,8,1,28,2,12,1,1,1,11,1,1,1,28,3,9,2,26,2,29,2,26,2,28,1,29,1,25,1,11,2,15,1,29,2,9,2,11,3,1,1,25,1,28,1,26,1,9,1,15,1,9,2,25,1,9,1,25,2,26,1,9,1,15,1,28,5,29,1,11,3,16,2,11,1,9,2,11,1,1,2,15,1,9,1,25,3,27,1,25,11,9,1,25,2,26,6,29,3,28,1,26,1,29,2,28,1,1,95,}, + {1,65,28,1,29,1,28,1,10,1,17,2,16,1,10,1,29,1,28,1,1,5,28,1,26,1,28,1,9,1,25,1,28,1,1,5,28,1,9,1,28,2,27,1,9,1,28,2,6,1,1,2,29,1,28,6,7,1,9,1,28,1,1,3,28,1,29,1,25,1,9,1,15,1,25,1,9,1,12,1,9,1,16,1,9,2,16,1,9,1,28,1,1,13,28,2,6,1,29,2,10,1,9,2,29,1,28,1,6,1,1,2,16,1,28,3,25,1,9,1,26,1,29,2,28,2,29,1,27,1,26,1,15,1,25,2,15,1,25,1,29,1,26,1,9,1,15,1,27,1,26,1,11,1,15,1,28,2,26,1,29,2,25,1,27,2,26,3,27,1,26,2,28,4,16,1,11,2,12,1,10,1,11,2,28,1,9,1,1,3,11,2,9,2,25,2,27,1,25,11,9,1,26,7,29,3,26,2,29,2,28,2,1,94,}, + {1,64,28,1,29,1,28,1,29,1,16,1,12,1,11,1,10,2,28,1,1,6,28,1,26,1,28,1,9,2,28,1,1,4,28,1,27,1,28,2,27,1,9,1,28,3,12,1,1,1,11,1,28,7,9,1,7,1,1,4,28,2,26,1,15,2,25,1,9,1,12,1,9,1,16,2,9,1,16,2,28,1,1,13,28,3,29,1,6,2,9,2,7,1,28,2,17,1,1,1,28,6,26,2,25,1,26,1,28,1,29,1,26,2,27,1,25,2,26,1,9,1,25,1,9,2,26,3,9,2,29,1,26,1,29,2,28,1,26,1,25,1,29,1,26,3,29,2,26,1,9,1,29,2,10,1,11,2,12,1,9,1,16,1,11,1,1,1,11,7,17,1,12,1,9,2,25,12,9,1,25,1,26,7,29,1,26,1,25,1,26,1,29,1,28,1,26,1,28,1,1,94,}, + {1,64,28,1,6,1,28,1,6,1,12,3,10,2,28,1,1,6,28,1,26,1,28,1,15,1,27,1,28,1,1,2,28,3,15,1,28,1,29,1,9,2,28,3,1,2,28,7,29,1,16,1,28,1,1,4,28,2,26,1,15,2,25,1,12,1,16,1,9,3,16,3,28,1,1,14,28,3,6,2,10,1,16,1,9,1,29,1,28,1,9,1,7,1,28,7,9,1,26,1,28,1,26,4,27,1,9,2,25,1,26,1,27,1,9,1,26,1,28,1,26,1,15,1,25,1,26,1,29,3,26,1,28,1,26,3,29,2,26,4,27,1,26,1,30,1,27,1,29,1,28,3,29,1,6,1,7,1,10,1,7,1,10,1,7,2,9,1,16,1,12,1,15,1,12,2,9,2,25,1,9,1,25,2,27,2,25,4,9,1,25,2,26,5,29,2,9,1,26,1,29,1,28,2,29,1,26,1,28,1,1,93,}, + {1,64,28,1,29,1,6,1,7,1,17,1,12,1,16,1,10,1,28,2,1,6,28,1,9,1,28,1,9,2,28,1,1,1,28,3,15,1,28,2,25,1,15,1,28,3,11,1,1,1,11,1,28,6,29,1,6,1,7,1,1,5,28,2,25,1,11,1,12,1,9,1,12,1,16,1,8,1,6,2,7,1,10,1,16,1,28,1,1,14,28,3,29,2,7,1,9,1,16,1,10,1,28,10,26,2,29,1,26,6,27,1,25,2,27,1,29,1,28,1,26,2,25,1,15,1,26,1,29,1,28,1,26,1,11,1,15,1,28,1,29,4,26,6,29,3,28,4,29,1,6,1,10,2,6,1,10,1,9,1,7,1,10,1,9,1,12,1,17,1,12,1,9,1,25,2,27,1,25,2,27,4,25,3,9,2,25,1,26,8,29,1,28,1,26,1,29,1,26,1,29,1,28,3,1,90,}, + {1,63,28,3,8,1,9,1,17,2,10,2,28,1,1,7,28,1,25,1,28,1,9,2,28,1,1,2,28,1,26,1,27,1,28,2,11,1,28,3,16,1,1,2,6,1,28,6,29,1,9,1,28,1,1,5,28,2,26,1,15,2,9,1,11,2,16,1,7,1,6,1,7,1,10,1,16,1,6,1,1,15,28,3,29,1,6,1,10,1,16,1,9,1,29,1,28,8,26,1,29,1,26,7,27,2,26,3,28,2,26,1,25,1,26,1,9,2,26,2,29,1,15,1,26,1,9,1,28,2,26,1,29,1,26,2,29,1,26,2,29,10,28,1,29,1,28,1,29,1,9,1,6,1,7,1,10,1,9,1,12,3,9,1,25,1,27,1,9,1,25,1,27,5,25,2,9,2,25,1,26,4,25,2,26,2,29,1,26,3,29,1,25,1,26,1,28,4,1,2,28,1,1,85,}, + {1,63,28,3,9,1,16,1,17,1,12,1,10,1,27,1,28,1,1,7,28,1,26,2,9,2,28,1,1,1,28,2,11,1,28,2,11,1,28,3,10,1,1,3,28,7,6,1,16,1,6,1,28,1,1,4,28,2,25,1,11,1,12,2,17,1,16,1,9,1,8,1,9,1,17,1,11,1,16,1,9,1,1,15,28,4,6,1,7,1,9,1,12,1,6,1,28,7,9,1,25,1,28,1,26,7,25,1,27,1,26,1,29,2,26,2,29,1,25,2,26,1,15,1,9,1,29,1,25,1,28,1,29,2,25,1,29,1,28,1,29,15,28,5,9,2,7,2,28,3,29,1,9,2,25,1,26,1,25,1,27,1,25,2,27,2,25,3,9,2,25,1,26,1,25,3,26,3,29,1,25,1,26,1,9,1,29,2,27,1,28,5,1,87,}, + {1,63,28,2,29,1,9,1,17,2,9,1,10,1,28,2,1,7,28,1,9,1,26,1,29,1,9,1,28,3,25,1,15,1,26,1,25,1,27,1,28,2,9,1,11,1,1,2,11,1,28,7,7,1,6,1,17,1,11,1,12,1,28,2,1,1,28,2,9,1,17,2,12,2,9,4,12,2,11,1,12,1,1,16,28,3,6,2,7,1,12,1,16,1,6,1,28,5,29,2,28,2,26,9,29,1,28,2,26,1,25,1,26,2,9,1,26,1,29,1,15,1,26,1,29,1,25,1,28,1,26,2,9,1,26,1,28,2,29,6,26,1,29,2,26,5,29,1,28,1,29,1,6,1,16,2,7,1,28,5,10,1,9,2,25,5,27,3,25,1,27,1,9,2,25,3,26,4,29,1,26,2,29,1,25,2,26,2,27,1,29,1,28,1,26,2,28,2,1,85,}, + {1,63,28,2,6,1,9,1,11,1,17,1,10,2,28,1,1,8,28,1,25,1,29,1,28,1,9,2,12,1,11,4,12,1,28,4,1,3,28,4,29,1,28,3,6,1,9,1,11,1,12,1,17,1,11,2,12,1,10,1,27,2,10,1,7,1,27,1,10,1,9,1,16,1,12,2,17,2,11,1,16,1,1,16,28,3,29,2,6,1,8,1,17,1,9,1,7,1,6,1,29,2,28,5,26,8,29,1,28,2,29,1,26,2,9,1,26,1,27,1,9,1,26,3,29,1,15,1,27,1,29,2,26,1,15,1,26,1,29,5,26,3,29,3,26,4,6,1,29,2,7,1,9,1,10,1,7,1,28,4,29,1,27,1,12,2,9,2,25,4,27,4,25,2,9,1,25,1,26,7,28,1,26,3,9,1,26,1,9,1,29,1,28,2,25,1,29,1,28,2,1,84,}, + {1,62,28,3,6,1,16,1,11,1,12,1,10,2,28,1,1,8,28,1,27,1,26,1,28,1,27,1,11,2,16,1,12,2,9,1,6,1,28,1,12,1,28,2,12,1,11,1,1,1,28,7,6,2,16,3,17,1,11,1,12,1,11,3,16,2,12,7,17,1,11,2,9,1,1,15,28,6,29,1,9,1,16,1,9,1,6,1,29,1,7,1,10,1,7,1,29,1,28,3,26,7,29,1,28,2,29,1,26,3,25,1,9,1,26,1,25,2,29,1,28,1,26,1,11,2,29,2,26,1,25,1,9,1,25,1,26,2,29,1,26,11,29,2,28,1,6,1,9,1,7,1,6,1,28,4,6,2,10,1,12,1,9,3,25,4,27,3,26,1,27,1,9,2,25,1,26,1,25,1,26,4,29,1,9,1,28,1,29,2,9,2,29,1,28,2,29,1,9,1,29,1,28,3,1,82,}, + {1,62,28,1,6,2,7,1,16,1,11,1,16,1,10,1,6,1,28,1,1,8,28,1,26,1,9,1,25,1,12,1,11,1,6,1,16,2,9,1,16,1,7,2,11,1,16,1,12,1,1,2,7,1,28,7,6,1,8,1,16,2,17,1,12,3,17,1,16,2,12,1,11,1,17,1,12,6,11,2,1,1,8,1,1,15,28,1,6,1,28,4,29,1,6,1,9,2,16,1,7,1,28,1,7,1,9,1,29,1,28,2,29,1,26,6,29,1,28,2,26,4,25,1,26,1,9,2,26,4,29,2,25,1,11,1,26,1,29,1,26,1,15,1,25,1,27,2,26,10,29,1,28,1,29,1,6,1,29,1,28,1,7,1,10,1,28,3,29,2,6,1,28,3,9,2,25,5,27,5,25,1,9,1,25,2,27,1,26,4,25,1,26,1,28,1,29,1,26,1,9,1,29,1,26,1,28,2,25,1,1,1,15,1,28,4,1,81,}, + {1,62,28,1,29,2,10,1,11,1,17,1,16,1,10,1,28,1,1,9,28,1,27,1,15,1,9,1,11,1,6,1,16,1,12,2,9,2,28,2,1,3,11,1,1,1,28,7,29,1,7,1,16,1,11,1,12,3,16,2,12,1,16,1,12,2,17,2,12,1,17,1,12,3,11,3,1,1,6,1,1,14,28,1,6,1,29,1,28,6,8,1,9,1,10,1,16,1,29,1,6,1,26,1,28,3,29,1,26,3,29,3,28,2,26,1,29,2,25,1,26,1,27,1,26,1,27,1,9,1,25,1,26,3,29,2,28,1,25,1,15,1,26,2,27,1,9,1,26,8,25,1,26,1,27,1,26,1,29,1,28,1,29,1,6,5,29,1,28,2,29,2,6,1,28,1,1,2,28,1,9,1,25,5,27,6,25,1,9,1,25,1,26,7,29,1,26,1,25,2,26,2,29,2,27,1,15,1,17,1,9,1,28,5,1,79,}, + {1,61,28,2,6,1,29,1,9,1,11,1,17,1,9,1,27,1,28,1,1,9,28,1,29,1,9,1,11,1,9,2,12,1,9,2,12,1,9,1,7,1,12,1,11,1,17,1,29,1,9,1,7,1,28,7,29,1,8,1,11,1,17,1,11,1,17,3,16,3,12,4,16,1,11,1,12,2,11,5,28,1,1,14,28,1,1,2,29,1,28,3,6,1,7,1,6,1,8,1,10,1,9,3,29,1,28,4,29,1,26,3,28,4,26,3,29,1,26,2,25,2,26,1,27,1,26,1,29,2,26,3,29,1,27,1,9,1,29,1,26,1,25,1,26,7,29,1,26,1,27,1,28,1,6,2,28,2,6,2,9,2,16,1,9,1,28,2,6,1,29,1,28,1,1,4,28,1,25,1,9,1,25,3,27,1,25,9,27,2,26,6,25,1,28,1,26,1,25,1,26,1,29,1,9,1,25,1,9,1,15,1,28,6,1,78,}, + {1,61,28,2,6,2,16,1,11,1,17,1,10,1,6,1,28,1,1,9,28,2,26,1,11,1,27,1,12,2,7,1,9,2,8,1,10,1,11,1,6,1,28,2,9,1,6,1,28,7,8,1,16,1,1,2,11,1,12,3,17,3,12,1,17,2,11,2,12,1,17,1,11,3,1,2,17,1,28,1,1,14,28,1,1,2,11,1,28,4,6,1,29,1,7,1,8,1,9,1,16,1,9,1,28,5,26,2,29,1,28,3,29,1,26,3,27,1,26,1,27,1,26,1,9,2,26,3,29,1,26,2,15,1,26,1,29,1,26,2,9,1,26,10,27,1,25,1,29,2,28,4,6,1,7,1,12,2,16,1,7,1,6,2,28,2,1,4,28,1,26,1,9,1,25,3,26,2,25,7,9,1,25,2,26,7,29,1,26,5,29,2,25,1,29,2,28,5,1,77,}, + {1,61,28,2,6,1,7,1,12,1,11,1,17,1,9,1,29,1,28,1,1,9,28,2,9,1,12,1,9,1,12,1,6,1,28,2,29,1,16,1,12,1,11,1,28,2,9,1,11,1,28,7,7,2,28,3,9,1,11,4,12,3,11,2,17,2,12,1,11,2,12,1,9,1,28,2,1,17,28,1,11,1,1,1,29,1,28,4,29,1,7,1,8,1,9,2,29,1,28,3,26,3,28,3,29,1,26,3,9,2,27,1,26,2,25,4,26,1,29,1,27,1,26,1,27,1,11,2,25,1,26,2,25,2,26,5,25,1,26,3,28,5,29,1,6,1,10,2,9,1,29,1,28,5,1,5,28,2,9,2,27,2,9,3,25,1,27,1,25,5,9,2,25,1,26,7,25,2,29,1,28,1,25,1,26,1,28,2,29,3,28,1,29,1,28,5,1,75,}, + {1,61,28,2,6,1,9,1,12,1,11,1,12,1,10,1,28,1,1,10,28,2,11,1,7,1,12,1,17,1,10,1,29,1,28,1,6,1,12,1,11,1,28,3,11,1,1,1,28,7,10,1,28,1,1,4,28,1,6,1,12,1,1,3,17,1,11,3,12,1,11,1,10,1,28,2,1,21,28,1,29,1,6,1,28,5,6,2,7,1,10,1,7,1,29,1,26,1,25,2,29,1,28,2,29,1,26,2,27,3,9,2,25,1,26,2,25,4,26,2,9,5,11,1,26,2,25,1,9,1,26,7,29,2,28,2,29,1,6,1,7,1,10,1,7,2,9,1,28,1,1,11,28,2,15,2,27,1,29,1,26,1,9,2,25,1,27,2,25,2,26,1,27,1,25,1,9,1,25,3,26,8,29,1,9,1,26,1,29,1,28,3,26,1,29,4,28,2,27,1,28,1,1,2,28,1,1,71,}, + {1,61,28,1,29,1,6,1,16,1,11,2,12,1,10,1,28,1,1,10,28,2,17,1,8,1,12,1,16,1,6,1,28,2,16,1,11,2,7,1,28,1,9,1,1,1,8,1,28,6,6,1,8,1,28,1,1,7,28,2,9,1,12,1,15,1,9,2,12,1,17,1,28,1,1,26,28,2,29,3,6,2,29,1,9,1,1,2,11,2,12,1,9,2,12,3,11,1,1,2,11,1,27,1,26,1,25,1,26,2,27,1,9,1,25,1,26,2,9,2,15,1,9,1,25,1,27,1,26,1,9,1,26,1,25,2,26,5,29,3,8,2,9,2,10,1,6,2,9,2,28,1,1,11,28,2,29,1,9,1,15,1,27,1,26,1,27,2,25,1,27,3,25,3,26,1,25,2,9,2,25,1,26,4,25,1,26,2,29,1,9,1,25,1,26,1,29,1,28,1,29,1,26,2,29,1,28,1,29,1,26,1,9,1,26,1,28,1,27,1,28,4,1,70,}, + {1,61,28,1,29,1,7,1,16,1,11,2,9,1,27,1,28,1,1,9,28,2,26,1,9,1,16,1,11,1,9,1,28,3,11,1,17,1,1,1,9,1,28,1,16,1,11,1,29,1,28,6,7,1,29,1,1,9,28,2,26,1,15,1,9,2,11,1,12,1,28,1,1,27,28,1,6,1,29,2,28,1,29,1,8,1,16,1,1,13,11,1,9,1,27,1,25,1,26,3,9,1,25,1,26,1,27,1,9,2,26,1,9,1,25,1,26,1,9,1,26,4,29,1,26,1,29,3,28,2,9,2,7,1,29,1,28,2,29,1,6,1,9,2,1,12,28,2,9,1,15,1,9,1,26,1,9,2,27,1,9,1,27,1,25,7,26,1,25,1,9,2,25,1,26,4,25,1,26,2,9,1,26,1,28,2,29,1,26,2,29,1,28,2,29,1,28,1,26,1,27,1,28,1,29,1,27,1,7,1,28,1,1,71,}, + {1,60,28,2,6,1,7,1,16,1,11,2,9,1,27,1,28,1,1,8,28,2,29,1,15,1,16,1,9,1,16,1,6,1,28,4,11,1,1,1,28,2,11,1,12,1,28,5,29,1,10,2,28,2,1,8,28,2,27,1,15,1,9,2,11,1,10,1,28,1,1,28,28,1,6,2,28,1,7,1,1,2,11,1,1,3,11,1,1,9,11,1,25,1,29,1,26,2,25,4,27,1,26,1,25,1,27,1,26,2,27,1,26,3,29,2,26,1,29,2,28,1,29,1,28,1,29,1,11,1,7,2,28,2,29,1,12,1,10,1,29,1,28,1,1,11,28,3,9,1,15,1,9,1,26,1,11,1,9,1,28,2,9,3,25,2,27,1,26,4,25,1,9,2,25,1,26,5,9,1,25,1,26,1,29,2,26,1,29,1,26,1,28,1,29,2,28,6,10,3,28,3,1,68,}, + {1,60,28,1,6,2,8,1,12,1,11,2,10,1,29,1,28,1,1,8,28,2,11,1,15,1,17,1,9,1,16,1,6,1,28,1,6,1,28,2,16,1,28,2,8,1,1,1,9,1,28,5,12,1,11,1,8,1,16,1,12,1,29,1,28,2,1,5,28,1,29,1,9,4,11,1,7,1,1,30,28,1,29,1,6,1,1,2,11,4,1,2,11,1,1,2,11,1,1,1,11,1,1,1,11,1,1,2,17,1,26,1,29,1,26,1,27,1,25,4,9,3,27,1,26,2,29,1,26,2,29,8,28,1,7,1,6,1,16,1,29,1,28,2,9,1,7,1,28,1,1,12,28,2,29,1,12,1,15,1,27,2,11,1,10,1,28,1,1,1,28,1,9,1,16,1,25,3,26,1,27,1,26,1,25,1,26,1,27,1,9,2,25,2,26,2,9,2,26,1,29,1,26,1,29,2,26,1,29,5,28,3,29,1,27,1,28,2,10,2,7,1,28,1,1,68,}, + {1,60,28,1,7,1,29,1,9,1,12,1,11,1,12,1,10,1,28,1,1,9,28,1,12,1,11,2,9,1,10,1,16,1,7,1,6,1,10,1,6,1,29,1,11,1,28,2,16,1,11,1,6,1,28,5,1,2,28,3,29,1,9,1,12,1,10,1,28,5,9,5,11,1,29,1,1,31,28,1,17,1,1,2,11,2,1,1,11,1,1,1,11,10,1,1,11,1,16,1,30,1,29,2,26,1,10,1,17,1,1,4,11,1,12,1,25,1,29,1,28,1,29,2,30,1,28,1,26,2,29,1,26,1,9,1,28,2,29,1,8,1,6,2,7,1,16,1,28,1,1,13,28,2,27,1,15,1,12,1,27,1,9,1,11,1,29,1,1,3,28,1,29,1,15,1,9,1,25,1,9,1,26,1,27,1,26,2,25,1,27,1,25,1,9,2,27,1,9,2,25,1,26,3,29,1,26,4,29,3,28,2,9,2,10,1,9,1,28,2,10,1,7,1,10,1,28,1,1,67,}, + {1,60,28,1,6,2,9,1,17,1,11,1,12,1,27,1,28,1,1,8,28,1,27,2,9,1,12,2,9,2,6,1,7,1,10,1,9,1,16,1,12,1,28,2,9,1,11,1,28,5,8,1,1,1,10,1,1,4,28,3,10,1,12,1,27,1,29,1,27,1,9,1,27,1,9,2,15,1,11,1,28,1,1,31,28,1,1,1,11,3,1,1,11,14,1,1,11,1,10,1,29,1,10,1,11,1,1,3,11,2,1,1,11,1,1,2,17,1,7,1,28,3,26,1,29,2,28,3,10,1,8,1,16,1,9,1,17,1,16,1,12,1,11,1,6,1,1,13,28,2,12,1,15,1,9,1,29,1,11,2,28,1,1,5,28,1,9,2,27,1,25,1,27,3,26,2,9,2,15,1,9,1,15,1,25,1,26,3,29,1,26,6,29,3,28,1,25,1,15,1,28,1,25,1,29,1,9,1,26,1,28,1,12,1,9,1,28,2,1,65,}, + {1,60,28,1,6,2,9,1,17,1,11,1,12,1,27,1,28,1,1,6,28,3,25,1,28,1,27,1,11,2,9,1,10,1,7,1,6,2,7,4,29,1,16,1,11,1,28,6,16,1,28,1,1,8,28,1,9,1,11,1,15,1,27,2,9,2,11,1,12,1,28,1,1,31,9,1,1,2,11,2,1,2,11,15,12,1,11,3,1,1,11,7,1,3,12,1,7,1,29,1,28,1,26,1,29,1,28,1,1,1,28,1,16,1,1,2,17,1,16,2,17,2,6,1,1,13,28,2,15,1,12,1,9,1,26,1,1,1,16,1,28,1,1,6,28,1,10,1,12,1,9,1,27,2,26,1,27,3,25,1,9,3,26,4,29,1,26,6,29,3,28,2,9,1,15,1,28,1,10,1,9,1,26,1,28,1,27,1,26,1,28,1,12,1,7,1,28,1,1,63,}, + {1,59,28,2,6,1,8,1,16,1,17,1,11,1,9,1,10,1,28,1,1,5,28,3,27,1,28,2,25,1,11,2,10,1,27,1,9,1,6,1,10,1,7,1,28,1,29,1,9,2,7,1,17,1,7,1,6,2,29,1,6,1,7,1,29,1,28,1,1,9,28,1,15,1,9,5,11,1,9,1,28,1,1,30,28,1,1,3,11,4,1,1,11,6,12,1,11,7,1,1,11,4,1,2,11,7,1,3,11,2,29,1,1,3,28,1,11,1,1,2,16,2,11,1,1,1,17,1,1,14,28,1,27,1,11,1,12,1,26,1,9,1,11,1,7,1,1,8,28,2,9,2,25,3,27,2,25,1,9,1,25,1,26,6,25,1,26,7,29,2,26,1,15,1,25,1,27,1,15,1,10,1,28,1,12,1,9,1,29,1,28,1,6,1,9,2,28,3,1,60,}, + {1,59,28,2,6,1,10,1,16,1,12,1,11,1,9,1,27,1,28,1,1,5,28,2,26,1,28,2,26,1,15,1,27,1,11,1,17,1,27,1,28,1,27,1,7,1,28,1,1,1,28,1,6,1,10,1,29,1,6,1,10,1,7,1,6,1,7,1,28,2,29,1,10,1,29,1,28,3,1,5,28,1,9,1,27,1,9,4,11,1,6,1,1,31,28,1,1,7,11,2,17,1,11,6,1,1,11,5,1,2,11,11,1,1,11,2,1,2,11,1,28,2,1,3,11,1,1,2,9,1,16,1,12,1,9,1,16,1,28,1,1,12,28,2,9,1,15,1,12,1,29,1,11,2,28,1,1,10,28,1,26,1,9,1,15,1,9,2,15,1,9,1,26,7,25,1,26,8,29,4,28,1,29,1,9,1,29,1,10,1,15,1,25,1,10,1,29,2,9,1,10,1,9,1,29,1,28,3,1,58,}, + {1,59,28,2,29,1,10,1,12,1,17,2,9,1,27,1,28,1,1,5,28,4,26,1,25,1,28,2,27,1,15,1,9,1,29,1,17,1,6,1,1,3,28,1,16,1,8,1,10,1,9,1,7,1,28,1,1,4,28,2,29,1,10,2,29,1,28,2,1,1,28,2,26,2,25,1,9,2,12,2,28,1,1,31,28,1,29,1,28,3,9,1,12,1,11,3,17,1,11,13,1,1,11,14,1,2,28,1,1,5,9,1,11,1,1,1,12,3,9,1,12,1,11,1,16,1,9,1,10,1,6,1,28,1,1,6,28,2,9,1,11,1,9,1,27,2,11,1,9,1,28,1,1,11,28,2,9,1,15,1,9,1,25,1,26,19,29,2,28,1,9,1,15,2,25,1,10,1,9,1,27,2,7,1,9,1,16,1,9,1,16,1,28,5,1,1,28,1,1,54,}, + {1,59,28,1,29,2,7,1,12,1,17,1,11,1,10,1,27,1,28,1,1,5,28,1,29,1,28,1,29,1,9,1,26,1,1,1,28,2,9,1,15,1,11,1,9,1,28,1,1,4,28,1,10,1,16,1,6,1,28,1,1,8,28,3,6,1,9,1,6,1,28,1,26,3,27,1,9,2,12,2,28,1,1,37,28,1,11,1,1,1,11,2,1,2,11,6,1,1,11,18,1,2,12,1,1,6,28,1,1,2,12,1,10,1,29,1,16,1,10,1,11,1,1,2,11,3,6,1,28,3,6,2,7,1,12,1,1,1,11,1,12,1,26,1,12,1,11,1,6,1,1,13,28,2,26,1,9,1,27,1,25,1,26,6,25,1,26,6,25,1,26,5,29,2,26,1,25,1,9,1,29,1,28,1,26,1,27,1,28,1,9,2,16,3,9,1,28,5,1,55,}, + {1,59,28,1,29,1,6,1,7,1,12,1,11,1,12,1,9,1,6,1,28,1,1,4,28,1,26,1,28,2,27,1,9,1,28,1,1,2,28,1,9,1,15,1,9,1,26,1,1,6,28,3,1,13,28,2,10,1,9,1,25,1,27,1,25,1,9,2,11,1,9,1,28,1,1,38,11,1,1,4,11,4,12,2,17,6,11,14,1,2,28,1,1,6,28,1,1,2,11,1,10,1,29,1,12,1,8,1,17,1,1,2,17,1,11,2,1,2,11,1,1,1,11,1,1,1,11,4,25,1,26,1,11,1,12,1,28,1,1,2,28,1,1,12,28,2,27,1,9,1,25,1,26,1,25,1,26,9,25,1,26,8,29,1,28,2,29,2,28,1,29,2,12,1,9,3,17,1,12,1,26,1,28,2,29,2,28,3,1,52,}, + {1,59,28,1,29,1,6,1,7,1,17,1,11,1,9,1,27,1,6,1,28,1,1,3,28,4,27,1,9,1,28,1,1,3,28,1,25,1,9,1,26,1,27,1,28,1,1,23,28,1,25,1,9,5,17,1,7,1,28,1,1,38,11,1,1,4,11,1,17,1,12,1,16,5,12,3,17,1,11,13,1,2,12,1,28,1,1,6,28,1,12,1,1,2,9,1,12,1,17,1,8,1,12,1,1,1,11,3,6,1,28,7,9,1,11,1,15,1,25,1,9,1,1,1,9,1,28,1,1,17,28,2,9,2,25,1,26,8,25,2,26,11,29,2,28,3,27,1,12,3,9,1,25,1,29,3,28,4,6,1,28,2,1,10,28,1,1,39,}, + {1,59,28,1,6,2,8,1,11,2,17,1,27,1,28,2,1,3,28,3,29,1,9,1,26,1,1,4,28,1,27,1,9,1,26,1,25,1,28,1,1,24,29,1,9,4,12,1,11,1,28,1,1,39,28,1,12,1,9,1,6,1,28,2,7,1,16,5,12,6,11,1,12,1,16,1,11,6,17,1,11,1,1,3,28,1,1,8,10,1,11,1,1,1,16,1,10,1,9,1,17,1,16,1,6,1,28,3,1,6,28,2,12,1,15,1,9,1,29,1,11,2,28,1,1,19,28,2,29,1,9,2,27,1,26,19,29,1,26,1,29,2,28,1,27,1,11,1,12,1,10,1,28,3,26,1,27,1,26,2,29,1,16,1,9,1,16,1,12,1,28,2,1,48,}, + {1,59,28,1,6,2,10,1,11,2,9,1,27,1,29,1,1,3,28,4,9,1,25,1,28,1,1,4,28,1,26,1,25,1,26,1,9,1,28,1,1,22,28,3,9,1,25,1,9,2,12,2,28,1,1,39,28,1,1,4,28,1,12,1,17,2,16,9,12,1,16,2,11,7,1,3,11,1,1,9,28,1,1,2,17,1,6,1,9,1,17,1,7,1,1,10,28,1,27,1,12,2,27,1,9,1,1,1,16,1,28,1,1,22,28,1,26,1,9,1,27,2,25,1,26,1,27,1,26,7,25,1,26,8,29,1,26,1,28,1,15,2,25,1,28,2,29,1,28,3,29,1,25,1,9,1,16,1,9,1,10,1,9,1,16,1,9,1,28,2,1,46,}, + {1,59,28,1,6,2,9,1,11,2,9,1,27,1,28,1,1,3,28,3,26,1,9,1,28,1,1,1,28,1,1,3,28,1,26,3,9,1,28,1,1,23,28,2,9,4,17,1,9,1,28,1,1,40,28,1,1,3,9,1,12,1,16,15,11,5,1,1,11,2,1,1,29,1,1,9,28,1,1,2,11,1,10,1,16,2,9,1,1,9,28,2,12,2,9,1,29,1,11,1,17,1,7,1,1,24,28,2,27,1,9,1,27,1,25,1,26,8,27,1,26,8,29,1,26,1,27,1,15,1,26,1,29,1,28,1,29,1,26,2,28,2,29,1,26,1,28,1,9,1,12,1,9,3,10,1,12,1,16,1,28,2,1,44,}, + {1,59,28,1,29,1,6,1,9,1,11,2,9,1,27,1,28,1,1,2,28,3,29,1,9,1,26,1,28,1,1,5,28,1,26,3,25,1,28,1,1,23,28,2,9,4,11,1,29,1,1,44,6,1,11,1,16,11,12,1,16,3,10,1,16,1,11,6,1,2,28,1,1,10,9,1,1,2,10,1,7,1,17,1,9,1,28,1,1,5,28,1,1,1,28,2,9,1,11,1,12,1,26,1,10,1,1,1,12,1,28,1,1,26,28,2,27,1,25,1,9,1,25,1,26,5,27,1,26,10,29,1,27,1,26,1,28,2,29,2,26,1,29,2,28,1,29,1,26,1,28,2,12,2,9,4,12,2,29,1,28,2,1,42,}, + {1,59,28,1,29,1,7,1,16,1,11,2,10,1,27,1,29,1,28,5,27,1,9,1,28,1,1,6,28,1,26,3,25,1,29,1,1,22,28,2,26,1,9,3,12,2,28,1,1,43,6,1,12,1,16,1,12,1,9,1,16,13,10,1,8,1,16,1,11,1,1,1,11,2,1,2,10,1,28,1,1,9,28,1,1,1,28,1,9,1,6,1,28,2,11,1,10,1,28,1,1,6,28,1,29,1,11,1,15,1,25,1,26,1,11,2,6,1,1,29,28,2,26,1,25,5,26,12,29,1,26,1,29,2,26,1,29,1,26,2,29,4,26,1,29,1,28,1,10,1,11,1,12,2,9,1,10,1,16,2,12,1,10,1,28,3,1,40,}, + {1,59,28,1,6,1,8,1,16,1,17,2,16,1,27,2,28,4,26,1,9,1,28,1,1,7,28,2,26,1,28,1,9,1,26,1,1,19,28,1,1,2,28,2,9,1,15,1,9,2,11,1,10,1,28,1,1,42,28,1,16,2,9,2,16,15,10,2,12,1,1,2,11,1,1,2,28,2,1,12,28,1,6,1,28,2,9,1,12,1,28,1,1,5,28,2,9,1,15,2,27,1,10,1,1,1,12,1,28,1,1,31,28,2,26,1,9,2,27,1,26,2,27,1,26,2,25,1,26,9,29,1,26,1,29,1,26,5,29,1,26,1,29,2,28,1,12,2,9,1,12,4,9,1,26,1,29,3,28,2,1,38,}, + {1,59,28,1,6,1,8,1,9,1,11,2,10,1,27,1,26,1,9,1,28,3,9,1,26,1,28,1,1,7,28,2,26,1,28,1,9,1,27,1,28,1,1,20,28,2,29,1,15,1,12,1,9,2,11,1,28,1,1,42,28,1,6,1,29,1,7,1,8,1,10,1,12,1,16,8,12,2,9,1,16,5,7,1,12,1,1,2,11,1,28,3,1,13,28,4,11,1,29,1,1,4,28,2,27,1,11,1,15,1,9,1,29,1,11,2,6,1,1,35,28,2,26,1,25,1,9,1,27,1,25,1,27,1,26,20,29,1,26,1,28,1,29,1,17,1,12,2,17,1,12,1,29,1,28,1,26,2,29,1,26,1,29,1,30,1,28,2,1,36,}, + {1,59,28,1,6,1,7,1,9,1,11,2,10,1,27,3,28,2,27,1,9,1,28,2,1,7,28,2,26,1,28,1,15,1,9,1,28,1,1,20,28,2,27,1,15,1,9,2,12,1,16,1,28,1,1,41,28,1,7,1,9,1,7,2,9,2,16,2,12,1,16,7,9,1,16,4,17,1,9,1,29,1,28,1,1,2,29,1,28,3,1,13,28,1,29,1,28,2,12,1,9,1,28,1,1,3,28,1,29,1,15,2,9,1,26,1,9,1,1,1,12,1,28,1,1,34,28,1,1,2,28,3,9,2,25,1,27,1,26,5,25,2,26,10,29,2,26,2,28,2,15,1,11,1,12,1,10,1,29,1,28,1,29,1,26,4,29,1,26,1,6,1,29,1,28,1,1,35,}, + {1,59,28,1,6,1,7,1,9,1,11,2,9,1,27,1,26,1,28,2,29,1,9,1,28,1,1,10,28,1,26,1,28,1,9,2,28,1,1,20,28,2,9,1,15,1,9,1,10,1,11,1,7,1,28,1,1,41,28,1,12,1,16,1,12,1,9,1,10,2,9,1,12,1,16,9,12,1,16,4,7,1,6,1,28,1,8,1,28,3,1,16,29,1,28,2,26,1,11,1,28,1,1,1,28,3,9,1,15,2,27,1,26,1,1,1,11,1,7,1,1,41,28,2,29,1,25,1,9,1,25,2,9,2,25,1,26,14,29,1,26,2,15,1,27,1,29,1,28,1,29,2,25,1,26,1,29,4,26,1,7,1,10,1,11,1,9,1,28,1,1,33,}, + {1,59,28,1,6,1,7,1,9,1,11,1,17,1,16,1,27,1,26,1,28,2,25,1,27,1,28,1,1,10,28,1,26,1,28,1,27,1,15,1,28,1,1,19,28,2,26,1,15,1,12,1,27,1,9,1,17,1,28,1,1,42,9,1,12,1,9,1,12,1,16,2,9,1,10,1,9,4,16,5,12,1,16,1,17,1,16,1,9,1,16,1,7,1,28,1,29,1,28,1,1,4,28,1,1,14,28,1,29,1,28,2,15,1,25,1,28,3,9,1,15,1,12,1,9,1,28,1,11,2,16,1,28,1,1,43,28,3,30,1,25,1,9,2,25,3,26,3,25,1,27,1,26,9,29,1,26,1,29,4,26,1,25,1,26,1,29,1,26,1,29,1,26,1,29,2,12,3,16,1,28,1,1,32,}, + {1,59,28,1,7,2,9,1,11,2,10,1,27,1,26,1,29,1,26,1,9,1,28,1,1,11,28,1,27,1,28,1,26,1,15,1,28,1,1,19,28,2,9,1,15,1,9,1,25,1,17,1,9,1,28,1,1,41,28,1,6,1,7,1,6,1,9,2,16,4,9,1,16,5,12,4,9,2,16,1,6,1,28,2,6,1,1,20,28,1,27,1,28,2,9,1,15,1,26,1,28,1,27,1,9,1,12,1,9,1,29,1,9,1,1,1,16,1,29,1,1,48,28,4,29,1,25,2,9,2,25,1,27,2,26,3,25,1,26,6,29,1,26,7,27,2,25,1,26,1,10,1,17,1,1,1,11,1,10,1,28,1,1,32,}, + {1,59,28,1,6,1,7,1,9,1,11,2,10,1,27,1,26,2,9,1,28,1,1,12,28,1,26,1,28,2,15,1,28,1,1,18,28,2,26,1,15,2,27,1,12,1,11,1,6,1,28,1,1,41,28,1,6,1,28,1,6,1,9,1,16,1,17,1,16,1,12,1,16,5,12,4,16,1,9,1,16,2,28,3,9,1,28,1,1,21,29,1,28,2,26,1,9,2,25,1,9,2,12,1,26,1,29,1,1,1,11,1,10,1,28,1,1,51,28,5,29,1,26,1,27,2,9,2,25,4,27,1,26,10,9,5,11,1,1,1,11,1,9,1,28,1,1,33,}, + {1,59,28,1,6,1,7,1,9,1,11,1,12,1,9,1,26,1,27,1,25,1,29,1,28,1,1,12,28,1,26,1,28,2,9,1,26,1,28,1,1,17,28,2,9,1,15,1,9,1,25,1,12,2,28,1,1,43,28,1,6,2,28,2,29,1,7,1,8,1,9,1,16,2,12,1,16,4,9,1,16,1,9,1,6,1,28,2,29,1,27,1,9,1,29,1,28,1,1,19,28,2,25,1,28,1,26,1,27,2,25,1,27,1,9,1,25,1,26,1,12,1,11,1,12,1,28,1,1,58,28,5,29,2,26,2,27,2,9,2,25,7,9,6,29,1,28,2,1,34,}, + {1,59,28,1,6,1,7,1,9,1,17,1,11,1,9,1,27,2,25,1,28,1,1,14,29,1,28,2,9,1,25,1,28,1,1,16,28,2,29,1,15,2,9,2,17,1,9,1,28,1,1,43,28,3,6,1,7,1,6,2,28,1,29,1,7,1,8,1,9,3,16,2,9,1,29,1,28,3,9,1,17,1,27,3,28,1,1,20,28,1,25,1,9,1,26,2,25,1,26,1,9,1,27,1,29,1,9,1,1,1,16,1,29,1,1,65,28,12,29,1,28,6,1,1,28,1,1,36,}, + {1,59,28,1,29,1,7,1,16,1,17,1,11,1,9,1,27,3,28,1,1,14,28,1,26,1,28,1,9,2,28,1,1,16,28,2,25,1,15,1,9,1,27,1,11,1,16,1,29,1,1,48,28,4,29,1,7,3,6,1,29,1,28,4,6,1,16,1,11,1,7,1,9,2,26,1,27,1,29,1,1,21,25,1,9,1,26,1,27,1,26,1,27,1,12,1,28,1,9,1,1,1,12,1,8,1,28,1,1,122,}, + {1,59,28,1,29,1,6,1,9,1,17,1,11,1,16,1,26,1,9,1,29,1,28,1,1,14,28,1,27,1,28,1,9,2,28,1,1,15,28,2,26,1,15,1,9,1,27,1,9,1,12,1,16,1,28,1,1,53,28,3,8,1,17,1,11,4,9,2,17,1,12,1,27,1,12,1,26,2,11,1,28,2,1,18,28,1,9,2,26,2,27,1,9,1,28,1,9,1,1,1,12,2,28,1,1,123,}, + {1,59,28,2,6,1,7,1,17,2,12,1,27,1,9,1,29,1,1,15,28,1,27,1,28,1,26,1,9,1,28,1,1,14,28,3,9,3,27,1,12,2,6,1,28,1,1,57,28,4,6,1,9,1,1,1,11,2,29,1,9,1,12,1,29,1,27,1,11,1,28,2,1,15,28,2,26,1,9,1,27,2,25,1,9,1,29,1,26,1,1,1,11,1,9,1,29,1,1,124,}, + {1,59,28,2,6,1,7,1,11,2,17,1,27,1,9,1,27,1,28,1,1,14,28,1,27,1,28,1,26,1,9,1,28,1,1,14,28,2,26,1,9,2,25,1,9,1,17,1,12,1,28,1,1,62,28,1,9,1,12,1,11,2,17,1,29,1,12,1,9,1,26,1,25,1,11,1,26,1,28,1,1,13,28,2,29,1,9,1,27,1,26,1,25,2,29,1,10,1,11,2,16,1,6,1,1,125,}, + {1,60,28,1,6,1,7,1,16,1,11,2,7,1,9,1,27,1,28,1,1,14,28,1,26,1,28,2,15,1,28,1,1,13,28,2,29,1,9,3,26,1,12,2,7,1,1,64,28,1,9,1,11,3,7,1,27,1,15,1,27,1,26,2,11,1,15,1,28,1,1,10,28,3,9,1,11,1,25,1,26,1,27,1,26,1,29,1,25,1,11,1,1,1,8,1,9,1,28,1,1,125,}, + {1,60,28,1,6,1,8,1,16,1,11,2,10,2,27,1,29,1,1,14,28,4,15,1,26,1,1,13,28,2,27,1,9,2,27,1,9,1,11,1,9,1,28,1,1,64,28,1,7,1,11,1,1,1,11,2,29,1,9,1,11,1,26,1,29,1,26,1,9,1,11,1,9,1,28,2,1,4,28,3,26,1,9,1,12,1,9,2,27,1,9,1,26,2,9,1,11,1,1,1,9,1,10,1,28,1,1,126,}, + {1,60,28,1,6,1,7,1,16,1,11,2,9,1,27,2,10,1,28,1,1,13,28,4,9,1,27,1,28,1,1,11,28,2,26,1,9,3,26,1,17,1,12,1,6,1,28,1,1,65,28,1,9,2,11,2,16,1,28,1,15,1,11,1,26,4,9,2,12,1,9,1,25,1,26,2,9,1,15,1,9,1,15,1,25,1,27,1,9,1,27,1,26,1,29,1,26,1,9,1,11,2,7,1,16,1,28,1,1,127,}, + {1,60,28,1,6,1,8,1,16,1,11,2,12,1,6,1,27,2,28,1,1,14,28,1,29,1,28,1,9,2,28,1,1,10,28,3,9,2,12,1,26,1,9,1,17,1,12,1,28,1,1,2,28,1,1,64,28,1,16,1,12,1,1,2,9,1,28,1,12,1,11,1,27,1,26,4,27,1,25,1,9,4,27,1,9,1,26,1,25,1,27,2,26,1,29,1,27,1,12,1,11,2,10,1,16,1,28,1,1,128,}, + {1,60,28,1,6,1,7,1,9,1,17,1,11,2,29,1,10,1,27,1,29,1,1,13,28,2,26,1,28,1,9,2,28,1,1,6,28,1,1,2,28,3,25,1,15,1,9,1,27,2,17,1,9,1,7,1,1,68,28,1,29,1,17,1,1,3,8,1,28,1,12,1,11,1,25,1,26,5,27,1,25,1,27,2,25,2,26,3,29,1,26,1,12,1,11,2,12,1,9,1,11,1,28,1,1,129,}, + {1,61,28,1,6,1,9,1,17,2,11,1,6,1,27,2,9,1,28,1,1,13,28,1,26,1,28,1,27,1,9,1,28,1,1,8,28,3,26,1,9,3,26,1,12,2,9,1,28,1,1,70,28,1,11,1,1,1,11,2,10,1,28,1,10,1,11,1,12,1,9,1,27,1,26,10,27,1,12,1,11,1,1,1,11,1,8,1,16,2,28,1,1,130,}, + {1,61,28,1,7,1,10,1,16,1,11,2,10,1,27,1,10,1,9,1,28,1,1,1,28,1,1,11,28,1,26,1,28,1,26,1,9,1,28,1,1,8,28,2,26,1,9,3,26,1,10,1,11,1,16,1,28,1,1,66,28,1,1,5,28,1,11,1,1,3,16,1,28,1,7,1,12,1,17,1,12,2,9,1,27,4,25,1,10,1,9,1,11,4,9,1,7,1,11,1,9,1,28,1,1,131,}, + {1,61,28,1,8,2,9,1,11,1,17,1,12,1,29,1,9,1,26,1,12,1,28,1,1,12,28,1,26,1,28,1,29,1,9,1,29,1,1,7,28,2,29,1,9,2,15,1,25,1,26,1,11,1,10,1,12,1,28,1,1,67,28,1,1,5,28,1,12,1,1,1,11,2,1,1,6,1,28,1,9,1,16,1,12,1,17,1,11,3,17,2,11,1,17,1,11,1,16,1,10,1,9,1,16,1,11,1,28,1,1,133,}, + {1,61,28,1,6,1,7,1,9,1,11,1,12,1,11,1,29,1,9,1,26,1,15,1,26,1,1,12,28,1,26,1,28,2,15,1,26,1,28,1,1,5,28,2,29,1,9,1,15,2,9,1,29,1,12,2,9,1,28,1,1,75,28,1,9,1,1,2,11,1,1,1,11,1,6,3,10,1,9,4,16,1,10,1,7,1,6,1,9,1,11,2,6,1,28,1,1,1,28,1,1,132,}, + {1,62,28,1,8,1,10,1,12,1,17,1,11,1,7,2,9,1,27,1,11,1,28,1,1,12,28,3,9,1,27,1,28,1,1,4,28,2,29,1,9,2,15,1,9,1,29,1,9,1,11,1,9,2,28,1,1,67,28,1,1,9,28,1,11,1,1,4,11,2,16,1,9,5,12,1,11,1,1,1,11,1,6,1,28,1,1,136,}, + {1,62,28,1,10,2,12,2,11,1,16,1,29,1,9,1,26,1,12,1,9,1,28,1,1,11,28,1,26,1,28,1,9,2,28,1,1,3,28,2,26,1,9,1,15,1,9,1,12,1,26,1,27,1,11,1,9,1,12,1,28,1,1,79,28,2,11,1,1,5,11,1,1,5,17,1,6,1,28,1,1,138,}, + {1,62,28,1,6,1,7,1,9,1,11,1,17,1,11,1,6,1,9,1,26,2,11,1,30,1,1,11,28,1,27,1,26,1,9,2,28,1,1,2,28,1,29,1,9,1,12,1,9,3,29,1,26,1,11,1,9,1,12,1,28,1,1,73,28,1,1,9,28,2,6,2,29,1,28,6,1,141,}, + {1,63,28,1,7,1,9,1,17,1,11,1,17,1,10,1,29,1,9,1,29,1,9,1,11,1,28,1,1,9,28,2,26,2,9,2,28,4,27,1,9,1,27,1,9,2,26,2,12,1,9,2,10,1,1,236,}, + {1,63,28,1,10,1,7,1,16,1,11,1,12,1,11,1,28,1,9,1,27,1,29,1,15,1,11,1,28,1,1,7,28,3,26,1,27,1,26,1,9,1,26,1,28,2,26,1,15,1,27,1,9,2,26,1,29,1,12,1,11,1,7,1,12,1,1,237,}, + {1,64,28,1,7,1,9,1,11,3,9,1,28,1,12,1,29,2,15,1,11,1,26,1,28,1,1,7,28,1,9,1,26,2,27,1,25,1,26,1,27,1,9,1,27,1,9,2,26,2,12,1,11,1,10,1,17,1,28,1,1,237,}, + {1,64,28,1,16,1,8,1,12,3,1,1,28,1,10,1,12,1,28,1,26,1,9,1,11,1,12,1,28,1,1,5,28,1,29,1,9,1,26,3,27,3,9,2,27,1,29,1,26,1,11,2,6,1,11,1,28,1,1,238,}, + {1,65,28,1,10,2,11,1,12,1,11,1,16,1,28,1,15,1,9,1,29,1,26,1,9,1,11,2,27,1,28,5,9,1,27,2,26,2,27,1,26,1,27,3,29,1,25,1,11,2,27,1,11,1,29,1,1,239,}, + {1,65,28,1,7,1,16,1,12,1,11,1,17,1,11,1,6,1,28,1,11,1,9,1,29,1,26,3,9,1,12,2,15,2,9,1,25,1,26,2,27,2,26,1,27,1,9,1,26,1,29,1,9,1,11,1,9,1,10,1,17,1,28,1,1,240,}, + {1,66,28,1,9,2,11,2,17,1,1,1,28,1,29,1,11,1,9,1,28,1,26,3,25,1,27,1,9,2,25,1,26,3,27,1,26,2,27,1,29,1,26,1,12,1,11,1,12,1,7,1,11,1,7,1,1,6,28,1,1,234,}, + {1,67,28,1,16,2,11,2,17,1,11,1,28,1,29,1,12,1,15,1,26,5,27,1,26,4,27,1,26,2,27,1,26,1,9,1,11,2,7,2,11,1,28,1,1,242,}, + {1,67,28,1,29,1,9,1,12,1,11,1,12,1,11,2,28,2,11,2,9,1,26,2,29,1,26,7,27,1,9,1,11,2,16,1,29,1,16,1,1,1,28,1,1,243,}, + {1,69,7,1,9,1,11,5,6,1,28,1,10,1,11,1,17,1,12,1,10,1,27,1,26,3,27,1,9,2,17,1,11,1,9,1,29,1,7,1,11,2,28,1,1,244,}, + {1,68,28,1,1,1,29,1,17,1,11,4,1,1,9,1,28,2,16,1,12,1,11,3,17,1,11,4,10,1,28,1,29,1,17,1,1,1,17,1,28,1,1,245,}, + {1,71,28,1,10,1,11,4,1,2,8,1,28,2,6,1,7,1,10,2,6,1,29,1,28,2,6,1,12,1,1,2,28,1,1,247,}, + {1,72,28,1,8,1,12,1,11,4,1,2,17,1,9,1,7,3,9,2,17,1,11,1,1,2,7,1,28,1,1,248,}, + {1,67,28,1,1,6,28,1,9,1,12,1,1,2,11,3,1,2,11,1,1,3,11,1,17,1,6,1,28,1,1,250,}, + {1,75,28,3,8,1,16,1,1,1,11,1,12,1,16,1,8,1,6,1,28,4,1,252,}, + {1,79,28,3,1,260,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, + {1,342,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino15.lua b/map_gen/data/presets/dino15.lua new file mode 100644 index 00000000..d50038a6 --- /dev/null +++ b/map_gen/data/presets/dino15.lua @@ -0,0 +1,647 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 640, +width = 640, +data = { + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,184,28,7,1,1,28,13,1,435,}, + {1,179,28,33,1,16,28,1,1,411,}, + {1,176,28,38,1,10,28,11,1,405,}, + {1,173,28,46,1,2,28,34,1,385,}, + {1,171,28,83,1,386,}, + {1,170,28,84,1,1,28,1,1,384,}, + {1,169,28,86,1,385,}, + {1,167,28,88,1,385,}, + {1,167,28,89,1,384,}, + {1,166,28,90,1,384,}, + {1,166,28,90,1,384,}, + {1,160,28,1,1,1,28,2,1,1,28,90,1,385,}, + {1,164,28,92,1,384,}, + {1,161,28,1,1,2,28,91,1,385,}, + {1,164,28,87,1,2,28,2,1,385,}, + {1,165,28,86,1,389,}, + {1,164,28,84,1,7,28,1,1,384,}, + {1,161,28,1,1,1,28,86,1,3,28,1,1,387,}, + {1,163,28,84,1,393,}, + {1,161,28,85,1,394,}, + {1,160,28,1,1,1,28,84,1,394,}, + {1,162,28,73,13,1,9,1,28,7,1,396,}, + {1,161,28,73,29,1,13,2,28,7,1,2,28,1,1,393,}, + {1,160,28,74,29,1,28,9,1,2,28,1,1,393,}, + {1,161,28,79,1,2,28,2,1,1,28,2,1,393,}, + {1,161,28,79,1,400,}, + {1,161,28,79,1,1,28,1,1,2,28,1,1,2,28,1,1,392,}, + {1,161,28,81,1,398,}, + {1,161,28,82,1,397,}, + {1,161,28,81,1,398,}, + {1,161,28,82,1,1,28,2,1,394,}, + {1,161,28,67,29,1,28,15,1,396,}, + {1,161,28,67,29,1,28,16,1,2,28,1,1,392,}, + {1,161,28,85,1,1,28,1,1,392,}, + {1,161,28,86,1,393,}, + {1,160,28,8,29,1,28,11,29,1,28,67,1,2,28,2,1,388,}, + {1,161,28,20,6,1,28,70,1,388,}, + {1,161,28,21,29,1,6,1,28,66,1,390,}, + {1,162,28,21,29,1,28,66,1,1,28,1,1,388,}, + {1,160,28,1,1,1,28,5,29,1,28,82,1,1,28,1,1,388,}, + {1,162,28,6,29,1,28,75,29,2,28,3,1,2,28,1,1,388,}, + {1,162,28,87,1,391,}, + {1,161,28,85,1,2,28,1,1,4,28,2,1,385,}, + {1,161,28,1,1,1,28,83,1,394,}, + {1,161,28,1,1,1,28,83,1,1,28,1,1,392,}, + {1,161,28,1,1,1,28,83,1,1,28,1,1,392,}, + {1,163,28,77,29,1,25,1,28,5,1,393,}, + {1,164,28,76,27,1,9,1,7,1,28,3,1,394,}, + {1,160,28,1,1,1,28,1,1,1,28,76,25,1,29,2,28,3,1,1,28,1,1,392,}, + {1,162,28,77,29,2,28,5,1,1,28,1,1,392,}, + {1,162,28,1,1,1,28,52,26,1,28,27,1,396,}, + {1,164,28,52,29,1,28,28,1,395,}, + {1,166,28,49,26,1,28,31,1,393,}, + {1,167,28,48,29,1,28,3,29,1,28,15,29,1,26,1,28,7,1,396,}, + {1,167,28,53,29,1,28,13,29,1,26,1,28,9,1,395,}, + {1,168,28,46,26,1,28,5,29,1,28,13,29,1,28,3,29,1,12,1,28,5,1,1,28,2,1,392,}, + {1,169,28,15,29,2,28,27,25,2,28,2,29,1,28,19,26,1,9,1,29,1,28,4,1,2,28,1,1,393,}, + {1,166,28,2,1,2,28,14,29,1,28,28,26,2,28,2,26,1,28,18,26,1,15,1,27,1,28,5,1,2,28,1,1,393,}, + {1,171,28,7,29,2,28,3,30,1,29,1,28,27,25,1,28,1,26,1,29,1,28,1,26,1,29,1,28,1,29,1,28,3,29,1,28,11,9,2,28,4,1,2,28,1,1,2,28,1,1,392,}, + {1,171,28,7,29,2,28,2,30,2,28,2,30,1,28,24,13,1,26,1,29,1,26,1,29,1,28,2,26,1,27,1,29,1,28,14,26,1,10,2,28,2,1,400,}, + {1,172,28,4,29,1,28,5,30,1,29,1,28,2,29,1,28,23,29,1,9,1,29,1,26,1,29,1,26,1,28,2,29,1,27,1,26,1,28,14,27,1,9,1,27,1,28,2,1,400,}, + {1,173,28,2,29,1,28,5,30,1,29,1,28,27,9,1,25,1,29,1,28,1,29,2,28,3,26,2,29,1,28,13,26,1,27,1,28,4,1,399,}, + {1,170,28,2,1,2,28,7,30,1,28,28,25,1,30,1,29,1,28,6,26,2,29,1,28,1,29,1,28,2,29,1,28,14,1,399,}, + {1,171,28,1,1,2,28,4,29,1,28,2,29,1,28,29,26,2,29,1,28,5,26,1,25,1,29,1,28,4,26,1,28,13,1,400,}, + {1,175,28,36,6,1,25,1,30,1,29,1,28,4,29,1,25,1,26,1,28,4,29,2,28,12,1,400,}, + {1,173,28,2,1,1,28,32,9,1,28,3,26,1,29,1,26,1,28,1,29,1,28,3,26,2,28,2,29,1,30,1,29,3,28,1,29,2,28,8,1,400,}, + {1,173,28,2,1,2,28,31,29,1,30,1,28,3,27,1,28,1,27,1,30,1,29,1,28,2,26,2,28,2,26,1,9,1,29,1,28,1,29,1,30,1,26,1,29,1,28,10,1,398,}, + {1,177,28,1,1,1,28,30,30,1,28,3,10,1,29,1,10,1,25,1,28,2,29,1,28,2,30,2,26,1,9,1,26,1,29,1,26,1,25,2,29,1,28,10,1,3,28,1,1,394,}, + {1,179,28,31,29,1,28,3,27,1,26,2,28,2,29,1,28,2,29,1,26,1,25,1,10,1,26,1,25,2,26,1,30,2,29,1,28,10,1,397,}, + {1,178,28,33,25,1,28,3,26,1,29,1,26,1,28,2,29,1,28,2,10,1,27,1,26,1,27,1,9,2,26,1,29,1,27,1,26,1,28,10,1,3,28,1,1,393,}, + {1,178,28,33,29,1,28,3,29,2,26,1,29,1,28,1,26,1,27,1,26,1,25,1,26,1,30,1,25,1,10,1,9,1,25,1,29,1,25,2,28,10,1,1,28,1,1,1,28,1,1,393,}, + {1,178,28,34,29,1,28,3,29,2,26,1,30,1,29,1,25,1,9,1,29,1,25,1,27,1,10,3,25,1,29,1,27,1,30,1,29,1,28,8,1,2,28,1,1,395,}, + {1,178,28,39,7,1,10,1,30,1,26,1,25,1,27,1,26,1,9,1,8,1,10,1,9,2,27,1,30,1,25,1,29,2,28,8,1,398,}, + {1,178,28,39,29,1,10,1,6,1,25,1,26,1,29,1,25,1,7,1,10,2,9,2,25,1,10,1,9,1,25,1,30,2,28,4,9,1,28,2,1,1,28,1,1,1,28,1,1,1,28,1,1,392,}, + {1,177,28,1,1,1,28,39,6,1,9,1,29,2,10,1,29,2,9,3,10,2,9,2,25,1,29,1,26,1,28,4,30,1,28,2,1,1,28,1,1,1,28,1,1,394,}, + {1,179,28,36,29,1,28,3,10,1,29,1,10,1,26,1,6,1,30,1,9,2,8,2,9,3,25,1,29,3,28,7,1,2,28,1,1,394,}, + {1,179,28,40,29,1,9,1,26,1,9,1,27,1,8,1,9,2,10,1,16,1,11,1,16,1,7,1,10,1,30,1,29,2,28,7,1,2,28,1,1,394,}, + {1,179,28,37,29,2,28,2,10,1,9,1,25,1,9,1,10,2,9,1,16,5,10,1,26,1,30,1,29,3,28,3,6,1,28,1,1,397,}, + {1,179,28,38,29,2,28,2,16,1,9,1,10,2,6,1,25,1,9,2,15,2,16,1,8,1,25,1,7,1,29,1,28,1,29,3,28,1,8,1,28,2,1,396,}, + {1,179,28,17,29,1,28,18,29,1,28,2,26,1,28,3,12,1,9,1,29,1,7,1,9,3,11,2,10,1,9,2,10,1,6,1,30,1,6,1,30,1,29,1,6,1,10,1,28,2,1,396,}, + {1,178,28,17,29,1,28,23,9,1,28,3,16,1,25,2,9,3,16,2,9,3,10,1,7,1,10,2,6,1,28,1,10,1,7,1,28,2,1,396,}, + {1,179,28,15,26,1,29,1,28,23,29,1,27,1,28,2,29,1,15,1,9,1,26,1,25,1,9,1,16,1,9,1,16,3,9,1,10,1,9,2,6,1,29,1,9,1,28,3,1,396,}, + {1,179,28,14,26,2,28,25,29,1,9,1,28,2,6,1,15,1,16,1,6,2,9,1,16,1,9,1,12,2,9,4,7,1,10,1,9,1,28,1,1,1,28,1,1,1,28,1,1,394,}, + {1,180,28,12,25,1,26,1,29,1,28,26,27,1,9,1,28,2,6,1,16,1,9,1,29,1,25,1,12,1,9,1,16,1,12,2,16,2,12,1,17,1,16,1,28,2,1,398,}, + {1,179,28,12,9,1,26,1,29,1,28,27,29,1,25,1,9,1,29,1,28,2,9,1,27,1,30,1,10,1,9,2,16,1,9,1,17,1,11,2,6,1,28,2,1,399,}, + {1,179,28,11,9,2,26,1,29,1,28,29,26,1,10,1,25,1,30,1,25,1,9,2,16,1,7,1,6,1,10,1,12,1,16,1,6,1,28,2,1,401,}, + {1,177,28,1,1,1,28,10,9,1,25,1,26,1,29,1,28,32,9,1,27,1,10,1,17,1,9,1,6,1,9,1,7,1,6,1,28,3,1,4,28,2,1,3,28,1,1,393,}, + {1,179,28,8,26,1,9,3,26,1,29,1,28,31,29,1,26,1,29,1,27,1,10,1,28,6,1,4,28,2,1,5,28,1,1,393,}, + {1,179,28,7,26,1,15,1,9,1,25,1,26,1,29,1,28,35,29,1,28,3,1,4,28,2,1,3,28,1,1,399,}, + {1,177,28,1,1,1,28,6,9,1,11,1,15,2,9,1,26,2,29,2,28,32,26,2,28,2,1,2,28,2,1,2,28,3,1,1,28,1,1,2,28,1,1,396,}, + {1,177,28,1,1,1,28,5,29,1,25,2,29,1,28,43,1,3,28,2,1,404,}, + {1,179,28,52,1,2,28,2,1,2,28,2,1,401,}, + {1,179,28,53,1,6,28,1,1,401,}, + {1,176,28,1,1,1,28,57,1,405,}, + {1,176,28,61,1,403,}, + {1,177,28,61,1,402,}, + {1,177,28,61,1,402,}, + {1,178,28,60,1,402,}, + {1,178,28,60,1,402,}, + {1,176,28,1,1,2,28,58,1,403,}, + {1,179,28,58,1,403,}, + {1,180,28,57,1,403,}, + {1,180,28,57,1,403,}, + {1,180,28,58,1,402,}, + {1,182,28,56,1,402,}, + {1,182,28,56,1,402,}, + {1,181,28,57,1,402,}, + {1,180,28,58,1,402,}, + {1,180,28,58,1,402,}, + {1,180,28,58,1,1,28,1,1,400,}, + {1,179,28,61,1,400,}, + {1,179,28,62,1,399,}, + {1,178,28,65,1,397,}, + {1,178,28,67,1,395,}, + {1,178,28,67,1,395,}, + {1,177,28,69,1,394,}, + {1,177,28,70,1,393,}, + {1,176,28,72,1,392,}, + {1,176,28,74,1,390,}, + {1,175,28,76,1,389,}, + {1,174,28,78,1,388,}, + {1,174,28,79,1,387,}, + {1,174,28,80,1,386,}, + {1,173,28,83,1,384,}, + {1,173,28,84,1,383,}, + {1,173,28,85,1,382,}, + {1,172,28,87,1,381,}, + {1,172,28,89,1,379,}, + {1,172,28,90,1,378,}, + {1,171,28,93,1,376,}, + {1,168,28,1,1,2,28,93,1,376,}, + {1,171,28,95,1,374,}, + {1,171,28,95,1,374,}, + {1,170,28,97,1,373,}, + {1,170,28,98,1,372,}, + {1,170,28,99,1,371,}, + {1,170,28,100,1,370,}, + {1,169,28,103,1,368,}, + {1,169,28,103,1,368,}, + {1,169,28,105,1,366,}, + {1,169,28,105,1,49,28,2,1,12,28,1,1,302,}, + {1,169,28,106,1,45,28,1,1,4,28,1,1,2,28,2,1,8,28,1,1,301,}, + {1,169,28,107,1,44,28,2,1,8,28,6,1,304,}, + {1,169,28,108,1,45,28,3,1,3,28,11,1,301,}, + {1,169,28,109,1,47,28,16,1,299,}, + {1,169,28,110,1,41,28,2,1,2,28,18,1,1,28,1,1,296,}, + {1,168,28,111,1,42,28,21,1,298,}, + {1,168,28,112,1,40,28,23,1,4,28,1,1,85,28,2,1,205,}, + {1,168,28,113,1,38,28,24,1,1,28,1,1,7,28,2,1,286,}, + {1,168,28,114,1,33,28,2,1,1,28,25,1,1,28,1,1,1,28,1,1,2,28,1,1,1,28,1,1,288,}, + {1,168,28,115,1,32,28,29,1,2,28,1,1,2,28,1,1,290,}, + {1,168,28,116,1,31,28,30,1,1,28,1,1,2,28,6,1,285,}, + {1,168,28,116,1,31,28,41,1,284,}, + {1,168,28,117,1,28,28,44,1,2,28,1,1,280,}, + {1,168,28,118,1,27,28,44,1,2,28,1,1,280,}, + {1,168,28,118,1,18,28,1,1,8,28,32,17,1,29,1,28,10,1,2,28,1,1,1,28,1,1,71,28,4,1,18,28,1,1,10,28,3,1,171,}, + {1,168,28,119,1,18,28,2,1,3,28,1,1,1,28,33,11,2,28,12,1,2,28,1,1,86,28,1,1,15,28,1,1,175,}, + {1,168,28,120,1,18,28,1,1,3,28,35,11,1,1,1,14,1,26,1,28,12,1,71,28,2,1,16,28,2,1,2,28,2,1,8,28,2,1,174,}, + {1,168,28,120,1,19,28,1,1,2,28,34,11,1,1,2,15,1,28,13,1,88,28,3,1,188,}, + {1,168,28,121,1,20,28,35,9,1,11,1,25,1,28,14,1,81,28,32,1,166,}, + {1,168,28,122,1,18,28,54,1,1,28,1,1,2,28,1,1,71,28,36,1,166,}, + {1,169,28,122,1,17,28,54,1,1,28,1,1,2,28,1,1,69,28,14,6,2,28,25,1,163,}, + {1,169,28,122,1,16,28,43,29,1,28,10,1,2,28,1,1,2,28,1,1,65,28,16,6,1,28,2,6,2,28,27,1,160,}, + {1,169,28,122,1,15,28,44,29,2,28,9,1,1,28,1,1,2,28,1,1,61,28,1,1,3,28,5,6,1,28,9,6,3,28,2,6,4,28,11,6,2,28,1,6,2,28,12,1,5,28,1,1,6,28,1,1,144,}, + {1,169,28,123,1,12,28,40,29,1,30,1,28,6,29,1,26,1,28,9,1,2,28,1,1,1,28,1,1,61,28,6,6,2,28,1,6,1,28,6,6,3,28,2,6,8,28,3,6,2,28,2,6,6,28,15,1,2,28,1,1,151,}, + {1,169,28,123,1,10,28,42,29,1,9,1,28,17,1,65,28,7,6,13,28,1,6,18,28,1,6,2,28,19,1,2,28,2,1,147,}, + {1,169,28,124,1,8,28,44,26,1,28,18,1,63,28,9,6,1,16,1,8,1,16,1,6,15,28,1,6,11,28,1,6,2,28,20,1,1,28,1,1,148,}, + {1,170,28,124,1,6,28,64,1,63,28,8,6,1,16,2,6,17,28,1,6,15,28,21,1,3,28,1,1,144,}, + {1,170,28,124,1,4,28,66,1,2,28,1,1,59,28,6,6,2,28,1,6,4,8,1,6,31,28,22,1,147,}, + {1,170,28,125,1,1,28,50,26,1,29,1,28,16,1,2,28,1,1,59,28,5,6,3,8,1,16,3,6,16,28,1,6,16,28,25,1,144,}, + {1,170,28,125,1,1,28,47,29,1,28,1,9,1,29,1,28,18,1,59,28,5,6,6,28,1,8,1,16,1,6,1,8,1,6,14,28,1,6,1,28,3,6,14,28,9,6,4,28,10,1,144,}, + {1,171,28,170,29,2,28,2,15,2,27,1,26,1,28,16,1,2,28,1,1,52,28,1,1,2,28,4,6,1,28,1,6,2,28,1,6,3,28,2,16,2,6,15,28,1,6,1,28,4,6,18,28,3,6,4,28,12,1,143,}, + {1,169,28,1,1,1,28,173,9,1,17,1,9,1,25,1,26,1,29,2,28,14,1,1,28,2,1,49,28,2,1,4,28,6,6,3,28,1,6,3,28,1,6,1,16,1,6,15,28,1,6,1,28,3,6,26,28,14,1,2,28,1,1,7,28,1,1,130,}, + {1,169,28,1,1,2,28,170,29,1,11,1,9,1,7,1,29,3,28,1,29,2,28,12,1,2,28,1,1,50,28,2,1,3,28,6,8,1,6,3,28,3,6,3,16,2,6,14,28,1,6,1,28,3,6,28,28,15,1,138,}, + {1,172,28,169,6,1,11,2,9,1,29,1,28,4,29,2,28,2,29,2,28,8,1,1,28,1,1,50,28,10,6,2,16,1,6,5,28,2,6,2,16,2,6,11,28,1,6,2,28,1,6,1,28,1,6,10,28,3,6,17,28,17,1,136,}, + {1,168,28,1,1,2,28,170,11,1,1,1,16,1,12,1,9,1,6,1,29,2,28,2,29,3,30,1,27,1,29,1,28,7,1,1,28,1,1,1,28,1,1,48,28,9,6,1,16,1,8,1,6,2,8,1,28,1,6,6,8,1,16,1,8,1,6,10,28,1,6,2,28,1,6,1,28,1,6,10,28,6,6,14,28,18,1,6,28,1,1,128,}, + {1,168,28,1,1,2,28,168,6,1,11,2,16,1,17,2,11,1,16,1,9,1,10,1,6,1,28,4,29,3,28,7,1,1,28,1,1,1,28,1,1,49,28,8,6,1,8,1,6,5,28,1,6,2,28,1,6,3,16,2,6,10,28,1,6,2,28,3,6,11,28,4,6,15,28,18,1,3,28,1,1,131,}, + {1,173,28,163,29,1,12,1,17,1,12,1,11,1,12,1,10,1,16,1,12,3,11,1,12,1,9,2,6,1,28,4,29,2,28,5,1,54,28,6,6,1,8,1,6,10,28,1,6,3,16,2,8,1,6,9,28,1,6,2,28,2,6,13,28,3,6,18,28,17,1,133,}, + {1,170,28,1,1,2,28,161,27,1,9,1,17,1,12,1,16,1,9,1,12,1,17,1,12,1,9,1,16,1,10,1,7,1,16,1,9,1,16,1,11,1,9,2,6,1,29,6,6,1,28,2,1,1,28,1,1,1,28,1,1,49,28,6,6,14,28,1,6,3,16,1,8,1,6,9,28,1,6,2,28,2,6,12,28,3,6,21,28,16,1,3,28,1,1,128,}, + {1,174,28,150,29,2,28,5,29,1,10,1,17,1,12,1,11,1,16,1,12,2,16,1,12,1,17,1,12,1,10,1,12,1,9,1,29,1,7,1,6,1,28,1,10,1,17,1,12,1,16,1,9,1,7,1,6,2,29,1,28,1,6,1,7,1,6,1,28,4,1,11,28,3,1,35,28,6,6,13,28,2,6,3,16,1,8,1,6,8,28,1,6,3,28,2,6,2,28,1,6,2,28,3,6,4,28,3,6,2,28,2,6,21,28,14,1,130,}, + {1,174,28,156,29,1,6,1,7,1,11,2,12,1,17,1,11,1,12,3,11,1,17,1,12,1,17,1,9,1,29,1,27,1,29,1,28,2,29,1,9,1,12,1,11,1,16,1,7,1,29,1,6,2,28,2,6,1,10,1,7,1,6,1,28,4,1,6,28,1,1,5,28,2,1,6,28,2,1,19,28,1,1,4,28,4,6,2,8,2,6,12,28,2,6,2,16,2,8,1,6,11,28,3,6,1,28,2,6,2,28,2,6,4,28,3,6,2,28,2,6,20,28,15,1,1,28,2,1,127,}, + {1,174,28,157,29,1,10,1,9,1,1,1,12,1,17,3,11,3,12,3,10,1,29,2,6,1,29,2,28,2,6,1,10,1,17,1,11,2,9,1,6,2,29,1,28,2,29,1,7,1,9,1,16,1,7,1,28,4,1,5,28,2,1,4,28,1,1,25,28,1,1,5,28,2,6,18,28,3,6,1,8,1,16,2,6,11,28,2,6,2,28,2,6,1,8,1,6,1,28,2,6,3,28,2,6,3,28,1,6,21,28,18,1,127,}, + {1,174,28,158,7,2,11,3,12,3,17,2,11,3,10,1,28,1,29,1,27,1,29,2,28,4,7,1,16,1,11,3,9,1,10,1,7,1,6,1,28,2,6,2,16,2,9,1,6,1,28,4,1,7,28,1,1,29,28,1,1,1,28,2,6,1,16,1,6,1,16,2,6,3,8,2,6,10,28,2,6,2,16,2,6,11,28,6,6,3,8,1,6,1,28,2,6,1,28,1,6,2,28,1,6,29,28,13,1,126,}, + {1,175,28,158,10,1,16,1,11,1,12,1,17,1,11,6,12,1,7,1,28,1,29,7,6,1,9,1,11,5,12,1,10,1,7,2,29,3,10,2,9,2,16,2,6,1,28,4,1,2,28,1,1,9,28,1,1,20,28,2,1,1,28,2,6,1,8,1,16,4,8,1,6,13,28,3,6,1,16,2,6,11,28,2,6,1,28,4,6,2,7,1,14,1,6,1,28,2,6,1,28,1,6,1,28,1,6,34,28,12,1,122,}, + {1,175,28,159,9,1,1,1,11,4,12,1,16,1,9,1,10,1,7,1,29,1,28,1,29,1,6,1,29,2,7,1,6,1,28,4,10,1,11,2,1,1,11,2,16,2,9,1,6,3,7,3,8,1,9,1,16,3,7,1,28,3,1,28,28,1,1,2,28,1,1,2,28,4,16,4,6,15,28,2,6,1,8,1,16,1,6,12,28,1,6,3,28,1,6,3,28,1,11,1,16,1,6,2,28,2,6,38,28,9,1,123,}, + {1,176,28,158,6,1,11,1,1,1,11,1,9,1,6,1,29,1,28,14,1,2,28,2,7,1,12,1,1,2,11,2,12,1,10,1,9,1,8,1,7,2,6,2,7,1,8,1,9,2,16,1,11,1,16,1,6,1,28,3,1,4,28,4,1,17,28,1,1,2,28,7,6,1,8,1,16,4,8,1,6,13,28,2,6,1,16,1,8,1,6,11,28,1,6,3,28,2,6,1,29,1,28,2,9,1,11,1,8,1,28,6,6,10,28,2,6,21,28,11,1,122,}, + {1,176,28,160,9,1,8,1,6,1,28,12,1,9,28,1,6,1,16,1,11,1,1,2,11,1,12,1,16,1,10,1,7,1,8,2,6,2,10,2,6,1,7,1,9,1,11,2,16,1,6,1,28,3,1,24,28,5,6,1,28,3,6,1,16,1,8,1,16,3,8,1,6,12,28,2,6,1,8,1,16,1,6,19,28,3,16,3,6,1,28,5,6,2,28,1,6,5,28,3,6,22,28,11,1,121,}, + {1,177,28,160,8,1,7,1,28,1,29,1,28,1,1,20,28,2,9,1,11,1,1,1,11,2,12,1,16,1,10,1,6,2,7,2,9,1,10,1,7,3,10,1,12,1,11,2,12,1,28,3,1,20,28,1,1,1,28,5,6,1,28,3,6,1,8,1,16,1,8,1,16,4,6,12,28,2,8,1,16,1,6,16,28,1,6,1,8,1,7,1,28,4,8,1,17,1,28,1,6,1,28,5,6,1,28,1,6,3,28,5,6,21,28,12,1,120,}, + {1,177,28,165,1,22,28,2,7,1,17,1,1,2,11,1,16,1,9,1,8,1,7,1,6,1,7,2,10,3,7,1,10,2,9,1,11,3,10,1,28,3,1,7,28,1,1,2,28,1,1,4,28,1,1,1,28,1,1,1,28,4,6,8,16,1,8,1,16,4,6,11,28,2,6,1,16,1,6,16,28,1,6,1,8,2,28,6,6,4,28,5,6,2,28,5,6,21,28,15,1,3,28,2,1,113,}, + {1,178,28,163,1,2,28,1,1,22,28,2,6,1,16,1,11,2,17,1,16,1,9,1,8,1,6,1,10,1,9,2,7,1,6,3,7,1,9,1,16,1,11,2,1,1,12,1,6,1,28,2,1,2,28,2,1,6,28,2,1,5,28,4,6,2,8,1,16,1,8,1,6,6,8,1,16,1,8,1,6,12,28,1,6,1,16,1,8,1,6,15,28,2,7,1,16,1,28,7,6,1,29,1,7,1,8,1,6,2,28,1,6,2,28,5,6,19,28,5,6,1,28,13,1,4,28,1,1,112,}, + {1,178,28,163,1,28,28,2,9,1,11,1,1,1,11,1,9,1,10,1,7,1,6,1,7,1,9,1,16,1,9,1,6,1,8,1,6,2,9,1,16,2,1,2,11,1,16,1,28,3,1,2,28,1,1,1,28,2,1,4,28,1,1,3,28,3,6,2,16,1,8,1,6,2,8,2,6,19,28,2,6,1,16,1,6,16,28,1,6,1,16,1,28,7,29,1,28,1,29,1,28,1,6,1,8,1,16,2,6,1,28,5,6,19,28,3,6,4,28,14,1,2,28,1,1,112,}, + {1,178,28,162,1,31,28,3,16,1,11,1,12,1,16,1,9,1,7,2,10,3,9,1,10,1,7,1,9,1,6,2,9,1,12,1,11,1,1,2,11,1,9,1,28,3,1,6,28,2,1,2,28,4,6,2,8,1,6,4,8,3,6,18,28,2,16,1,6,16,28,1,6,1,16,1,8,1,28,6,7,1,8,1,28,3,6,1,11,1,1,1,8,1,6,3,28,2,6,2,28,2,6,22,28,15,1,114,}, + {1,177,28,162,1,35,28,2,7,1,16,1,17,1,12,1,9,1,7,1,10,2,9,2,8,1,7,5,16,2,17,1,11,1,1,2,12,1,8,1,28,3,1,1,28,2,1,4,28,4,6,2,8,2,6,4,8,2,6,3,8,3,6,13,28,1,6,17,28,2,7,1,9,1,29,1,28,5,8,1,16,1,6,1,28,3,6,1,7,1,28,1,6,1,7,3,16,2,6,1,28,1,6,3,28,2,6,18,28,1,6,1,28,14,1,113,}, + {1,176,28,162,1,38,28,3,7,1,12,1,11,1,16,1,7,2,16,3,9,1,7,2,6,1,7,1,9,1,16,2,12,1,11,1,1,2,11,1,16,1,6,1,28,3,1,1,28,1,1,2,28,3,6,3,8,1,6,3,8,2,6,21,28,1,6,1,8,1,6,16,28,1,6,1,16,2,28,6,6,2,28,10,16,1,11,1,16,1,6,27,28,14,1,112,}, + {1,178,28,1,1,1,28,155,1,43,28,3,29,1,16,1,11,1,12,1,16,1,8,2,9,2,8,1,10,1,6,1,7,1,9,2,16,2,12,1,11,1,16,1,11,1,1,1,11,1,9,1,28,3,1,2,28,3,8,3,6,3,8,2,6,10,8,1,6,9,28,1,6,2,28,1,6,17,28,2,8,1,16,1,6,1,28,6,6,1,28,10,6,1,16,1,6,29,28,13,1,112,}, + {1,180,28,156,1,45,28,3,10,1,12,1,11,1,17,1,16,1,9,1,10,1,8,1,10,1,8,1,10,1,9,1,10,2,16,1,12,2,16,1,9,1,11,1,1,2,9,1,28,6,6,11,8,3,6,4,8,1,6,11,28,2,6,11,28,1,6,6,28,1,6,1,9,1,7,1,28,5,7,2,6,1,28,9,6,1,16,1,6,1,28,3,6,6,28,1,6,20,28,11,1,112,}, + {1,181,28,155,1,48,28,3,10,1,16,1,12,2,16,1,10,2,7,1,10,1,8,1,10,1,9,2,12,2,9,1,6,1,9,1,1,3,16,1,28,4,6,2,8,1,6,5,8,1,6,4,8,3,6,2,8,1,6,12,28,1,6,18,28,2,7,1,16,1,8,1,28,4,6,1,8,1,6,1,28,8,8,1,16,1,7,1,6,1,28,2,6,28,28,13,1,110,}, + {1,179,28,1,1,2,28,151,1,53,28,4,6,1,16,1,11,1,17,1,12,1,16,1,10,1,7,1,6,2,7,1,16,1,17,1,12,1,8,1,7,1,16,1,11,1,1,1,11,3,16,1,7,1,6,2,8,3,6,4,8,1,6,3,8,3,6,34,28,1,6,1,16,1,11,1,6,1,28,4,7,1,29,1,28,7,6,1,8,1,7,1,6,1,28,3,6,34,28,10,1,107,}, + {1,179,28,1,1,2,28,149,1,53,28,1,1,5,28,3,29,1,9,1,16,1,12,2,16,1,10,1,9,1,6,2,16,2,10,2,12,2,11,1,1,3,11,1,16,1,8,1,6,3,8,3,6,6,8,2,6,20,28,8,6,7,28,1,6,1,16,2,7,1,28,3,6,1,7,1,6,1,28,5,6,2,28,6,6,34,28,11,1,106,}, + {1,184,28,146,1,63,28,4,7,1,16,1,17,1,16,1,9,5,10,1,6,1,9,1,16,1,12,1,17,1,11,1,1,2,11,1,16,1,6,4,8,2,6,25,28,11,6,5,28,3,6,1,16,1,17,1,9,1,28,2,6,1,7,1,9,1,6,1,29,1,7,1,8,1,9,1,6,3,28,2,6,1,28,2,6,33,28,13,1,105,}, + {1,184,28,146,1,67,28,3,10,1,12,1,17,1,9,1,8,1,10,2,9,1,7,1,9,1,16,1,11,2,17,1,11,3,14,1,16,1,6,10,8,2,6,15,28,15,6,6,28,1,6,1,7,1,16,2,8,1,7,1,8,1,16,4,6,2,28,8,6,33,28,14,1,104,}, + {1,185,28,143,1,72,28,3,10,1,17,2,12,1,16,1,9,1,7,1,6,1,8,1,16,1,17,1,11,3,1,2,11,1,16,1,8,1,6,4,8,6,6,12,8,1,6,1,28,16,6,5,28,3,6,1,7,1,6,1,8,1,16,2,6,2,28,1,6,1,28,1,6,1,28,3,6,1,28,1,6,37,28,12,1,104,}, + {1,179,28,1,1,3,28,1,1,2,28,141,1,75,28,3,6,1,16,1,11,1,17,1,16,2,8,2,16,1,17,1,11,5,1,1,11,1,16,1,8,1,6,3,8,3,6,15,28,18,6,6,28,1,6,1,28,1,6,4,28,1,6,1,28,5,6,1,28,3,6,38,28,11,1,104,}, + {1,187,28,139,1,79,28,3,6,1,16,4,8,1,9,1,16,1,11,5,1,2,11,1,16,1,8,1,6,3,8,2,6,13,28,19,6,6,28,1,6,2,28,14,6,40,28,13,1,101,}, + {1,184,28,1,1,1,28,140,1,81,28,2,6,1,16,7,17,1,11,3,17,1,11,1,1,1,11,2,16,1,6,4,8,3,6,1,8,2,6,6,28,20,6,15,28,2,6,2,28,2,6,44,28,13,1,2,28,1,1,96,}, + {1,186,28,139,1,83,28,1,6,1,7,1,6,1,8,1,16,3,11,1,16,2,11,1,1,1,11,2,17,1,11,1,1,2,11,1,16,2,7,1,6,3,8,3,6,2,8,1,6,1,8,1,6,1,28,21,6,65,28,12,1,2,28,1,1,96,}, + {1,187,28,138,1,82,28,2,6,3,8,3,16,5,11,6,1,2,11,2,14,1,16,1,7,1,6,10,28,22,6,10,28,7,6,47,28,13,1,98,}, + {1,187,28,1,1,1,28,135,1,83,28,2,6,3,16,1,8,1,6,3,8,1,16,4,1,4,11,3,1,3,11,1,14,1,16,1,8,1,16,2,8,1,6,4,28,22,6,12,28,5,6,50,28,1,6,1,28,9,1,97,}, + {1,190,28,134,1,83,28,1,6,1,8,1,6,2,8,1,16,3,6,4,8,1,16,2,11,1,1,4,11,4,1,2,11,2,14,1,11,2,14,1,16,2,6,1,28,22,6,70,28,8,1,97,}, + {1,190,28,134,1,76,28,2,1,5,28,1,6,1,8,2,16,6,6,6,16,1,14,1,11,1,1,2,11,4,17,1,11,1,1,2,17,1,16,1,17,1,1,1,11,2,8,1,28,22,6,70,28,9,1,96,}, + {1,185,28,1,1,2,28,2,1,1,28,132,1,81,28,1,1,1,28,2,8,1,7,1,8,1,16,1,6,2,16,4,8,1,7,1,8,1,16,3,8,1,16,2,11,1,1,3,11,1,1,1,11,4,16,1,9,1,17,1,11,2,9,1,28,22,6,11,28,2,6,57,28,9,1,96,}, + {1,191,28,131,1,84,28,2,8,1,7,1,16,2,8,1,6,4,8,1,16,11,14,1,11,1,1,3,11,4,17,1,16,1,17,1,11,1,17,1,28,21,6,72,28,8,1,1,28,1,1,2,28,2,1,1,28,1,1,88,}, + {1,192,28,130,1,84,28,2,8,1,7,1,16,2,8,1,6,3,8,1,16,15,11,2,1,4,11,1,16,2,11,1,1,1,6,1,28,20,6,73,28,7,1,1,28,1,1,2,28,3,1,89,}, + {1,192,28,131,1,83,28,1,6,1,7,1,8,1,16,2,8,5,16,15,8,1,16,2,14,1,11,1,1,3,11,1,8,1,11,1,1,1,28,20,6,74,28,3,6,1,28,3,1,2,28,1,1,1,28,2,1,89,}, + {1,193,28,130,1,82,28,2,7,1,6,2,8,1,16,1,8,1,16,21,8,2,16,2,14,1,11,1,1,1,11,3,29,1,28,18,6,1,28,1,6,73,28,10,1,92,}, + {1,194,28,130,1,81,28,2,7,1,6,3,7,1,8,1,16,24,8,1,16,2,8,1,11,2,1,2,14,1,30,1,28,15,6,78,28,3,6,1,28,5,1,91,}, + {1,194,28,130,1,81,28,2,8,1,7,1,6,1,7,1,8,2,16,11,8,4,16,4,8,1,16,8,6,1,7,1,8,1,16,1,14,2,28,14,6,79,28,4,6,1,28,4,1,91,}, + {1,194,28,131,1,80,28,1,6,2,8,2,16,12,8,3,6,3,8,4,16,2,8,1,16,1,8,4,6,1,16,1,6,5,16,1,28,11,6,81,28,4,6,1,28,6,1,89,}, + {1,195,28,130,1,80,28,1,6,2,8,1,16,10,8,5,16,1,8,2,6,20,8,1,6,1,28,8,6,1,16,1,8,1,6,8,28,5,6,68,28,3,6,2,28,4,1,90,}, + {1,196,28,130,1,78,28,2,16,3,8,1,16,8,8,1,6,3,8,10,6,18,28,6,8,1,16,1,8,1,16,2,6,10,28,5,6,67,28,1,6,3,28,3,1,90,}, + {1,196,28,129,1,79,28,1,6,1,16,10,8,1,6,7,8,7,6,24,28,1,16,2,6,1,8,1,16,1,6,2,28,2,6,8,28,4,6,66,28,2,6,2,28,3,1,90,}, + {1,197,28,129,1,78,28,1,6,1,16,1,8,1,16,8,6,8,8,7,6,17,28,1,6,2,8,1,16,1,6,2,28,1,6,1,16,2,6,2,8,1,16,1,6,1,28,1,6,10,28,3,6,70,28,2,1,90,}, + {1,198,28,128,1,78,28,1,8,4,16,9,8,2,6,3,8,1,6,1,8,4,6,26,28,1,6,2,16,2,6,3,16,1,6,2,28,1,6,2,28,2,6,73,28,1,6,2,8,1,28,3,1,89,}, + {1,195,28,1,1,2,28,128,1,78,28,1,6,4,16,4,6,2,8,1,16,3,8,1,6,2,8,2,6,2,8,4,6,22,8,1,6,5,8,1,16,2,6,3,16,1,6,7,28,3,6,72,8,1,28,4,1,88,}, + {1,199,28,128,1,11,28,2,1,64,28,1,6,4,16,4,6,4,8,2,16,1,8,4,6,4,8,1,6,27,28,1,6,2,8,1,16,3,6,2,16,2,6,1,28,1,6,2,28,1,6,77,28,3,1,88,}, + {1,200,28,127,1,1,28,3,1,1,28,4,1,3,28,1,1,63,28,2,6,2,8,1,6,1,16,3,8,3,6,4,8,5,6,8,8,2,6,23,28,1,6,1,8,1,16,4,6,1,8,1,16,1,6,82,28,3,1,88,}, + {1,197,28,2,1,1,28,128,10,1,16,1,10,1,28,1,7,1,11,2,9,1,28,2,1,65,28,1,6,2,16,1,8,2,16,2,6,2,16,1,8,1,6,5,8,4,6,8,8,3,6,19,8,1,6,2,28,1,6,2,16,5,6,2,16,2,6,80,28,3,1,88,}, + {1,201,28,126,6,1,16,1,6,1,28,1,6,6,28,6,1,60,28,1,6,1,8,2,16,3,8,5,6,1,8,1,6,7,8,3,6,27,8,1,6,3,28,1,6,2,16,7,6,77,16,1,6,3,28,2,1,89,}, + {1,201,28,148,1,54,28,1,7,1,16,1,8,1,16,3,8,8,6,6,8,3,6,32,28,1,6,1,16,5,8,2,6,3,28,1,6,72,16,2,6,2,28,2,1,4,28,2,1,84,}, + {1,202,28,136,6,1,28,16,1,47,28,2,8,2,16,1,6,1,8,3,6,3,8,6,6,4,8,3,6,28,8,1,6,3,28,2,6,1,16,5,8,2,16,1,6,1,28,3,6,69,16,1,8,1,16,1,6,2,28,2,1,4,28,2,1,84,}, + {1,203,28,114,6,1,28,40,1,44,28,2,16,1,8,1,16,1,6,1,8,3,6,4,8,1,6,1,8,10,6,33,28,1,6,2,16,5,6,1,16,1,8,1,28,5,6,3,28,1,6,62,8,1,16,2,6,3,28,2,1,4,28,2,1,84,}, + {1,204,28,97,6,1,12,1,6,1,7,2,10,1,7,1,6,2,28,6,6,1,28,6,6,2,28,2,6,2,28,5,6,2,28,4,6,3,28,6,6,1,28,1,6,1,28,8,1,42,28,2,8,2,16,1,8,3,16,1,8,1,6,3,8,1,6,3,8,8,6,34,28,1,6,1,8,1,16,2,8,2,6,1,8,1,16,1,8,1,28,6,6,64,8,1,16,1,8,1,6,3,28,3,1,3,28,2,1,84,}, + {1,204,28,92,6,1,9,1,6,1,16,2,7,1,10,1,6,2,7,2,6,1,28,16,6,3,28,5,6,1,28,3,6,3,28,25,1,38,28,1,6,1,8,2,16,3,8,1,16,1,8,1,6,7,8,8,6,32,8,1,6,1,28,2,6,1,16,2,8,3,6,1,16,2,28,7,6,62,8,1,16,2,8,1,6,2,28,4,1,89,}, + {1,205,28,88,6,2,10,2,7,2,10,2,6,6,28,5,6,1,28,7,6,2,28,3,6,2,28,1,6,6,28,1,6,1,28,2,6,3,28,2,6,5,28,23,1,31,28,1,8,4,16,3,8,6,6,3,8,4,6,1,8,3,6,32,8,1,6,4,16,5,8,2,16,2,28,9,6,59,16,2,8,2,6,2,28,4,1,89,}, + {1,202,28,2,1,2,28,84,6,1,7,1,6,4,7,1,28,1,10,1,16,1,6,6,28,24,6,1,28,5,6,2,28,2,6,4,28,1,6,1,28,1,6,1,28,28,1,26,28,1,16,1,8,1,6,2,8,1,16,1,8,2,6,2,8,7,6,4,8,3,6,36,28,1,6,1,16,4,8,1,16,1,8,2,16,1,28,9,6,58,16,2,8,1,6,3,28,4,1,89,}, + {1,203,28,1,1,2,28,80,9,1,7,1,6,1,28,3,6,4,28,1,7,1,12,1,6,2,10,1,6,1,10,1,6,1,28,32,6,10,28,32,1,5,28,1,1,17,28,1,8,1,16,2,6,1,8,9,6,8,8,3,6,39,16,2,8,2,16,1,8,2,16,2,28,10,6,54,8,1,16,2,8,1,6,3,28,5,1,89,}, + {1,207,28,76,6,1,9,1,7,1,16,1,6,1,28,3,6,4,28,1,6,1,10,2,6,2,10,1,6,3,28,38,6,9,28,23,6,1,28,7,1,2,28,1,1,15,28,2,8,1,16,2,6,1,16,1,8,6,6,2,8,11,6,39,16,3,8,2,16,1,8,1,16,2,8,1,28,11,6,9,28,1,6,42,16,2,8,1,6,4,28,5,1,89,}, + {1,208,28,73,7,2,10,1,6,2,16,1,28,4,6,4,28,1,10,1,12,1,6,2,10,3,28,39,6,2,28,1,6,8,28,24,6,2,28,5,1,1,28,2,1,14,28,1,6,2,8,1,16,2,8,6,6,3,8,11,6,40,16,3,8,1,16,1,8,1,16,1,8,1,16,2,6,1,28,12,6,48,8,1,16,1,8,1,6,5,28,5,1,89,}, + {1,208,28,71,7,1,12,1,10,1,28,1,6,2,28,1,6,1,28,4,6,2,28,2,7,1,12,1,16,1,6,1,10,2,6,1,7,1,28,44,6,3,28,22,6,1,28,3,6,1,28,3,6,2,28,7,1,12,28,1,6,3,8,1,16,2,8,5,6,3,8,11,6,40,8,1,16,2,8,1,16,2,6,1,8,3,16,1,6,1,28,13,6,46,8,3,6,5,28,2,1,1,28,1,1,90,}, + {1,209,28,68,6,1,12,1,16,1,6,1,28,2,6,1,28,1,6,1,28,1,6,3,28,2,6,1,28,1,6,1,12,2,7,2,16,1,7,1,6,1,28,71,6,1,28,9,6,1,28,5,1,12,28,1,8,1,6,1,8,1,6,1,16,1,8,1,6,5,8,14,6,41,16,5,6,1,16,2,6,1,8,1,16,1,6,1,28,13,6,45,8,2,6,3,8,1,6,1,28,2,1,2,28,1,1,90,}, + {1,210,28,65,7,1,12,1,16,1,6,2,28,1,6,1,10,1,6,1,28,3,6,4,28,1,6,3,16,1,10,1,6,1,10,2,6,1,28,62,6,3,28,13,6,1,28,4,6,1,28,3,1,13,28,1,8,2,6,2,8,2,6,2,8,17,6,41,16,6,8,3,6,2,16,1,6,2,28,15,6,40,8,3,6,5,28,2,1,4,28,1,1,88,}, + {1,211,28,63,16,1,12,2,6,1,28,1,6,1,10,1,28,2,6,3,28,2,7,1,6,1,28,2,6,2,7,2,6,2,16,1,7,1,28,66,6,2,28,2,6,3,28,2,6,2,28,12,1,12,28,1,16,1,8,1,16,1,8,2,6,1,8,19,6,42,16,5,8,1,6,1,8,1,16,1,6,3,8,2,16,2,6,1,28,13,6,37,8,3,6,6,28,2,1,3,28,2,1,88,}, + {1,211,28,62,11,2,10,2,7,1,28,1,6,3,28,2,6,1,28,2,7,1,16,1,28,2,6,1,28,1,6,1,10,1,6,2,7,1,10,1,6,1,28,67,6,6,28,18,1,9,28,2,16,5,6,1,8,5,6,1,8,13,6,42,16,4,8,1,16,2,6,1,8,1,16,1,6,3,8,1,7,1,6,1,16,1,6,1,28,15,6,33,8,4,6,6,28,2,1,4,28,1,1,88,}, + {1,209,28,1,1,2,28,58,29,1,16,1,1,1,11,1,12,1,16,1,10,1,6,2,28,7,6,1,10,1,6,1,28,2,6,6,10,1,6,1,28,71,6,4,28,7,6,1,28,10,1,1,28,1,1,6,28,1,6,1,16,2,8,1,16,2,6,1,8,21,6,41,16,5,8,2,16,2,8,8,7,1,28,17,6,29,8,2,16,2,8,1,6,2,8,1,6,2,28,2,1,1,28,1,1,3,28,1,1,88,}, + {1,212,28,56,10,1,12,1,11,1,1,1,11,1,12,1,9,1,7,1,6,4,28,5,6,1,7,1,6,1,28,4,6,1,10,1,6,1,28,1,7,1,6,1,28,74,6,1,7,1,28,5,6,1,28,13,1,2,28,1,1,4,28,1,6,1,8,1,16,4,8,1,6,4,8,17,6,41,8,1,16,5,8,6,6,1,8,1,16,3,8,1,6,1,28,19,6,20,8,1,6,6,8,3,6,3,8,1,6,2,28,2,1,1,28,1,1,92,}, + {1,213,28,52,10,1,11,1,1,1,11,3,12,2,16,1,10,1,6,5,28,4,6,1,7,2,6,1,28,1,6,2,28,1,7,2,6,3,28,78,6,3,28,2,6,1,28,2,6,1,28,10,1,6,28,1,7,1,8,1,16,5,6,5,8,16,6,42,8,1,16,4,8,4,16,1,8,4,16,3,8,1,28,23,6,22,8,1,16,1,8,3,6,5,28,1,1,2,28,1,1,1,28,1,1,90,}, + {1,213,28,50,29,1,11,3,12,1,16,1,12,1,11,1,12,1,16,1,10,1,7,1,6,4,28,4,6,1,7,2,6,1,28,2,6,5,28,1,6,1,28,80,6,6,28,1,6,1,28,5,6,1,28,5,1,1,28,1,1,3,28,1,16,1,8,2,16,4,8,4,6,1,8,16,6,43,16,5,8,3,16,1,8,7,16,2,28,26,6,17,8,2,16,1,6,1,8,1,6,1,8,1,6,3,28,2,1,1,28,1,1,2,28,1,1,90,}, + {1,214,28,48,10,1,1,1,12,4,11,2,12,1,9,1,16,1,7,1,6,4,28,4,6,1,7,2,6,1,28,2,6,6,28,83,6,7,28,1,6,2,28,10,1,1,28,3,16,1,8,1,6,1,16,2,8,1,16,1,8,21,6,44,16,5,8,11,6,2,28,29,6,13,8,3,6,1,16,1,6,5,28,2,1,1,28,1,1,2,28,1,1,90,}, + {1,214,28,45,6,1,12,1,1,2,11,1,12,2,11,1,12,1,16,1,10,2,16,1,10,1,6,4,28,4,6,1,7,2,6,1,28,2,6,6,7,1,28,84,6,10,28,8,1,3,28,2,16,1,8,1,6,1,8,1,16,1,8,4,6,2,8,17,6,42,8,1,6,1,8,1,16,6,8,8,6,2,16,1,8,1,28,32,6,3,7,1,6,5,8,1,16,1,8,1,6,1,8,1,6,4,28,3,1,1,28,1,1,2,28,1,1,90,}, + {1,215,28,42,6,1,16,1,1,2,11,2,16,1,12,2,16,1,10,1,7,2,10,2,7,1,6,3,28,5,6,1,7,1,6,1,28,2,6,8,28,84,6,1,7,1,6,1,28,1,6,7,28,9,1,1,28,2,16,1,8,2,16,2,8,23,6,42,8,1,6,2,8,1,16,5,8,6,16,3,6,1,8,1,6,2,8,1,16,1,6,2,28,31,6,2,8,2,6,1,8,2,6,6,28,2,1,1,28,1,1,1,28,1,1,2,28,1,1,90,}, + {1,215,28,35,6,1,28,3,6,1,16,1,11,2,12,1,11,2,16,1,12,2,16,1,10,1,6,3,10,1,16,1,10,1,6,1,7,2,6,1,28,4,7,2,6,1,28,2,6,2,28,1,6,5,28,2,6,1,7,1,28,3,6,1,28,1,6,1,28,76,7,1,6,10,28,3,6,1,28,6,6,1,16,1,8,1,16,2,8,1,16,4,8,19,6,43,8,1,6,2,16,8,8,4,16,1,6,1,16,1,8,2,6,2,16,1,8,2,16,1,6,1,28,32,6,5,8,1,6,3,7,1,28,2,1,5,28,2,1,1,28,1,1,88,}, + {1,216,28,32,29,1,6,1,10,1,6,2,12,1,11,1,1,2,12,1,11,2,12,3,16,1,6,4,16,2,7,2,6,1,7,1,6,1,28,4,6,11,28,1,7,1,28,3,16,2,6,1,28,2,6,3,28,1,6,2,28,74,6,11,28,1,6,1,28,7,6,1,16,3,6,1,8,2,6,1,8,3,16,2,8,14,6,5,8,10,6,34,8,1,16,5,8,2,16,3,8,9,16,1,6,1,8,1,6,1,28,34,6,1,8,1,6,3,8,1,6,1,28,2,1,97,}, + {1,216,28,32,29,1,6,1,28,1,29,1,16,1,11,3,12,1,11,3,12,2,10,1,6,4,10,3,7,1,6,2,7,1,6,1,28,2,6,15,28,2,7,1,16,1,6,10,28,74,6,15,28,1,6,1,28,3,8,1,16,2,8,2,16,2,6,1,8,6,16,2,8,11,6,5,8,10,6,31,8,1,6,3,16,5,8,2,16,4,8,8,6,1,16,2,7,1,28,36,7,1,6,1,8,2,28,4,1,96,}, + {1,217,28,34,7,1,11,1,17,2,12,1,16,1,11,2,12,1,16,1,10,1,6,4,7,1,16,1,7,1,6,1,7,1,6,3,28,3,6,14,28,2,6,1,7,1,16,1,6,3,7,1,6,12,28,69,6,15,7,1,6,1,28,1,6,1,16,3,8,2,16,5,8,4,16,2,8,12,6,4,8,10,6,31,8,2,6,3,16,5,8,3,16,6,8,5,16,1,8,3,28,37,6,2,28,4,1,96,}, + {1,217,28,34,12,1,11,1,12,1,11,1,9,1,11,2,12,1,10,2,7,1,6,1,10,1,6,2,10,2,6,6,28,2,6,14,28,2,6,3,16,1,10,1,6,19,28,58,6,2,28,1,6,2,28,2,6,15,10,1,8,1,6,2,16,4,8,1,6,1,8,1,16,6,8,16,6,3,8,9,6,33,8,2,6,2,8,1,16,4,8,3,16,7,8,3,16,1,8,1,6,1,16,2,6,1,28,41,1,97,}, + {1,218,28,32,10,1,11,1,17,1,11,1,12,2,11,1,12,1,16,1,9,1,10,1,6,4,7,3,6,3,7,1,6,1,28,2,6,15,28,1,6,3,10,1,16,2,7,1,6,22,28,51,6,7,7,1,28,2,6,13,7,1,6,1,7,1,16,1,8,1,6,1,16,4,8,1,6,2,8,1,16,6,8,16,6,2,8,8,6,35,8,1,6,3,16,5,8,3,16,7,8,2,6,2,16,2,6,1,8,1,6,1,28,40,1,97,}, + {1,219,28,29,29,1,7,1,17,1,12,1,17,1,12,1,16,1,11,2,12,1,9,1,10,1,6,1,7,2,6,2,10,1,7,1,6,4,7,1,6,1,28,2,6,1,7,1,6,1,28,1,6,10,7,1,6,1,7,1,6,1,28,1,16,2,7,5,6,3,7,2,6,16,28,48,6,1,7,1,6,7,28,2,6,11,7,2,16,1,10,1,7,1,16,9,8,1,6,3,8,2,16,4,8,24,6,32,8,1,6,3,8,1,6,2,8,1,16,5,8,2,16,7,8,2,6,1,8,1,16,1,8,1,6,2,7,1,6,2,28,1,6,1,8,1,7,1,16,1,28,33,1,97,}, + {1,219,28,28,29,1,16,1,11,2,12,3,16,1,11,1,12,1,10,1,7,1,6,5,7,3,6,22,16,1,10,1,6,1,7,1,6,1,10,1,16,1,7,2,10,2,7,4,6,4,7,1,6,15,28,46,6,10,28,1,6,9,7,3,10,1,16,13,8,1,6,1,8,4,16,3,8,24,6,36,8,2,6,2,8,1,16,13,8,1,16,3,8,1,6,2,8,3,16,1,8,4,16,1,6,1,28,32,1,97,}, + {1,220,28,26,10,1,11,1,12,1,11,1,12,4,11,1,12,1,16,1,6,2,7,1,10,1,6,1,28,1,6,1,7,1,6,1,7,2,6,1,7,2,6,17,7,1,6,1,16,1,10,1,6,1,16,2,7,1,10,1,7,1,6,2,7,4,6,3,7,4,6,15,28,46,6,8,28,1,6,2,7,2,6,3,7,3,10,2,16,1,10,1,16,1,12,1,16,7,7,1,6,1,8,1,16,3,8,4,16,3,8,23,6,37,8,2,6,2,8,1,16,6,8,3,16,5,8,1,6,1,16,2,6,1,16,2,6,3,8,1,6,1,16,1,6,1,16,1,28,32,1,97,}, + {1,221,28,22,29,1,6,1,16,1,11,1,12,5,16,1,12,1,11,1,12,1,6,2,7,1,10,1,6,1,28,1,6,1,7,3,6,6,7,1,6,15,7,1,10,1,16,1,7,1,6,1,7,1,16,1,10,1,7,3,10,2,7,16,6,9,28,48,6,6,28,1,6,1,7,7,10,3,16,13,6,2,16,3,8,3,16,1,8,2,16,2,8,24,6,37,8,2,6,2,16,3,8,4,16,4,8,2,16,2,8,1,6,1,8,2,16,3,8,2,16,5,28,9,8,2,28,20,1,97,}, + {1,221,28,19,6,1,7,1,6,2,16,1,12,1,16,2,12,2,11,1,12,1,16,1,12,2,10,1,6,2,7,1,10,1,6,3,7,3,6,14,28,1,6,2,28,1,6,3,7,1,16,2,10,1,7,1,6,1,10,1,16,1,10,1,7,3,10,2,7,11,6,3,7,3,6,8,28,49,6,5,28,1,6,1,7,7,10,2,16,14,8,2,16,3,8,2,16,2,8,2,16,2,8,24,6,37,8,1,6,2,8,1,16,4,8,3,16,5,8,1,16,1,8,4,16,3,8,3,16,1,8,2,16,2,6,1,28,7,6,1,16,1,8,1,28,20,1,97,}, + {1,222,28,17,29,1,28,2,6,1,10,1,12,1,17,1,16,1,12,2,11,1,12,4,16,1,6,3,10,2,6,2,7,3,6,3,7,2,6,6,7,1,6,6,28,1,6,2,7,1,10,1,12,2,10,1,7,2,16,2,10,1,7,3,10,2,7,11,6,4,7,5,6,9,28,47,6,1,7,1,6,4,7,5,10,2,16,16,8,6,16,2,8,4,16,1,8,23,6,39,8,2,6,1,16,3,8,1,16,1,8,3,16,4,8,4,16,4,8,1,16,2,8,3,16,3,28,6,6,1,8,1,6,1,16,1,8,1,28,8,6,1,28,9,1,98,}, + {1,223,28,17,6,1,28,1,16,1,17,1,16,1,12,4,11,1,12,1,16,1,12,2,10,1,6,1,7,2,16,1,10,1,6,2,10,1,6,1,7,1,6,3,7,1,6,6,7,1,6,6,28,2,6,1,7,3,12,2,10,1,7,1,10,1,16,2,7,1,10,1,7,2,10,1,7,23,6,9,28,46,6,3,28,1,6,1,10,1,7,3,10,2,16,18,8,5,16,2,8,2,16,3,8,23,6,39,8,1,6,2,8,1,16,11,8,2,16,6,8,1,16,2,8,1,6,1,8,1,16,1,8,1,6,1,8,1,28,4,6,1,8,1,6,2,16,3,28,6,6,1,8,1,6,2,28,6,1,99,}, + {1,223,28,15,29,1,7,2,8,1,17,1,12,1,9,1,12,2,16,1,12,3,16,1,12,1,10,1,6,1,7,2,10,1,16,1,7,1,6,1,7,1,10,1,6,1,7,1,6,9,7,1,6,6,28,3,6,1,7,2,16,1,12,2,16,1,7,1,16,3,7,1,10,1,7,2,10,1,7,22,6,2,7,7,6,1,28,44,6,1,28,1,6,5,16,1,7,2,10,2,16,20,8,4,16,2,8,2,16,2,8,1,16,1,8,21,6,43,8,1,16,11,8,2,16,8,8,3,16,2,8,1,6,1,8,1,6,1,28,2,6,1,8,2,6,1,16,1,6,1,16,2,8,1,28,5,8,1,6,2,8,1,28,2,1,103,}, + {1,224,28,13,6,2,29,1,28,1,10,1,16,1,9,1,12,6,10,2,16,1,7,1,6,1,7,1,6,1,16,2,6,2,7,4,6,8,7,2,6,5,28,3,6,3,10,1,12,4,10,1,16,2,10,1,7,1,10,1,7,6,10,1,7,25,6,6,28,41,6,7,16,1,8,2,16,28,8,2,16,3,8,21,6,2,8,1,6,40,8,2,6,1,16,10,8,1,16,9,8,2,16,3,8,2,7,1,16,1,6,1,16,2,6,1,8,2,6,1,8,2,6,1,16,1,6,1,28,3,6,3,8,1,28,3,1,103,}, + {1,225,28,11,6,1,28,4,16,1,12,1,16,1,12,3,11,1,12,1,16,1,7,1,6,1,7,5,16,2,6,1,7,5,6,7,7,2,6,6,28,4,6,1,10,1,12,3,11,1,12,1,10,1,16,2,10,3,7,6,10,1,7,16,10,1,7,8,6,6,28,41,6,7,16,23,8,1,16,12,8,21,6,2,8,2,6,39,8,1,6,2,8,1,16,7,8,3,16,8,8,2,16,4,8,1,16,2,8,1,6,1,16,2,8,1,16,1,6,2,16,1,6,3,16,1,6,1,28,2,6,3,28,3,1,1,28,1,1,102,}, + {1,227,28,13,7,1,11,1,16,2,12,1,16,1,11,1,12,2,9,1,6,3,10,2,7,2,12,1,16,1,6,1,7,2,6,1,10,1,7,1,6,6,7,2,6,6,28,2,6,1,28,2,7,1,12,2,16,1,12,1,11,1,12,1,7,1,16,2,10,3,7,6,10,2,7,9,10,2,7,12,6,2,7,3,6,2,28,41,6,7,8,1,16,35,8,21,6,2,8,2,6,44,16,6,8,2,16,8,8,3,16,7,6,1,16,1,8,1,6,1,8,1,6,1,16,1,6,2,16,3,6,1,16,1,6,1,8,1,6,2,28,4,1,2,28,2,1,100,}, + {1,236,28,4,12,1,16,3,12,1,16,1,12,3,9,1,28,2,10,1,16,1,10,1,7,1,16,1,12,1,7,1,6,1,10,1,6,1,10,1,7,1,6,6,7,2,6,6,28,2,6,1,28,1,6,2,10,1,16,1,12,3,11,1,12,1,10,8,7,5,10,9,7,14,6,1,7,5,6,3,28,40,6,1,28,2,6,5,16,21,14,1,16,12,8,3,16,1,8,20,6,46,8,1,16,6,8,1,16,2,8,4,16,1,8,1,6,1,8,1,16,12,8,1,6,2,8,1,16,3,8,1,6,5,28,5,1,104,}, + {1,233,28,1,1,1,28,4,10,1,12,1,9,1,16,2,12,4,16,1,10,1,6,2,16,1,10,2,7,1,16,1,12,1,7,1,6,1,10,1,7,1,10,1,7,1,6,6,7,1,6,6,28,2,6,1,28,1,6,1,7,2,6,2,16,1,12,2,11,1,12,1,16,1,10,7,7,13,10,1,7,20,6,3,28,41,6,5,7,1,16,3,10,1,16,12,8,1,16,6,8,1,16,11,8,23,6,47,8,2,16,4,8,1,16,5,8,4,16,8,8,2,16,5,8,1,16,2,8,1,16,1,8,1,6,5,28,8,1,102,}, + {1,232,28,1,1,2,28,3,6,1,12,1,16,1,9,1,16,1,9,1,12,2,11,1,12,1,16,1,7,1,6,1,9,1,16,1,10,3,12,2,6,2,10,1,7,2,6,3,7,1,6,3,7,1,6,2,7,1,6,3,28,2,6,1,28,1,7,1,16,1,7,1,28,2,10,1,12,4,16,1,10,7,7,13,10,1,7,4,10,1,7,2,10,1,7,7,10,1,7,5,6,3,28,40,6,5,7,2,16,7,11,1,16,4,8,1,16,9,8,4,16,9,8,1,16,1,8,19,6,48,8,1,6,1,8,1,16,8,8,5,16,2,8,8,16,9,8,1,6,5,28,9,1,102,}, + {1,232,28,1,1,1,28,4,10,1,16,1,9,2,16,1,9,1,16,1,12,1,11,1,12,2,10,2,16,1,10,2,16,1,10,1,12,2,6,1,7,1,16,1,10,1,7,1,6,2,7,3,6,11,28,1,6,1,7,1,10,1,7,1,28,2,6,1,12,4,16,1,10,7,7,13,10,1,7,3,10,2,7,2,10,1,7,7,10,1,7,7,6,2,28,38,6,7,28,8,6,1,8,1,16,11,14,2,16,16,8,18,6,48,8,1,6,2,16,6,8,6,16,1,8,5,16,14,6,4,28,11,1,102,}, + {1,232,28,1,1,1,28,3,6,1,16,1,10,2,9,2,16,2,12,4,16,2,10,1,7,1,10,1,16,1,10,1,12,1,16,1,7,2,16,1,10,1,7,1,6,1,7,5,6,11,10,1,7,1,6,2,28,2,6,1,12,5,10,3,16,1,10,4,7,15,10,3,7,10,10,1,7,8,6,1,28,37,6,5,7,2,6,1,28,13,6,1,16,8,14,1,16,16,8,18,6,52,8,1,16,4,8,3,16,17,8,3,6,6,28,3,1,1,28,7,1,103,}, + {1,233,28,4,6,1,9,1,10,2,9,2,16,2,12,3,16,3,10,2,12,2,9,1,12,1,16,1,7,1,10,2,7,1,6,2,7,4,6,8,28,2,6,1,10,1,7,1,6,2,28,3,6,1,12,5,16,1,10,1,16,1,10,5,7,15,10,3,7,3,10,3,7,4,10,1,7,8,6,1,28,31,6,1,28,5,6,8,7,1,8,1,6,1,28,12,16,1,14,1,16,5,14,1,16,16,8,18,6,49,8,1,6,3,16,18,8,2,6,12,28,4,1,2,28,4,1,105,}, + {1,233,28,4,6,1,9,1,10,2,9,2,12,1,9,1,12,4,16,2,10,1,9,1,12,1,9,1,12,2,10,1,7,1,10,2,7,1,6,1,7,5,6,11,10,1,6,2,28,3,6,1,7,1,16,1,12,1,16,1,12,1,11,1,16,1,10,1,16,1,10,6,7,14,10,3,7,3,10,3,7,3,10,3,7,7,10,1,6,1,28,30,6,4,28,3,6,6,8,1,16,1,8,2,6,2,28,11,6,1,16,1,14,1,16,2,14,2,16,16,8,19,6,52,16,9,8,6,6,15,28,3,1,2,28,1,1,2,28,5,1,104,}, + {1,234,28,3,7,1,10,5,12,1,10,1,16,2,12,2,16,2,10,1,16,2,10,1,12,2,10,1,7,1,10,2,6,2,7,5,6,8,7,3,6,3,28,3,10,1,16,1,10,3,12,1,11,1,12,1,10,1,16,1,10,6,7,13,10,4,7,2,10,4,7,3,10,3,7,2,10,2,7,2,16,2,6,1,28,30,6,3,7,1,6,1,28,2,6,5,7,1,16,4,8,1,6,2,28,11,6,1,14,2,16,2,14,1,16,16,8,21,6,49,8,3,16,1,6,4,8,2,6,20,28,5,1,3,28,2,1,1,28,2,1,105,}, + {1,234,28,2,6,1,7,2,10,3,12,1,10,1,7,1,16,1,12,2,16,2,12,1,10,2,12,1,9,1,12,2,7,1,10,1,16,1,7,1,6,2,7,4,6,3,7,2,6,3,7,1,10,1,7,1,6,3,28,2,6,1,7,1,10,2,16,1,6,2,12,2,11,1,16,1,7,1,16,1,10,6,7,4,10,1,7,5,10,13,7,2,10,8,16,1,12,1,16,1,7,1,28,30,6,13,8,1,16,3,8,3,6,4,28,8,6,1,16,3,14,2,16,8,8,1,16,6,8,1,16,1,8,14,6,2,8,1,6,47,8,1,6,3,16,5,6,5,8,1,6,1,8,1,6,15,28,4,1,116,}, + {1,229,28,1,1,3,28,3,6,2,10,2,7,1,16,2,6,1,10,1,12,4,9,3,12,2,10,1,12,2,7,1,9,1,16,1,6,2,7,4,6,3,7,3,6,3,7,2,6,4,28,1,6,1,7,1,10,1,7,3,28,1,7,1,12,4,10,1,16,1,10,6,7,10,10,2,7,1,10,10,7,2,10,1,7,1,10,5,16,1,12,2,16,1,7,1,6,1,28,29,6,13,16,5,8,3,6,5,28,2,6,3,28,2,6,1,8,1,14,2,16,19,8,13,6,2,8,1,6,49,8,1,16,5,6,2,8,2,6,6,8,1,6,11,28,5,1,117,}, + {1,229,28,1,1,3,28,3,6,2,10,2,7,1,12,1,7,1,6,1,12,1,11,1,16,1,12,7,9,1,12,1,16,1,10,1,16,1,10,1,6,1,7,2,10,2,7,1,6,2,7,3,6,3,7,1,6,8,10,1,7,2,6,3,10,1,12,4,16,2,10,7,7,9,10,1,7,3,10,9,7,2,10,1,7,1,10,4,16,1,12,2,16,2,10,1,6,2,28,26,6,1,28,3,6,2,7,1,6,8,8,1,16,6,8,2,6,1,8,1,6,10,28,1,6,1,16,1,14,2,16,16,8,14,6,47,8,1,6,3,8,1,16,4,8,2,16,4,6,1,8,2,6,9,28,1,6,3,28,8,1,116,}, + {1,229,28,1,1,3,28,3,6,2,10,4,6,1,7,1,11,1,12,1,16,1,11,1,12,2,9,2,12,3,16,2,10,1,16,1,10,1,6,1,7,1,10,2,7,1,6,3,7,2,6,4,7,1,6,3,7,1,6,3,7,2,6,6,16,1,12,1,11,1,12,1,9,1,16,1,10,7,7,9,10,1,7,3,10,4,16,1,10,11,16,1,12,3,10,3,7,1,6,1,28,27,6,1,28,3,6,1,10,1,6,1,28,1,6,6,7,1,16,7,8,2,6,14,16,1,14,2,16,13,8,1,16,1,8,14,6,46,8,1,6,3,8,1,16,4,8,1,6,2,8,1,6,1,8,1,16,3,8,1,6,2,8,1,6,8,28,10,1,116,}, + {1,233,28,2,29,1,7,1,6,1,7,2,10,1,7,2,12,1,11,1,12,2,11,2,12,1,27,2,9,1,12,3,9,1,10,1,16,1,7,1,6,1,10,1,7,2,6,3,7,3,6,7,7,2,6,1,7,3,6,5,28,1,6,1,7,1,12,1,11,1,12,1,16,2,10,8,7,1,10,3,7,3,10,9,16,1,10,10,16,1,12,3,10,1,7,1,10,2,7,1,6,2,28,31,7,1,6,1,28,2,6,6,16,8,8,2,6,2,8,2,6,11,16,14,8,16,6,49,8,1,16,4,8,2,6,9,8,1,6,6,7,1,6,1,28,8,1,6,28,2,1,112,}, + {1,232,28,3,6,2,7,1,10,1,7,3,16,1,12,3,11,1,12,1,27,2,28,4,10,1,12,1,9,1,10,2,7,2,10,1,7,2,6,2,7,4,6,7,7,2,6,3,7,1,6,4,28,2,6,1,10,1,12,4,16,2,10,12,7,1,10,10,16,2,10,5,16,4,12,3,16,1,7,2,10,2,7,1,6,3,28,2,6,1,28,27,6,10,16,10,8,1,6,15,16,13,8,16,6,48,16,3,8,1,6,2,8,4,6,1,8,2,6,10,28,8,1,123,}, + {1,232,28,3,6,2,7,3,6,1,7,1,16,1,17,1,11,1,17,1,11,1,9,1,26,1,27,1,26,2,28,2,10,1,11,1,9,1,10,2,7,2,10,1,6,4,7,4,6,2,7,1,6,3,7,4,6,2,7,4,6,1,28,1,6,1,10,1,7,1,12,4,16,2,10,22,16,3,10,2,16,1,10,2,16,4,12,2,16,1,10,5,6,4,28,2,6,1,28,28,6,3,7,3,6,3,16,11,8,1,6,5,8,1,6,6,8,1,6,2,16,11,8,16,6,48,8,1,16,2,8,1,6,3,8,4,6,1,16,2,8,1,7,1,6,2,28,11,1,126,}, + {1,232,28,2,6,3,10,1,7,1,10,1,6,1,7,2,11,2,12,2,9,1,26,1,27,1,26,1,29,1,28,2,26,1,9,2,10,2,7,1,10,2,6,3,7,8,6,2,7,2,6,2,7,2,6,1,7,4,6,4,28,1,16,1,11,2,12,1,16,3,10,20,16,4,10,2,16,6,12,3,10,1,7,1,16,1,10,1,16,1,10,1,7,1,6,4,28,1,6,1,28,28,6,5,7,1,6,2,8,1,16,9,8,1,16,2,8,3,6,13,16,10,8,16,6,47,16,4,6,3,8,4,6,1,16,2,6,1,28,10,1,131,}, + {1,231,28,4,6,1,7,2,6,1,10,1,7,1,10,2,11,2,10,1,26,2,9,3,26,1,29,1,28,2,26,1,12,1,16,1,7,2,16,1,10,1,6,2,7,7,6,3,7,4,6,2,7,6,6,3,28,2,16,1,11,2,12,1,16,2,10,16,16,3,10,2,16,11,12,3,10,5,16,1,10,1,6,7,28,28,6,9,8,1,16,1,14,1,16,3,8,1,16,1,8,1,16,4,8,1,6,15,16,10,8,16,6,44,8,1,16,4,8,1,16,1,6,2,8,7,28,5,1,137,}, + {1,231,28,4,6,2,7,2,10,1,6,1,10,1,12,3,27,2,9,1,15,3,9,1,26,1,28,2,26,1,12,1,9,1,7,2,10,1,7,1,6,2,7,1,10,1,7,5,6,2,7,4,6,3,7,6,6,2,28,3,10,1,11,2,12,2,16,1,10,16,16,3,10,1,16,3,12,1,16,8,12,2,16,1,10,5,16,1,10,1,7,1,6,6,28,28,6,9,8,1,16,1,14,1,16,3,8,1,16,1,8,1,16,4,8,2,6,1,8,1,6,13,16,8,8,2,16,1,8,14,6,44,8,1,16,3,8,3,6,1,8,1,6,4,8,1,6,1,16,1,28,4,1,138,}, + {1,229,28,1,1,1,28,4,6,1,7,3,16,1,7,1,10,1,12,2,27,1,26,1,9,1,11,1,15,4,26,1,28,2,26,1,12,1,10,1,7,1,10,1,7,1,6,2,10,3,7,4,6,2,7,4,6,2,7,8,6,2,28,3,7,1,12,1,11,1,12,2,16,1,10,15,16,8,12,1,16,7,12,2,16,1,10,1,7,1,10,6,7,1,6,6,28,28,6,8,8,1,16,2,14,1,16,5,8,1,16,5,8,3,6,9,8,1,6,4,16,7,8,2,16,1,8,1,16,1,8,12,6,42,8,2,16,2,8,6,6,3,8,1,6,1,8,1,6,1,7,1,28,4,1,1,28,1,1,4,28,6,1,126,}, + {1,231,28,4,6,2,7,1,10,1,16,1,10,2,12,1,10,1,26,1,27,1,9,1,15,1,11,1,15,2,9,1,26,1,28,3,10,1,7,1,10,2,7,1,6,1,7,8,6,2,7,4,6,2,7,8,6,2,28,1,6,1,28,1,6,1,12,1,11,1,12,2,16,2,10,12,16,8,12,3,16,6,12,2,16,1,10,1,7,2,10,4,7,3,6,6,28,6,6,1,28,20,6,9,8,1,16,1,8,1,16,1,14,1,16,10,8,2,16,1,8,1,6,8,8,3,6,3,16,4,8,1,16,3,8,1,16,1,8,13,6,42,16,4,8,5,16,1,6,2,16,1,8,1,6,2,16,1,28,5,1,6,28,5,1,127,}, + {1,231,28,4,6,2,7,1,10,1,16,1,10,2,9,1,27,1,26,1,9,1,15,2,11,1,9,3,26,1,28,3,27,1,7,1,10,2,6,1,7,1,10,1,7,6,6,3,7,14,6,6,12,1,11,1,12,2,16,2,10,10,16,9,12,3,16,6,12,3,16,1,10,1,7,1,10,5,7,3,6,6,28,3,6,1,28,2,6,1,28,19,6,10,8,1,16,1,8,1,16,1,14,1,16,1,8,1,16,9,8,1,16,1,6,10,8,1,16,1,8,1,6,3,16,7,8,1,16,1,8,11,6,42,8,1,16,3,8,8,6,1,8,2,6,4,28,4,1,1,28,1,1,137,}, + {1,231,28,4,6,2,10,2,9,1,10,1,9,2,29,1,26,1,9,1,11,2,15,1,9,1,25,2,26,1,29,3,10,3,7,1,6,1,7,1,10,1,7,20,6,2,7,1,6,6,10,1,12,1,16,4,10,9,16,10,12,3,16,5,12,3,16,1,10,8,7,1,6,8,28,2,6,2,28,2,6,1,28,19,6,2,7,1,6,7,8,2,16,2,14,1,16,11,8,1,16,1,6,1,8,3,6,8,8,2,6,3,16,4,8,2,16,1,8,11,6,43,16,3,8,6,6,2,8,1,6,1,16,1,6,2,8,1,7,1,28,4,1,2,28,1,1,137,}, + {1,231,28,4,7,2,10,1,16,1,9,2,12,1,27,1,29,1,26,1,9,1,11,1,15,1,9,3,25,1,26,1,28,3,9,2,10,1,6,1,7,1,10,3,7,23,6,1,7,1,6,1,7,1,6,1,7,1,12,1,16,1,10,1,16,2,10,7,16,12,12,5,16,1,12,4,16,2,10,8,7,1,6,8,28,1,6,6,28,20,6,8,8,3,16,1,8,1,16,12,8,1,16,1,8,1,16,3,6,9,8,2,6,3,8,1,16,2,8,1,6,1,8,12,6,41,8,1,16,3,8,7,6,4,16,1,6,2,8,1,28,2,1,2,28,2,1,2,28,4,1,133,}, + {1,230,28,5,7,2,10,1,16,1,9,1,12,2,26,1,28,1,27,1,9,1,15,1,9,1,29,1,25,1,9,1,25,1,26,1,28,2,29,1,9,2,7,2,10,4,7,6,10,2,7,2,10,1,7,4,10,1,7,1,10,1,7,6,6,2,7,1,6,2,12,1,16,1,10,1,16,2,10,6,16,10,12,2,16,2,12,8,16,2,10,9,7,1,6,8,28,1,6,6,28,20,6,8,8,2,16,2,8,1,16,4,8,1,16,6,8,5,16,1,8,1,6,3,8,1,6,6,8,3,6,2,16,3,8,13,6,41,16,3,8,1,6,1,8,4,6,3,8,2,6,1,8,1,6,3,28,3,1,2,28,2,1,1,28,4,1,133,}, + {1,231,28,4,6,1,10,2,7,1,12,3,29,2,26,1,15,2,26,1,28,1,27,1,15,2,29,1,28,2,26,1,12,1,10,1,7,1,10,5,7,14,10,2,7,8,6,4,7,1,12,1,16,1,7,1,16,4,10,2,16,2,10,1,16,12,12,9,16,2,10,8,7,1,16,1,7,1,6,8,28,1,6,5,28,12,6,1,28,3,6,2,28,1,6,6,7,1,6,2,8,1,16,1,8,1,16,1,8,1,16,1,14,1,8,1,16,2,8,1,16,6,8,1,16,1,8,1,6,2,16,1,8,1,6,2,8,2,6,11,16,2,8,1,6,1,8,3,6,1,8,1,16,1,8,1,6,2,8,1,16,1,8,1,6,38,8,1,16,3,8,1,6,2,8,5,6,5,8,1,6,2,28,2,1,144,}, + {1,231,28,4,6,1,7,1,12,1,9,1,7,1,12,1,10,1,28,1,26,2,9,1,27,1,28,2,27,1,15,1,25,1,29,2,28,2,9,1,10,1,7,1,10,3,7,26,6,5,12,1,16,1,7,1,16,14,12,2,16,2,12,12,16,1,10,9,7,1,10,1,7,1,6,13,28,13,6,3,28,1,6,2,28,1,6,1,7,1,6,4,7,2,8,2,16,3,8,1,16,5,8,1,16,6,8,1,16,1,8,1,6,2,8,1,6,5,16,2,6,10,16,2,8,8,6,6,8,1,6,35,8,1,16,3,8,2,6,1,8,7,6,2,16,1,6,2,16,1,28,3,1,144,}, + {1,231,28,4,7,1,6,1,16,1,12,1,7,1,12,1,29,1,28,1,26,2,9,1,26,1,28,1,26,1,9,1,11,1,26,1,28,1,26,1,29,1,10,2,7,1,10,2,9,1,10,1,7,3,10,4,7,3,10,1,7,16,6,1,28,2,6,1,12,1,16,1,7,1,10,1,16,6,12,1,16,5,12,16,16,1,10,1,7,1,10,6,16,2,10,1,7,2,6,13,28,2,6,2,28,10,6,4,28,1,6,2,7,1,6,6,8,2,16,3,8,1,16,7,8,2,16,5,8,1,6,8,16,2,8,1,6,9,8,1,16,2,8,3,16,1,8,1,6,2,8,1,6,40,8,2,16,2,8,11,6,2,8,1,6,2,28,3,1,145,}, + {1,231,28,4,10,1,6,2,10,1,12,2,28,2,26,2,9,1,26,2,25,1,15,2,26,1,28,1,29,2,9,1,10,1,7,1,10,11,7,7,10,7,7,5,10,1,6,4,16,1,10,4,16,3,12,5,16,2,12,17,16,1,10,1,7,1,10,9,7,3,6,11,28,1,6,2,28,13,6,2,28,2,6,8,7,1,8,4,16,1,8,2,16,1,14,1,16,1,8,1,16,2,8,2,16,6,8,2,6,8,16,2,6,9,8,1,16,2,8,2,16,1,8,2,6,1,8,2,6,7,8,1,6,31,8,1,16,3,8,4,6,10,16,1,6,1,28,3,1,145,}, + {1,231,28,4,10,1,7,1,6,2,12,2,28,3,26,1,9,1,25,1,26,1,15,2,27,1,26,2,28,1,6,1,7,1,10,11,7,7,10,12,7,4,6,3,16,1,10,3,16,2,12,25,16,1,10,3,7,1,10,1,16,2,10,1,7,2,10,2,7,1,10,1,7,1,6,11,28,1,6,2,28,9,6,2,28,2,6,2,28,1,6,10,8,4,16,1,8,2,16,1,14,1,16,1,8,1,16,1,8,4,16,3,8,2,16,1,8,2,6,8,16,2,6,9,16,2,8,1,6,1,8,1,16,2,8,1,6,4,8,1,6,35,8,1,16,1,8,7,6,11,28,5,1,144,}, + {1,231,28,2,6,1,28,1,6,1,10,1,7,1,6,1,9,2,28,3,26,1,9,1,25,1,26,1,9,2,26,1,29,1,28,2,27,1,9,1,10,4,7,3,10,1,7,8,10,6,7,2,10,6,7,5,10,1,7,1,16,1,7,1,10,1,16,5,12,23,16,1,10,2,16,1,7,1,10,1,16,2,10,1,7,5,10,1,7,1,6,11,28,12,6,2,28,1,6,2,28,1,6,1,7,1,6,1,7,1,6,7,8,2,16,3,8,2,16,5,8,1,16,1,8,3,16,2,8,1,6,1,8,2,6,10,16,2,6,5,8,1,6,3,16,1,8,1,6,2,8,1,16,1,8,1,6,4,8,2,6,33,8,1,16,1,8,2,6,2,8,4,6,8,8,2,28,6,1,144,}, + {1,231,28,2,6,1,28,1,6,1,10,2,6,1,10,2,28,1,29,1,26,1,9,2,27,1,26,4,28,3,10,1,12,1,10,4,7,10,10,8,7,2,10,6,7,5,10,1,7,1,10,1,7,1,10,1,16,6,12,2,11,1,17,1,12,17,16,1,10,11,7,4,6,12,28,13,6,4,28,1,6,1,7,1,6,1,7,2,6,6,8,3,16,3,8,2,16,6,8,6,6,13,8,1,16,2,6,9,8,1,6,3,8,1,16,1,8,1,6,4,8,2,6,32,8,1,16,1,8,2,6,2,8,6,6,7,28,6,1,145,}, + {1,231,28,4,6,1,10,2,6,1,9,2,29,2,26,1,15,2,25,1,26,6,29,1,10,1,7,7,10,1,7,1,10,1,7,4,10,3,7,3,10,5,7,3,10,3,7,1,10,2,7,2,10,1,7,1,16,1,8,1,16,6,17,1,11,10,12,10,16,1,10,5,16,1,10,1,7,1,10,1,16,2,10,1,7,3,6,14,28,6,6,4,28,2,6,2,7,1,28,1,6,1,7,1,6,1,7,2,6,2,16,1,6,4,8,4,16,2,6,1,16,4,8,1,16,3,6,2,8,2,6,10,28,2,6,3,8,1,16,2,6,5,8,1,6,2,8,2,6,3,16,3,6,4,8,2,6,29,8,2,16,2,8,3,6,2,8,6,6,5,28,5,1,147,}, + {1,230,28,3,29,1,6,2,10,3,9,1,12,1,29,1,28,1,26,1,15,1,11,1,26,7,9,2,6,1,7,1,10,10,7,9,10,4,7,1,10,3,7,4,8,2,16,12,11,15,17,2,11,1,12,2,16,1,10,3,7,2,10,4,7,2,10,3,7,1,6,5,28,1,6,3,28,1,6,3,28,7,6,5,28,1,6,1,10,1,6,1,7,1,6,3,7,1,6,8,8,4,16,3,8,1,16,3,8,1,16,2,8,1,6,3,8,2,6,9,28,2,6,4,16,3,6,9,8,1,6,3,16,2,8,1,6,4,8,2,6,27,8,1,16,2,8,1,6,1,16,1,8,2,6,3,8,2,6,1,16,1,8,1,6,2,8,1,16,1,28,4,1,149,}, + {1,230,28,5,6,1,7,1,10,1,9,1,12,1,9,1,26,1,29,1,26,1,9,1,15,1,27,1,26,3,28,1,26,1,9,1,10,2,7,2,10,18,7,5,10,2,7,4,10,1,16,15,17,1,16,1,11,8,1,1,11,7,12,1,16,1,10,4,7,2,10,6,7,3,6,13,28,3,6,2,28,2,6,2,28,1,6,3,28,1,6,1,7,1,6,1,7,2,6,5,8,1,6,6,8,5,16,1,8,1,16,3,8,1,16,2,8,1,6,4,8,1,6,16,16,2,6,9,8,1,6,5,8,2,6,5,8,2,6,25,8,1,16,1,8,2,6,1,8,3,6,2,8,3,16,1,6,1,8,1,16,1,6,3,28,5,1,148,}, + {1,231,28,5,6,1,10,2,9,1,10,1,28,2,26,1,29,1,26,5,28,2,9,1,10,19,7,2,10,6,8,1,10,1,16,16,8,1,16,4,14,2,11,7,1,2,11,6,16,1,10,5,7,2,16,1,10,3,16,2,10,1,7,1,6,14,28,5,6,8,28,2,6,9,16,1,6,7,8,7,16,5,8,1,6,16,28,1,6,4,16,3,8,1,6,13,8,2,6,6,8,2,6,23,16,2,8,3,6,1,8,7,6,2,8,2,6,1,8,1,6,1,28,7,1,147,}, + {1,232,28,4,6,1,7,1,10,2,9,1,28,2,26,2,29,1,26,4,28,2,12,1,9,1,10,24,8,2,16,7,8,2,16,14,14,3,11,13,16,2,10,5,7,2,16,1,10,6,7,1,6,11,28,1,6,2,28,5,6,8,28,2,6,2,28,1,6,5,7,1,6,8,8,7,16,5,8,1,6,16,28,1,6,5,16,2,8,1,6,9,8,4,6,10,8,1,6,21,8,1,16,2,6,1,8,2,6,1,8,7,6,2,16,1,6,1,7,2,28,3,1,2,28,3,1,147,}, + {1,232,28,2,6,1,28,1,6,2,7,1,9,2,10,1,28,1,29,1,27,1,26,1,28,1,26,1,29,1,27,1,9,1,16,2,10,1,7,1,10,21,16,8,8,4,16,16,14,2,11,12,17,1,16,1,10,7,7,1,10,5,7,3,6,10,28,2,6,2,28,3,6,1,28,3,6,1,7,1,6,4,28,3,6,1,28,2,6,3,16,1,6,10,8,6,16,5,8,1,6,22,8,1,16,1,8,1,6,1,8,1,6,4,8,1,6,3,8,1,16,2,6,2,8,2,6,27,8,1,16,2,8,1,6,1,8,2,6,1,8,3,6,2,8,3,6,1,8,1,6,1,8,1,28,3,1,153,}, + {1,232,28,4,6,2,7,1,9,1,10,1,9,1,29,1,28,1,29,2,28,2,29,1,10,1,12,2,10,20,16,10,8,3,16,20,14,1,11,12,16,1,10,8,7,2,10,1,16,2,10,1,7,1,6,12,28,2,6,2,28,3,6,2,28,3,6,1,7,1,6,3,28,3,6,3,7,1,6,2,16,1,6,1,28,1,6,9,8,1,6,1,8,3,16,3,8,1,16,1,8,1,6,15,28,1,6,8,16,2,6,5,8,2,6,4,8,2,16,2,8,1,6,27,16,3,8,4,6,1,8,3,6,3,8,3,6,1,8,1,28,4,1,153,}, + {1,232,28,4,6,3,9,1,16,1,9,1,7,1,26,1,28,1,29,1,27,1,29,1,27,1,9,2,10,3,16,1,10,12,9,1,16,6,17,1,16,3,8,2,7,1,8,1,16,18,14,2,16,4,14,1,11,10,16,2,10,9,7,2,10,1,16,1,10,1,7,1,6,16,28,9,6,12,7,1,6,14,8,2,6,1,16,3,8,1,16,1,8,2,6,14,28,1,6,5,8,1,6,2,16,2,6,12,8,1,16,2,8,1,6,25,8,1,16,2,8,1,6,1,8,12,6,2,7,1,28,6,1,152,}, + {1,231,28,1,1,1,28,1,29,1,6,4,7,2,9,1,10,2,27,2,9,2,10,1,12,1,10,2,9,1,6,1,10,1,7,1,10,5,9,1,16,2,9,1,16,5,17,1,11,1,16,3,8,1,7,1,8,2,16,22,14,2,16,5,11,9,16,1,10,10,7,3,10,3,7,2,6,14,28,4,6,2,28,4,6,1,7,1,6,1,7,1,10,1,6,3,7,1,6,1,7,1,8,1,6,1,28,1,6,13,8,1,6,1,8,1,16,2,8,4,6,14,28,2,6,8,8,1,16,1,8,1,6,11,8,3,16,1,8,1,6,23,16,2,8,1,6,2,8,3,6,1,8,1,6,1,8,5,6,2,8,1,6,1,28,3,1,1,28,1,1,153,}, + {1,233,28,2,6,1,28,1,6,2,7,3,9,1,16,1,10,3,16,1,10,9,9,1,16,8,11,2,17,1,16,3,8,2,16,28,14,2,16,4,14,1,11,7,16,2,10,2,7,1,10,4,7,1,10,3,7,3,10,2,7,2,6,10,28,1,6,3,28,3,6,5,28,3,6,1,10,1,7,1,6,4,7,1,6,1,16,1,7,1,6,3,8,1,6,11,8,3,16,3,8,4,6,23,16,2,6,12,8,2,6,1,8,1,16,1,8,1,6,2,8,1,6,18,16,3,8,7,6,2,16,1,8,1,6,4,8,1,6,1,28,3,1,2,28,1,1,153,}, + {1,233,28,2,6,5,10,1,7,2,10,3,9,2,10,9,9,1,16,5,11,2,16,3,8,4,16,31,14,2,16,4,14,1,11,5,17,1,16,2,10,6,7,3,10,2,7,2,10,3,7,1,6,11,28,1,6,2,28,7,6,2,28,3,6,1,7,1,6,5,7,1,6,1,16,1,6,16,8,3,16,3,8,3,6,24,8,1,16,1,8,2,6,13,8,1,16,1,6,1,8,1,6,4,8,1,6,14,8,1,16,2,8,10,6,2,8,1,6,2,8,1,6,1,28,4,1,2,28,1,1,153,}, + {1,233,28,2,6,5,7,2,8,1,10,1,16,4,10,2,16,4,10,1,8,1,16,3,11,1,17,1,16,4,8,4,16,35,14,3,16,3,14,1,11,4,16,2,10,16,7,1,6,12,28,1,6,2,28,7,6,6,7,1,6,6,16,1,7,1,6,17,8,3,16,3,8,1,6,26,8,1,16,1,8,1,6,14,8,1,6,6,8,1,6,13,8,1,16,2,8,1,6,1,8,9,6,4,8,1,6,1,28,5,1,1,28,2,1,153,}, + {1,233,28,2,6,6,9,1,12,2,16,3,9,1,16,2,9,2,16,2,17,1,11,3,16,4,8,3,16,41,14,5,11,4,16,1,10,9,16,2,10,1,7,1,10,2,7,3,6,12,28,1,6,2,28,1,6,1,28,4,6,4,7,1,16,2,10,1,7,1,6,4,7,1,16,1,6,1,28,1,6,16,8,2,6,1,16,3,8,1,6,23,8,1,6,2,8,1,16,1,8,1,6,15,8,1,6,1,28,3,6,15,16,3,8,1,6,1,8,8,6,1,16,1,6,2,8,1,7,1,28,5,1,157,}, + {1,233,28,2,6,3,7,1,8,1,16,1,12,1,11,1,12,1,16,2,9,2,16,4,11,4,16,4,8,1,16,45,14,5,11,3,16,1,10,9,16,4,7,1,10,2,7,1,6,14,28,4,6,2,28,1,6,5,7,2,16,1,7,1,6,6,8,1,16,1,6,1,28,1,6,3,8,1,6,13,8,1,6,1,16,3,8,1,6,23,8,1,6,3,16,1,8,1,6,14,8,2,6,1,28,4,6,13,8,1,16,2,8,1,6,2,8,9,6,2,8,2,28,5,1,5,28,1,1,152,}, + {1,233,28,2,6,2,7,1,9,1,16,1,11,2,16,8,11,4,16,1,8,2,16,7,8,1,16,42,14,4,11,2,16,2,10,5,16,1,10,7,7,1,10,1,7,1,6,2,7,2,6,11,28,4,6,4,7,2,10,3,7,2,6,7,8,2,6,5,8,1,6,15,16,4,6,23,8,1,6,3,8,3,6,13,8,2,28,7,6,10,8,1,16,2,8,1,6,1,8,11,6,1,8,1,6,1,28,3,1,5,28,1,1,2,28,1,1,152,}, + {1,233,28,2,7,2,16,2,17,1,11,1,17,1,16,4,11,4,16,21,8,1,16,35,14,4,11,1,16,2,10,14,7,1,10,1,7,1,6,2,7,2,6,11,28,1,6,2,28,1,6,4,7,2,10,1,16,1,10,1,7,2,6,6,7,1,16,1,6,21,8,2,16,3,6,28,8,2,6,15,28,9,6,8,16,2,8,1,6,1,8,2,6,1,8,10,6,1,28,4,1,1,28,1,1,2,28,2,1,155,}, + {1,233,28,2,8,1,16,2,11,3,16,2,17,2,16,59,8,1,16,2,14,4,16,2,10,4,7,2,10,9,7,1,10,2,7,4,6,1,7,1,6,9,28,1,6,8,7,1,10,1,16,1,10,1,6,1,7,2,6,4,7,1,8,1,16,1,6,5,8,1,6,9,8,1,6,5,8,1,6,1,16,3,6,2,8,2,6,12,28,2,6,7,8,1,6,2,8,2,6,14,28,12,6,5,8,1,16,2,6,2,8,1,16,1,6,1,8,6,6,3,8,1,28,4,1,1,28,1,1,6,28,1,1,153,}, + {1,232,28,3,16,1,17,1,11,1,16,5,8,2,16,57,14,3,16,3,14,2,16,4,10,3,7,1,10,3,7,1,10,2,16,1,10,3,7,2,6,2,7,2,6,9,28,2,6,9,7,1,6,3,7,1,10,1,7,2,6,4,7,1,16,2,6,5,8,1,6,16,8,1,16,2,8,2,6,2,8,1,6,21,8,1,6,3,16,1,6,14,28,14,6,1,8,1,16,1,8,1,16,2,6,3,16,1,8,1,16,1,6,1,8,3,16,2,6,1,16,1,28,4,1,163,}, + {1,232,28,3,11,2,16,1,8,1,6,1,8,2,16,61,14,1,16,10,10,2,7,1,10,11,7,2,6,2,7,2,6,9,28,2,6,15,7,3,6,3,7,1,16,2,6,5,8,1,6,17,16,2,8,2,6,3,8,1,6,20,8,1,6,3,16,1,8,1,6,12,28,17,8,1,16,1,6,2,8,1,16,1,6,2,8,1,6,1,8,1,6,1,8,2,6,2,8,1,28,5,1,2,28,1,1,160,}, + {1,232,28,2,6,1,17,1,7,1,6,1,7,1,8,1,16,65,14,2,16,1,8,1,16,3,8,1,10,1,16,1,10,1,7,1,10,4,16,2,10,2,16,1,10,1,7,1,6,1,7,1,6,13,28,6,6,2,28,1,6,5,28,3,6,2,7,1,6,3,8,1,16,2,6,5,8,1,6,17,16,3,8,1,6,3,8,2,6,20,8,1,6,2,8,2,6,10,8,1,28,19,6,2,8,3,16,2,8,3,16,1,8,1,6,1,8,2,6,1,28,2,1,1,28,2,1,2,28,1,1,160,}, + {1,224,28,1,1,6,28,4,6,1,28,1,6,1,16,1,8,1,16,66,14,1,16,2,8,1,16,1,7,1,6,1,10,1,16,2,10,5,16,3,10,2,7,1,6,2,7,2,6,8,28,3,6,18,28,1,6,4,8,1,16,3,6,24,16,2,8,1,6,3,8,1,16,1,6,20,8,1,6,3,8,2,6,8,8,1,6,1,28,21,8,4,16,1,8,1,16,1,6,1,8,2,6,1,16,1,6,1,28,3,1,4,28,2,1,160,}, + {1,224,28,1,1,3,28,6,7,1,6,3,8,2,16,64,14,1,16,2,14,1,17,1,8,2,6,1,28,1,7,1,16,2,10,7,16,2,10,1,6,2,7,3,6,8,28,3,6,17,7,1,6,3,7,1,8,1,16,3,8,1,6,24,16,2,6,5,16,1,6,20,8,1,6,3,8,2,6,9,28,23,13,1,16,2,8,2,16,1,6,2,8,2,6,1,28,5,1,3,28,2,1,160,}, + {1,224,28,1,1,2,28,7,8,1,16,2,8,1,6,1,16,10,8,4,16,51,14,1,16,6,7,1,28,1,6,1,10,1,16,2,10,4,7,2,16,2,7,1,6,2,7,2,6,9,28,3,6,3,28,1,6,16,7,2,8,1,16,3,8,1,6,24,8,1,16,1,8,1,6,2,8,1,6,1,16,1,8,1,6,19,8,3,6,10,16,1,28,25,6,1,16,2,8,1,6,1,16,1,8,2,16,1,28,4,1,2,28,1,1,3,28,1,1,160,}, + {1,224,28,11,6,1,16,3,8,1,16,8,8,6,16,55,8,1,17,1,10,1,28,2,6,1,10,1,16,1,10,4,7,2,10,2,7,1,6,3,7,1,6,9,28,3,6,10,7,1,6,10,7,1,8,1,16,3,6,5,8,1,6,16,8,1,6,3,16,2,6,4,8,1,16,2,6,20,8,1,6,11,28,26,6,1,8,3,16,1,8,1,6,1,28,4,1,7,28,1,1,160,}, + {1,225,28,10,6,1,16,12,8,1,16,4,8,1,16,53,9,1,16,1,6,1,16,1,10,1,28,3,6,1,16,2,10,1,7,1,16,2,10,1,7,2,10,1,7,1,6,5,7,1,6,2,28,4,6,13,10,1,6,8,7,1,8,3,16,3,6,5,8,1,6,15,16,2,6,3,16,2,6,5,16,2,6,13,8,1,6,10,8,1,6,5,8,1,28,29,6,1,16,1,7,1,8,1,28,4,1,2,28,2,1,2,28,2,1,161,}, + {1,217,28,3,1,3,28,7,6,4,28,1,6,1,8,1,16,2,14,1,16,65,6,1,28,1,7,1,16,1,6,1,7,2,28,3,6,1,10,2,16,1,7,2,10,1,16,1,7,3,6,6,10,1,6,3,28,3,6,1,28,2,6,6,28,2,6,1,7,1,10,1,7,1,6,1,28,1,6,5,7,1,8,2,16,4,6,26,16,2,6,6,16,2,6,2,8,1,6,20,8,1,6,3,8,1,16,1,28,31,29,1,8,1,28,4,1,170,}, + {1,216,28,1,1,4,28,1,1,1,28,7,6,6,7,1,16,66,8,1,28,4,9,1,10,1,7,1,6,6,16,1,10,1,7,7,6,7,28,1,6,2,28,3,6,2,28,1,6,8,7,1,10,1,7,1,6,8,8,1,16,5,8,1,6,21,8,1,6,4,16,2,8,1,6,5,8,1,16,1,6,2,8,1,6,26,28,37,1,170,}, + {1,218,28,9,6,1,28,2,6,7,8,1,16,2,14,3,16,59,6,1,28,6,10,1,7,1,10,2,6,1,7,1,28,2,16,2,7,2,6,2,7,3,6,7,28,1,6,2,28,3,6,10,7,1,10,1,7,1,6,8,7,1,8,1,16,5,8,1,6,21,8,1,6,1,8,1,6,2,16,3,6,6,16,1,8,2,6,26,28,38,1,170,}, + {1,208,28,1,1,6,28,9,6,3,28,3,6,8,8,1,16,2,14,2,16,53,14,1,16,3,9,1,28,8,10,1,7,1,10,1,16,1,7,1,10,1,6,1,28,1,10,1,16,1,10,1,7,1,6,2,7,2,6,3,7,1,6,4,28,1,6,1,28,3,6,11,7,1,6,9,7,1,8,1,16,5,8,1,6,21,8,1,6,2,8,1,6,2,8,1,16,2,6,3,8,1,6,2,8,1,16,2,6,24,8,1,6,1,28,38,1,170,}, + {1,213,28,9,6,4,28,3,6,10,8,1,16,2,14,2,16,55,6,1,28,9,7,1,10,1,7,1,10,2,7,2,6,2,16,1,7,3,6,1,7,1,6,3,7,2,6,6,28,3,6,9,7,2,6,9,7,1,8,2,16,5,8,1,6,21,16,1,6,2,8,1,6,3,16,2,6,3,16,1,6,2,8,1,16,2,8,1,6,6,8,1,6,4,8,1,6,7,8,1,6,2,8,1,6,1,28,37,1,2,28,1,1,169,}, + {1,215,28,5,6,6,28,1,6,11,8,4,16,1,14,3,16,52,8,1,28,11,9,1,10,3,7,1,10,1,6,2,10,1,7,1,6,7,7,1,6,5,28,1,6,13,7,2,6,8,7,2,8,1,16,6,6,18,28,1,6,1,28,1,6,1,16,1,6,2,16,1,6,3,16,2,8,1,6,3,8,1,6,2,16,2,8,2,6,5,8,1,6,4,8,1,6,9,8,2,28,38,1,2,28,1,1,169,}, + {1,210,28,1,1,1,28,6,6,24,8,1,16,2,14,2,16,50,28,14,16,1,10,4,7,4,6,8,28,1,6,4,28,1,6,22,7,2,8,1,16,7,6,19,28,2,6,1,8,1,6,2,8,1,6,3,16,3,6,3,8,1,6,3,16,1,8,2,6,5,8,2,6,11,8,4,28,38,1,172,}, + {1,208,28,8,6,25,8,2,6,1,8,1,16,1,14,2,16,48,28,15,7,1,10,1,7,1,16,1,7,1,10,1,16,1,7,1,10,1,6,1,7,2,6,2,7,1,6,5,28,1,6,3,28,1,6,8,7,3,6,8,7,3,8,1,16,7,6,10,28,1,6,8,28,2,6,1,8,1,6,6,8,1,16,2,6,3,16,1,6,3,16,1,8,3,6,5,8,1,6,8,8,1,6,1,16,2,8,2,16,1,8,1,6,1,28,33,1,175,}, + {1,206,28,7,6,10,28,2,6,20,8,1,16,1,14,2,16,43,8,1,16,2,28,16,6,1,7,2,10,5,7,4,6,21,7,3,6,4,7,1,6,5,7,1,8,1,16,6,6,11,28,1,6,8,28,1,6,1,16,1,8,1,6,2,16,1,8,1,6,3,16,2,6,4,16,1,6,2,8,1,16,1,8,2,6,9,8,2,6,1,8,5,16,1,8,5,30,1,28,31,1,176,}, + {1,203,28,9,6,11,28,1,6,22,8,1,16,2,14,2,16,42,8,1,28,18,10,1,7,1,6,1,7,1,10,2,7,5,6,32,7,2,8,1,16,7,6,20,28,1,6,1,16,1,8,1,6,2,16,1,8,1,6,3,16,2,6,4,8,2,6,2,16,1,8,1,6,9,8,1,16,1,8,1,6,1,8,12,6,1,28,30,1,176,}, + {1,194,28,1,1,4,28,1,1,1,28,9,6,38,16,2,14,3,16,8,8,1,16,29,8,1,16,1,6,1,28,19,9,1,16,1,6,1,10,1,16,1,6,1,7,1,6,1,7,2,6,7,28,1,6,12,7,1,6,9,7,3,8,1,16,7,8,1,6,20,28,1,6,1,16,1,8,1,6,2,16,1,8,1,6,4,16,2,6,2,8,3,6,2,16,1,8,1,6,5,16,2,8,1,6,6,8,12,6,1,28,28,1,177,}, + {1,198,28,10,6,16,28,1,6,23,8,2,16,1,14,3,16,39,28,21,16,1,9,1,10,2,7,2,6,1,7,3,6,5,28,3,6,10,7,1,10,1,7,1,6,7,7,4,8,1,16,6,8,1,6,19,28,1,6,1,28,1,6,1,16,1,8,1,6,2,16,2,6,4,8,1,16,1,6,2,16,1,6,1,16,1,6,2,16,1,8,1,6,2,8,2,16,3,6,7,8,10,6,1,8,2,6,1,28,27,1,177,}, + {1,192,28,1,1,3,28,9,6,2,28,1,6,16,28,1,6,25,8,1,16,2,14,2,16,37,8,1,28,22,9,1,10,1,7,1,10,1,7,1,6,2,7,1,6,20,7,2,6,6,7,2,8,1,7,1,8,2,16,5,8,1,6,20,28,1,6,3,16,1,8,1,6,2,16,2,8,1,6,4,16,1,6,2,16,1,6,1,16,1,8,1,6,1,16,1,8,1,6,1,8,3,16,2,8,1,6,6,8,3,6,1,8,8,6,2,8,1,6,1,28,26,1,177,}, + {1,194,28,1,1,1,28,7,6,2,28,1,6,18,28,1,6,26,8,1,16,2,14,3,16,35,6,1,28,23,6,1,10,1,7,3,6,19,7,1,6,7,7,2,6,3,8,4,16,4,8,1,6,25,16,1,8,1,6,2,16,2,8,1,6,4,16,1,6,2,16,1,8,1,16,1,8,1,6,2,16,7,8,1,6,5,8,1,6,5,8,7,6,3,8,2,28,25,1,177,}, + {1,193,28,9,6,2,28,1,6,46,8,3,16,1,14,4,16,33,28,2,29,3,26,4,29,1,28,15,6,2,7,2,6,5,28,2,6,2,28,1,6,8,7,2,6,7,7,1,6,4,8,4,16,4,8,1,6,25,16,1,8,1,6,2,16,2,8,1,6,4,16,1,6,2,8,4,6,2,16,7,6,15,8,2,6,2,8,2,6,1,8,1,16,1,8,1,6,1,28,22,1,178,}, + {1,192,28,7,6,1,28,1,6,49,8,1,6,2,8,1,16,3,14,2,16,31,8,1,9,1,28,1,29,2,28,1,29,1,26,6,28,1,29,1,28,13,7,2,10,1,7,1,6,4,28,2,6,11,7,1,6,3,10,1,7,2,6,7,8,1,16,2,8,1,16,4,8,1,6,25,16,1,8,1,6,2,16,2,8,1,6,4,16,1,8,1,6,2,8,2,16,1,6,2,16,1,8,1,16,4,6,19,8,1,6,6,8,1,6,1,28,21,1,178,}, + {1,179,28,1,1,3,28,1,1,1,28,2,1,3,28,6,6,3,28,1,6,22,8,1,6,16,28,1,6,2,28,2,6,9,8,3,16,3,14,3,16,29,9,1,28,1,29,1,27,1,29,1,26,6,29,1,28,1,29,2,28,14,6,1,7,2,6,3,28,2,6,1,28,1,6,4,7,2,6,3,7,2,6,4,7,2,6,2,7,1,8,6,16,4,8,2,6,25,16,1,6,2,8,3,16,1,6,4,16,1,8,1,6,1,8,2,16,1,8,1,6,2,16,1,8,1,16,4,6,18,8,2,6,9,28,21,1,7,28,2,1,168,}, + {1,176,28,1,1,4,28,14,6,1,28,3,6,23,8,1,6,32,16,2,8,1,16,1,14,2,16,2,14,1,16,2,8,1,16,25,28,9,29,1,26,3,28,17,6,1,7,1,6,2,28,2,6,1,28,1,6,5,28,1,6,3,7,3,6,3,7,1,8,1,7,1,8,8,16,4,8,2,6,25,16,1,6,2,8,1,16,1,8,1,16,1,8,1,6,3,8,1,16,1,8,3,16,1,8,1,6,2,16,1,8,1,16,4,8,1,6,18,8,2,6,1,8,3,6,6,28,20,1,3,28,2,1,171,}, + {1,185,28,9,6,3,28,1,6,24,8,1,6,32,8,1,6,1,8,1,16,1,8,1,16,1,14,2,16,29,28,13,29,3,28,16,6,1,7,1,6,8,7,1,10,1,6,4,7,2,6,3,8,11,16,4,8,1,6,26,16,1,8,1,6,1,8,1,16,1,8,3,6,4,8,4,16,1,8,1,6,1,8,1,16,1,8,1,16,4,8,1,6,21,8,3,6,4,8,2,6,1,28,11,13,1,6,1,28,5,1,177,}, + {1,177,28,3,1,4,28,8,6,1,28,3,6,26,8,1,6,33,8,1,6,3,16,2,14,2,16,28,28,16,29,1,28,16,6,1,10,1,28,1,6,17,8,10,16,5,8,1,6,26,16,1,8,1,6,2,16,2,8,4,6,3,8,3,16,1,8,1,6,1,16,2,8,1,16,5,8,2,6,24,8,1,6,3,8,2,6,1,28,9,16,1,14,1,6,1,28,4,1,177,}, + {1,177,28,2,1,3,28,7,6,2,28,1,6,30,8,1,6,33,16,2,6,4,16,1,14,2,16,27,28,35,6,1,7,1,6,2,7,1,10,1,6,11,7,1,8,1,16,1,8,7,16,2,8,3,16,1,6,27,8,2,6,2,16,2,6,2,8,1,16,1,6,4,8,1,6,1,8,3,16,2,8,1,16,5,8,4,6,27,8,1,6,2,28,7,9,1,8,1,16,1,14,1,7,1,28,5,1,175,}, + {1,176,28,1,1,7,28,7,6,31,8,1,6,9,28,1,6,20,8,2,6,2,16,2,8,1,6,4,14,3,16,25,28,21,25,1,27,1,26,1,28,13,6,1,10,1,6,1,7,1,16,1,10,1,6,5,7,2,8,3,16,3,8,6,16,2,8,4,6,27,8,2,6,2,16,2,6,2,8,1,16,1,6,6,8,1,16,3,8,2,16,5,8,5,6,24,8,1,6,6,28,4,6,1,16,2,8,1,16,3,8,1,28,3,1,2,28,2,1,171,}, + {1,179,28,7,6,2,28,1,6,33,8,1,6,30,8,3,6,2,16,3,6,1,28,1,6,2,16,1,14,2,16,23,14,1,28,21,27,1,12,1,9,2,10,2,29,1,28,11,7,1,16,1,6,1,28,1,7,1,6,3,7,1,8,5,16,3,8,3,6,1,8,7,6,28,8,1,16,1,6,2,16,2,6,3,8,1,6,6,8,1,16,3,8,2,16,5,8,1,16,1,8,5,6,28,8,1,6,1,28,2,6,1,16,1,8,2,16,2,6,1,8,1,16,1,6,1,28,7,1,170,}, + {1,178,28,9,6,29,8,1,6,5,16,1,6,27,8,3,6,2,8,2,6,2,16,3,6,1,28,2,6,1,8,1,14,2,16,21,14,2,28,28,9,1,16,1,7,1,28,10,10,2,6,1,7,3,8,6,16,2,8,3,6,2,16,1,8,1,6,1,8,1,16,2,8,1,6,28,8,1,16,1,6,2,16,2,6,10,8,1,16,3,8,1,16,8,8,8,6,26,8,2,6,2,16,4,6,1,16,2,8,1,16,1,8,1,28,6,1,170,}, + {1,170,28,1,1,3,28,1,1,2,28,6,6,33,8,1,6,5,8,1,6,27,8,2,6,1,8,5,6,2,16,4,6,1,28,2,16,1,14,3,16,3,8,1,16,15,14,1,16,1,28,30,29,1,16,1,9,1,28,9,6,2,8,9,16,3,8,4,16,1,8,5,6,22,28,1,6,6,8,2,6,2,16,1,8,1,6,10,8,1,16,3,6,1,8,1,16,10,8,6,6,23,8,1,6,7,16,1,8,1,6,2,8,1,16,3,8,1,6,1,28,6,1,168,}, + {1,171,28,3,1,2,28,6,6,1,28,1,6,35,8,1,6,30,8,5,6,1,8,2,6,2,16,5,6,1,28,2,6,1,14,2,16,18,14,2,16,1,28,33,16,1,9,1,28,9,16,7,8,2,16,3,8,6,6,1,8,3,6,30,8,1,6,2,16,2,6,10,8,1,16,3,6,1,16,14,8,4,6,33,8,2,16,5,8,1,6,1,28,7,1,165,}, + {1,169,28,4,1,2,28,5,6,39,8,1,6,31,8,1,16,2,8,6,6,1,16,5,6,1,28,2,6,1,16,1,14,2,16,16,14,2,16,1,28,35,11,1,9,1,28,6,6,1,16,7,8,2,16,2,8,6,6,2,8,2,6,31,8,1,6,2,16,2,6,11,16,3,6,1,16,17,8,2,6,32,8,3,16,4,8,1,6,2,28,8,1,163,}, + {1,169,28,10,6,2,28,1,6,37,8,1,6,2,8,1,6,24,8,3,6,2,8,1,16,4,8,3,6,2,16,3,14,1,16,2,6,1,28,1,6,1,14,3,16,13,14,5,28,37,12,1,28,5,16,8,8,2,16,1,8,2,6,1,8,3,6,3,8,2,6,34,8,1,16,1,6,10,8,1,16,3,6,1,16,18,8,4,6,32,16,4,8,1,16,3,6,1,28,9,1,160,}, + {1,169,28,1,1,1,28,6,6,23,8,1,6,21,16,1,6,24,8,4,6,2,8,1,16,5,8,1,6,3,16,2,14,2,16,2,8,1,6,1,28,1,16,1,14,2,16,4,8,1,16,7,14,5,28,20,6,2,28,16,12,1,28,4,16,1,8,1,16,4,8,2,16,1,8,1,16,1,8,1,6,2,8,3,6,3,8,2,6,34,8,1,16,1,6,10,8,1,16,3,6,1,16,18,8,6,6,31,8,1,6,2,8,5,6,1,28,8,1,160,}, + {1,171,28,5,6,24,16,1,8,1,6,20,16,1,6,24,8,6,6,1,8,2,16,5,6,2,8,1,16,2,14,2,16,2,8,1,6,2,16,1,14,3,16,2,8,1,16,7,14,5,29,1,28,19,9,1,12,1,6,1,8,1,9,1,8,1,28,13,17,1,28,2,6,1,8,2,16,3,8,3,16,1,8,1,16,1,8,1,6,2,8,3,6,2,8,2,6,35,8,1,16,1,6,11,16,3,6,1,16,22,8,1,16,1,6,33,8,1,16,5,8,2,7,1,6,1,28,5,1,160,}, + {1,168,28,1,1,1,28,5,6,2,28,1,6,22,8,2,6,20,16,1,8,1,6,23,8,3,16,3,8,2,6,1,16,6,8,1,6,2,16,1,14,2,16,3,14,1,6,2,16,1,14,2,16,9,14,3,16,1,14,2,30,1,28,24,6,2,9,1,10,1,28,11,6,1,28,2,8,3,16,2,8,2,16,4,8,6,6,1,8,2,6,36,8,1,16,1,6,11,8,1,6,1,8,1,6,1,16,24,8,4,6,31,8,1,16,3,8,1,16,3,8,1,6,1,28,4,1,159,}, + {1,170,28,4,6,1,28,1,6,25,8,1,6,2,28,2,6,7,28,1,6,3,28,2,6,4,16,1,6,22,8,5,16,4,8,2,16,6,6,1,8,1,6,1,16,2,14,2,16,3,8,1,6,1,16,1,14,3,16,6,14,4,16,1,14,2,30,1,28,28,9,1,16,1,29,1,28,10,7,1,8,5,16,3,8,1,16,3,8,2,16,2,8,1,6,1,8,2,6,36,8,1,16,1,6,11,8,2,16,1,6,1,16,26,8,3,6,2,8,1,6,25,8,1,16,1,6,3,8,1,16,3,8,2,16,1,8,1,28,6,1,156,}, + {1,164,28,1,1,2,28,1,1,1,28,4,6,24,8,1,6,2,8,1,6,11,28,3,6,2,28,2,6,4,16,1,6,20,8,6,16,6,8,2,16,7,6,2,16,1,14,3,16,4,6,1,7,1,14,3,16,6,14,6,13,1,28,30,9,1,11,1,29,1,28,8,6,1,8,9,16,1,8,7,6,35,28,1,6,3,16,2,6,13,8,1,6,1,16,24,8,1,16,2,8,2,6,5,8,1,6,21,8,2,6,5,8,3,16,4,8,1,6,1,28,6,1,10,28,4,1,140,}, + {1,167,28,6,6,27,16,1,8,1,6,10,28,3,6,2,28,2,6,2,28,1,6,1,16,1,8,1,6,20,8,4,16,17,8,2,16,1,14,4,16,3,8,2,16,1,14,2,16,4,14,7,13,1,28,32,9,1,16,1,28,7,16,1,7,1,8,16,6,39,16,1,8,1,6,2,8,1,6,9,8,2,6,1,8,1,16,23,8,1,16,3,8,4,6,2,8,1,6,20,8,1,16,1,8,2,6,4,8,1,6,3,8,2,16,3,8,1,6,1,28,8,1,5,28,5,1,140,}, + {1,167,28,4,6,29,16,1,6,6,28,2,6,4,28,1,6,6,28,2,6,1,8,1,16,1,6,16,8,1,6,3,8,4,16,18,6,2,16,1,14,3,16,2,14,1,16,1,8,2,16,1,14,2,16,3,14,2,16,1,14,4,13,1,28,34,11,1,29,1,28,4,6,1,8,18,6,39,16,1,6,3,8,1,6,8,8,3,6,1,16,7,8,1,16,14,8,2,16,5,8,6,6,19,8,1,16,1,8,7,6,6,8,4,16,1,8,1,28,7,1,2,28,2,1,2,28,1,1,3,28,3,1,137,}, + {1,164,28,2,1,1,28,3,6,30,16,1,6,7,28,1,6,4,28,1,6,2,8,1,6,7,16,1,6,19,8,6,16,18,8,1,6,1,16,2,14,3,16,4,7,1,16,2,14,10,9,1,28,18,16,1,8,1,28,15,9,1,6,1,28,4,8,1,6,1,8,15,6,40,16,1,6,3,8,1,6,8,8,2,6,2,16,32,8,4,6,17,8,4,6,2,8,4,6,1,8,4,6,4,8,1,6,1,8,1,6,1,8,1,6,1,28,10,1,4,28,3,1,137,}, + {1,164,28,5,6,2,28,1,6,24,8,1,6,2,16,1,8,1,6,15,8,1,6,7,16,1,8,1,6,17,8,3,16,2,8,2,16,19,8,1,7,1,8,1,16,1,14,2,16,3,14,1,16,1,6,1,8,1,16,4,14,6,16,1,28,18,10,1,7,1,29,1,9,1,7,1,8,1,28,12,8,1,28,3,6,1,16,1,6,1,8,14,6,41,16,1,8,1,6,2,8,1,6,7,8,2,6,4,7,1,16,1,14,1,16,1,8,1,16,28,8,2,6,4,8,1,6,24,8,4,6,3,8,1,6,8,28,7,1,2,28,2,1,3,28,1,1,136,}, + {1,166,28,3,6,27,8,1,6,2,16,2,6,15,8,1,6,7,16,2,6,16,8,4,16,24,8,1,6,1,7,1,16,1,14,3,16,8,14,8,28,23,6,1,7,1,9,1,8,1,28,10,8,1,28,2,16,1,8,16,6,35,8,1,6,2,28,1,6,1,8,3,6,9,8,1,6,2,8,1,6,2,28,3,8,1,16,27,8,1,16,3,8,2,6,1,8,2,6,39,16,1,6,4,28,5,1,143,}, + {1,160,28,1,1,2,28,1,1,2,28,2,6,26,8,1,6,1,8,1,6,2,16,2,6,15,8,1,6,7,8,1,16,1,6,2,8,1,6,10,8,6,16,26,8,1,6,1,7,1,16,1,14,3,16,2,14,1,16,4,14,1,16,2,14,1,16,2,14,2,29,1,28,26,12,1,16,1,28,9,7,1,28,1,8,16,6,36,8,1,6,4,8,1,6,10,8,1,6,3,8,1,6,1,28,5,13,1,16,26,8,2,16,3,8,4,6,32,8,1,6,4,16,1,8,1,6,1,8,1,6,5,28,9,1,7,28,2,1,128,}, + {1,160,28,2,1,1,28,1,1,1,28,2,8,1,6,7,8,1,6,17,8,2,6,1,8,1,6,2,16,2,6,15,8,1,6,7,8,1,16,1,6,2,8,1,6,8,8,8,16,28,8,2,16,2,14,3,16,7,14,2,16,2,14,2,30,1,28,28,16,2,28,9,8,2,6,1,8,12,6,42,8,1,6,2,8,1,6,10,8,1,13,1,28,8,13,1,14,1,16,22,8,4,16,3,8,1,16,2,8,4,6,28,16,1,6,9,8,1,6,6,28,7,1,6,28,2,1,128,}, + {1,160,28,2,1,2,28,2,6,29,8,2,6,2,16,1,8,1,6,15,16,1,6,8,16,1,8,1,6,2,8,1,6,8,8,6,16,30,8,1,6,1,8,1,14,5,16,3,14,2,16,1,14,2,16,2,14,1,13,1,28,30,11,1,8,1,28,6,6,1,16,1,6,1,16,1,8,8,6,1,8,3,6,36,8,1,6,7,8,1,6,8,8,1,6,3,28,10,6,1,8,1,16,23,8,2,16,4,8,1,16,3,8,3,6,47,28,5,1,135,}, + {1,160,28,3,1,1,28,2,6,29,8,2,6,2,16,1,8,1,6,15,16,1,6,8,16,1,8,1,6,10,8,7,16,24,8,1,16,8,6,1,16,1,14,4,16,3,14,5,16,1,14,1,8,1,28,31,8,1,17,1,28,5,6,2,16,1,6,1,8,8,6,1,8,3,6,40,8,1,6,4,8,2,6,5,8,1,6,1,16,1,8,1,28,13,6,1,8,1,16,7,8,1,16,4,8,1,16,10,8,1,16,1,8,2,16,5,8,4,6,47,28,6,1,132,}, + {1,160,28,5,6,28,8,1,6,1,8,2,6,2,16,1,8,1,6,15,16,1,6,8,16,2,6,2,8,1,6,1,8,8,16,1,8,2,16,26,8,2,16,7,8,2,16,1,14,4,16,3,14,1,16,1,14,2,16,1,14,1,9,1,28,7,8,1,28,25,17,1,28,5,16,1,6,1,16,1,8,8,6,1,8,2,6,41,8,1,6,5,8,1,6,3,8,1,6,2,8,1,6,1,28,16,6,1,16,5,8,1,16,18,8,1,16,7,8,4,6,39,8,1,6,1,8,1,6,6,28,4,1,2,28,2,1,128,}, + {1,160,28,4,6,15,8,1,6,8,8,6,6,1,8,2,6,1,8,1,16,1,6,16,16,1,6,8,8,1,16,1,8,11,16,32,8,2,16,5,14,1,16,1,6,1,16,1,14,6,16,5,14,1,16,1,28,8,8,1,28,25,16,1,28,3,6,1,16,1,6,1,8,12,6,52,8,1,6,1,8,1,28,18,30,1,13,1,16,2,8,2,16,20,8,1,16,5,8,5,6,38,8,1,6,7,16,1,6,1,28,4,1,1,28,1,1,129,}, + {1,160,28,4,6,15,8,1,6,4,8,14,16,2,8,1,6,15,16,1,6,9,16,2,6,1,8,1,16,1,8,1,16,1,8,5,16,33,8,2,16,2,14,2,16,5,14,7,16,3,14,2,30,1,28,5,29,1,28,28,16,1,28,2,8,2,6,2,8,8,6,55,8,1,6,1,28,21,6,1,16,2,8,1,16,5,8,1,16,15,8,2,16,2,8,7,6,38,16,1,6,3,8,1,6,5,28,5,1,129,}, + {1,160,28,3,6,14,8,2,6,3,8,16,16,2,8,1,6,15,16,1,8,1,6,8,16,2,6,1,8,1,16,1,8,1,16,2,8,1,16,37,8,2,16,2,14,1,16,2,14,1,16,2,14,8,16,2,14,2,13,1,28,8,6,1,28,26,6,1,28,1,6,1,16,1,6,1,8,8,6,50,8,1,6,3,8,1,6,2,28,24,8,2,16,21,8,1,16,3,8,7,6,38,8,1,16,1,8,1,6,9,28,4,1,128,}, + {1,160,28,2,6,13,8,5,6,1,8,16,16,4,8,3,6,12,16,1,8,1,6,3,8,2,6,3,8,1,16,1,6,1,8,1,16,1,8,1,16,42,8,2,16,2,14,1,16,1,14,3,16,1,14,7,16,2,14,1,8,1,28,37,6,2,16,1,6,1,8,5,6,52,8,2,6,3,28,27,6,1,16,1,14,1,16,1,8,1,16,22,8,4,6,41,16,2,6,1,8,2,6,7,28,3,1,128,}, + {1,160,28,2,6,11,8,20,16,1,8,3,16,4,8,3,6,12,16,2,8,1,6,1,8,5,6,1,16,2,8,1,16,2,8,1,16,42,8,1,6,1,8,1,16,2,14,1,16,1,14,2,16,2,14,6,16,2,14,1,9,1,28,36,6,1,8,2,6,1,8,6,6,54,8,1,6,2,28,28,8,1,14,1,16,3,8,1,16,20,8,4,6,3,8,3,6,35,16,2,8,1,6,5,16,1,7,1,6,2,28,4,1,127,}, + {1,153,28,6,1,1,28,1,6,9,8,5,6,1,8,6,6,2,8,8,16,1,8,1,16,2,8,1,16,4,8,5,6,4,8,3,6,3,16,2,8,3,16,2,8,4,16,49,7,1,6,1,16,2,14,2,16,3,14,6,16,1,14,1,16,1,14,1,28,37,16,1,8,7,6,54,8,1,6,1,28,31,29,1,8,1,16,27,8,3,6,37,8,1,6,1,16,3,6,10,28,7,1,1,28,1,1,120,}, + {1,154,28,7,6,9,8,22,16,1,8,1,16,2,8,1,16,5,8,1,16,2,8,3,6,2,8,4,6,2,16,2,8,3,16,2,8,4,16,50,8,1,16,2,14,3,16,3,14,6,11,1,14,2,28,36,6,1,16,1,8,7,6,52,8,2,6,1,28,34,6,1,9,1,16,5,8,1,16,19,8,4,6,36,8,1,6,2,16,2,8,1,6,1,8,1,6,2,8,1,16,1,6,2,16,1,6,1,28,5,1,1,28,1,1,121,}, + {1,154,28,6,6,4,8,1,6,5,8,3,6,1,8,1,16,1,8,8,16,5,8,3,16,1,8,1,16,2,8,1,16,9,8,5,16,2,8,2,6,1,16,3,8,2,16,4,8,2,16,54,14,5,16,2,14,2,16,1,14,1,11,1,14,2,6,1,28,35,6,1,8,1,6,1,8,6,6,52,8,1,6,1,28,37,6,1,16,1,8,2,16,21,8,5,6,38,16,3,6,1,16,2,6,4,8,1,16,1,8,1,28,5,1,123,}, + {1,155,28,5,6,4,8,1,6,1,8,7,6,1,8,1,16,1,8,4,16,16,8,1,16,11,8,2,16,4,8,2,16,3,8,2,16,4,8,2,16,53,14,10,16,1,14,4,16,1,28,35,8,1,16,1,6,1,8,2,6,2,8,1,6,52,8,1,28,41,7,1,16,2,8,1,16,2,8,1,16,18,8,6,6,33,8,1,6,2,16,5,8,3,6,2,8,3,7,1,28,4,1,1,28,1,1,120,}, + {1,153,28,1,1,1,28,4,6,5,8,2,16,1,6,1,16,2,8,10,16,16,8,1,16,11,8,1,16,70,14,17,28,35,16,2,7,1,8,5,6,50,16,1,6,1,28,44,8,1,16,23,8,7,6,31,8,1,6,2,8,1,16,4,8,1,16,1,6,5,8,1,6,1,28,4,1,122,}, + {1,153,28,1,1,2,28,3,6,2,8,3,6,1,8,1,16,1,6,1,16,3,8,7,16,17,8,2,16,5,8,1,16,77,14,12,16,1,14,3,6,1,28,34,16,1,8,7,6,49,8,1,6,1,28,46,6,1,16,23,8,7,6,36,16,3,8,1,6,2,8,2,6,1,7,1,28,5,1,122,}, + {1,153,28,1,1,2,28,2,6,3,8,2,16,1,6,1,8,1,16,1,6,1,8,1,16,3,8,1,16,2,8,1,16,19,8,2,16,83,14,2,16,2,14,4,16,1,14,3,16,1,14,1,16,1,14,1,16,1,28,34,8,1,6,1,8,6,6,47,8,1,6,1,28,50,8,1,16,24,8,5,6,35,8,1,16,3,8,2,6,1,16,2,28,8,1,120,}, + {1,154,28,1,1,1,28,2,7,1,6,1,8,1,6,2,16,1,8,2,16,1,6,2,16,3,8,1,16,2,8,1,16,19,8,2,16,81,14,2,16,5,14,9,16,2,14,1,30,1,28,32,6,1,8,1,6,1,8,1,16,1,8,5,6,45,8,1,6,1,28,46,1,2,28,4,6,1,16,24,8,4,6,36,16,1,8,1,28,1,6,1,8,1,6,3,28,7,1,121,}, + {1,152,28,1,1,2,28,2,6,4,8,3,16,2,8,2,6,1,8,1,16,2,8,1,16,2,8,1,16,19,8,2,16,89,14,8,16,4,28,32,6,1,8,2,6,1,8,4,6,45,8,2,28,46,1,6,28,4,8,1,16,1,8,1,16,3,8,1,16,16,8,5,6,3,8,1,6,33,28,3,6,2,28,9,1,120,}, + {1,155,28,2,6,1,8,1,6,1,8,5,16,1,8,2,6,2,16,5,8,1,16,19,8,2,16,88,14,9,16,2,14,2,30,1,28,31,6,1,8,6,6,47,28,48,1,6,28,4,6,1,16,2,6,2,16,1,8,1,16,6,8,1,16,10,8,4,6,36,16,1,28,14,1,119,}, + {1,153,28,3,6,2,8,8,16,2,6,2,16,5,8,1,16,19,8,2,16,89,14,12,16,1,28,31,8,7,6,40,8,2,6,2,8,1,6,1,28,49,1,8,28,4,8,1,16,1,8,1,6,1,16,4,8,2,16,14,8,3,6,16,8,2,6,19,28,14,1,118,}, + {1,153,28,3,8,1,7,1,8,8,16,2,6,2,8,1,16,4,8,1,16,19,8,2,16,93,14,9,30,1,28,30,16,1,8,2,16,1,8,2,6,42,8,2,6,1,28,50,1,10,28,4,6,1,16,3,8,2,16,4,8,1,16,13,8,3,6,15,8,4,6,17,8,1,28,5,1,1,28,7,1,118,}, + {1,152,28,3,6,1,8,1,6,1,8,2,16,2,8,3,16,3,8,1,6,2,16,4,8,1,16,19,8,2,16,93,14,9,8,1,28,29,6,1,16,1,8,2,16,1,6,1,8,1,6,42,8,1,6,1,28,46,1,2,28,2,1,11,28,6,8,1,16,1,8,1,7,2,8,1,16,18,8,2,6,16,8,2,6,19,28,2,1,5,28,5,1,5,28,1,1,112,}, + {1,152,28,3,8,1,6,2,16,1,8,2,16,1,8,2,16,5,6,2,16,4,8,1,16,19,8,2,16,51,8,1,16,43,14,5,16,1,14,2,28,29,6,1,8,1,16,1,8,2,6,1,8,1,6,41,8,1,6,1,28,47,1,5,28,1,1,8,28,9,6,1,16,1,8,1,6,1,8,1,16,19,6,16,8,3,6,17,28,4,1,5,28,5,1,117,}, + {1,152,28,3,8,1,6,1,16,1,8,1,16,1,8,2,16,7,6,2,8,1,16,23,8,2,16,97,14,3,16,2,14,1,9,1,28,28,8,1,6,1,16,1,8,2,6,43,28,48,1,5,28,2,1,9,28,2,1,1,28,6,6,1,8,5,16,17,8,1,6,16,8,1,16,2,8,1,6,16,28,4,1,6,28,3,1,117,}, + {1,152,28,2,6,2,16,1,8,4,16,5,8,2,16,1,6,3,16,23,6,1,8,1,16,54,8,2,16,42,14,1,16,1,14,1,16,2,14,1,16,1,28,26,6,1,16,1,6,1,8,4,6,37,8,2,6,2,28,48,1,5,28,2,1,10,28,2,1,4,28,5,8,1,16,1,8,1,16,18,8,1,6,17,16,2,8,1,6,15,28,5,1,7,28,2,1,117,}, + {1,147,28,1,1,3,28,3,8,1,6,2,16,1,8,2,16,7,8,1,16,1,8,1,6,2,8,1,16,3,8,1,16,18,6,2,16,7,8,1,16,96,14,1,8,1,28,25,7,1,6,2,8,3,6,39,8,1,28,49,1,26,28,4,8,1,16,1,6,1,8,1,16,2,8,1,16,3,8,1,16,8,8,1,16,2,6,15,8,2,16,3,6,12,28,1,6,1,28,6,1,125,}, + {1,150,28,3,6,1,8,1,6,1,16,2,8,1,16,10,8,1,6,2,8,1,16,22,6,2,16,59,8,1,16,43,8,1,16,2,8,1,6,1,28,22,6,1,8,1,6,2,8,2,6,38,8,1,6,1,28,49,1,26,28,1,1,2,28,3,6,1,16,3,8,1,16,5,8,1,16,9,8,1,6,17,8,1,16,3,6,1,16,2,6,2,8,2,6,5,28,8,1,124,}, + {1,150,28,3,8,1,6,2,16,1,8,1,16,11,8,1,6,3,16,5,8,1,16,16,8,1,6,1,16,103,8,2,16,4,30,1,28,20,16,1,8,1,6,2,8,2,6,36,8,1,13,1,6,1,28,51,1,27,28,6,6,1,8,1,16,1,8,2,16,2,8,1,16,2,8,1,16,7,8,1,6,13,8,4,16,4,6,1,16,2,6,3,8,1,6,4,8,1,28,8,1,124,}, + {1,150,28,3,16,1,8,1,6,1,16,1,8,1,16,11,8,1,6,3,8,1,16,4,8,1,16,16,8,1,6,1,16,4,8,1,16,100,8,1,6,1,8,1,16,2,28,19,6,1,7,2,6,39,8,1,6,1,28,52,1,26,28,10,6,1,16,2,7,1,8,1,16,3,8,1,16,8,8,2,6,6,8,2,16,1,8,5,6,1,8,1,16,7,8,1,6,2,8,1,6,1,8,1,6,2,28,9,1,123,}, + {1,150,28,2,6,1,8,1,16,1,8,2,16,12,8,1,6,4,8,1,16,3,8,1,16,17,8,2,16,3,8,1,16,102,8,1,7,1,8,1,16,1,13,1,28,14,6,1,7,1,8,1,7,1,6,39,8,2,30,1,28,53,1,27,28,6,1,2,28,3,9,1,16,1,8,2,6,1,8,1,16,11,6,5,8,3,6,8,16,11,8,2,6,1,28,10,1,123,}, + {1,148,28,4,8,1,6,1,16,2,8,1,16,12,8,1,6,5,16,21,6,1,8,1,16,3,8,1,16,45,8,2,16,51,8,1,16,4,8,2,16,2,8,1,6,1,28,10,6,1,8,2,7,1,6,2,16,1,6,36,8,2,6,1,28,54,1,28,28,1,1,1,28,3,1,2,28,1,1,1,28,3,6,1,8,2,16,13,6,16,16,2,8,1,6,1,8,2,6,1,8,1,16,2,8,2,6,2,28,11,1,122,}, + {1,148,28,4,8,3,16,2,8,1,16,11,8,3,6,3,16,5,8,1,16,15,8,1,6,1,16,49,8,1,6,1,8,2,16,51,8,3,16,2,6,2,16,2,8,1,6,1,28,5,6,1,16,3,8,1,6,1,8,2,6,37,8,1,7,1,6,1,28,55,1,27,28,2,1,5,28,2,1,2,28,4,7,1,8,1,16,1,8,1,6,1,8,1,16,9,6,23,8,2,6,1,7,1,28,13,1,122,}, + {1,148,28,3,6,1,7,1,16,1,6,1,8,1,16,1,6,1,16,14,6,3,8,1,16,4,8,1,16,15,6,2,16,51,8,2,6,3,8,1,16,50,8,2,16,1,8,1,6,2,16,5,8,2,16,4,8,1,6,2,8,1,16,1,6,34,8,2,6,1,28,55,1,30,28,2,1,3,28,2,1,4,28,5,6,1,16,2,6,1,7,1,16,5,8,1,16,2,6,3,28,12,6,11,8,1,28,14,1,121,}, + {1,144,28,1,1,1,28,5,8,4,16,14,6,2,16,2,6,3,8,1,16,3,8,2,16,1,8,1,16,13,6,2,16,3,8,1,16,48,8,2,6,4,8,2,16,37,8,1,16,11,8,8,16,2,8,2,16,4,8,1,6,35,8,2,6,1,28,54,1,45,28,5,6,1,16,2,8,2,16,7,6,6,28,9,6,11,28,14,1,121,}, + {1,147,28,3,6,1,8,4,16,14,6,2,16,2,8,1,6,2,8,1,16,4,8,1,16,15,6,2,16,3,8,1,16,50,8,3,6,5,8,1,16,17,8,2,16,14,8,3,16,11,8,3,6,2,8,2,16,9,8,1,6,30,8,1,6,2,16,1,13,1,28,55,1,48,28,5,6,1,16,2,8,1,16,3,8,1,6,1,8,1,6,1,16,1,6,6,28,3,6,4,28,2,6,8,28,14,1,122,}, + {1,145,28,1,1,1,28,3,6,1,8,4,16,14,8,1,6,1,8,1,16,2,8,1,6,2,8,1,16,19,8,1,6,1,16,3,8,2,16,52,8,1,6,8,8,1,16,29,8,1,16,2,8,2,16,10,8,7,16,2,8,1,6,2,8,1,16,3,8,1,6,33,28,56,1,50,28,5,6,1,8,4,16,6,6,5,8,1,6,15,28,13,1,124,}, + {1,145,28,5,16,1,8,3,16,16,8,1,6,1,16,3,6,3,16,19,8,3,16,3,8,1,16,55,8,1,6,9,16,16,8,3,16,11,8,4,16,11,8,6,6,5,8,3,6,28,8,2,28,57,1,49,28,9,6,1,8,1,16,1,6,3,16,1,8,1,16,3,8,1,6,18,28,2,6,1,28,9,1,125,}, + {1,146,28,3,6,1,16,1,6,1,8,1,16,7,8,1,16,10,6,1,8,1,16,3,6,2,8,1,16,4,8,1,16,14,8,1,6,1,16,3,8,1,16,58,8,1,6,7,8,1,16,1,8,1,16,13,8,6,16,8,8,5,16,12,8,4,6,33,8,2,6,1,28,55,1,52,28,1,1,3,28,7,6,1,16,1,8,2,6,1,8,1,7,1,6,1,8,1,16,2,8,1,6,3,8,2,6,6,28,1,6,5,28,1,6,1,28,7,1,127,}, + {1,144,28,1,1,1,28,3,8,3,16,8,8,1,16,10,6,2,16,3,8,1,6,2,16,4,8,1,16,9,8,1,16,5,6,1,16,3,8,2,16,59,8,2,6,7,8,1,16,14,8,5,16,9,8,5,16,10,8,1,6,35,8,1,6,1,28,58,1,53,28,2,1,3,28,7,6,1,16,3,8,3,16,3,8,1,16,1,8,1,6,4,8,1,6,10,28,5,1,129,}, + {1,144,28,1,1,1,28,3,8,3,16,15,8,2,16,2,8,1,6,1,8,1,16,4,8,1,16,14,8,1,16,2,8,1,16,2,8,1,16,3,8,2,16,62,8,1,6,4,8,6,16,18,8,1,16,5,8,8,16,8,8,1,6,14,8,1,6,19,30,1,28,59,1,51,28,2,1,2,28,1,1,5,28,7,6,1,16,3,8,3,16,3,8,6,6,9,28,3,1,131,}, + {1,146,28,2,6,1,8,1,16,12,8,2,16,3,8,3,16,2,8,2,16,19,8,1,16,2,8,1,16,2,8,1,16,3,8,2,16,65,8,2,6,2,8,1,16,2,8,1,16,2,8,1,16,14,8,1,16,4,8,13,16,7,8,1,6,31,28,59,1,2,28,2,1,49,28,1,1,7,28,1,1,4,28,7,6,1,8,1,16,4,8,5,6,8,28,1,6,2,28,3,1,1,28,1,1,129,}, + {1,146,28,2,8,1,16,1,6,1,16,1,8,1,16,15,8,1,16,3,8,1,6,1,8,1,16,5,8,1,16,8,8,2,16,13,8,1,16,5,8,1,16,64,8,7,16,18,8,4,16,3,8,10,16,4,8,2,6,10,8,1,6,14,13,1,6,1,28,60,1,70,28,8,6,2,16,5,8,1,6,8,8,1,28,4,1,2,28,1,1,128,}, + {1,146,28,2,16,1,8,1,16,18,8,2,16,2,8,3,16,5,8,1,16,8,8,2,16,108,8,6,16,4,8,11,16,3,8,1,6,9,8,1,6,5,8,2,6,4,8,2,6,1,28,61,1,71,28,13,6,2,8,1,6,1,7,1,8,1,6,3,28,6,1,132,}, + {1,146,28,1,6,1,16,1,6,1,16,1,8,1,16,8,8,2,16,6,8,3,16,3,8,2,16,4,8,1,16,4,8,1,16,98,8,2,16,2,8,2,16,14,8,12,6,5,8,1,16,2,8,2,6,7,8,1,6,8,8,3,6,1,28,62,1,75,28,28,1,129,}, + {1,146,28,1,7,1,6,2,16,1,8,1,16,8,8,2,16,7,8,3,16,2,8,1,6,1,8,1,16,9,8,1,16,102,8,4,16,15,8,8,6,7,8,5,6,9,8,1,6,3,8,1,6,1,30,1,28,64,1,78,28,19,1,135,}, + {1,145,28,2,16,1,6,1,16,1,8,1,16,14,8,13,16,8,8,1,16,101,8,3,16,21,8,3,6,24,8,2,30,1,28,66,1,72,28,1,1,10,28,5,1,144,}, + {1,145,28,1,6,1,16,1,7,1,16,1,8,1,16,14,8,4,16,2,8,1,6,1,8,2,16,1,8,2,16,8,8,1,16,100,8,4,16,24,8,1,6,24,28,66,1,79,28,3,1,9,28,3,1,11,28,1,1,128,}, + {1,144,28,2,7,1,16,1,6,1,16,17,8,3,16,2,8,6,16,1,8,1,16,7,8,1,16,100,8,9,16,7,8,3,16,11,8,1,6,17,8,1,6,2,28,67,1,83,28,1,1,6,28,2,1,6,28,1,1,136,}, + {1,144,28,2,8,2,16,1,8,1,16,1,8,1,16,16,8,1,16,2,8,2,16,1,8,1,6,2,16,2,8,1,16,6,8,1,16,36,8,1,16,55,8,1,16,7,8,1,16,2,8,4,16,1,8,1,16,1,8,4,16,19,8,1,6,14,8,1,6,1,28,64,1,6,28,1,1,72,28,2,1,4,28,2,1,4,28,1,1,4,28,4,1,3,28,2,1,134,}, + {1,139,28,1,1,2,28,3,6,1,8,1,6,1,8,2,16,19,8,6,16,1,8,4,16,6,8,2,16,3,8,1,16,110,8,3,16,8,8,3,16,7,8,1,6,9,7,1,8,1,28,65,1,96,28,8,1,136,}, + {1,142,28,3,6,1,8,2,16,1,8,1,16,1,8,1,16,16,8,8,16,2,8,2,16,7,8,1,16,116,8,2,16,8,6,7,8,5,6,7,8,1,28,66,1,96,28,5,1,139,}, + {1,141,28,4,8,3,16,1,8,1,16,18,8,8,16,128,8,7,16,2,8,1,6,18,8,1,28,66,1,241,}, + {1,141,28,4,8,3,16,1,8,2,16,16,8,9,16,4,8,1,16,107,8,5,16,15,8,6,6,18,8,1,28,65,1,242,}, + {1,138,28,1,1,1,28,4,6,1,16,1,8,2,16,1,8,2,16,14,8,11,16,5,8,1,16,8,8,2,16,96,8,4,16,20,6,20,8,1,28,65,1,242,}, + {1,138,28,1,1,1,28,4,8,1,16,1,8,2,16,2,8,1,16,14,8,12,16,14,8,1,16,29,8,1,16,91,8,1,6,17,16,1,8,1,28,63,1,244,}, + {1,138,28,1,1,1,28,4,8,4,16,10,8,1,16,5,8,13,16,43,8,2,16,91,8,1,6,16,8,1,16,2,28,62,1,245,}, + {1,138,28,1,1,1,28,3,6,1,16,3,8,2,16,15,8,4,16,1,8,6,16,1,8,2,16,6,8,2,16,34,8,2,16,4,8,1,16,85,8,1,6,16,8,1,16,1,6,1,16,1,13,1,28,60,1,87,28,3,1,156,}, + {1,135,28,1,1,2,28,1,1,1,28,3,8,2,16,3,8,3,16,11,8,11,16,2,8,1,16,24,8,3,16,15,8,2,16,1,8,1,16,87,8,1,16,4,6,14,8,3,16,2,8,1,28,57,1,249,}, + {1,134,28,2,1,2,28,1,1,1,28,3,8,2,16,15,8,16,16,23,8,1,16,2,8,2,16,14,8,2,16,1,8,1,16,4,8,1,16,69,8,3,16,10,8,2,16,2,8,1,6,13,8,4,16,2,9,1,28,56,1,250,}, + {1,134,28,2,1,1,28,1,1,2,28,2,6,1,7,1,8,1,16,15,8,16,16,26,8,6,16,10,8,2,16,6,8,1,16,85,8,2,6,12,8,1,16,1,6,1,16,1,8,1,16,1,14,1,16,1,28,56,1,250,}, + {1,137,28,1,1,2,28,2,16,1,8,1,16,18,8,14,16,21,8,1,16,4,8,6,16,11,8,1,16,6,8,1,16,76,8,1,6,3,8,2,16,3,8,1,6,12,8,2,6,1,8,1,16,1,8,1,16,1,14,1,16,1,28,56,1,250,}, + {1,139,28,3,16,1,6,1,16,21,8,6,16,1,8,1,16,26,8,1,16,2,8,2,16,3,8,1,16,11,8,2,16,5,8,1,16,5,8,1,16,52,14,3,16,12,8,3,6,1,8,4,16,4,8,1,6,10,8,1,16,1,6,3,8,1,16,1,8,1,16,1,14,2,28,55,1,251,}, + {1,139,28,2,6,1,8,1,7,1,8,1,16,18,8,5,16,28,14,2,16,2,8,8,16,11,8,3,16,3,8,2,16,39,8,2,16,9,14,1,16,1,14,10,16,5,8,2,16,4,8,8,16,3,8,2,6,10,16,1,6,3,16,3,8,1,16,2,14,1,28,53,1,253,}, + {1,138,28,3,8,5,16,14,8,10,16,2,8,1,16,24,14,1,16,4,8,1,6,2,8,3,16,11,8,3,16,2,8,3,16,3,8,2,16,34,8,2,16,22,8,2,16,4,8,7,6,1,8,5,16,2,8,2,6,9,8,2,6,3,16,2,8,2,16,2,14,1,28,52,1,254,}, + {1,137,28,4,16,1,8,2,16,6,8,2,16,8,8,16,16,27,8,1,7,2,8,7,16,6,8,3,16,2,8,3,16,2,8,3,16,3,8,1,16,30,8,2,16,17,14,3,16,3,8,3,16,2,8,4,16,1,8,3,16,3,8,2,16,2,8,1,6,9,8,2,6,3,8,1,16,2,8,2,16,2,14,1,28,51,1,255,}, + {1,136,28,4,6,1,16,1,8,1,16,13,8,4,16,1,8,15,16,16,8,1,16,11,8,1,6,2,8,1,16,2,8,2,16,4,8,1,16,3,6,1,8,1,16,3,8,3,16,1,8,3,16,2,8,3,16,33,14,16,16,2,8,6,16,4,8,6,16,7,8,1,6,8,8,1,6,4,8,1,16,3,8,3,16,1,14,1,28,46,1,260,}, + {1,137,28,3,8,1,16,16,8,3,16,1,8,15,16,19,8,7,16,1,6,1,28,4,6,2,8,3,6,1,8,1,16,6,8,1,16,2,8,3,16,2,8,4,16,31,14,18,16,5,8,5,16,6,8,6,16,1,8,2,16,3,8,2,6,12,8,1,16,4,8,1,16,1,8,1,16,1,14,1,30,1,28,39,1,1,28,1,1,264,}, + {1,137,28,3,8,1,16,1,8,2,16,14,8,13,16,1,8,1,16,21,8,1,16,2,8,1,16,2,9,1,6,1,28,9,6,3,8,1,16,2,8,2,16,2,8,2,16,1,8,6,16,30,14,6,16,3,14,9,16,7,8,2,6,1,8,2,16,8,8,10,16,1,8,3,6,12,16,5,8,1,16,1,8,1,16,1,14,1,13,1,28,38,1,267,}, + {1,136,28,3,6,1,8,2,16,17,8,10,16,23,8,1,16,2,8,1,16,1,14,1,16,1,6,1,28,2,1,2,28,9,6,4,16,5,8,1,16,2,8,1,6,1,8,4,16,3,8,3,16,21,14,6,16,3,8,1,16,17,8,2,16,1,8,1,16,9,8,13,6,12,8,1,16,5,8,1,16,2,8,1,14,1,13,1,28,37,1,268,}, + {1,136,28,3,8,3,16,1,8,1,16,14,8,10,16,25,8,1,16,3,6,1,28,5,1,2,28,2,1,2,28,9,6,2,8,3,16,1,8,1,6,2,8,1,16,1,8,1,6,2,8,12,16,14,14,5,16,3,8,2,16,30,8,13,6,10,8,2,16,9,8,1,14,1,16,1,28,36,1,2,28,1,1,266,}, + {1,136,28,3,16,17,8,11,16,26,8,2,7,1,28,6,1,2,28,1,1,7,28,11,16,1,8,1,6,3,8,1,16,27,14,5,16,36,8,7,16,1,8,6,6,9,8,2,16,10,8,1,14,1,16,1,28,36,1,269,}, + {1,136,28,2,6,1,16,1,8,1,16,2,8,1,16,11,8,12,16,25,6,1,16,1,6,1,28,8,1,3,28,2,1,6,28,10,6,4,8,1,16,2,14,11,16,54,8,14,6,10,8,1,16,11,8,1,14,1,9,1,28,37,1,3,28,1,1,264,}, + {1,136,28,2,16,1,8,1,6,1,8,3,16,10,8,13,16,24,8,2,28,5,1,1,28,3,1,15,28,2,1,1,28,5,6,2,16,1,14,8,16,2,14,12,16,37,8,2,16,5,8,16,6,10,8,1,16,7,8,1,16,4,14,1,9,1,28,34,1,271,}, + {1,129,28,1,1,2,28,1,1,1,28,3,6,1,8,1,6,1,16,1,6,1,16,13,8,13,16,10,8,1,16,4,8,1,16,3,8,2,16,1,6,2,28,3,1,1,28,1,1,26,28,4,6,1,16,69,8,13,6,9,8,1,16,2,6,1,16,2,8,1,16,2,8,1,16,4,14,1,13,1,28,34,1,271,}, + {1,132,28,1,1,1,28,3,6,1,8,2,16,1,8,1,16,1,8,1,16,10,8,12,16,14,8,2,16,3,6,1,8,3,6,1,28,3,1,30,28,6,6,1,16,68,8,12,6,9,8,1,16,2,8,1,16,5,8,1,16,4,14,1,13,1,28,33,1,272,}, + {1,131,28,1,1,1,28,4,8,3,16,1,8,1,16,1,8,1,16,8,8,15,16,17,8,1,16,1,7,1,8,1,6,1,28,3,1,32,28,6,6,1,16,67,8,12,6,8,8,1,16,5,8,1,16,3,8,1,16,5,30,1,28,33,1,272,}, + {1,131,28,1,1,1,28,3,6,1,8,2,16,1,8,2,16,1,8,1,16,8,8,13,16,18,8,1,16,1,8,2,28,5,1,3,28,1,1,28,28,7,6,1,16,1,8,1,16,66,8,4,16,1,8,5,6,7,8,2,16,5,6,1,16,2,8,2,16,5,28,34,1,272,}, + {1,129,28,1,1,3,28,3,8,3,16,1,8,2,16,1,8,1,16,8,8,11,16,13,8,1,16,3,8,3,16,2,6,1,28,4,1,36,28,6,8,2,16,54,8,1,16,11,8,4,16,1,8,5,6,7,8,1,16,3,8,1,16,2,6,1,16,2,8,1,16,3,8,1,16,1,8,1,28,34,1,272,}, + {1,129,28,1,1,3,28,2,16,1,8,3,16,1,8,2,16,10,8,10,16,16,8,1,16,3,8,2,28,5,1,36,28,7,6,2,7,1,8,2,16,62,8,5,16,1,8,3,6,9,8,1,16,3,8,1,16,1,8,2,16,2,7,1,16,1,8,1,16,1,8,1,16,1,13,1,28,32,1,274,}, + {1,133,28,2,16,1,8,5,16,11,8,10,16,15,8,4,6,1,28,5,1,4,28,1,1,33,28,9,6,3,8,1,16,61,8,1,6,3,8,4,6,7,8,3,16,6,8,1,16,3,8,1,16,1,8,1,16,3,13,1,28,32,1,274,}, + {1,133,28,1,6,1,16,4,8,1,16,2,8,1,16,9,8,9,16,15,8,1,16,2,8,1,6,1,28,4,1,41,28,11,6,1,16,60,8,2,6,3,8,3,6,7,8,4,16,6,8,1,16,2,8,2,16,1,8,1,16,1,8,1,16,1,13,1,28,31,1,275,}, + {1,130,28,1,1,1,28,2,8,1,16,4,8,2,16,6,8,1,16,1,8,14,16,5,8,1,16,7,6,1,8,1,6,1,28,5,1,43,28,7,29,1,6,1,28,1,16,49,8,2,16,10,8,3,6,1,8,4,6,8,8,4,16,3,8,1,16,4,8,2,16,1,8,1,16,1,8,1,16,1,6,1,28,31,1,275,}, + {1,128,28,5,6,1,8,1,6,1,16,3,8,2,16,8,8,11,16,14,8,1,6,1,16,1,28,6,1,41,28,1,1,5,28,6,6,1,8,1,16,60,8,3,6,1,8,3,6,9,8,2,16,5,8,1,16,4,6,1,16,4,8,2,6,1,28,30,1,276,}, + {1,129,28,4,8,2,6,1,8,1,16,6,8,1,16,4,8,12,16,9,6,2,8,1,16,1,6,1,8,1,16,1,28,8,1,40,28,2,1,5,28,5,6,1,16,62,8,2,6,1,8,3,6,8,8,2,16,11,6,1,16,5,8,1,28,31,1,276,}, + {1,128,28,4,8,1,6,3,8,1,16,4,8,2,16,5,8,9,16,2,8,1,16,8,8,1,16,2,6,1,8,1,16,1,6,1,28,9,1,40,28,2,1,5,28,5,6,1,16,62,8,2,6,1,8,2,6,9,8,1,16,8,8,1,16,3,6,1,16,3,8,1,16,1,13,1,28,30,1,277,}, + {1,128,28,3,16,2,6,2,8,1,6,1,8,1,16,3,8,2,16,4,8,9,16,12,8,2,7,1,16,1,8,1,28,3,1,3,28,4,1,42,28,1,1,4,28,6,8,1,16,1,8,1,16,60,8,1,6,3,8,1,6,9,8,1,16,11,8,1,6,1,16,1,8,1,16,1,8,1,16,1,6,1,28,29,1,278,}, + {1,128,28,2,6,1,16,3,8,1,16,1,8,2,16,3,8,2,16,1,8,1,16,2,8,8,16,12,8,1,6,4,28,4,1,1,28,2,1,46,28,1,1,5,28,5,6,1,16,61,8,2,6,13,8,1,16,11,6,1,8,1,16,1,8,1,16,1,8,2,30,1,28,28,1,279,}, + {1,128,28,2,16,1,6,1,8,1,16,4,8,1,16,3,8,4,16,1,8,10,16,12,6,1,16,1,6,1,28,4,1,3,28,2,1,3,28,1,1,49,28,4,16,60,8,3,6,12,8,2,16,11,6,1,16,2,8,1,16,1,8,1,6,1,28,29,1,279,}, + {1,127,28,2,16,1,8,1,6,1,8,1,16,8,8,4,16,1,8,10,16,11,8,1,6,1,28,4,1,3,28,1,1,2,28,2,1,47,28,2,1,4,28,3,6,1,8,1,16,57,8,3,6,13,8,2,16,6,8,2,16,3,6,1,16,4,8,1,6,1,28,29,1,279,}, + {1,126,28,2,6,1,8,2,6,3,16,5,8,1,16,2,8,9,6,1,16,8,8,1,16,2,8,3,6,1,28,4,1,63,28,4,16,59,8,2,6,13,16,9,8,1,16,1,14,1,16,1,6,1,16,1,8,1,16,1,8,2,6,1,28,28,1,280,}, + {1,121,28,1,1,2,28,4,6,1,8,3,6,2,8,1,16,6,8,14,16,2,6,1,8,1,16,2,6,3,8,1,6,1,28,4,1,65,28,3,8,1,16,57,8,3,6,13,16,9,8,1,16,1,14,1,8,1,6,1,16,1,8,4,30,1,28,27,1,281,}, + {1,116,28,2,1,4,28,5,7,1,6,1,8,4,6,3,16,5,8,2,16,1,8,8,16,2,8,1,6,1,8,1,16,2,8,1,6,1,16,2,7,1,28,5,1,66,28,3,7,1,16,57,8,2,6,14,16,12,6,2,16,2,8,1,16,1,8,1,28,27,1,282,}, + {1,115,28,3,1,3,28,4,6,1,8,1,6,2,8,5,6,2,8,1,16,5,8,10,6,1,16,5,8,1,6,1,16,1,6,1,28,7,1,67,28,2,6,1,16,57,8,1,6,14,8,1,16,10,14,1,16,1,6,1,16,3,8,1,16,1,13,1,28,27,1,282,}, + {1,120,28,4,6,1,8,1,6,2,8,7,6,2,8,1,16,5,8,12,16,1,8,1,6,1,7,1,16,1,6,1,28,6,1,1,28,2,1,65,28,4,16,57,8,1,6,14,8,1,16,10,14,1,16,1,6,1,16,5,6,1,28,27,1,282,}, + {1,112,28,2,1,6,28,3,8,1,16,1,6,3,8,4,16,2,8,2,6,2,8,1,16,4,8,8,16,3,8,1,6,2,16,1,6,1,28,6,1,68,28,1,1,1,28,4,8,1,16,55,8,2,6,13,8,1,16,12,8,2,16,3,8,1,16,1,30,1,28,27,1,282,}, + {1,112,28,2,1,4,28,3,6,1,16,3,6,2,16,1,8,2,16,6,8,3,16,5,8,8,6,1,16,2,8,2,6,1,28,3,1,1,28,4,1,67,28,1,1,1,28,4,6,1,16,54,8,3,6,13,8,1,16,12,8,1,16,4,8,1,16,1,28,27,1,283,}, + {1,112,28,2,1,3,28,3,6,1,16,2,6,2,16,1,8,1,6,1,8,2,16,8,8,3,16,3,8,3,16,3,8,2,16,1,6,2,8,1,6,1,28,3,1,7,28,1,1,65,28,1,1,1,28,1,1,1,28,2,6,1,16,55,8,1,6,14,8,1,16,11,8,1,6,1,16,1,8,1,16,2,8,2,28,27,1,2,28,1,1,280,}, + {1,107,28,2,1,2,28,3,1,2,28,4,16,2,8,1,6,1,8,3,16,1,8,7,16,9,8,1,16,2,8,1,6,1,8,3,6,1,16,1,6,1,28,4,1,75,28,1,1,2,28,3,8,1,16,53,8,1,6,13,8,3,16,8,8,1,16,2,6,2,16,4,8,1,6,1,28,25,1,285,}, + {1,104,28,1,1,5,28,9,16,3,8,1,6,1,8,3,16,1,8,1,16,1,8,4,16,4,8,3,16,4,8,1,6,1,16,2,6,2,7,1,16,1,6,1,28,4,1,76,28,1,1,2,28,3,8,1,16,52,8,2,6,13,8,2,16,12,6,2,16,4,8,1,6,1,28,24,1,286,}, + {1,109,28,9,16,2,8,5,16,2,8,2,16,1,8,4,16,4,8,7,16,2,6,4,7,1,28,3,1,4,28,1,1,74,28,1,1,2,28,1,1,1,28,1,6,1,16,52,8,1,6,13,8,3,16,12,6,1,8,1,16,3,8,2,30,1,28,23,1,287,}, + {1,106,28,2,1,2,28,7,16,2,6,1,8,1,6,1,8,12,16,4,8,6,16,1,8,1,6,2,8,1,16,1,6,1,28,2,1,2,28,2,1,2,28,1,1,74,28,1,1,4,28,1,6,1,16,50,8,2,6,14,8,3,16,11,8,1,6,1,16,4,8,2,28,23,1,288,}, + {1,110,28,6,16,2,6,1,16,1,8,8,16,2,8,4,16,7,8,4,6,2,8,1,7,1,28,4,1,4,28,3,1,74,28,1,1,4,28,2,8,2,16,47,8,3,6,14,8,1,16,1,8,2,16,10,6,2,16,4,8,1,7,1,28,23,1,288,}, + {1,111,28,3,6,1,16,1,8,2,16,2,8,7,6,1,16,2,8,4,16,6,8,4,6,1,16,2,6,1,28,6,1,4,28,1,1,80,28,2,6,2,16,46,8,2,6,15,8,1,16,2,8,2,16,10,6,1,8,1,16,3,8,2,6,1,28,21,1,12,28,1,1,277,}, + {1,107,28,2,1,1,28,3,6,1,16,2,6,1,16,2,6,1,16,3,8,5,16,4,8,2,16,2,8,1,16,3,8,5,6,1,28,6,1,2,28,2,1,83,28,2,6,2,16,2,8,1,16,42,8,2,6,16,8,1,16,2,8,1,16,11,6,1,8,1,16,3,8,2,6,1,28,19,1,14,28,1,1,277,}, + {1,106,28,5,6,1,8,1,16,2,8,1,16,1,8,1,6,1,16,4,8,5,16,2,8,12,6,2,28,5,1,3,28,1,1,82,28,1,1,2,28,4,6,1,16,44,8,3,6,15,8,1,16,14,8,1,6,1,16,2,8,1,16,1,6,1,8,1,28,19,1,4,28,1,1,288,}, + {1,104,28,1,1,1,28,4,8,1,16,4,8,8,16,3,8,2,6,1,16,3,8,1,16,1,8,1,16,2,8,1,6,1,8,2,6,1,28,5,1,93,28,2,7,1,6,1,8,1,14,2,16,39,8,1,16,1,8,1,6,15,8,2,16,9,8,1,16,1,8,1,16,2,6,2,16,2,8,4,28,16,1,296,}, + {1,105,28,4,16,1,8,1,16,12,8,1,16,5,8,2,6,1,8,1,6,1,16,1,8,1,7,1,16,1,8,1,6,1,28,4,1,96,28,5,8,1,16,40,8,3,6,15,8,2,16,11,8,1,16,2,6,1,8,1,16,2,8,3,6,1,28,14,1,1,28,1,1,296,}, + {1,104,28,4,16,2,6,1,16,4,8,2,16,3,6,1,8,1,16,3,8,1,6,2,8,4,16,1,8,2,6,2,28,6,1,97,28,1,1,1,28,3,6,1,16,1,7,1,16,35,8,2,16,1,8,2,6,16,8,1,16,8,8,1,16,5,8,1,6,1,16,3,8,3,6,1,28,14,1,298,}, + {1,106,28,1,8,1,16,1,8,1,16,8,8,2,16,1,8,1,6,3,8,1,16,2,8,4,6,2,28,10,1,96,28,1,1,1,28,4,8,3,16,34,8,1,6,1,8,2,6,1,8,1,6,14,8,1,16,9,8,1,16,2,8,1,16,2,6,2,16,1,8,1,16,1,8,3,28,15,1,298,}, + {1,104,28,3,9,1,8,1,16,2,6,1,8,3,16,5,8,2,16,3,6,1,28,14,1,102,28,1,1,1,28,3,16,1,8,1,16,34,8,4,6,1,8,1,6,14,8,1,16,12,6,1,16,2,6,2,16,1,8,1,16,1,8,2,7,1,28,13,1,300,}, + {1,105,28,2,6,1,16,1,8,2,16,4,8,2,7,1,6,2,28,18,1,102,28,1,1,1,28,1,1,1,28,3,6,1,8,1,16,34,8,4,6,15,8,1,16,13,8,1,16,2,6,1,8,1,16,1,8,1,16,1,8,2,6,1,28,13,1,300,}, + {1,104,28,3,6,1,16,1,8,2,16,1,28,21,1,5,28,2,1,100,28,1,1,4,28,3,8,2,16,32,8,1,16,2,8,4,6,13,8,1,16,11,8,1,16,1,8,1,16,1,8,1,6,1,16,4,8,2,28,10,1,2,28,4,1,298,}, + {1,105,28,1,1,1,28,17,1,4,28,1,1,6,28,3,1,103,28,1,1,1,28,2,1,1,28,2,8,2,16,31,8,1,6,1,16,2,8,1,6,1,8,2,6,12,8,2,16,11,8,1,16,3,6,1,8,1,16,3,8,3,28,7,1,2,28,2,1,303,}, + {1,108,28,5,1,133,28,2,6,1,8,1,16,2,8,1,16,31,8,1,6,1,8,1,6,14,8,2,16,9,8,1,16,1,6,1,16,3,6,1,16,3,8,1,6,1,8,1,6,2,28,5,1,308,}, + {1,109,28,3,1,134,28,3,8,2,16,33,8,1,6,15,8,4,16,10,8,2,16,1,8,1,6,1,16,1,8,1,16,1,8,1,16,1,8,1,6,1,28,2,1,312,}, + {1,247,28,2,7,2,8,1,16,32,8,3,6,13,8,4,16,9,8,1,16,1,8,1,16,1,6,1,8,1,16,2,8,3,6,1,28,3,1,312,}, + {1,248,28,2,8,2,16,29,8,1,16,5,8,1,6,11,8,2,16,2,8,1,16,9,8,1,16,2,8,1,6,1,16,2,8,1,6,1,8,1,6,2,28,3,1,312,}, + {1,126,28,1,1,121,28,2,8,2,16,32,8,3,6,1,8,1,6,11,8,1,16,12,8,1,16,2,6,1,8,1,16,3,6,3,28,4,1,312,}, + {1,243,28,3,1,2,28,2,6,1,7,1,8,1,16,32,8,1,16,1,8,2,6,10,8,2,16,13,8,1,16,1,6,1,16,2,8,3,6,2,28,4,1,312,}, + {1,243,28,3,1,2,28,3,6,2,16,28,8,1,16,6,8,1,6,10,8,1,16,15,8,1,6,1,16,2,8,1,6,1,8,1,28,7,1,5,28,2,1,304,}, + {1,243,28,3,1,2,28,3,6,2,16,34,6,1,8,1,6,9,8,1,16,16,6,1,16,3,6,1,7,1,6,1,28,4,1,1,28,1,1,6,28,2,1,304,}, + {1,249,28,2,6,1,7,1,16,1,8,1,16,30,8,1,6,1,8,2,6,9,8,1,16,13,8,1,16,1,8,2,16,3,8,1,7,1,28,5,1,314,}, + {1,248,28,4,7,1,6,1,8,1,16,31,8,1,6,1,8,1,6,9,16,16,8,2,16,3,8,1,6,1,28,4,1,315,}, + {1,248,28,4,8,1,16,28,8,1,16,5,6,10,8,1,16,16,8,1,16,2,8,2,7,1,6,1,28,4,1,315,}, + {1,249,28,3,8,1,16,1,8,2,16,26,8,2,16,3,8,1,6,7,8,1,6,1,8,1,16,16,8,1,16,2,8,2,6,1,28,4,1,316,}, + {1,249,28,4,9,1,8,1,16,27,8,3,16,1,8,1,6,8,8,2,16,19,8,1,6,1,7,1,6,1,28,4,1,2,28,1,1,313,}, + {1,248,28,5,8,1,14,1,16,30,8,1,6,10,8,1,16,19,8,1,6,2,28,3,1,318,}, + {1,250,28,3,16,2,8,1,14,3,16,25,8,2,6,9,8,2,16,19,6,2,28,3,1,319,}, + {1,248,28,1,1,1,28,2,11,1,1,1,6,2,14,8,16,20,8,1,6,10,8,2,16,18,8,1,6,2,28,4,1,2,28,1,1,2,28,1,1,312,}, + {1,242,28,1,1,5,28,2,6,1,16,1,1,1,11,1,6,1,16,1,14,11,16,18,8,1,6,10,16,14,8,2,16,1,8,1,16,2,28,1,6,1,28,2,1,320,}, + {1,245,28,1,1,1,28,3,11,4,8,1,16,3,14,14,16,12,8,1,6,2,8,5,6,4,16,14,8,2,16,2,7,1,6,2,28,3,1,320,}, + {1,245,28,1,1,1,28,2,9,1,11,3,14,1,16,1,14,1,16,6,14,4,16,2,14,7,16,9,6,3,8,1,6,8,16,14,8,2,16,2,8,1,6,2,28,3,1,320,}, + {1,245,28,4,8,1,16,1,14,1,11,1,14,1,16,10,14,2,16,4,14,2,16,2,14,5,16,3,8,1,6,1,8,6,6,6,16,18,6,3,28,3,1,320,}, + {1,242,28,1,1,2,28,3,6,1,8,1,16,17,14,7,16,4,14,2,16,2,6,2,8,2,6,4,8,1,16,21,8,1,6,3,28,4,1,320,}, + {1,245,28,3,8,1,7,1,16,2,8,1,16,19,14,5,16,2,8,2,7,1,6,4,7,1,8,1,6,1,8,1,16,23,6,3,28,3,1,321,}, + {1,245,28,2,6,1,16,1,8,2,16,24,14,4,16,1,7,1,6,2,8,2,16,9,8,1,6,1,16,12,8,1,16,3,8,1,6,2,28,3,1,3,28,1,1,318,}, + {1,240,28,1,1,3,28,3,8,2,16,33,8,1,16,2,14,1,16,22,8,1,16,3,6,3,28,3,1,322,}, + {1,241,28,1,1,1,28,3,6,1,8,1,16,25,14,5,16,27,8,1,16,2,8,2,16,1,8,1,6,3,28,3,1,322,}, + {1,241,28,1,1,1,28,3,8,1,16,28,14,5,16,28,8,1,16,2,6,3,28,4,1,322,}, + {1,241,28,5,16,61,8,1,16,2,6,3,7,1,28,4,1,322,}, + {1,241,28,4,6,1,16,36,8,2,16,22,8,2,16,1,8,1,6,4,28,4,1,322,}, + {1,241,28,4,8,2,16,59,8,1,16,2,6,3,7,1,28,3,1,324,}, + {1,242,28,2,7,1,8,2,16,59,8,1,16,2,6,2,8,1,28,4,1,324,}, + {1,242,28,2,9,1,16,60,8,1,16,1,8,1,6,4,28,3,1,325,}, + {1,241,28,2,6,1,8,2,16,41,8,1,16,19,6,4,28,3,1,326,}, + {1,233,28,1,1,6,28,3,8,1,16,60,6,1,16,2,6,4,28,3,1,326,}, + {1,240,28,3,16,62,6,4,16,1,28,3,1,327,}, + {1,240,28,2,8,1,16,1,8,1,16,60,8,1,6,2,8,1,6,1,28,3,1,327,}, + {1,232,28,1,1,5,28,4,16,2,8,1,16,59,8,1,16,1,8,3,28,3,1,328,}, + {1,237,28,4,6,1,16,64,6,1,8,1,28,3,1,329,}, + {1,236,28,5,8,1,16,63,8,2,6,1,28,2,1,330,}, + {1,233,28,1,1,2,28,4,6,1,16,64,6,1,7,1,28,3,1,1,28,1,1,2,28,3,1,323,}, + {1,233,28,1,1,2,28,4,8,1,16,64,6,2,28,2,1,2,28,1,1,2,28,3,1,323,}, + {1,231,28,1,1,3,28,4,6,1,16,57,8,1,16,4,8,1,16,1,8,1,6,1,28,3,1,2,28,1,1,3,28,1,1,324,}, + {1,230,28,2,1,3,28,4,8,1,16,64,8,1,6,1,28,4,1,5,28,1,1,324,}, + {1,231,28,1,1,1,28,1,1,1,28,3,6,1,16,65,6,1,28,4,1,331,}, + {1,233,28,1,1,1,28,3,8,1,16,62,8,1,16,1,6,2,28,3,1,332,}, + {1,236,28,2,16,1,8,1,16,58,8,1,16,2,8,1,16,1,6,2,28,3,1,332,}, + {1,236,28,1,7,1,16,63,8,2,6,2,28,3,1,2,28,1,1,329,}, + {1,234,28,3,16,64,8,1,6,2,28,3,1,333,}, + {1,234,28,3,16,60,8,1,16,2,8,2,6,1,8,1,28,5,1,2,28,1,1,328,}, + {1,233,28,3,8,1,16,60,8,1,16,1,8,2,16,1,6,2,28,3,1,333,}, + {1,233,28,3,16,63,8,3,7,1,28,3,1,334,}, + {1,233,28,2,8,1,16,63,8,4,28,2,1,335,}, + {1,232,28,3,16,63,6,1,8,3,28,3,1,335,}, + {1,232,28,2,6,1,16,63,6,1,16,1,8,2,28,3,1,335,}, + {1,227,28,2,1,3,28,2,16,64,8,1,16,2,6,1,28,3,1,6,28,1,1,328,}, + {1,227,28,3,1,1,28,3,16,63,8,1,16,2,8,1,28,3,1,336,}, + {1,227,28,6,6,1,16,63,8,1,16,2,6,1,28,2,1,3,28,2,1,332,}, + {1,226,28,6,6,1,8,1,16,61,8,1,16,2,6,1,16,1,6,1,28,3,1,336,}, + {1,224,28,1,1,1,28,5,16,1,8,1,16,64,6,1,16,1,7,1,28,4,1,336,}, + {1,225,28,4,6,1,16,66,8,1,16,1,8,1,28,4,1,337,}, + {1,225,28,3,6,1,16,66,8,2,16,1,28,3,1,1,28,1,1,337,}, + {1,224,28,3,8,1,16,67,8,1,16,1,28,4,1,339,}, + {1,223,28,3,6,1,16,2,14,1,16,1,8,1,16,61,8,1,16,2,6,1,28,5,1,1,28,1,1,336,}, + {1,221,28,4,6,1,16,4,8,1,16,1,14,2,16,55,8,1,16,5,6,1,28,6,1,1,28,1,1,336,}, + {1,220,28,4,6,1,16,4,8,1,14,1,16,2,14,2,16,57,8,1,16,2,28,8,1,337,}, + {1,218,28,1,1,1,28,4,16,1,8,1,16,7,14,1,16,60,28,10,1,7,28,1,1,5,28,1,1,322,}, + {1,216,28,1,1,2,28,4,7,1,8,1,16,1,8,1,6,1,14,2,16,4,14,2,16,57,6,1,28,12,1,3,28,2,1,1,28,1,1,6,28,1,1,320,}, + {1,216,28,1,1,2,28,3,6,1,16,1,8,2,16,2,14,2,16,1,6,1,16,2,14,3,16,54,8,2,16,1,8,1,6,1,28,12,1,7,28,2,1,2,28,1,1,320,}, + {1,217,28,5,8,1,16,1,8,1,16,3,14,1,8,1,6,1,8,1,14,5,16,63,9,1,6,1,28,10,1,4,28,2,1,322,}, + {1,217,28,4,6,1,8,2,16,5,6,1,8,1,14,1,11,2,14,1,11,2,14,1,16,57,8,1,14,1,16,2,8,1,9,1,16,2,14,1,8,2,6,1,28,8,1,325,}, + {1,217,28,4,16,1,6,1,16,1,14,1,16,3,6,1,7,1,14,1,16,1,11,5,14,1,16,60,14,1,16,5,14,4,16,1,6,1,28,5,1,325,}, + {1,219,28,1,6,1,16,1,8,1,16,2,14,1,16,1,6,1,16,2,8,1,16,1,11,2,1,1,11,3,16,58,8,1,16,1,14,2,16,3,8,2,16,2,14,3,16,1,6,1,28,5,1,323,}, + {1,218,28,2,16,4,14,1,16,1,7,1,6,1,8,2,16,1,14,1,11,1,1,2,11,1,1,1,11,1,14,1,16,62,14,1,16,10,6,1,28,4,1,323,}, + {1,216,28,3,6,1,8,1,16,1,14,1,16,2,8,3,6,1,8,1,16,1,14,1,11,4,1,2,11,1,16,60,14,1,16,6,8,2,16,4,8,1,6,1,28,4,1,2,28,1,1,1,28,1,1,2,28,1,1,314,}, + {1,216,28,3,16,5,8,1,6,2,8,1,7,1,8,1,16,1,14,1,11,2,1,4,11,1,14,1,16,59,14,2,16,10,8,1,16,1,6,2,28,7,1,1,28,2,1,2,28,1,1,312,}, + {1,216,28,2,16,5,8,1,6,2,8,3,16,1,14,3,11,1,1,2,11,4,14,3,16,61,8,1,16,5,8,2,16,1,8,3,28,6,1,2,28,1,1,315,}, + {1,216,28,2,8,1,16,4,6,1,16,3,8,2,16,1,14,3,11,1,1,1,11,6,14,5,16,41,14,3,16,9,8,1,16,12,8,1,16,1,6,2,8,1,6,1,28,4,1,318,}, + {1,217,28,2,16,3,8,2,16,4,8,1,16,2,14,2,11,4,1,2,11,2,14,2,11,1,1,1,11,1,14,1,16,38,14,5,16,10,8,1,16,10,8,1,16,1,6,1,8,1,16,1,8,2,6,1,28,5,1,3,28,1,1,312,}, + {1,217,28,2,6,1,16,1,8,1,6,1,16,1,8,1,16,6,14,2,11,2,1,3,11,3,14,1,16,1,14,1,1,2,11,1,14,1,16,32,14,1,16,1,14,5,11,1,14,1,16,12,8,2,16,4,8,1,16,3,8,1,16,2,8,6,28,4,1,3,28,1,1,312,}, + {1,217,28,4,16,1,7,1,8,1,16,1,8,1,16,5,14,3,11,7,14,1,16,1,14,1,11,4,16,33,14,5,11,1,14,5,16,2,8,2,16,6,8,2,16,4,8,1,16,3,8,1,16,1,6,2,16,1,8,1,6,1,16,1,6,1,28,5,1,314,}, + {1,218,28,2,6,1,16,1,8,1,16,2,8,1,16,5,14,4,11,6,14,1,16,2,14,2,11,1,1,1,11,1,14,1,16,26,14,2,16,4,14,8,16,2,8,1,6,2,16,2,14,1,16,2,8,1,16,2,8,1,16,4,8,2,16,3,8,1,16,2,8,2,16,1,8,1,6,2,28,3,1,2,28,1,1,312,}, + {1,213,28,2,1,3,28,2,16,3,8,2,16,7,14,3,11,2,14,3,11,1,14,1,16,2,14,4,11,1,14,2,16,26,14,3,16,1,14,4,16,6,6,4,16,2,14,1,16,2,8,1,16,4,8,2,16,2,6,1,16,9,8,2,6,1,28,4,1,314,}, + {1,208,28,1,1,2,28,8,8,1,16,3,8,1,16,8,14,3,11,2,14,4,16,3,14,4,11,1,1,1,11,1,16,23,14,5,16,1,11,1,14,2,16,1,8,1,16,2,8,1,16,3,8,1,6,2,8,1,16,5,8,1,16,3,8,1,6,1,16,1,8,1,16,3,8,1,16,2,8,1,16,6,8,1,6,1,28,3,1,314,}, + {1,210,28,2,1,2,28,4,6,1,16,1,6,1,16,2,6,1,8,1,16,7,14,9,16,3,14,5,11,1,1,1,11,1,14,1,16,20,14,2,16,1,14,2,11,2,1,1,14,1,16,1,6,1,8,1,16,7,6,2,16,4,8,1,16,2,8,2,16,4,6,2,16,11,8,2,6,1,28,4,1,6,28,1,1,306,}, + {1,209,28,2,1,2,28,5,16,2,8,1,16,1,8,1,16,1,8,2,16,7,14,8,16,5,14,4,11,1,1,2,14,3,16,16,14,5,11,1,1,2,14,1,8,1,6,2,16,2,8,1,16,5,6,1,16,8,8,2,16,4,6,1,28,1,6,1,8,1,16,8,8,2,16,1,6,1,28,5,1,312,}, + {1,212,28,5,16,2,8,1,16,2,8,1,16,10,14,8,16,3,8,1,16,2,14,1,11,1,14,2,11,1,1,1,11,3,14,18,11,2,1,2,11,1,14,1,16,1,8,2,16,3,8,1,16,1,8,1,16,13,8,3,16,2,14,1,28,2,8,1,6,1,8,1,16,5,8,2,16,2,6,2,28,6,1,310,}, + {1,211,28,5,6,1,16,1,8,1,16,2,6,1,16,12,14,6,16,8,14,2,11,6,14,9,11,7,1,6,11,1,14,4,16,20,8,1,6,1,8,1,16,1,14,1,8,1,28,1,6,2,8,2,16,8,8,1,7,1,28,6,1,310,}, + {1,209,28,6,6,1,16,5,8,2,16,12,14,5,16,10,11,5,14,2,11,2,14,1,16,4,14,1,11,3,1,9,11,1,14,2,16,8,14,1,16,14,8,4,16,2,28,1,6,1,8,1,6,1,8,2,16,5,8,1,16,3,28,8,1,308,}, + {1,209,28,1,1,2,28,3,16,7,8,1,16,12,14,5,16,11,14,1,11,1,14,2,11,5,14,1,16,3,14,2,11,7,1,3,11,1,14,2,16,13,14,1,16,2,8,1,16,10,6,1,16,1,14,1,6,1,28,1,7,1,8,5,16,5,6,1,16,1,6,1,28,7,1,308,}, + {1,212,28,1,6,1,14,1,6,1,16,20,14,4,16,11,14,2,11,1,14,4,11,2,14,1,16,5,14,2,11,3,1,3,11,2,14,4,16,12,14,1,16,8,8,1,16,4,6,1,16,1,14,1,6,1,28,2,8,1,6,1,8,1,16,1,6,1,8,1,16,1,8,1,16,3,8,2,28,8,1,2,28,1,1,304,}, + {1,210,28,4,16,4,8,1,16,2,8,1,6,1,16,1,8,1,16,11,14,4,16,12,14,4,11,1,14,2,11,2,14,1,16,5,14,2,11,2,1,1,11,3,14,4,16,10,14,1,16,2,14,1,16,3,8,1,16,10,6,1,14,1,8,1,28,2,8,2,6,1,8,1,6,2,16,2,8,1,16,2,8,2,6,1,28,9,1,305,}, + {1,210,28,5,16,1,8,1,16,4,8,1,16,15,14,3,16,14,14,6,11,1,14,2,16,5,14,10,16,29,6,1,16,2,28,2,6,1,16,1,8,1,16,1,8,1,6,1,8,1,16,1,6,1,16,2,6,1,8,2,28,9,1,305,}, + {1,211,28,5,16,21,14,3,16,15,14,1,16,1,14,7,16,5,14,8,16,29,8,1,6,2,14,1,6,1,28,2,16,4,6,1,8,1,6,2,8,1,16,1,8,2,16,1,6,1,28,9,1,304,}, + {1,208,28,1,1,3,28,5,8,1,16,2,8,2,16,15,14,3,16,19,14,5,16,6,14,7,16,26,8,1,16,1,8,1,6,1,16,1,6,1,16,1,8,1,28,2,6,1,16,3,8,2,6,2,8,1,16,2,8,1,16,1,6,1,28,10,1,303,}, + {1,212,28,6,16,3,8,1,16,16,14,2,16,20,14,5,16,7,14,7,16,2,14,1,16,11,8,2,16,10,8,1,16,1,8,1,6,1,8,1,16,1,28,2,6,1,16,1,8,2,16,2,8,1,6,3,16,1,8,3,28,11,1,302,}, + {1,213,28,6,6,1,14,1,16,1,6,1,16,38,14,5,16,8,14,12,16,7,6,3,8,1,16,3,8,2,16,2,8,1,6,1,16,1,6,4,28,3,16,2,8,1,16,1,8,1,16,2,8,1,6,1,8,3,16,1,6,1,28,11,1,301,}, + {1,216,28,5,16,2,7,1,8,2,16,36,14,5,16,9,14,7,16,6,8,2,16,1,8,1,28,5,7,1,16,1,8,5,6,2,8,2,6,1,28,4,8,1,16,1,8,1,16,1,6,1,16,3,6,2,8,2,16,1,6,1,28,11,1,301,}, + {1,218,28,3,6,1,16,2,7,1,8,2,16,4,8,1,16,30,14,6,16,10,14,3,16,7,6,1,16,1,8,1,6,1,16,1,6,1,28,6,16,1,8,1,6,1,8,2,6,1,16,2,6,2,28,5,6,2,7,1,16,1,7,1,16,3,8,1,6,1,8,1,16,2,28,12,1,300,}, + {1,217,28,4,11,1,16,1,28,1,16,3,8,1,16,36,14,5,16,18,8,2,16,1,8,1,6,1,16,1,6,1,28,7,6,1,16,1,6,1,8,1,6,2,8,1,16,1,8,1,6,1,28,7,8,3,16,4,8,1,6,1,8,1,28,14,1,298,}, + {1,209,28,1,1,9,28,1,17,1,11,1,28,3,16,2,8,1,16,2,8,1,16,33,14,5,16,15,8,6,6,1,8,1,16,1,6,1,28,8,6,1,7,2,6,2,8,2,6,1,16,1,28,9,6,1,16,1,8,1,6,1,16,2,8,2,6,1,28,13,1,298,}, + {1,209,28,1,1,6,28,1,1,1,28,1,6,1,1,1,6,1,28,4,8,2,7,1,8,2,16,3,8,2,16,29,14,5,16,8,8,9,16,1,8,2,6,1,8,1,16,1,7,1,28,10,8,1,6,1,16,1,8,1,6,2,16,1,6,1,28,9,6,1,16,1,8,1,6,2,8,1,6,1,8,1,28,5,1,1,28,7,1,298,}, + {1,216,28,1,1,1,28,1,16,1,1,1,28,5,6,1,16,1,8,1,7,1,8,1,16,3,8,3,16,29,14,4,16,7,8,2,6,1,8,5,6,1,8,4,6,1,7,1,16,1,8,1,28,10,6,5,8,1,6,1,8,1,28,10,8,1,14,1,16,5,9,1,28,2,1,7,28,3,1,298,}, + {1,217,28,2,1,1,16,1,28,6,1,1,14,1,16,1,8,1,7,1,16,35,14,4,16,8,8,1,16,3,8,2,6,1,8,4,6,2,16,1,8,1,28,11,7,1,6,1,16,1,6,4,8,1,28,10,16,1,17,1,16,2,8,1,6,2,28,4,1,3,28,1,1,302,}, + {1,216,28,2,7,1,1,1,28,1,1,2,28,3,6,1,1,2,14,1,16,2,8,1,16,3,14,3,16,29,14,4,16,9,8,9,6,2,16,2,28,12,6,1,16,1,6,2,8,3,28,17,1,2,28,1,1,3,28,1,1,303,}, + {1,216,28,1,1,1,28,1,9,1,28,2,1,3,28,1,8,1,1,3,11,1,14,1,16,2,8,3,9,1,16,18,8,1,16,12,14,3,16,7,8,3,6,1,8,2,16,2,8,2,16,1,6,2,16,1,14,1,28,12,6,2,8,1,16,1,6,1,8,2,6,1,28,14,1,4,28,1,1,2,28,1,1,3,28,2,1,2,28,1,1,296,}, + {1,218,28,2,1,5,28,1,9,1,1,1,11,2,1,4,11,1,16,3,9,1,8,3,16,6,14,1,16,9,8,1,16,9,14,4,16,7,8,6,16,4,8,2,6,1,16,1,14,1,28,13,6,2,8,1,6,1,8,1,16,2,28,13,1,313,}, + {1,225,28,1,9,1,1,1,11,1,1,9,11,2,14,1,16,3,8,4,16,10,8,2,16,9,14,3,16,7,8,5,16,4,8,1,6,3,16,1,14,1,28,14,6,1,8,1,6,1,8,1,16,2,6,1,28,12,1,313,}, + {1,225,28,1,9,1,1,3,11,1,1,13,11,1,14,2,16,1,8,2,16,20,14,1,16,8,8,1,16,1,8,2,16,4,8,2,6,3,16,1,14,1,28,14,6,1,8,1,6,1,8,2,16,2,28,13,1,312,}, + {1,225,28,1,9,1,1,2,11,1,1,18,11,1,14,2,16,10,8,3,16,5,14,3,16,14,8,2,6,1,8,3,16,1,14,1,6,1,28,14,8,1,7,1,8,1,16,3,28,13,1,312,}, + {1,225,28,1,7,1,1,1,11,2,1,2,11,1,1,20,11,1,14,1,16,5,8,5,16,5,14,1,16,14,8,2,6,3,8,1,7,1,8,1,14,1,6,1,28,14,6,1,8,1,16,4,6,1,28,13,1,311,}, + {1,224,28,3,11,1,1,1,11,4,1,23,11,2,14,1,16,2,8,2,7,1,8,2,16,4,14,1,16,13,8,4,6,4,8,1,11,1,7,1,28,15,8,2,16,3,6,1,28,13,1,311,}, + {1,224,28,3,7,1,1,1,11,2,1,5,11,1,1,3,11,1,1,6,11,1,1,11,11,2,14,1,16,2,8,4,16,3,14,1,16,7,8,1,16,4,8,1,6,1,8,1,16,2,8,1,6,2,8,1,11,1,8,1,28,15,8,3,16,2,8,1,28,14,1,310,}, + {1,225,28,1,1,1,28,1,8,1,1,3,11,2,1,5,11,1,1,3,11,1,1,4,11,3,1,12,11,2,16,1,8,3,7,1,8,1,16,8,8,1,16,4,6,2,16,2,8,1,16,1,6,3,14,1,7,1,28,7,6,3,7,1,6,4,16,1,6,2,16,1,14,1,16,1,28,14,1,310,}, + {1,228,28,2,10,1,11,1,1,4,11,3,1,2,11,2,1,16,11,1,1,6,11,2,14,1,16,6,8,3,6,2,8,5,7,1,8,2,6,1,8,1,16,1,8,2,16,2,28,1,6,2,8,1,16,1,8,1,6,2,8,2,6,1,7,1,8,1,6,1,8,1,16,1,8,1,6,1,16,3,28,12,1,312,}, + {1,229,28,4,7,1,11,1,1,4,11,4,1,3,11,4,1,5,11,2,1,5,11,2,1,8,11,1,14,5,16,2,14,3,16,6,6,4,16,7,8,1,6,9,8,4,16,2,28,8,1,2,28,1,1,313,}, + {1,233,28,3,29,1,9,1,11,1,1,4,11,3,1,4,11,5,1,3,11,3,1,28,14,1,16,7,8,5,6,2,7,1,6,8,8,1,16,2,28,8,1,316,}, + {1,224,28,1,1,4,28,1,1,2,28,1,1,3,28,4,6,1,9,1,11,1,1,4,11,1,1,1,11,1,1,6,11,4,1,1,11,11,1,23,11,1,1,1,11,6,14,2,16,7,6,2,16,2,28,7,1,317,}, + {1,240,28,5,8,1,11,1,1,5,11,8,1,3,11,1,1,1,11,17,1,1,11,6,1,2,11,1,1,12,11,1,1,3,16,3,14,1,16,4,6,1,28,4,1,3,28,1,1,315,}, + {1,230,28,2,1,6,28,2,1,4,28,6,9,1,11,1,1,6,11,5,1,1,11,10,1,2,11,4,1,3,11,5,1,1,11,3,1,1,11,2,1,10,11,1,1,1,11,4,16,2,14,1,16,1,6,1,28,4,1,320,}, + {1,241,28,1,1,5,28,7,29,1,8,1,12,1,11,1,1,4,11,30,1,2,11,1,1,4,11,9,1,3,11,2,1,1,11,1,29,1,28,1,1,10,28,1,1,312,}, + {1,254,28,6,7,1,9,1,17,1,11,1,1,5,11,5,1,2,11,13,1,2,11,7,1,9,11,1,16,4,8,1,7,1,29,1,28,1,1,2,28,1,1,321,}, + {1,260,28,6,7,1,9,1,16,1,17,1,11,3,1,5,11,2,1,15,11,1,1,3,11,1,12,1,10,1,6,1,29,1,28,12,1,324,}, + {1,263,28,14,29,2,6,1,28,1,29,2,6,1,7,1,8,1,10,1,9,1,10,1,8,1,7,2,8,2,7,2,28,11,1,333,}, + {1,256,28,2,1,6,28,3,1,3,28,3,1,7,28,16,1,7,28,1,1,6,28,2,1,328,}, + {1,297,28,2,1,341,}, + {1,269,28,3,1,30,28,2,1,336,}, + {1,256,28,1,1,7,28,2,1,6,28,2,1,22,28,2,1,342,}, + {1,304,28,3,1,333,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, + {1,640,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino16.lua b/map_gen/data/presets/dino16.lua new file mode 100644 index 00000000..da8c0094 --- /dev/null +++ b/map_gen/data/presets/dino16.lua @@ -0,0 +1,148 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 141, +width = 329, +data = { + {1,250,11,5,1,74,}, + {1,245,11,1,16,1,7,1,29,1,28,8,6,1,9,1,11,1,1,69,}, + {1,242,11,1,8,1,28,16,29,1,17,1,1,67,}, + {1,239,11,1,8,1,28,6,29,2,6,6,30,1,29,1,28,5,29,1,11,1,1,65,}, + {1,237,11,1,6,1,28,5,29,1,6,14,29,1,28,4,16,1,1,64,}, + {1,235,17,1,29,1,28,4,29,1,6,19,28,4,1,64,}, + {1,233,11,1,29,1,28,4,6,23,29,1,28,2,11,1,1,63,}, + {1,231,11,1,6,1,28,3,29,1,6,19,30,1,29,2,30,1,6,3,28,2,1,64,}, + {1,230,9,1,28,4,6,15,30,1,29,1,28,12,29,1,1,64,}, + {1,228,11,1,29,1,28,3,30,1,6,14,29,1,28,15,8,1,1,55,11,2,1,7,}, + {1,227,9,1,28,3,29,1,6,13,29,1,28,18,11,1,1,52,11,2,17,1,1,1,11,1,1,7,}, + {1,225,11,1,29,1,28,3,6,13,29,1,28,20,1,49,11,2,12,1,28,3,11,1,1,9,}, + {1,224,17,1,28,3,29,1,6,12,28,22,29,1,1,46,11,2,10,1,28,4,17,1,11,1,1,10,}, + {1,223,9,1,28,3,6,12,29,1,28,23,6,1,1,43,11,2,10,1,28,6,11,1,1,12,}, + {1,222,6,1,28,3,6,11,29,1,28,25,30,1,1,40,11,2,7,1,28,7,17,1,11,1,1,13,}, + {1,221,30,1,28,2,29,1,6,11,28,28,1,37,11,2,7,1,28,9,11,1,1,15,}, + {1,220,29,1,28,2,30,1,6,10,29,1,28,29,11,1,1,34,11,1,17,1,28,10,16,1,11,1,1,16,}, + {1,218,11,1,29,1,28,2,30,1,6,10,28,31,9,1,1,31,11,2,29,1,28,11,11,1,1,18,}, + {1,218,28,3,6,10,29,1,28,32,6,1,1,29,11,1,9,1,28,12,10,1,11,1,1,19,}, + {1,217,29,1,28,2,6,10,29,1,28,34,1,27,11,1,6,1,28,13,11,1,1,21,}, + {1,154,11,3,8,1,6,2,30,1,29,1,28,2,6,1,11,15,1,1,11,3,1,32,6,1,28,2,29,1,6,9,28,36,16,1,1,23,11,2,28,14,29,1,11,1,1,22,}, + {1,146,11,11,6,1,28,6,16,1,11,17,28,4,29,1,17,1,11,3,1,24,9,1,28,2,29,1,6,9,28,37,30,1,1,21,11,1,17,1,28,15,16,1,11,1,1,23,}, + {1,139,11,1,16,1,11,16,9,1,28,5,6,1,11,18,6,1,28,3,6,1,11,10,1,17,11,1,28,3,6,9,28,39,11,1,1,18,11,2,28,16,11,1,1,25,}, + {1,134,11,1,16,1,7,1,28,3,16,1,11,16,9,1,28,5,16,1,11,18,6,1,28,3,16,1,11,16,1,11,29,1,28,2,6,9,28,31,7,1,8,1,28,7,8,1,1,17,11,1,28,16,29,1,11,1,1,24,11,1,1,1,}, + {1,131,11,1,9,1,28,7,6,1,11,14,16,1,6,1,28,6,6,1,11,16,16,1,29,1,28,3,6,1,11,20,7,1,16,1,11,1,1,4,9,1,28,2,29,1,6,8,28,31,30,1,11,2,7,1,28,7,1,15,11,1,28,17,12,1,11,1,1,15,11,1,1,1,11,3,17,1,16,1,10,2,1,3,}, + {1,127,11,4,6,1,28,9,9,1,11,12,7,1,28,9,9,1,11,13,16,1,30,1,28,5,16,1,11,20,6,1,28,3,29,1,7,1,11,1,28,3,6,8,28,33,11,2,6,1,28,7,16,1,1,12,11,1,29,1,28,17,11,1,1,12,11,2,12,1,10,1,6,1,28,7,12,1,1,4,}, + {1,123,11,6,16,1,29,1,28,11,17,1,11,11,8,1,28,10,16,1,11,12,16,1,28,6,11,20,16,1,30,1,28,4,9,1,8,1,28,2,29,1,6,7,29,1,28,43,29,1,1,10,11,1,16,1,28,18,11,1,1,7,11,2,9,1,6,1,28,12,12,1,1,6,}, + {1,120,11,9,16,1,28,11,30,1,17,1,11,12,30,1,28,9,9,1,11,13,7,1,28,5,7,1,11,17,17,1,7,1,28,6,11,1,28,3,6,8,28,45,17,1,1,8,11,1,28,18,7,1,11,1,1,4,11,1,9,1,29,1,28,15,12,1,1,8,}, + {1,116,11,1,17,1,11,12,16,1,28,9,8,1,11,14,12,1,28,8,16,1,11,15,29,1,28,5,16,1,11,15,8,1,28,7,9,1,8,1,28,2,30,1,6,7,28,46,29,1,1,6,11,1,9,1,28,18,16,1,1,2,11,1,16,1,29,1,28,17,12,1,1,10,}, + {1,113,11,1,9,1,29,1,28,2,9,1,11,12,16,1,28,2,6,1,16,2,29,1,28,2,29,1,9,1,11,13,9,1,28,7,8,1,11,16,9,1,28,6,11,15,29,1,28,7,11,1,28,3,6,7,29,1,28,27,29,1,11,1,6,1,28,17,12,1,1,4,11,1,28,19,11,1,1,1,9,1,28,19,16,1,1,12,}, + {1,110,11,1,9,1,29,1,28,5,8,1,11,11,17,1,6,1,28,2,11,3,16,1,28,5,9,1,11,9,9,1,29,1,28,10,8,1,17,1,11,11,17,1,7,1,28,7,8,1,11,14,16,1,28,6,29,1,12,1,28,2,29,1,6,7,28,29,7,1,28,11,9,1,6,1,28,5,29,1,1,2,11,1,9,1,28,19,11,1,29,1,28,19,16,1,1,14,}, + {1,107,11,1,9,1,29,1,28,7,8,1,11,11,16,1,28,4,11,4,28,5,8,1,11,7,9,1,28,14,29,1,11,9,16,1,6,1,28,8,8,1,11,16,8,1,28,5,16,1,7,1,28,2,6,7,29,1,28,41,6,1,28,7,16,1,11,1,28,20,12,1,28,19,9,1,1,16,}, + {1,105,11,1,16,1,28,10,6,1,8,1,16,1,11,8,7,1,28,5,9,1,11,2,7,1,28,5,7,1,11,7,28,16,11,8,7,1,28,9,16,1,11,18,29,1,28,4,11,1,28,3,6,7,28,49,6,1,17,1,28,20,16,1,28,18,8,1,1,18,}, + {1,102,11,5,16,1,28,12,8,1,11,6,16,1,28,7,29,1,28,7,6,1,11,7,28,16,11,8,28,10,29,1,9,1,11,16,16,1,29,1,28,3,29,1,17,1,28,2,29,1,6,6,29,1,28,48,8,1,9,1,28,19,6,1,9,1,28,17,6,1,11,1,1,19,}, + {1,99,11,9,8,1,28,11,6,1,11,6,16,1,28,15,6,1,11,6,16,1,28,16,11,8,28,13,8,1,11,12,16,1,30,1,28,5,7,1,9,1,28,2,6,7,28,48,16,1,6,1,28,19,10,1,7,1,28,17,11,1,1,21,}, + {1,95,11,12,7,1,28,13,11,6,16,1,28,15,30,1,11,6,16,1,28,16,17,1,11,6,16,1,28,14,11,10,16,1,29,1,28,7,16,1,6,1,28,2,6,6,29,1,28,47,12,1,28,20,10,1,6,1,28,16,16,1,1,23,}, + {1,93,16,1,30,1,6,1,11,10,6,1,28,14,16,1,11,5,16,1,28,15,29,1,11,6,9,1,28,16,12,1,11,6,16,1,28,5,29,1,7,1,29,1,28,6,11,9,6,1,28,9,11,1,28,2,29,1,6,6,28,46,29,1,17,1,28,10,29,1,28,9,10,1,6,1,28,15,6,1,11,1,1,24,}, + {1,90,11,1,8,1,28,3,9,1,16,1,11,8,29,1,28,15,9,1,11,5,17,1,28,16,11,6,9,1,28,16,16,1,11,6,9,1,28,4,29,1,11,3,28,6,17,1,11,8,28,10,11,1,28,2,30,1,6,6,28,45,6,1,11,1,28,10,16,1,28,9,8,1,7,1,28,15,12,1,1,26,}, + {1,88,17,1,30,1,28,8,16,1,11,6,28,16,6,1,11,6,28,16,11,6,8,1,28,16,16,1,11,6,9,1,28,4,6,1,11,3,6,1,28,5,12,1,11,8,28,10,11,1,28,2,6,6,29,1,28,35,6,1,16,1,9,1,28,6,6,1,11,1,28,10,11,1,28,9,8,1,7,1,28,14,6,1,1,28,}, + {1,86,11,1,28,11,7,1,11,6,29,1,28,15,29,1,11,6,29,1,28,15,16,1,11,5,9,1,28,16,16,1,11,6,8,1,28,5,17,1,11,1,17,1,28,6,16,1,11,7,12,1,28,9,29,1,16,1,28,2,6,6,28,36,16,1,11,2,29,1,28,4,30,1,17,1,28,9,7,1,11,1,28,9,10,1,6,1,28,14,16,1,1,29,}, + {1,84,11,2,28,13,11,6,6,1,28,16,17,1,11,5,6,1,28,16,11,5,9,1,28,7,6,1,16,1,8,1,28,6,9,1,11,6,9,1,28,6,6,1,28,7,16,1,11,7,16,1,28,9,30,1,16,1,28,2,6,6,28,36,9,1,11,1,17,1,28,4,29,1,7,1,16,1,28,8,9,1,11,1,28,9,6,1,7,1,28,14,11,1,1,30,}, + {1,82,11,4,16,1,29,1,28,11,16,1,11,5,8,1,28,10,7,1,9,1,29,1,28,3,6,1,11,5,9,1,28,16,6,1,11,4,17,1,28,7,9,1,11,2,28,7,17,1,11,5,9,1,28,14,9,1,11,7,9,1,28,9,30,1,16,1,28,2,6,6,28,37,29,1,28,5,6,1,9,1,28,8,16,1,11,1,8,1,28,9,10,1,28,13,29,1,1,32,}, + {1,80,11,8,28,11,8,1,11,5,9,1,28,9,6,1,11,2,16,1,28,4,6,1,11,5,28,17,9,1,11,4,29,1,28,6,30,1,16,1,8,1,28,7,6,1,11,5,16,1,28,14,9,1,11,7,9,1,28,9,29,1,16,1,28,2,6,5,29,1,28,43,6,1,16,1,28,7,16,1,11,1,12,1,28,9,16,1,28,13,7,1,1,33,}, + {1,78,11,9,7,1,28,11,29,1,11,5,17,1,28,9,6,1,11,2,17,1,28,5,6,1,11,4,8,1,28,17,16,1,11,3,7,1,28,17,9,1,11,5,28,14,9,1,11,7,8,1,28,10,17,1,28,2,6,5,29,1,28,42,29,1,6,1,16,1,28,6,16,1,11,2,28,9,11,1,28,13,8,1,1,34,}, + {1,76,9,1,8,1,11,8,8,1,28,13,16,1,11,5,29,1,28,9,8,1,16,1,6,1,28,6,30,1,17,1,11,3,28,18,16,1,11,2,16,1,28,18,16,1,11,4,29,1,28,13,8,1,11,7,8,1,28,10,11,1,28,2,30,1,6,4,28,25,6,1,11,1,8,1,28,15,29,1,6,1,16,1,28,5,9,1,11,2,28,9,17,1,6,1,11,1,6,1,28,10,9,1,1,35,}, + {1,74,16,1,28,2,16,1,11,7,8,1,28,14,6,1,11,5,8,1,28,20,16,1,11,2,9,1,28,18,17,1,11,2,28,19,17,1,11,3,8,1,28,13,6,1,11,7,9,1,28,10,11,1,28,2,29,1,6,4,28,25,6,1,11,1,8,1,28,15,29,1,6,1,16,1,28,4,8,1,11,2,10,1,28,8,11,1,29,1,28,2,12,1,9,1,28,8,9,1,1,36,}, + {1,72,16,1,29,1,28,2,29,1,9,1,16,1,17,1,11,5,8,1,28,15,6,1,11,5,29,1,28,20,9,1,11,2,29,1,28,17,29,1,17,1,11,1,8,1,28,18,29,1,17,1,11,2,17,1,28,14,9,1,11,6,9,1,28,10,16,1,6,1,28,2,6,4,28,43,29,1,6,1,9,1,6,1,28,2,29,1,11,3,28,8,16,1,8,1,28,4,7,1,11,1,29,1,28,5,9,1,1,37,}, + {1,70,11,1,30,1,28,7,30,1,11,5,16,1,28,5,8,1,7,1,28,9,29,1,17,1,11,3,9,1,28,21,6,1,17,1,16,1,28,18,29,1,17,2,28,19,30,1,11,3,6,1,28,14,17,1,11,5,16,1,28,10,7,1,9,1,28,2,29,1,6,3,29,1,28,43,6,2,11,1,28,2,11,3,28,4,10,1,28,3,6,1,9,1,29,1,28,5,29,1,12,1,16,1,28,3,7,1,1,38,}, + {1,69,8,1,28,5,8,1,6,1,28,3,16,1,11,5,28,4,7,1,11,2,29,1,28,10,9,1,11,3,6,1,28,22,16,1,7,1,28,18,29,1,17,1,6,1,28,19,6,1,11,2,9,1,28,14,6,1,11,6,28,11,11,1,28,3,6,3,29,1,28,34,6,2,28,7,30,1,6,1,8,1,17,1,11,3,7,1,28,3,16,1,28,4,16,1,6,1,28,8,6,1,11,1,7,1,6,1,1,39,}, + {1,67,16,1,28,6,7,1,11,2,29,1,28,2,7,1,11,5,30,1,28,3,29,1,11,1,17,1,28,12,6,1,17,1,11,1,17,1,28,23,7,1,29,1,28,18,29,1,9,1,28,20,6,1,11,2,28,15,8,1,11,5,30,1,28,5,29,1,28,4,16,1,6,1,28,2,29,1,6,3,28,34,30,1,29,1,28,8,6,2,8,1,11,2,17,1,28,3,17,1,28,4,11,1,6,1,29,1,28,10,9,1,1,40,}, + {1,65,11,1,30,1,28,7,6,1,11,1,17,1,28,4,17,1,11,4,8,1,28,20,9,1,11,1,9,1,28,43,29,1,28,21,30,1,11,1,8,1,28,15,9,1,11,4,8,1,28,4,7,1,11,1,17,1,28,3,30,1,17,1,28,3,6,3,28,45,6,3,16,1,11,1,8,1,6,1,11,1,6,1,28,3,17,1,8,1,29,1,28,13,16,1,1,38,}, + {1,64,11,1,6,1,28,15,8,1,11,4,17,1,28,21,29,1,16,1,8,1,28,65,6,1,16,1,28,16,16,1,11,3,16,1,28,4,16,1,11,2,6,1,28,3,16,1,6,1,28,3,6,2,29,1,28,45,6,4,8,1,16,1,11,1,17,1,12,2,11,1,9,1,29,1,28,15,29,1,17,1,1,36,}, + {1,62,11,4,29,1,28,14,29,1,11,5,8,1,28,22,7,1,29,1,28,22,6,2,28,35,6,1,9,1,7,1,28,3,6,2,28,16,16,1,11,3,6,1,28,3,6,1,16,1,9,1,28,4,29,1,11,1,28,4,6,2,28,41,6,1,28,4,29,1,6,9,28,19,29,1,1,35,}, + {1,61,11,4,6,1,28,16,29,1,16,1,11,4,29,1,28,14,6,1,16,1,7,1,28,27,6,1,11,2,30,1,28,33,6,1,11,3,7,1,28,20,29,1,12,1,11,2,9,1,28,11,8,1,16,1,28,4,6,1,29,1,28,39,9,1,11,1,7,1,28,6,29,4,28,23,11,1,1,34,}, + {1,60,11,4,7,1,28,19,8,1,11,3,16,1,28,14,11,3,30,1,28,26,30,1,11,2,29,1,28,33,8,1,11,3,9,1,28,21,29,1,16,1,11,2,28,12,16,1,9,1,28,4,29,1,28,39,6,1,16,1,29,1,28,10,30,1,28,22,11,1,1,34,}, + {1,58,11,5,16,1,28,21,29,1,16,1,11,2,16,1,28,13,11,3,29,1,28,27,29,2,28,34,30,1,11,3,6,1,28,22,29,1,16,1,11,1,7,1,28,12,17,1,9,1,28,55,29,1,28,1,29,2,28,20,1,35,}, + {1,56,16,1,29,1,9,1,11,5,28,23,6,1,16,1,11,1,9,1,28,12,6,1,9,1,7,1,28,65,30,1,8,1,6,1,28,24,29,1,16,2,28,13,16,2,28,54,29,1,28,3,6,1,28,19,1,28,11,2,1,5,}, + {1,54,11,1,6,1,28,2,29,1,11,5,29,1,28,24,29,1,9,1,8,1,28,107,29,1,16,1,6,1,28,13,16,2,28,35,30,1,8,1,30,1,28,20,29,1,7,1,28,16,29,1,1,27,11,1,28,1,7,1,1,5,}, + {1,53,16,1,28,5,9,1,11,4,8,1,28,26,29,2,28,107,29,1,9,1,28,14,7,1,11,1,6,1,28,32,6,1,11,3,6,1,28,19,27,1,26,1,27,1,29,1,28,15,6,1,11,1,1,24,11,1,28,3,1,5,}, + {1,52,6,1,28,6,6,1,11,4,16,1,28,136,29,1,28,15,29,1,11,1,16,1,28,31,9,1,11,3,8,1,28,19,9,1,28,3,9,1,28,16,30,1,17,1,1,21,11,1,28,4,1,5,}, + {1,50,17,1,29,1,28,8,16,1,11,4,29,1,28,153,8,1,11,1,9,1,28,29,6,1,11,3,6,1,28,19,26,1,28,3,27,1,15,1,25,1,28,16,6,1,11,1,1,18,11,1,28,5,1,5,}, + {1,49,8,1,28,10,6,1,11,4,16,1,28,8,6,1,29,1,28,144,29,1,9,1,11,1,16,1,6,1,29,4,28,23,6,1,9,1,6,1,28,20,26,1,28,3,9,4,26,1,28,16,8,1,1,16,11,1,28,6,1,5,}, + {1,47,11,1,29,1,28,6,7,1,29,1,28,4,6,1,17,1,11,3,7,1,28,6,16,1,11,2,7,1,28,145,29,1,9,1,11,1,12,1,8,1,6,6,30,1,29,1,28,35,6,1,28,8,9,6,29,1,28,15,29,1,1,14,11,1,28,7,1,5,}, + {1,46,9,1,28,7,6,1,11,1,9,1,28,5,29,1,9,1,11,3,6,1,28,4,6,1,11,3,12,1,28,148,8,1,11,2,9,1,6,8,29,1,28,32,29,1,28,8,26,1,9,4,27,1,9,1,25,1,28,15,30,1,1,12,12,1,28,8,1,5,}, + {1,45,16,1,28,9,8,1,30,1,28,7,30,1,16,1,11,1,17,1,29,1,28,3,29,1,11,3,16,1,28,133,29,17,30,1,16,1,11,1,17,1,9,1,6,8,29,1,28,30,29,1,28,8,27,1,9,1,27,1,26,2,9,1,28,2,6,1,28,14,12,1,1,9,11,1,16,1,28,9,1,5,}, + {1,44,11,2,29,1,28,19,30,1,9,1,16,1,29,1,28,3,7,1,16,2,29,1,28,109,29,44,7,1,16,1,11,1,16,1,6,9,28,34,27,1,28,25,6,1,1,8,11,1,6,1,28,9,7,1,1,5,}, + {1,42,11,4,9,1,28,21,29,1,7,1,28,92,29,71,9,1,11,1,8,1,6,9,28,27,29,1,28,5,27,1,9,1,27,2,26,1,28,5,29,1,28,15,1,7,11,1,28,11,11,1,1,5,}, + {1,41,7,1,17,1,11,4,29,1,28,62,29,7,28,22,29,95,6,1,11,1,9,1,6,9,30,1,28,26,29,1,28,13,29,1,28,16,11,1,1,5,11,1,28,11,11,2,1,5,}, + {1,39,11,1,29,1,28,1,6,1,11,4,16,1,28,59,29,9,28,7,29,113,11,1,16,1,6,10,29,1,28,26,29,1,28,9,29,1,28,18,17,1,1,3,11,1,12,1,28,10,12,1,11,3,1,5,}, + {1,38,16,1,28,4,16,1,11,4,9,1,28,42,29,13,28,1,29,9,28,10,29,113,16,1,17,1,6,10,30,1,28,26,29,1,6,1,28,5,6,1,29,1,28,19,9,1,1,2,11,1,6,1,28,9,12,1,11,2,16,1,8,1,11,1,1,5,}, + {1,37,7,1,28,6,7,1,16,1,11,3,9,1,29,1,28,16,29,45,28,14,29,112,9,1,11,1,7,1,6,10,28,53,6,1,1,1,11,1,28,15,29,1,1,6,}, + {1,35,11,1,6,1,28,7,29,2,6,1,9,1,11,2,16,1,29,60,28,9,29,2,28,5,29,112,7,1,11,1,8,1,6,10,28,51,29,1,6,1,11,1,28,16,12,1,1,6,}, + {1,34,11,1,29,14,6,1,9,1,16,1,6,1,29,57,28,9,7,1,11,2,7,1,28,5,29,112,6,1,11,1,8,1,6,10,29,1,28,49,6,2,11,1,28,16,11,1,1,6,}, + {1,33,16,1,29,75,28,10,8,1,11,2,8,1,28,6,29,112,6,1,11,1,8,1,6,10,28,49,6,2,12,1,28,16,1,7,}, + {1,32,8,1,29,75,28,12,6,2,28,8,29,25,28,20,29,67,6,1,11,1,8,1,6,10,28,47,29,1,6,2,16,1,28,2,6,1,28,12,12,1,1,7,}, + {1,30,11,1,6,1,29,45,28,15,29,16,28,23,29,17,28,39,29,56,6,1,11,1,7,1,6,10,28,46,29,1,6,2,16,1,1,1,11,1,28,13,11,1,1,7,}, + {1,29,11,1,29,13,8,1,6,1,29,25,28,26,29,11,28,24,29,11,28,53,29,49,8,1,11,1,6,11,28,45,29,1,6,2,9,1,11,2,28,3,11,1,28,8,6,1,1,8,}, + {1,29,6,1,29,12,16,1,11,2,6,1,29,19,28,33,29,8,28,26,29,5,28,67,29,41,16,1,9,1,6,10,29,1,28,45,6,3,11,1,12,1,28,1,9,1,11,2,28,8,11,1,1,8,}, + {1,27,11,2,17,1,6,1,29,11,16,1,11,2,6,1,29,15,28,37,29,8,28,106,29,33,7,1,16,1,6,11,28,45,6,3,16,1,11,5,28,8,1,9,}, + {1,26,16,1,11,3,17,1,6,1,29,10,30,1,9,1,7,1,29,13,28,39,29,9,28,3,8,1,29,1,28,86,29,6,28,17,29,25,16,1,9,1,6,11,29,1,28,44,29,1,6,2,7,1,11,5,29,1,28,1,16,1,11,1,8,1,28,2,11,1,1,9,}, + {1,25,6,1,29,2,8,1,16,1,11,2,6,1,29,21,28,43,9,1,29,7,28,4,9,1,29,1,28,22,7,1,28,60,29,11,28,21,29,18,16,1,11,1,6,11,29,1,28,46,6,3,9,1,11,9,28,1,29,1,1,10,}, + {1,23,11,1,6,1,29,5,6,1,8,1,16,1,8,1,29,17,28,45,6,1,7,1,29,7,28,29,7,1,28,57,29,9,28,31,29,10,6,1,11,1,16,1,6,9,29,1,28,50,6,3,9,1,11,8,9,1,11,1,1,10,}, + {1,22,11,1,29,25,28,48,8,1,6,1,29,7,28,29,8,1,28,56,29,8,28,39,29,2,6,1,16,1,11,1,8,1,6,7,29,1,28,54,6,4,9,1,17,1,11,5,16,1,11,1,1,10,}, + {1,21,17,1,29,23,28,51,9,1,6,1,29,7,28,30,8,1,28,54,29,8,28,41,6,1,11,1,9,1,6,6,29,1,28,58,29,1,6,9,30,1,28,1,16,1,1,9,}, + {1,20,16,1,29,21,28,54,8,1,6,1,29,7,28,30,7,1,28,53,29,8,28,10,9,1,8,1,28,29,9,1,17,1,6,6,29,1,28,63,29,2,30,1,29,2,28,5,16,1,1,8,}, + {1,19,9,1,29,2,8,2,29,16,28,56,6,1,7,1,29,7,28,31,8,1,28,51,29,8,28,10,6,1,11,2,28,29,17,1,6,5,29,1,28,17,30,1,28,44,29,1,28,13,11,1,1,7,}, + {1,18,9,1,29,2,6,1,11,2,6,1,29,12,28,60,8,1,29,7,28,11,6,1,9,1,6,1,28,17,7,1,28,50,8,1,29,7,28,12,8,2,28,29,16,1,6,4,28,19,1,1,6,1,28,41,6,1,1,4,16,1,29,1,28,10,1,7,}, + {1,17,8,1,29,4,9,2,29,10,28,63,16,1,29,7,28,11,16,1,11,1,16,1,28,6,6,2,28,10,7,1,28,49,8,1,29,6,28,44,11,1,9,1,6,2,28,19,9,1,6,1,16,2,6,1,28,39,11,1,1,5,11,1,6,1,28,9,9,1,1,6,}, + {1,16,7,1,29,15,28,28,29,1,6,1,7,1,9,2,16,4,12,1,11,1,12,1,16,1,9,2,7,1,6,1,29,1,28,19,16,1,29,7,28,11,30,1,9,1,30,1,28,6,29,1,6,1,28,10,8,1,28,48,7,1,29,7,28,3,9,1,28,41,16,2,6,1,28,19,11,1,28,3,7,1,17,1,11,1,16,1,9,2,8,2,9,3,16,1,8,1,28,27,16,1,1,6,12,1,28,10,1,6,}, + {1,15,7,1,29,13,28,23,6,1,8,1,16,1,17,1,11,1,17,1,12,1,16,2,11,1,1,19,11,1,16,1,6,1,28,13,8,1,6,1,29,6,28,81,9,1,29,7,28,3,7,1,28,42,6,1,11,1,6,1,28,17,7,2,28,15,6,1,11,1,6,1,28,26,11,1,1,5,11,1,30,1,28,9,11,1,1,5,}, + {1,14,16,1,29,12,28,19,6,1,9,1,12,1,11,1,16,1,9,1,8,1,9,1,1,32,12,1,29,1,28,10,9,1,29,6,28,33,9,1,28,47,9,1,29,6,28,49,16,1,11,1,6,1,28,15,17,1,28,18,16,2,28,26,9,1,11,1,1,2,11,1,8,1,28,10,16,1,1,5,}, + {1,13,16,1,11,1,16,1,30,1,29,8,28,16,6,1,9,1,17,1,11,1,16,1,8,1,6,1,8,1,1,40,12,1,28,8,16,1,30,1,29,5,28,33,7,1,28,47,9,1,29,6,28,51,9,1,11,1,9,1,28,12,29,1,16,1,28,20,11,1,7,1,28,3,6,1,8,1,9,1,16,1,11,6,8,1,28,26,16,1,1,5,}, + {1,12,6,1,29,1,30,1,7,1,8,1,6,1,30,4,28,15,6,1,16,1,11,1,16,1,8,1,29,1,28,1,1,47,11,1,6,1,28,6,9,1,29,6,28,33,7,1,28,46,9,1,29,6,28,53,11,3,9,1,29,1,28,8,16,1,28,22,8,1,11,2,17,1,10,1,28,8,11,1,1,2,16,1,29,1,28,23,16,1,1,5,}, + {1,11,6,1,30,7,29,1,28,13,29,1,9,1,11,1,16,1,6,1,28,2,1,53,11,1,29,1,28,4,16,1,6,1,29,5,28,33,9,1,28,46,9,1,29,5,28,52,7,1,17,1,6,1,1,5,11,1,16,1,8,1,6,1,28,3,11,1,28,37,9,1,1,2,16,1,29,1,28,21,16,1,1,5,}, + {1,10,7,1,30,6,29,1,28,12,8,1,17,1,12,1,8,1,28,2,1,59,16,1,28,4,16,1,29,5,28,33,9,1,28,46,16,1,29,5,28,24,7,1,28,26,17,1,16,1,1,14,17,1,28,40,11,1,1,1,9,1,28,4,7,1,16,1,11,3,17,1,6,1,28,9,17,1,1,5,}, + {1,9,7,1,30,5,28,12,9,1,11,1,9,1,29,1,28,2,1,63,11,1,28,3,8,1,7,1,29,4,28,33,29,1,28,46,16,1,29,5,28,24,7,1,28,24,16,1,11,1,1,16,11,2,7,1,28,40,9,1,11,1,9,1,11,1,1,8,11,1,28,8,11,1,1,5,}, + {1,8,8,1,30,4,28,11,9,1,11,1,9,1,29,1,28,1,1,68,11,1,7,1,28,2,16,1,6,1,29,4,28,33,8,1,28,45,16,1,29,5,28,9,16,1,11,1,29,1,28,12,29,1,28,22,9,1,1,21,11,2,9,1,28,42,7,1,17,1,11,2,1,6,6,1,28,6,11,1,1,5,}, + {1,7,8,1,30,2,29,1,28,10,9,1,11,1,9,1,28,2,1,72,11,1,16,1,28,2,16,1,29,4,28,33,9,1,28,45,8,1,6,1,29,4,28,9,7,1,16,1,28,14,7,1,28,19,9,1,1,26,11,2,9,1,29,1,28,43,7,1,16,1,11,3,1,1,6,1,28,5,1,6,}, + {1,6,9,1,6,1,29,1,28,9,6,1,11,1,16,1,29,1,28,1,1,76,11,2,6,1,28,1,16,1,29,3,28,33,9,1,28,46,9,1,29,4,28,16,29,1,28,8,7,1,28,17,16,1,1,1,11,1,1,29,11,2,12,1,7,1,28,46,11,1,6,1,28,3,6,1,1,6,}, + {1,5,16,1,28,10,16,1,12,1,6,1,28,1,1,81,11,2,9,2,29,3,28,32,9,1,28,46,16,1,29,4,28,16,29,1,28,8,7,1,28,14,29,1,11,2,12,1,9,1,17,1,1,33,11,2,16,1,6,1,28,43,11,1,29,1,28,2,9,1,1,6,}, + {1,4,12,1,28,8,6,1,11,1,9,1,28,2,1,85,11,2,9,1,29,2,28,32,9,1,28,46,9,1,6,1,29,3,28,25,6,1,28,12,9,1,11,2,16,1,9,3,16,1,1,37,11,2,12,1,7,1,28,39,9,1,11,1,28,2,11,1,1,6,}, + {1,3,17,1,28,7,9,1,11,1,8,1,29,1,1,90,11,1,9,1,29,2,28,31,9,1,28,47,16,1,29,3,28,35,9,1,11,2,17,1,9,6,16,1,1,41,11,3,9,1,6,1,28,34,11,1,1,1,11,1,28,1,1,7,}, + {1,2,11,1,28,6,9,1,17,1,7,1,1,94,11,1,16,1,29,1,28,31,9,1,28,47,16,1,29,3,28,26,6,1,28,3,29,1,8,1,11,3,16,1,9,10,1,46,11,3,16,1,6,1,28,28,11,1,1,3,16,1,1,7,}, + {1,1,11,1,28,5,16,1,17,1,9,1,1,97,11,1,16,1,29,1,28,30,9,1,28,48,9,1,29,2,28,26,11,5,12,1,16,1,9,13,1,51,11,3,12,1,9,1,6,1,28,21,16,1,11,1,1,11,}, + {1,1,16,1,28,3,9,1,17,2,1,101,11,1,29,1,28,29,9,1,28,48,16,1,30,1,29,1,28,26,16,1,9,19,11,1,1,56,11,3,17,1,9,1,7,1,6,1,28,13,17,1,11,1,1,12,}, + {11,1,28,2,7,1,11,2,1,102,16,1,9,1,16,1,28,29,8,1,28,49,9,1,29,1,28,26,16,1,9,19,11,1,1,62,11,5,12,1,16,1,9,1,8,1,7,1,6,2,16,1,11,1,1,14,}, + {11,1,28,1,11,2,1,103,16,1,9,1,6,2,29,1,28,27,6,1,8,1,28,49,9,1,6,1,28,26,16,1,9,19,11,1,1,90,}, + {17,1,11,1,1,104,16,2,6,3,28,28,16,1,17,2,11,2,16,1,8,1,6,1,28,38,29,1,7,1,16,1,11,2,17,1,16,1,28,26,16,1,9,19,1,91,}, + {1,105,9,1,17,1,6,3,28,29,16,1,9,4,16,2,17,1,12,1,17,1,11,2,12,1,9,1,8,1,6,1,29,1,28,23,29,1,7,1,9,1,17,1,11,3,1,5,16,1,8,1,28,25,16,1,9,19,1,91,}, + {1,105,17,1,7,1,6,2,28,29,16,2,9,11,16,3,17,1,12,2,17,1,11,4,12,1,16,2,9,7,16,1,12,1,17,1,11,3,17,1,11,1,1,12,16,1,28,25,16,1,9,18,16,1,1,91,}, + {1,104,16,1,8,1,6,2,29,1,28,28,8,1,16,1,9,19,16,1,1,33,11,1,16,1,28,24,16,1,9,18,16,1,1,91,}, + {1,103,17,1,16,1,6,3,28,28,7,1,16,1,9,19,16,1,1,35,11,1,8,1,28,23,16,1,9,18,11,1,1,91,}, + {1,103,17,1,6,3,28,28,29,1,16,1,9,19,16,1,11,1,1,36,11,1,6,1,28,22,16,1,9,18,11,1,1,91,}, + {1,102,16,1,9,1,6,3,28,27,29,1,16,1,9,19,16,1,11,1,1,37,11,1,16,1,29,1,28,20,8,1,16,1,9,17,16,1,1,92,}, + {1,102,17,1,6,3,28,27,9,20,16,1,11,2,1,38,16,1,6,2,28,20,16,1,9,18,11,1,1,92,}, + {1,101,11,1,9,1,6,3,28,25,7,1,16,1,9,18,16,1,11,2,1,39,16,1,7,1,6,1,29,1,28,20,12,1,9,17,16,1,1,93,}, + {1,101,17,1,6,3,28,24,6,1,16,2,9,17,16,1,11,2,1,40,16,1,9,1,6,2,28,20,9,1,16,1,9,17,11,1,1,93,}, + {1,100,11,1,9,1,6,3,28,22,6,1,16,2,9,17,16,1,11,1,1,43,16,1,6,2,28,21,12,1,9,17,11,1,1,94,}, + {1,100,11,1,6,3,29,1,28,20,7,1,16,2,9,17,16,1,11,1,1,44,16,1,8,1,6,1,29,1,28,20,16,2,9,16,11,1,1,95,}, + {1,100,16,1,6,3,28,19,8,1,16,2,9,17,16,1,11,1,1,46,16,1,6,2,28,20,9,1,16,1,9,15,16,1,11,1,1,96,}, + {1,99,11,1,8,1,6,2,29,1,28,17,16,1,17,1,16,1,9,17,16,1,11,1,1,47,16,1,8,1,6,1,30,1,28,19,16,2,9,15,16,1,11,1,1,97,}, + {1,99,17,1,6,3,28,16,16,1,1,1,11,1,9,17,16,1,11,1,1,49,16,1,6,2,28,19,16,2,9,14,16,1,11,1,1,99,}, + {1,99,16,1,6,3,28,14,16,1,1,3,17,1,9,15,16,1,11,1,1,50,17,1,9,1,6,2,28,17,7,1,16,1,9,15,17,1,11,1,1,100,}, + {1,98,11,1,8,1,6,2,29,1,28,12,9,1,1,5,16,1,9,14,11,1,1,52,16,1,6,2,29,1,28,15,6,1,16,2,9,14,16,1,11,1,1,102,}, + {1,98,11,1,6,3,28,11,6,1,11,1,1,5,11,1,9,13,16,1,1,54,16,1,6,2,28,15,16,2,9,15,11,1,1,104,}, + {1,98,17,1,6,3,28,10,8,1,11,1,1,6,11,1,9,12,16,1,1,55,8,1,6,2,28,13,7,1,11,1,17,1,9,14,16,1,1,106,}, + {1,98,16,1,6,3,28,9,29,1,11,1,1,7,11,1,9,12,11,1,1,54,17,1,6,2,30,1,28,12,17,1,1,2,16,1,9,12,16,1,11,1,1,107,}, + {1,98,9,1,6,2,29,1,28,9,16,1,1,8,16,1,9,11,16,1,11,1,1,54,16,1,6,2,28,11,8,1,1,3,11,1,9,12,16,1,1,109,}, + {1,98,9,1,6,2,29,1,28,8,29,1,17,1,1,8,16,1,9,11,17,1,1,55,16,1,6,2,28,10,17,1,1,4,11,1,9,11,17,1,1,110,}, + {1,97,11,1,8,1,6,2,28,9,9,1,11,1,1,8,16,1,9,4,16,5,9,2,11,1,1,55,9,1,6,2,28,8,30,1,11,1,1,5,11,1,9,10,11,1,1,111,}, + {1,97,11,1,8,1,6,2,29,1,6,1,9,1,16,4,8,1,29,1,17,1,1,9,16,2,17,1,11,4,17,2,11,3,1,55,11,1,8,1,6,2,28,8,16,1,1,6,17,1,9,9,16,1,1,112,}, + {1,98,16,2,17,1,16,1,9,1,8,1,6,3,29,1,6,1,9,1,17,1,11,1,1,8,11,2,16,1,9,9,16,1,17,1,11,1,1,52,11,1,6,2,29,1,28,7,9,1,1,7,16,1,9,4,16,5,11,1,1,112,}, + {1,97,11,1,16,1,8,1,6,10,29,1,28,1,7,1,16,1,11,1,1,4,16,1,9,16,11,1,1,1,11,6,1,43,11,1,6,2,29,1,6,1,9,6,11,1,1,7,16,2,11,3,12,1,16,3,17,1,11,3,1,110,}, + {1,96,11,1,8,1,6,14,28,2,29,1,11,1,7,1,8,1,7,4,16,1,9,14,17,1,6,1,28,5,17,1,1,42,11,1,16,3,9,1,6,4,30,1,29,1,7,1,16,1,11,2,1,3,11,2,12,1,16,1,9,9,16,1,11,2,1,108,}, + {1,95,11,1,9,1,6,16,28,2,7,1,28,7,16,1,9,6,16,1,11,8,16,2,7,1,28,2,6,1,11,1,1,40,11,2,8,1,6,10,29,1,28,1,6,1,17,1,12,2,16,5,9,10,16,1,11,1,16,5,11,1,1,101,}, + {1,95,17,1,8,1,6,11,9,1,8,1,7,6,8,1,29,3,28,3,16,1,9,6,11,1,29,10,9,1,6,1,28,2,11,1,1,40,11,1,8,1,6,12,30,1,28,1,29,1,10,1,28,5,16,1,9,5,16,6,11,1,16,1,7,1,6,1,28,2,9,1,1,101,}, + {1,94,11,1,9,1,6,11,7,1,6,1,28,14,10,1,9,5,12,1,7,1,28,11,16,1,28,2,16,1,1,39,11,1,16,1,6,10,8,4,7,2,8,1,6,1,28,5,16,1,9,4,17,1,6,8,8,2,28,2,11,1,1,100,}, + {1,94,11,1,9,1,6,11,9,1,28,12,6,1,28,3,16,1,9,4,11,1,28,12,12,1,17,2,11,1,1,39,11,1,8,1,6,9,8,1,28,13,16,1,9,3,16,1,6,1,28,9,16,1,28,2,17,1,1,100,}, + {1,94,16,1,8,1,6,11,9,1,28,13,12,1,16,3,9,4,12,1,28,12,7,1,1,41,11,1,16,1,7,1,6,9,8,1,28,10,29,1,28,2,16,1,9,3,17,1,28,10,10,1,11,3,1,100,}, + {1,94,11,3,16,3,9,2,8,2,7,2,6,2,28,13,11,9,17,9,12,3,17,1,1,41,11,1,16,1,8,1,7,1,6,8,29,1,28,11,11,1,17,1,12,1,16,4,29,10,6,1,11,1,1,102,}, + {1,101,11,7,17,7,12,6,11,1,1,63,11,8,17,2,11,1,16,1,6,8,29,2,9,1,1,2,11,9,1,2,11,5,1,103,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino17.lua b/map_gen/data/presets/dino17.lua new file mode 100644 index 00000000..f643bf3c --- /dev/null +++ b/map_gen/data/presets/dino17.lua @@ -0,0 +1,147 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 140, +width = 146, +data = { + {1,83,11,2,16,1,8,1,16,1,6,16,8,1,16,1,17,1,11,1,1,38,}, + {1,79,16,1,8,2,6,27,16,2,1,35,}, + {1,77,16,1,6,34,8,1,11,1,1,32,}, + {1,75,16,1,6,39,16,1,1,30,}, + {1,74,11,1,6,42,16,1,1,28,}, + {1,74,7,1,6,44,16,1,1,26,}, + {1,73,11,1,6,47,16,1,1,24,}, + {1,73,16,1,6,48,8,1,17,1,1,22,}, + {1,73,16,1,6,50,16,1,11,1,1,20,}, + {1,73,16,1,6,52,16,1,1,19,}, + {1,73,11,1,6,54,16,1,1,17,}, + {1,74,8,1,6,54,8,1,11,1,1,15,}, + {1,75,6,9,16,1,11,2,1,4,17,1,11,1,16,2,8,1,6,35,8,1,1,14,}, + {1,76,8,1,6,5,16,1,1,14,11,1,16,1,7,1,6,33,16,1,1,12,}, + {1,78,17,1,11,2,1,20,11,1,16,1,6,31,8,1,11,1,1,10,}, + {1,103,16,1,6,32,16,1,1,9,}, + {1,104,16,1,6,32,8,1,11,1,1,7,}, + {1,104,11,1,6,34,16,1,1,6,}, + {1,104,11,1,6,36,1,5,}, + {1,104,11,1,6,37,11,1,1,3,}, + {1,104,16,1,6,38,16,1,1,2,}, + {1,104,16,1,6,39,16,1,1,1,}, + {1,104,6,40,7,1,1,1,}, + {1,104,8,1,6,40,11,1,}, + {1,104,6,41,11,1,}, + {1,104,6,41,1,1,}, + {1,104,6,40,16,1,1,1,}, + {1,104,6,39,7,1,1,2,}, + {1,104,6,38,16,1,1,3,}, + {1,104,8,1,6,37,11,1,1,3,}, + {1,104,8,1,6,36,16,1,1,4,}, + {1,104,6,22,8,1,16,1,11,1,16,5,17,1,11,1,8,1,16,3,11,1,1,5,}, + {1,104,16,1,6,21,11,1,1,19,}, + {1,104,16,1,6,20,7,1,1,20,}, + {1,104,16,1,6,20,8,1,1,20,}, + {1,104,11,1,6,20,16,1,1,20,}, + {1,104,16,1,6,20,11,1,1,20,}, + {1,104,6,21,11,1,1,20,}, + {1,103,16,1,6,21,1,21,}, + {1,103,6,22,1,21,}, + {1,102,16,1,6,22,1,21,}, + {1,101,11,1,6,22,8,1,1,21,}, + {1,100,17,1,6,23,16,1,1,21,}, + {1,99,17,1,6,25,1,21,}, + {1,98,16,1,6,26,1,21,}, + {1,92,11,1,16,1,11,1,16,2,6,28,1,21,}, + {1,86,17,1,16,2,6,36,1,21,}, + {1,82,11,1,16,1,6,41,11,1,1,20,}, + {1,80,16,2,6,43,11,1,1,20,}, + {1,78,16,1,6,46,16,1,1,20,}, + {1,76,11,1,6,48,8,1,1,20,}, + {1,74,11,1,8,1,6,50,1,20,}, + {1,73,11,1,6,52,11,1,1,19,}, + {1,72,16,1,6,53,8,1,1,19,}, + {1,70,11,1,8,1,6,55,1,19,}, + {1,69,11,1,6,57,16,1,1,18,}, + {1,68,16,1,6,59,1,18,}, + {1,67,16,1,6,60,16,1,1,17,}, + {1,66,16,1,6,61,16,1,1,17,}, + {1,65,16,1,6,63,1,17,}, + {1,64,6,65,1,17,}, + {1,63,8,1,6,65,1,17,}, + {1,62,16,1,6,65,8,1,1,17,}, + {1,61,16,1,6,66,16,1,1,17,}, + {1,60,11,1,6,67,1,18,}, + {1,60,6,67,16,1,1,18,}, + {1,59,8,1,6,67,17,1,1,18,}, + {1,58,16,1,6,68,1,19,}, + {1,57,11,1,6,68,16,1,1,19,}, + {1,57,16,1,6,68,8,1,1,19,}, + {1,56,11,1,6,71,16,1,11,1,1,16,}, + {1,56,6,76,8,1,16,2,11,1,1,10,}, + {1,55,16,1,6,81,16,1,1,8,}, + {1,55,6,84,1,7,}, + {1,54,16,1,6,84,8,1,1,6,}, + {1,54,6,86,11,1,1,5,}, + {1,53,8,1,6,86,11,1,1,5,}, + {1,52,11,1,6,87,11,1,1,5,}, + {1,52,8,1,6,87,11,1,1,5,}, + {1,52,6,68,16,3,8,1,6,16,1,6,}, + {1,51,16,1,6,68,1,6,17,1,16,2,6,10,11,1,1,6,}, + {1,51,6,69,16,1,1,9,16,1,6,6,8,1,11,1,1,7,}, + {1,50,16,1,6,70,1,11,16,4,11,1,1,9,}, + {1,50,6,58,8,1,16,1,6,11,16,1,1,24,}, + {1,49,16,1,6,57,16,1,1,2,6,12,11,1,1,23,}, + {1,49,6,57,16,1,1,3,16,1,6,11,8,1,1,23,}, + {1,48,8,1,6,57,1,4,11,1,6,12,11,1,1,22,}, + {1,48,6,57,16,1,1,5,6,12,16,1,1,22,}, + {1,47,7,1,6,58,1,5,8,1,6,11,16,1,1,22,}, + {1,46,16,1,6,59,16,1,1,4,16,1,6,11,1,23,}, + {1,45,11,1,6,60,16,1,1,5,6,10,16,1,1,23,}, + {1,45,6,62,1,5,16,1,6,9,1,24,}, + {1,44,8,1,6,62,1,6,8,1,6,7,16,1,1,24,}, + {1,43,8,1,6,63,1,7,16,1,7,1,6,1,7,1,6,1,16,1,11,1,1,25,}, + {1,42,16,1,6,64,11,1,1,38,}, + {1,40,11,1,6,66,1,39,}, + {1,39,16,1,6,67,1,39,}, + {1,37,16,1,6,69,1,39,}, + {1,35,16,1,6,71,1,39,}, + {1,8,11,2,16,1,17,1,11,3,16,1,11,2,1,14,11,1,16,1,6,72,16,1,1,39,}, + {1,5,11,1,8,1,6,12,8,1,16,1,11,1,16,1,11,1,1,2,11,1,16,1,17,1,16,1,8,1,6,75,16,1,1,39,}, + {1,3,11,1,6,102,17,1,1,39,}, + {1,2,11,1,6,103,1,40,}, + {1,2,6,104,1,40,}, + {1,1,17,1,6,103,16,1,1,40,}, + {1,1,16,1,6,103,11,1,1,40,}, + {1,2,8,1,6,102,1,41,}, + {1,3,8,1,6,100,16,1,1,41,}, + {1,4,11,1,16,1,6,98,17,1,1,41,}, + {1,7,16,1,6,76,8,1,16,1,1,1,16,1,6,15,8,1,1,42,}, + {1,9,11,1,8,1,6,71,8,1,11,1,1,3,16,1,6,15,16,1,1,42,}, + {1,11,16,1,8,1,6,68,16,1,1,5,16,1,6,15,1,43,}, + {1,13,16,1,6,66,16,1,1,6,11,1,6,14,16,1,1,43,}, + {1,15,16,1,8,1,6,62,8,1,1,7,16,1,6,14,17,1,1,43,}, + {1,17,16,2,6,41,8,1,16,2,6,15,16,1,1,8,16,1,6,14,1,44,}, + {1,19,11,1,16,1,6,38,16,1,1,3,6,15,1,9,17,1,6,14,1,44,}, + {1,22,11,1,16,1,6,32,8,1,11,1,1,5,6,14,16,1,1,9,17,1,6,14,11,1,1,43,}, + {1,25,16,2,6,26,16,2,1,7,11,1,6,14,1,11,6,14,16,1,1,43,}, + {1,28,11,1,16,1,6,18,16,3,1,11,16,1,6,13,16,1,1,11,6,15,1,43,}, + {1,32,11,1,16,2,8,1,16,5,8,1,17,1,16,1,11,1,1,17,6,14,11,1,1,11,11,1,6,14,11,1,1,42,}, + {1,62,6,14,16,1,1,12,16,1,6,13,8,1,1,42,}, + {1,62,16,1,6,14,1,12,11,1,6,14,11,1,1,41,}, + {1,62,16,1,6,14,16,1,1,12,8,1,6,14,16,1,11,1,1,39,}, + {1,63,6,15,11,1,1,11,16,1,6,17,16,1,1,37,}, + {1,63,16,1,6,14,8,1,1,12,6,18,8,1,1,36,}, + {1,64,6,15,16,1,1,11,8,1,6,18,8,1,1,35,}, + {1,64,17,1,6,15,11,1,1,10,11,1,6,19,11,1,1,34,}, + {1,65,6,15,8,1,1,11,6,19,16,1,1,34,}, + {1,65,16,1,6,16,1,10,16,1,6,18,16,1,1,34,}, + {1,66,6,17,1,10,6,18,1,35,}, + {1,66,6,18,1,9,16,1,6,17,1,35,}, + {1,66,6,18,16,1,1,9,8,1,6,15,7,1,1,35,}, + {1,66,6,19,1,10,8,1,6,14,11,1,1,35,}, + {1,66,6,19,16,1,1,10,16,1,6,11,16,1,11,1,1,36,}, + {1,66,6,19,11,1,1,13,11,1,16,2,11,1,1,43,}, + {1,66,16,1,6,17,8,1,1,61,}, + {1,67,6,16,8,1,1,62,}, + {1,67,11,1,6,14,16,1,1,63,}, + {1,69,16,2,8,1,16,1,11,1,16,1,6,5,16,1,1,65,}, + {1,77,17,1,1,68,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino18.lua b/map_gen/data/presets/dino18.lua new file mode 100644 index 00000000..8885caa3 --- /dev/null +++ b/map_gen/data/presets/dino18.lua @@ -0,0 +1,127 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 120, +width = 143, +data = { + {1,143,}, + {1,143,}, + {1,123,11,5,1,15,}, + {1,118,11,1,16,2,6,8,8,1,11,1,1,12,}, + {1,117,6,14,16,1,1,11,}, + {1,115,11,1,6,16,16,1,1,10,}, + {1,115,6,19,16,1,1,8,}, + {1,114,8,1,6,21,8,1,1,6,}, + {1,113,11,1,6,24,16,1,1,4,}, + {1,113,16,1,6,25,16,1,1,3,}, + {1,113,16,1,6,26,8,1,1,2,}, + {1,113,16,1,6,27,8,1,1,1,}, + {1,113,16,1,6,28,11,1,}, + {1,113,8,1,6,28,16,1,}, + {1,113,16,1,6,28,16,1,}, + {1,113,16,1,6,28,16,1,}, + {1,113,11,1,6,28,1,1,}, + {1,114,6,27,16,1,1,1,}, + {1,63,11,3,16,4,11,2,17,1,1,41,8,1,6,26,11,1,1,1,}, + {1,57,11,2,16,1,8,1,6,14,16,2,11,1,1,36,16,1,6,24,8,1,1,3,}, + {1,53,11,1,16,2,6,23,16,1,11,1,1,33,16,1,6,17,16,1,6,2,16,4,1,4,}, + {1,51,16,1,7,1,6,29,16,1,1,32,6,17,1,11,}, + {1,48,16,1,8,1,6,34,16,1,1,30,6,17,1,11,}, + {1,46,16,1,8,1,6,38,11,1,1,28,16,1,6,16,17,1,1,10,}, + {1,44,16,1,6,42,16,1,1,27,16,1,6,16,16,1,1,10,}, + {1,42,11,1,6,46,11,1,1,25,16,1,6,17,1,10,}, + {1,41,8,1,6,48,16,1,1,24,11,1,6,17,1,10,}, + {1,39,11,1,6,51,8,1,1,24,6,17,16,1,1,9,}, + {1,38,16,1,6,54,11,1,1,22,6,17,16,1,1,9,}, + {1,37,16,1,6,56,11,1,1,21,8,1,6,16,8,1,1,9,}, + {1,36,8,1,6,58,1,21,16,1,6,17,1,9,}, + {1,35,8,1,6,60,1,20,16,1,6,17,11,1,1,8,}, + {1,34,8,1,6,62,11,1,1,18,11,1,6,17,11,1,1,8,}, + {1,33,8,1,6,64,11,1,1,17,11,1,6,17,16,1,1,8,}, + {1,32,8,1,6,65,8,1,1,18,6,17,16,1,1,8,}, + {1,31,16,1,6,67,8,1,1,17,6,17,16,1,1,8,}, + {1,30,16,1,6,69,8,1,1,16,16,1,6,17,1,8,}, + {1,29,11,1,6,71,16,1,1,15,8,1,6,17,1,8,}, + {1,29,8,1,6,72,16,1,1,14,7,1,6,17,11,1,1,7,}, + {1,28,16,1,6,74,11,1,1,13,16,1,6,17,11,1,1,7,}, + {1,27,11,1,6,75,8,1,1,13,8,1,6,17,11,1,1,7,}, + {1,27,7,1,6,76,16,1,1,12,8,1,6,17,16,1,1,7,}, + {1,26,16,1,6,78,17,1,1,11,16,1,6,17,16,1,1,7,}, + {1,26,6,80,11,1,1,10,6,18,16,1,1,7,}, + {1,25,16,1,6,80,8,1,1,10,6,18,16,1,1,7,}, + {1,24,11,1,6,82,16,1,1,8,11,1,6,19,1,7,}, + {1,24,8,1,6,83,16,1,1,7,16,1,6,18,7,1,1,7,}, + {1,23,11,1,6,85,11,1,1,6,16,1,6,18,8,1,1,7,}, + {1,23,6,87,1,6,8,1,6,18,8,1,1,7,}, + {1,22,16,1,6,88,1,4,11,1,6,19,16,1,1,7,}, + {1,22,6,89,8,1,11,1,1,2,8,1,6,19,16,1,1,7,}, + {1,21,16,1,6,113,16,1,1,7,}, + {1,20,11,1,6,114,8,1,1,7,}, + {1,20,8,1,6,114,8,1,1,7,}, + {1,19,16,1,6,116,1,7,}, + {1,18,11,1,6,116,16,1,1,7,}, + {1,18,8,1,6,116,16,1,1,7,}, + {1,17,16,1,6,117,16,1,1,7,}, + {1,16,11,1,6,118,16,1,1,7,}, + {1,16,6,119,11,1,1,7,}, + {1,15,16,1,6,119,11,1,1,7,}, + {1,14,11,1,6,120,1,8,}, + {1,14,8,1,6,120,1,8,}, + {1,13,16,1,6,120,8,1,1,8,}, + {1,12,11,1,6,121,16,1,1,8,}, + {1,12,8,1,6,121,11,1,1,8,}, + {1,11,11,1,6,122,1,9,}, + {1,11,6,122,8,1,1,9,}, + {1,10,8,1,6,122,16,1,1,9,}, + {1,9,11,1,6,123,11,1,1,9,}, + {1,9,6,124,1,10,}, + {1,8,16,1,6,123,16,1,1,10,}, + {1,7,11,1,6,124,1,11,}, + {1,7,8,1,6,123,16,1,1,11,}, + {1,6,16,1,6,124,1,12,}, + {1,5,11,1,6,124,16,1,1,12,}, + {1,5,6,124,16,1,1,13,}, + {1,4,16,1,6,124,16,1,1,13,}, + {1,4,6,125,16,1,1,13,}, + {1,3,8,1,6,125,11,1,1,13,}, + {1,2,11,1,6,126,1,14,}, + {1,2,8,1,6,39,16,1,6,85,16,1,1,14,}, + {1,2,6,37,16,1,11,1,1,3,6,84,1,15,}, + {1,1,16,1,6,35,16,1,1,6,8,1,6,82,16,1,1,15,}, + {1,1,7,1,6,33,16,1,1,8,6,18,16,3,11,3,8,1,6,19,16,3,6,36,1,16,}, + {1,1,6,32,16,1,1,9,16,1,6,17,8,1,1,7,16,1,6,17,16,1,1,4,11,1,16,3,6,30,16,1,1,16,}, + {11,1,6,30,8,1,1,11,8,1,6,17,11,1,1,8,17,1,6,17,1,10,16,1,6,27,16,1,1,16,}, + {16,1,6,29,16,1,1,11,11,1,6,17,8,1,1,10,16,1,6,16,1,10,6,28,16,1,1,16,}, + {16,1,6,27,8,1,11,1,1,12,6,18,1,11,11,1,6,16,1,10,6,13,16,1,6,15,1,16,}, + {8,1,6,26,16,1,1,13,16,1,6,17,16,1,1,11,11,1,6,15,7,1,1,9,11,1,6,12,16,1,1,2,11,1,6,13,16,1,1,15,}, + {16,1,6,25,17,1,1,14,6,17,8,1,1,13,6,15,8,1,1,9,11,1,6,12,8,1,1,2,11,1,6,14,11,1,1,14,}, + {6,25,16,1,1,14,11,1,6,16,8,1,1,14,6,16,16,1,1,8,11,1,6,13,1,3,6,14,8,1,1,14,}, + {6,24,16,1,1,15,11,1,6,16,7,1,1,14,16,1,6,16,16,1,1,7,11,1,6,13,16,1,1,2,16,1,6,14,16,1,1,13,}, + {8,1,6,22,8,1,1,16,11,1,6,17,11,1,1,13,16,1,6,17,1,8,6,14,11,1,1,2,6,15,16,1,1,12,}, + {8,1,6,22,16,1,1,16,11,1,6,17,16,1,1,14,6,17,17,1,1,7,16,1,6,13,16,1,1,2,16,1,6,15,11,1,1,11,}, + {16,1,6,22,16,1,1,17,6,17,8,1,1,14,8,1,6,16,16,1,1,7,16,1,6,14,17,1,1,2,16,1,6,14,16,1,1,11,}, + {11,1,6,22,7,1,1,17,16,1,6,16,8,1,1,15,6,16,16,1,1,8,6,14,16,1,1,3,16,1,6,13,8,1,1,11,}, + {1,1,6,23,1,18,16,1,6,15,16,1,1,16,7,1,6,14,1,9,11,1,6,13,11,1,1,4,8,1,6,12,11,1,1,11,}, + {1,1,16,1,6,22,16,1,1,19,16,1,7,1,16,4,6,6,8,1,17,1,1,18,11,1,16,2,8,2,16,5,8,3,11,1,1,10,11,1,16,1,6,10,16,1,1,6,11,1,8,1,6,6,16,3,11,1,1,12,}, + {1,2,6,23,16,1,1,77,11,8,1,32,}, + {1,2,11,1,6,23,8,1,1,116,}, + {1,3,16,1,6,24,16,1,1,114,}, + {1,4,8,1,6,26,16,1,17,1,1,110,}, + {1,5,6,30,16,1,8,1,16,3,11,2,1,101,}, + {1,5,11,1,6,38,16,2,1,97,}, + {1,7,8,1,6,39,16,1,1,95,}, + {1,8,16,1,6,40,16,1,1,93,}, + {1,9,16,1,6,40,16,1,1,92,}, + {1,10,11,1,7,1,6,39,8,1,1,91,}, + {1,12,17,1,6,39,16,1,1,90,}, + {1,14,16,1,6,38,11,1,1,89,}, + {1,16,16,1,6,36,16,1,1,89,}, + {1,18,17,1,6,35,1,89,}, + {1,20,11,1,16,1,8,1,6,31,16,1,1,88,}, + {1,23,11,1,17,1,16,1,6,28,16,1,1,88,}, + {1,28,11,1,16,3,6,22,16,1,1,88,}, + {1,35,17,2,11,1,1,4,11,1,16,2,6,9,1,89,}, + {1,46,11,1,16,2,6,3,16,1,11,1,1,89,}, + {1,143,}, + {1,143,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino19.lua b/map_gen/data/presets/dino19.lua new file mode 100644 index 00000000..96273c32 --- /dev/null +++ b/map_gen/data/presets/dino19.lua @@ -0,0 +1,128 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 121, +width = 153, +data = { + {1,153,}, + {1,140,16,4,1,9,}, + {1,138,11,1,6,5,16,1,1,8,}, + {1,137,16,1,6,6,16,1,1,8,}, + {1,135,16,1,6,8,8,1,1,8,}, + {1,133,11,1,8,1,6,9,16,1,1,8,}, + {1,132,16,1,6,11,1,9,}, + {1,130,11,1,8,1,6,11,16,1,1,9,}, + {1,129,16,1,6,13,1,10,}, + {1,127,11,1,6,14,11,1,1,10,}, + {1,126,16,1,6,14,8,1,1,11,}, + {1,124,17,1,6,16,1,12,}, + {1,123,16,1,6,16,16,1,1,12,}, + {1,121,11,1,6,17,8,1,1,13,}, + {1,120,16,1,6,18,11,1,1,13,}, + {1,119,7,1,6,18,8,1,1,14,}, + {1,117,16,1,6,20,16,1,1,14,}, + {1,116,16,1,6,21,1,15,}, + {1,114,11,1,6,23,1,15,}, + {1,113,11,1,6,24,1,15,}, + {1,112,16,1,6,24,16,1,1,15,}, + {1,111,8,1,6,25,16,1,1,15,}, + {1,110,8,1,6,26,11,1,1,15,}, + {1,109,6,28,1,16,}, + {1,108,6,28,16,1,1,16,}, + {1,107,8,1,6,28,11,1,1,16,}, + {1,106,16,1,6,28,16,1,1,17,}, + {1,105,11,1,6,29,11,1,1,17,}, + {1,105,6,29,16,1,1,18,}, + {1,104,16,1,6,29,1,19,}, + {1,103,11,1,6,29,16,1,1,19,}, + {1,103,16,1,6,28,8,1,1,20,}, + {1,41,11,1,16,1,17,2,16,1,11,1,1,56,6,29,11,1,1,20,}, + {1,35,11,1,16,3,6,10,16,1,11,1,1,51,16,1,6,28,16,1,1,21,}, + {1,30,11,1,16,2,6,20,16,1,11,1,1,47,6,29,11,1,1,21,}, + {1,26,11,1,16,2,6,27,8,1,17,1,1,44,6,28,16,1,1,22,}, + {1,24,16,1,8,1,6,33,8,1,11,1,1,40,16,1,6,28,1,23,}, + {1,21,17,1,6,40,16,1,1,38,16,1,6,27,16,1,1,23,}, + {1,19,16,1,6,45,11,1,1,35,6,28,1,24,}, + {1,16,11,1,16,1,6,49,16,1,1,32,11,1,6,27,11,1,1,24,}, + {1,14,11,1,16,1,6,53,16,1,1,30,16,1,6,26,8,1,1,25,}, + {1,13,16,1,6,57,8,1,11,1,1,27,16,1,6,26,11,1,1,25,}, + {1,11,16,1,6,61,16,1,11,1,1,25,6,26,16,1,1,26,}, + {1,9,11,1,6,65,16,1,11,1,1,22,11,1,6,25,8,1,1,27,}, + {1,8,16,1,6,68,8,1,11,1,1,20,16,1,6,24,8,1,1,28,}, + {1,6,11,1,6,72,8,1,1,19,8,1,6,24,11,1,1,28,}, + {1,5,11,1,6,75,1,18,6,24,17,1,1,29,}, + {1,4,16,1,6,77,11,1,1,16,6,23,16,1,1,30,}, + {1,3,8,1,6,78,8,1,1,15,11,1,6,22,8,1,1,31,}, + {1,2,16,1,6,80,16,1,1,14,16,1,6,22,11,1,1,31,}, + {1,1,8,1,6,82,1,14,6,22,17,1,1,32,}, + {1,1,6,83,11,1,1,12,16,1,6,21,16,1,1,33,}, + {1,1,6,83,16,1,1,11,17,1,6,22,11,1,1,33,}, + {1,1,16,1,6,14,8,1,6,1,16,3,11,1,1,4,11,1,16,2,8,1,6,55,1,5,11,1,1,2,11,1,16,2,6,22,16,1,1,34,}, + {1,2,16,1,6,8,16,3,1,17,16,1,8,1,6,52,16,2,6,31,16,1,1,34,}, + {1,3,11,1,16,4,11,1,1,24,11,1,8,1,6,83,1,35,}, + {1,35,11,1,16,1,6,80,8,1,1,35,}, + {1,37,11,1,6,80,1,35,}, + {1,39,16,1,6,77,16,1,1,35,}, + {1,40,11,1,6,76,7,1,1,35,}, + {1,42,8,1,6,75,1,35,}, + {1,43,16,1,6,73,8,1,1,35,}, + {1,44,11,1,8,1,6,72,1,35,}, + {1,46,16,1,6,70,8,1,1,35,}, + {1,48,16,1,6,68,16,1,1,35,}, + {1,49,11,1,16,1,6,66,1,36,}, + {1,51,11,1,8,1,6,63,16,1,1,36,}, + {1,53,11,1,8,1,6,61,1,37,}, + {1,55,8,1,6,59,17,1,1,37,}, + {1,56,6,58,16,1,1,38,}, + {1,56,16,1,6,56,8,1,1,7,11,1,16,1,6,4,16,1,11,1,1,24,}, + {1,56,11,1,6,56,1,6,16,1,6,10,11,1,1,22,}, + {1,57,6,55,11,1,1,4,11,1,8,1,6,12,16,1,1,21,}, + {1,57,8,1,6,53,11,1,1,4,16,1,6,15,8,1,1,20,}, + {1,57,8,1,6,52,16,1,1,4,16,1,6,17,8,1,1,19,}, + {1,57,8,1,6,52,1,4,16,1,6,19,8,1,1,18,}, + {1,57,6,53,1,3,11,1,6,21,16,1,1,17,}, + {1,56,17,1,6,52,16,1,1,3,8,1,6,22,1,17,}, + {1,56,8,1,6,53,16,1,11,1,16,1,6,23,16,1,1,16,}, + {1,55,16,1,6,81,1,16,}, + {1,54,16,1,6,82,8,1,1,15,}, + {1,52,16,1,6,85,17,1,1,14,}, + {1,49,16,1,8,1,6,88,8,1,1,13,}, + {1,47,16,1,6,92,16,1,1,12,}, + {1,45,16,1,6,95,16,1,1,11,}, + {1,44,8,1,6,97,16,1,1,10,}, + {1,43,8,1,6,16,8,1,16,4,6,79,1,9,}, + {1,42,16,1,6,15,8,1,11,1,1,5,6,79,16,1,1,8,}, + {1,42,6,15,16,1,1,7,6,26,8,2,16,1,8,1,6,50,16,1,1,7,}, + {1,42,6,13,8,1,11,1,1,7,16,1,6,24,16,1,1,5,16,1,6,50,16,1,1,6,}, + {1,42,6,13,1,8,16,1,6,22,8,1,16,1,1,8,8,1,6,50,16,1,1,5,}, + {1,42,11,1,6,10,7,1,1,7,11,1,8,1,6,21,8,1,11,1,1,11,6,51,16,1,1,4,}, + {1,43,14,1,6,9,1,5,16,2,6,21,7,1,16,1,11,1,1,13,17,1,6,51,11,1,1,3,}, + {1,44,16,1,6,7,17,1,1,4,6,21,8,1,16,1,11,1,1,17,6,51,8,1,1,3,}, + {1,45,11,1,8,1,6,4,16,1,1,4,8,1,6,16,16,3,1,22,11,1,6,51,16,1,1,2,}, + {1,48,16,1,14,1,17,1,1,5,8,1,6,13,16,1,1,28,16,1,6,51,1,2,}, + {1,56,8,1,6,12,8,1,1,30,16,1,6,50,16,1,1,1,}, + {1,56,11,1,6,12,1,32,16,1,6,31,11,2,16,3,6,14,1,1,}, + {1,57,7,1,6,10,16,1,1,33,11,1,6,11,16,1,1,2,16,1,6,15,16,1,1,6,16,1,6,11,1,1,}, + {1,57,11,1,6,9,16,1,1,36,16,1,8,1,6,6,16,1,1,5,6,15,8,1,1,9,16,1,6,8,1,1,}, + {1,58,16,1,6,7,7,1,1,40,11,1,16,2,1,8,16,1,6,15,1,11,17,1,16,1,6,3,8,1,11,1,1,1,}, + {1,60,6,5,16,1,1,53,6,15,16,1,1,18,}, + {1,61,16,1,8,1,16,1,11,1,1,54,16,1,6,15,1,18,}, + {1,120,8,1,6,14,1,18,}, + {1,120,11,1,6,14,16,1,1,17,}, + {1,121,16,1,6,14,1,17,}, + {1,122,6,14,11,1,1,16,}, + {1,122,11,1,6,13,8,1,1,16,}, + {1,123,16,1,6,13,1,16,}, + {1,124,6,13,16,1,1,15,}, + {1,124,11,1,6,12,8,1,1,15,}, + {1,125,16,1,6,12,1,15,}, + {1,126,16,1,6,11,16,1,1,14,}, + {1,127,8,1,6,10,16,1,1,14,}, + {1,128,6,10,16,1,1,14,}, + {1,129,16,1,6,8,16,1,1,14,}, + {1,130,16,1,6,7,16,1,1,14,}, + {1,131,11,1,8,1,6,5,11,1,1,14,}, + {1,133,11,1,16,1,8,1,16,1,1,16,}, + {1,153,}, + {1,153,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino2.lua b/map_gen/data/presets/dino2.lua new file mode 100644 index 00000000..4d33c54f --- /dev/null +++ b/map_gen/data/presets/dino2.lua @@ -0,0 +1,1007 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 1000, +width = 1000, +data = { + {1,176,28,12,1,812,}, + {1,171,28,4,29,1,28,2,29,1,28,1,6,1,17,1,12,1,28,4,1,2,28,1,1,810,}, + {1,167,28,5,6,1,29,2,28,1,29,1,28,5,29,1,28,2,29,1,28,5,1,809,}, + {1,164,28,3,7,3,6,1,28,12,9,1,7,1,28,2,6,1,28,2,1,810,}, + {1,161,28,4,7,2,29,1,28,2,16,1,28,13,16,1,28,6,1,20,28,13,1,776,}, + {1,157,28,6,26,1,27,1,30,1,28,3,6,1,1,1,9,1,28,13,17,1,29,1,28,6,1,10,28,7,6,2,8,1,10,1,9,1,16,1,9,2,10,1,8,1,7,1,6,4,29,1,28,6,1,768,}, + {1,156,28,13,29,1,1,1,11,1,16,1,28,12,16,1,11,1,28,4,29,1,28,1,1,5,28,5,29,1,6,1,7,3,6,1,29,1,6,2,29,2,28,21,1,765,}, + {1,146,28,11,26,2,28,11,12,1,7,1,11,1,1,1,12,1,29,1,28,11,12,1,28,9,29,1,10,1,11,1,12,1,9,1,6,1,28,35,1,762,}, + {1,143,28,2,7,1,8,1,16,1,9,1,16,1,8,1,29,1,28,15,29,1,28,2,6,1,28,1,29,1,33,2,17,1,7,1,6,1,7,1,8,2,7,1,6,2,28,4,12,1,29,1,28,5,29,1,12,1,1,1,10,1,6,1,9,1,28,23,29,1,6,1,9,1,7,1,6,2,28,2,6,1,28,2,29,1,6,1,28,3,1,760,}, + {1,142,28,1,11,2,16,1,6,2,29,1,28,26,33,1,29,1,28,7,6,1,29,1,28,3,9,1,7,1,28,5,29,3,28,2,6,1,28,23,6,1,16,1,10,1,28,3,6,1,28,15,1,753,}, + {1,140,28,1,29,1,8,1,6,2,12,1,1,1,16,1,28,2,29,1,28,24,16,1,28,10,7,1,28,3,9,1,7,1,28,12,10,1,6,1,28,19,29,1,6,1,28,15,6,1,29,1,28,10,1,746,}, + {1,138,28,1,29,1,9,1,8,1,29,2,28,2,16,1,1,1,11,1,6,3,28,3,6,1,29,1,28,2,29,1,28,1,26,1,28,11,6,1,10,1,28,16,12,1,29,1,28,10,29,1,9,1,11,1,12,1,6,1,28,1,29,1,28,13,6,1,28,27,8,1,16,1,7,1,28,5,1,741,}, + {1,136,28,2,16,3,9,1,7,1,28,4,10,1,1,2,11,1,5,1,6,1,33,2,7,1,6,1,28,4,26,1,28,2,29,1,27,1,28,7,29,1,28,17,6,1,9,1,28,13,6,2,17,1,6,1,28,1,6,1,28,5,29,1,28,3,8,1,16,1,9,1,28,28,7,1,28,9,1,738,}, + {1,134,28,2,11,1,12,1,9,1,16,1,17,1,16,1,7,1,28,1,6,1,29,1,28,2,29,1,12,1,1,2,12,1,33,1,8,1,7,1,6,1,28,8,26,1,27,1,28,8,29,1,28,17,16,1,28,7,6,1,29,1,28,8,6,2,10,1,8,1,28,4,29,1,9,1,11,1,17,1,8,1,7,1,10,1,7,1,6,2,29,1,6,1,28,35,1,734,}, + {1,133,28,1,7,1,1,1,11,2,16,1,7,1,9,1,12,1,9,1,28,2,6,1,28,5,12,1,16,1,7,1,6,1,7,1,28,3,6,1,28,6,26,1,25,1,28,15,29,2,28,8,8,1,28,19,7,1,17,1,16,1,28,3,29,1,7,1,6,1,28,8,29,1,28,1,9,2,10,1,29,1,28,6,29,1,28,26,1,731,}, + {1,131,28,2,11,1,1,1,16,1,9,1,12,2,9,1,7,2,6,1,29,2,8,1,28,7,6,1,33,1,7,1,28,11,27,1,9,1,28,15,16,2,6,1,28,6,30,1,1,1,28,7,7,1,6,1,28,8,6,1,28,2,12,1,11,1,9,1,6,1,28,15,6,1,9,1,16,1,7,1,28,10,6,1,28,22,1,729,}, + {1,130,28,1,16,1,11,1,9,1,7,1,16,1,10,1,7,1,11,1,10,1,28,3,29,1,28,1,6,1,29,1,28,6,16,1,7,1,28,13,25,1,12,1,28,14,6,2,28,8,9,1,1,1,28,6,6,1,1,1,11,1,9,1,10,1,29,1,28,2,6,3,28,4,6,1,10,1,9,1,7,1,28,16,10,1,8,1,29,2,28,9,29,1,28,13,29,1,28,4,29,1,6,1,28,1,1,728,}, + {1,121,28,1,1,7,28,1,1,2,16,1,7,2,9,1,8,1,6,1,9,1,11,1,9,1,28,2,10,1,28,2,7,2,29,1,7,1,9,1,6,1,29,1,6,1,28,15,27,1,25,1,29,1,28,20,6,1,28,2,29,1,6,1,28,7,9,1,16,1,9,1,12,1,9,3,7,1,6,1,28,2,29,1,28,5,6,1,8,1,6,1,28,9,29,1,28,6,29,1,10,2,7,3,9,2,28,4,29,1,28,21,1,726,}, + {1,128,28,1,1,2,16,2,17,1,16,2,9,1,29,1,28,1,6,1,16,1,28,3,6,1,28,3,9,1,1,1,11,1,9,1,11,1,28,17,29,1,25,1,9,1,26,1,28,34,7,1,6,2,29,1,28,10,6,2,28,19,29,1,6,2,10,1,6,1,16,2,29,1,28,21,29,1,28,2,1,725,}, + {1,127,29,1,1,1,11,1,12,1,16,1,11,1,17,1,16,1,11,1,12,1,9,1,28,4,29,1,28,2,10,1,7,1,6,1,16,1,9,1,8,1,11,1,1,1,29,1,28,18,9,1,11,1,27,1,26,1,28,8,29,1,28,5,29,1,28,15,6,2,28,14,29,1,28,4,29,1,6,1,29,1,28,2,29,1,28,10,29,1,28,5,29,1,6,1,28,17,6,1,8,1,29,1,28,6,1,723,}, + {1,122,28,1,1,3,6,1,1,2,16,2,11,1,1,1,11,5,9,1,6,1,28,5,11,2,9,1,28,3,1,2,17,1,6,1,28,12,6,1,28,5,10,1,12,1,9,1,15,1,26,1,28,7,29,2,28,3,9,2,28,30,6,2,28,4,29,1,28,14,10,1,7,1,6,1,10,2,28,3,29,1,28,9,29,1,28,7,7,1,33,1,6,1,28,6,1,722,}, + {1,124,28,1,9,1,1,1,11,2,16,1,8,1,6,2,11,1,1,1,11,3,17,1,9,1,10,1,16,1,6,1,7,1,9,1,7,2,6,1,28,3,29,1,17,1,1,2,8,1,28,8,6,1,7,1,16,1,11,1,16,1,29,1,10,1,6,1,28,1,29,1,11,1,12,1,11,2,9,1,28,3,29,1,26,1,28,1,29,1,28,4,14,1,11,1,29,1,28,29,6,2,28,42,6,2,28,2,29,1,28,1,7,1,28,2,29,1,28,3,1,721,}, + {1,123,28,1,11,1,1,1,12,1,9,1,16,2,7,1,28,3,7,1,12,1,11,2,17,1,7,1,28,1,16,1,17,2,29,1,28,1,29,1,7,1,29,1,28,4,7,1,1,2,11,1,10,1,28,2,29,1,7,1,9,1,17,2,16,1,33,2,11,1,7,2,16,1,6,1,29,1,16,2,9,1,11,1,1,1,9,1,29,2,27,1,26,2,29,1,28,3,6,1,7,1,8,1,6,1,28,29,29,1,8,1,28,1,6,1,29,1,28,24,29,1,7,1,6,1,28,13,6,1,28,6,6,2,29,1,6,1,28,1,1,721,}, + {1,122,28,1,11,1,1,1,12,1,16,1,17,1,11,2,9,2,6,1,28,3,12,1,11,1,17,1,11,1,8,1,10,1,9,1,6,3,29,1,28,8,12,1,1,2,16,1,12,1,16,1,17,1,11,2,17,1,16,1,33,2,29,1,33,1,29,1,28,3,6,1,10,1,16,1,17,1,11,1,9,1,28,2,29,1,28,34,29,1,28,2,29,1,28,4,29,1,28,21,7,1,29,1,28,2,6,1,28,2,6,1,29,1,28,11,29,1,7,1,6,1,29,1,6,1,28,5,16,1,11,1,29,1,1,720,}, + {1,121,28,1,1,2,16,2,1,1,11,2,16,2,11,1,16,1,28,4,9,1,1,1,12,1,11,1,16,1,10,1,7,1,29,2,28,2,29,2,28,1,6,1,28,3,10,1,16,1,10,1,11,2,9,2,12,1,16,2,10,1,33,1,28,11,6,1,9,1,12,2,10,1,28,19,29,1,28,14,9,1,29,1,28,2,6,1,28,26,6,1,28,5,29,2,28,3,6,1,28,8,6,1,33,2,28,1,6,1,28,4,29,1,8,1,11,1,28,1,1,719,}, + {1,104,28,1,1,5,28,1,1,9,28,1,1,1,11,3,1,2,11,1,12,1,29,1,6,1,11,1,12,1,6,1,28,4,8,1,1,1,11,1,12,1,16,1,28,5,6,4,29,1,28,2,16,1,12,1,16,1,8,1,16,1,11,1,6,1,28,18,8,1,11,2,8,1,28,34,16,1,6,1,28,11,29,1,28,24,6,1,28,13,6,1,28,2,16,1,11,1,9,1,28,3,29,1,28,1,1,719,}, + {1,119,28,1,11,1,1,2,12,1,17,1,11,1,5,1,1,1,11,1,9,1,7,1,16,2,10,1,7,2,28,3,1,1,11,2,16,1,28,3,6,2,29,1,6,2,29,1,6,1,28,2,9,1,16,1,12,1,6,1,16,1,17,1,28,20,7,1,11,1,1,1,9,1,6,1,29,2,28,30,6,1,9,1,28,2,6,1,28,8,6,1,28,2,29,2,28,14,29,1,28,5,29,1,6,1,28,12,29,1,28,2,6,3,7,1,29,1,28,4,1,718,}, + {1,105,28,5,1,1,28,1,1,1,28,1,1,3,28,2,26,1,9,1,26,1,10,1,9,1,1,1,11,4,1,1,17,1,8,1,10,2,6,1,8,1,28,3,12,1,1,1,11,1,9,1,6,1,28,1,29,1,6,2,28,1,29,1,6,1,28,1,6,1,28,3,7,1,10,1,16,1,1,1,10,1,28,2,29,2,28,1,29,1,6,1,28,2,29,5,28,7,9,1,1,1,16,1,7,1,30,1,6,1,30,1,28,4,29,1,28,25,7,1,29,1,28,1,9,1,28,11,30,1,6,1,29,2,28,1,29,1,28,10,29,1,28,6,29,2,28,1,29,2,28,8,6,1,29,1,28,4,29,1,6,1,28,2,6,1,7,1,28,2,1,716,}, + {1,101,28,4,29,1,6,1,29,1,28,1,29,2,28,5,29,1,26,2,28,5,29,1,1,2,11,1,12,1,11,2,16,1,10,1,9,1,8,1,6,1,28,3,7,1,1,1,11,1,9,1,7,1,6,2,7,1,6,2,7,2,28,1,29,2,28,4,11,1,1,1,6,1,28,2,7,1,29,1,28,1,6,1,11,1,7,1,28,2,29,4,28,7,6,1,15,1,8,1,6,1,29,1,7,1,13,1,30,1,28,3,29,1,8,1,30,1,28,23,30,1,7,1,28,1,9,1,28,14,29,1,30,2,29,2,28,9,30,1,28,7,29,1,28,10,6,1,29,1,28,2,6,1,28,7,10,1,6,1,28,6,1,710,}, + {1,98,28,5,29,2,28,1,27,1,9,1,28,2,26,1,28,2,29,1,15,1,11,1,27,1,29,1,28,8,11,2,1,1,16,1,11,2,9,1,12,1,11,1,6,1,28,3,29,1,1,2,11,1,10,1,8,1,7,3,6,1,7,2,6,1,28,1,6,1,28,4,1,1,11,1,9,1,29,1,6,1,8,1,6,1,28,2,1,1,10,1,28,5,29,1,28,8,8,1,9,1,7,1,6,1,30,2,29,1,28,16,29,1,28,11,8,1,29,1,28,2,9,1,29,1,28,17,29,3,28,15,6,1,28,10,6,1,28,6,29,1,28,5,29,2,28,9,1,706,}, + {1,95,28,1,1,1,28,3,29,1,28,6,10,1,28,4,25,1,15,1,11,1,25,1,28,6,26,1,28,4,11,1,1,1,17,1,11,2,16,1,11,1,1,1,16,1,8,1,28,2,6,1,11,1,1,1,11,1,16,1,9,1,16,1,9,1,8,1,7,2,6,1,7,1,6,1,7,1,6,1,28,3,1,1,12,1,17,1,16,1,8,1,6,1,28,3,6,1,16,1,29,1,28,3,29,2,28,7,29,4,28,4,29,1,6,1,29,1,28,13,29,1,28,9,29,1,28,1,30,1,28,3,13,2,28,35,6,2,28,9,6,1,28,13,9,1,6,1,28,11,1,703,}, + {1,95,28,2,29,2,28,8,29,1,28,3,26,1,11,2,27,1,28,1,26,2,28,3,26,1,28,6,9,1,1,1,11,1,16,1,11,2,17,1,12,1,7,1,29,1,6,1,16,1,1,2,12,1,11,1,16,1,12,1,16,1,9,2,7,2,9,2,8,1,6,2,28,1,6,1,1,1,16,2,11,1,8,1,28,2,10,1,28,1,29,1,11,1,9,1,7,2,6,1,7,1,6,1,28,6,29,1,10,1,28,8,29,1,28,15,30,1,28,12,29,1,28,1,29,1,13,1,28,36,30,1,28,9,29,2,28,6,29,1,28,6,9,1,12,1,28,12,1,701,}, + {1,94,28,1,9,1,6,1,28,1,29,2,28,7,27,1,26,1,28,2,11,2,26,1,28,1,26,5,28,10,1,1,12,1,16,1,17,1,1,1,16,1,7,1,33,1,6,1,33,1,1,2,11,1,1,1,11,1,12,1,16,2,9,2,16,4,12,1,7,1,28,1,9,1,11,1,12,1,17,1,12,1,6,1,28,2,6,1,8,1,16,1,11,1,16,1,9,1,10,1,6,2,7,1,29,1,28,4,6,1,16,1,9,1,30,1,29,1,28,22,29,1,28,9,29,1,28,4,29,1,13,1,30,1,28,55,29,1,28,2,29,1,28,2,11,1,6,1,28,12,1,700,}, + {1,89,28,1,1,3,28,1,8,1,7,1,6,1,28,6,29,1,28,5,26,1,11,2,27,1,28,1,26,2,28,1,27,1,15,1,26,1,28,11,11,2,1,1,16,1,11,1,12,2,17,1,11,3,1,1,11,2,17,2,11,1,12,1,16,2,12,1,11,1,17,2,16,1,6,2,12,1,11,2,17,1,9,1,6,1,7,1,8,1,7,2,6,2,7,3,28,2,6,1,30,1,28,1,29,1,9,1,15,1,16,1,8,1,6,1,7,1,30,1,29,2,30,1,29,1,28,4,29,1,6,1,28,22,29,1,28,4,29,2,28,61,29,2,28,7,29,1,28,6,1,698,}, + {1,92,28,1,6,1,10,1,8,1,9,1,7,1,9,1,12,1,17,1,9,1,30,1,28,1,29,1,28,4,15,1,11,1,15,1,28,2,26,2,28,1,15,2,28,10,27,1,28,1,9,1,1,1,9,1,16,1,11,1,1,1,11,1,12,1,11,3,1,1,16,1,11,3,17,1,12,1,11,2,17,1,12,2,16,1,10,1,7,1,10,1,12,1,11,2,12,1,16,3,9,1,7,1,6,1,7,1,16,1,8,1,7,1,9,1,29,1,28,1,6,1,7,1,6,2,8,2,6,1,29,3,28,3,29,1,28,1,29,1,6,1,28,3,6,1,28,28,29,1,28,38,29,1,28,20,29,1,28,11,11,1,12,1,10,1,6,1,28,3,1,697,}, + {1,91,28,1,8,1,29,1,28,1,7,1,6,1,10,1,17,1,11,2,16,1,29,2,28,4,9,1,11,1,15,1,26,5,27,1,26,4,28,1,26,1,28,7,9,1,28,1,9,1,12,1,10,1,9,1,11,1,12,1,29,2,7,1,9,1,11,1,1,1,12,1,17,1,12,1,16,1,12,1,17,2,12,1,9,1,16,1,9,1,10,1,16,1,12,1,11,1,1,1,11,1,5,2,16,1,9,1,7,2,6,2,7,1,28,2,8,1,9,1,30,1,6,1,29,3,28,5,29,1,28,39,29,1,28,61,29,1,28,2,30,1,28,8,6,3,8,1,6,1,28,2,1,695,}, + {1,82,28,10,6,1,29,1,28,1,8,1,6,1,28,2,29,1,7,2,29,1,6,1,29,1,28,2,29,1,11,2,29,2,26,1,9,1,26,7,28,2,26,1,28,7,29,1,28,1,1,1,16,1,9,1,16,1,12,1,9,1,7,1,28,2,29,1,9,1,17,2,12,1,11,3,12,1,11,1,9,1,10,1,7,1,9,1,16,1,6,1,29,1,16,1,1,1,5,1,33,2,7,1,6,2,29,1,28,4,9,2,8,1,29,1,28,10,29,1,28,7,29,1,28,1,29,1,28,27,30,1,28,11,29,1,28,27,29,1,28,21,7,1,28,2,29,1,28,16,1,694,}, + {1,81,28,1,29,1,28,2,29,1,6,1,28,2,29,1,28,4,6,2,10,1,6,1,28,3,11,2,9,2,28,1,27,1,1,1,11,1,9,1,29,1,28,3,9,2,26,2,27,1,26,5,29,2,28,2,26,1,28,4,29,1,9,1,11,2,15,2,17,1,27,1,29,1,26,1,28,2,10,1,9,1,10,1,12,2,9,1,7,1,6,1,9,2,8,1,6,1,28,3,1,1,12,1,10,1,7,3,6,1,29,1,28,3,12,1,11,1,16,1,8,1,29,1,28,12,29,2,28,6,10,1,6,1,28,12,29,1,6,1,28,12,29,2,30,2,28,61,29,1,28,4,27,1,10,1,28,8,29,1,28,2,1,693,}, + {1,79,28,2,29,1,6,1,28,4,29,1,28,8,6,1,33,2,28,2,16,1,1,1,11,1,7,2,1,2,12,1,9,2,27,1,28,3,9,2,26,6,28,2,26,2,28,1,27,1,28,6,27,1,9,2,27,3,9,1,11,1,9,1,29,1,9,2,10,1,12,1,17,1,9,1,6,2,9,2,6,1,29,2,28,2,16,1,12,1,9,1,7,2,10,1,8,1,7,1,28,2,8,1,11,2,12,1,9,1,6,1,28,20,29,1,9,1,29,1,28,11,29,1,7,1,29,1,28,10,29,1,28,2,30,2,28,2,29,1,28,59,29,1,28,4,27,1,6,1,7,1,28,3,29,1,28,6,1,692,}, + {1,78,28,2,16,1,6,1,28,5,29,1,28,9,29,1,11,1,12,1,6,1,7,1,8,1,7,1,10,1,11,1,1,1,17,1,9,1,11,4,29,1,28,2,26,1,9,1,27,1,26,3,28,3,29,1,27,1,26,1,27,1,28,2,26,1,28,5,9,2,29,3,26,1,27,1,9,1,25,1,27,1,9,1,12,1,29,1,28,1,29,1,27,1,26,1,29,1,26,1,27,1,25,1,26,1,29,1,26,1,17,1,11,1,10,1,29,1,6,1,7,1,9,1,10,1,16,1,12,1,9,2,12,1,16,1,6,1,28,25,29,1,28,10,16,1,6,1,28,9,13,1,28,3,29,1,28,57,29,1,28,5,29,1,28,7,6,1,7,1,28,2,29,1,28,5,1,691,}, + {1,78,28,1,7,2,29,2,6,1,29,1,28,3,29,1,8,1,28,8,29,1,11,1,1,2,8,1,29,1,1,2,11,1,12,2,11,4,1,1,27,1,28,2,29,1,12,1,9,1,28,1,29,1,26,5,29,1,26,4,25,1,26,2,28,3,9,2,28,2,26,2,28,9,29,1,26,1,28,6,26,1,9,1,27,1,28,3,26,1,29,1,28,1,29,1,28,1,6,1,1,1,17,1,29,1,28,9,29,2,28,26,7,1,28,13,29,1,26,1,28,62,29,2,28,7,10,1,17,1,28,9,1,689,}, + {1,77,28,1,7,1,6,1,7,3,6,2,29,1,28,3,9,1,11,1,9,1,29,1,28,4,6,1,28,2,17,2,16,1,1,2,11,1,17,2,11,4,17,1,9,1,12,1,1,1,11,1,28,1,27,1,11,1,12,1,27,3,29,1,26,1,27,1,29,1,28,1,26,2,27,1,9,1,27,1,9,1,26,1,28,3,27,1,26,1,28,2,26,1,28,9,29,1,26,1,28,18,6,1,16,1,9,1,6,2,29,1,28,2,6,2,28,14,29,1,28,9,29,1,28,6,30,1,28,79,26,1,28,6,16,2,28,3,29,1,28,5,1,688,}, + {1,75,28,2,9,1,8,1,6,1,29,1,6,3,28,2,29,1,28,3,11,2,7,1,29,1,28,1,6,1,7,1,10,1,29,1,28,1,29,1,6,1,17,1,1,1,11,2,17,1,11,1,1,2,11,2,9,2,17,1,11,1,16,1,28,2,9,1,1,1,12,1,10,1,27,1,26,4,28,1,26,2,9,1,27,1,26,2,28,4,26,1,29,1,28,2,29,1,28,3,29,1,28,4,26,3,28,7,29,1,28,11,6,1,16,1,8,1,30,1,28,36,13,1,28,16,30,2,28,65,10,1,28,3,10,1,11,1,6,1,28,2,29,1,28,2,6,1,28,2,1,687,}, + {1,76,6,1,7,1,29,1,28,1,6,2,7,2,29,1,28,5,8,1,10,1,29,1,28,1,6,1,9,2,7,1,10,1,6,1,28,1,7,1,1,1,11,5,1,1,11,1,17,1,16,2,11,4,16,1,28,2,12,1,11,1,10,1,29,1,9,1,27,1,28,1,27,1,26,3,25,1,29,1,28,6,26,1,28,2,26,1,28,2,26,1,27,1,26,1,29,1,28,1,26,2,29,1,28,5,29,3,28,1,26,1,29,1,28,10,6,1,30,1,28,14,29,1,9,1,29,2,28,21,30,1,28,16,29,1,30,1,29,1,28,69,9,1,6,1,28,4,29,1,6,1,28,1,1,2,28,1,1,684,}, + {1,75,28,1,9,1,28,2,29,1,6,1,29,1,28,6,29,1,16,1,8,1,28,2,29,1,9,1,16,1,9,2,7,1,28,2,11,1,1,1,11,7,16,1,9,1,16,1,1,3,11,1,1,1,28,2,8,1,11,1,9,1,27,1,12,1,9,1,29,1,26,1,9,1,26,3,28,2,26,1,28,2,26,6,28,3,26,4,29,1,28,7,26,1,29,2,28,4,29,2,28,25,29,1,28,11,29,1,28,29,30,1,28,70,17,1,7,1,28,4,6,2,28,2,1,685,}, + {1,74,28,1,9,1,7,1,6,2,9,1,8,1,33,2,7,1,8,1,16,1,33,1,29,1,8,1,16,1,6,1,29,1,7,1,9,1,11,1,16,2,29,1,28,2,16,1,1,1,12,1,17,1,11,2,1,2,11,2,17,1,12,1,11,1,1,1,11,1,17,1,6,1,29,1,11,1,6,2,8,1,12,4,9,1,26,2,29,1,26,13,28,4,26,2,28,7,26,2,28,5,29,1,28,2,29,1,28,1,26,1,28,66,29,2,28,69,8,1,16,1,28,2,6,1,28,2,16,1,28,1,1,685,}, + {1,73,28,2,16,1,9,1,6,1,8,1,9,1,12,1,11,1,1,2,11,2,16,1,8,2,29,2,9,1,12,2,16,1,9,1,6,1,28,2,10,1,1,2,11,4,1,1,11,2,17,1,11,2,1,1,11,2,1,1,12,1,28,1,1,1,17,1,6,2,12,1,11,1,12,1,17,1,12,1,26,1,28,1,29,1,26,1,27,3,26,1,28,1,26,1,29,1,28,4,26,1,29,1,26,4,28,2,29,1,28,5,27,1,29,1,28,22,29,1,28,35,30,1,14,1,28,18,29,1,28,59,26,1,28,4,27,1,29,1,28,4,29,1,9,1,28,2,29,1,28,2,9,1,6,1,1,2,28,1,1,681,}, + {1,73,28,1,16,2,9,1,7,1,28,1,29,1,6,1,28,5,6,1,11,1,6,1,28,1,16,1,17,1,9,1,16,1,9,1,6,1,28,2,6,1,17,1,1,1,11,2,17,1,11,4,17,2,11,1,1,1,11,3,16,1,11,1,1,1,11,2,9,2,12,1,11,2,17,1,9,1,7,1,26,1,27,1,10,1,27,2,25,1,26,1,29,1,26,2,29,1,26,1,28,2,9,1,15,1,9,1,26,3,28,2,29,1,28,5,27,1,28,2,29,2,28,3,29,2,28,6,29,1,28,1,29,1,28,1,29,2,28,12,26,3,28,24,29,1,28,21,29,2,28,43,29,1,28,12,26,1,28,5,29,1,28,5,10,1,28,5,29,1,28,1,1,683,}, + {1,72,28,1,8,1,9,1,16,1,7,1,6,2,28,1,29,2,28,4,16,1,11,1,10,2,9,1,16,1,9,2,8,1,6,1,7,1,9,1,11,1,1,1,11,3,17,1,11,1,1,1,11,1,12,2,11,1,1,1,11,3,17,1,12,2,17,1,11,2,10,1,28,1,6,1,11,1,1,1,11,1,17,1,16,1,7,1,11,1,9,1,29,1,9,1,12,1,9,4,27,1,26,2,27,2,26,2,9,2,26,1,29,2,26,1,27,1,28,2,29,1,27,1,26,1,29,3,28,2,26,1,29,1,28,1,29,1,28,17,29,1,28,7,26,2,28,46,30,1,29,1,28,56,26,1,29,1,28,2,29,1,28,8,33,1,7,1,28,5,1,683,}, + {1,72,28,1,9,1,7,1,9,2,10,1,9,1,7,1,29,1,6,2,28,3,11,2,1,1,11,5,1,2,8,1,16,1,11,1,1,1,11,7,17,2,11,11,10,1,28,2,11,1,1,1,11,4,12,1,10,2,11,1,1,2,12,1,11,2,12,2,15,1,9,1,26,1,27,1,12,2,15,1,11,3,9,1,26,2,27,2,29,1,28,6,26,1,29,1,28,12,29,1,28,1,29,2,28,3,29,1,28,7,29,1,26,2,28,46,29,1,28,42,29,1,28,14,29,1,28,12,5,1,11,1,28,5,1,682,}, + {1,71,28,1,8,2,7,1,9,2,8,1,16,1,7,1,28,1,8,1,6,1,29,1,28,1,29,1,11,5,1,1,11,1,6,2,11,1,9,1,11,1,1,1,11,22,28,2,16,1,11,2,17,1,11,2,1,1,10,1,28,1,9,1,1,2,11,1,9,1,17,1,12,1,9,1,15,1,12,1,9,1,11,4,15,1,9,1,25,2,9,1,25,2,29,1,28,7,30,1,29,1,28,6,29,2,28,3,29,1,28,3,29,1,28,5,29,2,28,5,26,3,28,4,29,1,28,98,29,2,28,3,29,1,28,8,5,1,17,1,28,5,1,681,}, + {1,71,28,1,9,4,16,1,9,1,16,1,6,2,9,1,29,1,28,2,6,1,16,1,9,1,16,1,11,1,9,1,29,1,28,2,6,1,11,1,16,1,1,2,11,22,29,1,28,1,10,1,11,3,1,2,11,1,1,1,10,1,28,1,7,1,1,1,11,1,8,1,12,1,9,1,10,1,9,2,10,1,27,1,9,1,1,2,10,1,28,2,25,1,9,1,29,1,28,17,29,1,28,5,29,2,28,1,29,1,28,6,29,1,28,5,29,1,28,1,26,4,29,1,28,43,29,1,28,56,26,1,28,3,29,1,28,9,16,1,12,1,28,2,29,1,28,1,1,681,}, + {1,70,28,1,16,2,9,2,7,1,9,1,16,2,28,1,29,1,6,1,28,3,12,1,11,1,9,1,16,1,12,1,6,1,28,3,6,1,11,2,1,1,11,1,12,1,11,4,1,1,11,3,1,1,11,12,8,1,6,1,8,1,16,1,11,2,1,1,11,2,1,2,7,1,28,1,6,1,11,1,16,5,12,1,6,1,28,2,17,1,1,1,9,1,6,1,9,2,28,25,26,2,28,1,29,2,28,13,29,1,25,1,9,2,26,1,28,42,29,2,28,56,29,1,26,1,28,2,29,1,28,1,26,2,28,7,11,1,5,1,28,2,6,1,28,1,1,680,}, + {1,70,28,1,17,1,9,1,16,2,9,2,16,1,9,1,28,1,6,1,9,1,10,1,7,2,17,1,11,1,16,1,8,4,28,3,11,1,1,2,11,1,12,1,17,1,11,3,1,1,11,15,17,1,11,2,16,2,12,1,11,2,17,1,1,1,17,1,11,1,1,1,28,2,11,2,16,1,11,2,17,1,16,1,7,1,28,2,6,1,16,2,9,1,7,1,28,16,29,1,28,6,29,2,28,2,29,1,28,1,29,2,28,1,30,1,29,1,28,11,29,1,26,1,25,1,9,2,26,1,28,99,29,1,28,3,26,2,28,9,1,1,33,1,28,3,1,680,}, + {1,69,28,1,6,1,17,1,9,1,16,2,12,1,16,1,9,1,10,1,12,1,11,1,1,2,16,1,9,3,10,1,6,1,9,1,12,1,8,1,29,1,6,1,12,1,1,2,11,23,16,1,11,1,1,1,11,5,1,1,11,3,1,1,16,1,33,1,11,5,16,1,9,1,6,1,28,2,29,1,10,1,8,1,28,8,29,1,28,10,29,1,28,1,29,2,28,2,29,2,28,7,29,2,28,15,26,2,28,1,26,2,28,97,29,1,28,2,26,2,28,1,26,1,28,8,12,1,9,1,28,4,1,678,}, + {1,69,28,1,11,1,16,1,12,1,8,1,28,1,7,1,8,3,1,2,11,1,16,1,6,1,12,1,11,2,12,1,17,1,12,1,16,1,10,2,12,1,1,2,11,1,17,1,11,1,1,2,11,3,17,1,11,13,12,1,16,1,11,3,12,1,11,2,16,1,8,1,11,10,17,1,16,1,11,2,7,1,28,2,15,1,11,1,26,1,28,2,29,1,28,3,29,1,28,3,29,1,28,9,26,3,29,1,28,5,29,1,28,1,29,1,28,5,29,1,28,16,26,1,9,1,29,1,28,39,29,2,28,55,26,1,29,1,28,1,26,2,28,1,26,2,28,8,16,1,17,1,28,4,1,677,}, + {1,68,28,2,6,1,12,1,11,2,7,1,8,1,9,1,28,2,8,1,6,1,9,1,11,1,17,1,11,3,12,1,11,1,17,1,9,2,12,1,1,2,11,2,29,1,28,1,6,1,11,1,1,2,11,1,12,1,17,2,11,9,12,1,9,1,16,1,12,1,1,1,11,1,10,1,16,1,11,3,9,1,11,10,1,1,11,1,17,1,1,1,11,1,28,14,29,2,28,2,29,2,28,6,30,2,28,6,29,4,28,7,29,1,28,10,29,1,28,3,26,2,28,17,29,1,28,1,29,1,28,20,30,1,29,1,28,55,29,1,28,2,26,3,28,10,6,1,17,1,28,2,6,1,28,3,1,674,}, + {1,65,28,6,8,1,9,1,11,1,1,2,11,1,9,1,10,1,29,1,28,2,11,4,12,1,9,1,16,2,12,1,11,1,1,1,11,1,17,2,11,1,16,1,8,1,6,1,28,2,9,1,1,2,11,1,17,1,11,1,17,1,16,1,17,1,1,1,17,1,12,1,16,1,9,3,16,2,11,2,16,1,11,13,1,1,11,1,17,1,11,3,9,1,28,21,29,2,28,4,29,1,28,4,29,2,28,3,29,1,28,21,26,2,28,1,29,1,28,16,29,1,28,1,29,1,28,12,29,1,28,8,29,2,28,54,29,1,28,2,26,2,29,1,26,1,29,1,28,2,29,1,28,6,6,1,12,1,28,3,29,1,28,1,29,1,28,1,1,6,28,1,1,665,}, + {1,64,28,1,29,1,17,1,16,1,8,1,28,5,7,1,16,1,17,1,1,2,7,1,28,1,29,1,1,1,11,1,12,1,11,1,12,2,9,2,11,1,1,2,11,1,12,1,11,2,1,2,11,1,7,1,28,3,11,5,1,1,11,1,9,1,10,1,9,1,10,1,6,1,7,1,16,1,12,1,16,1,11,7,1,1,11,3,17,1,11,7,1,1,11,1,8,1,28,14,29,1,28,2,29,1,28,4,29,2,28,1,29,1,28,6,29,3,28,3,29,2,28,4,29,1,28,15,29,1,28,1,26,1,9,1,29,1,28,16,29,1,28,13,29,1,28,8,29,1,26,1,29,1,28,54,26,1,28,2,26,1,28,1,26,1,28,1,26,1,28,9,6,1,16,1,28,4,6,1,28,3,1,670,}, + {1,63,28,1,6,1,9,1,16,1,17,1,11,1,16,1,6,1,28,6,9,1,1,2,17,1,16,1,11,1,17,1,11,2,12,2,16,1,12,1,11,1,1,1,11,3,1,1,11,2,1,3,17,1,6,1,28,2,29,1,16,1,11,2,16,1,10,1,8,1,9,1,10,1,6,1,29,1,6,1,16,1,11,5,1,1,11,4,17,1,11,7,12,1,1,2,14,1,13,1,28,10,29,2,28,1,29,2,28,2,29,2,28,7,29,2,28,4,29,2,28,1,29,1,28,1,29,2,28,25,15,1,26,1,28,16,29,1,28,23,29,1,30,1,29,1,28,24,29,1,28,28,26,2,28,1,26,3,28,1,29,1,28,3,29,1,28,6,8,1,16,1,28,4,6,1,28,2,1,670,}, + {1,63,28,1,16,2,9,2,11,2,12,1,10,1,7,1,29,1,28,4,29,1,11,2,9,1,6,1,16,1,9,1,16,1,11,1,9,1,12,1,11,1,1,1,11,3,1,1,11,5,1,2,11,1,12,1,9,1,28,3,7,1,9,2,16,1,17,1,10,1,28,2,6,1,12,1,1,2,11,8,17,1,11,9,16,1,29,1,28,11,30,1,29,1,28,1,29,2,28,2,26,1,28,7,29,1,30,1,26,1,28,4,29,2,28,1,29,4,28,23,29,1,28,1,26,1,9,1,27,1,29,1,28,13,29,2,28,24,29,3,28,52,29,1,25,1,28,2,26,4,28,11,10,1,6,1,28,8,1,668,}, + {1,63,29,1,17,2,16,4,11,1,16,2,12,1,11,1,17,1,12,1,6,1,28,2,16,1,28,1,29,1,12,1,28,2,11,1,9,1,12,1,1,2,11,1,17,1,1,1,11,1,12,1,11,1,1,2,11,7,16,1,29,1,28,1,6,1,12,1,1,1,17,1,7,1,28,1,6,1,12,1,11,5,1,1,11,1,16,1,17,1,11,1,1,1,11,8,1,1,8,1,28,12,29,3,28,1,30,1,29,1,28,2,30,1,28,8,29,1,30,1,28,3,29,1,28,2,29,2,28,2,29,2,28,4,30,1,28,17,26,1,28,2,15,1,9,1,26,1,28,12,29,1,28,27,29,2,28,53,26,1,28,4,26,2,28,9,6,1,28,2,6,1,28,1,29,1,28,7,1,667,}, + {1,62,28,1,10,1,16,3,17,1,16,2,11,4,17,1,16,1,11,2,7,1,28,1,6,1,28,1,10,1,1,1,6,1,29,1,16,1,8,1,11,1,1,2,11,4,12,1,11,7,1,1,11,1,17,2,11,2,16,1,7,1,6,1,8,1,7,1,9,1,11,1,1,2,11,1,12,1,17,1,11,2,16,2,11,11,16,1,28,12,29,2,28,1,29,3,28,13,30,1,28,3,29,2,28,1,29,3,28,2,29,1,28,4,29,2,28,16,29,1,28,2,9,1,25,2,26,1,28,11,29,1,28,11,29,1,28,16,29,2,28,53,26,1,28,3,26,1,29,1,28,15,29,1,28,4,6,1,28,2,1,666,}, + {1,62,28,1,16,3,9,1,17,1,12,1,16,1,11,1,17,1,11,3,9,1,10,1,12,3,9,1,10,1,29,1,9,1,16,2,7,1,16,1,1,2,11,14,1,2,12,1,9,1,11,1,1,1,16,1,28,1,6,1,9,1,11,1,1,1,11,1,17,1,11,3,17,1,12,1,10,1,16,1,1,2,11,8,15,1,29,1,28,2,29,1,28,9,29,3,28,1,30,1,28,2,30,1,29,1,28,3,30,1,29,1,28,5,29,1,28,3,29,2,28,1,29,1,28,1,29,1,28,8,29,1,28,19,26,1,15,1,25,1,26,1,28,10,29,1,30,1,29,1,28,10,29,1,28,3,29,1,28,12,29,2,28,40,29,1,28,12,29,2,28,1,29,1,28,2,26,1,28,4,29,2,28,7,29,1,6,1,29,1,28,1,6,1,28,2,9,1,6,1,28,1,1,665,}, + {1,62,28,1,16,1,9,2,16,4,17,1,11,7,17,1,12,1,11,2,29,1,28,1,11,1,9,2,1,3,12,1,11,4,1,1,11,9,17,1,12,2,11,1,1,2,6,1,28,1,9,1,17,1,1,2,11,3,1,1,16,3,7,1,28,1,16,1,11,5,1,1,15,1,6,1,29,1,28,2,29,1,28,4,26,1,29,1,28,4,29,4,28,2,29,1,26,1,28,4,29,3,28,4,30,1,28,2,29,1,30,1,28,1,29,3,28,1,29,1,28,28,25,1,9,1,26,1,28,10,29,2,28,11,29,1,28,18,29,3,28,3,29,1,28,39,30,1,28,7,26,1,28,2,26,1,28,15,29,2,6,1,28,2,6,1,28,2,9,1,28,1,1,665,}, + {1,62,28,1,16,8,17,1,11,9,1,1,8,1,6,1,11,1,9,1,16,1,1,1,11,1,1,1,11,2,9,1,16,2,11,1,1,1,11,1,17,1,11,7,17,1,11,3,1,1,11,1,28,2,6,1,1,2,11,3,17,1,12,1,11,1,1,1,16,1,28,1,6,1,1,1,12,1,1,1,11,2,16,1,28,5,29,1,28,4,30,1,29,1,28,2,29,2,30,1,29,2,28,2,30,1,13,2,28,3,30,1,29,1,28,2,29,2,28,6,30,1,29,2,28,1,29,1,28,13,29,1,28,15,29,1,25,3,26,2,28,8,29,1,28,12,29,1,28,40,29,1,28,24,30,1,28,6,29,2,28,1,26,2,28,16,29,2,28,1,29,1,28,6,1,1,28,1,1,661,}, + {1,62,28,1,9,3,16,5,17,2,11,7,17,1,11,2,12,2,6,1,9,1,1,1,11,3,16,1,7,1,16,1,12,2,11,3,12,1,17,1,11,2,17,2,11,1,12,1,11,2,12,1,17,1,1,1,28,3,12,1,1,1,11,8,6,1,8,1,11,3,6,2,28,3,30,1,28,6,29,2,26,1,28,1,29,2,28,1,26,1,30,1,26,1,30,1,29,1,26,1,13,1,29,1,28,3,30,1,29,1,28,2,29,1,28,1,29,2,28,1,30,1,29,3,28,1,29,3,28,13,29,3,28,14,26,2,25,1,27,1,26,2,29,1,28,19,29,1,28,16,29,1,28,48,30,1,28,7,29,1,28,1,29,1,26,1,28,15,29,1,28,3,9,1,16,1,28,3,29,1,28,1,1,2,28,1,1,660,}, + {1,62,28,1,9,3,16,2,12,4,17,2,11,6,12,1,11,1,1,2,12,1,6,1,9,1,1,2,9,1,8,1,16,2,11,2,10,1,16,1,11,2,17,2,11,4,16,1,9,1,11,3,12,1,1,1,17,1,7,1,28,1,6,1,1,1,11,1,12,1,11,1,17,1,11,1,1,1,11,2,9,1,12,1,1,2,11,1,6,1,29,2,28,1,29,1,28,7,29,2,30,1,28,1,30,1,28,2,29,2,30,1,13,1,28,1,29,1,26,1,28,3,30,1,29,4,28,3,29,3,28,5,29,4,28,13,30,1,29,3,28,12,29,1,26,1,25,2,9,1,26,3,28,2,29,1,28,30,29,2,28,42,29,1,28,6,29,1,30,1,28,8,26,2,28,14,29,1,6,1,28,2,9,1,1,1,16,1,28,2,6,1,28,2,1,662,}, + {1,62,29,1,9,1,16,4,17,2,12,1,16,1,17,2,11,9,17,1,16,1,12,1,11,1,1,1,11,1,10,1,8,1,16,1,11,1,1,1,11,1,6,1,9,1,11,6,17,1,11,1,9,2,11,1,12,1,11,3,1,2,7,2,11,7,1,1,11,1,9,1,17,2,9,1,7,1,30,1,28,2,29,1,28,8,29,2,28,2,30,1,28,5,30,1,28,1,29,1,26,1,28,3,30,1,29,1,28,1,29,3,28,3,26,1,29,1,28,2,29,1,30,1,29,1,28,2,29,2,28,16,29,1,30,1,29,1,28,11,29,1,26,2,29,2,26,2,28,2,26,1,28,4,30,1,28,25,29,2,28,50,30,1,28,3,29,1,28,4,29,1,26,1,28,15,6,2,28,2,16,1,11,1,6,1,28,1,6,1,9,1,28,2,1,661,}, + {1,61,28,1,6,1,16,3,9,1,16,1,17,1,11,1,17,1,16,1,12,1,16,2,12,5,16,1,11,2,16,1,9,1,1,2,11,2,16,2,9,2,17,1,11,1,16,2,11,5,16,3,8,1,9,1,16,1,8,1,11,1,1,1,11,1,1,2,11,4,1,1,11,4,12,1,16,2,11,1,10,1,28,7,29,1,28,6,29,2,28,1,29,2,28,8,30,1,28,3,30,2,29,1,28,1,29,1,30,1,29,1,28,3,29,1,13,1,30,1,28,1,26,1,30,1,28,2,29,1,30,1,28,9,29,1,28,8,29,2,30,1,29,1,28,9,29,1,26,1,29,1,26,3,28,2,26,1,28,4,9,1,28,17,29,1,28,6,30,1,29,1,28,45,29,1,28,3,29,1,28,2,13,1,28,25,8,1,28,3,16,1,11,1,29,1,28,1,17,1,28,4,1,659,}, + {1,62,29,1,16,1,9,2,16,2,17,1,11,2,17,1,16,1,9,2,8,1,7,3,10,1,6,1,17,1,1,1,11,1,9,1,1,2,11,2,16,2,9,1,16,2,11,1,1,1,11,2,17,1,12,1,11,1,16,1,10,1,16,1,9,1,10,1,16,1,10,2,11,1,1,1,11,3,1,2,11,2,1,1,11,1,17,1,1,1,11,1,10,2,16,1,17,1,7,1,28,5,29,1,28,8,29,3,30,1,28,4,29,2,28,7,29,4,28,1,29,2,28,4,13,2,28,1,29,1,30,1,28,2,30,2,28,1,29,1,28,7,29,1,28,2,30,1,29,1,28,6,30,2,28,10,26,1,9,1,15,1,9,1,26,1,28,2,29,1,28,4,26,1,30,1,28,7,29,1,28,8,29,1,28,5,30,1,26,1,29,1,28,27,29,1,28,18,30,1,28,5,13,1,28,25,29,1,8,1,28,3,16,2,29,1,28,1,11,1,28,4,1,658,}, + {1,62,29,1,9,1,16,2,12,2,17,1,11,3,16,1,9,1,10,1,6,1,28,2,29,1,6,1,7,1,16,1,11,2,16,1,1,1,11,2,17,1,6,1,7,1,17,1,1,1,16,2,11,2,1,1,11,1,12,1,16,1,6,2,12,1,9,1,16,1,11,1,10,1,17,1,1,1,11,2,1,2,17,1,11,1,1,1,11,3,1,1,11,1,8,1,7,1,11,1,15,1,7,1,28,5,29,2,28,8,29,1,28,5,30,1,29,2,30,1,29,2,28,2,29,1,28,4,29,1,30,1,29,1,28,1,29,2,28,4,13,1,28,1,29,2,28,2,26,1,30,1,28,1,29,1,28,4,29,1,28,5,29,2,28,6,13,1,30,1,28,11,26,1,9,1,26,3,28,4,26,1,28,2,30,1,28,1,29,2,28,4,30,1,28,5,29,1,28,2,29,1,28,5,13,1,30,1,29,1,28,46,29,1,30,1,28,5,13,1,28,25,6,1,29,1,28,3,12,1,16,1,28,1,6,1,9,1,28,4,1,657,}, + {1,62,28,1,16,3,12,2,16,2,17,1,1,1,9,2,8,1,6,1,7,1,9,2,7,2,9,1,16,2,11,1,1,1,11,2,16,1,12,1,1,1,11,1,16,1,12,1,6,2,12,1,1,1,11,1,9,2,10,1,7,1,6,1,11,18,29,1,6,1,1,1,15,1,28,16,29,2,28,3,29,1,28,1,29,1,26,1,29,5,28,1,29,3,26,1,28,1,29,1,30,1,29,3,28,4,29,1,13,1,29,1,28,3,30,1,26,1,29,1,28,5,29,1,28,4,29,1,26,1,29,2,28,6,30,1,28,11,26,2,29,1,26,2,28,3,27,1,26,1,28,3,29,2,28,4,29,2,30,1,29,1,28,7,29,1,28,1,29,1,28,2,29,1,26,1,28,1,29,1,28,41,29,1,28,3,29,1,28,5,29,2,28,25,7,1,28,1,6,1,28,2,7,1,6,1,7,1,28,2,9,1,28,4,1,656,}, + {1,62,29,1,16,3,12,2,16,1,9,1,16,1,11,1,16,1,8,2,16,1,11,3,17,1,7,1,16,1,12,1,11,1,1,2,11,2,1,1,11,2,6,1,10,1,1,1,11,1,9,3,11,2,8,1,16,1,6,1,9,1,11,16,17,1,9,1,8,1,11,2,28,8,29,1,28,8,29,1,28,4,29,1,28,1,29,1,30,1,29,1,30,1,29,2,28,2,29,2,28,1,13,1,28,2,29,1,30,1,29,1,30,2,29,1,28,3,26,1,29,2,28,4,29,2,28,9,13,1,26,1,28,8,30,1,28,11,26,2,28,1,26,3,29,1,26,2,28,5,29,2,28,2,29,1,28,3,29,1,13,1,28,3,30,1,28,3,29,2,28,3,30,1,29,1,28,40,29,2,28,4,30,1,28,7,13,1,28,25,6,2,28,3,6,1,28,4,9,1,28,2,6,1,28,1,1,655,}, + {1,61,28,1,8,1,16,3,12,2,9,1,7,1,8,1,16,1,11,3,1,1,11,1,7,1,29,1,6,1,28,1,29,1,6,1,16,1,1,2,11,2,1,1,11,1,16,3,11,2,1,1,12,1,7,1,1,1,9,1,6,1,7,1,11,1,1,1,11,16,12,1,9,1,17,1,1,1,8,1,28,8,29,1,30,1,28,12,30,1,29,10,28,2,9,1,30,1,28,2,29,2,28,1,29,1,30,1,28,3,29,4,28,3,29,2,28,8,29,1,9,1,13,1,29,2,28,6,30,1,28,11,26,1,29,1,28,1,29,2,26,4,28,5,29,4,30,1,28,1,29,1,28,2,26,1,30,1,28,2,29,1,28,3,30,1,28,5,30,1,28,4,29,1,28,2,29,4,28,3,29,2,28,24,30,1,28,17,29,1,28,21,29,1,28,6,16,1,6,1,28,2,6,1,28,4,1,654,}, + {1,61,28,1,16,4,12,1,16,1,10,1,7,2,8,1,12,1,11,2,1,1,11,1,9,2,12,2,10,1,7,1,12,1,1,2,11,1,12,1,9,1,11,3,12,1,17,1,11,1,17,1,9,1,8,1,9,1,1,1,16,2,11,19,16,1,1,1,14,1,28,9,29,1,30,1,29,1,28,10,29,1,30,1,29,4,28,1,29,1,30,1,29,2,28,3,9,1,13,1,28,2,29,4,30,1,29,1,28,1,29,5,30,1,28,2,26,1,30,1,28,5,29,2,28,1,29,1,13,1,26,1,28,2,29,1,28,5,29,1,28,11,26,1,29,1,28,2,29,1,26,4,28,2,26,2,28,5,30,1,28,1,30,1,29,1,28,2,29,3,28,2,29,1,28,3,29,1,28,3,29,1,28,7,29,2,28,5,29,2,28,37,29,1,28,3,29,1,28,3,29,1,28,1,29,1,28,23,6,1,16,1,6,1,28,1,9,1,29,1,28,1,29,1,28,1,1,654,}, + {1,61,28,1,17,1,16,2,12,1,16,1,10,1,7,2,8,1,7,1,16,1,11,2,12,1,11,1,1,4,17,1,16,1,11,1,1,2,11,1,12,1,9,1,11,1,12,2,11,3,9,1,6,1,29,1,28,1,11,1,1,1,11,2,17,1,11,18,1,1,7,1,28,6,29,1,28,3,29,1,30,1,28,11,29,7,30,1,29,1,28,4,30,1,26,1,29,1,28,1,29,13,28,2,26,1,30,1,29,3,28,1,29,4,28,2,26,1,28,2,29,1,28,5,29,1,28,10,30,1,25,1,29,1,28,3,26,8,29,1,28,4,29,2,28,1,29,2,28,3,29,1,28,5,29,1,30,1,28,4,29,1,28,2,30,1,28,3,29,1,28,6,29,2,28,14,29,1,28,10,29,1,28,9,29,1,28,29,29,1,28,1,29,1,28,4,6,1,11,1,6,1,28,1,16,1,28,3,1,654,}, + {1,61,28,1,12,1,9,1,12,2,9,1,7,1,6,1,7,1,9,2,11,1,1,1,11,1,8,1,10,1,16,1,12,2,11,1,16,1,17,1,1,2,11,3,12,1,16,1,9,1,11,2,16,2,9,1,29,1,6,1,16,1,6,1,16,1,17,1,11,19,1,1,11,1,29,1,28,11,30,1,29,1,28,9,29,4,28,1,29,2,30,1,29,1,28,3,29,1,30,1,28,1,26,1,30,1,28,2,29,1,28,4,30,1,29,2,30,1,28,5,29,1,30,1,29,2,30,1,29,1,30,1,29,1,28,1,29,1,28,2,9,2,30,1,29,1,28,2,29,1,28,2,29,1,28,10,13,1,9,1,29,1,28,4,26,8,29,1,28,7,29,2,28,3,29,2,28,3,26,1,29,1,28,4,30,1,28,2,29,1,28,4,29,2,30,2,29,2,30,1,29,2,28,34,29,1,28,37,12,1,11,1,28,3,29,1,28,1,1,654,}, + {1,61,28,1,12,1,9,1,16,2,9,1,7,1,6,2,9,1,12,1,16,1,11,1,12,1,7,1,6,1,7,1,9,1,11,2,12,1,11,1,1,2,11,1,17,1,12,1,10,1,17,1,11,1,17,1,12,2,9,1,6,1,28,1,11,2,16,1,29,1,12,1,11,19,1,1,9,1,28,9,29,1,28,2,30,2,28,8,30,2,29,1,30,1,29,1,28,2,29,3,28,1,29,1,30,1,26,2,30,1,26,1,13,2,29,2,30,2,29,1,28,1,29,3,30,1,28,1,29,1,28,3,29,1,30,1,29,2,13,1,29,2,30,1,28,1,29,1,28,2,13,2,30,2,28,4,29,1,30,1,29,1,28,9,13,1,9,1,28,5,26,9,28,8,29,2,28,5,29,3,28,2,29,1,28,9,29,2,30,1,13,3,26,2,30,1,29,1,28,34,29,1,28,37,6,1,16,1,11,1,28,2,10,1,28,1,1,654,}, + {1,61,28,1,16,1,9,1,16,1,9,1,8,2,6,2,9,1,11,2,17,1,9,1,6,1,7,1,6,1,7,1,11,2,16,1,17,1,1,2,11,2,16,4,17,1,12,1,9,1,6,2,12,1,11,3,9,1,6,1,11,19,1,1,29,1,28,9,29,1,28,2,29,2,28,8,29,3,26,2,29,1,28,3,29,2,26,1,13,2,26,1,29,1,28,1,30,1,13,1,29,1,28,1,30,1,26,2,28,1,29,1,28,1,29,2,28,1,29,2,28,3,26,1,28,2,13,1,30,1,29,1,26,1,29,1,28,6,26,1,30,1,28,3,29,1,26,1,29,1,28,9,30,2,28,2,29,2,28,2,26,6,27,1,26,1,28,1,29,2,28,5,29,2,28,4,29,1,26,1,29,1,28,2,29,2,28,4,29,1,28,1,30,1,29,1,28,1,29,2,30,1,13,1,9,1,13,2,30,2,29,1,28,44,29,1,28,20,29,1,28,7,7,1,8,1,6,1,28,4,1,653,}, + {1,61,28,1,11,1,9,1,16,1,7,1,8,1,7,1,29,1,7,1,12,1,11,2,9,1,7,4,8,1,12,1,16,2,1,2,11,1,17,2,9,2,16,1,17,2,33,1,6,2,10,1,11,2,12,1,33,1,1,1,12,1,33,1,1,1,17,1,33,1,11,2,1,2,11,1,16,2,11,7,1,1,11,1,28,11,29,1,28,1,29,3,28,8,29,2,28,1,29,1,25,1,28,1,29,1,28,1,13,1,26,1,30,1,28,2,30,1,28,2,29,2,28,4,13,2,26,1,29,1,28,1,29,3,28,4,29,1,30,1,26,1,13,1,26,1,29,1,28,10,30,1,29,1,28,2,29,5,28,3,29,1,28,11,26,5,27,1,26,1,28,1,29,1,26,2,28,4,29,2,28,2,29,1,28,1,30,1,26,1,28,3,29,1,28,5,29,1,28,2,13,1,29,2,28,1,29,1,13,1,9,3,25,1,13,1,26,1,29,1,28,33,29,1,28,5,29,1,28,25,29,1,28,8,29,1,28,4,1,653,}, + {1,61,28,1,11,1,9,3,7,1,29,1,7,1,16,1,11,3,9,1,6,2,7,1,6,1,7,1,16,3,1,1,11,3,12,1,10,1,9,1,12,2,9,1,6,1,28,1,8,1,11,4,12,2,17,1,12,1,11,1,17,1,10,1,17,1,11,4,17,1,11,6,17,1,11,1,1,1,13,1,28,11,30,1,28,2,29,1,30,1,28,7,29,3,28,3,9,1,30,1,29,1,13,1,29,2,28,3,29,1,28,3,29,1,28,4,29,1,30,1,29,1,28,2,29,3,28,3,29,1,26,1,30,3,29,1,28,10,30,1,29,1,28,3,29,1,28,1,29,1,13,1,29,1,28,2,29,1,28,6,29,1,28,5,26,6,28,1,26,3,28,6,29,1,28,2,30,2,28,6,29,1,28,8,30,1,13,1,9,1,14,3,15,1,14,1,11,3,14,2,15,1,9,1,25,1,13,1,30,1,29,1,28,31,29,1,28,2,29,1,28,33,7,1,28,1,1,3,28,1,1,650,}, + {1,61,28,1,16,1,9,1,16,2,6,1,28,1,16,1,11,4,16,1,7,2,10,1,8,1,10,1,16,1,10,1,9,1,1,1,11,1,12,2,10,1,27,1,12,2,9,1,6,1,29,1,7,1,16,1,1,1,11,1,12,1,17,1,12,1,7,1,11,2,9,1,12,1,10,1,12,1,11,1,17,1,11,12,28,12,29,2,28,1,29,1,30,1,28,2,29,1,28,2,29,2,28,2,29,1,28,3,29,1,26,1,30,1,26,1,28,5,29,5,28,5,29,2,28,2,29,1,30,1,29,1,28,3,29,1,30,1,29,2,30,1,29,1,28,5,29,1,30,1,29,1,28,2,29,2,28,6,13,1,30,1,28,1,29,1,30,1,28,14,29,1,26,7,28,6,29,2,30,1,26,1,28,3,29,1,28,2,26,2,28,4,29,1,13,2,9,1,15,2,9,1,13,1,30,1,28,2,29,1,13,1,9,1,15,2,14,1,11,1,14,1,1,2,11,2,14,1,15,1,9,2,28,65,6,1,28,1,1,653,}, + {1,61,28,1,9,2,16,1,8,1,29,1,8,1,11,2,16,1,12,1,16,2,8,1,7,1,9,2,16,1,12,1,10,1,9,1,1,1,17,1,9,1,27,1,29,1,27,1,9,1,12,1,9,1,28,1,6,1,12,1,11,1,17,1,11,1,12,1,11,1,12,1,7,1,12,1,17,1,9,2,16,1,11,12,1,2,9,1,28,9,30,1,28,3,29,2,28,1,29,1,28,2,29,1,28,2,29,1,30,1,28,1,29,2,26,1,28,3,29,2,30,1,28,3,29,2,28,1,29,2,30,1,29,1,28,1,29,2,28,5,29,2,28,3,29,1,30,1,29,3,30,1,29,2,28,5,29,1,26,1,29,1,28,3,29,4,28,3,26,1,29,1,28,1,30,1,26,1,29,1,28,2,29,1,28,3,29,1,28,2,29,2,28,2,29,1,26,7,28,4,29,1,28,2,29,1,13,1,28,3,26,1,29,1,28,2,30,1,29,1,28,4,26,1,15,2,28,13,30,1,6,1,29,1,26,1,25,1,9,1,15,1,11,4,15,1,9,1,29,1,28,62,29,1,6,1,28,2,1,5,28,1,1,645,}, + {1,61,28,1,8,1,9,1,16,1,6,1,7,1,17,1,11,1,12,1,16,1,9,1,7,1,9,2,7,1,8,1,9,1,16,2,10,1,12,1,1,1,9,1,27,1,26,1,29,2,26,1,10,1,27,1,6,1,9,1,17,1,11,1,17,1,11,2,1,1,11,1,16,1,9,1,16,2,10,1,11,1,17,1,12,1,11,2,12,1,11,5,12,1,10,1,11,1,1,1,28,10,30,1,29,1,28,3,30,1,29,1,28,2,29,1,28,2,29,3,28,1,26,1,29,1,28,1,30,1,28,3,29,1,30,1,28,3,29,2,30,1,29,1,28,1,29,1,30,1,29,2,28,1,29,3,28,7,30,1,13,1,26,1,29,2,30,1,29,1,28,5,29,1,30,1,29,1,28,4,29,1,30,2,26,1,28,2,30,1,29,4,25,1,26,1,30,6,26,1,29,2,26,2,29,2,26,5,29,1,26,2,28,6,30,1,26,2,28,2,29,3,28,3,29,1,28,3,29,2,28,21,30,1,10,1,15,1,14,2,1,1,11,1,14,1,9,1,13,1,29,1,28,62,16,1,28,2,1,649,}, + {1,61,28,1,7,1,9,1,7,2,16,1,11,1,12,3,9,1,7,1,12,1,17,1,9,2,16,2,9,1,7,1,11,1,1,1,27,1,29,1,27,2,29,1,28,3,26,1,12,2,9,1,12,2,9,1,17,1,9,1,17,2,12,1,10,1,9,1,1,1,12,1,9,1,12,2,9,1,12,1,11,3,1,1,12,1,29,1,9,1,16,1,28,15,29,1,28,2,30,2,28,1,29,1,30,1,28,1,26,1,29,1,30,1,29,1,28,1,29,1,28,3,26,3,28,2,29,2,30,1,29,4,28,2,29,2,26,1,13,1,26,1,29,5,28,1,29,1,26,1,13,1,26,1,29,2,28,3,29,2,30,1,13,2,28,2,29,3,30,1,26,2,30,1,28,1,30,1,13,1,29,2,30,1,28,1,13,2,26,3,13,4,26,1,29,3,28,3,26,8,28,1,29,1,28,2,30,1,9,1,26,1,28,3,30,1,28,35,30,2,9,1,14,1,11,1,1,1,11,1,14,1,9,1,13,1,28,15,29,1,28,44,10,1,16,1,28,3,1,647,}, + {1,62,6,1,9,1,7,1,16,1,11,1,17,1,16,1,11,2,16,2,11,2,12,1,16,1,9,3,27,1,1,1,11,1,27,1,26,2,25,1,26,1,28,3,26,1,15,1,9,1,27,2,10,1,25,2,29,1,26,1,11,1,15,1,29,1,12,1,11,1,12,1,9,2,10,1,9,2,17,1,1,1,11,2,7,1,29,1,9,1,29,1,28,10,29,1,28,2,29,2,28,2,29,1,30,1,29,5,30,2,29,1,30,2,29,1,28,3,13,1,26,1,13,1,29,1,28,1,29,3,30,1,26,1,29,1,28,3,26,5,30,1,29,1,30,1,26,2,29,3,30,1,29,6,30,1,26,1,13,2,9,1,30,1,29,1,30,3,26,1,13,1,26,1,29,2,26,1,13,1,30,1,29,2,28,1,30,1,26,1,13,1,26,2,13,2,26,1,13,1,30,1,29,1,28,6,26,1,27,1,26,5,28,1,29,2,30,1,13,2,29,1,28,3,29,2,28,6,29,2,28,3,30,1,28,7,29,1,28,17,29,1,8,1,15,1,14,1,1,2,11,1,9,1,29,1,28,55,29,1,28,3,10,1,28,4,1,646,}, + {1,62,6,1,16,1,8,1,11,2,16,1,12,1,11,3,17,1,11,2,12,1,16,1,10,1,7,2,12,1,11,1,12,1,9,2,26,1,27,1,29,1,28,2,26,1,9,2,27,1,26,3,9,2,28,2,9,1,12,1,29,1,12,1,9,2,12,1,9,1,26,1,9,1,10,1,17,1,1,1,17,1,28,2,6,1,14,1,28,4,29,1,28,5,29,1,26,1,28,2,29,1,26,1,29,1,28,1,29,2,28,1,29,2,28,1,30,1,28,1,26,1,29,2,30,1,29,2,28,2,30,2,13,1,29,4,30,1,29,2,28,3,30,1,13,1,26,1,29,1,28,3,29,3,26,1,30,1,29,2,28,3,29,1,30,3,26,1,13,4,9,1,26,3,30,1,26,1,13,1,30,1,29,1,26,1,30,1,29,3,28,1,29,2,26,1,13,1,26,1,30,1,26,2,29,1,28,1,29,2,28,6,29,1,26,4,28,1,26,1,29,1,28,1,29,1,9,2,29,1,28,3,30,1,26,1,30,2,28,3,29,1,28,2,29,1,28,5,29,9,28,6,29,2,28,10,13,1,14,1,11,1,14,1,11,1,15,1,25,1,28,55,29,1,28,2,9,1,6,1,28,4,1,645,}, + {1,62,8,1,11,1,9,1,16,3,12,1,17,2,12,1,17,1,1,1,16,1,7,1,8,1,6,1,8,1,10,1,9,1,11,1,9,1,25,1,26,3,29,1,28,2,15,1,26,1,28,1,15,1,27,1,9,1,27,1,15,1,27,1,28,2,26,1,15,1,27,1,9,1,27,1,9,2,27,1,9,1,12,1,26,1,11,1,1,1,9,1,28,2,15,1,14,1,28,5,29,1,30,1,28,2,29,2,30,1,28,4,30,2,28,2,29,2,28,2,29,2,26,1,29,1,28,1,30,2,28,2,30,2,29,2,28,2,29,1,30,1,29,3,28,2,30,1,13,2,29,1,28,7,26,1,30,1,29,1,13,2,29,1,30,1,26,1,30,2,29,4,30,1,26,1,9,1,26,1,29,1,30,1,13,1,26,1,29,3,26,1,13,2,30,1,29,4,28,2,29,1,26,1,30,2,29,3,28,5,29,1,28,1,29,2,27,2,29,2,26,1,28,2,26,2,29,1,28,5,30,1,13,1,29,1,28,3,29,2,28,2,29,1,28,2,30,1,13,2,29,1,28,2,29,1,28,23,29,1,9,1,14,1,1,1,15,3,13,1,28,50,29,1,28,2,6,1,28,2,6,1,7,1,28,3,10,1,28,1,1,644,}, + {1,61,28,1,11,5,17,1,12,2,16,3,9,1,29,1,28,2,29,1,9,2,10,1,11,1,9,1,27,1,26,1,27,1,9,2,29,1,28,1,9,1,27,1,26,1,9,1,27,3,9,1,26,1,28,1,29,1,26,1,12,1,25,1,27,1,9,1,26,1,29,1,9,1,11,3,17,1,6,1,29,1,30,1,6,1,11,1,9,1,28,1,29,1,28,4,29,2,28,1,29,1,30,2,28,5,9,1,29,1,28,2,29,2,30,2,26,1,13,1,26,1,29,2,28,3,13,3,26,1,29,1,28,5,29,1,30,1,26,1,13,1,26,1,30,1,29,2,28,1,29,2,28,3,26,1,29,1,28,1,29,1,13,2,26,1,28,1,29,6,30,4,26,1,13,3,30,1,29,4,30,3,29,2,28,3,29,1,30,2,29,2,28,4,29,3,30,2,26,1,29,1,26,1,27,1,26,6,30,1,29,3,13,1,29,1,28,1,29,1,30,1,28,8,29,2,26,1,14,1,26,1,28,29,30,1,9,1,15,1,14,1,11,2,14,1,9,1,28,14,29,1,28,34,29,2,28,4,6,1,28,1,6,1,28,2,12,1,6,1,28,1,1,2,28,1,1,640,}, + {1,61,28,1,16,1,29,1,17,1,11,4,17,1,12,1,16,2,7,2,9,1,8,1,9,1,12,1,7,1,9,1,17,1,27,1,25,1,26,2,9,1,15,1,27,1,26,2,25,1,27,1,26,1,27,1,26,1,27,2,26,1,29,1,25,1,27,1,25,1,9,1,27,1,9,1,27,1,26,1,12,1,1,1,15,1,27,1,28,1,29,1,28,2,16,1,11,1,28,2,29,1,28,7,29,1,13,1,30,1,28,5,13,1,29,1,28,1,29,1,28,2,29,1,30,1,29,1,26,2,29,2,28,1,29,1,30,1,13,4,26,1,30,1,29,2,28,3,26,1,13,2,30,1,28,1,29,1,28,2,29,2,28,3,13,1,26,1,28,2,30,1,13,1,26,1,28,1,30,4,29,4,30,1,13,1,9,2,13,3,29,3,28,1,29,1,30,2,29,4,30,1,26,2,30,2,29,1,28,1,29,5,30,1,29,1,30,1,13,1,26,2,27,3,26,2,28,1,29,1,26,2,29,1,28,1,29,1,30,1,28,1,29,2,28,5,29,1,30,2,29,1,28,2,26,1,28,32,9,1,14,1,11,1,14,2,11,1,9,1,28,13,29,1,28,35,26,1,28,2,10,1,28,3,6,1,28,2,29,1,7,1,29,1,28,1,1,642,}, + {1,61,11,1,12,1,6,1,12,1,11,9,1,2,11,1,1,1,11,1,29,1,11,1,12,1,26,1,27,1,26,3,9,3,26,1,9,2,27,2,26,1,27,1,26,1,29,1,27,2,9,1,27,1,9,1,25,1,9,3,10,1,11,1,15,1,28,2,29,2,28,1,9,1,11,1,28,10,29,1,26,1,28,5,29,1,26,1,29,1,28,5,29,1,28,1,29,5,26,1,13,1,29,1,30,1,26,4,30,1,29,2,28,2,29,1,26,1,30,1,29,2,28,3,29,4,28,1,25,1,9,1,30,1,28,2,26,1,13,1,26,1,30,1,26,3,30,2,29,2,9,1,15,2,9,1,13,3,26,1,30,2,26,1,30,2,29,4,26,1,13,1,26,1,30,3,29,4,30,3,29,3,26,8,28,7,30,1,29,2,28,5,29,5,28,5,29,2,30,1,26,1,28,24,29,1,26,1,13,1,15,1,14,3,11,1,14,1,9,1,28,51,10,1,28,2,29,1,28,6,6,1,28,1,1,641,}, + {1,60,28,1,11,2,1,4,11,6,1,2,11,3,12,1,9,1,17,2,27,1,26,2,12,2,27,1,9,3,27,1,9,2,27,2,26,1,29,2,27,1,26,1,9,6,26,1,29,1,15,1,11,1,6,1,28,2,29,1,7,1,9,1,16,1,29,1,28,1,29,1,28,7,30,1,26,1,28,5,13,2,28,4,29,1,30,1,29,2,28,1,29,5,26,1,28,2,29,4,28,5,30,1,26,1,29,3,28,2,29,2,30,4,26,1,9,1,13,1,29,2,13,1,15,2,26,1,13,6,25,1,15,2,9,3,13,3,26,1,13,3,30,5,13,2,30,1,29,6,30,1,26,3,30,2,29,4,26,4,9,1,29,1,28,6,30,3,28,4,30,1,29,2,28,2,29,1,13,1,26,1,28,2,29,1,26,1,9,2,13,1,30,1,26,1,28,23,30,1,26,1,13,1,9,1,14,1,11,1,14,2,11,1,15,1,28,19,29,1,28,2,29,1,28,27,29,1,26,1,28,3,29,1,6,1,29,2,28,1,6,1,29,1,28,1,1,640,}, + {1,59,28,1,7,3,12,1,1,1,11,1,17,3,11,3,17,1,11,1,16,1,9,1,17,1,16,1,7,1,17,1,11,1,17,1,9,1,10,1,27,1,12,2,9,4,26,2,25,1,26,1,27,2,28,1,27,2,25,1,9,1,15,2,17,2,25,1,28,2,6,1,8,1,9,2,28,2,6,1,14,1,25,1,28,2,29,1,28,7,30,2,28,4,30,1,13,1,29,1,28,4,29,1,30,1,29,1,26,1,29,2,30,1,29,1,28,3,29,4,28,6,29,1,13,2,26,1,28,3,29,2,30,1,26,1,13,2,26,2,9,1,13,3,9,1,14,1,15,1,9,11,15,2,9,3,26,2,30,2,26,3,30,1,13,4,30,2,29,2,30,1,26,4,30,2,29,1,28,4,26,3,25,2,26,1,28,7,26,1,25,1,30,1,29,1,30,1,29,2,26,3,29,1,28,1,29,2,28,1,29,1,30,1,26,3,30,1,29,2,28,26,29,1,9,1,14,3,11,2,15,1,13,1,28,17,29,1,28,2,29,1,28,28,25,1,28,2,9,1,16,1,9,1,16,1,12,1,6,2,28,3,1,639,}, + {1,59,28,1,16,1,6,1,7,1,8,1,16,1,9,1,10,1,9,1,16,1,12,1,11,2,12,2,9,2,16,1,8,1,6,1,11,1,1,1,12,1,9,1,12,1,9,3,12,1,9,3,25,3,26,1,27,1,9,1,27,1,12,1,9,1,12,2,11,2,15,1,16,1,7,1,28,3,29,1,9,1,14,1,9,1,28,1,29,1,14,1,26,1,28,1,29,1,28,14,30,1,28,3,29,1,26,1,29,3,30,1,26,1,28,2,30,1,29,1,28,1,29,2,30,2,29,4,28,4,26,1,13,1,25,1,13,1,30,1,28,1,29,1,30,1,26,2,13,1,25,1,9,1,25,1,9,4,15,8,9,9,15,2,9,2,13,2,26,3,13,2,9,2,13,4,26,6,30,1,29,1,28,6,29,1,27,1,26,1,25,1,26,3,28,2,29,1,28,3,30,1,9,1,13,2,25,1,30,2,9,1,13,2,29,1,28,5,30,2,28,1,29,1,26,1,30,1,28,28,29,1,9,1,14,1,11,1,15,1,11,2,14,1,26,1,28,9,29,1,28,5,29,1,28,3,29,1,28,32,9,1,16,1,9,1,12,1,11,1,10,1,28,2,29,1,28,1,1,638,}, + {1,57,28,1,1,1,28,1,6,2,9,1,8,1,6,1,29,1,6,1,10,1,12,1,17,2,12,3,16,1,7,1,10,1,8,1,7,1,11,1,1,1,11,1,17,1,11,1,12,1,17,1,9,2,12,1,11,1,17,2,11,1,12,1,9,1,12,1,17,1,12,4,11,1,16,1,1,1,9,1,29,2,7,1,28,1,29,1,16,1,11,3,15,2,14,1,28,14,29,2,30,1,26,1,28,3,29,1,30,1,29,2,30,2,26,1,28,2,26,1,29,1,28,1,30,2,26,1,30,2,29,3,28,2,29,1,30,1,26,1,13,2,25,1,13,2,30,1,26,1,13,2,9,4,15,2,9,1,15,2,9,1,15,1,14,1,15,4,9,5,15,1,9,1,13,1,26,1,9,1,15,3,14,1,15,1,9,1,13,1,26,1,25,1,9,2,13,2,9,2,13,1,26,1,13,1,26,2,30,1,29,2,28,5,29,1,28,1,26,1,9,1,26,5,28,2,29,3,28,1,26,1,9,1,26,1,13,1,9,1,25,1,9,2,29,1,28,10,26,2,29,1,28,30,9,1,11,1,14,1,11,2,15,2,26,1,28,8,29,1,28,2,30,1,28,5,30,1,29,1,28,29,29,1,28,2,6,1,7,1,9,1,16,1,6,2,16,2,12,1,29,1,28,1,1,637,}, + {1,59,28,1,16,1,6,1,7,1,12,1,8,1,10,1,8,1,9,1,16,1,12,1,17,1,11,1,17,1,16,1,9,1,7,1,6,2,7,1,11,1,1,1,17,2,11,1,17,1,11,1,12,1,29,1,10,3,9,3,12,2,16,1,12,1,11,2,17,2,11,1,1,1,9,1,28,2,9,1,7,1,11,1,1,2,11,1,12,1,1,1,15,1,8,1,29,1,28,1,29,1,28,10,29,1,30,1,29,4,28,2,29,1,30,1,29,3,30,1,29,2,30,2,28,4,30,1,29,1,30,1,26,1,30,1,29,1,28,2,26,2,30,1,26,2,13,3,9,1,13,2,25,1,9,2,15,1,14,3,15,1,13,2,15,2,25,2,9,3,25,2,9,1,15,1,9,1,25,2,28,2,15,1,9,1,15,1,25,1,30,1,26,1,9,1,25,1,13,1,9,1,15,1,9,2,26,1,30,1,26,2,30,3,29,1,26,1,30,1,28,2,26,3,29,1,26,2,28,1,26,6,28,2,29,2,28,3,29,1,28,2,13,1,14,1,15,1,28,2,29,1,28,9,29,1,13,1,30,1,29,1,28,30,30,1,1,1,11,2,14,2,15,1,29,1,28,8,29,1,28,13,29,1,28,7,29,1,28,20,10,1,29,1,7,1,28,3,9,1,6,1,28,1,8,1,28,1,1,636,}, + {1,59,28,1,16,1,29,1,6,1,16,1,10,1,8,2,9,1,16,1,12,1,17,3,16,1,7,2,6,1,29,1,9,1,11,1,1,1,17,1,11,2,17,1,11,1,12,1,7,1,6,1,8,1,6,1,29,1,9,1,11,2,17,1,11,1,17,1,16,1,12,1,11,2,17,1,12,1,29,1,9,1,6,1,28,1,15,1,1,1,9,1,11,1,8,1,6,1,12,1,15,2,13,1,28,1,29,1,28,7,29,1,28,1,29,7,28,1,29,5,30,3,29,4,30,2,28,2,29,1,26,1,30,1,28,3,29,2,30,1,13,2,26,1,29,2,30,1,13,3,9,1,15,2,14,2,15,2,9,1,25,1,9,1,15,2,13,1,9,2,13,2,9,1,25,1,13,3,26,1,13,1,28,1,26,1,14,1,13,2,9,1,29,1,28,3,29,3,9,1,15,1,9,1,29,2,30,5,26,2,13,1,9,1,25,1,26,1,29,1,28,1,29,1,26,1,28,1,26,3,27,2,26,1,29,3,30,2,29,1,28,3,30,1,25,1,13,1,28,4,29,1,28,8,29,1,13,1,28,2,29,1,28,19,29,1,28,11,11,3,14,1,11,1,9,1,25,1,28,24,29,1,28,4,29,1,28,20,29,2,28,5,6,1,33,1,28,1,9,1,28,1,1,635,}, + {1,59,28,1,9,1,29,1,6,1,16,1,9,1,8,1,10,1,16,1,9,1,16,1,11,1,17,1,11,1,9,1,29,1,7,1,6,1,29,1,16,1,17,1,1,1,17,1,11,2,17,3,16,1,6,1,7,1,29,1,6,1,12,1,1,2,11,6,17,1,12,2,28,1,7,1,8,2,11,2,9,1,16,1,28,2,8,1,16,1,14,1,13,1,28,8,29,1,30,1,29,4,30,2,29,6,30,4,29,1,30,1,29,1,28,2,13,1,9,1,13,1,28,4,29,2,26,2,30,2,26,2,29,1,28,2,30,1,26,1,13,1,25,1,9,1,15,1,14,2,15,2,9,2,25,1,9,4,13,2,26,1,13,2,26,1,30,1,13,1,28,2,29,1,28,1,13,1,14,1,13,1,29,1,26,1,25,1,9,1,26,1,28,4,13,1,15,1,9,1,13,1,26,2,13,3,26,1,29,1,28,1,29,1,26,1,13,1,26,1,30,1,28,1,29,2,28,1,26,1,27,2,25,2,26,2,29,1,26,1,13,1,25,1,13,1,29,1,26,1,9,1,13,1,26,1,30,1,28,4,29,1,28,5,30,1,28,3,26,2,29,1,28,21,29,1,28,10,29,1,11,3,15,1,11,1,14,1,29,1,28,16,29,1,28,6,29,1,28,26,6,1,28,2,6,1,7,1,28,2,10,1,28,2,12,1,28,1,1,634,}, + {1,59,28,1,9,1,29,2,16,2,8,1,10,1,9,2,16,1,11,3,6,1,29,1,7,1,6,2,12,1,11,2,12,1,17,1,11,1,17,1,12,1,11,2,7,1,6,1,8,1,17,1,1,2,11,1,17,1,11,2,1,1,11,3,17,1,12,1,7,1,28,1,6,1,15,1,11,3,6,1,29,1,7,1,16,1,9,2,30,1,28,1,30,1,28,7,29,1,28,2,29,1,30,1,26,1,30,1,29,1,28,1,29,5,30,3,29,2,30,1,28,2,30,1,9,3,26,1,28,2,30,1,26,1,30,1,29,1,13,1,26,1,29,1,28,1,29,1,30,1,26,1,13,2,25,1,9,1,15,4,9,4,13,1,26,1,13,1,9,1,14,1,13,1,26,1,29,1,28,9,29,1,25,1,28,4,29,1,26,1,9,1,13,1,29,1,28,2,29,1,13,1,25,2,26,1,30,1,13,2,26,1,28,5,13,1,9,1,29,1,28,2,29,1,26,1,25,1,27,1,9,1,27,1,26,3,9,2,15,1,25,1,13,1,25,2,29,1,28,3,29,1,28,2,29,2,28,3,29,2,28,3,29,1,9,1,26,1,28,33,29,1,1,1,11,3,15,1,14,1,28,10,29,1,28,5,29,1,28,6,29,1,28,26,6,1,28,3,7,1,11,1,10,1,28,1,12,1,28,2,16,1,28,1,1,633,}, + {1,59,28,1,9,1,6,1,29,1,9,1,16,1,7,1,8,1,16,1,9,1,16,1,11,2,17,1,28,1,6,1,7,1,6,1,9,1,16,1,11,2,17,2,11,1,12,2,11,2,9,1,29,1,16,1,1,2,11,1,9,1,7,1,11,5,1,1,11,1,17,1,28,2,9,1,14,1,11,1,12,2,6,1,9,1,14,1,9,1,28,4,29,1,28,11,29,1,30,1,29,10,30,1,29,4,28,2,29,1,26,1,13,1,26,3,30,2,29,2,26,1,30,1,29,2,30,1,9,2,25,1,9,2,15,2,9,6,25,1,13,1,26,1,30,1,26,1,13,1,15,1,26,1,28,2,29,2,28,7,26,1,28,6,29,1,13,1,25,1,9,1,28,2,29,1,26,1,13,2,30,1,26,1,30,2,28,5,26,1,9,1,13,1,30,1,29,1,26,2,9,3,27,1,26,2,9,1,15,2,9,1,13,1,26,1,30,1,29,1,28,4,26,2,28,1,29,1,30,1,29,1,28,2,29,1,28,5,9,1,13,1,28,34,25,1,11,4,14,1,9,1,28,5,29,1,28,15,29,2,28,6,29,1,28,19,29,3,28,2,9,1,17,1,6,1,28,1,9,1,28,2,7,1,28,1,1,632,}, + {1,59,28,1,7,1,6,2,9,1,16,1,8,1,9,1,12,2,17,1,11,2,16,1,28,1,7,1,6,1,29,1,16,2,11,3,17,1,12,4,17,1,12,1,7,1,12,1,11,3,9,1,28,1,11,6,1,1,11,1,29,2,9,1,11,2,9,1,16,1,9,1,29,1,13,1,28,3,30,1,29,1,28,1,29,1,28,11,29,3,30,1,29,9,28,2,29,2,28,5,30,1,26,3,30,2,29,1,30,3,13,1,15,1,14,2,9,2,15,1,9,6,13,4,29,1,28,2,26,1,29,1,28,15,29,1,28,5,26,1,29,2,28,2,29,1,26,2,30,1,29,1,28,2,29,1,30,1,28,3,9,1,15,1,9,1,25,1,26,2,9,1,15,1,27,1,26,2,25,1,9,2,13,1,26,1,30,1,28,1,29,1,28,2,30,1,29,1,28,1,29,1,13,1,29,1,28,1,30,1,29,1,28,2,29,1,28,6,26,1,25,1,26,1,29,1,28,32,15,1,11,3,14,2,25,1,28,15,29,1,28,4,29,2,28,26,29,2,28,4,7,1,9,1,28,2,9,1,6,1,28,1,6,1,28,1,1,631,}, + {1,59,28,1,6,2,29,1,7,1,16,1,9,1,16,1,17,1,11,1,17,1,11,2,16,1,28,1,7,1,6,2,16,2,12,1,11,2,12,1,16,1,12,2,16,2,11,1,9,1,17,1,11,2,17,1,6,1,7,1,11,1,1,2,11,4,17,2,6,1,29,1,11,2,17,1,16,1,30,1,28,5,9,1,13,1,28,1,29,1,28,11,29,4,30,1,29,8,28,1,29,1,30,1,29,3,28,4,29,1,26,2,29,1,28,1,30,3,13,1,9,1,15,1,14,1,11,1,15,1,9,4,25,2,9,1,13,2,26,2,30,1,28,5,29,1,26,2,9,2,15,1,14,3,9,3,26,1,30,1,28,3,29,1,28,12,30,1,29,1,28,1,29,2,30,1,29,1,28,1,13,1,15,2,25,2,9,3,25,2,27,1,25,2,26,1,29,1,28,4,29,1,28,1,29,1,28,3,9,1,30,1,28,1,29,3,28,1,29,1,28,6,29,1,26,1,13,1,26,1,29,1,28,32,14,2,11,2,14,2,28,15,29,1,28,33,29,1,28,5,7,1,12,1,28,2,16,1,6,1,28,3,1,630,}, + {1,60,29,1,6,1,29,1,6,1,17,1,16,1,9,1,16,1,12,1,16,1,12,1,11,1,16,1,6,4,16,1,11,1,12,1,11,2,12,1,16,1,12,1,17,1,16,1,9,1,12,1,16,1,11,3,9,1,28,1,16,1,11,6,16,1,6,1,12,1,11,1,16,1,11,1,16,2,9,1,29,1,28,3,29,2,13,2,29,2,28,11,30,1,29,1,28,2,26,1,30,1,29,1,28,1,29,3,28,1,29,2,30,1,29,1,28,2,29,1,28,5,29,1,26,1,30,1,29,1,13,1,30,1,13,1,14,1,11,1,14,1,15,2,14,1,9,1,25,1,9,2,13,5,26,1,29,1,28,4,25,1,15,1,11,3,1,1,11,4,1,1,11,1,1,2,11,2,15,1,26,1,28,14,29,1,30,1,13,2,26,1,13,2,28,2,26,3,25,1,15,2,9,1,15,1,9,2,26,2,29,1,28,2,30,1,28,2,29,2,30,1,29,1,28,2,9,1,26,1,28,1,29,3,28,1,30,1,28,2,29,1,28,1,30,2,28,4,29,1,26,1,28,32,1,2,11,1,14,2,9,1,28,7,29,2,28,5,29,1,28,33,29,1,28,6,6,1,28,2,9,1,16,1,28,4,1,629,}, + {1,60,28,1,10,1,8,1,29,2,12,1,9,1,16,1,9,2,16,1,11,1,17,1,9,1,6,1,8,1,9,1,17,1,12,1,11,4,16,1,9,2,17,1,11,1,12,1,6,1,11,1,1,1,16,1,7,1,6,1,11,1,1,1,11,1,1,1,11,1,17,1,11,1,17,1,28,2,6,1,11,2,12,1,15,1,7,1,29,1,28,4,30,3,13,1,29,1,28,11,30,1,29,1,28,2,30,2,29,5,28,1,29,10,28,2,26,1,9,2,15,1,13,1,9,1,14,1,1,1,11,1,14,1,15,1,10,1,25,1,14,1,25,1,28,1,30,1,13,4,29,1,28,2,29,1,9,1,11,2,1,1,11,2,15,1,12,1,9,1,27,4,10,1,9,1,12,1,15,1,11,1,1,3,11,1,9,1,26,1,29,1,28,8,29,1,30,2,26,2,13,1,9,1,13,1,26,1,25,1,26,1,29,1,28,1,29,1,25,1,9,3,15,1,26,2,29,1,28,1,26,1,28,1,29,6,30,1,29,1,28,3,29,1,13,2,26,1,29,1,28,6,29,1,28,39,29,1,1,1,11,1,14,2,15,1,13,1,28,49,29,1,28,5,29,1,28,1,7,1,28,1,6,2,28,3,1,2,28,1,1,625,}, + {1,60,28,1,9,1,7,1,6,1,29,1,16,1,9,1,16,4,11,2,16,1,9,3,12,1,16,1,11,4,17,1,16,2,11,1,1,1,9,1,7,1,17,1,1,1,11,1,7,1,29,1,17,1,11,6,16,1,28,2,7,1,11,2,16,2,8,1,28,20,29,3,28,2,29,1,28,3,29,4,28,1,29,4,30,3,29,4,26,1,13,1,26,2,13,1,9,1,11,1,1,1,11,1,15,1,9,1,13,1,25,1,14,1,9,1,28,2,13,3,28,2,25,1,15,1,11,1,1,1,11,2,17,1,12,1,9,3,27,1,26,2,29,2,28,1,29,2,26,1,27,1,9,2,15,1,11,1,1,1,11,2,9,1,25,1,28,3,29,1,13,2,26,1,13,4,9,2,26,1,30,2,13,1,25,2,26,1,29,1,28,1,26,1,25,1,9,1,29,1,27,1,26,3,29,2,28,1,29,2,30,3,29,2,28,2,29,1,13,3,26,1,29,1,28,1,30,3,26,1,29,1,28,2,29,1,28,37,15,1,11,2,14,2,9,1,28,57,9,2,28,1,7,1,16,1,28,2,1,1,28,1,1,626,}, + {1,60,28,1,10,1,8,1,6,2,9,3,12,1,16,1,11,6,17,1,11,1,16,1,11,3,17,2,11,4,7,2,12,1,11,2,8,1,28,1,17,1,11,4,1,1,11,1,8,1,28,2,9,1,11,1,17,1,16,2,9,1,28,19,29,7,28,3,29,1,28,2,29,5,30,2,26,2,29,1,30,1,26,1,30,1,26,1,29,1,28,2,9,1,15,1,11,2,14,1,9,1,13,2,26,1,29,1,9,1,14,1,13,1,30,2,28,1,29,1,25,1,11,1,1,3,11,1,12,2,9,3,27,2,26,2,29,1,28,7,26,1,27,1,9,1,12,1,11,1,1,2,11,1,15,1,26,1,29,1,13,1,9,3,15,1,9,1,25,1,9,2,25,1,26,3,25,3,26,1,28,2,29,1,26,1,25,1,28,1,26,1,9,1,26,1,29,3,26,1,29,6,30,1,28,4,29,3,28,2,13,2,29,1,30,1,29,1,28,1,30,1,29,1,28,37,30,1,1,1,11,3,15,1,26,1,28,13,29,1,28,35,29,1,28,2,29,1,28,3,7,1,29,1,28,2,8,1,9,1,28,2,1,627,}, + {1,61,29,1,9,1,6,2,8,1,16,1,10,1,9,1,16,1,11,3,12,1,16,1,12,1,16,1,12,1,16,1,17,1,1,1,11,1,16,1,12,1,11,1,1,1,11,1,17,1,8,1,7,1,16,1,11,2,8,1,6,1,11,6,17,1,8,1,28,1,6,1,12,1,17,1,12,1,16,1,15,2,29,1,28,11,29,1,28,6,29,7,28,3,29,1,28,1,29,7,30,3,26,1,13,1,26,1,30,2,29,2,26,1,15,1,11,2,14,1,15,1,9,1,25,1,9,1,30,1,26,2,13,2,28,2,9,1,11,2,1,1,11,2,17,1,11,2,12,2,9,2,10,1,27,1,26,2,29,2,28,7,29,2,26,1,10,1,12,1,11,2,1,1,11,1,14,1,9,1,25,1,9,1,15,1,14,1,9,4,13,5,30,1,29,2,30,1,26,2,29,2,28,1,26,1,9,1,26,1,29,3,30,1,29,3,30,1,29,2,30,2,28,8,30,2,29,1,28,3,30,1,29,1,28,28,29,1,28,9,11,1,1,1,11,1,14,2,15,1,28,49,26,1,28,3,29,1,28,2,6,1,28,4,6,1,8,1,28,2,1,626,}, + {1,61,28,1,16,1,6,1,28,1,7,1,12,1,10,1,8,1,9,1,11,1,17,1,11,1,16,1,10,1,7,2,12,1,16,1,17,1,11,7,1,1,9,1,7,1,16,1,1,1,11,1,9,2,11,5,16,2,8,1,28,1,9,1,17,1,12,2,16,1,15,2,29,1,28,10,29,1,30,1,28,6,29,6,28,5,30,1,26,2,30,1,29,2,28,1,29,2,30,2,26,1,13,1,26,1,30,3,13,1,9,1,11,2,14,1,15,1,14,1,9,4,13,1,30,1,28,2,7,1,11,1,1,3,11,2,17,1,11,2,1,1,12,2,9,2,27,2,26,2,29,2,28,8,29,2,26,1,27,1,10,1,9,1,15,1,1,2,11,1,15,2,14,2,15,1,9,3,30,2,26,2,30,4,26,3,29,1,28,1,26,1,25,2,26,2,29,1,26,1,29,1,28,2,30,1,26,2,29,2,30,1,28,1,29,2,28,6,29,1,30,1,28,2,29,1,28,1,30,1,28,28,29,1,28,9,29,1,1,2,15,1,11,1,14,1,29,1,28,7,29,1,28,35,29,1,28,9,29,1,28,1,29,2,28,1,6,1,28,2,16,1,6,1,28,2,1,625,}, + {1,61,28,1,8,1,7,1,28,1,6,1,11,1,12,1,7,1,9,1,11,1,12,1,11,1,17,1,9,1,8,2,11,1,12,2,11,7,1,1,12,1,6,1,9,1,1,1,11,1,16,1,12,1,11,5,16,1,9,1,7,1,29,1,17,1,11,1,12,3,15,1,9,1,28,17,29,8,28,1,29,2,28,2,26,3,29,2,28,3,29,1,30,3,26,3,13,2,9,1,15,1,11,2,14,3,9,1,13,4,28,2,15,1,1,1,11,1,1,1,11,8,12,2,9,2,25,1,27,2,26,2,29,1,28,6,29,6,27,1,9,1,25,1,9,1,11,1,1,1,11,1,15,1,9,4,13,2,30,2,26,2,30,1,26,3,30,2,29,1,28,2,26,1,9,1,25,1,9,1,26,1,29,2,13,1,26,1,30,1,29,1,30,3,29,1,30,1,29,2,30,1,29,3,28,4,29,1,28,1,29,1,26,1,29,2,28,39,15,1,1,1,14,1,11,1,14,1,9,1,28,18,29,1,28,7,29,1,28,16,29,1,28,6,26,1,28,5,29,1,28,2,29,1,28,1,29,1,8,1,28,2,1,625,}, + {1,62,28,1,9,1,29,1,6,1,11,1,1,1,7,1,9,1,12,1,17,1,16,1,11,1,16,1,8,1,7,1,11,1,12,1,9,1,11,2,12,1,17,1,11,5,8,1,6,1,12,1,1,1,11,1,17,1,11,3,16,3,8,1,29,1,8,1,11,1,12,4,15,1,13,1,28,14,29,1,28,2,29,10,28,2,29,1,26,1,30,1,28,5,29,2,30,1,26,1,30,1,26,2,13,1,9,3,14,1,11,1,14,3,9,1,13,2,26,1,13,1,28,1,29,1,15,1,1,3,11,1,1,1,11,5,12,2,17,1,15,1,12,1,9,1,10,1,25,1,27,2,26,1,29,1,28,5,29,2,26,1,27,2,26,4,10,1,27,1,9,1,11,2,9,1,25,2,13,2,26,1,30,1,26,1,30,2,26,3,29,2,30,1,26,2,29,1,28,1,26,1,9,3,25,1,26,1,28,1,9,2,13,1,29,1,28,1,29,1,30,1,29,1,30,1,29,3,28,1,29,4,28,5,30,1,26,1,28,41,11,1,1,1,11,2,15,1,29,1,28,17,30,1,29,1,28,6,29,1,28,23,26,1,25,1,28,4,30,1,28,4,29,1,28,4,1,624,}, + {1,62,28,1,16,1,7,1,6,1,11,1,1,1,7,1,10,1,16,1,11,1,12,1,11,1,12,1,6,1,29,1,12,1,17,2,11,4,12,1,16,1,12,1,11,1,1,1,9,1,28,1,8,1,1,1,11,1,12,1,11,3,8,2,11,1,7,1,28,1,12,1,11,1,9,1,16,1,9,2,15,1,30,1,28,15,29,1,30,1,29,2,30,2,29,5,28,2,29,1,26,2,29,1,28,2,29,3,30,3,26,3,30,1,13,1,9,2,15,1,11,1,14,1,15,3,13,1,30,1,26,2,28,1,29,1,11,1,1,2,11,1,1,4,11,8,15,1,9,2,25,1,27,1,26,1,29,1,28,6,29,1,27,4,26,3,27,1,10,2,12,1,1,1,11,1,9,1,26,1,13,1,26,1,13,1,30,1,29,1,30,2,28,1,29,1,30,1,26,1,30,1,29,1,28,1,29,1,26,4,25,1,9,2,25,1,26,1,28,2,26,2,29,1,28,1,30,2,29,1,30,1,29,6,28,1,29,1,28,6,30,1,28,30,29,1,28,10,9,1,1,1,14,1,11,1,14,1,9,1,28,17,30,2,28,30,26,1,27,2,28,3,6,1,9,1,28,3,6,1,28,1,29,1,12,1,6,1,1,624,}, + {1,63,7,1,12,1,9,1,16,3,7,1,12,1,11,3,16,1,6,1,7,1,12,1,11,1,16,1,11,3,17,1,16,1,12,1,11,3,17,1,6,2,12,1,16,1,10,1,16,1,1,1,11,1,16,1,11,2,28,1,29,1,11,1,17,1,12,3,9,2,26,1,28,2,29,1,28,9,29,2,30,1,29,11,28,2,30,1,9,1,25,1,29,1,28,2,29,2,30,2,26,3,13,1,26,1,13,1,9,2,15,1,11,2,14,1,9,1,15,1,30,1,28,1,13,2,28,2,14,1,1,9,11,2,17,2,11,1,17,1,15,1,9,4,25,1,27,1,26,1,29,2,28,3,29,2,26,1,27,1,10,2,27,1,26,2,27,2,9,1,12,1,11,2,15,1,25,1,30,1,13,1,26,1,29,1,28,2,26,1,28,1,29,1,26,1,29,3,28,1,26,1,25,1,13,1,25,6,26,2,28,2,29,1,9,1,26,1,30,2,29,1,26,1,30,1,29,6,28,1,29,1,28,3,26,3,28,42,11,3,14,1,15,1,28,17,30,2,29,1,28,20,29,1,28,6,9,1,28,1,26,1,27,1,26,1,25,1,28,2,13,1,6,1,28,1,29,1,28,3,29,2,11,1,28,1,1,5,28,1,1,617,}, + {1,63,28,1,11,2,16,2,9,1,7,1,16,1,12,1,17,1,11,1,16,1,9,2,11,2,16,1,11,3,17,1,12,2,11,4,7,1,6,1,12,2,9,1,11,1,12,1,11,3,9,1,28,1,7,1,1,1,16,3,9,1,25,1,26,1,30,1,29,1,28,1,29,2,28,3,29,1,30,1,28,3,29,3,30,2,29,8,28,3,13,1,9,1,26,1,28,2,29,3,30,3,26,3,30,1,13,1,9,1,15,1,14,1,11,2,15,1,14,1,9,2,10,1,28,2,30,1,11,1,1,2,11,2,1,6,11,5,15,2,12,3,9,1,27,2,26,1,29,4,28,1,29,2,26,1,27,1,10,1,25,1,26,3,27,1,25,1,9,1,12,1,11,2,15,1,9,1,26,2,29,1,28,3,13,1,29,1,28,1,26,1,29,1,28,2,30,1,13,1,25,1,26,1,25,1,26,3,25,1,27,1,26,3,28,2,26,1,9,1,29,1,28,1,13,1,26,4,30,1,29,2,28,1,29,1,30,1,28,3,13,2,30,1,28,42,26,1,1,1,11,1,14,2,30,1,28,6,29,1,28,9,30,2,29,1,28,28,26,1,28,1,26,1,27,2,26,1,28,4,29,1,6,1,29,1,28,3,8,1,16,1,28,1,1,5,28,1,1,616,}, + {1,63,28,1,16,1,11,1,16,2,7,2,9,1,12,1,17,2,12,2,17,1,11,1,12,1,16,1,11,5,17,1,11,3,1,1,16,1,6,1,16,1,12,1,16,1,11,2,1,1,11,1,9,1,28,2,10,1,11,1,9,2,16,1,9,1,30,1,28,1,29,6,28,1,29,1,30,1,26,1,28,2,29,4,30,2,29,9,28,1,29,1,13,1,9,1,29,1,28,1,29,1,28,1,29,2,30,1,26,3,13,1,26,2,9,1,15,1,14,1,11,3,15,1,14,1,13,1,25,1,26,1,28,1,30,1,11,1,1,2,11,2,1,8,11,5,15,1,11,3,9,1,27,1,10,1,27,1,26,1,29,6,26,1,27,1,25,1,27,1,26,3,27,1,10,1,12,1,15,1,11,2,15,1,9,1,26,1,28,5,29,3,30,1,29,1,28,2,26,1,13,1,26,1,29,1,26,4,25,2,27,1,25,1,9,1,26,1,28,2,25,1,13,1,29,1,13,1,26,5,30,1,29,2,28,1,29,1,28,3,30,1,26,1,28,44,11,2,14,1,11,1,13,1,28,6,29,1,28,9,30,2,29,1,28,28,26,1,28,2,26,1,9,1,28,6,30,2,28,1,29,2,28,1,8,1,29,1,1,622,}, + {1,64,29,1,16,3,9,3,16,1,11,6,12,1,9,1,11,4,17,1,16,1,12,1,11,2,1,1,11,1,8,1,10,1,16,1,11,4,1,1,11,1,9,2,16,1,9,1,10,3,7,1,29,1,28,1,29,1,30,1,29,5,28,1,29,1,30,1,28,1,29,5,30,2,29,9,28,3,26,1,29,1,28,3,29,1,30,1,26,2,13,3,26,1,13,1,15,1,14,2,11,2,14,2,15,1,26,1,28,2,30,1,1,2,11,1,12,1,11,1,1,10,11,8,9,2,10,1,27,1,26,1,29,6,26,1,27,3,26,3,27,1,9,1,12,1,11,3,15,1,9,1,26,1,28,6,29,2,28,3,30,1,13,1,30,1,28,1,30,1,26,1,29,1,26,1,25,1,9,1,25,1,26,2,27,1,9,1,28,3,9,1,13,1,30,1,26,5,30,3,28,1,29,2,28,28,29,1,28,19,25,1,1,1,14,2,9,1,28,6,29,1,28,9,30,1,29,1,28,30,26,1,28,4,26,1,28,7,29,2,28,2,7,1,28,1,1,621,}, + {1,64,28,1,9,1,16,1,11,3,16,1,9,1,12,1,11,2,12,1,16,1,12,2,16,1,11,4,12,1,9,1,16,1,11,4,16,1,7,1,16,1,11,1,17,1,11,1,17,1,11,1,1,1,11,1,1,2,15,1,7,1,6,1,30,2,29,2,30,2,29,1,28,1,29,3,28,1,29,1,26,1,28,1,29,4,30,4,29,3,30,1,29,4,28,3,26,1,13,1,30,1,28,1,29,1,30,1,26,2,13,1,26,1,13,2,26,1,25,1,15,1,14,1,15,4,14,1,9,1,25,1,28,2,11,1,1,1,11,2,12,1,11,1,1,1,11,2,1,8,11,2,17,2,12,4,9,1,27,2,26,2,29,5,26,2,27,2,26,2,27,1,25,1,9,1,12,1,11,3,15,1,9,1,30,1,28,6,29,1,28,4,13,1,9,1,30,1,28,1,26,2,29,1,26,2,25,1,26,5,29,1,28,2,29,1,26,2,13,9,30,1,29,1,28,49,11,2,14,1,15,1,29,1,28,5,29,1,28,9,29,2,28,17,29,2,28,4,30,1,28,7,26,1,28,13,8,1,6,1,29,2,28,1,1,620,}, + {1,65,10,1,11,4,9,1,16,2,17,2,16,2,12,1,17,1,16,1,11,4,12,1,9,2,11,3,1,1,11,1,8,1,16,1,1,1,12,1,11,3,16,1,29,1,8,1,15,2,9,1,7,1,30,3,13,2,29,2,28,3,29,1,30,3,28,2,29,1,30,11,29,4,28,2,13,1,9,1,13,1,30,1,26,2,13,1,26,1,30,4,13,1,9,1,14,1,11,1,15,4,9,1,13,1,29,1,28,1,9,1,1,1,17,1,12,1,17,1,12,2,11,2,1,9,11,2,17,1,11,1,12,3,11,1,12,1,10,1,27,2,26,1,29,5,26,4,27,2,25,1,9,2,12,1,11,1,1,1,11,1,15,1,9,1,28,12,25,1,9,1,26,1,29,1,26,7,27,1,25,1,26,3,28,3,26,1,13,1,9,4,13,3,26,1,9,1,26,1,28,3,29,1,28,6,29,1,28,39,15,1,1,1,14,2,30,1,28,5,29,1,28,35,29,1,28,6,26,1,27,2,28,11,6,1,7,1,28,1,7,1,28,7,1,614,}, + {1,65,10,1,1,1,12,2,10,1,8,1,16,3,12,2,17,1,11,1,12,1,16,1,11,4,17,1,9,1,16,1,11,5,16,1,12,1,11,1,17,2,11,2,9,1,28,3,29,1,15,1,9,1,13,2,26,1,13,1,26,1,29,2,28,4,29,3,28,2,29,4,30,4,29,1,30,3,29,2,28,1,29,1,28,1,29,1,26,2,30,1,29,1,30,1,26,2,30,1,29,2,30,1,26,1,15,2,11,2,14,2,15,1,9,1,29,1,28,2,26,1,11,1,1,1,12,2,9,3,12,1,11,1,1,2,11,1,1,7,11,2,17,1,12,2,11,2,12,1,9,1,10,1,27,1,26,2,29,3,26,5,27,1,25,1,9,2,12,1,17,1,11,1,1,1,11,1,15,1,9,1,28,2,29,1,28,8,30,1,13,2,30,2,29,1,30,1,26,5,25,2,26,1,27,1,25,1,26,1,28,2,29,1,26,1,13,1,26,2,30,3,29,1,28,1,26,1,13,1,30,1,28,2,30,1,28,46,29,1,1,1,14,1,15,1,13,1,28,4,29,2,28,6,29,1,28,35,29,1,28,2,15,1,28,11,6,1,28,1,29,1,28,2,6,2,29,1,28,4,1,612,}, + {1,65,10,1,17,1,7,1,16,1,9,2,8,1,16,3,11,1,1,1,11,1,12,1,16,1,11,5,9,1,16,1,11,7,17,1,11,4,8,1,28,1,29,1,28,2,9,1,8,1,7,1,26,1,30,1,26,1,13,1,30,1,28,1,30,1,26,1,28,4,26,1,28,2,29,5,30,2,29,2,30,3,29,3,28,3,26,2,29,2,28,2,29,1,28,2,29,1,26,1,13,1,14,4,15,3,13,1,30,1,28,2,11,1,1,1,17,2,9,2,12,1,9,2,17,1,1,10,11,2,12,2,11,3,12,1,9,1,10,1,27,2,26,2,29,2,26,5,27,1,10,1,9,2,12,1,17,1,11,1,1,1,14,1,15,1,25,1,28,2,30,1,28,2,29,1,28,4,30,1,9,1,13,1,29,2,26,1,30,1,29,1,26,4,25,2,26,1,27,1,26,4,28,2,29,1,26,1,28,8,9,2,29,1,28,1,30,1,28,7,29,1,28,39,1,1,11,1,14,1,9,1,28,4,29,2,28,6,29,1,28,38,9,1,26,1,28,13,7,1,6,1,28,5,29,1,28,3,1,610,}, + {1,65,11,1,1,1,16,1,8,1,16,1,11,1,8,1,10,1,12,1,11,2,16,1,11,2,16,1,11,4,17,1,11,12,12,1,1,1,6,1,28,1,6,1,28,2,29,1,9,2,6,1,29,1,30,1,13,1,30,1,29,2,28,1,29,1,28,3,29,2,28,5,29,1,30,2,29,2,30,2,29,3,28,3,29,2,30,1,29,3,28,2,29,1,30,2,26,1,9,1,14,4,15,1,9,2,30,1,29,1,28,1,9,1,1,1,11,1,12,1,9,1,12,2,9,2,12,3,11,1,1,9,11,2,17,1,12,3,9,4,10,1,27,1,26,6,27,3,9,2,12,3,1,1,11,1,15,2,29,1,28,2,29,1,28,2,30,1,29,1,28,3,13,1,26,1,28,1,29,1,13,1,30,3,26,2,29,1,26,2,25,2,26,3,9,1,27,1,28,2,26,2,29,1,28,1,29,3,28,5,26,1,13,1,26,1,29,1,28,27,26,1,13,1,30,1,28,16,14,1,11,2,15,1,28,5,30,1,28,43,26,1,28,2,26,1,28,14,8,1,28,4,29,1,28,1,6,1,10,1,29,1,28,1,1,609,}, + {1,64,28,1,11,1,17,1,1,2,12,1,1,1,16,2,17,1,11,1,7,1,8,1,1,1,11,1,16,1,11,19,8,1,28,4,13,1,15,1,7,1,30,1,13,1,30,1,9,1,29,1,28,2,29,1,30,1,29,1,28,5,29,1,30,1,29,1,28,2,29,1,30,1,29,2,30,2,29,3,28,3,29,1,30,1,29,4,28,1,29,1,30,3,13,1,9,1,14,1,11,2,14,1,15,1,9,1,25,1,29,1,28,1,13,1,11,2,15,1,12,3,9,3,12,3,11,2,1,8,11,2,12,5,9,3,10,1,27,2,26,4,27,3,10,1,9,2,12,1,17,1,11,1,1,1,11,1,15,1,9,1,28,6,30,2,28,2,29,1,9,1,26,1,29,1,26,1,30,4,26,2,29,1,26,3,25,1,26,3,27,2,28,2,26,1,29,8,28,4,30,1,29,1,28,47,9,1,11,2,15,1,28,5,29,1,28,10,29,2,28,31,26,1,28,2,26,1,28,11,29,1,28,4,29,1,28,4,29,1,6,1,8,1,9,1,10,1,28,3,1,605,}, + {1,64,28,1,9,1,10,1,11,2,9,1,16,1,7,1,9,1,11,1,1,1,6,1,7,1,1,1,17,1,16,1,11,4,17,1,12,1,17,1,11,1,17,1,11,2,17,2,11,3,12,1,11,1,16,1,8,1,29,1,28,2,29,1,15,1,1,1,16,2,9,1,29,1,9,1,25,1,28,2,29,1,30,2,29,1,28,4,29,1,30,2,29,1,28,2,29,1,28,2,29,6,28,2,29,1,30,1,29,1,30,1,26,1,28,2,29,4,13,1,15,1,14,1,11,1,14,1,15,1,9,2,26,1,28,2,11,1,1,1,17,1,12,4,9,3,12,4,11,1,1,8,11,2,17,1,12,5,9,2,10,1,27,4,26,1,27,3,25,1,9,2,12,2,11,1,1,2,11,1,15,1,26,1,28,2,29,2,28,2,30,1,26,1,28,3,9,2,25,1,13,1,30,1,26,2,30,3,29,2,26,2,25,1,27,1,26,2,27,1,26,3,25,1,28,1,29,7,28,4,29,1,28,49,11,2,15,1,28,5,29,1,28,11,30,1,28,34,26,1,27,1,28,2,29,1,28,11,29,1,28,2,29,3,28,3,29,1,9,2,7,1,28,2,1,604,}, + {1,64,6,1,8,1,16,1,7,1,6,2,29,1,28,1,10,1,1,2,6,1,8,1,11,1,17,1,12,1,11,4,16,1,9,4,16,2,9,2,16,3,8,1,9,1,10,1,8,1,7,1,28,2,6,1,11,1,1,3,11,1,13,1,9,1,14,1,29,1,28,1,29,2,28,1,29,2,28,3,29,1,30,1,26,1,30,1,29,1,28,9,29,1,28,2,29,2,28,1,29,1,13,1,28,2,29,3,30,1,9,1,14,3,15,1,9,2,25,1,28,2,13,1,1,1,11,1,15,1,12,1,9,3,17,1,12,6,17,1,11,1,1,8,11,2,12,4,9,3,10,1,25,1,10,1,25,1,27,3,25,2,9,3,12,1,11,2,1,1,11,1,15,2,29,1,28,1,29,4,30,1,26,1,30,1,28,3,29,1,9,3,30,1,29,1,30,3,29,1,30,1,29,2,26,1,25,2,26,5,27,1,26,1,29,9,28,3,29,1,28,49,11,2,14,1,29,1,28,4,29,1,28,1,29,1,28,6,29,1,28,2,29,2,28,10,29,1,28,22,26,1,9,1,28,2,26,1,28,8,6,2,28,2,29,1,28,3,29,1,28,5,6,2,7,1,28,2,1,603,}, + {1,64,7,1,12,1,16,1,6,1,28,1,8,1,7,1,29,1,16,1,1,1,9,1,29,1,9,1,11,2,16,1,17,1,11,2,17,1,16,1,9,2,10,1,8,1,9,2,7,2,8,1,10,1,7,2,9,1,16,1,8,2,7,1,29,1,15,1,11,2,1,1,11,3,9,1,16,1,29,4,28,1,29,1,30,1,29,2,30,2,29,5,28,10,29,1,30,1,29,1,28,2,30,1,29,3,30,1,26,1,13,1,15,1,14,1,15,2,14,1,15,1,9,1,26,1,28,2,11,1,1,1,17,1,11,1,12,1,9,1,12,2,11,1,12,6,17,1,12,1,11,1,1,8,11,1,12,4,9,3,10,2,9,1,10,1,25,1,27,1,25,1,10,2,9,2,12,1,17,1,11,2,1,1,11,1,15,2,28,3,29,1,28,1,30,1,13,2,30,2,13,1,30,1,28,2,13,1,9,1,26,1,28,2,30,1,29,2,30,1,29,2,26,2,25,1,27,1,26,3,27,2,26,4,29,5,28,1,29,1,28,52,14,1,11,1,14,1,29,1,28,4,29,1,28,1,29,2,28,5,29,1,28,3,29,1,28,10,29,1,28,22,29,1,25,1,28,3,26,1,28,8,6,1,28,2,10,1,28,5,7,1,29,1,28,3,29,1,8,1,28,1,10,1,28,2,1,601,}, + {1,64,29,1,11,1,9,1,10,1,8,1,7,1,16,1,6,1,16,1,1,1,9,1,7,1,16,1,12,1,11,1,12,1,16,1,11,7,17,1,11,2,12,1,16,2,12,1,16,1,12,1,11,2,10,1,6,1,7,1,6,1,11,1,1,1,11,1,12,1,28,1,29,1,11,1,9,2,29,1,28,1,29,2,28,1,29,2,28,1,30,1,29,1,28,3,26,1,30,1,28,10,29,1,30,1,26,2,29,1,28,2,29,2,30,1,26,1,13,1,9,1,15,1,14,1,11,1,14,1,11,1,15,1,9,1,30,1,28,1,26,1,1,1,11,1,17,2,9,2,12,11,17,1,11,1,1,7,11,1,17,1,12,3,9,7,10,1,25,1,10,2,9,3,12,1,11,2,1,1,11,1,15,2,9,1,28,3,29,1,28,1,29,1,13,2,26,2,13,2,28,3,29,1,13,1,28,1,29,1,30,4,29,2,26,2,25,1,27,1,26,3,27,1,26,5,29,4,28,2,29,1,28,52,9,1,11,1,14,1,30,1,28,4,29,2,28,25,29,1,28,19,26,1,25,1,9,1,28,12,6,1,28,2,7,1,28,4,6,1,7,2,29,1,28,1,29,1,7,1,28,1,9,1,12,1,8,1,28,1,1,600,}, + {1,64,28,1,17,1,9,1,16,1,9,1,28,1,16,1,8,1,10,1,1,1,12,1,9,1,16,1,17,1,11,1,12,1,16,1,17,1,11,2,1,8,11,3,1,2,11,1,16,1,8,1,6,2,8,1,11,3,9,1,28,2,16,2,15,1,13,1,29,3,28,2,29,1,28,6,13,1,26,1,28,2,29,8,28,2,29,1,30,1,26,1,29,1,28,1,29,2,30,1,13,1,9,1,15,1,14,2,11,1,14,1,11,1,15,1,25,1,29,1,28,1,15,1,1,1,17,2,12,1,9,3,12,1,9,1,12,2,17,1,12,6,11,3,1,6,11,1,12,3,9,7,10,2,9,4,12,1,15,1,11,2,1,1,11,1,15,2,30,1,28,3,29,1,28,1,29,1,13,2,26,3,28,5,30,1,13,1,30,4,29,2,26,2,29,1,26,3,29,1,26,1,27,1,26,6,29,1,28,1,29,2,28,54,26,1,11,1,14,1,26,1,28,31,30,1,28,14,29,1,28,5,29,1,9,1,27,1,28,11,29,1,28,2,7,1,28,6,6,1,9,1,28,2,29,1,28,2,7,1,11,1,9,1,28,2,1,598,}, + {1,64,28,1,9,1,11,1,16,1,8,1,6,1,9,1,12,1,16,1,11,1,16,1,6,1,9,1,11,2,12,2,17,1,11,5,12,1,11,9,12,1,29,1,6,1,8,1,6,1,16,1,11,1,9,1,16,1,8,1,28,1,29,1,12,1,11,2,15,1,30,1,29,1,30,1,28,10,29,1,30,1,29,1,26,1,13,6,29,1,28,4,26,1,30,1,28,1,30,2,13,1,9,2,15,1,14,1,11,2,15,1,14,1,9,1,26,1,28,2,1,2,12,5,9,1,12,4,17,1,12,7,11,3,1,5,11,1,12,3,9,13,12,1,11,3,1,1,15,3,28,3,29,1,28,2,13,2,30,2,13,1,30,1,29,1,28,2,13,2,28,1,13,1,29,1,30,1,26,1,30,1,29,2,26,2,29,2,26,1,28,2,26,1,27,1,26,4,25,1,26,1,29,1,28,1,29,2,28,54,29,1,1,1,14,1,26,1,28,17,29,2,28,12,26,1,29,1,28,21,26,1,28,2,25,1,28,9,7,1,28,2,6,1,28,1,8,1,7,1,28,3,8,1,16,1,7,1,6,1,29,1,28,2,6,1,12,1,16,1,28,2,1,597,}, + {1,65,28,1,11,1,9,2,6,1,28,1,1,1,11,1,12,1,17,1,9,2,11,2,12,1,17,1,12,1,11,4,17,1,12,1,11,1,16,1,11,3,17,1,1,1,17,1,1,1,16,1,29,2,8,1,9,2,15,1,16,1,9,1,6,1,9,1,6,1,29,1,11,1,1,1,30,1,28,1,29,1,30,1,28,3,29,1,28,7,29,1,28,1,26,1,13,1,26,4,29,1,28,5,26,3,13,1,26,2,13,1,9,1,14,1,11,1,14,3,25,1,26,1,13,1,28,1,25,1,1,1,11,2,12,16,17,3,11,2,1,4,11,1,17,1,12,1,9,9,10,1,9,3,12,2,11,2,1,2,15,2,9,1,28,2,29,1,28,5,13,2,30,3,28,3,13,2,29,1,26,1,30,1,29,6,26,1,28,1,29,2,26,1,9,1,26,1,29,1,26,2,27,1,25,1,26,1,28,2,29,1,28,56,11,1,14,1,26,1,28,4,29,1,28,1,29,1,28,3,29,1,28,2,29,2,28,3,29,1,28,13,29,1,28,23,26,1,9,1,26,1,28,11,29,2,28,1,6,1,28,1,29,1,7,2,10,1,7,1,8,2,29,1,28,3,16,2,28,2,1,596,}, + {1,65,28,1,16,1,11,1,7,1,8,1,9,1,1,1,16,1,12,1,1,1,12,1,16,1,11,2,17,2,12,1,11,8,9,1,11,7,8,1,28,1,29,1,17,1,11,1,9,1,16,1,9,1,13,1,9,1,30,1,28,1,16,1,15,1,13,1,28,3,29,3,28,1,29,1,28,3,29,2,28,3,29,2,28,2,29,2,28,6,29,1,26,3,29,1,30,1,13,1,15,1,14,1,11,1,14,2,15,1,13,1,30,2,28,1,9,1,1,1,11,1,17,1,12,19,17,1,11,3,1,2,11,2,12,1,9,1,12,1,9,10,12,2,17,1,11,2,1,1,11,1,14,1,9,1,30,1,28,7,29,1,30,3,26,1,30,1,29,1,28,3,15,1,26,1,28,1,30,1,29,7,28,2,26,1,9,1,26,1,29,1,26,4,25,2,26,1,29,3,28,55,11,2,26,1,28,4,29,1,28,1,29,1,28,11,29,1,28,37,25,1,28,1,26,2,28,8,29,1,28,2,6,1,28,10,9,1,6,1,28,3,6,1,16,1,7,1,28,1,1,595,}, + {1,66,29,1,11,1,10,1,17,1,11,1,16,3,11,2,17,1,11,2,17,2,12,1,11,7,1,1,7,1,9,1,1,1,11,1,12,1,11,3,16,1,7,1,16,1,11,1,15,1,8,1,9,1,16,1,9,2,6,1,29,1,9,1,10,1,29,2,26,1,30,1,29,3,28,1,29,4,28,5,29,2,28,10,29,1,30,1,26,1,29,1,28,1,29,1,9,1,15,1,11,2,14,2,9,1,26,1,29,1,28,1,29,1,11,1,1,1,11,1,17,1,12,21,17,1,11,2,1,2,11,1,12,1,9,1,12,1,9,10,12,2,11,2,1,2,15,1,14,1,25,1,28,2,29,1,28,3,29,3,30,1,26,1,30,2,29,1,13,1,30,1,28,2,9,1,13,1,30,2,29,2,30,2,29,4,26,3,28,1,26,1,27,1,26,4,9,1,25,1,29,1,28,57,11,2,26,1,28,4,29,1,28,1,29,1,28,1,29,1,28,3,29,1,28,2,29,2,30,2,28,37,26,1,28,2,25,1,28,3,29,1,28,4,29,1,28,2,6,1,28,2,6,1,28,3,29,1,28,4,10,2,29,1,28,2,6,1,10,1,6,1,28,2,1,593,}, + {1,66,28,1,16,1,17,1,16,1,10,1,9,1,11,1,16,1,12,1,11,4,17,2,12,1,11,2,17,1,11,4,1,1,16,1,6,1,11,2,12,1,11,2,12,1,16,1,11,1,1,1,17,1,9,1,10,1,8,1,16,1,9,2,13,1,26,1,13,1,29,1,28,1,30,1,9,2,29,1,28,1,29,2,28,1,29,1,30,1,29,1,28,3,29,1,28,1,30,2,28,2,29,2,28,2,29,1,30,1,29,3,30,1,26,1,29,1,28,1,30,1,9,1,14,3,15,1,14,1,13,1,26,1,29,1,28,1,25,1,1,1,11,2,17,1,12,13,17,1,12,9,11,4,12,1,9,1,12,1,9,9,12,2,11,2,1,3,11,1,15,1,29,1,28,2,29,1,28,1,29,4,30,1,26,2,30,2,28,1,30,1,26,1,28,2,30,1,13,2,26,1,30,2,26,3,30,1,29,1,26,1,25,1,29,1,28,1,29,1,25,1,27,2,26,3,27,1,25,1,28,58,11,2,30,1,28,4,29,1,28,1,29,1,28,1,30,1,28,5,29,1,28,2,13,1,26,1,28,38,26,1,28,1,26,2,28,13,6,2,28,2,29,1,6,1,9,1,29,1,28,1,29,1,16,1,7,1,28,4,6,1,28,3,1,592,}, + {1,66,28,1,10,1,12,1,7,1,9,1,11,6,12,1,11,2,12,2,11,8,1,1,29,1,10,1,11,3,17,1,11,1,12,1,16,1,12,1,16,1,9,3,15,1,16,1,9,1,8,1,13,1,29,1,28,3,26,1,13,4,29,1,30,1,29,2,28,6,26,2,28,5,29,1,30,3,29,2,30,1,26,1,30,1,29,1,13,1,15,1,14,3,15,2,26,2,29,1,28,1,16,1,1,1,11,2,12,7,17,2,12,16,17,1,11,2,12,1,9,10,12,1,17,1,11,3,1,1,11,3,26,1,28,4,29,3,30,4,29,2,26,1,30,1,28,5,26,1,13,2,26,2,13,2,26,1,30,1,29,1,26,1,25,1,29,1,28,1,29,1,27,2,25,1,27,1,25,1,26,3,28,58,11,1,14,1,29,1,28,3,29,2,28,3,29,1,28,2,29,1,28,2,29,1,28,2,13,1,29,1,28,27,29,1,28,11,25,1,26,1,9,1,28,14,30,2,28,2,29,1,7,1,8,1,29,1,28,1,29,1,6,1,29,1,28,8,1,591,}, + {1,67,28,1,9,1,6,1,11,1,1,1,11,3,1,1,11,4,16,1,12,1,11,8,1,1,9,1,28,1,11,3,17,2,16,1,9,1,16,1,9,2,16,1,9,1,15,1,16,1,9,2,13,1,28,5,29,1,13,1,9,2,26,1,30,3,29,1,28,4,29,1,13,1,26,1,28,3,29,7,30,5,25,1,15,2,14,2,15,1,9,1,26,1,30,1,28,2,11,1,1,1,11,1,17,1,12,6,17,3,12,20,9,8,12,3,11,3,1,2,11,1,14,1,9,1,28,2,29,1,28,2,29,2,13,1,26,1,28,2,30,2,29,1,30,2,28,5,26,1,9,1,13,4,26,1,30,1,29,3,26,1,25,1,26,1,28,1,29,1,27,1,26,1,27,1,9,1,27,1,26,2,29,1,28,57,11,1,14,1,29,1,28,3,29,2,28,2,29,1,28,2,29,2,28,1,29,2,28,2,30,1,28,2,29,1,28,1,30,1,29,1,28,22,29,2,28,10,26,4,28,13,29,1,6,1,28,2,6,1,28,2,7,1,30,1,28,1,7,2,8,1,6,1,28,8,1,4,28,1,1,584,}, + {1,67,28,1,9,1,16,1,11,1,17,1,11,2,12,1,11,4,17,1,16,1,12,1,11,10,6,1,10,1,11,3,12,1,16,1,17,1,11,1,16,1,9,1,16,1,9,1,16,1,15,3,9,1,28,6,29,1,13,1,9,2,28,1,29,1,26,1,30,1,28,4,26,1,13,1,30,1,28,2,29,2,30,1,29,5,30,4,26,1,25,1,9,1,16,1,14,2,9,1,13,1,26,1,30,1,28,2,11,1,1,1,11,1,17,1,12,24,9,2,12,3,9,7,12,4,11,5,14,1,15,1,28,6,29,1,28,1,30,1,26,1,30,1,28,1,29,1,26,1,30,1,28,2,30,1,29,1,28,1,29,2,26,1,9,1,13,4,26,1,29,5,13,1,26,1,29,2,26,8,29,1,28,55,29,1,11,1,14,1,28,3,29,6,28,1,29,3,28,5,29,2,28,3,29,2,28,23,30,1,28,11,25,1,28,1,26,1,28,13,29,1,30,1,29,1,28,1,29,1,28,2,29,2,28,2,6,1,10,1,9,1,7,1,28,8,1,1,28,1,1,586,}, + {1,67,28,1,9,1,11,1,16,2,12,1,11,3,9,1,10,1,11,2,12,2,11,9,1,1,16,1,28,1,17,1,11,2,17,1,12,1,16,1,17,2,16,2,9,1,16,2,15,2,13,1,28,1,29,1,28,4,29,1,26,1,13,2,28,3,29,1,30,2,28,2,26,2,29,1,28,2,29,2,28,1,29,5,30,1,26,4,25,1,9,2,14,1,15,1,8,1,26,2,30,1,28,2,11,1,1,1,11,2,12,12,17,1,12,4,9,2,12,3,9,1,12,1,9,6,12,8,17,1,11,5,14,1,9,1,26,1,28,2,29,1,28,2,29,1,28,3,13,1,15,1,13,1,28,2,29,1,30,1,28,1,29,1,28,2,26,1,13,1,30,1,13,1,26,5,29,5,28,1,29,1,25,1,26,1,29,1,26,5,28,1,26,2,28,55,29,1,11,1,14,1,28,3,29,4,28,1,29,1,28,1,30,1,28,2,30,1,28,5,26,1,29,1,28,1,26,1,28,1,29,2,28,22,26,1,28,11,26,1,29,1,28,16,29,2,28,2,26,1,28,2,30,1,28,1,7,1,29,1,28,1,9,1,10,1,6,1,28,2,27,1,28,3,1,588,}, + {1,68,6,1,17,1,16,1,12,1,11,4,9,1,6,1,9,1,11,1,12,2,11,1,1,1,11,4,17,1,1,1,11,3,6,1,29,1,11,2,12,1,17,1,12,2,17,1,16,2,11,1,9,1,15,1,8,1,29,1,14,1,9,1,28,1,29,1,28,5,29,1,13,1,30,1,28,3,30,1,26,1,28,2,13,1,26,1,29,1,28,2,29,2,28,1,30,1,29,2,30,2,29,1,30,1,26,1,13,1,25,1,9,2,15,1,14,1,9,1,13,1,26,1,29,1,30,1,28,1,29,1,1,2,11,2,17,1,12,7,17,4,12,6,9,3,12,2,9,8,12,2,9,1,12,3,11,6,14,1,15,1,13,1,28,6,29,1,28,4,29,1,13,1,26,1,29,1,28,1,29,1,28,1,29,1,30,2,13,2,28,2,30,3,29,6,30,1,29,1,28,4,26,7,28,1,29,1,28,6,29,1,28,47,30,1,11,1,9,1,28,4,29,4,28,1,30,1,28,10,30,1,29,1,28,1,29,1,28,20,29,1,28,3,30,1,28,11,29,1,15,1,28,15,29,1,28,1,29,1,28,3,29,1,28,3,7,1,8,1,28,3,25,1,26,1,28,4,29,1,28,1,1,587,}, + {1,68,28,1,11,1,10,1,12,1,11,4,16,1,8,1,16,1,11,1,12,1,16,1,11,1,1,1,11,6,17,1,11,1,1,1,17,1,7,1,9,1,11,2,12,1,16,1,11,2,9,1,16,3,11,1,16,1,28,1,9,1,13,1,29,1,30,1,29,1,28,5,29,1,30,1,29,1,28,5,29,1,26,1,30,1,28,2,29,2,28,1,29,4,30,3,26,1,13,2,25,1,9,2,15,2,9,1,13,1,30,1,29,1,26,1,28,1,30,1,11,4,12,10,17,1,12,7,9,3,12,2,9,4,12,4,9,2,12,1,11,6,1,1,14,1,15,1,11,1,9,1,28,2,26,2,29,1,28,2,29,1,26,2,13,1,28,4,26,1,30,1,28,1,13,3,26,1,13,2,29,3,30,1,26,2,30,1,29,1,30,1,26,1,28,1,30,1,29,2,28,4,26,8,28,7,29,1,28,46,26,1,11,1,9,1,28,4,29,1,28,1,29,2,28,1,29,1,28,10,30,1,29,1,28,2,29,1,28,3,29,2,28,12,29,2,28,4,29,1,28,12,25,1,28,15,29,1,28,9,30,1,15,1,10,1,6,1,28,2,26,1,29,1,28,4,9,1,28,1,1,586,}, + {1,68,28,1,1,1,9,1,16,1,11,5,16,1,11,2,17,1,16,1,11,1,1,2,11,7,1,1,11,1,12,1,9,1,11,1,1,1,12,1,10,1,11,2,9,1,16,2,15,1,11,1,15,1,30,1,9,1,8,1,28,1,30,1,29,4,28,3,29,3,28,4,30,1,29,1,28,3,29,2,28,1,29,4,30,3,26,1,13,2,25,1,9,1,16,1,15,1,9,1,13,1,26,2,30,2,28,1,30,1,11,3,17,1,12,18,9,4,12,1,9,2,12,8,11,5,1,1,11,3,15,1,26,1,28,3,13,2,26,1,29,1,28,2,30,1,13,2,29,1,28,3,29,1,13,1,9,4,26,3,29,1,26,1,30,3,26,3,30,1,29,1,30,2,29,1,26,1,13,1,28,4,29,1,26,6,28,8,29,1,28,45,9,1,11,1,26,1,28,4,29,1,28,1,29,1,28,13,30,1,29,2,28,4,29,2,28,33,26,1,28,3,29,1,28,17,29,1,28,2,29,1,13,1,28,1,7,1,25,1,30,1,26,1,11,1,26,1,28,3,29,1,28,1,1,586,}, + {1,69,16,1,17,1,16,1,11,7,12,1,11,1,16,1,17,1,1,2,11,3,17,1,11,1,1,1,11,6,1,1,17,1,6,1,9,1,11,1,16,2,15,2,9,2,25,1,9,2,28,2,29,5,28,3,29,4,28,2,29,1,28,1,29,2,30,1,26,1,29,1,28,1,29,1,30,6,26,1,13,2,9,2,15,2,8,1,30,1,13,1,26,2,29,1,28,1,26,1,11,4,17,1,12,17,9,2,12,11,11,2,17,1,11,2,1,2,11,1,14,3,25,1,28,2,29,2,28,1,30,1,26,2,30,1,29,4,28,2,29,1,30,1,13,1,9,2,13,3,30,2,26,1,29,1,30,1,26,1,30,3,26,1,30,1,29,2,26,1,29,2,26,1,9,1,26,1,28,4,26,4,28,3,29,1,28,52,15,1,14,1,29,1,28,4,29,1,28,1,29,1,28,1,29,1,28,1,29,1,28,9,29,1,30,1,29,2,28,2,29,1,26,1,28,34,29,2,28,20,29,1,28,2,10,1,29,1,28,2,26,1,29,1,28,1,15,2,26,1,28,3,9,1,28,1,1,585,}, + {1,69,28,1,1,1,17,1,11,2,12,1,16,1,12,1,11,2,12,1,11,1,12,2,1,2,11,9,1,1,11,2,1,1,11,1,29,2,16,1,17,1,9,3,13,1,7,2,25,1,9,1,29,1,28,2,29,6,28,3,29,2,28,3,29,1,13,1,9,1,13,2,26,2,30,6,26,1,13,3,9,1,15,2,9,1,7,1,30,1,13,1,26,2,29,1,28,1,25,1,1,1,11,1,12,1,11,2,12,27,17,2,11,5,1,2,11,1,14,3,30,1,28,7,26,1,13,2,30,1,29,1,28,3,30,1,13,1,9,2,13,1,26,1,29,2,30,1,29,1,30,1,26,1,29,1,30,1,26,4,29,2,26,1,13,1,26,2,13,1,26,2,28,5,26,1,29,1,28,3,26,1,28,1,26,1,29,1,28,7,29,2,28,42,11,1,15,1,28,5,29,1,28,3,29,2,28,11,30,1,29,1,28,1,29,1,26,1,29,2,28,6,29,1,28,18,29,1,28,9,29,1,28,11,29,1,28,11,26,1,28,5,29,1,28,2,9,1,27,1,28,2,29,1,16,1,28,1,1,584,}, + {1,69,28,1,11,4,16,2,12,1,11,2,17,1,11,1,17,1,12,1,11,1,1,1,11,14,6,1,28,1,16,1,17,1,16,3,8,1,6,1,13,2,9,1,29,1,28,2,29,7,28,3,29,2,28,2,29,1,9,2,25,1,13,2,26,1,30,1,28,1,29,3,30,1,26,1,25,3,9,4,6,1,30,1,13,1,26,2,28,2,9,1,11,6,12,21,17,3,11,7,1,1,11,3,14,2,9,1,29,1,28,2,30,2,28,3,29,1,26,1,13,2,29,1,28,2,29,1,26,1,25,2,13,1,30,4,29,2,28,1,30,1,13,1,30,1,26,1,13,1,30,1,29,1,26,2,13,1,26,5,29,1,28,10,26,2,28,1,26,2,28,51,11,1,9,1,28,5,29,2,28,3,26,1,28,11,30,1,29,1,28,1,29,1,26,2,29,1,28,6,26,1,28,19,29,1,28,5,29,1,28,17,29,2,28,12,26,2,28,3,25,1,29,1,28,2,7,2,28,2,1,582,}, + {1,70,7,1,1,1,11,2,17,2,11,3,17,1,11,1,17,1,12,1,11,1,1,2,11,13,7,2,9,2,15,1,14,1,16,1,9,1,13,1,9,3,28,2,29,7,30,1,29,1,28,2,29,1,28,3,30,1,13,1,25,1,26,1,13,1,26,1,29,1,28,2,29,2,30,1,26,1,13,3,9,3,13,3,26,3,29,1,28,1,29,1,9,2,16,1,1,2,11,6,17,1,11,2,17,2,12,4,17,5,11,16,15,1,9,2,29,1,28,2,26,1,29,2,26,1,30,1,26,3,30,1,29,1,28,2,29,1,13,2,26,1,30,2,26,1,30,1,29,1,30,3,29,1,26,1,13,1,30,1,26,1,13,1,30,1,29,1,26,1,13,1,26,1,29,1,28,12,29,1,26,8,28,49,26,1,11,1,25,1,28,5,29,2,28,2,29,2,28,11,30,1,29,1,28,2,26,2,29,1,28,2,29,2,28,2,26,1,28,19,29,1,28,23,29,1,28,8,30,1,29,1,28,5,9,1,28,3,27,1,29,1,28,1,29,1,28,3,1,582,}, + {1,70,28,1,1,1,11,7,17,3,16,1,12,1,1,2,11,5,17,1,11,6,16,1,8,1,9,1,7,1,29,1,16,1,15,1,16,2,10,1,15,1,9,1,25,1,28,2,29,2,28,2,29,6,28,4,29,1,26,4,13,1,26,1,28,3,30,1,26,3,13,1,26,2,15,2,13,1,26,1,13,1,9,1,13,1,30,1,29,3,9,1,15,1,29,2,15,1,1,5,11,29,15,2,14,1,15,1,26,1,28,2,29,1,26,1,30,1,26,1,30,2,13,1,26,1,30,1,29,2,28,2,30,1,9,1,26,2,30,1,29,2,30,3,29,1,30,1,26,1,30,1,26,2,29,3,26,1,25,2,29,1,28,14,29,1,26,5,28,1,26,2,29,1,28,48,15,1,11,1,26,1,28,5,29,4,26,1,28,2,29,2,28,8,29,1,28,2,26,1,25,1,29,1,28,4,25,1,28,2,26,1,28,7,29,1,28,16,29,1,28,24,29,1,28,4,29,1,28,4,26,1,15,1,26,1,28,5,9,1,28,3,1,581,}, + {1,70,28,1,12,1,11,1,16,1,11,5,17,1,12,1,11,1,17,1,16,1,11,1,1,1,11,13,9,1,28,2,29,1,16,2,9,1,7,1,16,1,11,1,8,1,13,1,28,2,30,2,28,1,29,3,28,2,29,2,28,3,29,1,30,1,26,2,13,2,26,1,29,1,28,2,30,1,26,2,13,2,26,1,30,1,13,1,9,1,13,4,26,1,30,1,29,2,13,1,9,2,8,1,9,1,25,1,26,1,17,1,11,4,1,3,11,16,1,1,11,3,1,1,11,3,15,1,14,2,15,1,9,1,30,1,28,3,13,1,15,1,9,1,26,1,13,2,26,2,30,1,28,2,26,2,29,1,26,2,30,1,29,2,30,4,29,1,26,1,29,1,26,1,13,1,28,1,29,1,25,3,26,1,29,1,28,16,26,3,29,1,26,5,28,48,14,1,15,1,26,1,28,4,29,2,28,1,29,5,28,10,29,1,28,1,26,4,29,1,28,4,9,1,28,1,29,3,28,7,29,1,28,12,30,1,28,6,29,2,28,24,29,4,26,1,9,1,26,1,29,1,28,4,29,1,6,1,28,3,1,580,}, + {1,71,10,1,1,1,12,1,11,3,17,1,11,1,17,2,11,2,12,1,11,1,1,2,11,2,1,2,11,5,12,1,11,1,17,1,9,1,8,1,9,1,11,1,1,1,11,1,17,1,7,2,16,1,9,1,16,1,29,1,28,1,29,2,28,1,29,1,30,1,29,1,28,1,26,1,30,1,29,1,28,2,29,1,26,1,13,2,29,1,26,1,25,1,29,1,28,1,29,1,30,2,26,2,13,2,30,2,13,1,9,1,13,1,26,3,30,3,25,1,9,2,13,1,30,1,26,1,9,1,15,3,11,6,1,9,11,11,15,1,9,1,16,1,15,3,9,2,26,1,29,1,28,2,29,1,30,1,29,1,28,1,9,1,14,1,13,1,26,1,30,1,29,2,26,1,9,1,26,1,28,1,29,1,26,2,30,1,29,1,30,2,29,2,30,1,29,1,30,1,26,2,28,2,29,2,28,20,26,5,29,1,26,2,28,47,29,1,11,1,15,1,28,5,29,4,28,15,29,1,26,2,29,3,28,4,26,1,29,1,28,2,29,1,28,1,29,1,28,5,30,1,28,12,29,2,28,30,29,2,28,4,9,1,25,1,26,1,27,1,28,5,6,1,28,3,1,579,}, + {1,71,28,1,11,1,12,1,11,1,1,1,11,1,12,1,11,5,12,2,11,1,1,3,11,4,1,1,11,2,12,1,11,1,17,1,9,1,16,1,11,1,1,2,11,1,1,1,11,1,9,1,15,2,14,1,29,1,28,4,29,5,28,2,29,1,30,1,13,1,9,1,15,1,13,1,28,1,29,1,9,1,30,1,28,1,26,1,30,2,26,2,13,1,9,1,13,1,30,1,26,1,9,1,13,1,30,4,26,1,25,1,15,1,9,2,13,1,30,1,29,1,9,1,14,1,9,4,15,1,11,3,15,1,11,3,1,2,11,2,1,2,11,6,15,8,14,1,9,1,26,1,29,1,28,8,26,1,9,1,30,4,26,1,9,1,15,1,13,1,29,1,30,3,29,3,30,2,29,2,30,1,25,1,26,1,28,26,26,4,28,1,26,3,28,46,9,1,11,1,9,1,28,4,29,2,28,1,29,2,28,15,13,1,26,1,29,1,28,8,26,1,28,10,30,1,28,50,26,1,9,2,27,1,28,5,9,1,16,1,28,3,1,578,}, + {1,71,28,1,11,1,12,1,11,2,12,1,16,1,11,5,17,1,12,1,11,1,1,1,11,17,17,1,1,2,11,2,15,1,14,1,29,1,28,4,29,2,28,1,29,1,26,2,29,2,26,1,13,2,26,1,13,1,26,1,28,1,30,1,29,1,28,1,13,1,30,1,26,3,13,1,15,1,9,1,30,1,29,1,13,2,26,1,30,2,13,1,9,7,25,2,9,6,15,1,14,1,11,3,14,1,15,2,14,1,11,3,14,1,15,10,14,1,11,1,14,1,15,1,9,1,13,1,28,4,29,2,30,1,28,1,30,1,13,1,28,1,29,1,9,1,13,1,28,1,26,1,25,1,9,1,13,1,29,1,28,1,30,1,29,1,28,2,29,1,30,1,29,1,30,1,26,3,25,1,28,27,26,4,28,1,26,3,29,1,28,45,14,2,26,1,28,4,30,1,29,1,28,1,29,2,28,6,29,1,28,7,29,1,13,1,29,3,28,7,27,1,28,10,26,1,28,39,29,1,28,6,29,2,28,4,15,1,27,1,15,1,29,1,28,2,26,1,28,1,11,1,12,1,28,3,1,577,}, + {1,71,28,1,12,1,11,3,17,2,1,1,11,2,12,2,17,1,11,2,1,1,11,10,12,2,11,2,16,1,12,1,11,1,12,1,9,1,8,1,16,1,11,1,15,1,11,1,29,1,28,4,29,1,28,2,29,1,13,1,26,1,28,2,29,1,26,1,28,2,26,1,15,1,29,1,28,3,13,2,26,1,13,3,9,1,13,1,29,2,26,1,13,2,30,1,26,1,9,1,15,1,9,1,25,1,9,6,13,1,9,1,15,2,9,3,15,3,14,2,11,2,14,1,15,10,14,4,15,1,9,1,13,1,26,1,28,5,29,1,30,1,26,2,13,2,14,1,13,1,30,1,14,1,25,1,28,1,13,1,9,1,13,1,29,1,28,2,29,2,28,2,30,1,26,1,29,1,30,1,13,3,29,1,28,5,29,1,28,22,26,8,28,8,29,1,28,35,26,1,11,1,15,1,28,5,30,1,28,2,29,1,28,2,29,2,28,3,29,2,28,6,26,2,29,4,28,5,29,1,26,1,28,3,29,2,28,5,26,1,28,10,30,1,28,42,9,1,15,1,27,1,28,2,12,1,28,2,1,1,9,1,28,3,1,576,}, + {1,72,9,1,1,1,11,7,16,2,11,2,1,2,11,1,1,4,11,4,1,1,16,1,9,1,11,2,16,2,1,1,16,1,28,2,6,1,11,3,28,2,29,1,28,2,29,3,26,1,30,2,29,1,28,6,14,1,9,1,29,3,26,1,13,1,26,1,13,2,30,1,29,1,28,2,26,1,13,1,9,1,13,1,26,1,13,1,9,2,13,1,9,1,15,1,9,1,25,1,13,2,25,1,13,1,26,1,25,1,9,1,13,1,26,1,30,3,29,1,26,1,9,1,15,1,14,2,15,2,14,6,15,2,9,4,13,1,29,1,28,5,29,1,26,2,13,2,29,1,9,4,29,1,13,1,26,1,28,1,26,1,9,1,13,1,29,2,30,1,29,2,28,2,26,1,13,1,26,2,13,1,30,1,26,1,28,30,26,7,28,44,15,1,11,1,9,1,28,5,29,1,28,2,29,5,28,5,29,1,28,4,29,1,30,2,26,1,29,1,28,7,29,1,28,1,26,1,28,2,26,1,28,6,30,1,29,1,28,9,29,1,28,43,15,1,27,1,28,2,29,1,26,1,28,1,29,1,1,1,9,1,28,3,1,575,}, + {1,72,6,1,1,1,11,4,17,1,11,2,12,1,16,1,11,1,1,3,11,1,1,4,11,4,1,1,11,4,16,1,12,1,11,1,16,1,29,1,28,1,9,1,1,1,11,2,28,2,29,1,28,2,29,1,30,1,26,2,13,3,30,1,28,3,29,1,28,1,13,1,9,3,13,1,26,2,29,1,30,1,29,1,28,3,29,1,13,1,9,1,25,1,13,2,25,1,9,1,13,1,30,1,25,1,9,1,13,2,26,1,13,1,26,1,30,1,28,1,29,1,30,4,29,4,28,2,29,1,13,1,9,1,14,1,9,6,25,1,13,2,29,1,28,1,29,2,28,2,29,1,30,1,26,3,13,2,9,2,30,1,9,2,13,2,30,1,28,1,26,1,28,2,29,1,26,1,29,3,28,3,30,1,26,1,13,2,26,2,28,32,29,1,26,6,28,44,11,1,14,1,28,5,29,1,28,3,29,5,28,5,29,1,28,6,30,1,26,1,29,1,28,6,26,1,28,2,26,1,28,10,29,1,28,50,29,1,28,2,27,1,9,1,28,6,29,1,1,1,10,1,28,3,1,574,}, + {1,72,28,1,1,1,17,1,12,1,17,1,12,1,16,2,11,1,17,1,16,1,17,1,1,2,11,5,1,2,11,4,1,2,11,1,9,1,6,1,8,1,16,1,17,2,11,1,1,1,11,3,30,1,28,1,29,1,28,2,29,1,26,3,29,1,28,3,29,1,28,5,30,1,9,3,26,1,30,1,29,1,28,3,29,1,30,3,9,1,13,1,26,1,13,1,9,2,26,1,29,1,30,1,29,2,13,1,9,2,13,1,29,4,30,1,13,1,9,2,13,4,26,1,30,1,29,5,28,1,29,3,30,3,29,3,28,2,26,1,15,2,9,1,13,1,26,2,13,1,9,3,26,1,25,1,29,2,25,1,29,2,26,1,28,2,30,2,29,2,28,2,26,1,13,2,26,2,29,1,28,7,29,1,28,17,29,1,28,9,26,2,29,1,26,2,28,30,29,1,28,12,15,1,1,1,9,1,28,4,29,2,28,2,29,2,30,3,29,5,28,1,29,1,30,1,28,2,30,1,28,2,30,1,29,1,30,1,29,1,28,4,26,2,28,1,26,1,9,1,28,10,29,1,28,9,30,1,28,13,29,1,28,12,29,1,28,5,29,1,30,1,28,4,29,1,28,5,9,2,28,6,7,1,1,1,7,1,28,2,1,574,}, + {1,72,28,1,1,1,16,1,12,1,16,3,17,1,11,1,16,1,12,1,1,2,11,2,1,2,11,3,1,3,11,3,1,2,11,2,17,2,11,1,1,1,11,1,1,3,11,1,29,1,28,2,30,1,13,3,29,1,28,7,29,2,30,3,29,1,28,6,29,2,30,1,26,1,13,2,9,4,25,1,15,1,25,1,28,5,8,1,15,1,13,1,30,2,26,1,13,6,26,1,13,1,26,3,30,1,29,1,28,1,30,1,13,1,26,1,29,1,30,1,29,1,28,3,29,1,30,1,26,2,30,3,9,1,15,1,9,1,29,2,25,1,9,2,26,2,30,6,29,2,28,2,29,3,28,1,30,1,13,2,30,1,29,1,28,38,29,1,28,9,29,1,28,25,30,1,28,10,11,2,28,5,30,1,29,1,28,2,29,1,30,1,13,2,26,2,30,7,28,2,29,1,28,2,29,2,30,2,28,4,26,1,28,1,27,1,26,2,28,20,26,1,28,26,29,2,28,4,29,1,28,1,29,1,28,6,26,1,28,3,15,1,9,1,26,1,28,6,11,1,6,1,28,1,1,574,}, + {1,72,28,1,1,1,12,2,16,3,11,1,16,2,11,1,1,2,11,7,1,4,11,10,1,1,11,1,9,1,12,1,11,1,6,1,28,2,26,1,13,2,30,1,28,4,26,1,13,2,26,2,30,1,29,1,28,6,29,2,30,1,29,1,30,1,26,1,9,4,13,1,26,1,30,1,13,1,9,2,28,3,29,2,13,1,9,1,13,1,30,3,26,2,13,1,26,1,30,1,29,1,30,1,26,8,9,1,15,1,9,1,26,2,13,4,25,1,9,3,13,2,29,1,9,4,25,1,13,1,26,3,30,4,29,4,28,2,29,1,30,1,26,2,28,1,29,2,28,86,9,1,1,1,9,1,28,5,29,1,28,2,29,2,26,1,13,1,25,1,13,3,26,5,30,1,28,5,30,3,29,1,28,4,26,2,27,1,26,1,28,13,29,1,28,2,29,1,28,4,29,2,28,4,29,1,28,25,29,2,28,12,26,1,15,1,9,1,28,2,29,3,28,1,29,1,28,1,12,1,29,1,1,573,}, + {1,72,28,1,1,1,17,1,16,4,11,1,9,1,11,1,1,4,11,6,1,4,11,7,1,1,11,2,1,1,12,1,6,1,17,1,1,1,6,1,28,2,30,1,26,1,29,1,28,4,29,2,30,2,29,1,28,6,29,4,26,3,13,1,9,2,15,1,9,2,30,1,29,2,26,1,9,2,30,1,28,1,29,1,30,2,25,1,9,1,13,1,30,1,13,1,26,2,13,1,25,2,13,1,26,1,13,1,25,5,13,4,9,3,25,2,9,1,25,2,9,2,15,2,9,2,26,1,13,1,9,1,25,1,13,1,26,1,29,1,30,1,26,1,30,1,29,2,30,1,29,2,28,1,29,1,28,3,26,2,30,1,29,1,28,88,26,1,11,2,28,6,29,1,28,1,29,2,28,1,29,1,26,1,13,5,26,2,13,1,30,1,29,1,28,5,13,1,30,1,29,1,28,4,29,1,26,4,28,14,29,1,28,1,29,1,28,4,30,1,28,5,29,2,28,5,29,1,28,19,29,1,28,4,29,1,28,8,26,1,11,1,26,1,28,2,29,1,25,1,29,1,28,2,16,1,11,1,28,1,1,572,}, + {1,72,17,1,1,1,16,3,12,3,16,1,1,3,11,9,1,2,11,9,1,1,11,2,9,1,6,1,11,1,1,1,8,1,28,2,29,2,28,3,29,1,26,1,30,1,29,2,28,3,29,1,28,2,29,1,30,1,26,3,30,1,26,2,13,1,9,5,13,1,29,2,26,1,13,1,9,1,25,1,29,3,30,2,9,1,15,1,13,1,28,1,26,2,30,1,26,1,13,1,25,1,9,2,25,2,9,3,25,1,13,2,26,1,28,1,30,1,9,2,13,6,25,1,9,2,25,1,13,3,26,3,29,2,26,1,30,1,29,5,28,2,29,6,28,86,29,1,28,3,11,1,14,1,26,1,28,5,29,1,30,1,28,2,29,1,28,1,29,1,30,3,26,6,29,1,28,6,26,2,29,1,28,2,29,2,26,5,28,14,29,1,28,3,29,1,28,10,29,1,28,6,29,1,28,22,29,1,28,4,29,1,28,4,26,1,11,1,29,1,28,2,29,1,7,1,6,1,28,2,17,1,9,1,28,2,1,570,}, + {1,70,28,2,1,1,17,1,9,1,16,1,9,1,12,1,11,1,12,1,11,1,1,2,11,1,12,1,11,14,1,3,11,3,1,1,11,1,6,2,11,1,1,1,14,1,29,1,28,1,30,1,28,3,29,1,30,2,29,1,30,1,26,2,29,2,30,1,26,1,30,3,26,2,13,2,26,1,13,1,9,5,8,1,13,1,29,1,30,1,9,1,25,1,13,2,29,2,28,2,29,1,9,1,14,1,13,1,28,3,29,2,26,1,13,2,25,1,30,2,13,1,25,1,9,1,25,1,13,2,30,1,29,1,13,1,9,1,25,1,26,1,13,1,26,1,13,5,26,1,30,1,26,1,30,1,26,2,30,1,26,2,29,6,28,3,29,1,30,1,26,2,28,92,14,1,1,1,25,1,28,7,29,1,28,2,29,1,30,1,25,1,13,1,30,2,26,2,13,2,26,3,29,1,30,1,28,5,26,1,29,1,28,1,29,2,26,1,25,1,26,1,29,1,26,1,28,12,29,1,28,6,29,1,28,3,29,2,28,3,29,1,28,2,29,1,28,33,29,1,26,1,28,1,26,1,28,2,27,1,15,1,29,1,28,2,29,1,8,1,6,1,28,1,29,1,11,1,6,1,28,2,1,569,}, + {1,70,28,1,1,2,9,1,16,1,17,1,9,1,16,1,11,2,1,3,11,1,12,1,11,11,1,1,11,4,1,4,11,1,9,1,29,1,9,1,1,2,11,1,30,1,29,1,30,1,28,3,29,1,13,1,29,2,30,4,29,2,30,4,26,2,13,2,9,5,13,2,9,1,13,1,30,1,13,1,9,1,13,3,30,1,29,1,28,3,9,1,11,1,9,1,29,1,28,2,29,1,26,6,30,2,13,3,26,3,25,1,9,1,25,2,9,1,13,1,28,1,13,2,26,1,13,1,26,1,30,3,29,1,26,1,30,2,26,1,30,1,29,2,28,4,29,3,26,1,29,2,28,92,9,1,1,1,15,1,28,8,29,2,28,2,26,1,9,1,13,1,26,3,13,3,26,5,29,1,28,4,30,1,29,1,28,1,29,3,25,1,29,2,26,1,28,12,29,1,28,8,29,2,28,4,26,2,28,2,29,1,28,34,9,1,28,5,25,1,26,1,28,3,29,1,9,1,28,2,9,1,16,1,28,2,1,569,}, + {1,69,28,1,12,1,1,1,11,1,16,1,17,1,16,1,9,1,17,1,11,2,1,2,11,14,1,1,11,7,1,1,16,1,6,1,9,1,11,1,1,2,9,1,28,1,30,1,25,1,30,1,28,3,26,3,30,1,29,5,28,1,29,1,26,1,13,5,9,3,25,1,13,3,9,1,26,1,29,1,26,1,13,1,26,1,13,1,9,1,13,1,26,2,30,1,29,1,9,1,14,1,9,1,26,1,29,1,30,1,26,2,13,1,26,2,30,1,9,1,13,1,30,2,26,1,30,3,13,3,26,1,25,1,9,1,30,1,28,1,9,1,13,1,30,1,26,2,30,5,29,3,28,2,13,1,29,2,28,1,29,2,30,1,29,2,28,93,9,1,11,1,14,1,29,1,28,5,29,1,28,1,29,4,28,1,29,1,25,1,13,1,30,1,26,1,13,2,26,4,30,1,26,1,30,1,26,1,28,2,29,1,28,2,29,1,28,3,29,1,9,1,29,1,26,2,29,1,28,12,26,1,28,7,29,1,13,1,28,3,30,1,26,1,29,1,28,5,29,1,28,5,29,1,28,25,25,2,28,5,29,1,28,1,29,1,28,2,8,1,16,1,28,2,16,1,6,1,28,2,1,568,}, + {1,68,28,1,16,1,1,1,12,1,17,3,7,1,16,1,11,2,1,2,11,1,12,1,11,1,1,1,11,19,17,1,8,1,6,1,11,1,1,3,8,1,28,1,30,1,14,2,26,1,28,8,29,1,28,2,29,1,30,1,26,3,13,1,9,4,13,3,26,2,13,1,30,1,29,1,30,1,13,1,26,1,25,1,9,1,25,2,9,1,25,1,29,1,26,1,9,1,25,1,13,2,26,1,30,5,29,1,14,1,9,1,29,2,30,2,26,1,13,1,29,1,30,2,26,1,13,1,29,1,28,1,29,1,15,1,13,1,30,1,26,2,30,1,29,3,28,2,29,2,28,1,29,1,9,2,13,1,30,1,29,1,26,1,29,1,28,95,11,2,9,1,28,8,29,1,28,2,30,1,29,2,9,2,29,1,26,1,13,2,26,3,13,1,26,1,13,1,29,1,13,1,28,2,29,1,28,2,29,1,28,3,29,1,15,1,26,1,29,1,26,2,28,12,26,1,29,1,28,7,29,1,28,12,29,1,28,3,29,1,28,6,29,3,28,4,30,2,28,12,15,1,26,1,28,4,26,2,28,1,30,1,28,1,6,1,17,1,29,1,28,1,9,2,29,1,28,3,1,566,}, + {1,68,7,1,1,1,11,2,12,1,8,1,7,1,16,1,11,1,1,2,11,1,10,1,7,1,9,1,11,1,1,1,11,1,17,1,1,1,11,2,1,1,11,3,1,1,11,1,1,1,11,2,1,1,11,2,16,3,9,1,1,2,11,1,1,1,12,1,28,3,26,1,9,1,14,1,15,1,13,1,26,1,29,2,28,1,29,1,30,1,29,1,28,2,30,2,26,1,13,3,25,1,9,2,25,1,13,4,30,1,29,1,26,1,13,4,25,1,9,1,13,1,9,1,15,1,9,3,8,1,30,2,9,1,25,1,13,1,26,3,30,1,28,1,15,2,13,1,28,1,29,1,30,2,26,1,30,2,26,3,29,1,28,2,25,1,30,1,29,1,30,2,29,1,28,3,29,1,26,2,30,1,29,3,9,2,13,1,26,1,28,96,14,1,11,1,26,1,28,8,29,1,30,1,29,1,28,1,29,1,28,1,29,1,9,2,30,1,13,1,26,2,9,1,25,1,26,1,13,2,26,3,28,2,29,1,28,2,9,1,30,1,28,3,9,1,15,1,25,1,28,1,25,1,26,1,28,11,26,1,29,1,28,7,30,1,28,21,29,1,28,2,29,1,30,1,29,1,28,2,29,1,30,1,28,5,29,1,28,7,26,1,15,1,29,1,28,3,26,1,29,1,28,1,26,1,30,1,28,1,29,1,11,1,28,1,8,1,6,1,7,1,28,1,6,1,28,1,1,566,}, + {1,67,28,1,1,1,11,1,1,1,12,1,9,1,7,1,9,1,11,2,1,1,11,1,9,1,28,1,29,1,9,1,11,1,1,2,11,16,17,1,11,2,1,2,11,1,1,1,11,1,29,1,28,1,29,1,28,3,26,1,9,1,14,3,9,1,26,1,30,1,26,3,30,1,28,2,13,1,9,1,13,1,26,1,13,1,9,2,13,1,26,1,13,3,29,1,28,1,30,1,13,4,25,1,9,1,25,1,9,1,15,2,9,4,15,1,9,1,15,2,9,1,25,1,13,2,26,1,9,1,15,1,9,1,26,1,30,1,26,1,30,1,29,3,30,1,29,3,28,1,26,1,9,1,13,1,29,1,28,1,29,3,30,1,26,6,30,1,29,1,26,2,29,1,28,40,29,1,28,32,29,1,28,22,15,1,14,1,13,1,28,10,29,3,30,1,28,2,25,1,13,2,25,2,26,1,30,1,13,1,9,2,13,1,26,1,13,1,30,1,28,4,26,1,13,1,28,4,26,1,25,1,15,1,29,1,26,1,29,1,28,11,25,1,28,3,29,1,28,4,30,1,28,4,29,1,28,23,29,2,28,15,26,1,15,1,28,6,29,2,28,2,7,1,6,2,8,1,6,1,29,1,28,1,9,1,28,1,1,565,}, + {1,67,16,1,1,1,11,1,12,1,16,1,9,1,10,1,11,1,1,3,11,1,10,1,8,1,9,1,16,1,17,1,11,1,1,1,11,1,17,1,11,3,17,1,11,11,1,1,11,1,1,1,11,2,1,1,16,1,28,1,29,1,28,6,29,1,30,1,9,1,13,1,29,1,28,1,29,1,30,1,26,1,13,1,26,1,13,1,9,4,25,1,13,3,25,1,9,2,13,1,26,1,30,2,13,4,9,3,25,1,9,1,13,1,25,1,9,1,15,1,9,1,8,1,25,1,9,1,15,3,9,2,25,1,29,1,13,1,9,1,13,1,30,1,26,2,29,1,30,1,29,1,30,1,29,4,25,1,14,1,9,1,13,1,26,2,13,5,26,2,13,1,26,1,29,1,28,77,29,1,28,21,15,1,11,1,25,1,28,12,29,3,28,1,29,1,9,2,13,1,30,1,13,2,30,1,26,1,9,1,13,2,26,1,13,1,28,2,29,1,28,1,13,2,29,1,28,1,29,1,28,3,26,1,15,1,25,1,26,1,29,1,28,11,25,1,28,2,26,2,28,4,29,1,28,4,29,1,28,41,15,1,26,1,28,3,26,1,29,1,28,1,29,1,28,3,7,1,29,1,10,1,7,1,9,1,28,2,16,1,28,1,1,564,}, + {1,66,28,1,1,3,7,1,16,1,12,1,17,1,1,2,11,2,1,1,11,1,17,2,12,1,16,1,17,1,11,1,1,1,11,2,1,1,17,1,16,1,11,2,17,1,11,8,1,1,11,1,16,1,11,1,1,1,11,1,7,1,28,4,29,2,28,10,30,1,13,1,15,1,9,5,13,1,29,1,13,1,9,3,13,4,26,1,13,4,9,5,25,1,9,1,15,1,14,1,9,1,13,4,25,1,9,1,15,1,9,2,13,2,9,2,13,2,9,1,13,4,26,3,30,1,25,1,9,1,25,1,13,5,30,1,26,3,13,2,26,1,28,99,15,1,11,1,25,1,28,13,29,2,28,2,30,1,9,2,13,1,29,1,30,1,13,2,26,1,13,1,26,1,13,1,30,2,28,4,9,1,26,1,28,1,26,2,28,3,26,1,15,2,26,3,28,9,26,1,25,1,28,2,26,2,28,4,30,1,28,4,29,1,28,41,26,1,15,1,26,1,28,3,26,1,28,1,29,1,30,1,28,2,29,1,6,1,7,1,9,1,16,1,6,1,28,2,11,1,28,1,1,563,}, + {1,65,28,1,11,3,16,1,10,1,16,1,11,1,1,3,11,2,1,2,17,1,12,2,17,1,11,5,1,1,11,1,12,1,11,2,17,1,11,8,1,1,11,1,16,1,11,1,1,1,9,1,29,1,28,5,29,1,30,2,29,2,28,6,26,1,25,1,13,1,25,1,9,2,13,2,25,2,9,1,25,1,26,1,30,1,26,2,30,1,29,1,26,1,13,4,25,1,9,4,15,1,9,3,15,1,9,3,13,2,9,2,15,1,9,1,15,1,9,3,13,2,9,7,25,1,30,1,26,2,13,1,25,4,13,1,30,3,26,3,30,1,28,98,14,1,15,1,26,1,28,4,29,1,28,6,29,4,28,3,29,1,30,1,26,1,13,2,26,1,30,1,13,1,26,2,13,1,30,1,29,2,26,1,28,2,29,1,25,1,29,1,30,1,26,1,29,1,28,4,9,1,15,1,26,2,25,1,26,1,28,7,26,3,28,2,26,1,30,1,28,4,26,1,28,4,29,1,28,10,29,1,28,31,26,1,15,1,28,4,29,1,26,2,29,2,28,1,29,1,6,1,16,1,9,1,7,1,29,1,28,1,29,1,9,1,1,563,}, + {1,65,28,1,1,1,11,1,16,1,6,1,16,1,1,3,11,1,17,1,11,3,1,2,11,11,1,1,11,1,12,2,11,12,10,1,28,4,29,1,30,1,26,3,29,1,28,1,29,2,28,3,29,1,26,1,9,1,29,1,30,1,13,1,9,1,15,2,9,2,13,1,26,1,29,1,28,2,29,2,30,3,26,1,13,7,9,1,13,1,26,1,13,1,8,1,13,1,26,1,9,1,15,7,9,7,15,1,9,3,15,1,9,1,30,2,9,5,25,1,13,2,26,5,29,1,28,97,14,2,28,13,29,5,28,1,29,2,28,1,29,1,28,1,9,2,30,2,26,2,13,1,29,3,13,1,29,1,28,1,29,1,26,2,13,1,26,1,28,1,29,1,28,3,26,1,9,1,25,1,26,3,28,6,26,3,29,1,28,2,26,1,29,1,28,4,29,2,28,3,29,2,28,42,9,1,26,1,28,4,29,2,30,1,29,1,28,2,29,1,9,1,8,1,6,1,7,1,6,1,28,1,8,1,6,1,1,562,}, + {1,64,28,1,17,1,1,2,10,1,9,1,11,1,1,2,11,1,8,1,6,1,11,1,1,1,11,2,1,1,11,6,1,1,11,6,17,1,12,1,11,9,1,1,12,1,9,1,6,1,28,4,29,5,30,1,26,1,28,4,29,2,26,1,13,1,30,1,29,2,13,1,9,1,25,1,26,1,30,1,29,1,30,1,26,1,29,1,28,2,29,1,26,1,29,1,30,2,26,4,13,6,9,2,30,1,29,1,13,1,15,3,9,8,15,3,9,5,25,1,30,1,26,1,25,1,26,1,30,2,26,3,13,1,26,4,30,1,29,1,28,95,30,1,9,1,14,1,28,15,29,2,28,1,29,2,30,1,29,1,28,1,29,1,28,1,26,1,25,1,26,9,29,1,28,2,29,1,13,1,26,1,29,1,28,1,29,1,26,1,28,3,26,1,15,1,26,1,29,1,26,1,29,1,26,8,28,3,26,1,28,2,29,1,28,1,30,1,29,2,28,4,26,1,28,24,29,1,28,8,29,1,28,8,26,1,28,1,29,1,9,1,28,4,29,1,28,4,7,2,29,1,10,1,29,1,28,2,9,1,28,1,1,561,}, + {1,64,28,1,1,2,8,1,12,1,1,2,11,2,16,1,28,2,16,1,1,1,11,3,1,2,11,2,17,1,16,2,1,1,11,1,1,1,11,15,16,1,7,1,28,3,29,5,30,2,29,1,28,1,29,2,30,1,13,1,9,1,25,1,13,1,26,1,13,1,26,2,13,1,26,1,29,2,26,1,30,4,29,1,28,3,29,2,30,1,26,4,13,2,26,1,13,1,30,1,29,1,13,1,15,1,9,1,13,3,26,2,13,2,25,1,26,1,9,1,25,1,29,1,30,1,13,3,9,1,13,5,30,1,13,1,28,3,29,1,26,1,13,3,26,1,30,2,26,2,29,1,28,80,29,1,28,13,15,1,14,1,26,1,28,16,29,2,28,1,29,1,28,1,29,1,28,2,30,1,26,1,28,1,29,1,13,1,26,2,9,3,25,1,13,1,29,2,28,2,29,1,26,1,30,3,28,2,29,1,28,2,29,1,9,1,26,1,29,1,26,4,9,2,26,2,9,1,26,1,28,3,26,1,28,2,29,1,28,1,30,2,28,5,26,1,28,8,29,1,28,23,29,1,28,2,29,1,28,2,29,1,28,3,26,1,28,2,25,2,28,4,29,2,30,1,28,1,6,1,7,1,29,1,28,1,29,1,28,3,6,1,28,1,1,560,}, + {1,64,28,1,1,1,9,1,16,1,1,2,11,2,1,1,9,1,28,2,6,1,11,1,1,1,11,2,1,1,11,1,17,1,16,1,9,1,11,1,1,1,11,1,1,1,11,1,16,1,11,1,1,1,11,3,1,1,11,2,1,1,11,2,1,1,11,3,9,1,28,4,29,8,28,1,29,1,26,1,13,2,26,4,9,1,13,1,30,1,29,7,26,1,13,1,28,2,29,1,30,1,29,2,30,5,26,2,30,1,29,2,13,1,9,2,26,1,13,3,26,1,13,3,26,1,29,1,13,1,9,1,30,1,29,1,30,1,29,1,13,1,26,1,29,2,30,2,29,1,28,4,30,1,26,1,30,1,26,1,30,2,29,2,30,2,28,27,29,1,28,65,26,1,11,1,14,1,28,20,30,1,26,1,30,1,28,4,13,1,9,1,29,1,26,1,9,2,13,2,30,1,13,1,30,1,29,2,28,2,29,1,13,2,29,1,30,1,26,1,28,4,29,2,26,1,29,1,26,2,29,1,26,1,28,2,26,1,28,1,26,1,29,1,28,3,30,2,28,3,30,1,28,5,29,1,26,1,28,8,29,3,28,16,29,1,28,2,29,1,28,10,26,1,27,1,28,2,26,2,28,4,29,1,28,4,9,1,28,1,29,2,6,2,28,1,7,1,28,1,1,560,}, + {1,64,7,1,11,1,16,1,11,1,1,1,11,4,17,1,8,1,6,1,8,1,17,1,11,5,9,1,10,1,11,1,1,1,11,1,1,1,11,6,1,1,11,2,1,1,11,2,1,2,11,3,15,1,26,1,28,4,29,5,28,3,29,1,26,1,13,2,29,2,26,1,9,1,26,1,13,1,29,3,28,6,30,1,26,1,28,3,30,7,26,1,30,1,13,2,30,1,28,1,29,1,13,1,9,1,29,1,26,1,13,6,26,1,29,1,13,1,9,1,30,3,29,1,30,5,29,1,28,5,13,2,30,2,29,1,26,1,30,2,26,1,29,1,28,58,29,1,30,1,26,1,30,1,29,1,28,28,9,1,14,2,26,1,28,20,30,2,28,1,29,1,28,4,29,1,13,1,30,1,13,1,9,1,26,2,25,1,13,2,26,1,29,3,28,2,26,1,9,1,13,1,29,1,26,2,29,1,28,2,26,2,28,16,30,1,28,3,30,1,29,2,28,4,26,1,29,1,28,7,29,1,28,2,29,1,28,12,29,2,28,5,29,1,28,9,26,2,28,3,9,1,25,1,28,8,7,1,9,1,6,1,28,1,29,1,7,1,6,1,29,1,6,1,28,1,1,559,}, + {1,63,28,1,16,2,11,1,1,2,11,1,1,1,11,4,16,2,12,1,11,5,7,2,11,1,1,1,11,2,9,1,16,1,1,1,11,1,16,1,17,1,1,2,11,1,1,1,11,1,17,1,11,1,1,1,16,1,12,1,11,1,9,1,30,1,26,1,29,1,28,2,29,2,30,1,29,1,28,3,29,1,13,1,26,3,13,4,29,2,28,2,29,1,28,6,30,1,13,1,29,1,28,1,29,2,30,1,13,10,30,2,13,2,29,1,26,1,13,1,25,5,13,1,30,1,13,1,9,1,13,4,29,1,30,1,26,2,30,1,29,3,26,1,28,1,13,1,9,1,26,1,13,1,26,1,29,4,30,1,29,1,28,9,29,1,28,45,29,1,28,2,29,1,26,3,29,1,28,26,26,1,15,1,9,1,26,1,28,22,30,1,28,2,29,2,28,4,29,2,13,1,15,1,26,1,30,1,13,1,26,2,13,1,30,1,28,1,29,1,26,1,28,2,26,1,9,1,29,2,26,1,28,1,29,1,26,4,9,1,29,1,28,1,26,2,9,2,15,1,26,2,25,1,28,4,29,2,28,1,30,2,28,6,30,1,29,1,28,7,29,1,28,14,29,1,28,1,29,1,28,5,29,1,28,10,26,1,27,1,28,2,26,1,15,1,29,1,28,4,29,1,28,3,30,1,28,4,6,1,28,1,29,1,6,1,28,1,1,4,28,1,1,553,}, + {1,63,10,1,16,1,12,1,1,2,11,2,1,1,11,12,9,1,8,1,17,1,11,2,16,1,9,1,17,1,1,1,11,1,16,1,12,1,17,1,11,4,1,1,11,1,9,2,15,1,11,1,16,1,26,2,28,2,29,1,28,1,29,3,28,2,29,1,30,1,13,1,30,2,13,1,9,2,30,1,28,8,29,4,26,1,13,1,26,2,13,1,30,1,13,2,9,3,13,2,9,1,13,2,9,1,8,1,13,6,25,2,8,1,9,2,25,1,26,1,13,1,9,1,13,5,25,1,13,1,26,1,30,1,29,3,30,1,29,1,9,2,26,1,9,2,30,1,29,2,30,1,29,1,28,28,29,1,28,3,29,1,28,4,29,2,28,17,29,3,26,1,29,3,28,24,30,1,9,2,26,1,29,1,28,24,29,1,28,3,26,1,28,2,29,1,28,3,30,1,15,1,13,1,26,5,29,1,28,1,26,1,13,1,30,1,28,2,9,1,26,1,29,1,26,1,28,1,29,2,28,2,26,1,9,1,25,1,26,2,29,1,28,2,9,1,25,1,28,1,26,1,28,6,29,1,13,1,29,3,28,1,29,1,28,25,26,1,29,1,28,1,29,1,28,2,30,1,28,2,29,1,28,11,26,1,15,1,28,2,9,1,26,1,28,4,30,1,28,4,29,2,28,7,1,558,}, + {1,62,28,1,11,1,17,1,11,1,1,1,11,2,1,2,11,3,17,1,11,2,1,1,11,1,1,1,11,1,1,1,11,1,16,2,12,1,11,1,17,1,12,1,11,1,1,2,11,2,12,1,11,3,12,1,11,1,1,2,16,2,15,2,9,1,26,1,30,1,29,1,28,1,29,1,28,2,29,1,28,2,29,1,30,1,26,1,29,1,30,1,26,2,30,1,28,4,30,1,28,2,29,5,30,2,13,2,26,2,9,1,13,8,25,1,13,1,9,1,15,1,9,1,13,1,8,1,9,1,8,2,9,6,15,1,9,7,15,1,9,2,13,1,30,1,29,1,28,4,15,2,13,1,9,2,13,1,29,1,30,1,26,1,30,1,29,1,28,36,29,1,30,1,28,15,29,1,28,2,29,3,28,1,29,2,28,21,26,1,9,1,15,1,9,1,29,1,28,27,26,1,28,3,29,1,28,2,29,1,28,2,29,1,28,1,13,2,25,1,13,1,25,1,13,1,29,1,28,1,26,1,13,1,26,1,30,1,28,2,29,1,25,1,26,2,28,2,26,2,29,1,9,1,26,4,28,6,29,1,28,3,29,1,28,2,29,2,28,1,29,2,28,5,29,1,28,19,29,1,26,1,28,3,29,1,28,2,29,1,28,3,29,1,28,11,25,1,15,1,28,2,15,1,28,5,29,1,28,2,29,1,30,2,29,1,28,2,7,1,28,2,6,1,28,1,1,557,}, + {1,61,28,1,11,2,1,3,11,1,1,2,11,1,1,1,11,7,1,1,11,1,1,1,17,1,16,1,12,1,11,1,1,1,16,1,11,1,1,1,11,4,17,1,1,2,11,4,1,2,16,1,9,1,13,1,30,2,29,1,30,1,26,1,30,1,28,4,29,1,30,1,26,1,13,1,26,2,30,1,28,4,29,1,26,1,25,1,26,1,30,2,29,1,30,1,29,1,30,1,26,3,13,1,26,1,30,1,13,1,25,1,9,1,13,3,9,3,15,1,9,1,15,2,9,7,15,5,14,2,15,1,14,3,15,2,9,4,25,1,13,1,30,1,29,1,28,2,9,1,14,1,9,1,26,1,13,2,26,4,29,1,28,2,29,1,28,2,29,2,28,8,29,1,26,2,30,1,26,2,13,1,26,5,29,1,26,1,29,1,28,3,29,2,28,2,29,1,28,17,26,2,28,3,29,1,13,3,30,1,28,12,26,1,9,1,15,1,14,3,15,1,25,1,29,1,28,29,26,1,28,3,29,1,28,7,29,1,9,2,26,1,13,2,30,2,25,1,26,1,29,1,30,1,28,3,13,1,26,1,28,3,26,2,25,2,26,1,28,1,26,2,28,1,26,2,28,3,29,1,28,16,29,1,26,1,28,17,29,1,30,1,28,7,29,1,28,15,26,1,9,1,26,1,28,2,26,1,28,4,29,1,28,5,6,1,29,1,28,1,17,1,16,1,28,2,11,1,28,1,1,556,}, + {1,59,28,2,12,1,1,1,11,1,1,1,11,18,17,2,11,2,12,2,17,1,12,1,16,1,12,1,11,2,1,2,11,1,1,1,11,1,17,1,11,2,8,1,30,1,28,2,29,4,30,1,29,1,28,2,29,1,30,1,26,3,13,1,29,1,28,4,29,1,30,1,25,1,13,1,29,2,30,1,29,1,30,1,29,1,26,2,30,1,26,2,30,2,26,1,9,4,25,1,9,1,15,3,9,3,15,1,14,1,15,1,9,1,15,3,14,2,15,5,9,6,13,2,25,1,9,3,13,2,28,1,30,1,9,1,15,1,25,1,30,1,13,1,9,3,25,1,26,1,29,1,28,9,29,1,28,5,26,1,13,1,26,1,29,1,28,32,29,1,28,2,29,1,26,1,29,1,28,2,13,1,25,1,15,1,11,1,1,4,11,8,1,2,11,1,14,1,9,1,26,1,28,34,29,1,28,2,29,1,30,1,29,2,28,6,9,2,26,3,13,3,30,2,26,1,28,3,26,2,28,1,26,1,25,1,26,2,25,1,26,3,9,1,26,2,29,1,26,2,29,1,28,12,29,1,28,6,26,2,28,16,29,1,28,23,29,1,28,1,27,1,25,1,26,1,28,1,29,1,28,5,29,2,28,3,6,1,28,2,6,1,11,1,28,2,1,1,28,1,1,556,}, + {1,60,9,1,1,1,11,1,1,1,11,2,12,1,11,9,1,2,11,1,16,1,11,1,12,1,11,2,17,1,16,1,9,1,1,1,12,1,17,1,11,1,12,1,9,1,11,1,1,1,17,1,12,1,11,2,17,2,8,1,28,4,29,2,28,3,29,1,30,1,29,1,28,1,29,1,26,1,13,1,26,1,30,1,28,4,29,1,30,3,13,1,29,1,28,2,30,1,29,3,26,2,29,1,30,1,13,1,26,2,13,1,9,1,15,1,14,1,15,1,13,3,25,2,9,4,15,1,14,1,15,11,9,4,8,1,13,1,25,1,13,3,26,4,29,1,15,1,9,1,13,1,30,1,13,1,15,1,9,1,13,1,26,2,29,4,26,2,29,4,26,1,29,1,28,4,29,2,28,18,29,1,28,15,29,1,28,2,29,1,26,1,28,3,26,1,11,3,1,3,11,1,1,5,11,2,14,1,15,1,9,1,26,1,29,1,28,43,29,1,28,3,29,1,28,2,13,2,9,2,26,2,13,1,26,3,28,1,29,2,28,2,30,1,28,1,26,3,9,1,26,3,9,1,26,1,28,14,29,1,30,1,28,11,26,1,29,1,28,5,29,1,30,1,29,1,28,14,29,1,28,16,26,1,25,1,26,2,28,7,29,1,28,5,6,1,29,1,28,1,12,1,6,1,28,2,7,1,28,1,1,555,}, + {1,59,28,1,1,1,11,1,1,1,11,2,16,3,9,1,16,1,17,2,11,5,1,1,11,1,16,1,11,1,17,2,11,5,1,2,11,2,1,1,11,1,1,1,11,1,12,1,1,1,12,1,11,1,15,1,28,2,29,2,28,7,26,1,30,1,29,6,28,3,29,1,30,2,26,2,30,2,26,1,30,4,26,2,30,2,26,4,13,2,15,2,13,4,9,5,8,1,9,1,14,1,11,1,14,1,15,1,9,1,15,2,9,2,15,2,9,7,25,2,13,1,30,1,26,2,30,1,26,3,9,1,15,1,9,1,13,2,26,6,29,1,30,1,26,1,29,6,28,5,29,2,28,19,29,1,28,15,29,3,28,3,25,1,1,5,11,4,14,1,15,1,9,2,25,1,30,1,28,47,29,2,28,4,29,1,28,2,13,1,9,1,25,1,13,1,26,2,13,1,26,2,30,2,29,1,28,4,29,1,26,1,25,1,9,1,26,3,9,1,26,1,28,16,29,1,28,11,30,1,29,2,28,3,29,1,28,3,29,1,28,15,29,1,28,1,29,1,28,1,29,1,30,1,28,1,29,1,28,7,26,4,28,5,29,1,28,7,29,1,28,1,9,2,28,4,1,555,}, + {1,58,28,1,11,1,1,2,11,1,1,1,11,1,17,1,12,2,16,2,17,1,11,3,1,1,11,4,16,1,9,1,12,1,11,1,17,1,12,1,11,2,1,1,11,1,12,1,17,1,1,2,11,1,17,1,11,2,1,1,17,2,13,1,28,3,29,4,28,3,29,3,26,2,29,1,28,5,29,1,30,2,26,2,13,1,30,1,29,5,30,3,29,2,30,1,26,1,30,3,13,1,9,2,26,1,13,1,8,1,13,1,26,1,9,6,15,1,14,1,15,1,9,6,15,2,9,6,13,1,25,2,13,1,26,5,29,1,26,1,9,1,15,1,25,1,26,3,13,1,26,1,29,1,28,15,30,1,26,1,28,33,29,2,28,1,29,2,28,3,11,1,1,1,11,1,1,1,11,4,14,1,15,1,9,1,29,2,28,55,29,1,28,4,29,1,9,1,13,1,26,2,13,2,26,2,30,1,28,1,30,1,29,1,28,3,26,1,25,1,26,1,25,1,26,1,29,1,26,2,29,1,28,16,29,1,28,29,29,1,28,15,30,1,28,3,29,1,28,2,26,3,27,1,29,1,28,2,29,1,28,9,29,1,28,1,6,1,16,1,28,4,1,555,}, + {1,58,29,1,1,3,11,1,1,1,11,2,17,2,11,2,1,2,11,6,12,1,9,1,16,1,17,1,11,2,17,1,11,4,16,1,11,4,16,1,11,1,1,1,11,2,16,1,28,6,29,2,28,3,30,1,29,1,26,1,13,2,29,1,28,5,29,3,30,1,26,2,30,1,29,1,28,4,29,6,30,4,26,1,9,2,26,1,30,1,26,1,13,1,25,1,9,6,15,1,16,1,9,12,25,1,9,2,13,4,26,1,13,2,26,1,13,5,26,1,13,2,26,1,30,1,29,1,28,16,26,1,30,1,28,32,29,4,28,3,13,1,11,1,1,2,11,5,15,1,9,1,13,1,30,1,29,2,28,50,29,1,28,4,29,1,28,5,9,1,25,1,13,1,30,1,26,5,30,2,29,1,28,3,29,1,25,2,26,1,28,2,26,3,28,16,29,2,28,28,29,1,28,8,29,1,28,7,29,1,28,2,29,1,28,2,26,1,27,1,26,1,9,2,28,3,29,1,28,5,29,1,28,5,9,1,28,1,29,1,28,2,1,555,}, + {1,57,28,1,11,2,1,1,11,3,12,1,17,1,16,1,9,1,16,1,9,1,10,1,16,1,1,2,11,4,12,1,9,1,11,5,1,1,12,1,7,1,12,1,17,1,11,3,1,1,12,1,9,1,1,1,11,2,8,1,28,3,29,1,28,2,29,2,28,2,29,1,26,1,28,1,29,1,26,1,30,1,28,3,29,1,28,6,29,2,26,1,30,1,28,4,29,1,28,1,29,7,30,1,29,1,9,2,26,1,29,1,26,1,25,1,9,1,25,4,9,12,13,1,25,1,9,2,25,1,9,2,13,1,30,1,26,3,13,10,30,1,28,52,29,1,30,1,29,1,28,4,15,1,1,3,11,1,1,1,11,3,14,1,9,1,26,1,30,1,29,1,26,2,29,1,28,49,29,1,28,5,29,1,28,1,29,1,28,2,29,1,9,1,13,1,26,1,13,3,26,2,13,1,29,1,28,4,29,1,9,1,26,1,28,3,26,2,25,1,28,15,29,2,28,9,29,1,28,3,13,1,28,9,29,1,28,14,29,1,28,3,29,2,28,8,26,1,25,1,26,2,15,1,26,1,28,2,29,2,28,4,29,1,28,5,9,1,6,1,28,1,29,1,28,1,1,555,}, + {1,57,7,1,1,2,11,4,1,2,11,3,17,1,16,1,11,9,1,2,11,2,1,2,12,1,6,1,16,1,11,3,1,2,17,1,28,1,9,1,12,1,11,1,29,1,28,3,29,1,30,1,29,2,28,3,29,1,30,1,29,1,30,1,26,1,13,1,26,1,29,1,28,8,29,2,26,2,28,6,29,8,26,1,25,2,26,2,25,1,9,2,25,6,9,9,25,1,13,2,9,2,25,1,9,2,13,1,30,1,13,1,26,2,13,7,26,1,28,53,29,1,28,3,29,1,28,2,30,1,14,1,1,2,11,2,1,1,11,2,14,1,15,1,9,1,13,1,26,1,30,2,29,2,28,53,29,1,28,2,29,1,28,2,29,1,28,2,29,1,13,2,9,2,15,1,13,1,29,6,28,1,26,1,9,1,28,1,29,1,26,3,28,1,26,1,28,15,26,1,29,4,28,1,29,1,26,1,29,1,28,6,13,1,28,17,29,1,28,7,29,1,28,3,29,2,28,5,29,1,28,2,26,2,28,1,26,1,9,1,28,6,29,1,28,7,29,1,8,1,28,1,29,1,28,1,1,555,}, + {1,55,28,1,6,1,1,1,11,3,1,1,11,1,1,1,11,7,1,1,12,1,11,1,1,2,17,1,16,1,11,1,1,3,11,2,1,2,11,1,16,1,11,1,1,1,11,1,1,2,17,1,11,1,9,1,7,1,15,1,14,1,28,3,29,3,28,2,29,2,30,3,26,4,30,1,29,1,28,7,29,6,28,5,29,8,26,2,25,1,26,3,9,2,27,1,25,3,26,2,13,1,9,8,25,1,13,2,9,2,25,3,26,1,13,4,25,1,13,1,26,2,9,1,26,1,28,52,29,3,28,2,29,1,28,3,30,1,1,2,11,1,1,2,11,3,14,1,9,1,26,1,30,1,26,2,29,1,28,53,29,2,28,7,29,1,28,3,29,2,26,2,9,1,26,1,29,2,30,2,29,2,26,2,29,2,26,1,9,1,25,1,26,3,28,12,29,1,28,2,26,1,30,1,26,2,29,1,28,2,26,2,28,3,29,1,28,2,26,1,28,6,29,1,28,3,29,1,28,15,29,1,28,3,30,1,28,8,26,2,28,2,25,1,28,2,29,1,28,2,29,1,28,5,29,2,28,2,9,1,28,1,29,1,28,2,1,554,}, + {1,54,28,1,29,1,1,2,11,1,12,1,1,1,11,3,1,3,11,7,1,2,11,1,16,1,17,1,1,1,11,8,1,4,11,1,16,1,17,1,1,1,16,1,15,1,9,1,28,3,29,1,30,1,28,2,29,1,30,1,26,2,30,3,29,2,28,11,29,5,28,5,29,4,26,5,25,1,9,1,25,1,29,1,26,1,9,2,25,2,9,1,25,1,26,1,30,1,26,1,13,4,25,1,9,1,25,1,13,1,25,2,26,1,25,1,9,1,25,1,13,5,26,2,13,2,30,1,29,2,28,52,29,3,28,6,26,1,11,1,1,2,11,4,14,1,15,1,13,1,26,1,28,2,29,2,28,55,29,1,28,7,29,2,28,2,26,1,29,1,28,2,13,1,26,1,30,1,26,2,29,2,26,1,25,1,29,1,28,2,26,6,28,12,29,1,28,2,26,1,30,2,29,1,28,4,30,2,28,2,29,1,28,2,30,1,29,1,28,4,26,2,28,3,29,2,28,6,30,1,28,11,29,1,28,2,29,1,28,6,26,1,28,1,26,2,28,2,29,1,28,12,8,1,6,1,28,4,1,553,}, + {1,53,28,1,29,1,1,1,11,2,1,2,11,2,1,1,11,7,1,1,11,1,1,1,11,2,1,2,11,2,1,1,11,5,17,1,12,1,16,1,1,1,17,1,11,1,1,1,11,2,16,1,11,2,9,1,30,1,13,1,30,2,28,3,29,1,26,3,30,1,29,1,28,2,29,1,30,2,28,8,29,5,30,2,28,7,29,1,26,3,25,1,9,1,25,2,9,1,27,1,26,2,25,1,26,1,9,3,25,1,26,1,29,2,26,1,13,1,30,1,26,1,13,1,25,1,13,2,25,1,13,1,26,1,13,1,9,1,25,1,26,2,25,1,26,2,30,2,13,2,30,1,29,1,28,51,29,2,28,2,29,1,28,1,29,1,28,3,9,1,1,2,11,1,1,2,11,2,15,1,13,1,28,63,30,1,29,1,28,1,29,1,28,1,29,2,28,3,26,1,15,1,13,1,29,1,28,1,13,1,26,2,13,1,30,1,29,1,26,1,13,1,26,1,28,3,9,1,26,4,28,13,29,1,28,2,26,1,30,1,28,7,26,1,28,5,30,1,28,5,26,1,25,1,28,3,29,2,28,6,30,1,28,5,29,1,28,5,30,1,28,11,26,1,28,5,30,1,28,9,30,1,29,1,8,1,28,2,7,1,28,2,1,552,}, + {1,52,28,2,1,2,11,1,1,1,11,1,17,1,11,1,1,1,11,5,16,1,9,1,11,1,1,1,11,1,1,1,11,1,1,2,11,3,1,1,11,1,1,1,16,2,17,1,29,1,28,1,12,1,11,4,17,1,11,1,15,1,30,3,29,2,30,1,13,1,26,1,29,1,30,1,25,1,9,1,30,1,28,7,30,1,26,1,28,6,29,1,28,2,29,2,30,1,29,1,30,1,29,1,28,6,26,5,25,1,27,1,25,1,9,2,27,1,26,2,27,1,26,5,29,1,30,1,29,1,25,1,30,1,26,1,13,1,30,1,26,1,13,1,26,1,30,1,26,1,13,1,25,2,26,2,13,1,30,1,13,2,29,1,30,1,13,1,26,1,28,28,29,1,28,22,29,1,28,2,29,3,28,3,29,1,15,1,1,3,11,3,14,1,25,1,29,1,28,65,13,1,28,1,29,1,30,1,29,3,28,3,9,2,28,2,29,1,13,2,30,1,13,1,28,1,26,1,25,1,28,3,29,1,25,1,26,5,28,11,29,1,28,2,30,1,29,1,28,9,29,1,28,5,29,1,28,4,26,2,28,3,29,2,28,7,30,1,28,7,29,1,28,2,29,1,28,2,29,1,28,21,29,1,28,4,8,2,28,2,12,1,7,1,28,1,1,551,}, + {1,52,28,1,1,1,11,1,1,2,11,1,12,1,11,9,16,1,17,1,1,3,11,1,1,1,11,6,17,1,16,1,12,1,9,1,29,1,6,1,12,1,1,2,11,1,16,1,11,1,15,1,29,1,28,7,29,1,13,2,25,1,13,1,29,1,28,7,29,2,28,8,29,4,30,1,13,2,28,4,29,2,26,2,27,1,26,2,25,3,9,1,25,1,26,4,25,1,27,2,25,1,26,2,29,1,28,1,13,1,26,1,30,2,29,1,30,1,26,2,13,1,26,1,30,1,26,5,29,1,26,4,13,1,29,1,28,52,26,2,29,1,28,3,26,1,14,1,1,3,11,2,1,1,14,1,9,1,26,1,28,67,29,1,30,1,28,3,29,1,28,4,13,1,15,1,29,1,28,1,26,2,30,1,26,2,28,2,14,1,9,1,28,2,29,1,9,1,26,5,28,11,29,1,28,1,29,1,13,1,29,1,28,3,29,2,28,6,29,1,28,3,13,1,29,1,28,3,26,2,28,4,30,1,28,15,29,1,28,27,29,1,30,1,28,3,6,1,7,1,6,1,29,1,16,1,7,3,28,1,1,549,}, + {1,51,28,1,1,3,11,1,17,1,16,1,17,1,1,1,11,1,12,1,11,3,12,2,11,3,1,2,11,1,1,2,11,1,17,1,11,4,9,1,10,1,16,3,17,1,12,1,1,1,11,1,16,1,15,1,11,1,9,1,28,9,30,1,13,2,30,1,28,7,29,1,28,2,26,1,28,6,29,4,30,1,29,2,13,2,28,1,29,1,28,1,26,3,27,2,26,4,27,1,25,1,27,2,26,3,25,1,9,1,25,1,26,3,29,1,28,1,30,1,13,2,26,2,30,1,29,1,30,4,26,3,30,1,29,2,13,1,25,1,13,1,30,1,28,51,29,1,26,2,28,5,15,1,11,1,1,2,11,1,1,2,11,1,15,1,26,1,28,2,29,1,28,3,29,1,26,2,29,1,28,60,26,1,29,1,28,7,29,1,9,1,13,1,29,1,25,1,29,2,30,1,28,3,15,1,14,1,29,1,28,1,26,1,9,1,26,5,28,11,29,1,28,1,30,1,13,1,28,3,29,3,28,10,29,2,28,3,26,2,28,4,30,1,28,15,30,1,28,28,29,1,28,7,9,1,12,1,6,1,16,2,6,1,28,2,1,546,}, + {1,50,28,1,1,2,11,1,1,2,12,2,11,8,12,2,11,1,1,2,11,2,1,2,11,1,16,1,11,3,1,1,16,1,9,1,12,1,17,1,1,2,11,1,1,1,16,1,15,1,14,1,8,1,28,2,29,1,30,1,28,6,29,1,26,2,30,1,28,7,29,1,28,2,30,1,29,1,28,5,29,2,28,1,30,2,28,2,9,2,28,1,29,1,28,1,26,2,27,4,26,4,27,1,25,2,9,1,25,1,26,2,25,1,26,4,29,2,30,1,13,2,30,1,26,1,30,1,29,1,26,1,29,2,26,2,30,2,26,2,30,1,26,2,29,1,28,34,29,1,28,16,29,1,26,1,28,5,13,1,1,3,11,3,1,1,14,1,13,1,29,2,28,4,29,1,26,1,25,1,13,1,26,1,28,61,30,1,29,1,28,3,29,3,28,2,26,1,9,1,26,1,13,1,29,3,28,2,30,1,13,1,15,1,9,1,29,2,26,6,28,12,29,1,26,1,30,1,28,3,29,1,28,5,29,1,28,10,26,1,29,1,26,1,29,1,28,3,29,1,28,15,29,1,28,3,29,2,28,13,29,2,28,16,9,1,12,1,16,1,9,1,8,2,29,2,28,2,1,544,}, + {1,49,28,1,1,2,11,2,1,1,9,1,17,1,1,2,11,2,1,1,11,9,1,1,11,1,1,2,11,1,16,1,17,1,11,1,17,1,11,1,1,2,11,3,1,2,16,2,9,1,13,1,28,3,29,2,28,5,30,1,9,1,13,3,29,1,28,7,29,1,28,2,26,1,30,1,28,5,29,1,28,1,30,1,29,2,28,1,25,1,13,1,28,2,29,1,26,2,27,4,26,4,25,1,27,1,25,1,9,2,26,1,29,1,26,2,29,1,26,2,29,1,30,1,13,1,9,1,26,1,29,2,30,1,29,1,26,1,30,2,29,3,30,1,26,1,13,1,30,1,28,52,29,3,28,4,30,1,14,1,1,2,11,5,15,1,26,1,28,5,26,3,13,1,26,1,28,67,29,1,30,1,29,1,28,4,15,1,9,1,26,4,28,3,26,1,15,1,14,1,29,1,28,1,26,6,28,9,29,3,13,2,29,1,28,3,29,1,28,5,29,1,28,4,29,1,28,3,29,2,26,1,28,1,26,2,28,19,29,1,28,3,29,2,28,16,29,1,28,4,29,1,28,2,29,1,28,3,29,2,28,1,9,1,29,1,17,1,16,2,10,1,28,1,6,1,9,1,29,1,28,2,1,542,}, + {1,48,28,1,12,1,1,2,11,1,1,1,11,1,7,1,29,1,17,1,1,1,11,2,1,1,11,2,1,1,11,1,17,1,11,1,1,1,11,2,1,4,11,6,1,2,11,5,29,1,16,1,30,1,28,2,29,3,28,2,29,1,28,3,30,1,9,1,13,2,26,1,29,1,28,5,29,1,28,1,29,1,28,2,30,1,13,1,30,2,29,1,28,1,29,4,30,1,29,1,28,1,26,1,25,1,28,2,26,3,27,5,26,1,9,2,25,1,27,1,26,1,25,3,26,2,29,2,30,2,29,1,30,1,25,1,9,1,13,1,26,3,29,2,30,2,29,1,30,1,26,2,29,1,28,5,29,2,28,45,29,3,28,5,9,1,1,3,11,3,15,2,25,1,26,1,28,3,29,1,26,1,13,1,25,1,13,1,29,1,28,67,26,1,29,1,28,2,29,1,28,1,30,1,29,1,28,1,9,2,30,1,13,1,26,3,28,2,26,1,15,2,26,1,28,1,26,3,25,2,26,2,28,8,29,1,28,1,29,1,9,2,28,4,29,1,28,14,26,3,28,1,26,1,25,1,26,1,28,41,29,1,28,3,29,1,28,2,29,1,28,6,9,1,6,1,7,1,10,1,9,3,16,1,29,1,6,1,9,1,28,2,1,541,}, + {1,44,28,1,1,2,28,1,8,1,1,1,11,1,1,2,16,1,1,1,9,1,28,2,11,1,1,1,11,2,1,1,11,1,1,1,11,1,12,1,11,1,1,2,11,1,1,2,11,2,1,2,11,1,1,1,11,5,1,2,11,1,16,1,8,1,9,1,28,3,29,1,28,2,29,7,28,1,29,3,28,6,29,1,28,1,29,1,28,3,9,1,13,1,30,5,26,1,29,1,26,1,29,1,28,1,26,1,25,1,26,3,27,8,9,1,25,1,27,1,26,3,25,1,9,1,13,1,29,1,30,1,26,1,30,2,13,3,9,2,25,1,26,3,29,2,30,1,26,2,30,1,29,1,28,5,29,2,28,45,29,3,28,4,25,1,1,2,11,1,1,2,11,1,15,1,9,1,13,1,26,2,29,1,28,3,9,1,15,1,25,1,28,70,26,1,30,1,28,3,30,1,29,2,28,1,13,1,15,1,13,2,26,1,30,1,13,1,30,1,28,2,9,2,25,1,29,2,26,3,25,1,26,2,28,8,29,1,28,1,29,1,25,1,13,1,28,3,29,3,28,14,29,1,26,1,28,1,26,2,29,1,28,4,29,1,28,14,29,1,28,13,29,1,28,8,29,1,28,10,29,1,28,1,9,1,17,1,28,1,8,1,11,1,8,1,6,1,16,1,7,1,6,3,7,1,28,3,1,538,}, + {1,46,28,1,29,1,1,2,11,1,1,1,9,1,10,1,11,2,28,2,6,1,1,1,11,2,1,1,11,2,1,2,11,1,1,2,11,1,1,1,11,1,9,1,10,1,17,1,11,6,1,2,11,3,9,2,28,3,29,3,30,1,29,3,28,1,29,2,28,5,29,1,30,1,29,1,28,1,29,2,28,1,29,1,28,4,9,1,29,1,28,2,30,1,26,1,13,2,26,1,29,1,26,6,25,1,9,1,27,3,25,1,27,2,25,1,26,3,25,2,26,1,25,1,9,2,29,1,30,1,13,2,26,1,13,1,9,2,25,2,26,1,28,1,29,1,13,2,30,1,26,1,13,1,29,1,28,46,29,1,28,4,29,4,28,5,11,1,1,3,11,2,14,1,9,1,26,1,30,1,29,1,28,4,29,1,9,1,15,1,9,1,29,1,28,1,30,1,29,1,28,70,29,2,28,3,29,1,30,1,15,1,9,1,13,2,26,1,30,1,13,1,28,2,15,2,25,1,29,2,26,6,29,1,28,6,29,1,30,1,29,2,13,2,29,1,30,1,28,1,29,3,28,5,29,1,28,8,29,1,26,1,28,1,26,1,28,1,26,2,28,2,29,1,26,1,28,7,26,1,28,3,29,1,28,2,29,1,28,4,29,1,28,28,6,1,28,1,29,1,9,1,16,1,28,1,9,1,16,1,8,1,11,1,7,2,16,1,7,1,28,1,6,1,16,2,28,2,1,536,}, + {1,46,28,1,1,3,11,3,17,2,11,1,28,3,9,1,1,2,11,1,1,2,11,2,1,1,11,3,9,1,29,1,28,2,11,1,1,1,11,4,1,1,11,2,1,1,12,1,9,1,11,1,28,4,29,1,26,1,30,1,28,2,30,1,29,2,30,1,29,1,28,4,29,1,28,2,26,1,13,1,30,1,28,1,30,1,29,1,28,1,30,1,26,1,29,1,30,1,28,1,30,2,29,3,30,1,26,2,25,1,26,2,25,1,26,3,27,1,26,1,27,1,9,1,27,1,26,1,25,2,26,1,9,1,26,1,25,1,9,3,29,1,28,2,29,1,13,1,9,1,8,1,13,2,25,2,9,1,29,1,28,1,29,1,9,1,25,1,29,1,26,1,29,1,28,10,30,1,26,1,29,1,28,33,29,1,26,2,29,3,26,1,29,1,28,5,25,1,1,3,11,1,1,1,11,1,14,1,9,1,30,1,29,1,28,1,29,3,26,1,25,1,15,1,14,1,25,1,29,1,28,73,29,1,30,1,28,2,29,2,28,2,9,1,15,1,25,1,26,3,29,1,28,2,30,1,9,1,25,1,26,1,29,4,26,2,29,1,28,6,29,2,30,1,29,1,13,1,26,1,30,1,26,1,28,2,29,2,28,5,29,1,26,1,28,9,26,1,25,1,9,1,28,1,29,1,26,1,28,2,29,1,26,1,28,6,29,1,30,1,28,2,30,1,28,8,29,1,28,1,29,1,28,13,29,1,28,13,6,1,29,1,28,1,9,2,7,1,9,2,16,1,28,1,8,1,17,1,9,1,16,1,29,1,28,1,9,1,8,2,9,1,7,1,10,1,28,6,1,527,}, + {1,45,28,1,1,3,11,8,9,1,28,2,9,1,1,2,11,1,1,1,7,1,29,1,11,1,1,1,11,2,12,2,16,2,1,2,11,4,1,2,11,1,16,1,14,1,11,1,9,1,28,3,29,1,28,1,29,3,28,1,29,2,30,1,26,1,29,1,28,8,26,2,29,1,30,1,29,2,13,1,9,1,26,1,28,1,29,2,28,2,29,1,28,3,29,1,25,1,26,1,25,2,26,3,27,1,26,1,27,1,25,1,26,2,25,1,9,1,26,1,25,1,9,1,15,2,25,1,13,1,30,2,13,6,25,3,9,1,13,1,28,2,13,1,9,1,26,1,13,1,28,9,26,1,9,2,26,1,28,34,29,5,28,6,26,1,11,1,1,2,11,1,1,2,11,1,15,1,25,1,30,1,29,1,28,2,29,2,25,1,15,3,26,1,29,1,28,75,30,1,28,2,29,2,28,1,29,1,25,1,15,1,9,1,26,4,29,1,28,2,26,2,28,2,29,1,26,2,29,3,28,3,26,2,13,1,26,1,29,1,28,2,30,1,26,1,29,1,30,1,28,2,29,2,28,5,29,1,28,10,26,3,28,1,26,2,29,1,28,1,29,2,28,1,30,1,29,1,28,8,29,1,28,1,29,1,28,35,29,1,30,1,28,1,29,1,11,1,10,1,8,1,16,1,11,1,7,2,12,1,10,1,9,2,8,2,6,1,28,1,7,2,6,1,7,1,6,6,28,3,1,5,28,1,1,517,}, + {1,44,28,1,1,3,11,8,1,2,17,1,28,2,9,1,1,3,6,1,28,1,11,1,1,1,11,3,1,1,11,1,12,1,11,2,1,2,11,4,16,1,15,1,11,1,14,1,29,1,28,2,30,1,29,3,28,1,30,1,29,3,26,2,28,6,29,1,28,2,29,1,13,1,28,1,30,1,29,3,26,2,28,1,29,1,28,3,29,1,28,4,26,1,9,3,26,3,15,1,26,3,25,1,26,3,25,3,15,4,8,1,9,1,16,1,9,1,13,4,9,5,29,1,28,1,29,1,15,1,25,1,13,1,28,7,29,1,26,1,13,1,26,1,28,38,29,1,28,4,29,1,28,2,25,1,11,1,1,2,11,1,1,2,11,1,9,1,26,1,28,4,29,1,26,1,25,1,15,1,14,1,15,1,26,1,28,77,29,1,28,3,29,3,13,1,14,1,15,1,29,1,26,3,28,3,29,1,25,1,26,1,28,2,29,1,28,2,29,2,26,1,30,1,26,2,30,1,29,2,28,3,29,1,13,1,28,5,29,1,28,4,29,2,28,10,26,3,28,1,26,2,28,2,26,1,28,3,30,2,28,1,30,1,28,7,29,1,28,2,29,1,28,3,29,1,28,23,29,1,28,5,30,1,28,2,9,5,15,1,8,1,10,1,7,1,6,1,9,1,10,1,6,2,29,1,28,8,10,1,9,1,6,1,29,2,28,3,1,520,}, + {1,43,28,1,11,1,1,2,11,8,1,1,11,1,1,2,16,1,28,1,6,1,11,1,1,2,16,1,9,1,11,1,1,1,11,1,1,3,11,1,16,1,12,1,11,1,1,1,11,4,16,2,11,1,15,1,30,1,28,1,29,1,30,1,29,1,28,1,30,1,26,1,29,1,26,2,29,1,28,1,30,1,29,1,28,5,29,1,30,1,28,3,26,1,28,1,30,1,28,4,25,1,28,2,26,5,29,3,25,1,9,2,27,1,26,2,27,1,15,1,26,1,29,1,26,1,25,2,26,2,9,2,13,2,8,1,14,1,11,1,9,1,8,1,9,2,13,3,25,1,9,5,29,1,28,1,29,1,15,1,13,1,26,1,28,53,29,1,28,2,9,1,1,2,11,1,1,3,14,1,25,1,29,1,28,3,29,1,26,2,9,1,15,2,25,1,29,1,28,78,29,3,28,1,29,3,13,1,14,2,29,1,26,2,30,1,28,4,26,1,29,1,28,3,29,1,26,1,25,1,26,3,30,1,28,7,29,1,13,1,29,1,28,2,29,1,28,1,29,1,28,4,26,1,28,11,26,1,9,1,26,1,28,1,26,2,28,8,29,1,28,11,29,1,28,3,29,1,28,5,29,1,28,8,29,1,28,14,29,1,28,1,13,1,30,1,9,3,28,1,7,1,15,1,8,2,7,1,8,1,7,2,9,3,16,1,29,1,10,1,16,1,7,1,6,2,28,2,6,2,29,1,10,1,8,1,28,3,1,518,}, + {1,43,12,1,1,2,11,1,1,1,11,7,1,2,17,1,11,1,1,1,11,1,12,1,11,3,1,3,11,2,1,1,11,5,1,1,11,2,1,1,11,3,15,1,16,1,29,1,28,1,30,1,29,3,28,1,30,1,13,1,26,1,13,1,29,1,28,2,29,2,28,5,29,1,30,1,29,1,28,1,29,2,28,1,29,1,28,3,29,1,9,1,28,1,29,1,26,1,25,3,26,4,27,1,26,4,27,1,26,2,29,1,26,1,25,2,26,2,9,1,13,1,25,2,26,1,29,1,13,1,15,1,8,1,30,1,25,2,13,1,25,3,9,4,30,1,28,2,30,1,15,1,13,1,26,1,28,27,29,1,28,19,29,1,28,3,30,1,29,1,28,2,15,1,1,4,11,2,9,1,26,1,28,3,29,1,26,3,25,1,9,2,26,1,29,1,28,79,30,1,29,6,13,1,14,2,28,1,30,1,26,1,29,3,28,3,26,6,29,3,28,9,29,1,9,1,29,1,28,2,30,1,29,2,28,2,29,1,28,1,30,1,28,11,26,1,9,1,29,1,28,1,26,1,28,1,29,1,26,1,28,9,29,1,28,6,29,2,28,5,29,1,28,13,29,1,28,16,9,2,25,1,8,1,14,1,28,2,16,1,9,6,8,1,9,2,16,1,6,1,7,1,11,1,16,2,7,2,8,1,9,1,7,1,28,1,6,1,9,1,16,1,6,1,7,1,28,2,1,516,}, + {1,42,16,1,1,3,11,5,17,2,11,2,1,2,11,2,1,2,11,2,17,1,11,1,1,4,11,1,1,1,11,7,17,1,1,1,11,3,9,1,28,3,29,1,28,4,29,1,13,1,26,1,13,1,28,3,29,2,28,7,29,3,28,2,29,1,28,3,26,2,28,1,29,1,26,3,25,1,9,1,26,8,25,1,26,2,29,2,25,2,26,1,13,1,9,1,13,1,30,1,26,1,13,1,30,2,8,1,29,1,30,1,8,1,9,1,25,1,9,6,8,1,29,1,28,2,13,1,9,2,13,1,28,28,29,2,28,24,14,1,1,2,11,2,1,1,11,1,9,1,28,4,29,1,26,3,25,1,9,1,25,1,26,1,28,1,29,2,28,78,30,1,29,5,30,1,9,1,14,1,15,1,29,1,26,2,30,1,29,1,28,1,29,1,26,2,15,1,25,1,9,2,26,1,28,2,29,1,28,4,29,1,28,6,30,1,29,1,28,2,29,2,30,1,28,2,29,3,28,11,26,1,9,1,28,2,26,1,28,2,11,1,29,1,28,3,29,1,28,11,29,1,28,3,29,1,28,33,7,1,9,1,13,1,9,3,28,2,15,1,9,3,16,2,7,1,9,1,8,2,6,1,29,1,16,3,8,1,9,1,12,1,17,2,16,1,29,2,9,2,8,1,29,1,28,2,1,515,}, + {1,41,9,1,1,2,11,2,1,1,12,1,11,2,12,2,11,2,1,1,11,2,1,3,11,5,1,1,11,1,1,2,11,5,12,1,10,1,17,1,1,1,12,1,11,3,9,1,28,3,30,1,28,4,29,1,30,1,13,1,30,1,28,4,29,1,28,1,30,1,26,1,28,4,29,1,30,2,29,1,28,3,29,2,26,3,29,1,28,1,26,3,27,1,25,1,27,1,26,7,9,1,26,1,25,1,29,1,28,1,26,1,13,1,25,1,13,1,26,1,13,1,29,1,30,1,13,1,30,1,13,1,8,1,28,1,29,1,13,1,9,1,25,1,9,6,13,1,28,3,9,3,26,1,28,29,26,1,29,1,28,18,29,1,28,3,15,1,1,3,11,1,15,1,1,1,14,1,28,3,29,1,26,5,25,2,26,1,29,1,28,1,29,2,28,78,26,1,30,1,29,1,28,1,29,2,13,1,14,2,9,1,29,1,26,1,29,2,28,2,26,1,25,3,26,2,25,1,29,1,28,2,26,1,28,2,29,1,26,1,29,1,28,2,29,1,28,4,26,1,28,3,29,1,30,2,29,1,28,1,30,1,28,11,29,1,27,2,28,2,26,1,28,2,15,1,9,1,28,4,26,1,28,1,29,1,28,12,29,1,28,33,29,1,13,1,26,1,9,1,29,1,14,1,30,1,28,1,9,1,15,1,9,2,15,1,16,5,9,1,8,1,9,1,16,1,9,1,8,1,29,1,6,2,9,1,11,1,9,1,28,1,29,1,12,1,9,1,6,1,7,1,8,1,28,1,1,514,}, + {1,40,8,1,11,1,1,1,16,1,7,1,9,1,17,1,1,1,11,2,16,2,11,1,1,1,11,4,16,1,9,1,12,1,11,1,12,1,9,1,11,1,1,1,11,2,1,1,11,4,1,1,11,1,10,1,16,1,1,1,11,1,1,1,17,1,1,1,9,1,28,2,29,1,28,5,29,1,13,1,9,1,29,1,28,3,29,1,28,2,30,1,13,1,29,1,28,3,30,1,13,1,26,1,28,6,26,1,9,1,26,1,28,1,26,7,9,1,26,6,25,1,29,1,26,1,29,1,28,1,29,2,26,3,30,1,26,1,13,1,30,1,28,1,29,1,9,1,28,2,30,1,13,2,9,2,13,2,9,1,13,2,29,1,28,2,9,2,13,1,30,1,28,29,29,1,26,1,29,1,28,10,29,2,28,3,29,2,28,2,30,1,14,1,1,4,11,2,15,1,29,1,28,1,29,2,26,10,29,2,28,79,26,1,30,1,29,1,28,1,29,1,30,1,9,1,14,2,13,1,30,2,28,2,29,1,28,1,26,2,28,1,26,3,29,1,28,1,29,2,28,1,29,2,26,1,29,1,28,4,29,1,28,3,9,1,13,1,30,1,29,2,30,1,26,1,30,1,28,1,26,1,28,11,26,1,25,1,27,1,28,1,26,2,28,2,26,2,28,17,29,1,28,2,29,2,28,5,29,1,28,19,29,1,30,1,28,2,6,1,29,2,13,1,26,2,13,1,15,1,9,1,28,2,9,2,10,1,9,2,17,1,9,1,17,1,15,1,16,2,8,1,16,1,8,2,7,1,28,2,6,1,8,1,11,1,12,1,29,1,16,1,17,1,6,1,28,1,7,1,9,1,28,2,1,512,}, + {1,38,28,2,1,1,11,1,1,1,11,1,16,1,8,2,11,1,1,1,11,3,1,1,11,3,16,1,9,1,7,1,6,1,7,1,16,1,12,1,17,1,11,1,1,2,11,4,1,1,11,1,9,2,16,1,11,1,1,1,11,2,1,1,11,1,28,2,30,1,28,1,29,1,28,3,29,1,26,1,28,2,30,1,28,6,29,1,13,1,28,2,29,1,26,1,29,1,30,1,29,1,28,5,26,1,9,2,26,1,28,2,26,6,27,1,25,3,27,1,26,4,25,1,26,1,28,2,29,4,30,4,28,1,29,1,13,1,26,1,28,1,30,1,13,5,9,1,8,1,26,2,28,2,29,1,9,1,13,2,29,1,28,30,26,2,29,1,28,7,29,3,28,7,13,1,1,4,11,3,15,1,28,4,26,5,9,2,25,1,26,1,29,1,28,1,29,3,28,78,26,1,29,2,28,1,29,1,13,1,15,1,14,1,9,1,26,1,13,1,28,1,13,2,26,2,9,1,25,1,28,2,26,1,29,1,28,1,26,1,29,1,28,2,26,1,28,8,29,1,28,2,26,1,28,2,30,2,29,1,28,2,26,1,28,13,27,2,26,2,28,3,9,1,26,2,28,14,29,1,28,5,29,1,28,26,29,2,28,1,25,1,30,1,26,1,29,3,13,1,8,1,14,1,13,1,28,1,30,1,15,1,8,1,7,1,9,2,16,1,9,2,17,1,16,1,9,1,16,3,17,1,12,1,16,1,8,1,7,1,8,1,16,1,17,1,9,1,12,1,17,1,7,1,9,1,17,1,9,1,8,1,28,1,1,511,}, + {1,38,28,1,1,4,11,2,1,1,11,1,16,1,6,1,29,1,6,1,10,1,12,1,11,2,17,1,12,1,16,1,9,1,10,1,6,1,7,1,11,3,1,1,11,3,1,1,11,1,16,1,7,1,16,1,9,1,17,1,1,1,11,2,1,2,28,3,29,1,30,2,28,1,30,1,28,1,29,1,30,1,28,2,26,1,30,1,28,3,29,1,28,1,29,1,13,1,29,1,28,2,29,1,28,4,29,1,28,1,29,2,25,2,26,3,28,3,26,1,27,1,26,3,9,1,26,5,29,2,25,1,13,1,30,1,28,3,29,2,30,1,26,1,30,2,28,2,26,1,30,1,28,1,29,1,30,1,13,1,9,2,13,1,30,1,13,1,26,1,29,1,28,2,29,1,30,1,28,1,29,1,28,31,29,1,26,1,30,1,28,5,29,1,30,2,28,5,29,1,28,2,9,1,11,1,1,3,11,1,15,1,9,2,28,4,26,1,29,2,26,1,25,1,9,3,25,1,26,3,29,2,28,78,29,1,26,1,29,4,30,1,15,1,11,1,14,1,26,1,29,1,28,1,30,2,26,1,25,1,9,2,28,2,26,1,29,1,28,1,30,2,28,2,30,1,28,10,29,1,26,1,29,1,26,1,29,2,28,3,9,1,26,1,30,1,28,11,27,1,26,3,28,2,29,1,9,1,26,1,29,1,28,50,15,1,9,1,30,1,26,1,13,1,30,1,28,2,9,1,14,1,28,2,8,1,16,1,15,1,16,1,9,1,16,3,15,1,9,1,8,1,15,1,16,1,8,1,16,3,9,3,16,1,12,1,7,2,16,4,10,1,16,1,7,1,6,1,28,1,1,509,}, + {1,37,28,1,1,2,11,3,1,2,11,1,1,2,9,1,6,1,28,1,29,1,9,1,11,2,16,1,9,1,10,2,11,1,16,2,1,1,11,5,1,1,11,1,10,1,28,1,29,1,16,2,11,1,1,1,11,1,1,2,9,1,28,2,30,1,28,1,29,3,28,2,30,1,26,1,29,2,26,1,13,1,28,3,29,1,28,2,26,1,30,1,28,10,29,1,25,2,26,1,27,1,26,3,29,1,26,1,27,1,26,7,29,4,26,1,13,2,29,1,28,1,29,1,26,4,30,1,29,1,28,2,13,1,26,1,28,2,26,1,9,2,13,2,26,3,28,2,29,1,30,1,28,35,29,1,30,1,29,1,28,2,29,2,26,1,29,1,28,8,9,1,1,4,17,1,15,1,9,1,29,1,28,3,29,1,26,4,9,2,25,1,13,2,26,5,29,1,28,78,29,1,26,1,29,1,28,1,29,2,13,1,14,2,9,1,13,1,26,2,30,1,28,3,26,1,25,1,29,1,28,1,26,1,29,2,30,2,29,1,30,1,29,1,28,9,29,1,13,1,30,1,26,2,28,5,13,3,30,1,28,9,29,1,25,1,26,3,28,2,25,1,9,1,26,1,28,8,29,1,28,13,29,1,28,4,29,1,28,23,13,1,26,1,13,2,9,4,13,1,9,1,15,1,28,1,29,1,9,1,7,2,9,1,15,1,9,2,15,1,6,2,15,1,9,1,7,1,8,1,9,2,16,2,12,2,16,1,9,1,7,1,9,3,16,2,9,1,11,1,6,1,8,1,29,1,1,508,}, + {1,33,28,1,1,2,28,1,11,1,1,1,11,2,16,1,7,1,11,1,1,1,17,1,11,1,1,3,11,1,12,1,11,1,1,2,11,2,9,1,10,1,12,1,9,1,6,1,16,1,11,1,1,4,17,1,6,1,28,2,9,1,16,1,11,1,1,1,11,2,1,1,15,1,28,2,26,1,29,1,28,3,26,1,28,1,29,1,26,1,30,1,29,2,30,1,26,1,28,6,30,1,26,1,28,10,29,1,26,1,27,3,26,1,27,1,9,1,27,1,26,5,29,3,26,2,29,2,30,1,29,1,26,1,13,2,26,5,13,1,30,1,29,2,26,1,9,2,28,2,26,1,9,1,25,1,26,1,25,2,26,1,29,1,28,2,29,2,28,36,29,2,28,5,29,1,28,3,30,1,28,3,14,1,1,1,11,1,1,2,15,1,9,1,26,2,28,2,26,4,29,1,25,1,15,1,9,1,25,1,13,1,26,2,29,3,26,4,29,1,28,76,29,1,30,1,28,3,29,1,9,1,14,2,9,1,13,2,30,1,26,1,29,1,28,3,26,1,29,1,28,1,26,2,29,4,30,1,29,4,28,4,29,1,28,1,29,1,13,1,26,1,13,1,29,1,28,6,29,1,13,2,29,1,28,8,26,1,9,1,26,2,27,1,28,2,15,1,25,1,26,1,28,8,30,1,28,12,29,1,28,29,13,1,9,1,13,1,8,1,9,1,16,1,9,1,15,1,13,1,9,1,14,1,9,1,15,2,9,2,10,1,8,2,7,1,16,1,6,1,28,1,16,2,8,1,29,1,7,1,9,3,16,4,8,1,10,2,8,1,9,2,7,1,12,1,16,1,6,1,9,1,28,1,1,2,28,1,1,504,}, + {1,35,28,1,11,1,1,1,11,2,1,1,12,1,28,1,29,1,17,1,1,1,11,1,8,1,10,1,12,1,11,4,1,3,11,2,17,1,7,1,28,2,6,1,1,3,11,1,6,1,28,2,16,1,17,1,16,1,1,2,11,1,1,1,15,1,28,2,26,1,30,1,28,1,29,2,28,1,29,1,13,1,25,1,30,1,28,3,29,1,26,2,29,1,28,4,29,1,26,1,28,5,29,1,30,1,28,3,26,4,27,2,26,1,9,2,26,6,28,2,29,1,26,3,30,3,26,1,25,1,13,1,26,1,29,1,28,1,30,1,26,1,29,1,26,1,25,1,9,1,15,1,9,2,26,2,25,4,26,2,28,2,26,1,28,9,29,3,28,27,29,3,28,5,29,1,28,4,14,1,1,3,11,1,9,1,30,1,25,1,26,1,28,2,26,1,29,1,26,2,28,1,9,2,26,5,29,5,26,4,28,76,29,1,30,1,28,3,30,1,15,1,11,1,14,1,9,1,26,1,28,2,29,1,30,1,26,1,29,2,26,1,28,1,29,1,26,1,30,1,29,1,30,2,29,5,28,5,29,1,28,1,29,1,26,1,13,2,28,2,30,1,29,1,28,3,29,1,26,2,30,1,28,8,26,1,9,1,26,3,28,1,29,1,15,1,26,2,28,8,26,1,28,43,29,2,30,2,6,2,16,1,7,1,13,1,8,1,9,2,7,1,16,1,11,1,15,1,16,1,9,1,30,1,16,1,9,1,28,1,9,1,15,1,7,1,28,1,6,1,7,1,8,1,7,1,8,1,9,2,16,1,29,1,6,1,15,1,16,1,6,1,7,1,9,2,10,1,9,1,6,1,16,1,6,1,28,1,1,505,}, + {1,34,28,1,1,2,11,2,1,2,11,1,7,1,28,1,8,1,11,3,9,1,16,1,12,1,11,2,1,4,11,1,1,2,11,1,6,1,28,1,6,1,11,3,16,1,9,1,6,1,7,1,9,1,11,3,15,1,11,2,29,1,28,1,30,2,28,1,30,1,29,1,28,1,30,1,28,1,26,1,30,1,28,4,29,2,13,1,30,1,28,3,29,1,28,1,30,1,28,5,26,2,29,1,28,2,26,3,25,1,27,1,26,5,25,1,26,1,29,1,26,2,29,1,28,2,29,1,30,1,26,3,29,1,30,1,25,1,9,1,26,1,29,1,28,2,26,1,30,1,25,1,9,5,25,1,26,1,27,2,25,3,26,1,28,2,26,1,28,7,26,2,29,1,28,2,29,2,30,1,29,1,28,25,29,1,28,2,29,1,28,5,30,1,1,2,11,1,1,2,9,1,26,3,28,2,29,1,26,2,29,1,26,1,25,1,9,1,26,1,29,1,26,4,29,2,26,1,29,2,28,2,29,1,26,1,25,1,29,1,28,49,29,1,28,24,29,1,30,1,29,2,28,1,30,1,15,1,11,1,15,1,13,2,26,2,30,1,28,3,29,1,13,1,29,4,30,3,29,4,28,9,30,1,13,1,26,1,28,2,29,1,28,5,29,1,26,2,28,8,26,1,9,1,26,3,28,1,27,1,9,1,26,2,28,8,26,1,28,44,29,2,28,3,7,1,29,1,28,1,13,1,6,1,28,3,30,1,8,1,11,1,17,1,7,1,9,1,15,1,28,1,9,1,15,1,6,1,28,1,6,1,8,1,7,1,6,2,7,1,8,1,15,1,29,1,28,1,9,1,17,1,16,1,9,1,16,1,8,1,16,1,9,1,7,1,17,2,7,1,1,505,}, + {1,33,28,1,1,2,11,1,17,1,11,2,16,1,12,1,16,1,9,1,16,1,9,1,16,1,1,2,11,1,16,2,11,1,1,1,11,2,1,1,11,3,1,1,11,1,9,1,12,1,16,1,17,3,1,2,16,1,7,1,11,1,1,1,14,1,16,2,6,1,28,1,29,2,28,2,26,1,28,2,26,1,30,2,28,4,29,2,28,1,30,2,29,1,28,2,30,1,28,5,29,1,26,5,28,3,29,1,26,3,27,1,26,2,27,1,25,1,26,1,28,1,29,5,28,2,30,1,26,2,29,2,26,1,13,2,30,2,28,1,13,1,26,1,25,1,9,3,25,2,9,2,27,4,9,1,26,3,29,1,28,5,29,1,26,1,13,1,30,1,28,4,29,1,26,1,29,1,28,29,26,1,29,1,28,2,9,1,1,2,11,3,15,1,26,1,9,2,29,1,28,1,26,2,29,1,26,3,14,1,26,3,13,1,26,2,29,5,28,5,26,2,28,75,29,3,28,1,26,1,14,2,9,1,13,1,9,2,13,2,30,1,26,2,13,1,25,1,29,4,30,4,29,2,28,9,29,2,30,1,28,5,30,1,29,1,28,3,30,1,26,1,30,1,28,6,26,2,27,1,26,3,28,1,9,1,27,1,26,1,29,1,28,8,26,1,29,1,28,11,29,1,28,28,29,1,13,1,15,1,13,1,8,2,29,1,28,2,7,2,8,1,6,1,13,1,7,1,29,1,28,2,6,1,16,1,12,1,16,1,17,1,28,1,7,1,15,1,9,1,6,1,8,1,9,3,8,1,7,2,11,1,10,1,28,1,30,1,16,4,12,1,11,1,16,1,28,1,9,1,17,1,9,1,6,1,28,1,1,503,}, + {1,35,11,2,1,1,11,1,9,1,6,1,7,1,16,1,11,1,1,1,11,1,6,2,1,1,11,5,1,2,11,6,16,1,8,1,16,1,11,1,1,4,12,1,9,1,11,2,15,1,11,1,6,1,28,2,30,1,29,1,28,2,29,2,26,3,9,1,28,6,29,1,28,1,30,2,28,1,29,1,26,1,28,2,29,2,28,1,29,1,26,3,9,1,26,1,28,5,26,2,27,1,9,1,27,1,26,3,29,1,26,1,29,2,28,1,29,1,26,2,30,1,29,1,30,1,29,4,30,1,26,1,30,1,29,1,25,1,13,1,25,1,9,1,25,1,9,4,27,1,26,1,9,2,26,3,9,1,26,1,28,5,15,1,9,1,29,1,28,9,26,1,29,1,28,26,29,1,28,2,29,1,15,1,1,2,11,2,15,1,13,1,26,1,9,1,25,1,29,2,30,1,29,1,26,2,29,1,26,1,9,2,26,2,13,1,26,4,29,3,28,8,29,1,28,76,29,2,26,1,14,1,11,1,15,1,9,1,25,1,29,1,30,1,26,3,30,1,26,2,29,1,30,1,29,1,30,1,26,1,29,2,26,1,29,1,30,1,28,8,29,1,26,2,28,4,30,1,28,1,29,2,28,4,26,1,13,1,29,1,28,5,26,5,29,1,28,1,15,1,27,1,26,1,28,9,26,2,28,41,30,1,14,1,8,1,7,1,9,1,16,1,9,1,6,1,9,1,6,1,28,2,7,1,11,1,15,1,7,1,28,2,7,1,11,1,17,1,15,1,28,1,30,1,15,1,11,1,10,1,16,1,17,1,11,1,15,1,9,1,10,1,7,1,15,1,10,1,29,1,10,1,9,1,28,1,29,1,15,1,17,1,16,3,28,1,8,1,11,1,16,1,28,2,1,502,}, + {1,32,10,1,1,2,11,1,1,1,11,1,8,1,9,2,17,1,1,4,9,1,28,2,1,2,11,3,1,1,11,6,17,1,16,1,9,1,17,1,1,3,11,2,1,2,11,1,10,1,11,1,6,1,28,1,29,2,30,1,28,3,29,1,26,1,13,1,26,1,29,1,30,1,13,1,28,4,30,1,28,2,26,1,29,2,30,3,29,2,26,1,29,1,28,1,29,1,28,2,9,2,26,3,28,3,27,3,9,2,25,1,26,1,29,1,26,2,28,2,29,1,30,2,26,1,30,3,28,3,30,1,26,1,13,1,26,4,25,1,9,3,27,2,25,1,9,1,27,1,26,4,9,1,26,1,28,4,26,1,11,1,29,1,28,36,29,2,28,2,15,1,1,3,11,1,14,1,9,1,13,1,25,1,9,2,26,1,28,2,26,2,25,1,26,2,15,2,29,1,26,4,29,5,28,84,30,1,29,1,30,2,13,1,14,1,11,1,15,1,13,3,29,3,26,2,30,2,26,1,29,3,30,4,29,2,28,9,30,1,13,1,29,1,28,3,29,1,30,1,29,1,28,6,30,2,28,2,29,1,26,7,28,2,15,1,26,1,27,1,28,9,29,2,28,11,29,1,28,24,29,1,28,4,30,1,15,1,9,2,7,1,8,1,9,1,8,1,10,1,7,1,28,3,8,1,9,1,6,1,9,1,16,1,29,1,28,1,9,1,1,1,9,1,29,1,7,1,10,1,28,3,6,1,16,1,11,1,15,1,8,1,15,1,9,1,28,1,6,1,9,1,29,1,28,1,6,1,11,1,15,1,9,1,11,1,7,1,28,1,10,1,11,1,9,1,28,1,1,502,}, + {1,31,28,1,1,3,11,3,17,1,11,1,1,3,11,1,17,1,11,1,1,1,11,1,28,2,9,1,1,1,11,2,1,1,11,2,1,4,17,1,16,2,1,2,11,1,8,1,9,1,11,1,1,1,17,1,12,1,1,1,12,1,28,2,29,1,28,1,29,1,28,2,29,1,30,2,29,2,30,1,28,1,30,1,28,5,29,2,30,1,28,2,29,1,30,1,26,1,29,2,28,3,29,1,26,1,29,2,15,1,9,1,27,1,9,3,27,1,26,1,28,2,26,1,27,1,25,1,26,1,28,1,29,1,26,1,28,4,29,1,26,1,30,1,29,1,30,1,28,2,29,1,30,1,26,1,13,1,30,2,26,1,25,3,9,4,25,1,27,2,26,3,25,1,26,2,29,1,28,1,29,1,9,1,1,1,26,1,28,36,29,1,28,2,30,1,11,1,1,2,11,2,15,1,9,1,25,1,9,3,26,1,28,2,29,1,26,1,25,1,26,2,14,1,9,1,29,1,26,4,29,4,28,86,30,1,29,1,30,1,13,1,9,1,14,1,11,1,9,1,13,1,26,3,30,6,26,1,29,3,30,4,29,2,28,9,30,1,26,1,29,1,28,4,29,4,28,5,29,2,28,5,9,1,25,1,9,1,26,1,28,2,9,1,26,3,28,8,29,1,13,1,26,1,28,1,29,1,28,8,29,1,28,24,29,1,28,3,6,1,16,1,30,1,6,1,9,3,8,1,7,1,8,1,7,1,9,1,28,2,7,1,9,1,8,1,9,1,16,1,28,3,15,1,11,1,7,1,9,1,8,1,29,1,28,5,6,1,9,1,10,1,11,1,7,1,6,1,16,1,9,1,28,3,11,1,12,1,9,1,17,1,29,1,28,1,11,2,28,2,1,501,}, + {1,30,28,1,11,1,1,1,11,6,1,1,11,3,1,1,11,2,1,1,11,1,16,1,6,2,9,1,1,2,9,1,17,1,11,2,12,1,16,1,12,1,9,1,8,1,17,1,1,1,12,1,9,1,28,1,16,1,1,1,16,1,9,1,11,1,1,1,28,3,29,1,28,3,29,1,30,1,26,1,29,1,28,2,29,1,28,2,29,2,28,3,30,2,29,1,28,3,29,1,13,1,28,7,29,1,28,1,26,1,9,1,25,1,26,1,27,3,26,4,27,1,25,1,26,1,29,1,26,1,29,3,28,2,29,1,30,1,29,2,30,1,28,2,29,1,13,3,28,1,29,1,26,4,25,2,9,2,27,1,26,1,27,2,26,1,27,1,25,1,28,3,26,1,15,2,26,1,28,39,30,1,11,1,1,2,11,2,15,1,25,2,9,1,15,1,9,1,26,1,28,2,26,2,13,1,26,2,9,1,15,1,26,1,29,1,26,3,29,3,28,88,26,1,30,2,13,1,9,1,14,2,9,1,13,1,26,6,29,2,30,1,13,1,29,3,30,3,29,3,28,9,26,1,30,1,28,4,29,5,28,11,26,1,9,1,26,1,27,1,26,1,29,1,26,1,9,1,25,1,26,2,27,1,26,1,9,1,25,1,28,1,29,2,28,2,29,2,28,1,13,1,30,1,28,33,29,1,28,2,6,1,14,1,30,1,28,1,6,1,8,2,7,2,9,1,8,1,16,1,29,1,28,2,16,1,15,1,16,1,10,1,16,1,6,1,28,1,8,1,11,1,6,1,7,1,11,1,12,1,11,1,17,1,9,1,29,1,28,1,6,1,9,1,10,1,16,1,29,2,11,1,15,1,9,2,28,1,8,1,17,1,9,1,11,1,12,1,28,1,29,1,12,2,28,4,1,9,28,1,1,488,}, + {1,29,28,1,11,1,1,1,11,3,1,1,11,1,12,1,17,1,1,1,11,4,1,2,12,1,7,1,16,2,11,1,9,1,29,1,16,1,11,2,9,1,29,2,9,1,16,1,9,1,16,1,11,2,7,1,29,1,6,1,1,1,11,1,9,1,16,1,15,1,9,1,28,2,13,1,29,2,28,2,30,1,26,1,30,1,28,6,29,1,30,1,29,1,30,1,26,1,29,2,28,4,29,1,13,1,28,3,26,1,29,1,28,2,29,1,28,2,9,2,29,2,26,1,27,1,25,1,27,2,26,4,29,3,28,1,29,1,30,1,29,6,28,2,29,1,13,3,28,2,29,1,30,1,26,4,9,2,26,3,25,1,26,3,28,1,26,3,9,1,26,1,28,40,14,1,1,1,11,1,14,1,11,2,15,1,9,2,15,1,9,1,26,1,28,2,26,3,25,1,29,1,9,1,15,1,26,1,29,1,26,4,29,2,28,89,26,1,30,2,13,1,15,1,11,1,15,1,25,1,13,2,26,5,30,1,29,1,30,1,13,1,30,2,29,1,30,3,29,3,28,7,29,2,13,1,29,1,28,1,29,1,28,2,29,1,30,1,29,1,28,5,30,1,28,6,29,1,26,2,29,1,26,2,28,1,26,1,9,2,26,1,28,5,26,1,29,2,28,5,29,1,13,1,30,1,28,33,29,1,28,1,29,1,15,1,9,1,29,1,6,1,7,1,9,4,8,1,11,1,9,1,28,2,29,1,9,1,16,1,9,1,17,1,9,1,28,2,6,1,9,1,6,1,29,1,9,1,7,1,6,1,16,1,1,1,11,1,7,1,29,1,9,2,29,1,28,1,11,2,16,1,17,1,16,1,6,1,17,1,16,1,9,1,11,1,16,1,6,1,10,1,11,1,16,1,7,1,28,5,1,2,28,1,1,492,}, + {1,29,7,1,1,2,11,1,1,1,11,3,16,2,1,1,11,1,1,2,11,2,16,1,8,1,6,1,7,1,11,1,1,1,16,1,28,1,7,1,11,1,16,1,6,1,28,2,9,2,16,1,1,2,8,2,6,1,8,1,11,1,16,2,14,1,28,1,29,1,30,1,26,1,29,1,28,1,29,1,28,1,29,1,26,2,28,6,29,1,28,1,29,1,28,2,13,1,28,7,13,1,28,2,29,2,28,1,29,1,26,1,29,2,28,1,26,1,15,1,28,1,26,1,15,1,26,3,27,1,9,1,26,2,29,1,28,2,29,1,28,2,30,2,29,1,28,1,29,3,28,2,29,1,13,2,9,1,28,3,29,1,26,10,28,6,26,1,25,1,28,41,1,1,14,1,15,1,14,1,11,1,15,1,9,1,14,1,9,1,25,1,26,1,28,1,29,1,26,1,13,1,26,2,25,1,15,2,25,1,26,4,29,4,28,89,26,3,13,1,14,1,11,1,15,1,13,3,26,3,13,2,26,1,29,1,30,1,26,1,29,9,28,7,29,2,13,1,28,2,29,1,28,2,29,3,28,3,29,1,30,1,28,3,29,1,28,6,26,3,28,1,27,2,28,17,29,1,26,1,30,1,28,3,29,1,28,29,13,1,9,1,8,1,9,1,8,1,6,1,8,2,29,3,9,1,16,1,6,1,28,3,29,1,7,1,8,1,9,2,29,1,28,1,6,1,8,1,9,1,6,1,8,2,10,1,16,3,11,1,8,1,17,1,6,1,28,1,6,1,17,2,9,1,16,1,9,1,16,1,17,1,16,3,9,1,28,1,9,1,16,1,9,1,29,1,28,1,16,1,10,1,6,1,28,3,1,492,}, + {1,28,28,1,1,1,11,3,1,1,11,3,16,1,9,1,12,1,11,4,12,1,9,1,8,1,9,1,11,1,1,1,12,2,11,2,17,1,16,1,17,1,7,1,8,1,16,1,17,1,11,2,6,1,28,1,9,1,6,1,8,1,11,2,15,1,29,1,28,1,29,1,26,1,29,3,28,1,29,1,30,2,29,1,28,6,30,1,28,3,29,1,13,1,28,6,29,1,26,1,28,2,26,1,28,2,26,2,29,1,26,1,28,1,26,1,9,1,28,2,15,1,29,1,28,2,27,1,9,1,26,1,28,1,29,2,28,1,26,1,28,2,29,2,28,2,29,2,28,3,29,1,30,2,9,1,29,2,28,1,29,1,30,1,26,2,29,1,26,1,29,2,26,2,28,4,29,1,26,1,29,1,28,3,26,1,28,21,29,1,28,17,9,1,14,1,9,1,14,1,11,1,15,1,9,1,15,1,9,1,13,1,30,1,28,1,29,1,26,2,25,1,9,1,15,1,14,1,9,1,26,3,29,1,26,1,29,3,28,90,26,2,13,1,9,1,14,2,9,1,13,2,26,4,13,2,26,1,29,3,28,5,29,5,28,7,30,1,26,1,28,2,29,1,28,3,29,4,28,2,29,1,28,2,29,2,28,5,26,1,9,1,26,2,28,1,9,1,26,1,28,2,26,5,28,38,29,1,28,7,30,1,7,2,8,1,7,1,6,1,8,1,29,1,28,3,6,1,7,3,6,1,28,2,29,1,28,2,6,1,11,1,8,1,28,2,29,1,7,1,9,1,7,1,29,1,7,1,16,2,8,1,7,1,10,1,7,1,28,3,6,1,11,1,9,2,10,1,12,2,9,3,16,1,9,2,16,1,9,3,10,1,29,1,6,1,7,3,28,2,1,489,}, + {1,26,28,2,1,2,11,8,16,1,6,1,1,2,17,1,16,2,17,1,11,1,1,2,12,2,11,3,1,1,11,1,1,2,11,1,1,2,17,1,6,1,28,1,7,1,8,1,6,1,16,1,11,1,1,1,7,1,28,2,29,1,28,2,30,1,29,1,28,1,30,1,13,1,29,1,28,6,29,2,28,2,30,1,26,1,13,1,29,1,28,5,29,1,26,1,28,5,29,1,26,1,28,1,26,3,15,1,28,2,9,1,29,1,28,2,26,1,27,1,26,1,28,4,13,1,29,1,28,1,30,1,29,1,28,2,29,2,28,2,30,2,28,1,29,1,9,1,26,1,30,1,29,3,30,1,29,2,26,1,28,2,29,1,28,4,9,1,14,1,9,1,29,1,28,25,29,1,28,18,9,2,15,3,9,1,25,1,13,1,26,2,29,1,28,2,26,1,9,1,15,2,9,1,25,1,26,4,29,3,28,91,26,2,13,1,14,1,11,1,14,1,13,3,26,7,29,1,28,2,30,1,29,1,28,3,29,6,28,6,26,1,30,1,28,6,29,2,28,6,29,1,28,6,26,2,25,1,26,1,28,1,26,1,9,1,28,1,15,1,26,1,28,3,29,1,26,2,28,37,29,1,28,9,29,1,30,1,6,1,7,1,9,1,7,1,28,1,6,1,10,2,7,1,6,1,9,2,8,1,9,2,10,1,6,1,28,1,6,2,28,1,7,1,28,2,29,1,7,1,8,2,9,2,6,2,29,1,7,1,16,1,7,1,28,2,7,1,16,2,10,1,9,2,16,1,11,1,16,1,12,1,8,1,7,1,9,1,12,1,10,1,28,2,6,1,29,1,28,3,6,1,29,1,28,3,1,486,}, + {1,25,28,2,11,1,1,1,11,1,1,1,11,2,17,2,11,2,1,1,11,1,6,1,16,1,1,1,11,1,9,1,16,1,11,3,17,1,11,2,16,1,17,2,9,1,1,1,17,1,11,1,16,1,8,1,6,1,28,2,16,1,11,1,9,2,1,1,11,1,17,1,28,2,29,2,28,1,29,1,28,2,26,1,29,1,9,1,29,1,28,5,29,1,28,1,29,2,28,1,29,2,28,1,26,1,28,1,29,1,28,3,26,1,29,1,28,6,29,2,28,1,26,2,9,1,26,2,15,1,26,1,28,2,26,1,9,1,26,1,29,1,28,3,13,1,26,2,13,1,26,1,29,2,28,1,29,1,28,1,29,1,26,1,30,1,28,2,8,1,13,1,26,1,29,2,30,1,26,4,28,5,9,1,14,1,15,1,26,1,28,27,29,1,28,19,14,2,13,1,25,1,9,1,13,1,26,1,28,1,26,2,29,2,25,1,9,2,26,7,29,3,28,81,29,1,28,9,26,2,13,1,14,2,9,1,26,1,13,1,25,1,26,6,30,1,29,1,28,2,9,1,13,1,26,2,30,1,26,3,30,2,29,1,28,6,13,1,29,1,28,5,29,2,28,6,29,2,28,6,26,3,9,1,28,1,26,1,27,1,26,1,27,1,25,1,26,1,29,1,26,1,28,2,26,1,28,1,29,1,28,32,29,1,28,10,29,1,28,4,29,1,8,2,7,1,9,2,29,1,6,1,8,1,9,1,6,1,29,1,7,2,16,1,9,2,8,1,6,2,28,2,6,1,28,2,7,2,6,2,28,1,6,1,29,1,28,2,29,1,16,1,28,3,9,1,12,1,9,1,16,2,10,2,7,1,10,1,9,1,16,1,11,1,9,1,28,4,29,2,28,2,9,1,6,2,28,3,1,484,}, + {1,26,10,1,1,1,11,1,1,1,11,2,1,1,12,1,11,4,1,1,16,1,28,1,17,1,11,2,1,1,11,2,17,1,11,2,17,1,16,1,11,4,16,2,7,1,28,2,6,1,16,1,1,2,17,1,28,1,9,1,1,1,29,1,28,1,29,1,30,1,28,3,29,1,28,2,13,1,26,1,29,1,28,8,29,1,28,1,30,1,29,1,28,2,13,1,28,4,29,1,26,2,28,4,26,2,27,2,26,1,9,2,15,2,25,1,26,1,28,2,26,1,25,1,27,1,29,1,28,1,29,2,26,3,13,2,26,1,29,1,28,1,29,3,26,2,30,2,13,3,26,2,30,1,29,2,28,6,29,1,26,1,29,1,28,25,29,1,28,23,9,1,14,1,15,1,9,1,25,2,28,1,26,1,29,2,26,2,25,1,26,8,29,1,28,11,29,2,28,80,26,2,30,1,9,1,11,1,15,1,9,1,13,3,26,2,13,1,26,1,30,1,26,1,30,1,28,2,26,1,13,2,30,1,28,2,30,1,26,1,29,1,13,2,26,1,29,1,28,5,26,2,28,2,29,1,28,2,29,3,28,6,30,1,29,1,28,5,26,1,27,1,25,1,27,1,28,1,9,1,26,4,27,2,26,1,28,2,26,1,28,2,26,2,29,1,28,40,13,1,30,1,29,1,28,3,7,1,9,1,7,2,29,1,7,1,6,1,7,3,6,3,28,1,6,1,9,1,7,2,6,1,28,3,10,1,7,1,28,1,29,1,8,1,6,1,7,1,29,1,28,1,29,2,28,2,7,1,29,1,28,1,8,1,9,1,6,2,7,1,10,1,16,2,9,1,16,1,9,1,6,1,28,1,29,1,6,1,28,3,16,2,29,1,9,1,12,1,7,1,29,1,6,1,7,1,28,1,1,483,}, + {1,25,28,1,11,1,1,1,11,8,17,1,11,1,1,1,11,1,28,2,11,1,1,1,11,1,1,1,11,1,9,1,11,1,17,2,11,1,1,2,17,1,12,1,11,1,16,1,6,1,29,1,7,1,11,1,1,2,11,2,7,1,29,1,6,1,28,2,29,1,28,2,29,2,28,1,29,2,25,1,29,1,28,7,29,3,28,1,30,2,28,2,30,1,29,2,28,3,26,1,9,1,25,1,28,4,26,1,9,1,26,1,9,1,25,1,26,1,9,1,27,2,25,1,28,3,9,2,28,2,30,1,26,1,30,6,26,1,13,1,26,1,30,2,26,1,13,2,26,1,30,1,13,1,29,1,25,1,9,1,28,61,14,1,15,1,25,1,15,1,26,1,29,1,26,1,29,3,26,9,29,4,28,92,26,1,29,1,13,1,15,1,14,1,9,3,30,1,26,1,25,1,26,1,13,1,29,1,26,2,28,1,29,1,26,1,28,2,29,5,28,4,29,1,13,1,30,1,28,2,29,1,28,1,13,1,30,1,28,1,29,1,28,3,29,5,28,4,30,1,29,1,28,5,26,1,27,2,26,1,28,1,25,1,26,1,27,1,9,1,26,4,28,2,29,1,28,2,29,1,28,34,29,1,28,7,29,1,28,1,30,1,6,1,28,3,9,1,8,1,28,1,6,1,8,1,7,1,29,1,28,1,29,1,7,2,29,1,6,1,29,2,10,1,7,1,6,1,7,1,28,3,6,1,10,1,28,2,29,1,9,1,6,1,28,1,29,1,7,2,28,1,29,1,6,1,7,1,6,1,29,1,7,1,10,1,7,1,6,2,28,1,29,1,28,2,7,1,16,1,9,1,6,1,29,2,7,1,6,1,9,1,16,1,11,3,16,1,10,1,11,1,28,3,1,481,}, + {1,25,11,1,1,2,11,1,12,1,11,6,17,1,11,1,1,2,12,1,28,1,29,1,11,2,1,1,11,1,7,1,9,1,11,1,1,1,11,2,17,1,16,5,11,2,1,2,17,1,16,1,1,1,11,1,9,1,28,3,29,2,28,1,29,1,28,2,26,1,30,1,29,1,28,3,29,2,28,2,29,1,30,1,29,2,28,1,29,1,30,1,28,2,13,1,29,1,28,4,26,1,9,1,15,1,28,3,26,1,9,2,15,1,9,1,27,1,26,2,28,2,27,1,28,3,9,2,28,1,29,2,26,1,30,1,29,2,28,3,30,1,25,1,26,1,13,1,9,4,15,2,25,1,26,1,25,1,9,1,28,7,26,1,29,1,28,52,15,2,13,1,9,1,30,1,28,1,26,1,29,3,26,7,29,6,28,91,26,2,28,1,9,2,15,1,9,1,26,1,29,1,26,1,13,1,26,5,29,2,26,2,28,4,29,3,28,6,30,1,28,2,29,1,30,1,9,1,29,3,28,3,29,6,28,3,30,1,29,1,28,5,26,2,27,1,26,1,28,1,25,1,26,1,9,1,26,1,28,2,26,1,27,1,26,1,29,1,28,1,29,1,28,4,29,1,30,1,28,37,29,1,28,3,30,1,13,1,7,1,28,2,13,1,28,3,29,1,6,1,7,2,10,1,8,1,6,1,7,1,6,1,29,1,7,1,29,1,6,1,16,1,6,1,28,3,6,1,8,1,6,1,28,1,6,1,7,1,28,7,29,1,28,2,6,1,7,1,9,3,29,1,10,1,16,2,9,1,7,1,6,1,10,1,29,1,28,1,9,1,28,3,6,1,9,1,17,1,16,2,11,1,7,1,16,1,7,1,28,1,1,480,}, + {1,24,28,1,1,1,11,2,1,1,16,2,17,1,11,3,17,1,11,1,1,1,11,1,17,1,1,1,9,1,28,2,16,1,1,2,16,1,7,1,12,1,16,1,6,1,28,1,29,1,6,1,8,1,10,1,9,1,11,4,16,1,9,1,12,1,11,3,8,1,29,2,28,1,30,1,28,1,30,1,29,1,28,1,30,1,29,1,28,3,29,5,30,2,29,5,28,2,13,1,28,5,26,1,9,1,28,1,27,1,28,1,26,1,9,1,26,1,28,1,26,1,27,1,9,3,26,1,28,1,26,2,28,2,26,2,29,2,28,1,29,3,28,4,29,1,26,1,29,1,13,1,9,4,15,1,9,2,14,1,25,1,28,4,29,2,26,2,30,1,28,29,13,1,29,1,28,23,9,1,15,1,30,1,29,1,26,2,29,2,26,9,29,3,28,93,26,1,29,1,30,1,15,1,9,1,13,1,9,1,28,2,30,2,28,1,26,1,29,1,13,1,29,1,28,1,26,2,28,4,29,1,28,1,29,2,26,2,28,5,13,1,26,1,30,1,13,1,26,1,28,1,29,2,28,3,29,2,28,1,29,3,28,3,30,2,28,6,26,1,27,1,26,1,28,1,9,1,26,1,9,1,25,1,29,1,28,1,26,4,28,1,29,1,28,5,29,2,28,36,26,1,28,3,29,1,28,1,30,1,29,2,6,1,28,7,29,1,6,1,9,1,7,2,8,1,29,3,28,1,6,1,28,4,7,1,16,1,7,2,8,1,29,1,28,2,9,1,16,1,9,1,10,1,7,1,29,2,28,2,6,1,9,3,7,1,28,2,16,2,9,1,16,1,28,2,16,1,9,1,29,1,28,2,7,1,8,1,9,2,28,2,7,1,17,1,29,1,28,1,1,479,}, + {1,20,28,1,1,2,28,1,1,2,12,1,16,1,11,1,16,2,12,1,11,4,1,2,17,1,12,2,1,1,9,1,28,1,7,1,17,1,1,2,16,1,6,1,28,5,10,1,16,1,8,1,16,1,10,1,17,1,1,1,9,1,16,1,11,1,7,1,30,1,13,2,26,1,29,1,28,3,9,1,13,1,28,5,29,5,30,4,26,2,29,1,28,9,26,1,9,1,28,1,9,1,28,2,15,1,29,1,28,2,27,1,9,1,27,1,9,2,27,1,26,1,28,1,26,2,28,2,29,3,28,1,29,3,28,3,29,1,26,1,29,4,26,1,25,1,29,1,28,2,13,1,28,5,29,1,30,1,29,1,28,31,29,1,28,24,26,1,14,1,26,1,29,1,26,1,29,1,26,4,29,4,26,5,29,1,28,92,13,1,26,1,28,1,13,1,15,1,13,1,28,1,30,1,13,1,26,1,28,2,29,1,28,2,26,1,28,2,26,1,28,2,29,3,30,2,29,6,28,3,26,2,13,2,28,7,29,6,28,3,30,1,26,1,28,6,26,3,29,1,9,1,26,1,25,1,26,4,28,2,25,1,26,1,28,3,30,1,28,40,26,1,28,7,13,1,9,1,28,1,8,1,30,1,28,7,29,2,7,1,8,1,9,2,6,1,8,1,7,1,28,5,6,1,7,1,9,1,28,2,29,1,9,1,6,2,8,1,16,1,28,2,29,1,28,3,6,1,7,2,28,2,6,1,16,1,9,1,10,1,9,1,6,1,28,1,6,1,29,1,9,1,16,1,6,1,28,1,7,1,6,1,28,3,6,3,28,1,1,478,}, + {1,22,28,1,16,1,1,2,17,1,6,1,8,1,11,1,17,1,9,1,11,4,1,1,11,1,17,1,11,2,12,1,1,1,11,1,12,1,17,1,12,1,11,1,12,1,9,1,7,1,10,1,9,1,7,1,10,1,11,2,16,1,12,1,9,1,17,1,1,1,16,1,11,1,16,1,28,4,29,1,28,4,13,1,26,1,28,3,29,1,28,2,29,6,28,1,30,2,26,1,29,1,28,2,29,1,28,4,29,2,26,1,27,1,25,1,26,1,27,1,28,1,15,1,26,1,29,1,27,1,9,1,27,1,26,2,9,2,26,2,25,2,28,3,29,6,28,3,29,1,13,1,28,2,30,1,26,3,28,8,30,1,29,1,28,59,26,1,13,1,30,1,28,1,26,5,29,4,26,5,29,1,28,91,29,1,26,1,28,2,9,1,25,1,28,2,13,1,15,2,9,1,13,1,29,1,28,1,29,1,28,2,26,1,28,3,30,1,29,2,30,1,29,7,30,1,28,2,29,2,9,1,13,1,28,8,29,3,28,2,29,2,28,1,29,2,28,5,29,1,26,2,29,2,9,1,26,1,25,1,29,1,28,5,9,1,26,1,28,44,26,1,29,1,28,7,9,1,29,3,6,1,13,1,7,1,30,1,29,1,28,8,8,1,7,1,17,1,7,1,6,1,28,5,6,2,7,1,6,2,28,3,29,1,28,1,29,1,6,1,29,1,28,4,10,1,16,1,10,1,29,1,28,2,7,1,8,1,6,1,28,1,16,1,6,3,28,1,6,1,8,1,28,6,6,1,29,1,28,1,1,477,}, + {1,21,28,1,7,1,1,1,11,1,1,1,11,1,7,1,6,1,12,1,17,1,9,1,11,4,1,1,11,1,17,1,11,2,8,1,11,1,1,1,11,1,12,1,16,1,17,1,12,1,1,3,11,1,17,1,11,1,1,1,11,2,1,2,16,2,17,1,11,1,29,1,28,2,29,1,28,6,29,1,28,7,29,5,28,2,30,1,28,1,30,2,28,7,26,4,9,1,28,1,26,1,29,1,27,1,26,1,9,1,15,1,27,1,26,6,9,2,25,1,26,1,28,2,29,4,30,1,29,1,28,3,29,1,13,1,28,1,29,1,13,1,26,2,29,2,28,4,26,1,28,7,29,1,28,4,29,1,28,51,30,1,26,1,28,1,26,4,29,5,26,6,29,2,28,88,29,1,26,1,28,2,26,1,9,1,26,1,28,1,13,1,9,1,25,1,26,1,9,2,26,1,30,1,26,1,28,1,29,1,30,1,28,2,30,1,29,1,30,1,29,4,30,4,28,1,29,1,28,4,9,1,26,1,28,2,29,1,28,2,29,6,28,3,29,1,28,1,29,1,28,2,29,2,28,2,26,1,27,1,26,1,28,1,26,1,15,1,25,2,26,1,28,3,26,3,28,16,29,1,28,21,29,1,28,6,29,1,30,1,28,5,29,1,28,1,25,1,28,4,29,4,7,1,8,1,6,1,28,5,29,1,6,1,7,1,9,1,8,1,28,1,6,1,8,1,28,4,7,1,6,1,29,2,6,1,28,2,6,1,8,1,6,2,29,1,28,6,29,2,6,1,10,1,29,1,28,2,12,1,6,1,28,1,9,1,10,1,7,1,10,1,28,2,6,1,29,1,28,3,7,1,28,1,1,477,}, + {1,21,6,1,1,1,11,1,1,1,11,1,1,2,9,1,28,1,6,1,11,2,17,2,1,2,11,1,17,1,11,1,10,1,11,2,16,1,8,1,10,1,11,4,1,2,11,1,16,2,11,1,1,1,11,1,1,2,6,1,29,1,11,1,17,1,29,1,28,3,29,2,28,4,26,1,28,6,29,2,28,2,29,3,30,1,26,1,28,1,29,1,13,1,28,4,29,2,28,1,29,2,26,1,9,1,15,1,28,2,26,1,25,1,26,1,25,1,26,1,28,1,29,1,27,1,9,1,27,1,26,3,9,1,25,1,15,1,26,1,28,1,30,1,28,1,29,2,30,1,26,1,30,1,28,2,29,1,13,1,30,2,29,1,28,21,26,1,28,10,29,1,26,1,28,32,30,1,28,7,13,1,26,1,29,1,26,2,29,6,26,8,29,2,28,86,29,1,13,1,29,1,26,1,9,1,29,1,26,1,25,1,15,1,13,1,30,1,28,2,26,1,15,1,9,1,13,1,25,1,26,1,28,2,29,1,30,1,29,1,30,4,26,1,30,1,29,1,28,1,29,1,28,1,30,1,28,4,9,1,29,1,28,2,29,1,28,2,13,1,29,1,26,3,30,1,29,4,28,4,26,2,28,3,26,2,28,1,26,1,15,1,25,1,26,2,28,2,26,1,28,2,29,2,28,10,29,2,28,4,29,1,28,20,30,1,29,1,28,2,29,1,28,7,29,1,28,3,9,1,29,1,28,5,29,1,28,1,29,1,6,1,30,1,29,1,13,1,8,2,6,1,28,1,29,1,28,1,6,1,16,1,7,1,28,1,6,1,9,1,8,1,28,6,10,1,8,1,28,3,6,1,9,2,6,1,7,1,28,2,6,1,28,3,6,1,7,1,28,3,6,1,29,1,7,1,16,1,29,1,28,1,6,1,11,1,9,1,16,1,6,1,7,1,28,5,1,2,28,1,1,473,}, + {1,20,28,1,1,1,11,1,1,1,11,2,12,1,11,1,1,1,9,1,28,1,7,1,1,1,11,5,16,1,7,1,16,1,12,2,10,1,8,1,11,1,1,2,11,9,1,2,7,1,10,2,11,1,8,1,28,3,29,1,28,5,30,1,28,6,29,2,28,1,29,2,28,2,29,1,26,1,30,3,28,8,26,1,27,1,29,1,26,1,9,1,28,2,26,2,9,1,26,1,29,1,28,2,26,2,27,2,26,2,29,1,26,1,15,1,25,1,28,3,29,1,30,2,28,1,29,1,30,1,28,2,9,1,26,1,28,21,29,1,28,13,29,1,30,2,28,4,29,1,28,24,30,1,28,8,29,1,13,1,29,1,26,2,29,5,26,4,29,4,28,1,26,1,29,2,28,85,26,2,25,2,26,2,13,1,9,2,26,1,30,1,29,1,28,2,29,1,9,1,13,2,25,1,28,1,30,1,26,1,29,2,30,1,29,4,30,3,29,1,28,5,29,1,13,1,29,1,28,1,29,1,28,5,29,3,28,1,29,3,28,4,26,1,9,1,25,1,26,1,28,2,26,1,9,1,29,1,27,1,26,1,27,1,26,6,28,2,26,2,28,11,29,1,28,25,29,1,28,5,29,1,28,5,29,1,30,1,28,1,30,1,13,1,28,5,29,4,30,1,29,3,7,1,8,1,6,1,28,2,9,1,16,1,8,1,28,1,6,1,29,1,7,1,8,1,6,2,28,4,6,2,29,1,28,4,29,1,8,1,6,1,7,1,28,1,6,1,7,1,29,1,6,1,29,1,28,2,6,1,29,1,28,2,6,1,12,1,28,3,6,1,8,1,16,2,29,1,28,5,1,475,}, + {1,19,28,1,1,2,11,2,12,1,11,2,12,1,11,1,1,1,16,1,28,1,9,1,1,1,11,1,7,1,6,1,7,3,11,1,9,1,8,1,16,1,11,1,1,1,11,1,12,1,11,1,17,1,11,1,12,1,9,1,8,1,16,1,11,1,1,1,11,1,7,1,28,1,16,1,11,1,16,1,10,1,29,1,28,1,29,2,28,1,29,1,30,1,29,2,26,1,29,1,28,6,29,3,28,3,29,1,30,4,28,6,29,1,26,2,29,2,15,1,26,1,28,1,29,1,26,2,9,1,26,1,28,2,26,4,27,3,28,2,25,1,9,1,28,2,30,1,29,2,30,1,29,3,28,2,13,1,26,1,28,21,26,1,28,13,29,4,28,2,29,1,28,25,13,1,29,1,28,8,26,3,29,5,26,4,29,5,28,1,29,3,28,85,9,1,26,1,28,1,26,1,9,2,25,1,26,1,30,2,13,1,30,2,28,2,29,1,9,1,28,1,29,2,30,1,29,2,30,1,29,3,30,3,29,3,28,6,13,1,29,1,28,1,29,1,28,5,29,2,28,8,26,4,27,1,26,1,29,1,26,2,28,1,9,1,26,1,27,1,25,1,26,4,9,1,26,1,28,2,26,1,28,37,29,1,28,1,29,1,28,3,30,2,28,7,26,1,25,1,28,7,29,3,30,2,29,3,30,1,6,1,8,1,29,1,6,2,28,1,7,2,29,2,6,3,29,4,28,2,29,1,6,2,29,3,6,2,7,3,6,2,10,1,7,1,28,1,6,1,33,2,6,1,28,2,9,1,7,1,28,3,29,1,16,1,12,1,6,1,28,4,1,475,}, + {1,19,29,1,1,1,11,6,16,2,1,2,9,1,28,1,11,1,1,1,16,1,10,1,7,2,16,1,9,1,6,1,9,1,1,5,11,3,12,1,8,1,7,1,16,1,1,2,28,1,29,1,17,1,1,1,17,1,6,1,9,1,29,1,30,1,26,1,30,1,29,1,30,1,26,2,28,1,29,2,28,1,29,2,28,2,29,3,28,4,29,1,13,2,26,1,28,7,29,1,28,2,26,2,9,1,26,3,29,1,26,1,15,1,26,1,28,2,26,1,9,1,27,1,26,2,27,1,9,1,26,1,28,1,26,2,28,2,29,1,28,1,30,1,29,1,28,1,29,2,28,3,15,1,26,1,28,20,29,1,28,14,29,1,28,1,30,1,29,1,28,26,14,1,28,10,29,1,13,1,29,3,28,1,29,3,26,2,29,4,28,89,29,1,26,1,30,1,29,1,26,1,25,1,9,2,13,1,26,3,13,1,29,1,13,1,26,1,28,2,9,1,28,2,26,1,29,2,30,1,29,3,30,4,29,3,28,6,26,1,29,1,28,1,29,1,28,5,30,2,29,1,28,8,26,1,9,1,26,6,28,1,25,1,26,1,25,1,27,1,26,4,25,1,29,1,28,2,26,1,28,37,29,1,28,5,29,1,28,8,30,1,9,1,28,7,29,1,28,1,29,3,30,2,29,3,28,1,29,1,9,1,28,3,8,1,7,1,6,1,29,2,10,1,29,1,28,2,7,1,28,1,29,1,6,6,28,1,29,1,8,1,7,3,28,1,7,1,6,1,28,2,6,1,5,1,16,1,29,1,28,2,7,1,9,1,6,1,28,2,10,1,11,2,6,1,28,5,1,473,}, + {1,18,28,1,1,1,11,9,16,2,1,1,9,1,12,2,16,1,9,1,6,1,29,1,10,1,9,1,8,1,9,1,11,4,12,1,11,4,16,1,9,1,11,1,1,1,28,1,6,1,11,1,1,1,16,1,9,1,7,1,30,1,29,2,30,3,26,1,30,1,28,4,29,5,30,1,28,2,29,2,28,2,26,1,13,1,26,1,30,1,28,10,25,1,9,1,26,4,28,1,29,1,9,1,29,1,28,2,26,1,9,1,27,2,26,2,27,1,25,1,26,1,28,1,29,1,26,1,29,1,28,2,29,3,30,1,29,1,30,1,29,1,28,1,13,1,29,1,28,37,29,2,28,25,11,1,1,1,28,11,13,1,29,3,28,1,29,2,26,2,29,4,28,90,26,1,13,1,28,1,26,1,9,2,25,1,13,4,26,2,29,1,26,1,13,1,28,1,29,1,9,1,28,1,29,1,30,1,29,2,26,1,28,1,30,2,29,1,30,5,29,1,28,1,29,1,28,4,26,1,29,1,28,1,29,1,28,5,30,2,29,4,28,7,29,1,26,1,9,2,26,2,28,1,26,2,9,1,26,1,28,1,26,1,25,1,26,2,28,3,26,1,29,1,28,34,29,3,28,8,29,1,28,6,25,1,28,12,29,2,28,5,8,1,28,4,8,1,9,1,6,1,28,1,30,2,28,2,30,1,7,2,6,1,29,2,7,4,6,1,29,1,28,2,29,2,9,1,7,1,29,1,28,3,8,1,9,2,7,3,9,1,8,1,7,1,6,1,28,1,29,1,17,1,7,1,28,3,1,474,}, + {1,18,8,1,1,1,11,1,16,1,11,2,12,1,11,2,17,2,16,1,12,1,1,2,11,2,1,1,11,1,17,1,16,1,7,1,12,1,16,1,9,1,11,3,1,1,11,2,16,2,11,1,16,2,11,2,28,1,1,2,9,1,28,2,29,1,28,5,29,1,26,1,29,1,28,3,29,7,28,2,29,1,28,2,26,1,13,1,26,1,28,2,26,1,13,1,28,7,29,1,26,1,9,1,26,1,25,1,27,1,28,3,26,1,28,2,26,1,27,1,9,1,27,3,26,1,27,1,26,1,29,1,28,1,29,1,26,2,29,4,13,2,29,1,30,1,13,1,26,1,29,1,28,37,29,1,28,26,11,1,1,2,9,1,28,10,13,1,29,6,26,2,29,3,28,91,26,2,25,2,26,1,30,1,26,1,13,2,26,3,30,1,13,1,30,1,29,1,26,1,28,1,13,2,29,3,30,1,29,1,28,1,30,2,29,7,28,1,29,1,28,3,29,1,26,1,28,2,29,1,28,4,29,8,28,8,26,4,28,1,25,1,26,1,25,1,26,5,28,4,30,1,29,1,28,34,29,1,28,6,29,1,30,1,26,1,30,1,28,7,26,1,13,1,28,16,30,1,28,1,29,1,28,1,6,1,28,4,7,1,27,1,29,1,27,1,28,2,29,1,30,1,26,1,6,1,29,2,6,2,29,1,28,1,6,2,8,1,7,1,28,1,29,1,6,2,29,1,6,2,29,2,28,2,9,1,29,1,6,1,9,1,6,2,7,1,28,3,10,1,9,1,28,3,1,473,}, + {1,17,28,1,1,2,11,1,1,1,17,1,12,1,11,1,16,2,9,2,11,1,1,1,11,1,1,1,11,2,7,1,28,1,29,1,11,3,17,1,16,1,11,1,1,1,11,1,1,1,11,2,12,1,16,1,11,1,16,2,11,1,9,1,11,2,9,1,15,1,29,1,28,2,29,1,28,4,29,1,30,1,29,1,28,4,29,1,28,1,29,1,30,1,29,2,28,3,29,1,9,2,29,1,28,4,30,2,29,1,28,2,29,1,30,1,26,1,28,1,26,1,9,1,25,1,9,1,27,1,26,3,28,3,26,1,27,2,26,1,27,3,25,1,26,1,28,2,30,1,28,2,13,2,26,1,29,2,30,1,29,1,26,1,13,1,30,2,28,37,29,1,28,24,6,1,11,1,1,3,11,1,28,10,26,1,29,5,26,2,29,3,28,91,30,1,13,1,26,1,13,3,26,1,30,2,26,4,29,1,13,1,29,1,28,1,13,1,28,1,30,1,13,1,28,2,30,1,29,1,28,1,26,1,29,3,30,2,29,1,28,2,29,1,28,1,29,1,28,2,29,2,13,1,28,2,29,1,28,4,29,8,28,4,26,2,28,4,25,1,28,2,15,1,27,1,26,1,25,1,26,1,29,1,26,2,28,4,29,2,28,34,29,1,28,2,29,2,28,2,29,1,30,1,26,1,29,1,28,3,29,1,30,1,28,3,13,1,28,14,29,2,28,2,30,1,29,2,8,1,13,1,28,3,29,1,25,1,15,1,28,3,29,8,28,1,6,2,8,1,6,1,28,1,29,1,8,1,6,1,28,2,29,1,6,2,7,1,12,1,6,1,28,2,6,2,9,1,11,1,7,1,28,4,11,1,6,1,28,1,1,473,}, + {1,17,16,1,1,1,11,1,12,1,11,1,9,1,16,2,9,1,16,1,12,1,11,1,1,2,12,1,11,1,1,2,16,1,28,2,6,1,10,1,12,2,9,1,12,1,1,1,11,1,12,1,28,1,9,1,16,2,11,1,9,2,1,1,17,1,1,1,7,2,15,1,30,1,29,1,26,1,28,4,29,1,28,2,29,2,28,3,29,1,28,1,29,1,30,1,29,1,30,1,28,3,30,1,15,1,9,1,28,6,29,1,13,1,30,1,29,1,13,3,26,2,9,2,27,1,26,3,28,4,26,1,27,2,26,1,27,1,25,1,27,1,25,1,26,1,29,2,30,1,28,2,30,1,9,1,26,1,28,2,29,1,30,2,29,2,28,59,8,1,15,1,1,8,28,9,29,1,26,1,29,5,26,1,29,4,28,90,29,1,26,1,13,1,25,1,30,1,26,1,25,1,15,1,25,1,29,2,26,1,13,1,26,1,29,1,26,1,29,1,28,1,26,1,29,1,28,1,26,1,28,1,29,3,28,1,30,1,29,3,30,2,29,1,28,2,29,1,28,1,29,1,28,2,29,2,26,1,28,2,29,1,28,5,29,1,30,2,29,4,28,3,26,1,29,1,28,1,26,2,28,2,27,1,28,1,26,1,15,1,25,1,26,1,27,1,26,4,28,4,29,2,28,11,29,1,28,19,29,1,28,2,29,1,28,2,29,2,28,1,29,2,28,6,29,1,28,1,29,1,28,2,29,1,28,12,29,1,30,1,29,1,28,4,13,1,29,1,28,1,13,1,25,1,28,3,26,1,15,1,29,1,28,5,29,4,6,1,28,3,7,1,6,1,28,2,6,1,29,2,6,1,29,1,28,4,29,1,28,3,29,1,7,1,16,1,10,1,16,1,29,1,28,3,9,1,6,1,1,473,}, + {1,16,28,1,1,1,11,1,1,1,11,1,28,1,6,1,12,1,9,1,11,1,17,1,16,1,11,1,12,1,9,1,11,1,1,1,17,2,1,1,11,1,29,1,28,3,9,1,16,1,11,2,1,1,11,1,28,2,6,1,8,1,16,1,6,1,7,1,1,2,9,1,28,1,29,4,28,1,29,1,28,2,30,1,26,1,28,3,26,1,28,2,29,1,30,1,29,3,28,1,29,1,28,2,13,1,26,2,25,2,29,1,28,6,9,2,29,1,28,1,30,1,26,1,29,1,26,1,25,1,26,6,27,1,26,3,27,2,25,2,26,2,29,1,26,1,28,1,30,2,28,2,9,1,28,2,29,1,26,1,29,1,28,2,26,1,28,55,9,1,1,13,13,1,28,8,26,2,29,4,26,2,29,1,28,1,29,1,28,91,26,2,29,1,13,1,15,1,28,2,9,1,14,1,9,1,29,2,30,1,29,2,30,1,26,1,30,1,28,3,26,1,28,1,29,2,30,1,29,1,28,1,29,9,28,1,29,1,28,2,29,2,26,1,28,2,29,1,28,5,29,8,28,2,29,1,28,5,27,1,26,1,28,1,15,1,9,1,27,2,26,3,29,1,28,5,29,2,28,31,29,1,28,2,29,1,28,2,29,1,28,12,26,1,30,1,28,2,29,1,28,16,29,1,28,1,29,2,28,3,29,1,28,2,29,1,28,1,26,1,29,1,28,4,29,2,28,2,29,1,7,1,28,3,29,2,28,1,9,1,6,1,28,3,6,1,16,1,7,1,28,2,8,1,7,1,29,1,6,2,7,1,6,1,29,1,12,1,8,1,28,3,9,1,28,1,1,472,}, + {1,15,28,1,11,4,1,1,10,1,28,1,6,1,10,1,11,3,16,1,8,1,17,1,1,1,11,1,16,1,17,1,11,1,1,2,7,1,28,2,7,1,11,1,1,1,11,1,1,2,11,1,6,1,8,1,16,1,6,1,29,1,16,1,1,2,9,1,28,4,29,2,28,2,29,1,13,1,28,4,29,2,28,2,29,1,30,2,29,1,28,2,29,1,28,1,30,1,9,1,29,1,13,1,9,1,29,1,28,6,30,1,13,2,28,2,29,1,28,3,25,1,26,2,9,2,26,3,9,1,26,1,27,1,26,2,9,1,26,2,29,1,28,1,29,1,30,1,28,2,13,2,28,2,26,1,30,1,29,1,26,2,28,55,29,1,1,4,11,1,1,2,11,1,1,3,11,1,15,1,9,1,30,1,28,7,26,2,29,9,28,91,29,2,30,1,26,4,29,1,28,1,30,1,15,1,9,1,28,1,29,1,26,3,29,1,28,1,29,5,28,2,29,2,28,3,26,2,29,1,28,1,29,1,28,6,30,1,26,1,28,2,30,1,29,1,28,4,30,1,29,6,28,3,29,1,28,6,27,1,28,1,26,1,9,1,26,4,15,1,26,1,28,6,29,2,28,11,30,1,28,19,29,1,28,2,29,1,28,2,29,1,28,1,29,1,28,11,29,1,28,19,29,1,28,4,30,1,28,2,26,1,28,4,29,1,26,1,28,1,9,1,26,1,28,1,29,1,26,1,28,1,29,1,26,1,29,2,28,3,6,1,8,1,28,4,29,1,7,1,10,2,28,2,9,1,29,1,7,2,28,1,8,1,7,1,28,1,16,2,7,1,29,1,6,1,10,1,28,2,1,3,28,1,1,466,}, + {1,15,28,1,1,2,17,1,16,1,11,2,16,1,6,1,16,1,9,1,11,1,1,1,16,2,1,1,11,3,1,1,11,2,1,1,11,1,10,1,12,3,9,2,17,1,12,1,8,1,6,1,7,1,29,1,28,2,7,1,16,1,1,1,28,3,29,2,28,4,30,1,26,1,28,4,29,1,28,12,13,1,26,1,13,2,29,1,28,6,30,1,13,1,26,2,28,2,29,1,9,1,28,1,26,1,29,1,26,1,25,1,9,1,27,1,29,1,28,1,26,1,25,1,26,5,29,1,26,1,29,3,28,2,26,2,28,1,29,1,30,4,28,56,8,1,1,9,7,1,28,12,26,1,29,2,28,1,29,6,28,91,29,3,26,1,13,1,9,1,13,1,26,1,29,1,28,2,26,1,25,1,13,1,29,3,30,3,29,2,28,7,29,2,28,4,29,2,28,3,29,1,28,2,29,1,30,1,29,1,28,1,29,2,28,4,29,1,30,1,29,4,28,8,26,1,28,2,9,1,28,1,26,1,15,1,25,1,26,2,25,1,26,1,29,2,26,1,28,2,29,1,26,1,29,2,28,11,30,1,28,19,29,1,28,2,29,1,28,2,29,1,28,2,29,3,28,10,29,1,28,8,29,1,30,1,28,7,29,1,28,3,29,1,26,1,28,1,29,2,28,2,29,1,28,1,26,1,9,1,28,2,25,1,9,1,28,2,26,1,28,1,30,1,28,2,29,1,28,3,6,1,29,2,28,2,29,1,6,2,29,1,28,2,6,3,28,3,10,1,7,1,28,1,29,1,6,1,9,3,7,1,28,4,29,1,6,1,28,5,1,4,28,1,1,455,}, + {1,14,28,1,11,1,1,1,11,1,12,1,11,1,17,1,11,1,1,1,16,1,12,1,16,1,17,1,12,1,17,1,11,5,17,1,16,1,11,3,1,1,16,1,17,2,16,1,9,1,12,1,17,1,9,1,16,1,9,1,8,2,6,1,9,1,11,1,1,1,29,1,28,2,29,2,28,2,29,1,30,2,29,1,28,4,30,1,29,1,28,6,29,1,28,4,26,1,13,2,29,1,28,8,26,2,13,1,29,1,28,1,9,2,28,3,29,1,26,1,9,2,25,1,26,1,29,1,27,1,26,1,28,3,26,1,29,1,28,1,29,3,28,2,26,1,13,1,28,1,29,3,26,1,29,1,28,38,29,1,28,17,15,1,1,2,11,1,1,2,11,1,16,1,6,1,28,14,26,1,28,1,29,1,28,1,29,5,28,93,29,1,26,1,13,2,26,4,29,1,28,2,26,1,9,1,29,4,26,2,29,1,28,12,29,1,28,8,29,1,26,1,30,1,28,2,29,1,28,5,29,6,28,5,29,1,28,1,26,2,28,1,26,1,25,1,28,1,27,1,15,1,27,2,26,2,28,2,29,1,26,1,29,2,30,1,29,1,28,13,29,1,28,22,29,1,28,5,29,1,30,1,29,1,28,10,29,1,28,10,26,1,30,1,28,9,30,1,29,1,28,2,29,1,28,2,29,1,28,1,26,3,28,2,26,1,15,1,26,1,28,5,26,1,29,2,6,1,7,1,28,4,6,1,7,1,6,1,28,1,29,1,28,1,6,1,28,2,29,1,28,2,29,1,8,1,28,1,6,1,7,1,6,1,12,1,7,1,28,5,6,1,29,1,28,1,6,1,7,1,9,1,6,1,28,3,1,3,28,1,1,453,}, + {1,14,8,1,1,1,11,1,17,1,11,1,1,1,17,1,16,1,11,3,1,1,11,1,8,1,9,1,1,1,11,1,17,1,11,1,17,1,11,1,1,2,11,1,16,1,11,1,6,1,7,1,16,1,11,4,1,1,11,2,1,2,11,1,1,2,9,1,8,1,13,1,29,1,28,1,29,4,13,1,26,1,28,4,29,1,26,1,30,2,28,2,29,2,28,1,30,1,29,1,28,3,29,1,30,1,13,1,28,9,29,2,30,1,28,2,9,1,28,2,29,3,28,1,29,1,26,3,28,1,26,1,28,3,29,1,26,1,29,2,30,3,28,4,29,2,28,1,30,1,26,1,28,57,15,1,1,1,11,1,1,2,8,1,28,17,30,1,28,2,29,6,28,89,29,3,26,4,29,1,28,1,29,1,26,4,28,2,26,2,29,1,28,1,29,1,26,2,29,1,28,5,29,2,28,14,26,1,13,1,29,1,28,1,30,1,29,1,28,5,30,1,29,5,28,4,29,1,26,1,29,1,28,3,25,1,26,1,28,1,9,2,26,1,9,1,25,1,28,5,30,1,26,1,30,1,28,33,29,1,28,3,29,1,28,1,29,1,28,1,29,1,28,36,29,1,28,3,29,2,28,3,29,2,9,1,26,1,28,3,25,1,26,1,28,2,29,1,28,1,30,1,28,2,6,1,29,1,28,3,29,1,7,1,10,2,6,1,28,2,7,1,6,1,28,1,9,1,28,4,29,1,9,1,10,1,29,1,12,1,28,1,29,1,10,1,28,2,6,2,28,1,29,1,28,3,6,1,10,1,7,1,28,3,1,5,28,1,1,449,}, + {1,13,28,1,1,2,11,3,16,2,11,1,17,1,11,1,1,1,11,1,1,1,16,1,6,1,11,1,1,1,12,1,11,2,1,1,11,1,7,1,9,1,11,1,6,1,10,1,6,1,7,1,11,2,16,2,11,2,1,1,11,1,1,3,8,1,28,1,29,2,28,3,29,2,30,2,29,1,28,2,29,1,30,3,29,3,28,1,30,1,29,1,28,1,29,3,28,2,29,1,28,1,13,1,28,9,29,2,30,1,28,2,13,1,28,2,29,5,28,4,26,1,29,1,28,2,26,1,29,1,30,1,26,1,30,1,28,2,29,2,30,1,28,1,26,1,28,1,29,1,26,1,29,1,28,57,16,1,1,2,16,1,28,19,29,2,28,1,29,5,28,91,29,1,26,3,28,4,29,3,26,1,13,1,26,1,28,2,29,1,28,11,29,1,26,4,28,4,26,2,28,4,30,1,26,1,29,1,28,2,26,1,28,6,30,1,29,5,28,3,29,1,28,2,26,1,28,3,27,1,26,1,29,1,9,1,27,1,25,1,15,1,25,1,28,7,29,1,26,1,29,1,28,11,29,1,28,11,29,1,28,7,29,1,28,3,29,1,28,1,29,1,28,1,29,1,28,14,29,1,28,12,29,1,30,1,28,7,29,1,28,4,29,1,28,3,29,2,26,1,9,2,28,3,26,1,29,1,28,1,29,1,26,1,29,1,28,2,30,1,28,5,6,1,7,1,8,1,7,1,29,1,9,1,28,1,7,1,28,2,7,1,28,4,16,1,28,1,29,1,7,1,6,2,9,1,28,2,6,2,28,1,29,1,6,1,29,1,28,1,6,1,9,1,16,1,10,1,29,1,28,3,1,453,}, + {1,12,28,1,11,1,1,1,11,3,17,1,6,1,9,1,11,1,12,1,1,2,11,1,1,1,11,1,16,1,17,1,11,3,1,1,7,1,28,2,8,1,16,1,8,1,9,2,16,1,11,2,9,1,8,1,17,1,11,4,9,1,13,1,29,1,28,7,30,1,26,1,28,1,29,1,28,2,30,1,26,2,29,1,28,3,29,3,28,2,29,2,28,1,29,2,28,1,13,1,28,9,29,1,28,1,13,1,29,1,28,1,13,1,29,1,28,1,29,1,28,2,26,3,29,2,28,1,26,2,28,2,30,1,28,1,30,1,29,2,28,3,29,1,25,1,15,1,13,1,29,2,26,1,28,58,16,1,1,1,15,1,28,20,29,3,26,3,29,3,28,95,29,1,26,2,29,2,28,2,30,1,26,1,28,11,29,1,26,1,28,5,29,1,28,4,13,2,26,1,29,2,28,1,30,1,13,1,29,1,28,2,30,1,28,2,26,1,30,1,28,2,29,6,28,3,26,1,29,1,28,1,26,1,28,2,26,1,27,1,26,2,27,1,26,1,9,1,26,2,28,8,30,1,13,1,26,1,28,10,29,1,28,19,29,1,28,8,29,1,28,34,29,2,28,9,29,1,26,2,9,2,26,1,28,2,9,1,28,6,13,1,30,1,28,4,29,1,6,1,7,1,6,1,7,2,28,1,7,1,28,3,29,1,28,3,29,2,28,2,8,1,9,2,6,1,29,1,28,1,29,1,6,1,28,1,29,1,8,1,33,1,7,3,29,1,6,1,29,1,28,4,1,451,}, + {1,12,28,1,1,1,11,3,17,1,16,1,9,1,16,2,12,1,1,1,11,1,1,1,11,6,17,1,12,1,28,2,8,3,15,1,8,1,11,1,1,1,11,2,12,2,11,1,1,1,11,1,1,1,16,1,28,2,29,2,28,6,30,1,29,1,28,1,30,1,28,2,30,3,28,3,29,3,30,1,29,1,28,1,29,2,28,1,30,1,29,1,30,1,26,1,28,10,29,1,13,1,28,2,29,2,28,1,26,1,29,2,28,1,29,1,30,1,29,1,28,1,29,1,13,1,30,1,28,2,30,1,28,1,30,1,29,1,30,1,29,1,30,1,28,2,26,1,9,1,26,3,29,1,28,58,11,1,1,1,28,20,30,1,28,1,29,1,26,5,29,2,28,94,26,1,15,1,9,1,13,1,29,2,28,16,29,1,28,9,29,1,26,3,28,4,13,1,30,1,28,2,29,1,28,2,26,3,30,1,28,1,29,5,28,3,26,2,29,1,26,1,28,1,26,2,25,1,28,1,26,3,25,1,28,1,29,1,28,2,29,1,28,6,30,1,13,1,30,1,28,45,29,1,28,21,29,1,28,5,30,1,28,12,15,1,26,1,28,1,9,1,27,1,28,1,15,1,9,1,29,1,28,4,30,1,29,1,28,4,6,1,7,1,8,1,7,1,29,1,28,1,7,1,8,1,6,1,28,7,9,1,7,1,28,2,16,1,10,1,9,1,8,1,28,2,6,1,28,1,29,1,6,1,28,2,9,1,17,1,12,1,11,1,12,1,26,1,28,1,6,1,12,1,28,1,1,450,}, + {1,11,28,1,1,2,11,2,12,2,9,1,16,1,11,1,12,1,11,4,12,1,11,1,17,1,11,1,1,1,12,1,16,1,6,2,9,1,28,2,9,1,15,1,9,1,1,2,16,1,17,1,1,2,11,2,1,1,11,1,28,11,29,1,28,1,26,1,9,1,30,1,28,3,30,1,29,2,28,1,29,5,28,4,29,1,28,1,25,1,30,1,28,10,13,1,30,1,28,1,29,1,28,2,29,2,26,1,30,1,28,2,30,2,29,2,13,1,28,2,30,3,29,2,28,2,30,1,13,1,30,4,25,1,26,1,28,38,29,1,28,20,1,1,15,1,28,19,13,2,28,1,26,7,29,1,28,88,29,2,28,2,13,1,25,3,29,1,28,1,29,2,26,1,29,1,28,26,29,1,28,5,29,1,28,2,30,2,28,2,30,1,26,1,9,1,13,1,28,1,29,5,28,3,26,1,25,1,26,1,28,2,26,2,9,1,28,1,27,2,29,1,26,1,28,1,29,1,28,2,29,4,28,4,30,1,26,1,28,6,29,2,28,29,29,1,28,7,30,1,28,6,29,1,28,15,29,1,28,4,30,1,28,3,26,1,28,7,29,1,9,1,25,1,28,1,26,1,9,2,26,2,29,1,28,4,29,2,28,4,6,1,8,2,6,1,8,1,30,2,29,1,9,1,6,1,28,3,6,1,28,3,10,1,7,1,28,1,29,1,8,1,7,2,29,1,28,1,6,1,29,2,6,1,28,2,10,1,9,4,1,1,26,1,28,1,9,1,17,1,28,1,1,449,}, + {1,11,8,1,1,1,11,1,1,1,11,1,12,1,16,1,9,1,12,3,1,2,17,1,11,1,16,2,11,5,12,2,11,2,16,1,9,1,12,1,11,1,1,1,16,1,9,1,11,1,1,1,17,1,9,1,11,1,1,1,29,1,28,4,29,1,28,5,29,2,28,1,26,1,9,1,29,1,28,1,29,2,28,1,29,3,26,3,29,1,28,1,29,1,28,3,30,1,28,1,13,2,29,1,28,8,26,2,28,5,29,3,30,3,29,3,13,1,29,1,28,2,30,1,29,1,13,1,30,2,29,1,28,1,29,1,26,1,13,1,30,1,29,1,28,1,26,2,28,3,29,1,28,17,13,1,26,1,28,36,1,1,13,1,28,19,26,1,29,2,26,1,29,1,26,1,29,1,28,1,29,1,26,3,28,86,29,2,28,2,26,2,28,4,29,1,28,2,29,1,28,7,29,1,28,23,29,3,28,2,29,1,28,5,9,1,13,1,30,1,29,2,28,2,29,1,28,2,26,3,28,1,26,5,28,1,15,1,26,1,28,1,29,1,28,4,29,1,28,9,30,1,29,1,28,3,26,1,28,14,29,1,28,9,29,1,30,2,29,1,28,10,29,1,28,7,29,2,28,15,29,1,28,3,26,1,28,4,30,1,28,7,9,1,15,1,26,1,28,1,9,1,27,1,28,1,26,1,28,6,29,1,28,3,29,1,6,1,7,1,8,1,9,1,6,1,13,1,30,1,29,1,6,1,9,1,6,1,28,3,29,1,28,3,7,1,6,1,28,1,6,1,9,1,11,1,7,1,28,1,6,2,28,1,6,1,28,1,7,1,9,1,6,2,29,1,28,1,30,1,11,1,10,1,28,1,26,1,1,1,29,1,1,448,}, + {1,10,28,1,1,2,16,1,11,1,16,1,9,2,16,1,11,1,12,1,17,1,1,1,11,2,9,2,17,1,11,2,17,1,11,1,1,2,12,1,9,1,8,1,9,1,16,1,11,1,1,1,16,1,9,1,11,1,1,1,11,1,16,1,6,1,11,1,9,1,29,1,28,2,29,3,28,2,29,1,28,2,29,2,28,2,15,1,9,1,29,1,28,3,26,1,28,1,26,4,29,3,28,3,26,1,28,1,13,2,29,1,28,6,29,2,30,1,25,1,13,1,30,1,26,1,29,1,28,1,26,1,29,4,30,2,29,2,13,1,29,1,28,2,30,1,29,1,13,1,26,3,29,1,30,1,26,3,29,1,28,1,29,2,28,20,29,1,26,1,28,2,29,1,28,33,9,1,1,1,29,1,28,18,26,2,29,1,26,2,29,6,26,3,28,81,29,1,28,7,26,1,29,1,28,18,26,1,13,1,26,1,28,19,26,1,29,1,28,3,29,1,30,1,28,3,26,1,13,1,26,1,28,3,29,2,28,2,26,1,25,1,26,1,28,1,26,6,15,1,26,1,28,6,29,2,28,12,29,1,28,4,29,2,28,19,29,8,28,6,29,1,28,8,30,1,28,15,29,2,28,2,29,1,28,11,26,2,9,1,26,1,28,1,15,1,28,2,9,1,27,1,26,1,29,1,28,1,26,1,29,1,28,5,29,1,30,1,29,2,13,1,6,1,28,2,30,1,13,3,29,1,28,2,29,1,28,5,29,2,9,1,17,1,6,1,28,1,7,2,6,1,29,1,7,1,10,1,9,1,10,1,8,1,29,2,9,2,28,2,29,1,12,1,28,1,1,447,}, + {1,10,8,1,1,1,11,1,16,2,9,2,7,1,16,1,11,1,12,1,11,1,1,1,17,1,12,1,29,1,9,1,11,3,12,1,11,2,12,1,16,1,8,1,28,3,11,1,1,1,12,1,11,1,1,1,11,3,8,1,28,1,29,1,9,1,29,1,28,1,29,1,28,1,29,2,28,2,29,2,30,1,28,3,9,1,13,1,28,3,29,3,26,1,25,2,26,4,29,1,28,2,26,1,28,1,13,1,9,1,28,3,29,1,26,1,30,2,26,1,30,1,28,1,26,1,13,1,26,1,30,1,29,1,28,1,30,1,29,4,30,1,29,2,28,1,13,1,29,1,28,2,26,1,28,1,26,1,13,1,26,2,30,5,29,1,28,8,29,1,28,11,29,2,28,8,26,1,28,30,1,2,28,18,29,1,13,1,29,2,26,2,29,4,28,3,26,2,29,2,28,83,29,1,28,3,29,2,28,12,29,1,9,1,13,1,26,2,25,1,9,2,26,2,28,18,26,1,28,1,26,1,13,2,9,1,13,1,28,3,29,1,9,2,29,1,28,2,29,1,28,2,29,1,26,9,9,2,29,1,28,3,29,1,28,3,29,1,28,18,29,1,28,7,29,1,28,34,30,1,28,19,29,1,28,11,26,1,29,1,9,1,26,2,15,1,28,2,9,2,25,1,27,1,26,1,29,2,28,5,6,1,30,1,28,4,6,1,30,1,28,3,9,1,7,1,28,6,29,1,28,1,29,2,28,4,6,2,28,3,29,1,7,1,6,1,7,1,16,1,10,1,30,1,28,5,12,1,28,1,1,4,28,1,1,441,}, + {1,9,29,1,1,2,11,1,17,1,6,1,7,1,9,1,7,1,10,1,12,1,17,1,11,2,10,1,6,1,29,1,9,1,11,8,1,1,17,1,6,1,8,1,1,1,11,2,1,1,11,1,9,1,11,2,8,1,28,1,6,1,9,1,29,1,30,2,28,1,29,7,28,3,26,1,28,3,29,3,26,3,25,1,27,1,26,3,29,1,28,2,26,1,28,1,26,1,9,1,28,3,29,1,25,1,26,1,30,1,29,1,28,8,29,4,30,2,29,1,28,2,13,1,29,1,28,1,29,1,30,1,29,1,30,1,26,1,30,1,29,8,28,7,29,1,28,11,29,1,28,9,26,1,28,29,15,1,1,2,28,18,29,1,26,1,29,2,26,1,29,4,28,6,29,1,28,83,29,1,26,1,29,1,28,2,29,2,28,11,29,1,26,5,29,1,28,3,9,1,26,1,28,19,9,1,15,1,13,1,9,1,30,1,28,4,13,1,9,1,13,1,29,1,28,4,26,3,9,2,26,4,9,2,26,1,28,29,30,1,28,30,29,2,28,8,26,1,28,19,29,1,28,7,29,1,28,3,26,1,28,1,26,1,29,1,26,1,15,1,28,2,25,1,26,2,9,1,26,1,28,7,6,1,8,1,6,1,30,1,28,3,29,2,28,3,29,2,28,5,29,1,28,7,29,1,6,1,28,1,29,1,28,2,6,1,29,1,7,1,6,1,10,1,9,1,28,1,29,1,27,1,28,3,6,1,28,1,1,445,}, + {1,8,28,1,11,1,1,1,17,1,11,1,12,1,8,1,16,1,7,1,6,1,7,1,9,1,11,2,10,1,28,1,29,1,9,2,17,1,1,1,11,3,17,1,11,1,17,1,11,1,1,2,11,3,1,2,11,2,1,1,11,1,6,1,8,1,9,1,28,2,30,1,13,1,30,1,28,2,26,1,13,1,29,1,28,5,29,1,28,5,29,2,26,7,29,1,28,2,30,1,28,1,30,1,9,1,28,1,29,1,28,7,29,2,28,3,29,6,30,1,29,1,28,2,29,1,13,1,30,1,28,2,29,1,30,1,26,1,30,1,26,1,30,1,29,2,30,2,29,2,30,1,28,30,26,1,29,2,28,26,1,2,8,1,28,18,29,2,28,1,29,2,28,1,29,2,28,85,29,6,26,2,28,3,29,2,28,42,26,2,28,8,13,1,9,1,30,1,28,3,26,7,25,1,26,1,15,2,26,1,28,10,29,1,28,12,29,1,28,7,29,1,28,29,30,1,29,1,28,8,13,1,28,34,29,1,25,1,9,1,28,2,9,1,26,2,27,1,9,1,26,1,28,6,30,1,10,1,9,2,8,1,30,1,28,2,30,1,26,1,28,4,29,1,30,1,28,4,6,1,28,2,29,1,28,5,7,1,29,1,28,1,6,1,29,1,28,1,10,1,6,1,29,1,26,1,28,2,9,1,27,1,28,2,29,1,28,1,1,445,}, + {1,7,28,1,9,1,1,2,16,1,10,1,7,1,10,1,16,1,10,1,7,1,6,1,8,1,11,1,1,1,9,2,8,1,16,1,10,1,17,1,1,1,16,1,12,1,11,2,16,1,7,2,16,1,11,2,1,3,11,1,1,2,11,1,9,1,10,1,16,1,9,1,29,1,28,3,9,1,30,1,29,1,13,1,26,1,28,6,29,2,30,1,29,1,28,2,29,1,28,1,26,1,9,1,27,1,26,4,29,1,28,2,29,1,28,1,30,1,13,1,29,1,30,1,28,7,29,1,30,2,29,1,28,3,29,2,28,5,29,1,26,2,30,1,29,1,28,1,29,1,30,2,29,1,26,2,30,1,29,2,30,1,29,2,30,1,28,31,26,2,28,1,29,1,28,23,1,3,28,18,13,1,26,1,28,2,29,2,28,1,29,1,28,71,29,1,28,14,29,1,26,3,29,1,28,6,29,1,26,1,29,1,28,46,29,2,28,4,13,1,30,1,29,1,26,2,9,1,25,1,26,1,28,3,25,1,29,1,28,1,9,1,26,1,28,3,29,1,30,3,29,3,28,1,29,1,28,11,29,2,28,7,29,1,30,1,29,1,28,19,29,2,28,5,29,1,30,1,28,9,29,1,28,26,29,1,28,2,29,1,28,4,26,1,15,1,27,1,28,2,9,1,26,3,9,2,28,5,26,2,29,3,26,1,13,1,30,1,28,1,29,1,30,3,29,1,28,4,29,1,28,2,29,1,7,1,28,2,8,1,7,1,28,3,7,1,29,1,28,4,7,1,12,1,9,1,6,1,28,2,25,1,9,1,27,1,28,2,30,1,28,1,1,444,}, + {1,7,28,1,1,2,11,1,12,1,7,2,8,1,7,1,9,1,8,1,10,1,16,1,11,1,1,1,11,1,1,1,17,1,16,1,9,1,11,2,12,1,16,1,12,1,8,1,6,1,28,2,29,2,9,1,1,2,11,2,1,1,11,1,9,1,7,1,9,1,6,1,30,1,13,1,30,1,28,2,26,1,13,1,29,1,26,1,28,6,29,1,30,1,29,2,30,1,29,2,28,1,29,1,26,1,9,1,26,5,28,4,29,1,30,1,13,1,29,5,30,1,29,1,28,3,29,1,30,2,29,1,28,6,29,1,28,2,29,1,26,1,13,1,26,1,29,1,28,2,29,3,30,3,29,4,30,2,28,3,29,1,28,24,26,1,28,3,26,1,29,1,30,1,29,1,28,21,1,4,28,18,9,1,30,1,28,1,29,4,28,88,29,3,28,7,29,3,28,38,29,1,28,4,29,1,26,1,28,7,29,1,30,1,29,1,26,1,25,1,9,2,27,1,28,2,26,1,9,1,26,1,28,1,26,1,28,5,29,1,30,1,29,1,30,2,29,1,28,23,29,2,28,26,30,1,29,1,28,11,29,1,28,4,29,1,28,1,29,1,28,10,29,1,28,14,26,1,15,1,26,1,28,1,26,1,27,1,26,3,9,2,28,5,26,1,29,1,28,1,30,1,13,1,29,3,28,1,30,2,29,1,28,1,8,1,30,1,28,3,9,2,29,1,28,1,29,1,28,2,29,1,16,1,9,1,7,1,28,1,6,1,7,1,28,4,29,1,10,1,12,3,28,2,9,1,15,1,26,1,28,2,6,1,28,1,1,443,}, + {1,6,28,1,11,3,1,1,11,2,1,1,11,1,17,1,8,1,6,1,12,1,1,1,11,2,17,1,11,2,10,1,12,1,11,3,16,1,9,1,29,3,6,2,7,1,16,1,1,1,11,1,1,2,11,1,17,1,14,1,16,1,30,1,29,1,28,3,30,1,26,1,28,1,29,2,26,1,29,1,28,5,30,1,13,1,29,4,26,1,29,1,26,5,27,1,26,1,28,5,29,2,26,1,29,2,30,1,29,2,30,1,29,1,28,4,29,1,30,2,26,2,29,3,30,1,13,2,30,1,29,1,30,1,9,1,26,1,30,1,29,1,28,3,29,2,30,1,26,1,30,1,29,2,30,1,26,1,30,1,28,3,30,1,28,22,29,1,26,1,25,1,26,1,28,2,29,3,28,20,29,1,1,4,11,1,28,17,13,1,26,1,28,2,29,4,28,69,29,1,28,20,29,5,28,4,29,2,28,37,29,2,28,4,30,1,28,1,29,1,28,1,29,2,28,1,29,1,28,2,26,1,29,2,26,1,9,3,26,1,28,3,26,1,29,3,28,2,29,2,26,2,30,1,26,1,30,1,28,27,29,1,28,15,29,1,28,8,30,1,26,1,28,11,29,1,28,3,29,2,28,1,29,1,28,10,29,1,28,8,29,1,28,2,26,1,28,2,9,2,28,2,27,1,26,3,9,2,29,1,28,5,9,1,27,1,28,1,29,1,30,3,29,4,28,1,29,3,13,1,25,1,28,2,6,1,8,1,6,1,28,4,16,1,7,1,6,1,29,1,28,1,5,1,6,1,28,1,29,1,28,2,29,1,28,1,9,1,11,1,27,1,28,2,27,1,15,1,28,2,29,2,28,1,1,442,}, + {1,6,10,1,11,2,1,1,9,1,6,1,12,1,11,2,1,2,16,1,11,1,1,1,11,4,1,1,9,1,7,1,9,1,12,1,11,1,12,1,10,1,6,1,29,1,28,2,7,1,11,2,1,1,11,1,1,2,15,1,9,2,13,1,28,1,29,1,28,5,26,1,30,1,29,2,28,4,29,1,30,2,29,1,28,5,29,1,26,9,28,3,29,1,30,2,13,1,28,1,13,1,29,3,28,5,29,3,13,2,26,1,30,1,13,5,26,2,30,1,15,1,13,1,29,1,30,2,28,1,29,2,28,1,29,1,30,1,29,2,30,1,29,1,28,3,29,1,28,23,26,1,25,1,26,3,28,3,29,1,28,19,16,1,1,6,28,17,13,1,29,1,28,2,29,3,28,69,29,1,28,21,29,3,26,2,28,4,29,2,28,37,29,1,28,5,30,1,28,2,29,1,28,2,29,1,28,2,26,1,28,1,26,1,25,1,28,1,26,1,9,1,27,1,28,7,26,1,29,4,26,2,30,1,29,1,28,41,29,1,28,2,29,2,28,7,29,1,30,1,29,1,28,8,29,1,28,29,29,3,26,1,28,5,9,1,27,1,26,2,9,2,28,5,26,1,9,3,29,4,28,1,29,2,28,2,29,1,28,1,29,1,26,1,30,2,6,2,29,1,7,1,28,2,9,1,7,1,6,1,7,1,28,3,6,1,11,1,28,2,6,1,28,2,7,1,28,1,29,1,11,1,27,1,29,1,9,1,15,1,25,1,28,2,29,1,28,2,1,441,}, + {1,5,28,1,16,1,11,1,1,1,11,1,16,1,10,1,9,2,16,1,11,1,1,1,11,1,1,4,11,1,17,1,11,2,16,1,9,2,12,1,17,1,9,1,6,2,7,1,8,1,16,1,1,1,11,3,1,1,16,1,6,2,13,1,30,1,29,2,28,11,29,1,26,1,30,1,28,5,29,3,30,1,29,1,26,1,9,1,25,1,26,2,27,2,26,1,29,1,28,3,30,1,26,1,13,3,29,3,28,1,29,1,28,3,29,2,28,1,29,1,26,1,30,2,26,2,29,2,30,1,26,2,13,1,29,2,13,2,26,1,29,1,30,1,28,1,29,2,28,1,29,1,26,1,29,1,28,4,29,1,9,1,26,1,28,20,26,7,28,20,15,1,1,8,28,17,13,1,29,5,28,93,29,3,26,1,29,1,28,42,29,1,28,5,29,1,28,2,30,1,29,1,28,1,29,1,28,1,29,2,28,1,29,1,26,3,27,1,9,1,28,7,26,1,28,3,29,1,30,3,29,2,28,41,29,3,28,3,29,1,28,5,29,2,28,8,30,1,28,13,29,1,28,13,29,1,30,2,28,5,26,3,27,1,26,2,27,1,9,1,28,6,26,1,9,1,26,1,27,1,9,1,25,1,29,1,30,1,29,2,30,1,28,2,30,1,28,2,30,1,9,1,13,1,28,2,29,1,28,1,10,1,28,2,10,1,29,1,28,1,7,1,6,1,28,2,7,1,6,1,28,2,29,1,28,1,10,1,9,1,28,1,25,1,9,2,11,1,9,1,11,1,9,1,28,2,29,1,28,1,1,441,}, + {1,4,28,1,16,1,17,1,11,1,1,1,16,1,9,2,8,2,16,2,11,1,1,1,11,6,17,1,1,1,11,1,16,1,9,1,17,1,11,1,17,1,12,2,11,2,1,2,11,4,7,1,28,1,29,3,26,1,29,1,28,8,30,1,13,1,26,2,13,1,30,1,28,5,29,5,26,1,9,1,25,1,26,1,27,3,26,1,29,1,28,3,29,1,13,1,29,1,13,2,29,2,28,2,29,1,28,3,29,2,28,3,29,1,26,2,29,1,28,3,29,1,30,2,28,1,29,1,30,1,29,1,26,1,9,1,30,2,28,2,26,2,29,1,28,5,13,2,28,20,26,8,28,17,6,1,1,11,28,16,29,1,26,1,29,5,28,96,29,2,28,48,29,2,28,1,29,3,30,1,29,1,26,1,28,3,26,1,27,1,26,2,9,1,26,1,28,6,26,1,28,8,29,1,30,1,29,1,28,39,29,1,28,4,29,1,28,8,13,1,28,21,29,2,28,7,29,1,28,3,13,1,29,1,28,7,29,1,26,4,25,1,9,1,15,1,28,6,9,1,26,2,28,1,26,2,28,1,29,2,30,1,26,1,29,2,30,1,28,3,29,1,26,1,29,2,28,2,10,1,28,2,6,1,29,1,28,1,6,1,8,1,6,1,28,2,12,1,28,2,9,1,6,1,28,1,7,1,9,1,26,2,9,1,11,1,26,1,28,1,12,1,9,1,28,2,29,1,28,1,1,440,}, + {1,3,28,1,16,2,12,1,11,2,10,1,9,1,16,1,10,1,9,1,17,1,11,2,1,1,11,2,16,1,9,1,17,1,11,1,12,1,11,2,17,1,11,1,1,1,11,1,1,4,11,5,1,1,16,1,29,1,28,1,29,2,28,1,29,1,28,8,29,1,26,1,13,3,26,1,29,1,28,2,29,2,28,2,29,5,26,1,25,2,27,1,26,1,27,1,26,1,28,5,30,1,28,1,30,1,13,1,26,1,29,1,28,2,29,3,28,1,29,2,28,3,30,1,26,1,30,1,28,7,29,1,26,1,28,2,29,1,9,1,26,2,29,2,26,1,29,1,28,5,13,1,9,1,29,1,28,19,26,8,29,1,28,16,9,1,1,12,29,1,28,15,30,1,29,5,28,83,29,1,28,2,29,2,28,10,29,1,28,41,29,1,28,6,29,1,30,1,29,3,26,1,30,1,29,1,9,1,28,3,26,1,9,1,26,2,25,1,26,1,28,5,29,1,26,1,28,9,26,2,29,1,28,41,13,1,9,1,29,1,28,8,13,2,28,7,29,2,28,24,30,1,28,9,29,1,26,3,9,2,26,1,28,5,9,2,26,1,27,1,26,2,25,1,29,3,28,1,29,1,30,1,29,2,30,1,28,4,26,1,30,1,28,1,29,2,28,3,29,1,6,1,28,2,6,2,28,1,9,1,6,1,28,2,7,1,28,2,6,1,17,1,27,1,28,1,15,1,28,3,12,2,29,1,28,3,1,439,}, + {1,1,28,1,1,1,9,1,17,1,16,1,17,1,11,1,12,1,16,3,10,2,12,1,1,1,11,1,17,1,11,2,9,1,16,1,11,2,9,1,12,1,17,1,11,1,1,5,11,1,1,1,11,3,1,2,11,1,29,1,28,2,29,1,28,11,26,1,29,1,28,1,29,1,13,1,26,1,28,4,29,4,30,1,29,1,30,1,28,1,26,1,25,2,26,2,9,1,29,1,28,5,30,1,29,1,28,1,13,2,29,3,28,1,30,2,28,1,29,2,28,3,26,2,28,3,29,1,28,2,29,3,30,1,29,1,28,3,13,1,26,2,30,1,28,5,26,1,13,1,26,1,30,1,26,1,28,19,26,7,28,17,8,1,1,2,16,1,1,10,6,1,28,14,30,1,26,1,28,2,29,2,28,87,29,1,28,5,26,1,29,1,28,46,29,1,28,6,29,3,30,2,26,1,29,1,28,1,26,1,29,1,28,1,26,2,9,1,27,1,9,1,26,2,28,3,29,1,28,1,29,1,26,1,28,10,26,1,29,1,28,28,29,1,28,11,29,1,13,2,28,10,13,2,28,7,29,1,28,35,26,3,15,1,9,1,28,5,26,1,15,1,26,2,9,1,26,1,28,1,26,3,29,1,28,3,30,1,26,1,30,3,28,3,29,1,28,1,29,1,26,1,28,3,29,3,28,2,6,1,28,2,12,1,28,3,10,1,28,2,7,1,12,1,9,1,29,2,28,3,9,1,12,1,28,4,1,438,}, + {1,2,28,1,11,1,9,1,12,1,11,1,12,2,16,1,8,1,6,1,10,1,16,3,11,1,16,1,11,1,12,2,1,1,11,1,9,1,8,1,16,1,11,2,1,5,11,1,1,6,9,1,28,5,30,1,29,1,28,8,30,1,28,3,30,2,28,4,29,1,30,1,29,5,28,1,26,3,28,2,25,1,26,1,28,5,30,1,13,1,28,1,13,1,9,1,30,1,29,2,28,1,30,1,29,1,28,2,29,1,28,2,29,1,13,2,29,1,28,2,29,3,30,2,29,4,28,2,26,1,30,1,28,5,29,2,26,1,29,1,28,2,29,2,28,17,26,8,28,17,1,2,11,1,1,3,11,1,1,7,13,1,28,14,26,2,28,2,29,2,28,69,29,1,28,10,29,2,28,3,29,1,28,6,29,1,26,1,29,1,28,54,29,1,28,3,26,1,29,1,28,2,26,1,28,1,26,4,25,1,26,1,28,4,29,1,28,1,26,2,28,4,29,2,28,4,26,2,28,25,29,1,28,2,29,2,28,9,29,1,28,14,26,1,13,1,30,1,28,41,26,1,27,1,9,1,15,1,28,6,9,1,26,1,28,1,26,3,28,4,29,1,26,1,28,2,29,1,30,1,29,3,28,4,13,1,29,1,30,1,28,3,7,1,6,2,28,3,6,1,28,1,9,1,6,1,28,1,6,1,28,1,6,1,16,1,28,1,7,1,1,1,25,1,26,2,29,1,28,1,26,1,12,1,9,1,28,1,9,1,12,1,28,9,1,429,}, + {1,2,17,1,16,1,10,1,16,1,1,1,16,2,8,1,6,2,9,1,12,2,9,1,11,3,16,1,12,1,11,1,29,1,28,1,16,1,9,1,12,1,11,1,1,5,11,1,1,3,11,1,10,1,6,2,28,4,29,1,30,1,29,2,28,6,29,1,28,2,29,6,28,3,29,6,28,1,29,1,26,3,28,1,26,1,25,1,29,1,28,4,29,1,13,1,29,2,13,2,29,5,28,1,29,2,28,2,26,1,13,2,30,1,29,1,28,1,29,5,26,1,29,4,28,2,29,1,28,5,29,1,26,1,28,12,29,3,28,8,29,1,26,3,28,1,29,1,26,2,28,17,1,1,11,1,1,2,11,1,1,9,8,1,28,14,26,1,29,1,28,3,29,1,28,69,29,1,28,15,29,1,28,5,29,1,26,2,28,55,29,1,28,3,26,2,28,2,9,1,26,6,29,1,28,4,30,1,29,1,13,1,29,1,28,3,29,2,28,5,29,1,13,1,29,1,28,1,30,1,29,1,28,21,29,1,28,10,29,2,28,17,29,1,30,1,29,1,28,40,26,1,9,1,15,1,26,1,28,5,26,2,28,1,26,2,27,1,26,1,28,5,29,4,28,1,29,1,28,6,29,2,28,4,8,1,7,1,29,1,28,3,29,1,28,2,8,1,29,1,28,3,9,1,7,1,28,1,27,1,1,1,9,1,25,1,29,1,28,1,27,1,9,1,27,1,28,2,12,2,29,2,6,2,7,1,6,2,29,1,28,2,1,427,}, + {1,1,28,1,11,1,16,1,10,1,11,1,12,2,9,1,8,1,9,1,16,1,10,1,16,1,11,2,12,2,11,1,9,1,11,1,16,1,28,1,7,1,11,1,7,1,8,1,1,2,11,2,1,2,11,2,1,1,11,1,16,1,28,10,29,1,28,6,13,1,28,5,30,2,28,5,29,3,30,1,29,3,26,1,25,2,26,2,9,1,26,1,28,1,29,2,28,2,30,1,9,1,28,1,13,1,9,1,29,2,30,1,29,1,28,2,29,2,28,2,13,1,9,1,30,1,26,1,30,1,29,2,26,2,29,1,30,1,29,7,28,2,29,1,28,3,29,1,28,12,29,1,26,1,13,2,26,1,29,1,28,8,26,4,29,1,28,17,6,1,1,1,11,1,1,12,9,1,28,14,30,1,28,3,29,2,28,90,29,1,26,2,29,1,28,16,29,1,28,39,29,1,28,2,29,2,28,1,25,1,14,1,9,1,26,4,28,1,29,1,28,4,30,2,13,1,28,3,29,3,28,2,29,1,28,3,13,1,29,2,26,1,30,1,26,1,29,1,28,24,29,2,28,3,29,1,28,1,29,2,28,1,30,2,28,16,26,1,30,1,28,22,29,2,28,14,9,2,26,1,28,6,27,1,28,2,25,1,26,1,9,1,26,1,28,1,26,1,28,5,29,2,28,4,26,1,29,1,28,5,29,1,28,3,29,1,8,1,7,1,6,1,28,2,7,1,28,1,16,1,6,1,28,2,29,1,28,2,29,1,28,2,12,1,27,1,17,1,9,1,28,2,26,1,28,2,9,1,12,1,28,2,29,1,28,1,6,2,28,2,9,1,16,1,29,1,28,1,1,425,}, + {1,1,9,1,11,1,16,1,9,1,11,3,16,1,9,1,12,1,16,1,9,1,12,2,16,1,12,1,11,2,16,1,17,1,6,1,28,1,17,1,29,1,10,1,11,1,1,3,11,1,1,1,11,5,12,1,10,1,28,4,13,2,28,9,29,1,13,1,28,3,29,1,28,2,29,1,28,5,29,4,28,1,30,1,29,1,26,3,9,2,26,1,29,1,28,1,29,2,28,3,13,1,30,1,29,1,9,1,13,1,29,1,13,1,28,2,29,2,28,2,13,1,9,1,13,1,26,1,28,1,30,1,29,1,28,1,26,2,29,1,30,1,29,1,28,2,26,2,28,2,26,1,28,2,29,1,26,1,29,1,28,11,29,1,30,2,28,2,29,1,26,1,29,1,28,8,29,1,25,2,28,19,29,1,1,1,11,1,1,7,11,1,1,4,13,1,28,14,30,1,29,1,28,93,29,1,26,3,28,15,29,1,28,1,29,2,28,37,29,2,28,3,26,2,28,1,26,1,15,1,9,1,29,1,26,2,28,1,29,2,28,4,26,1,13,1,28,2,29,3,28,1,29,2,28,4,29,2,28,4,29,1,30,1,29,1,28,15,29,1,28,6,29,2,28,7,29,1,30,1,29,1,30,1,13,1,29,2,30,1,28,12,30,1,29,1,28,20,29,1,28,11,26,1,28,3,26,1,9,2,26,1,28,6,26,1,28,1,26,1,9,1,26,2,28,2,26,2,28,5,26,1,28,3,29,1,30,1,26,1,13,1,30,1,28,5,29,1,28,2,6,2,29,1,28,3,29,2,9,1,28,2,6,1,7,1,6,1,29,2,28,2,27,1,12,1,11,1,9,1,28,5,7,1,16,1,6,1,28,2,6,1,28,1,7,1,29,1,7,1,33,1,16,1,5,1,28,1,1,424,}, + {28,1,16,1,17,1,16,1,9,1,11,2,17,1,12,1,33,1,16,1,10,1,7,1,16,1,12,2,17,1,12,1,11,1,9,1,6,1,9,2,6,2,17,1,1,2,11,2,1,6,11,3,16,1,25,1,30,1,26,1,13,2,26,1,29,1,30,2,28,5,30,1,13,1,28,6,29,2,28,8,30,1,26,1,29,1,28,2,29,1,26,3,29,4,28,3,30,1,13,1,29,1,26,1,9,1,29,4,30,1,29,2,13,1,9,2,26,1,9,1,26,1,29,3,26,2,28,3,29,1,30,1,29,1,28,2,29,1,28,3,29,1,26,1,29,1,28,12,29,1,28,10,29,1,28,4,29,2,28,19,8,1,1,1,11,1,1,3,11,1,1,7,14,1,28,14,29,1,30,1,29,1,28,93,26,2,28,49,26,1,28,9,29,1,28,2,30,1,26,1,28,3,26,2,29,1,28,8,29,1,30,1,29,1,28,2,29,6,28,12,29,3,28,13,29,1,28,7,29,2,28,5,29,1,28,4,29,2,28,2,29,1,30,2,29,2,28,29,29,1,28,15,26,1,15,1,9,1,28,9,9,2,26,2,28,3,26,1,29,1,28,7,29,1,30,1,29,1,28,1,30,1,25,1,13,1,30,1,29,1,28,2,6,1,30,1,29,2,28,1,6,1,29,1,28,4,7,1,6,1,28,1,29,1,8,1,6,1,28,2,27,1,28,2,12,1,9,1,11,1,27,1,28,1,26,1,28,3,6,1,8,1,28,2,33,2,6,1,28,3,6,1,5,1,16,1,28,1,1,423,}, + {28,1,12,1,9,1,16,2,1,1,11,2,9,2,12,3,11,2,17,1,16,2,11,1,16,1,7,1,17,1,11,1,29,1,12,1,11,1,1,1,11,3,1,2,11,4,16,1,9,1,16,1,9,1,25,1,29,1,26,1,28,2,26,1,29,1,30,1,28,2,29,1,28,3,30,1,26,1,28,2,29,1,28,2,29,1,13,2,28,1,29,3,28,2,29,1,30,1,26,1,28,3,29,1,26,1,29,7,28,4,9,1,13,1,29,1,13,1,25,1,13,1,29,1,28,1,30,1,13,1,9,1,13,2,26,1,13,3,30,1,26,1,29,1,28,1,29,1,28,2,29,1,13,1,26,1,28,3,30,1,28,3,29,1,26,2,28,23,26,1,29,1,28,24,16,1,1,2,11,1,1,5,9,1,8,1,9,2,13,1,28,15,29,2,28,2,29,2,28,75,29,1,28,2,29,1,28,9,29,1,26,1,29,1,28,49,29,2,28,8,29,2,28,1,29,1,13,1,26,1,28,1,29,1,28,2,26,2,29,3,28,4,29,1,26,1,29,1,28,2,29,7,28,15,29,2,28,20,29,1,28,5,29,1,28,8,29,1,28,3,29,1,28,16,29,1,28,26,29,2,26,1,9,1,26,1,28,5,9,1,27,1,28,1,26,5,27,1,28,3,29,2,28,4,29,2,28,4,30,2,28,1,29,1,28,1,29,2,30,1,29,3,7,1,8,1,29,1,28,4,9,2,28,2,7,1,6,1,29,1,28,1,29,1,9,1,10,1,27,2,15,1,9,1,27,1,12,1,26,1,28,2,29,1,9,1,29,1,28,1,29,2,28,1,29,1,28,2,6,1,16,1,11,1,16,1,28,1,1,422,}, + {28,1,17,1,8,1,9,1,12,1,11,3,16,2,12,1,16,2,17,3,11,2,16,1,7,2,9,1,11,1,1,2,11,3,1,2,11,2,1,1,11,2,17,1,9,1,7,2,30,1,29,1,28,9,29,3,30,3,28,2,29,2,28,1,30,1,13,1,9,1,26,1,29,2,13,1,26,1,29,2,25,1,28,3,29,1,26,2,28,1,29,2,26,1,30,1,29,3,28,3,13,1,9,2,30,2,9,1,26,1,30,1,13,1,9,2,26,1,29,2,30,1,28,1,26,1,13,1,9,2,26,1,13,2,9,1,13,2,26,1,29,1,26,2,29,3,28,2,29,2,28,23,30,1,29,1,28,24,11,3,1,3,9,1,29,1,28,21,29,1,28,3,29,3,28,73,29,3,28,1,29,1,28,8,29,1,26,1,29,1,28,20,29,1,28,39,30,1,29,2,30,1,26,1,29,2,26,1,28,3,29,2,30,1,29,1,28,3,29,1,26,1,30,1,28,2,29,8,28,1,29,2,28,13,29,3,28,8,29,1,28,10,29,1,28,3,29,1,28,42,29,1,28,14,26,1,28,2,29,1,28,6,9,1,26,2,28,1,26,1,9,1,26,1,28,1,9,2,28,9,30,1,28,2,29,1,26,1,13,1,30,1,28,3,29,3,28,1,30,1,6,1,8,1,6,1,28,5,6,1,9,1,28,1,29,1,6,2,8,1,28,3,27,1,28,2,12,1,9,1,11,1,12,1,9,1,28,2,27,1,10,1,6,2,28,1,29,1,6,4,9,1,12,1,16,1,11,1,9,1,28,1,1,421,}, + {28,1,17,1,6,1,9,1,12,1,11,6,12,2,17,1,12,1,17,1,11,1,1,1,16,1,29,2,6,1,16,1,1,1,11,4,1,1,11,2,1,1,11,2,17,1,16,1,8,1,30,2,29,2,30,1,28,15,29,1,30,2,29,1,28,1,29,1,26,2,28,2,26,1,13,1,30,2,13,1,28,4,29,1,26,1,28,2,29,1,26,2,29,4,28,3,13,1,14,1,13,1,28,1,29,1,9,3,13,1,30,3,29,1,28,3,29,1,9,1,14,2,15,1,14,1,15,1,26,3,30,1,26,2,29,1,26,1,29,1,28,30,29,3,28,19,29,1,1,1,11,2,1,2,29,1,28,22,29,2,28,2,29,1,28,1,29,3,28,70,29,3,28,3,29,1,28,6,29,1,26,2,28,22,29,1,28,28,29,1,28,10,29,1,28,1,26,1,13,1,28,2,29,1,28,1,29,2,28,2,30,1,29,1,28,1,30,1,28,2,30,1,13,1,29,1,28,1,29,4,28,2,29,1,28,3,29,2,28,14,29,4,28,6,29,1,28,10,29,2,28,12,29,1,28,19,29,1,28,24,29,2,28,1,29,1,28,8,26,2,28,4,29,1,26,4,9,1,29,1,28,7,30,1,28,3,29,1,30,1,6,1,13,1,28,4,13,1,6,2,29,1,6,1,29,1,28,3,6,1,28,2,7,2,6,2,28,1,7,1,6,2,28,4,29,1,12,1,26,1,12,2,28,2,29,1,10,1,29,1,6,1,28,1,29,1,6,1,29,1,16,1,12,1,9,1,16,1,9,1,17,2,29,1,28,1,1,420,}, + {28,1,16,1,6,1,9,1,12,1,11,3,16,1,17,1,11,2,1,2,11,3,1,1,11,1,7,1,28,1,10,1,11,1,16,1,17,1,11,1,1,1,11,6,12,1,9,1,8,1,30,1,29,2,28,2,29,1,28,1,30,1,28,12,30,1,29,1,28,1,29,2,28,2,29,2,28,3,30,1,26,3,28,2,29,1,28,2,29,4,30,2,29,2,30,2,29,1,28,3,13,1,14,1,9,1,30,1,26,1,25,1,9,1,13,1,29,2,30,1,26,1,30,1,28,4,13,1,9,1,13,1,9,2,26,1,13,1,9,1,26,1,28,35,26,1,13,1,26,1,28,19,1,1,11,2,1,2,7,1,28,23,29,1,28,3,29,1,28,2,29,1,28,71,29,1,26,1,29,1,28,2,29,1,28,3,29,5,26,1,29,1,28,51,29,1,28,9,29,1,26,1,30,1,26,1,29,1,28,2,29,1,28,1,29,1,26,1,29,1,28,1,29,1,28,2,30,1,29,1,28,1,26,1,13,1,28,2,29,1,28,1,29,4,28,3,29,2,28,17,29,1,30,1,29,1,28,16,29,2,28,2,29,3,28,6,26,1,30,1,28,17,29,1,28,5,29,1,28,20,29,1,26,1,28,9,26,1,9,2,28,1,26,2,28,3,9,1,25,1,26,1,15,1,26,1,28,5,29,3,28,5,29,2,30,2,29,1,28,1,13,1,29,2,6,1,30,1,7,1,6,1,28,1,29,1,9,1,28,2,29,1,7,1,6,2,28,1,6,3,9,1,28,1,10,1,29,1,28,3,25,1,12,1,11,1,28,2,6,1,7,1,6,1,28,2,6,2,16,3,11,1,7,1,10,1,16,1,11,1,28,1,1,420,}, + {28,1,9,1,6,1,16,1,11,3,12,1,16,1,9,1,10,1,7,1,16,1,1,1,11,1,1,2,11,2,16,1,6,1,9,1,1,1,16,1,11,5,1,1,11,3,16,1,10,1,25,1,26,1,30,2,29,1,28,11,29,1,30,2,29,1,30,1,13,1,26,1,28,3,29,1,28,1,29,1,28,1,29,1,28,2,29,1,30,1,26,1,30,1,28,1,29,1,28,4,30,4,29,2,30,4,28,1,29,1,28,2,9,1,14,1,9,1,26,1,13,1,9,2,13,1,29,2,26,1,13,1,28,4,29,3,9,3,25,1,9,1,26,1,28,29,29,1,28,5,29,1,26,1,29,1,28,18,8,1,1,1,16,1,11,1,1,1,15,1,28,24,29,1,28,2,29,1,28,74,29,1,26,2,29,1,28,2,29,1,28,3,29,4,26,1,28,2,29,1,28,9,29,1,28,50,29,1,13,2,29,1,28,3,29,2,28,1,29,2,28,6,29,1,26,1,30,1,28,2,29,1,28,2,29,3,28,3,29,1,28,19,29,3,28,3,29,1,28,15,13,1,9,1,30,1,28,6,26,1,30,1,28,21,29,1,28,1,30,1,13,1,29,1,28,18,29,2,28,2,29,1,28,6,26,1,27,2,26,2,28,1,26,2,28,2,27,2,9,1,29,1,28,4,29,1,28,1,29,2,28,4,29,2,28,1,29,1,13,1,26,1,28,1,30,1,28,2,8,1,6,2,7,1,28,2,8,1,29,1,28,2,7,1,29,1,7,1,29,1,6,1,29,1,28,1,6,1,28,1,7,1,11,1,28,4,26,1,11,1,9,1,28,1,29,1,9,1,10,1,28,2,9,1,8,1,6,1,7,1,11,1,1,1,7,1,6,1,10,1,1,1,11,1,28,1,1,419,}, + {28,1,9,1,29,1,16,1,11,3,17,1,16,1,9,1,7,1,6,1,16,1,11,1,16,2,11,1,16,2,1,1,17,1,9,1,11,10,12,1,10,1,27,1,13,1,30,1,29,2,28,1,29,1,28,1,29,1,28,11,29,1,13,1,9,2,28,3,29,2,28,1,29,1,28,1,29,3,28,1,29,1,13,1,29,1,28,2,30,1,29,1,28,2,26,2,30,1,29,4,30,3,28,1,29,2,28,1,13,1,15,2,14,2,15,1,9,1,13,1,26,1,30,1,29,1,30,1,29,1,28,1,13,1,14,1,15,2,14,1,15,2,25,1,26,1,13,1,26,1,28,27,29,1,26,1,28,25,6,1,1,1,12,1,11,1,1,2,7,1,28,1,29,1,28,2,9,1,28,19,30,1,28,2,29,1,28,1,29,1,28,72,29,3,28,7,29,4,26,1,29,2,28,9,29,2,28,50,29,2,13,1,28,2,30,1,26,1,28,1,29,2,28,1,29,1,30,1,29,2,28,3,30,1,26,1,28,2,29,3,28,1,29,3,28,3,30,1,28,20,29,1,30,1,29,1,28,2,29,1,28,15,9,1,14,1,30,1,28,2,29,2,28,4,30,1,29,1,28,41,29,2,28,2,29,1,28,4,26,1,28,7,26,2,27,1,26,1,28,2,26,1,15,1,26,1,28,2,29,2,30,1,28,8,30,2,29,1,13,1,29,1,28,1,30,1,28,2,8,1,7,1,30,1,13,1,29,1,28,1,30,1,29,2,28,1,9,1,6,1,8,1,28,1,6,2,28,1,6,2,28,1,11,1,9,1,28,5,12,1,10,1,28,1,29,1,9,1,6,1,28,2,6,1,29,1,7,1,11,1,9,1,28,3,29,1,1,1,16,1,28,1,1,418,}, + {28,1,6,1,29,1,9,1,1,1,11,1,12,1,17,1,12,1,9,1,8,2,12,1,11,1,16,1,12,1,16,2,6,1,16,1,1,1,11,7,1,1,11,1,17,1,9,1,29,6,28,3,29,2,28,11,29,1,30,1,13,1,25,1,28,3,29,1,28,1,29,1,30,1,28,1,29,1,26,1,28,3,30,1,29,1,28,3,26,1,28,2,13,1,26,1,30,1,29,2,30,3,29,2,30,1,29,1,28,1,29,1,30,2,13,1,9,2,14,4,15,1,9,1,14,1,9,1,15,1,14,5,15,1,9,1,15,1,26,1,29,1,26,1,28,26,26,1,28,2,26,1,28,23,16,1,1,2,11,2,1,2,28,3,30,1,13,1,9,1,28,18,30,1,28,2,29,1,28,74,29,1,28,3,29,1,28,5,29,1,28,3,29,2,26,1,29,2,28,8,29,1,28,55,29,1,30,1,29,9,28,3,29,1,30,1,28,2,29,1,28,1,29,1,28,1,29,1,28,2,29,1,26,1,29,1,28,14,29,1,28,8,29,2,28,15,29,1,28,1,9,1,15,1,9,1,28,2,30,2,29,1,28,3,29,1,26,1,29,1,28,27,29,2,28,2,29,1,28,7,29,2,28,8,26,2,28,5,26,1,27,1,26,2,27,1,28,3,15,1,28,2,29,1,26,1,28,5,29,1,28,7,25,1,28,2,30,1,28,3,6,1,30,1,29,1,28,3,29,1,6,1,28,2,7,1,28,2,29,1,6,2,28,3,10,1,15,1,29,1,28,4,27,1,26,1,28,1,29,1,9,1,29,1,28,2,29,1,33,1,9,1,6,2,28,1,6,2,29,2,7,1,28,1,1,418,}, + {28,1,29,1,28,1,7,1,11,2,17,1,11,1,16,1,9,1,7,1,10,1,11,2,16,1,17,1,16,1,17,1,7,1,16,1,1,1,11,8,1,1,11,1,7,1,28,5,29,1,28,3,30,1,29,1,28,11,29,2,9,1,25,1,28,3,29,1,28,1,29,1,28,2,29,2,28,3,30,1,29,1,30,1,29,1,28,1,30,1,29,1,28,2,26,3,30,4,29,1,28,3,29,2,30,2,13,1,30,1,29,2,26,1,13,1,9,1,15,1,14,1,9,1,15,1,11,1,14,1,9,1,15,1,14,1,15,1,26,1,28,1,29,1,28,2,29,1,28,24,26,7,28,21,11,1,1,2,11,3,1,1,16,1,28,1,29,1,28,22,30,1,28,2,29,1,28,2,29,1,28,69,29,2,28,5,29,1,28,2,29,3,28,7,29,3,28,62,29,1,30,1,29,9,28,3,29,1,30,1,28,2,29,1,28,1,29,1,28,3,29,3,28,26,29,1,28,4,29,1,28,6,29,2,28,3,26,2,13,1,26,1,29,1,30,1,28,7,29,1,13,1,28,15,26,1,28,11,30,1,28,10,29,2,28,8,26,1,9,1,29,1,28,3,26,1,9,1,26,5,28,2,26,2,28,1,29,2,28,4,29,1,13,1,29,1,28,8,29,1,26,1,13,1,28,7,29,1,28,4,29,1,7,1,29,1,6,2,29,2,28,2,17,1,7,2,28,5,12,1,28,2,10,2,29,1,28,1,6,1,33,2,6,1,29,1,7,1,9,1,7,1,6,1,28,3,1,418,}, + {28,1,29,1,28,1,7,1,1,1,11,1,12,1,11,1,12,1,10,1,6,1,8,1,11,1,1,1,17,1,11,1,12,1,11,1,9,1,16,1,1,1,11,6,1,1,11,1,1,2,6,1,28,9,29,2,28,11,30,1,28,1,9,1,25,1,28,3,30,1,29,2,30,1,26,1,29,1,28,4,29,1,28,4,29,1,13,1,28,2,26,4,30,4,28,3,30,1,29,2,30,1,26,1,30,2,29,4,30,2,29,1,13,1,9,2,13,3,29,1,28,29,29,1,26,7,28,19,6,1,11,1,1,3,11,2,1,2,30,1,28,3,13,1,28,20,30,1,28,2,29,1,28,72,29,1,28,9,26,2,29,1,28,7,29,3,28,61,29,12,28,3,29,1,30,1,28,1,29,2,28,1,29,6,26,1,29,1,28,25,29,1,28,11,29,2,28,3,25,1,13,2,25,1,29,1,28,9,30,1,26,1,28,14,29,2,28,20,29,2,28,10,9,1,28,3,29,1,25,1,9,1,26,1,27,1,26,2,9,1,26,1,28,1,29,1,26,1,28,3,30,1,28,4,26,1,30,1,25,1,9,1,29,1,28,5,29,1,28,1,30,1,13,2,29,2,28,3,29,2,28,1,29,1,28,2,9,1,28,1,6,1,29,1,6,1,28,1,29,1,6,1,8,1,7,2,12,1,28,4,29,1,27,1,28,1,29,1,11,1,29,1,28,1,6,1,33,1,6,1,29,2,12,1,11,1,8,1,16,1,6,1,28,3,1,417,}, + {28,1,29,1,28,1,29,1,11,2,17,2,11,1,9,1,6,1,7,1,17,1,11,1,17,1,11,1,12,1,11,1,9,1,12,1,11,7,1,1,11,1,16,1,9,1,26,1,28,3,29,2,28,4,29,2,28,7,29,1,28,3,26,1,28,1,13,2,29,1,28,2,29,3,30,1,29,1,28,1,29,2,28,2,9,1,29,1,28,3,29,1,30,1,29,1,28,1,29,1,30,1,26,1,30,4,26,1,29,1,28,1,29,1,26,1,28,3,29,3,30,3,29,2,28,1,29,1,28,1,29,1,13,2,26,1,28,19,29,2,28,10,26,7,28,18,6,1,1,3,11,1,1,3,11,1,1,2,28,4,13,1,29,1,28,19,30,1,28,80,29,1,28,3,26,2,29,1,28,71,29,1,30,1,29,11,28,2,29,1,30,2,28,5,26,1,30,1,29,1,28,2,9,2,28,4,29,1,28,7,29,2,28,12,29,1,26,1,29,1,28,6,29,1,28,6,14,1,9,1,13,1,26,1,28,11,29,3,28,13,29,1,28,15,29,1,28,3,29,2,28,11,26,1,28,2,29,1,27,1,26,2,27,1,26,4,9,1,26,1,28,2,29,1,28,1,29,1,28,5,29,1,28,1,29,1,9,1,13,1,26,1,13,1,26,1,30,3,28,2,29,1,13,1,26,2,30,1,28,4,29,1,28,3,6,1,28,1,6,1,28,1,29,1,7,1,6,1,29,1,28,1,8,1,28,1,29,1,10,1,28,7,12,1,8,1,28,2,6,1,33,1,7,1,29,1,6,1,16,2,17,1,9,1,29,1,28,2,1,417,}, + {28,4,16,1,11,3,17,1,9,1,7,2,12,1,11,1,17,1,11,1,12,1,17,1,9,1,12,1,17,1,16,1,11,1,1,1,11,1,1,2,11,1,9,1,28,2,13,1,28,3,29,2,28,2,29,1,28,2,29,1,28,6,29,2,28,3,26,1,28,1,29,1,30,1,29,1,28,3,29,3,28,1,30,2,28,2,29,1,25,1,30,1,28,5,29,3,30,6,26,2,28,1,29,1,30,1,28,3,29,8,30,1,29,1,28,1,26,1,13,1,30,1,28,3,29,1,28,16,26,1,13,1,30,1,28,8,29,1,26,2,28,1,26,3,28,17,9,1,1,3,11,1,1,3,11,2,1,2,11,1,28,24,29,2,28,9,26,2,28,66,29,2,28,4,26,2,28,8,29,1,28,5,29,2,28,8,29,1,28,48,29,1,30,1,29,1,28,1,29,8,28,3,29,1,26,1,29,1,28,5,30,1,29,2,28,2,13,1,9,1,28,12,29,2,28,13,29,1,30,1,29,1,28,11,29,1,14,1,9,1,29,1,30,1,28,12,29,1,13,1,29,1,28,1,29,1,28,29,29,2,28,12,26,1,28,2,26,1,9,1,26,7,9,2,28,3,29,2,28,2,15,1,28,2,30,1,28,5,29,1,26,2,30,2,28,6,30,2,28,3,29,1,28,3,29,1,6,2,28,2,29,1,7,1,28,2,6,1,28,3,9,1,28,4,29,1,28,2,17,1,6,1,28,1,29,1,17,1,11,1,16,1,28,1,9,1,16,3,6,1,28,2,1,417,}, + {28,4,16,1,1,1,11,2,16,2,10,1,7,1,17,1,1,1,11,1,12,1,17,2,9,1,16,3,11,1,1,1,11,1,1,1,9,1,29,2,28,2,30,1,28,4,29,1,28,2,29,1,28,1,29,3,28,5,29,1,28,4,26,1,28,3,29,2,28,3,29,1,30,1,29,2,28,2,29,1,13,1,29,2,30,1,29,1,30,1,29,2,26,1,29,2,30,1,26,3,30,2,26,2,29,1,30,2,29,1,28,1,29,1,30,1,26,1,30,2,29,2,28,2,29,2,30,1,26,1,29,1,28,16,29,2,28,2,26,1,13,1,26,1,29,1,30,1,29,1,28,6,26,5,25,1,29,1,28,15,9,1,11,1,1,2,11,2,1,4,12,1,11,1,1,2,15,1,28,24,30,1,29,1,28,9,29,1,28,63,29,1,28,1,29,1,26,1,29,2,28,3,26,2,29,1,28,12,29,3,28,1,29,1,28,7,29,1,28,48,29,1,30,1,29,10,28,3,30,1,26,1,28,2,29,1,28,3,29,1,28,5,26,1,13,1,29,2,28,9,29,1,28,16,29,3,28,9,26,1,11,1,9,1,28,18,30,1,28,29,29,2,28,12,29,1,28,3,26,8,9,1,25,1,28,1,29,2,28,3,13,2,28,2,26,1,29,1,28,2,29,2,28,3,29,1,26,1,29,1,28,5,29,1,26,2,29,1,28,1,30,1,28,4,29,1,7,2,28,3,7,1,28,1,29,1,9,1,28,3,6,1,28,3,29,1,9,1,28,2,6,1,29,1,7,1,16,2,11,1,12,1,7,1,12,1,9,1,17,1,7,1,28,1,29,1,28,1,1,416,}, + {28,2,29,1,28,1,16,1,11,1,16,1,12,1,16,2,10,1,6,1,12,1,1,1,17,1,9,1,12,1,11,1,9,1,10,2,16,1,1,1,11,2,9,1,28,2,29,1,13,1,26,1,29,2,28,2,29,2,28,2,29,5,28,5,29,1,28,4,30,2,28,3,30,2,29,1,28,2,29,1,28,3,13,1,15,2,13,1,9,2,25,1,13,1,26,1,29,1,26,1,29,2,30,2,26,2,30,2,26,4,30,1,26,1,30,3,29,8,26,1,29,1,28,9,29,1,28,7,29,3,28,2,26,1,30,1,28,2,26,2,28,7,26,5,28,16,11,1,1,1,11,1,1,4,11,1,1,6,9,1,28,24,30,1,28,9,26,1,28,51,29,1,28,11,29,1,26,1,29,2,26,1,28,4,26,1,25,1,26,1,28,14,29,1,28,59,29,9,28,6,30,1,26,1,28,2,29,1,28,5,29,1,28,4,13,1,30,2,29,2,28,5,29,2,28,12,29,1,28,6,29,1,30,1,28,8,9,1,11,1,9,1,28,18,29,1,28,43,29,1,28,3,26,3,28,1,26,3,9,2,26,1,28,2,26,1,28,2,13,2,28,1,29,1,26,1,29,1,28,3,30,1,13,1,29,1,28,3,29,1,28,7,29,2,28,3,29,1,28,3,29,1,6,1,10,1,28,5,29,1,6,1,9,1,28,3,9,1,28,3,27,1,12,1,28,2,6,3,7,1,16,1,17,1,8,1,12,1,8,1,16,1,9,1,28,1,29,1,28,1,1,416,}, + {1,1,28,3,7,1,16,1,6,1,9,1,17,1,12,1,8,1,29,1,9,1,1,1,16,1,7,1,12,1,11,1,9,1,6,2,12,1,1,1,17,1,11,1,6,1,28,2,29,1,30,1,26,2,29,1,28,3,29,1,28,2,29,3,28,7,29,1,28,4,29,1,26,1,29,1,28,2,26,1,13,1,30,1,29,1,28,1,29,3,26,1,9,1,13,1,26,1,9,1,26,2,28,1,29,1,30,1,28,1,29,2,28,1,29,2,30,5,29,1,26,1,30,1,29,1,26,1,30,1,28,2,30,1,29,2,28,2,29,1,30,1,26,1,29,1,28,27,29,2,28,8,26,1,9,1,26,1,28,17,11,1,1,1,11,1,1,6,11,1,1,4,29,1,28,24,30,1,28,67,29,2,28,4,26,2,29,1,28,5,26,1,25,1,26,1,28,72,29,1,30,1,28,3,29,7,28,6,26,2,28,4,29,1,28,2,29,2,28,5,29,1,30,1,26,2,30,1,29,1,28,3,29,2,28,12,29,1,28,9,29,2,28,5,9,1,14,1,26,1,28,17,29,1,28,21,29,2,28,6,29,1,28,21,26,4,25,2,26,1,28,4,13,1,9,1,28,3,30,1,28,2,29,1,28,2,29,1,28,10,29,5,28,6,30,1,6,1,29,1,28,4,6,1,28,1,30,1,7,1,29,2,28,2,25,1,29,1,28,2,11,1,27,1,28,1,29,2,9,1,17,1,7,1,28,1,16,2,6,2,7,1,29,1,6,1,28,1,1,416,}, + {1,2,28,3,15,1,26,1,13,1,15,1,11,1,9,1,6,1,8,1,11,2,6,1,8,1,1,1,15,1,28,2,17,1,11,1,16,2,7,1,28,2,29,2,26,2,29,2,28,1,29,1,28,3,29,1,28,3,29,1,28,3,29,2,28,5,13,1,30,1,29,1,28,2,13,1,29,1,28,1,13,1,30,1,29,1,26,1,15,2,28,6,29,2,28,3,29,1,28,1,29,1,30,1,29,1,30,1,26,2,30,1,29,1,30,1,26,3,30,1,29,1,28,1,29,1,30,1,29,1,28,2,26,2,29,1,28,25,29,1,28,13,29,1,28,18,1,2,11,1,1,5,11,1,1,5,28,24,29,1,28,62,26,1,28,4,29,2,28,5,26,2,29,1,28,4,29,1,25,2,29,1,28,59,29,2,28,10,29,1,15,1,13,1,29,2,28,3,29,3,28,1,29,3,28,4,26,1,28,3,29,2,28,1,30,1,29,4,28,8,30,1,29,2,28,1,29,1,28,9,29,1,28,2,29,2,28,14,30,1,28,2,9,1,14,1,26,1,28,16,30,1,29,1,28,12,29,1,28,9,29,1,13,1,26,1,28,8,29,1,30,1,28,8,29,1,28,6,26,1,27,1,26,1,27,1,9,1,25,1,26,1,28,4,26,1,9,1,28,5,29,2,28,2,29,2,28,1,29,1,28,3,29,2,30,1,28,4,29,2,28,8,30,1,29,1,28,2,29,1,28,3,6,1,29,2,28,1,29,1,28,1,29,1,9,1,28,2,12,1,11,1,12,1,29,1,28,1,29,1,9,1,11,1,29,2,12,1,10,1,28,2,6,1,7,1,28,2,1,415,}, + {1,2,28,3,14,1,25,1,30,1,9,1,16,4,11,2,8,1,9,2,29,1,28,1,6,1,15,1,11,1,16,1,14,1,15,1,28,2,29,1,28,2,30,1,26,1,28,4,30,1,26,1,29,1,28,3,29,1,28,9,29,1,13,1,29,2,28,1,26,1,9,1,30,1,28,1,29,1,30,1,29,1,13,1,15,1,9,1,28,2,29,1,30,1,28,3,30,1,13,1,29,3,28,1,29,1,30,2,29,2,30,5,26,3,29,1,28,2,29,1,30,2,26,2,30,1,29,1,28,58,11,1,1,13,28,84,29,1,26,1,29,1,28,4,29,2,28,5,29,2,28,5,26,1,25,1,26,1,28,74,13,1,9,1,13,1,30,1,28,2,29,4,28,1,29,1,28,4,29,2,30,1,28,3,29,2,28,1,29,5,28,10,29,3,28,24,29,1,28,2,26,2,28,2,25,1,11,1,26,1,28,16,29,1,28,13,29,1,28,14,29,3,28,6,29,1,28,6,29,1,28,2,29,1,28,3,9,1,26,2,27,2,25,2,28,3,26,1,9,1,30,1,28,1,29,2,28,4,29,3,28,3,30,1,28,1,29,1,28,2,30,1,29,1,28,4,29,1,30,1,28,9,29,1,28,2,13,1,28,4,29,1,13,1,28,3,26,2,28,1,9,1,27,1,29,1,9,1,16,1,28,1,29,1,16,1,11,1,16,1,6,1,10,1,6,1,28,2,16,1,28,2,1,415,}, + {1,3,28,2,15,1,9,1,28,1,29,1,8,1,16,1,11,2,17,2,9,1,29,1,7,2,6,1,7,1,15,1,11,1,9,1,11,1,9,1,28,2,29,3,26,2,29,1,28,3,30,1,13,1,28,13,29,1,30,1,13,1,29,1,28,2,13,2,29,1,28,2,29,1,26,1,13,1,9,1,25,1,30,1,29,1,30,1,13,1,28,3,30,1,9,1,29,1,30,2,28,1,29,1,30,3,29,3,26,1,29,2,30,1,26,2,29,1,28,3,26,1,13,1,26,1,29,1,28,35,29,1,30,1,28,23,1,14,28,84,29,2,28,5,29,2,28,5,29,2,28,4,26,3,28,76,15,1,25,1,26,1,29,1,28,2,29,2,28,1,29,2,28,4,29,1,26,1,29,1,28,3,29,1,26,1,28,2,29,5,28,11,29,1,30,1,29,1,28,10,29,1,28,11,30,1,28,2,15,1,25,1,28,2,26,1,14,1,25,1,28,1,29,1,28,28,29,1,28,14,29,1,28,14,30,1,28,3,26,1,28,3,9,1,26,1,9,1,26,2,9,1,26,1,28,2,25,1,26,1,28,3,29,1,28,6,30,1,28,7,29,1,28,1,30,2,28,4,29,2,28,2,29,1,28,9,13,1,29,1,28,4,30,1,28,4,26,1,28,1,26,2,28,1,27,1,10,1,29,1,10,1,9,3,28,1,10,1,16,1,28,2,16,1,29,1,28,1,1,415,}, + {1,3,28,2,29,1,9,1,28,1,29,1,13,1,9,1,17,3,11,1,9,1,6,1,7,1,8,1,6,1,28,1,8,1,11,2,15,1,6,1,28,5,26,1,25,1,13,1,26,1,29,1,28,1,26,1,13,1,28,1,29,1,28,11,29,1,30,2,28,2,29,1,26,1,29,1,28,3,29,2,28,2,26,1,30,1,28,3,29,1,30,1,28,2,26,1,29,1,30,1,26,1,29,3,30,1,26,1,30,1,29,2,30,1,29,6,28,2,29,1,26,2,29,1,28,26,29,4,28,7,26,2,28,3,29,1,28,18,1,13,11,1,28,83,29,1,28,6,29,2,28,5,29,1,26,1,29,1,28,3,29,1,25,1,26,1,28,3,29,1,28,73,13,1,9,1,13,1,29,1,28,2,29,5,28,2,29,1,30,2,29,1,28,4,30,1,13,1,29,1,28,1,29,5,28,2,29,1,28,2,29,1,28,1,29,2,28,3,29,1,30,1,28,10,29,1,28,13,30,1,9,2,26,1,28,1,26,1,9,1,26,1,29,1,30,1,28,2,29,1,28,25,29,1,28,13,29,1,28,15,30,1,28,6,26,1,9,1,26,1,27,1,9,2,26,1,28,2,26,1,13,1,28,6,29,1,28,8,30,1,28,3,29,1,28,1,29,1,28,1,26,1,28,6,30,1,29,1,28,2,29,1,28,7,6,1,30,1,28,1,29,2,28,1,29,2,28,1,29,1,30,1,28,5,6,1,10,1,16,2,9,1,10,1,29,1,28,1,8,1,9,1,28,1,6,1,8,1,28,1,1,415,}, + {1,3,28,3,9,1,28,1,30,1,9,4,15,1,11,1,9,1,6,1,29,1,6,1,7,1,28,2,9,1,11,1,1,1,9,1,29,1,28,1,29,1,28,2,26,1,14,1,9,5,25,1,29,2,28,8,29,5,28,2,26,1,25,1,29,1,28,4,29,1,28,3,30,1,13,1,28,3,29,1,30,1,28,2,29,1,30,1,29,1,13,2,30,1,29,2,30,2,29,8,28,2,29,1,30,1,26,1,29,1,28,26,26,5,28,31,11,1,1,12,11,1,28,23,29,1,28,66,29,2,28,4,29,1,26,2,28,3,26,1,25,1,26,1,28,78,29,1,25,2,26,1,29,1,28,2,29,2,28,2,29,2,26,1,30,1,29,1,28,5,29,1,26,1,28,2,29,5,28,2,29,3,28,3,29,1,28,4,29,4,28,18,29,1,28,1,29,2,28,1,9,2,28,1,25,1,9,1,30,1,28,1,29,1,28,27,29,2,28,35,25,1,9,1,26,1,9,1,26,1,15,1,27,1,28,2,26,1,25,1,28,16,30,1,28,3,29,1,28,4,30,1,28,4,29,2,28,2,29,1,28,6,29,4,28,1,29,1,13,1,29,2,28,2,29,1,27,1,28,5,10,1,12,1,6,2,16,1,12,1,7,1,28,1,29,1,11,1,16,1,28,1,6,1,28,1,1,415,}, + {1,4,28,2,15,1,30,1,28,1,13,2,30,2,9,1,14,1,9,1,28,1,8,1,11,1,17,1,7,1,28,1,8,1,17,1,1,1,11,1,25,1,28,1,9,2,30,1,9,2,15,2,14,1,15,1,9,1,25,1,26,1,29,1,28,8,29,1,30,1,29,2,30,1,29,2,9,1,15,1,28,4,29,2,28,3,30,1,13,1,26,1,28,2,29,3,28,1,29,1,13,1,30,1,26,1,25,1,13,1,29,1,28,2,29,5,30,1,29,2,28,3,29,3,28,25,29,1,26,1,25,1,26,4,29,1,28,30,1,5,11,1,1,7,11,1,28,23,26,1,28,64,29,3,28,5,9,1,26,1,28,3,26,3,28,80,26,1,13,2,30,1,28,3,29,1,28,2,29,1,26,2,29,1,28,3,29,2,28,1,29,2,28,2,29,4,28,4,29,1,28,3,29,1,30,2,28,5,29,1,30,1,29,1,28,19,26,1,28,2,13,1,29,2,13,1,9,1,13,1,28,29,29,1,28,29,29,1,28,6,26,1,25,2,15,1,9,1,26,1,28,2,25,1,26,1,28,8,30,1,29,1,28,7,29,1,28,8,29,2,28,4,29,1,28,9,30,1,8,1,28,4,7,1,25,1,29,1,28,3,27,1,16,1,9,1,6,2,28,1,10,1,16,1,28,2,6,1,9,1,16,1,8,1,28,2,17,1,28,4,1,414,}, + {1,4,28,2,13,1,9,1,28,3,30,1,9,1,15,2,13,1,8,1,1,2,16,1,29,2,9,1,11,1,16,2,9,1,26,1,28,3,13,2,14,2,15,2,25,1,26,1,13,1,26,2,30,1,29,1,30,1,26,1,30,1,28,2,29,2,28,1,26,1,9,1,26,1,13,1,9,1,13,1,29,1,28,4,30,1,29,1,28,3,26,1,30,1,28,3,29,3,30,3,29,2,26,2,29,1,28,2,29,8,28,30,26,1,25,1,26,2,27,1,26,5,28,27,14,1,1,2,11,1,1,2,11,1,1,7,11,1,28,95,26,1,25,1,28,3,26,3,28,6,29,1,28,7,29,2,28,8,29,1,26,1,29,1,28,54,29,1,26,1,13,1,26,1,28,5,29,1,26,2,30,1,28,3,29,2,30,1,29,3,28,1,29,6,28,3,29,1,28,2,29,1,26,2,29,1,28,1,29,1,28,4,29,1,30,2,29,1,28,16,30,1,13,1,29,1,28,4,26,1,29,1,25,2,29,1,28,1,29,2,28,37,29,1,28,16,29,1,28,6,26,1,9,2,25,1,27,1,28,2,26,1,9,1,28,9,29,1,30,3,28,10,29,1,28,5,29,1,28,11,29,3,13,1,28,5,30,2,29,1,30,1,28,1,30,1,16,1,15,1,29,3,6,1,29,1,28,1,29,1,7,1,28,1,9,1,11,1,6,1,28,1,9,1,16,1,28,3,1,414,}, + {1,4,28,3,14,1,29,1,28,2,13,1,14,2,9,1,29,1,15,1,11,1,14,1,9,1,13,1,7,1,9,1,11,1,9,1,28,2,13,1,28,2,30,2,9,1,14,1,15,1,9,1,15,1,9,1,30,3,26,1,30,3,26,1,29,1,28,1,29,1,28,3,13,1,15,1,13,2,26,1,28,1,29,1,28,4,13,1,29,1,28,2,30,1,13,1,30,1,28,1,29,1,28,1,30,1,28,1,26,2,28,1,26,1,28,2,29,1,13,1,30,1,28,7,29,3,28,29,26,6,28,1,26,4,28,26,9,1,1,1,11,1,1,3,11,1,1,8,11,1,28,94,26,1,25,1,28,3,29,1,26,2,28,14,29,2,28,7,29,1,26,2,29,1,28,54,29,1,28,1,29,1,26,2,29,5,26,1,13,2,29,1,28,2,29,4,28,1,29,2,28,1,29,10,28,2,29,1,30,2,29,1,28,3,29,1,28,4,30,2,29,1,28,15,30,1,26,2,28,3,29,1,13,1,28,2,14,2,25,1,26,1,28,1,29,1,28,11,29,2,28,12,29,1,28,9,29,2,28,15,29,2,28,6,26,1,15,1,9,1,29,1,28,2,15,1,9,1,28,4,13,1,28,3,29,1,28,2,29,1,28,1,29,1,30,1,26,1,30,1,29,1,30,1,28,12,29,1,30,1,28,3,29,1,28,5,26,1,28,2,29,1,13,1,28,5,6,1,28,3,30,1,29,1,6,1,15,1,28,2,6,1,28,2,29,1,8,1,29,2,16,1,10,1,28,1,8,1,1,1,6,1,28,2,1,414,}, + {1,4,28,3,15,1,13,1,28,4,9,1,30,1,28,2,26,1,9,1,8,1,30,1,29,1,16,1,9,1,29,1,28,6,30,1,9,1,11,2,14,1,15,1,9,1,13,1,29,1,28,5,29,1,28,6,13,2,29,1,9,1,28,6,29,1,30,2,28,3,13,2,30,1,29,2,30,1,29,1,26,2,29,1,30,1,28,4,29,1,30,1,28,2,29,6,28,3,26,1,28,16,29,1,26,1,29,1,28,7,25,1,9,1,26,9,29,1,28,10,9,1,28,13,9,1,1,1,11,1,1,13,11,1,28,21,29,1,28,3,29,1,28,47,29,1,28,19,29,1,26,2,28,2,29,1,26,2,28,14,29,2,28,7,29,1,26,1,13,1,28,25,26,1,28,30,29,3,25,1,13,1,28,1,29,1,26,1,13,1,28,1,13,1,26,1,29,2,28,2,29,1,28,1,29,2,28,1,29,1,26,1,30,1,28,1,29,4,28,1,29,4,28,2,26,1,30,1,29,2,28,4,29,1,28,4,29,1,26,2,29,1,28,9,29,1,28,2,13,1,26,1,30,1,26,1,29,1,28,2,13,1,9,1,28,2,26,1,30,2,13,2,30,1,28,12,29,1,30,1,28,11,30,1,28,7,29,3,28,24,25,1,15,1,26,1,28,1,26,1,15,1,27,1,28,6,29,1,30,1,29,1,28,9,29,2,30,1,28,1,29,1,28,4,29,1,28,6,29,1,28,2,29,3,28,3,29,1,30,1,28,3,29,1,28,5,7,1,28,5,9,1,8,1,28,2,6,2,28,1,8,1,6,1,28,2,8,1,7,1,10,1,16,1,7,1,6,1,28,1,1,414,}, + {1,5,28,2,13,1,15,1,28,9,29,3,28,1,9,1,15,1,28,3,29,2,28,2,13,1,9,1,14,2,11,1,15,1,25,1,13,2,28,5,29,1,28,4,29,1,13,2,29,1,30,1,9,1,26,1,29,1,30,1,29,1,28,1,29,2,30,1,26,1,28,1,29,1,26,3,30,1,29,1,30,2,26,2,29,1,30,2,28,1,29,1,28,2,29,1,30,1,29,3,28,23,29,1,26,2,13,1,26,1,30,1,28,6,26,10,29,1,28,24,15,1,1,9,11,1,1,7,28,79,29,1,28,8,29,1,28,4,29,2,28,3,29,3,28,13,29,1,26,1,28,6,26,4,29,1,28,57,26,1,29,1,13,1,30,1,28,4,30,1,26,1,30,1,28,5,29,1,28,5,30,1,26,1,28,3,29,3,28,2,29,1,28,2,26,1,30,1,29,1,28,2,29,1,28,2,29,1,28,2,29,1,28,3,26,2,29,1,28,4,29,1,28,2,29,1,28,2,29,1,25,1,13,1,26,2,29,1,28,2,9,1,30,1,28,7,13,2,26,1,28,11,30,1,28,10,29,1,13,1,26,1,28,6,29,2,28,23,29,1,26,3,28,1,26,1,9,1,26,1,28,8,29,2,28,14,29,1,28,2,30,1,28,16,29,1,28,1,29,1,28,8,30,1,28,2,29,1,28,3,8,1,6,1,28,1,6,1,8,1,28,1,6,1,9,1,29,1,28,2,6,1,12,1,16,1,28,1,8,1,28,1,1,414,}, + {1,6,28,1,29,1,14,1,28,11,29,1,28,1,25,1,9,1,29,1,28,6,30,1,9,1,14,2,11,1,14,1,25,1,26,1,13,1,29,4,28,2,29,1,28,3,29,1,13,1,28,2,29,2,13,1,29,1,26,1,30,1,28,1,29,4,28,1,30,1,13,1,30,1,26,2,30,2,29,1,13,1,29,1,28,1,26,1,29,2,26,1,28,3,30,1,26,1,29,1,28,10,29,2,28,11,29,1,26,6,30,1,28,6,26,8,29,1,28,23,7,1,1,2,11,2,1,15,28,27,26,1,25,1,26,1,28,44,1,4,28,2,29,4,28,29,29,2,28,6,13,1,25,1,26,2,28,59,26,3,28,5,13,1,30,1,28,8,29,1,28,4,13,1,26,1,29,1,28,1,29,2,28,2,29,2,28,1,29,1,26,2,29,1,28,2,29,2,28,1,29,1,28,2,29,2,28,3,29,1,26,2,29,1,28,2,29,1,28,2,26,1,28,2,15,1,13,1,26,3,28,3,9,1,30,1,28,5,29,1,28,2,29,1,13,2,30,1,29,1,28,8,26,2,29,1,28,3,29,1,30,1,29,1,28,5,30,1,13,1,29,1,28,2,29,2,28,24,26,1,28,2,29,2,28,1,29,1,28,3,26,1,28,6,29,1,28,13,29,2,28,2,29,1,28,8,29,1,28,5,29,1,28,3,29,1,28,8,30,1,6,1,28,3,29,1,28,1,7,1,9,1,28,2,9,1,28,1,29,1,1,1,9,1,28,3,7,1,8,1,7,1,16,1,28,1,1,414,}, + {1,6,28,2,13,1,9,1,28,10,30,2,25,1,15,1,26,1,28,4,29,1,28,2,13,1,14,1,11,3,9,1,13,1,29,1,30,2,26,1,30,1,28,2,29,2,28,2,29,2,28,1,29,1,30,1,28,3,29,2,28,2,30,2,29,4,26,1,13,1,26,3,30,1,26,1,30,1,29,1,13,2,26,1,30,1,28,3,29,2,28,11,29,1,28,13,29,4,26,1,13,2,26,1,28,6,26,6,28,23,9,1,1,1,11,2,1,5,11,1,1,12,28,27,26,1,13,1,26,1,28,42,1,7,28,13,29,1,28,2,29,1,28,15,29,3,28,6,9,2,26,1,28,62,26,2,28,4,30,1,13,1,28,2,29,1,28,2,29,3,28,1,29,1,30,1,28,4,26,2,29,1,28,2,29,3,28,2,29,1,26,2,29,1,28,3,29,1,28,1,29,1,28,2,30,1,29,1,28,4,29,1,26,2,29,1,28,3,29,1,28,2,9,1,11,1,26,1,30,2,29,1,28,2,29,1,9,1,28,6,30,1,28,5,29,2,28,8,29,1,26,1,30,1,28,15,29,2,28,23,30,1,26,1,28,2,26,1,29,1,28,5,26,2,28,6,29,2,28,12,30,1,28,4,29,1,28,7,29,1,28,2,29,1,28,2,30,1,29,1,28,1,29,1,28,2,29,1,28,6,30,1,9,1,28,3,29,2,28,1,7,1,6,1,28,1,7,1,29,2,12,2,9,1,28,4,6,1,16,1,6,1,1,414,}, + {1,7,28,2,15,1,26,1,28,9,29,2,30,1,9,1,26,1,28,4,29,1,28,1,29,1,13,1,15,1,14,1,11,2,9,1,13,1,30,1,28,2,29,2,28,8,29,1,26,1,30,1,28,3,29,1,30,1,28,2,26,3,13,1,28,2,13,2,26,1,13,1,9,1,13,1,30,1,13,2,26,1,13,1,26,1,28,2,29,2,28,6,29,1,28,24,29,1,26,2,29,1,28,7,26,4,28,22,15,1,11,1,1,1,11,3,1,1,11,1,1,2,11,2,1,9,11,1,1,2,28,22,29,1,28,48,1,11,28,6,29,2,28,20,29,1,26,1,29,1,28,6,9,1,25,1,29,1,28,4,26,1,29,1,28,53,29,1,28,3,29,1,26,1,28,4,13,1,26,1,28,2,29,1,28,2,29,2,30,1,29,1,28,1,29,1,30,1,29,1,28,3,29,1,30,1,29,1,28,1,29,2,28,3,29,1,13,1,26,1,28,4,29,1,28,1,29,1,28,2,30,1,29,1,28,6,29,1,26,1,13,1,28,5,14,2,25,1,30,1,26,1,29,1,28,2,26,1,13,1,28,1,29,1,28,1,29,1,28,3,30,1,29,1,28,15,29,1,28,14,29,2,28,22,29,1,30,1,29,1,28,2,25,1,28,2,29,1,28,4,26,1,29,1,28,7,29,1,28,14,29,1,30,1,28,3,29,1,28,8,29,1,28,2,29,2,28,3,29,1,28,8,9,1,29,1,28,3,29,1,28,2,6,1,28,1,30,1,6,1,28,1,6,1,12,1,11,1,7,1,29,1,28,3,7,1,9,1,28,1,1,413,}, + {1,7,28,2,30,1,14,1,29,1,28,8,13,1,9,1,26,1,25,1,28,6,29,1,13,1,9,3,14,2,13,1,29,1,26,1,29,2,30,2,28,7,29,1,13,1,30,1,28,4,29,1,26,1,29,1,28,1,13,1,30,2,13,1,29,1,28,1,13,1,9,1,13,2,9,1,13,1,28,1,26,2,28,1,30,1,28,3,29,3,28,21,29,1,30,2,28,18,26,2,28,21,8,1,1,3,11,1,16,1,12,1,11,1,1,4,11,1,1,12,9,1,28,70,1,17,28,3,29,1,28,17,29,1,26,1,29,1,28,6,26,1,25,1,9,1,28,4,29,1,26,2,28,58,29,1,26,1,28,4,26,1,30,1,28,2,29,2,28,1,29,1,30,1,29,6,28,3,29,1,30,1,29,1,28,1,29,2,28,3,29,1,13,1,26,1,28,4,29,1,28,1,29,1,28,2,29,2,28,8,30,1,26,1,30,1,28,3,9,1,11,1,9,1,30,1,29,2,28,2,13,1,30,1,28,1,29,1,28,1,29,1,28,3,26,1,28,11,29,1,28,15,29,1,28,3,13,1,28,21,29,2,30,1,28,2,29,1,30,1,28,2,29,1,28,4,26,1,28,25,26,2,28,15,29,1,28,2,29,2,28,2,29,1,30,1,28,4,30,1,29,1,28,4,6,1,28,3,29,2,28,1,6,2,7,1,16,1,8,1,9,1,28,3,8,1,28,1,1,413,}, + {1,8,28,2,26,1,29,1,28,8,15,2,26,1,9,1,28,5,30,2,13,1,9,1,13,2,14,2,29,1,28,1,30,2,29,2,30,1,29,1,28,3,30,3,13,2,30,1,28,4,29,1,26,1,29,1,28,1,13,1,30,1,28,1,29,1,26,1,29,2,26,1,13,2,30,1,29,1,28,1,29,1,28,4,29,1,28,3,29,1,30,1,28,15,29,1,30,1,28,2,29,2,30,2,28,11,29,1,28,7,29,1,28,19,14,1,1,2,11,3,16,1,17,1,1,2,11,1,1,2,11,1,1,7,16,1,28,3,9,1,11,1,6,1,28,69,1,19,28,20,29,2,28,6,29,1,9,1,25,1,28,4,26,2,29,1,28,59,29,1,26,1,28,4,26,1,29,2,28,2,29,4,28,1,29,1,26,1,29,1,28,2,29,1,30,5,29,4,28,2,29,1,13,1,30,1,28,2,29,1,28,1,29,1,28,1,29,1,28,2,30,1,29,1,28,9,29,3,28,2,29,1,1,1,15,1,29,2,28,3,13,1,28,5,29,1,28,2,29,1,28,10,29,3,28,38,29,1,30,1,29,2,28,2,26,1,28,2,13,1,28,4,26,1,25,1,26,1,28,22,29,1,28,3,9,1,28,7,29,1,28,4,29,1,28,3,29,2,28,2,29,1,28,2,29,2,28,3,29,2,28,1,29,3,7,1,28,6,29,1,28,2,6,1,29,1,9,1,28,3,6,1,28,1,1,413,}, + {1,8,28,3,30,2,28,5,30,1,28,1,26,1,28,3,26,1,28,3,30,1,13,3,30,1,13,1,9,1,14,1,15,1,30,1,29,2,28,3,29,7,30,4,29,1,28,2,29,2,26,1,29,2,13,1,30,1,28,2,25,1,13,1,28,2,30,1,28,3,30,1,28,2,29,1,28,1,29,1,28,1,29,1,30,1,29,1,28,17,29,1,13,1,29,1,28,18,29,1,28,23,29,1,1,2,11,2,1,2,17,1,16,1,11,2,1,3,11,2,1,5,17,1,28,77,1,21,28,16,29,2,28,7,26,1,25,1,26,1,28,3,29,4,28,61,26,1,28,2,29,2,13,1,29,2,28,2,29,1,30,1,29,6,30,2,29,1,28,1,29,2,30,1,13,2,29,1,28,1,29,1,28,2,29,1,13,1,30,1,28,2,29,3,28,1,29,1,28,2,30,1,29,1,28,11,29,1,30,1,29,1,28,1,14,2,26,1,28,3,29,1,25,1,28,2,29,2,28,1,29,1,28,2,30,1,29,1,28,9,29,1,28,19,29,1,28,17,30,3,29,2,28,3,29,1,28,8,26,1,29,1,28,1,29,2,28,23,29,1,28,1,29,1,28,11,30,1,28,3,29,1,28,3,30,1,28,8,26,1,28,1,29,1,28,3,6,2,28,5,29,1,11,1,28,2,16,2,28,4,1,413,}, + {1,9,28,3,13,1,29,1,28,10,13,1,26,1,28,3,30,2,29,1,28,2,9,1,15,2,26,1,30,1,29,2,28,3,29,1,30,1,29,1,28,4,30,1,13,1,30,1,28,2,30,1,26,1,28,1,29,1,30,2,26,1,30,1,28,2,30,1,13,1,26,1,29,1,28,3,25,1,28,6,29,2,26,2,28,17,29,1,13,1,29,1,28,8,29,1,28,32,29,1,1,1,11,1,1,1,11,2,1,1,11,1,16,1,17,1,11,1,1,3,12,1,17,1,1,5,9,1,28,77,1,23,28,23,29,1,26,2,28,3,26,1,29,1,28,64,29,1,26,1,29,1,28,2,29,1,30,1,29,1,28,2,29,2,28,1,29,3,30,1,29,5,28,4,29,1,13,1,26,1,28,1,29,1,28,1,26,2,28,1,29,2,28,1,29,1,28,2,29,1,28,2,13,1,28,9,29,1,28,2,13,2,28,3,14,1,26,1,28,3,30,1,26,1,28,1,29,2,28,2,29,1,28,3,26,1,28,26,26,1,28,11,30,1,28,6,29,1,26,1,30,1,29,1,28,5,30,1,28,10,29,2,28,24,29,1,28,6,26,1,28,7,29,2,28,2,29,1,28,7,29,1,28,3,29,1,28,1,13,1,29,1,28,1,29,2,28,1,9,1,29,2,28,4,16,1,7,1,29,1,6,1,7,1,29,1,28,3,1,413,}, + {1,9,28,3,30,1,29,1,28,2,29,1,28,7,13,1,26,1,28,8,9,3,26,1,29,5,26,2,30,1,29,1,28,3,29,2,30,2,28,1,29,1,28,5,29,2,26,1,29,1,28,1,29,1,26,1,28,2,25,1,30,1,29,2,28,4,29,1,28,3,29,1,30,1,28,6,29,1,28,11,29,1,28,2,29,1,28,4,29,3,26,2,28,30,7,1,1,1,11,5,17,2,11,2,1,2,11,2,1,5,11,1,28,77,1,25,28,3,29,1,28,3,29,1,28,13,29,1,26,2,28,3,26,1,29,2,28,65,29,2,28,3,30,2,28,2,29,1,30,2,29,7,26,2,28,6,29,1,26,1,28,2,26,2,28,1,29,7,28,1,29,1,26,1,28,11,26,1,13,1,28,4,13,1,9,1,29,1,28,2,30,1,28,6,29,1,28,3,30,1,28,24,29,2,28,12,9,1,29,1,28,3,29,1,30,3,28,4,30,1,13,1,30,1,28,11,29,2,28,12,29,1,28,12,29,1,28,5,29,1,28,1,29,1,28,6,30,1,28,4,29,2,28,5,29,1,28,5,29,1,28,1,29,1,28,2,7,1,9,1,7,1,28,2,29,1,28,1,9,2,6,1,29,1,28,6,1,412,}, + {1,10,28,3,26,1,28,2,26,1,29,1,28,6,29,1,26,1,29,1,28,6,29,1,13,2,9,1,13,1,28,1,29,3,30,1,29,5,28,4,30,2,29,1,13,1,28,2,29,2,28,1,29,1,28,1,26,1,30,1,28,2,30,1,28,1,29,1,13,1,28,7,30,1,28,7,29,1,28,8,29,2,28,13,26,6,28,29,8,1,1,1,11,5,12,1,11,2,1,2,11,1,12,1,1,6,9,1,28,76,1,27,28,2,30,1,29,2,28,1,29,2,28,11,26,1,29,1,28,4,29,2,28,68,29,2,28,2,29,1,30,2,28,2,29,1,30,1,29,2,28,2,29,1,26,2,30,1,29,1,28,2,29,2,28,3,13,1,29,1,28,1,26,2,28,9,29,1,13,1,29,3,28,7,29,1,9,1,28,2,29,1,13,1,28,1,25,1,14,1,9,1,29,1,28,1,29,1,28,3,29,1,28,6,29,1,28,24,30,1,28,13,13,1,28,3,29,1,30,1,26,1,29,1,28,4,30,1,29,1,28,2,29,1,28,37,29,2,28,3,30,1,29,1,28,1,29,1,28,4,29,2,28,1,29,1,28,7,29,1,28,2,29,1,28,3,30,1,28,1,29,2,28,3,29,1,15,1,6,1,28,4,7,1,16,1,8,1,7,1,29,2,28,4,1,412,}, + {1,10,28,3,29,1,28,11,29,1,30,1,29,1,28,3,29,1,28,1,29,1,30,1,29,1,9,2,29,2,28,1,29,2,28,3,29,2,28,4,26,1,29,1,28,1,15,1,26,1,28,1,29,1,26,1,28,3,30,1,29,2,28,2,29,1,26,1,28,8,29,1,30,1,28,8,29,1,28,19,26,8,29,1,28,28,8,1,1,1,11,5,12,1,11,1,1,3,11,2,1,2,11,1,1,3,29,1,28,75,1,29,28,5,29,1,28,11,29,1,26,1,28,3,29,1,26,1,29,1,28,69,29,1,30,1,28,3,30,1,13,1,30,1,28,2,29,5,26,2,30,1,28,2,29,1,28,1,29,1,26,1,30,1,28,2,30,1,29,1,28,1,26,1,30,1,28,3,29,3,28,3,30,1,26,1,28,1,29,2,28,5,29,1,28,1,29,1,13,1,28,2,9,2,28,1,26,1,30,1,26,2,29,2,26,1,13,1,30,1,26,1,29,1,28,5,30,1,29,1,28,21,29,2,28,17,30,2,28,5,29,1,28,29,29,2,28,12,29,1,28,4,30,1,29,1,28,3,30,1,28,1,30,2,28,2,29,2,28,13,26,1,28,2,30,1,28,1,30,1,28,2,9,1,29,1,28,4,7,1,9,1,29,1,7,2,9,1,28,5,1,411,}, + {1,10,28,4,30,1,28,10,29,1,30,1,29,1,28,5,29,1,28,2,25,1,9,1,29,2,28,1,29,2,30,1,29,2,28,6,29,1,28,2,15,1,9,1,28,2,30,1,29,1,28,1,29,1,30,1,29,1,28,4,29,1,28,18,29,1,28,10,29,1,28,4,29,1,28,2,26,1,25,1,26,8,29,1,28,7,29,1,28,19,16,1,1,1,11,2,1,1,11,1,17,1,11,2,1,2,11,2,1,7,28,27,29,1,28,48,1,31,28,14,29,2,28,4,29,1,28,13,29,2,28,57,29,3,28,2,26,2,29,1,28,1,29,1,30,1,28,1,26,1,9,1,13,1,29,1,28,3,30,1,28,2,29,5,30,1,29,1,26,1,30,1,29,2,28,6,29,1,13,1,30,1,28,1,29,2,28,7,26,1,29,1,28,1,30,1,15,1,26,1,29,2,28,5,29,1,30,1,29,1,26,1,13,1,26,1,28,4,30,1,29,1,28,20,29,2,28,4,29,1,28,12,29,1,30,1,29,1,28,2,29,1,28,1,30,1,28,3,29,1,28,27,30,1,28,11,29,1,30,1,28,10,29,1,30,1,28,3,29,1,28,1,30,1,28,2,29,1,30,1,28,8,29,2,28,1,13,1,28,1,26,1,29,1,28,1,30,1,8,1,29,1,28,3,6,2,28,2,6,1,16,2,28,5,1,410,}, + {1,12,28,15,29,2,28,4,29,1,28,2,26,1,9,1,28,2,29,5,28,4,29,2,28,1,29,1,30,1,28,1,26,1,25,1,28,2,26,2,29,2,28,7,29,1,28,2,29,1,28,19,29,2,28,1,26,1,30,1,29,1,28,8,26,1,25,1,26,9,28,27,16,1,11,6,1,4,12,1,11,1,1,7,28,27,30,1,28,47,1,35,28,10,29,1,28,5,29,1,28,12,29,3,28,58,29,4,28,2,26,1,30,1,29,1,26,5,29,1,28,3,26,1,29,3,28,2,29,4,28,1,30,2,26,1,13,1,26,2,29,1,28,4,26,1,30,1,29,1,28,9,30,1,28,2,9,1,15,1,28,3,29,1,28,2,29,1,28,5,30,1,26,1,29,4,26,1,28,16,29,1,28,3,29,2,28,6,30,1,28,8,29,2,26,1,29,1,28,4,29,2,28,1,29,1,30,1,28,26,29,1,28,4,29,1,26,1,30,1,28,7,26,1,29,1,28,7,29,1,28,2,29,2,28,5,29,1,30,1,28,1,29,1,26,1,28,6,29,1,28,2,13,1,28,1,30,1,28,1,29,3,28,1,30,1,6,1,28,4,8,1,7,1,28,2,8,1,9,1,29,1,28,1,6,1,28,6,1,406,}, + {1,12,28,16,30,2,28,6,29,1,9,1,29,1,28,1,29,3,28,9,30,1,13,1,29,1,28,1,29,1,28,1,29,1,30,1,26,1,13,1,28,15,29,1,28,11,29,1,30,2,13,1,9,3,25,1,13,1,29,1,28,8,26,10,29,1,28,4,29,1,28,22,14,1,11,6,1,2,11,3,1,7,9,1,28,27,30,1,28,46,1,37,28,28,29,2,28,60,30,1,29,1,30,1,28,2,26,1,30,1,29,1,30,2,13,1,29,1,28,4,29,1,30,1,28,1,29,1,30,2,29,1,28,1,29,2,28,4,29,1,26,2,13,2,26,2,28,13,29,1,28,3,15,1,9,1,28,6,26,1,28,2,29,1,28,6,26,1,13,1,30,1,28,16,29,1,28,11,30,2,28,5,29,3,26,1,29,1,28,5,29,1,28,32,29,1,28,5,29,1,28,5,29,2,28,12,29,1,28,9,29,1,28,3,29,3,28,3,26,1,28,4,30,1,29,1,28,3,6,1,28,3,16,1,17,1,6,1,28,2,29,1,9,1,28,1,6,1,28,2,9,1,10,1,29,2,28,3,1,403,}, + {1,13,28,15,29,2,28,5,29,2,9,1,29,1,28,3,29,4,28,5,29,1,30,1,26,1,28,2,29,1,30,1,26,1,28,2,13,1,28,26,13,1,28,2,13,1,9,2,13,2,29,1,28,3,30,1,28,6,29,1,26,8,29,1,28,4,29,1,28,23,1,1,11,5,1,3,11,2,1,5,11,1,1,2,28,2,29,1,28,24,29,1,30,1,28,45,1,40,28,24,29,1,26,1,28,62,26,1,29,2,28,1,26,1,25,1,29,1,28,3,13,1,28,3,29,1,30,1,29,7,28,2,30,2,28,8,29,1,13,1,26,2,30,1,28,1,29,1,28,2,29,2,28,7,26,1,9,1,28,10,30,1,28,7,29,1,28,36,26,1,13,1,30,1,28,4,29,3,28,29,30,2,28,11,29,1,28,2,29,1,28,6,29,1,28,14,30,1,28,2,30,1,28,2,30,1,28,5,30,1,28,2,26,1,28,3,25,1,28,2,6,1,28,3,6,1,15,1,9,1,7,1,29,1,28,1,16,1,28,2,6,1,28,2,11,1,12,4,9,1,29,1,28,2,1,400,}, + {1,14,28,21,30,1,13,1,30,1,29,2,28,4,30,1,28,3,13,1,30,1,29,1,30,2,28,34,13,1,9,1,28,9,29,1,30,2,29,1,28,5,29,1,26,8,28,3,29,2,28,23,16,1,14,1,11,4,1,2,11,3,1,9,29,1,28,66,29,1,28,5,1,41,28,2,30,2,29,1,28,2,29,1,28,14,29,3,28,64,30,1,28,1,26,2,28,5,13,2,30,1,28,1,29,3,30,1,29,4,28,2,29,1,26,1,30,1,29,3,28,8,13,1,9,1,26,1,28,5,29,1,28,2,30,1,29,1,28,2,13,1,29,1,28,51,30,1,28,1,29,1,26,1,13,1,30,1,28,4,30,2,28,16,29,1,28,16,30,1,28,20,30,1,28,2,29,1,28,3,29,1,28,7,29,1,28,2,30,1,28,3,29,1,28,1,29,1,28,2,26,1,28,2,29,3,28,1,26,1,29,1,28,2,7,1,28,2,29,1,15,1,16,1,9,2,6,1,9,2,28,4,6,2,28,1,29,2,16,1,9,2,16,1,29,1,28,1,1,398,}, + {1,14,28,2,29,1,28,17,30,1,13,1,30,1,28,3,30,1,29,1,28,1,29,2,28,3,29,1,28,38,13,2,28,5,29,1,28,3,29,2,28,3,29,1,28,4,26,1,9,1,26,5,28,28,29,1,14,2,11,3,1,3,11,2,1,10,29,1,28,72,1,42,28,20,29,3,28,65,26,2,30,1,28,6,26,1,13,1,30,1,28,1,29,3,30,1,29,5,28,1,29,1,13,1,29,1,28,1,29,1,30,1,29,4,28,6,26,1,13,1,29,7,26,1,29,1,28,2,26,2,28,51,26,1,28,7,29,3,28,55,29,1,28,6,29,1,28,7,29,1,28,2,29,2,28,3,30,1,29,1,28,2,29,1,28,2,30,2,28,2,30,1,28,4,30,1,28,2,7,1,9,1,16,1,7,1,6,1,7,1,16,1,28,4,6,1,16,1,6,1,28,6,9,2,29,1,28,2,1,395,}, + {1,15,28,17,29,1,26,1,13,1,26,1,29,2,30,1,26,1,30,2,29,1,28,23,29,1,28,11,26,1,28,6,29,1,28,1,29,2,28,9,29,1,28,4,30,1,28,4,29,1,26,3,28,31,11,1,14,1,17,1,15,1,17,1,11,1,1,2,11,2,1,11,29,1,28,71,1,44,28,16,29,2,28,69,29,1,13,1,29,1,28,2,29,2,28,2,29,1,13,1,26,1,28,2,29,1,30,1,29,7,30,1,13,1,29,1,28,2,29,5,30,2,28,5,29,1,26,1,29,2,30,1,29,1,28,1,29,2,28,3,26,1,28,51,29,1,30,1,29,1,28,4,30,1,26,1,13,1,29,1,28,17,26,1,28,45,29,1,28,7,29,1,28,2,29,2,28,3,29,2,28,2,29,1,28,5,29,1,28,2,29,1,28,2,6,1,28,4,7,1,16,1,8,1,28,1,9,1,30,1,28,3,29,1,1,1,11,1,12,1,11,1,9,1,7,1,6,1,28,3,6,1,8,1,7,1,28,2,1,393,}, + {1,16,28,16,29,2,28,4,30,2,28,25,29,1,30,1,29,1,28,10,29,1,26,1,28,5,29,1,28,17,29,1,28,1,29,1,28,36,14,2,16,2,15,1,11,2,1,1,11,2,1,12,28,71,1,46,28,4,29,1,28,8,29,1,26,1,29,1,28,72,29,4,28,4,26,1,13,1,29,1,28,1,29,1,30,1,29,4,30,1,29,2,30,1,13,1,29,1,28,2,29,1,28,2,29,1,28,1,29,3,28,7,29,2,28,2,29,1,28,3,26,1,29,1,28,48,29,1,28,1,29,1,13,1,28,1,29,4,26,3,30,1,28,58,29,1,28,5,29,1,28,9,29,2,28,2,26,1,28,4,29,2,28,4,26,1,29,1,28,1,30,1,28,9,7,1,8,1,28,1,6,1,7,1,28,4,11,1,1,1,11,1,1,1,11,2,1,1,16,1,7,1,28,5,8,1,9,1,28,2,1,390,}, + {1,16,28,63,9,1,26,1,28,5,29,2,28,16,29,2,28,34,6,1,14,2,9,2,16,1,11,1,1,2,11,2,1,13,28,71,1,47,28,9,29,1,26,2,29,3,28,73,26,2,29,2,28,3,26,1,25,1,30,1,28,2,30,1,29,1,30,4,29,1,28,1,30,1,13,1,29,1,28,2,29,6,28,2,29,3,28,4,29,2,28,1,29,2,28,3,29,1,28,36,29,2,28,10,29,1,26,1,13,2,29,1,28,1,29,1,30,4,29,1,28,67,29,1,28,3,29,1,28,4,29,1,28,3,29,1,30,1,28,4,29,3,28,4,29,1,13,1,28,4,30,2,7,1,28,3,29,2,28,1,8,1,7,1,28,3,10,1,1,1,17,1,11,3,1,3,11,1,9,1,7,1,28,3,29,1,9,1,28,1,1,390,}, + {1,17,28,62,15,1,26,1,28,6,29,1,28,25,29,1,28,22,1,1,28,1,1,1,28,1,6,1,1,1,11,1,9,2,16,1,11,1,1,2,11,2,1,13,28,70,1,48,28,7,29,5,28,76,30,1,29,2,26,1,29,1,28,3,26,2,28,2,29,2,30,1,29,1,30,2,29,1,28,1,30,1,13,1,29,1,28,1,29,8,28,3,29,2,30,1,28,2,29,3,26,1,28,42,30,1,29,1,28,7,29,2,26,3,29,1,28,1,26,1,13,2,30,1,29,2,28,72,29,2,28,5,29,1,28,2,13,1,28,2,29,1,28,4,29,2,28,2,29,1,26,1,28,4,9,1,30,1,13,1,9,1,28,5,8,1,9,1,28,4,1,2,11,1,1,1,11,1,17,1,11,3,1,2,11,1,10,1,28,3,7,1,28,2,1,388,}, + {1,18,28,60,29,1,9,1,28,15,29,3,28,8,29,2,28,26,1,6,28,1,1,2,9,2,11,1,1,1,11,3,1,14,28,70,1,49,28,5,29,2,28,83,29,2,28,3,29,1,26,1,29,1,28,1,29,4,30,1,29,2,28,1,30,1,13,1,29,1,28,1,29,1,30,1,29,3,28,2,29,4,28,4,29,5,28,43,29,1,28,7,26,1,13,2,28,3,13,3,30,1,29,1,28,35,29,1,28,5,29,1,28,1,29,1,28,12,29,1,28,18,29,1,28,4,29,1,30,1,29,1,28,1,29,1,28,2,29,1,28,2,29,1,28,2,30,1,28,8,13,1,28,2,13,1,9,1,30,1,28,2,30,1,13,1,8,1,29,1,28,3,16,1,11,1,12,1,11,3,1,2,11,3,1,2,11,1,10,1,28,2,7,1,28,1,1,388,}, + {1,19,28,1,30,1,28,57,13,1,9,1,28,12,29,1,28,2,26,1,25,1,26,1,28,9,29,1,30,1,26,3,28,19,1,9,28,1,1,1,11,1,29,1,12,1,1,2,11,2,1,15,28,69,1,51,28,91,29,1,28,3,26,1,30,1,28,2,29,5,28,2,30,1,13,1,29,1,28,1,29,1,30,2,29,1,30,1,29,1,28,2,29,2,30,1,29,2,28,1,26,2,29,2,26,1,28,4,29,1,28,2,29,1,28,32,26,1,28,3,29,1,30,1,28,4,30,1,26,2,29,1,28,2,13,1,9,1,25,1,30,1,28,17,29,1,28,12,30,2,29,3,28,8,29,1,28,3,29,3,30,1,29,2,30,1,29,1,28,4,30,1,28,9,30,1,28,2,29,1,28,6,29,1,28,2,29,1,28,8,29,1,28,1,26,1,28,3,13,1,28,4,30,2,28,2,29,1,28,2,25,1,13,1,30,1,29,1,9,1,30,1,29,1,8,1,28,3,6,1,11,1,12,2,11,11,16,1,28,2,6,1,28,1,1,387,}, + {1,17,28,1,1,2,28,1,26,1,28,31,29,1,28,23,29,1,26,1,25,1,29,1,28,12,29,1,26,6,28,9,26,2,29,1,28,17,1,10,28,1,11,2,6,1,16,1,1,3,11,2,1,15,28,68,1,54,28,89,29,3,28,2,26,1,29,1,26,2,29,3,26,1,28,2,26,2,29,7,30,1,29,2,28,1,30,1,28,1,30,1,28,1,29,1,25,1,26,1,28,1,29,1,26,1,28,4,29,1,28,40,30,1,28,3,26,1,13,1,30,1,28,2,26,1,14,1,15,1,30,1,28,20,29,2,28,23,29,1,28,7,29,3,30,1,28,14,29,1,28,3,29,2,26,1,28,6,29,2,28,3,29,2,28,4,30,1,28,3,29,2,28,5,30,1,28,2,29,1,28,2,6,1,7,1,6,1,7,1,8,1,6,2,28,4,12,1,11,1,12,1,16,1,11,9,1,2,12,1,28,4,1,386,}, + {1,20,28,2,29,1,28,29,13,1,14,1,29,1,28,11,29,1,28,8,26,1,25,1,14,1,9,2,25,1,29,1,28,10,26,1,9,1,26,2,29,1,26,1,25,1,26,1,29,1,28,4,29,1,28,3,29,1,28,18,1,7,28,2,29,1,9,1,11,1,1,1,16,1,6,1,17,1,1,2,11,2,1,10,11,2,1,4,28,21,29,1,28,45,1,56,28,72,29,1,28,16,26,2,28,2,30,1,29,3,26,1,13,1,30,1,26,2,29,1,30,2,28,2,30,1,26,1,30,1,29,2,28,2,30,1,29,5,25,1,26,2,29,2,28,3,29,2,28,5,29,1,28,37,30,1,13,1,29,1,28,2,25,1,14,1,9,1,28,53,30,1,28,5,30,1,28,16,29,2,28,2,29,1,26,1,28,5,29,1,28,3,29,3,28,4,30,1,29,1,28,2,29,2,28,2,29,1,28,2,13,2,28,2,29,1,28,1,13,1,6,1,29,1,9,2,29,1,28,2,6,1,28,2,7,1,12,3,17,1,11,10,1,1,12,1,29,1,28,3,1,385,}, + {1,20,28,2,30,1,29,1,28,28,13,1,11,1,25,1,28,17,29,2,28,1,30,1,13,1,15,1,9,2,25,1,26,1,29,1,28,8,26,1,9,2,26,1,27,1,26,4,28,4,29,1,28,2,29,2,28,19,1,1,28,1,1,2,28,2,6,1,16,1,11,1,1,3,11,1,7,1,9,1,1,2,11,2,1,9,11,1,1,7,28,21,30,1,28,44,1,58,28,66,29,2,28,21,29,2,26,2,29,1,28,3,30,1,28,2,26,1,30,1,28,3,29,1,30,2,29,5,30,1,29,4,9,1,15,1,29,3,28,4,29,1,28,40,30,1,29,2,28,4,30,1,9,1,13,1,28,5,29,2,28,37,29,2,28,10,29,2,30,1,29,1,28,1,29,1,28,8,29,1,28,8,29,1,28,3,30,1,26,1,29,1,28,7,29,1,28,1,30,1,28,1,29,1,28,2,30,1,29,1,28,3,29,1,28,2,29,1,28,2,29,1,30,1,28,1,30,1,9,1,28,1,13,1,25,1,28,1,6,1,9,1,6,1,28,2,8,1,28,2,29,1,12,3,16,1,12,1,11,9,1,2,17,1,6,1,28,2,1,385,}, + {1,21,28,2,30,1,28,29,25,1,11,1,28,15,29,1,30,1,26,2,13,1,9,1,15,2,9,1,25,1,13,1,26,1,30,1,28,7,26,1,9,1,26,7,29,1,28,7,30,1,28,20,1,3,28,1,6,1,11,1,1,1,11,2,1,1,11,1,1,1,11,1,9,1,17,1,1,2,11,2,1,17,29,1,28,20,29,1,28,44,1,60,28,88,26,3,28,4,29,1,28,2,26,1,13,1,26,1,28,1,29,7,30,1,29,2,30,1,29,1,28,2,14,1,15,1,28,2,29,1,28,3,26,1,29,1,28,40,29,1,28,3,30,1,29,2,26,1,28,5,29,1,28,2,29,3,28,37,29,1,28,2,29,1,30,1,29,2,28,6,29,1,28,2,30,1,29,2,28,6,29,2,28,11,30,1,13,1,28,6,29,1,26,1,28,1,29,3,28,2,29,2,28,12,13,2,28,1,29,1,9,1,29,2,8,1,13,1,29,1,28,1,9,1,28,2,29,1,16,4,17,2,11,10,1,2,10,1,28,2,1,384,}, + {1,21,28,2,29,1,30,1,28,29,14,1,9,1,28,15,29,2,30,1,13,7,25,1,13,1,30,1,28,6,26,10,28,5,29,1,30,1,28,20,1,4,28,1,11,2,15,1,11,4,1,1,11,1,16,1,1,2,11,2,1,11,11,1,1,6,29,1,28,64,1,61,28,91,29,2,30,1,29,3,28,1,29,1,9,2,30,1,28,2,29,2,30,2,29,1,28,2,29,1,26,2,28,2,26,1,15,1,29,1,28,4,29,2,28,40,29,1,28,4,30,1,28,13,30,2,28,39,30,1,29,1,28,2,26,2,30,1,29,1,28,6,29,3,28,6,29,2,28,11,29,1,28,5,29,3,28,1,29,1,28,1,29,1,28,2,29,2,28,9,29,1,28,2,30,1,28,2,29,1,26,2,29,1,30,1,13,1,29,1,28,1,14,1,28,3,29,1,16,1,9,1,16,1,12,1,16,1,12,1,11,10,1,1,11,1,6,1,28,1,1,384,}, + {1,22,28,2,26,1,28,30,15,1,26,1,28,23,30,1,26,1,13,1,30,1,28,8,26,1,25,1,26,5,28,5,29,1,28,22,1,4,8,1,9,1,16,2,11,3,1,1,11,1,16,1,12,1,1,2,11,1,1,10,11,1,1,5,11,1,14,1,16,1,28,20,29,1,28,37,29,2,28,4,1,63,28,12,29,1,28,77,26,1,29,3,28,1,29,1,28,2,9,1,15,1,13,1,29,2,28,2,29,1,30,1,29,3,26,1,28,1,26,1,9,1,28,2,26,2,29,1,28,3,29,1,28,41,29,1,28,8,29,3,28,8,29,1,30,1,28,42,29,1,28,1,29,1,26,1,13,1,26,1,30,1,28,4,30,2,29,3,28,5,30,1,29,1,28,4,29,1,28,5,29,2,28,2,29,1,26,1,28,2,29,2,28,4,29,1,30,1,28,3,29,1,28,5,26,1,28,2,29,5,26,1,29,2,13,1,26,1,28,1,15,1,8,1,28,3,9,1,16,1,9,3,16,1,17,1,11,6,17,1,11,3,1,1,11,1,29,1,28,1,1,383,}, + {1,23,28,32,29,1,9,1,29,1,28,9,29,1,30,1,29,1,28,4,29,1,28,1,29,1,28,5,29,1,28,9,26,6,28,5,29,1,28,23,1,3,28,1,8,2,16,1,14,2,11,2,1,1,11,1,12,1,11,1,1,1,11,2,1,13,9,1,28,25,30,1,28,43,1,64,28,5,29,2,28,2,29,3,28,77,26,1,29,2,30,1,29,2,28,2,13,2,9,2,13,1,29,1,28,3,29,2,30,1,29,1,28,1,26,1,9,1,29,1,28,2,29,1,28,3,29,1,28,37,29,1,30,1,28,2,29,1,28,10,29,1,26,1,29,1,28,8,30,2,28,46,29,1,13,2,28,3,29,1,26,1,30,1,29,2,30,1,28,1,30,1,29,1,28,2,29,1,28,11,26,1,30,1,28,1,29,1,28,3,29,1,28,1,29,1,28,3,29,1,30,1,28,2,29,2,28,2,29,1,28,3,29,1,28,2,30,1,28,6,30,1,13,1,28,1,13,1,15,1,28,3,7,1,16,1,7,2,9,1,16,1,17,1,11,5,1,1,17,1,11,1,1,1,17,1,11,1,1,1,11,1,28,3,1,381,}, + {1,24,28,1,29,1,28,31,29,1,30,1,28,6,30,1,13,1,26,1,29,3,28,3,29,1,28,3,29,2,28,14,26,2,29,1,28,30,1,3,28,1,9,2,13,1,14,2,11,2,1,1,16,2,1,2,11,1,1,9,11,1,1,2,16,1,28,27,26,1,29,1,28,42,1,64,28,5,26,2,28,82,29,2,26,1,29,3,28,4,13,1,15,1,9,1,25,1,26,1,29,1,28,5,26,1,25,1,28,1,26,1,29,1,28,5,26,1,28,37,29,1,26,1,28,1,29,1,30,1,28,10,29,1,26,1,28,27,29,1,28,31,26,1,29,1,28,4,30,1,26,1,29,1,28,1,29,4,28,4,30,1,28,11,26,1,28,5,29,2,28,3,29,2,28,4,29,1,30,1,28,3,30,1,29,1,28,6,29,1,28,2,29,1,28,1,30,1,15,1,29,1,28,2,29,1,16,1,6,1,7,1,10,1,16,1,17,1,11,5,17,1,11,3,1,1,11,2,1,1,10,1,28,1,7,1,28,3,1,378,}, + {1,24,28,2,30,1,28,18,29,1,30,1,29,1,28,15,30,1,29,1,26,2,29,1,30,1,29,1,28,11,29,1,30,1,28,44,1,3,28,1,7,1,13,2,16,1,14,1,11,3,16,1,11,1,1,1,11,2,1,9,11,1,1,2,28,27,30,1,28,43,1,66,28,4,29,1,26,1,28,84,26,1,29,4,28,5,29,1,25,1,9,1,25,1,13,1,26,1,28,1,26,4,29,2,28,4,29,2,28,39,13,1,26,1,29,1,28,12,30,1,29,1,28,9,29,2,28,15,29,2,28,10,13,1,28,19,30,1,13,1,30,1,28,4,29,2,28,4,29,2,28,2,29,1,28,11,29,1,28,5,29,2,28,3,29,2,28,3,29,1,28,2,29,1,26,1,28,3,29,1,28,2,26,1,29,1,28,3,29,1,28,2,29,2,15,1,30,1,28,3,9,2,28,1,8,1,9,1,8,2,11,2,16,1,11,10,6,1,29,1,12,1,10,1,28,3,1,376,}, + {1,25,28,39,29,1,9,2,29,1,28,3,30,1,28,13,29,1,28,40,1,4,28,1,6,1,9,1,13,1,9,2,14,1,11,1,17,1,12,1,11,1,1,1,11,1,1,10,11,3,28,71,1,66,28,5,26,1,13,1,28,84,26,1,30,1,29,1,28,5,29,1,28,3,26,2,28,2,26,4,29,2,28,4,29,1,28,40,30,1,13,1,28,2,29,1,28,10,29,1,28,4,29,1,28,1,30,1,13,1,29,1,28,31,29,1,30,1,28,3,29,1,28,2,29,1,28,11,29,1,28,1,26,1,9,1,28,3,13,1,29,2,28,3,29,1,28,2,29,1,28,7,29,2,28,11,29,2,28,1,29,1,28,6,29,2,26,1,28,4,29,1,13,1,9,2,30,1,28,5,13,1,9,1,7,1,28,4,7,1,29,1,7,1,8,1,7,2,16,3,11,2,17,1,11,1,1,1,11,1,12,1,11,2,1,1,16,1,28,1,6,2,28,5,1,374,}, + {1,26,28,36,29,1,28,1,29,1,13,2,29,1,28,58,1,5,6,1,9,1,13,1,9,2,15,2,16,1,11,1,1,1,11,2,1,8,11,3,1,1,29,1,28,70,1,68,28,5,25,1,28,78,29,1,28,4,29,1,30,1,29,5,28,9,26,1,13,1,26,2,29,3,28,3,29,2,28,41,13,1,28,2,29,1,28,15,30,1,29,3,28,5,30,1,28,27,13,1,29,1,28,20,30,1,13,1,28,3,13,1,29,1,28,2,29,1,30,1,28,3,13,1,29,1,28,9,29,1,28,5,29,1,28,2,29,1,28,3,29,1,28,7,29,2,28,2,29,1,28,3,26,1,9,1,29,1,28,1,13,1,29,1,28,2,8,1,9,1,28,4,7,1,9,1,29,2,6,1,8,1,9,3,16,1,11,1,16,2,11,6,1,1,9,1,7,1,9,1,25,1,28,5,1,373,}, + {1,26,28,30,29,1,28,5,29,1,28,62,1,6,28,1,8,1,13,1,9,1,15,1,9,1,16,2,11,1,1,1,11,2,1,7,11,3,1,1,11,1,28,71,1,68,28,5,26,2,28,82,30,1,26,1,30,4,29,3,28,1,30,1,29,1,28,4,9,1,26,2,29,1,28,6,29,1,28,40,29,1,28,1,29,1,26,1,28,2,29,1,28,11,26,1,30,1,28,10,13,1,28,28,30,2,28,2,30,1,28,2,29,2,28,14,30,1,28,3,29,2,28,1,29,1,26,1,28,4,30,2,28,8,30,1,29,1,28,4,29,1,28,5,29,1,28,17,30,1,13,1,30,1,26,1,30,1,28,2,13,1,8,1,29,1,28,3,7,1,1,1,9,1,10,1,7,1,6,1,29,1,6,1,9,2,12,1,16,2,17,1,11,3,12,1,11,1,1,1,12,1,7,1,9,1,12,1,9,2,28,4,1,372,}, + {1,27,28,29,29,1,28,5,30,1,28,16,29,1,28,9,29,1,28,4,29,1,28,29,1,7,28,1,9,1,6,1,9,4,12,1,1,2,11,1,1,8,11,3,1,1,7,1,28,2,29,1,28,67,1,70,28,5,15,1,28,83,26,2,30,2,29,1,28,1,29,1,30,1,26,1,29,1,28,3,29,1,26,1,13,1,26,1,29,2,28,5,29,1,28,44,26,1,28,2,29,2,28,6,30,1,29,1,28,2,29,2,28,11,30,1,29,1,28,29,29,1,30,1,28,10,29,1,28,8,29,2,28,5,29,1,28,5,29,1,30,1,28,3,29,1,28,3,29,1,30,1,28,5,29,1,28,4,29,1,28,3,29,1,28,10,29,1,28,3,29,1,30,1,28,2,30,2,6,2,7,1,28,3,29,1,1,2,11,1,17,1,9,1,6,1,8,1,7,1,28,1,6,1,9,1,12,1,17,1,16,1,12,1,11,3,1,1,11,1,9,1,27,1,9,1,12,1,11,1,15,1,28,6,1,369,}, + {1,27,28,35,29,2,28,24,30,1,26,1,13,1,29,3,28,29,1,8,28,1,13,1,8,3,10,1,16,1,11,1,1,1,11,2,1,7,11,3,1,2,29,1,28,69,1,71,28,1,30,1,29,1,28,3,26,1,28,84,30,1,13,1,26,1,30,1,29,2,28,2,29,3,26,1,13,1,29,4,28,46,29,2,28,2,29,1,30,1,28,1,29,1,28,5,29,2,28,1,29,1,28,9,29,1,28,6,29,1,28,28,26,2,29,1,28,34,29,2,28,3,29,1,30,1,28,1,29,1,26,1,28,4,29,2,28,2,29,1,28,4,29,1,28,3,29,1,28,2,26,2,28,2,29,1,28,2,29,2,28,2,29,1,30,1,29,1,6,2,9,1,28,4,9,1,11,2,1,2,11,2,16,1,29,1,28,2,8,1,9,1,16,1,17,1,11,4,1,1,11,1,9,1,25,1,27,2,15,2,28,4,1,370,}, + {1,27,28,31,29,1,26,2,29,1,28,14,26,2,28,3,29,1,28,9,29,2,28,29,1,9,28,1,29,1,9,1,6,1,13,1,8,1,16,1,1,2,11,2,1,6,11,3,1,2,11,1,28,70,1,72,28,1,30,1,26,1,29,1,28,1,26,1,29,1,28,49,29,1,28,34,30,1,13,2,30,1,29,3,28,2,25,1,15,1,25,1,28,1,29,1,28,47,29,1,26,1,29,1,28,3,26,1,28,39,30,1,28,16,29,1,28,14,29,1,28,8,29,1,28,3,29,1,28,6,29,1,28,2,29,2,28,3,29,1,28,2,29,1,30,1,29,1,28,3,30,1,28,2,29,1,28,11,26,1,30,1,28,2,26,1,30,1,28,1,29,1,30,1,28,1,29,1,26,1,30,1,28,1,30,1,7,1,8,1,28,4,29,1,16,1,9,1,16,1,11,3,1,1,11,1,6,1,29,1,6,1,10,1,9,1,16,1,12,2,11,2,1,1,11,1,12,1,9,1,27,1,26,2,9,2,28,5,1,368,}, + {1,28,28,16,29,1,13,1,29,1,28,10,30,1,25,1,15,2,13,1,29,2,28,9,29,1,26,6,25,1,26,1,28,3,26,1,29,1,28,32,1,13,28,1,29,1,28,1,6,1,8,1,16,1,1,1,11,1,12,1,1,7,11,3,1,3,28,70,1,73,28,3,29,1,28,1,15,1,26,1,28,47,29,2,28,36,30,1,26,1,30,2,26,1,28,2,13,1,15,1,9,2,29,1,28,6,29,1,28,40,26,1,28,6,30,1,28,13,29,1,28,8,29,2,28,14,29,1,28,5,30,4,26,1,28,2,29,1,28,14,29,1,28,2,29,1,28,10,29,1,28,1,29,2,28,8,29,1,28,2,29,2,28,5,29,1,26,1,29,1,28,2,29,1,28,2,30,1,29,1,30,1,28,3,29,1,28,11,30,1,28,1,29,1,30,1,28,1,29,1,26,1,28,1,29,1,8,1,6,1,28,5,7,1,6,2,9,1,16,2,17,1,1,2,12,1,9,2,7,1,29,1,7,1,16,1,11,2,1,1,11,1,17,1,12,1,26,1,28,2,26,1,9,1,27,1,28,4,1,368,}, + {1,28,28,11,30,1,28,2,26,1,28,2,26,1,15,1,28,9,29,1,13,1,29,1,28,1,29,1,9,1,25,1,30,1,28,8,29,1,26,4,28,1,26,2,29,1,28,4,26,1,29,1,28,2,29,2,28,25,1,16,28,4,7,1,1,2,11,4,1,3,11,1,17,1,12,1,11,1,1,4,28,69,1,74,28,6,9,1,28,2,29,2,26,1,29,3,28,38,29,2,28,38,26,2,28,2,26,2,29,2,26,2,13,1,26,1,29,1,28,44,29,1,26,1,28,2,30,1,29,1,28,2,29,4,28,4,29,2,28,4,29,2,28,3,29,1,28,21,9,2,14,1,11,1,1,6,11,2,15,1,9,2,8,1,13,1,26,1,30,1,29,3,28,5,29,1,30,1,28,11,29,1,30,1,29,1,28,1,26,1,13,1,28,6,29,1,28,2,26,2,28,6,29,2,28,7,29,1,28,3,29,1,28,1,29,1,28,4,30,1,29,1,28,1,29,1,30,2,28,1,29,2,28,1,29,2,28,2,13,1,29,1,15,1,28,4,29,4,6,3,8,1,12,1,16,1,11,2,16,1,9,1,8,1,29,1,6,1,11,2,17,1,11,1,12,1,9,1,26,1,29,3,25,1,9,1,28,2,29,1,28,2,1,366,}, + {1,28,28,11,29,1,26,1,28,1,29,1,30,1,28,2,26,1,15,1,28,14,26,3,29,1,28,6,25,1,26,8,28,3,29,1,28,29,1,18,28,1,7,1,28,2,7,1,11,1,1,1,11,4,1,3,11,1,17,1,11,1,1,5,28,69,1,74,28,7,29,4,28,40,29,1,26,1,28,43,29,1,25,2,26,1,29,2,28,1,29,3,28,3,29,1,28,40,30,1,28,3,29,2,28,3,29,1,28,13,29,1,28,21,13,1,9,1,15,1,14,1,11,2,1,3,11,1,1,12,11,1,14,1,9,1,30,1,29,3,28,1,29,1,13,1,26,1,28,13,30,1,29,2,30,1,29,1,13,1,29,1,28,6,26,1,15,1,26,1,28,3,29,1,28,2,29,1,28,1,29,1,28,3,29,1,28,1,29,1,28,5,29,1,28,1,29,1,28,3,29,1,28,3,29,1,28,2,29,1,28,1,29,2,28,1,29,1,30,1,28,1,8,2,28,3,29,1,6,2,28,4,7,1,6,1,29,1,8,1,16,1,11,1,1,1,11,1,9,2,12,2,11,2,9,2,12,1,9,2,26,3,28,5,1,366,}, + {1,27,28,1,1,1,28,18,26,1,29,1,28,13,29,1,28,1,26,1,13,1,29,1,28,5,26,2,25,1,26,6,28,30,1,18,28,1,1,3,28,1,12,1,28,1,8,1,11,5,1,3,11,1,12,1,11,2,1,2,11,1,1,1,11,1,28,68,1,76,28,49,29,2,28,43,26,1,25,2,26,2,29,1,28,8,29,2,28,39,30,1,28,8,29,3,28,2,29,1,28,4,29,1,28,5,29,1,28,3,29,2,28,3,29,1,30,1,29,1,28,5,30,1,9,1,14,1,11,2,14,2,15,2,16,1,15,2,16,1,9,2,11,7,1,5,11,1,14,1,9,1,26,2,29,2,30,1,28,19,29,3,28,5,26,1,15,1,25,1,26,1,28,2,26,1,28,4,29,1,28,3,30,1,28,9,29,1,28,3,29,2,28,3,29,1,28,2,29,2,28,3,26,1,28,1,13,1,9,1,28,1,29,1,28,5,29,2,28,2,29,1,28,3,29,1,8,1,17,1,11,1,12,1,16,1,9,1,10,1,9,1,12,1,10,1,27,1,25,1,27,1,26,2,27,1,26,2,28,4,1,365,}, + {1,27,28,1,1,2,28,26,29,1,26,1,29,1,28,5,29,1,26,1,25,1,29,1,28,6,26,6,28,29,1,24,28,1,1,1,16,1,9,1,11,8,12,2,11,1,1,5,14,1,28,68,1,77,28,47,29,1,28,45,25,1,9,1,25,1,29,3,28,1,29,1,28,46,29,2,28,5,29,1,28,8,29,3,28,16,29,1,30,1,28,3,26,1,9,1,14,1,11,2,15,4,14,2,15,2,11,1,1,3,11,1,29,1,28,9,30,1,9,1,11,1,1,3,15,1,13,1,29,3,28,11,29,1,28,8,30,1,28,3,29,1,28,2,26,1,9,1,15,1,29,1,28,4,29,1,28,1,26,1,28,3,30,1,29,1,28,1,29,1,28,10,29,1,28,4,29,1,28,2,29,2,28,3,13,1,30,1,29,2,28,1,29,1,28,6,29,1,28,9,6,2,10,1,12,1,9,1,10,1,9,1,27,1,26,1,27,1,26,4,29,1,28,6,1,364,}, + {1,30,28,9,30,1,29,1,28,16,26,1,13,1,29,1,28,5,29,1,13,1,26,1,28,7,26,1,25,1,26,2,28,30,1,24,28,1,1,1,11,1,16,1,11,7,12,2,11,1,1,7,28,67,1,78,28,45,29,1,28,40,29,2,28,4,26,2,25,1,13,1,29,3,28,48,29,1,28,3,29,1,28,2,29,2,28,3,29,2,28,2,29,1,28,1,29,1,28,2,29,1,28,2,29,3,30,2,29,3,28,4,29,1,26,1,9,1,15,1,14,2,15,2,9,2,15,1,11,2,1,1,11,1,14,1,9,2,13,1,30,1,28,16,13,1,15,1,1,2,11,1,9,1,30,1,28,10,29,1,28,9,29,1,28,3,29,1,28,2,26,1,9,2,25,1,29,1,28,3,29,1,28,1,30,1,29,1,28,5,30,2,29,2,28,7,29,1,28,2,29,1,28,1,29,1,28,2,29,2,28,3,30,1,29,1,28,2,29,1,28,3,29,2,28,15,7,1,16,1,11,2,9,1,27,1,15,1,27,1,26,2,29,2,28,2,26,1,28,4,1,363,}, + {1,31,28,27,26,2,28,7,26,1,13,1,28,3,29,2,28,1,29,1,28,32,1,24,28,2,1,1,11,1,17,1,11,7,12,1,11,2,1,5,11,1,1,1,6,1,28,21,29,1,28,44,1,79,28,2,29,1,28,83,30,1,29,1,28,2,30,1,25,1,29,1,26,3,29,1,28,49,29,3,26,1,13,2,26,1,30,2,26,2,30,1,29,1,28,2,29,1,28,5,29,1,28,2,29,1,30,1,26,3,30,1,26,2,28,4,15,1,14,3,15,1,9,2,14,1,11,3,15,1,25,1,13,1,28,25,26,1,14,1,1,2,14,1,25,1,28,8,29,1,28,16,29,1,26,2,9,2,28,1,29,2,28,2,29,2,28,5,30,2,29,3,28,2,29,1,28,3,29,1,28,2,29,1,28,4,29,1,28,4,30,1,29,1,28,2,9,1,28,3,29,1,7,1,6,2,29,1,28,13,6,1,9,1,17,1,12,1,9,4,27,1,26,1,25,1,26,1,28,1,9,1,28,6,1,361,}, + {1,31,28,25,29,1,28,2,29,1,28,7,29,1,13,1,29,1,28,8,29,1,30,1,29,1,28,27,1,19,28,1,1,1,28,3,6,1,11,1,1,1,11,3,17,1,11,4,17,1,12,1,11,1,1,5,11,1,15,1,11,1,6,1,28,21,29,1,28,43,1,81,28,85,30,1,29,1,28,1,29,1,26,3,29,3,28,51,29,1,30,1,26,3,30,1,29,3,28,5,29,1,28,4,29,1,28,13,9,1,14,3,9,2,15,1,14,1,11,2,14,1,15,1,26,1,28,31,9,1,11,2,14,1,28,8,29,1,28,7,29,1,28,8,26,1,27,1,25,1,27,1,28,3,29,1,30,1,29,1,28,1,29,2,28,3,29,2,28,1,29,2,28,1,29,3,28,2,29,2,28,5,29,1,28,2,29,1,28,2,30,2,28,1,29,1,9,1,28,4,6,2,7,2,29,1,28,12,29,1,28,1,29,1,12,1,11,1,27,1,9,3,27,2,28,2,27,1,26,1,28,2,29,2,28,1,1,361,}, + {1,32,28,31,29,2,28,4,13,1,26,1,28,8,30,1,28,28,1,18,28,2,6,1,16,1,1,1,11,1,1,2,11,1,1,2,11,1,17,1,11,4,17,1,11,2,1,5,11,1,9,1,11,1,9,1,28,21,29,1,28,43,1,82,28,1,30,1,28,82,30,1,29,1,28,1,26,1,13,1,29,1,26,1,28,1,29,2,28,63,29,2,28,3,29,1,28,13,29,1,15,1,14,1,15,1,9,3,14,1,11,2,15,1,13,1,28,6,30,1,28,29,30,1,14,1,11,1,13,1,29,1,28,3,30,1,28,1,26,1,28,9,29,2,28,5,29,1,27,1,26,1,9,1,26,1,28,2,29,1,30,1,28,3,13,1,30,1,29,1,28,4,29,2,28,3,29,1,28,5,29,1,28,3,29,1,28,2,29,1,28,2,29,2,26,1,25,1,13,1,29,1,28,7,29,1,6,2,28,3,7,1,28,3,29,1,28,2,10,2,29,1,7,1,9,1,12,1,9,1,27,1,25,1,27,2,28,1,26,1,9,1,26,1,29,1,28,5,1,360,}, + {1,32,28,32,29,1,28,4,30,1,13,1,29,1,28,36,1,18,28,1,9,1,8,1,16,1,11,4,1,2,11,2,17,1,11,1,1,1,11,4,1,2,11,1,1,2,11,1,9,1,16,1,1,1,13,1,28,64,1,83,28,10,29,1,28,74,29,1,26,3,29,4,28,63,30,1,28,1,29,1,28,2,29,2,28,5,29,1,28,6,9,1,14,1,15,1,13,1,9,1,16,1,14,1,11,2,15,1,13,1,28,6,29,2,28,32,30,1,14,2,26,1,28,3,26,1,13,1,28,11,30,1,28,5,26,2,15,2,28,1,26,1,28,1,29,2,28,3,13,1,28,1,29,1,28,4,29,1,28,1,29,2,28,1,29,1,28,2,30,1,28,5,30,1,29,1,28,4,29,1,13,1,28,2,25,1,29,1,28,3,7,1,28,6,7,1,6,1,28,2,6,1,28,2,6,1,29,1,28,3,9,1,12,1,27,2,25,1,9,3,26,3,9,2,27,1,28,2,12,1,9,1,27,1,28,1,1,359,}, + {1,32,28,3,29,1,28,28,29,1,28,4,29,1,30,1,29,2,28,35,1,17,28,2,6,1,7,1,9,1,14,1,11,1,1,2,11,2,1,1,11,1,1,1,11,1,17,1,11,4,1,3,11,5,14,1,28,20,29,1,28,44,1,85,28,3,26,1,29,1,28,2,29,2,28,73,29,1,30,1,26,2,30,1,29,3,28,59,29,4,28,1,29,2,28,3,26,1,28,5,29,2,28,4,26,1,9,1,15,1,9,1,13,1,9,2,14,1,11,2,13,1,28,7,29,1,28,36,26,1,25,1,29,2,13,1,26,1,28,12,29,2,30,1,28,3,26,1,15,1,26,1,28,1,26,1,15,1,26,1,28,1,29,1,28,4,13,1,30,1,28,6,29,3,28,4,29,1,28,1,29,1,28,4,29,3,28,2,30,1,29,1,28,1,29,1,28,4,29,1,6,1,29,1,28,4,29,2,28,1,8,1,16,1,28,4,29,1,28,4,12,2,28,2,11,1,15,1,26,2,27,1,26,1,9,2,28,2,11,1,12,1,27,2,28,2,1,357,}, + {1,34,28,29,29,1,28,6,29,2,28,1,29,1,28,33,1,18,28,1,29,1,28,1,6,1,8,1,15,1,11,4,1,2,11,1,1,1,11,2,1,1,11,2,1,1,11,1,1,3,14,1,9,1,8,1,29,1,28,66,1,87,28,2,29,1,26,1,29,1,28,74,29,2,30,1,29,4,28,56,29,9,28,2,30,1,28,2,26,1,29,1,28,2,29,2,28,6,13,1,15,2,25,1,13,1,9,1,15,1,11,2,15,1,30,1,28,3,29,1,28,2,30,1,29,1,28,39,9,2,30,2,28,10,29,1,28,2,29,1,26,1,28,2,29,1,9,2,28,2,9,3,28,4,29,1,28,2,26,1,29,1,28,6,29,2,28,4,29,1,28,1,29,2,28,4,29,3,28,1,29,1,28,2,29,1,28,5,6,2,29,1,28,1,29,1,28,4,9,1,17,1,7,1,28,4,7,1,6,1,28,3,6,1,26,1,28,2,26,1,29,1,26,1,15,1,27,2,9,1,26,1,29,1,26,2,29,1,11,1,26,1,1,2,28,1,1,355,}, + {1,35,28,28,29,1,28,8,29,1,28,34,1,19,28,1,29,2,13,1,15,1,11,4,1,3,11,1,1,2,11,2,1,2,11,1,15,1,8,1,28,70,1,89,28,9,29,1,28,67,29,5,28,59,29,11,28,2,29,1,30,1,28,2,29,2,28,1,29,1,28,4,9,1,14,1,9,1,26,2,9,1,14,1,1,1,14,1,13,1,28,2,29,2,28,2,29,2,28,42,15,1,14,1,29,1,28,9,29,1,28,5,29,2,26,1,29,1,25,1,26,1,9,1,26,2,9,1,26,1,28,4,26,1,28,1,30,1,28,5,29,1,28,3,29,1,28,1,29,1,28,4,29,1,28,5,29,1,28,1,29,2,28,2,26,1,29,1,28,1,29,1,28,4,6,2,28,1,29,1,28,3,29,1,6,1,29,1,6,1,9,1,6,1,28,1,6,1,16,1,12,1,7,1,28,7,26,2,9,1,27,4,28,2,26,1,25,1,11,1,29,1,28,1,1,356,}, + {1,36,28,20,30,1,28,3,29,2,28,6,30,1,29,1,28,36,1,20,28,3,29,1,9,1,11,1,1,1,11,4,1,1,11,1,1,2,11,1,1,2,30,1,28,73,1,91,28,74,29,3,28,61,29,9,28,1,29,2,28,2,13,1,28,2,29,2,28,2,30,1,29,1,28,1,29,1,9,1,15,1,9,1,30,1,26,1,15,1,14,3,26,1,28,2,29,1,28,3,29,1,28,41,29,1,28,3,13,1,9,1,28,9,26,1,28,6,29,1,28,3,25,1,9,1,26,1,27,1,26,1,15,1,26,1,28,4,30,1,29,2,28,4,29,1,28,3,29,1,28,1,13,1,28,3,29,1,28,5,29,1,28,2,29,2,28,2,26,1,30,1,28,6,6,1,7,1,29,1,28,2,29,1,28,5,29,2,28,3,6,1,9,2,29,1,28,7,26,1,15,1,27,1,28,1,29,2,28,1,26,1,28,2,27,1,29,1,1,2,28,1,1,353,}, + {1,37,28,30,29,1,13,1,29,1,28,32,1,25,28,3,30,1,16,1,11,1,1,1,11,5,1,1,11,1,1,2,28,74,1,95,28,7,29,3,28,60,29,2,28,63,29,10,28,1,30,1,28,2,26,1,28,1,29,1,28,1,29,4,28,1,29,1,13,1,15,1,25,1,29,1,30,1,15,1,11,1,14,1,9,1,28,1,29,2,28,4,30,1,26,1,28,3,29,1,28,2,29,1,28,33,29,2,30,1,29,1,28,2,26,1,30,1,29,1,28,1,29,2,28,3,29,1,28,7,29,1,28,4,15,1,9,1,26,2,9,2,28,5,29,2,28,2,29,1,28,1,29,1,28,5,30,2,28,1,29,1,26,1,28,2,29,1,28,1,29,1,26,1,28,3,29,1,28,11,6,1,8,1,6,1,28,13,29,1,6,2,7,1,28,7,29,1,15,1,27,1,28,1,29,1,26,1,29,1,28,5,1,2,28,1,1,352,}, + {1,38,28,27,29,1,28,31,1,30,28,3,29,1,8,1,14,1,1,2,11,1,1,1,11,2,1,2,11,1,29,1,28,74,1,98,28,2,29,2,28,57,29,5,28,53,29,1,28,11,29,12,30,1,28,2,29,1,28,1,29,1,28,1,29,1,26,1,29,1,28,1,29,1,9,1,15,1,25,1,13,1,26,1,9,1,11,1,14,1,13,1,30,1,28,5,29,1,30,1,28,46,30,2,28,2,26,2,29,1,28,12,30,1,28,4,9,2,26,3,9,1,26,1,28,5,29,1,28,2,29,1,28,4,29,1,28,3,29,1,28,1,29,1,30,1,28,3,29,4,28,15,6,1,7,1,6,2,29,1,6,1,9,1,6,1,28,8,29,1,28,2,6,1,29,1,28,1,26,1,29,1,28,3,26,1,11,1,26,2,15,1,9,1,26,1,9,1,28,4,1,354,}, + {1,39,28,56,1,32,28,3,30,1,9,1,14,1,11,4,1,2,11,1,1,1,9,1,28,74,1,100,28,60,26,2,29,2,28,39,29,1,28,25,29,1,30,1,29,9,28,1,30,1,29,1,28,2,29,2,28,1,29,2,28,3,9,1,14,1,25,1,30,1,25,1,15,1,14,1,11,1,9,1,28,6,26,1,29,1,28,49,29,1,28,1,30,1,26,1,28,4,30,1,28,2,9,1,28,2,30,1,28,7,26,1,9,1,26,2,27,1,26,1,15,1,26,1,28,1,26,1,28,2,29,1,28,2,30,1,29,1,28,5,29,1,28,8,29,1,28,2,30,1,28,1,29,1,28,10,30,1,28,4,8,1,11,1,16,1,10,1,16,2,9,2,6,1,28,6,6,1,28,2,6,1,10,1,29,1,28,1,26,2,28,3,26,1,28,2,27,3,12,1,27,1,28,3,1,353,}, + {1,42,28,19,1,7,28,25,1,34,28,3,29,1,1,1,11,2,1,1,11,2,1,2,17,1,1,1,16,1,28,74,1,102,28,52,29,1,28,2,29,1,26,2,28,60,29,1,28,7,29,2,28,1,29,5,30,1,29,6,28,1,29,2,28,2,30,1,29,1,28,2,25,1,15,1,25,1,26,1,9,2,11,2,13,1,28,2,29,1,28,2,30,1,26,1,28,1,29,1,28,53,26,1,28,12,29,1,28,4,29,1,9,1,27,1,26,3,25,2,26,1,28,1,29,1,28,6,30,1,28,1,29,1,28,2,29,1,28,8,26,1,28,2,29,2,28,1,29,1,28,2,30,1,28,6,6,1,7,1,29,1,28,1,29,1,8,1,9,1,6,1,7,1,28,1,6,1,9,1,6,1,9,1,8,1,28,6,6,1,28,2,10,2,28,3,9,1,28,3,29,1,28,1,9,1,26,2,9,3,28,4,1,351,}, + {1,72,28,20,1,35,28,1,6,1,14,1,1,1,11,4,1,2,11,1,1,3,11,1,28,74,1,103,28,53,29,1,26,2,28,69,29,2,28,1,29,1,30,1,29,8,26,1,13,2,30,1,29,4,28,2,13,1,15,1,9,1,26,1,9,1,15,1,14,1,11,1,9,1,28,2,29,2,28,2,29,1,28,57,30,1,29,1,28,1,29,1,28,11,29,1,28,2,26,6,25,1,9,1,26,1,28,6,29,1,30,1,28,1,29,1,28,2,29,2,28,2,29,1,28,5,26,1,29,2,28,1,30,1,26,1,28,2,25,1,29,2,28,4,29,1,9,1,7,1,28,1,29,1,6,1,28,4,29,2,28,1,29,2,28,7,6,1,28,3,29,1,28,3,27,2,28,3,27,1,12,1,28,2,26,2,27,1,28,1,12,1,9,1,6,2,29,1,28,2,1,346,}, + {1,80,28,8,1,39,28,3,14,1,1,2,11,2,17,1,11,2,1,1,11,1,1,2,28,73,1,105,28,48,29,1,28,2,29,1,26,1,29,1,28,70,29,7,28,1,29,2,30,1,26,2,30,1,29,1,28,4,29,1,28,1,29,1,26,1,9,2,25,2,15,1,11,1,14,1,25,1,28,2,29,1,28,2,29,1,26,1,29,1,28,1,29,1,28,55,30,1,13,1,26,2,28,6,29,1,28,1,29,1,28,5,26,1,9,1,26,2,27,2,26,1,9,1,26,1,28,2,29,1,28,1,26,1,28,2,29,2,28,10,26,1,28,2,13,1,28,1,29,1,28,1,29,1,30,1,28,2,30,1,28,1,29,1,28,5,8,1,7,1,6,1,28,2,6,1,7,1,28,1,7,1,29,1,28,21,27,2,28,2,27,2,28,1,26,1,29,1,9,1,29,1,28,1,11,1,16,1,10,1,16,2,33,1,28,2,1,344,}, + {1,127,28,4,29,1,16,1,1,2,11,2,1,1,11,2,1,1,11,1,28,73,1,106,28,47,29,2,26,2,29,1,28,2,29,1,28,69,29,1,28,3,29,3,26,2,13,2,26,1,29,1,28,7,26,1,25,1,13,1,26,1,25,1,15,1,14,1,11,1,9,1,28,2,30,1,29,1,28,2,30,1,26,1,29,1,28,58,26,1,9,1,29,1,28,9,29,1,28,4,26,1,27,1,26,3,27,1,26,1,27,1,25,1,28,4,26,1,28,3,29,1,28,5,29,1,28,4,30,1,28,2,30,1,28,1,29,2,30,2,28,4,29,1,28,5,29,1,30,1,8,1,28,2,9,1,7,1,29,1,6,1,28,1,6,2,28,7,6,2,28,3,29,1,28,3,10,1,28,3,29,1,26,1,28,2,27,2,29,1,28,1,29,1,10,1,28,1,7,1,9,2,16,2,33,1,16,1,10,1,28,2,1,342,}, + {1,127,28,4,29,1,28,2,11,1,1,2,11,2,1,2,9,1,28,73,1,106,28,46,29,1,26,1,29,2,28,74,29,1,28,1,29,2,30,1,26,2,13,3,26,1,28,2,29,5,28,1,29,1,26,1,13,3,9,1,14,1,11,1,13,1,29,1,28,2,29,1,28,2,29,2,28,61,30,2,28,13,29,1,26,2,27,1,26,3,27,1,26,3,28,4,29,1,28,7,29,2,28,2,26,1,28,4,29,6,28,4,29,1,28,4,29,1,6,1,29,1,13,1,7,1,28,2,29,1,6,1,28,2,29,2,28,9,6,1,28,6,29,1,27,1,28,4,26,1,28,2,9,2,26,1,28,1,29,1,10,1,6,1,17,1,16,1,9,1,33,1,7,1,10,1,16,2,28,2,1,341,}, + {1,127,28,4,13,1,16,1,28,2,6,1,11,2,1,1,15,1,28,75,1,106,28,44,29,1,26,1,30,1,29,2,28,75,29,3,26,6,29,1,28,3,29,1,28,1,29,2,28,2,30,1,13,1,9,1,25,1,9,1,14,1,11,1,15,1,28,2,29,2,28,2,29,1,13,1,28,3,29,1,28,1,29,1,30,1,28,56,13,1,26,1,28,9,30,1,28,4,27,1,26,2,27,1,26,4,25,1,28,4,29,1,28,7,29,1,30,1,29,1,28,1,29,1,30,3,29,3,28,2,29,1,28,4,29,1,28,6,6,1,29,2,13,1,29,1,28,1,6,1,8,1,28,1,29,1,28,2,29,1,28,3,29,1,28,6,6,1,28,3,6,1,28,2,27,1,28,7,9,1,12,1,27,1,29,1,6,2,9,1,7,1,33,1,17,1,16,1,10,1,9,1,16,2,29,1,28,1,1,340,}, + {1,128,28,4,16,1,14,1,28,80,1,106,28,2,13,1,29,1,28,40,29,1,26,1,30,1,29,1,28,76,29,1,30,1,29,1,30,1,26,2,30,1,28,5,26,1,30,1,29,1,28,1,29,1,30,1,29,1,28,1,26,1,9,1,15,1,9,2,1,1,11,1,29,1,28,1,29,1,30,1,29,1,28,2,26,1,29,1,28,8,29,1,28,47,29,1,28,3,29,1,28,2,29,1,13,1,28,9,29,1,28,4,15,1,28,2,27,2,26,2,27,1,15,1,29,1,28,1,26,1,28,8,29,2,28,2,29,1,28,2,26,1,13,1,30,1,28,1,29,1,28,2,29,2,28,3,29,1,28,6,6,1,28,1,29,2,8,1,28,2,30,1,29,1,30,1,6,1,29,4,28,1,29,1,28,3,29,1,28,3,6,1,28,1,7,1,12,1,10,1,29,1,28,5,29,1,28,3,27,1,9,2,27,1,28,1,29,1,9,1,16,1,33,1,10,1,8,1,9,1,7,1,17,2,28,2,1,339,}, + {1,128,28,5,8,1,14,1,16,1,28,31,29,1,28,46,1,106,28,2,13,1,26,1,28,38,29,1,26,2,28,79,26,2,29,1,30,3,28,4,29,1,28,2,29,1,30,1,26,1,29,1,28,1,29,1,30,1,9,1,13,1,9,1,15,1,11,2,9,1,28,1,29,2,26,2,28,33,29,2,28,33,30,1,29,1,28,9,30,1,28,3,25,1,28,2,26,1,25,1,26,4,15,1,28,2,29,1,30,1,29,1,28,5,29,1,28,8,29,1,30,1,29,3,28,6,29,1,26,1,28,3,7,1,9,1,29,3,13,1,28,2,30,1,25,1,29,7,28,5,29,1,28,3,9,1,16,1,28,5,29,1,28,6,26,1,12,1,27,1,9,1,6,1,28,1,7,1,9,1,7,1,10,1,33,1,10,1,17,1,16,1,12,2,28,2,1,338,}, + {1,129,28,5,30,1,14,1,9,1,29,1,28,29,29,1,28,45,1,105,28,1,1,1,28,1,30,1,29,1,26,2,29,2,28,33,29,3,28,83,29,1,28,1,30,1,28,3,29,5,30,1,29,3,28,2,13,1,9,3,15,1,11,1,15,1,28,1,26,2,29,2,26,1,28,2,29,1,28,3,29,1,28,29,29,1,28,32,13,1,28,2,29,1,28,3,29,3,13,1,26,1,28,2,25,1,29,1,28,2,9,1,26,3,28,1,9,1,26,1,28,2,29,1,30,1,28,1,29,1,28,1,29,1,28,5,29,1,28,7,30,1,29,1,28,6,29,2,28,3,29,1,9,1,30,1,13,1,29,1,30,1,13,1,28,2,25,1,28,1,30,1,29,2,30,1,29,1,28,2,30,1,28,18,29,1,28,3,9,1,11,1,17,1,9,1,29,1,28,1,29,1,33,1,7,1,6,1,29,1,10,1,16,2,6,1,16,1,28,1,1,338,}, + {1,129,28,7,9,1,13,1,28,74,1,107,28,1,29,1,26,1,30,3,29,1,26,1,29,1,28,124,29,9,28,1,29,1,13,1,9,2,15,1,14,1,11,1,26,1,28,1,29,1,30,1,29,2,26,1,28,2,26,1,28,3,29,1,28,62,29,2,28,2,30,1,29,1,28,1,29,1,13,1,28,3,26,1,28,5,9,1,26,1,9,1,26,1,28,1,26,1,9,1,28,4,29,2,28,8,29,1,28,3,29,1,28,4,29,1,28,6,29,1,28,6,30,1,29,2,13,1,28,2,29,1,28,2,30,1,28,2,29,1,28,3,29,1,6,1,29,1,28,17,26,1,28,2,27,1,12,2,29,1,28,1,7,2,16,1,7,1,28,2,33,1,8,1,6,2,16,1,28,1,1,337,}, + {1,131,28,81,1,107,28,1,30,1,26,1,29,1,30,2,29,1,26,1,13,1,28,116,29,3,28,3,29,8,30,2,28,2,26,1,9,1,15,1,9,1,14,1,11,1,14,1,28,1,29,5,30,1,28,2,26,1,29,1,28,65,29,1,13,1,28,3,29,1,28,2,29,2,28,1,30,1,26,3,28,2,26,2,9,1,26,2,28,1,26,1,9,1,29,1,28,3,29,1,28,2,29,1,28,6,30,1,28,8,29,1,28,14,29,1,28,1,30,1,28,17,29,2,28,17,10,1,9,1,29,1,28,1,7,1,29,1,6,1,7,1,9,1,7,1,10,1,17,1,11,2,1,1,10,1,1,337,}, + {1,131,28,35,29,1,28,44,1,107,28,1,30,4,26,1,30,1,29,1,26,1,13,1,28,23,29,1,28,92,30,1,29,1,30,1,28,2,29,5,30,1,29,3,30,2,28,1,29,1,25,1,9,1,15,2,14,1,1,1,25,1,28,1,29,1,26,1,29,2,28,1,29,1,28,2,30,1,29,1,28,3,29,1,28,62,30,1,28,3,29,1,28,1,29,1,28,3,29,1,28,3,25,1,28,1,26,2,28,4,9,2,29,1,28,5,29,3,28,4,29,1,30,2,29,2,28,2,29,3,30,1,28,2,13,2,28,7,30,2,28,1,29,1,28,2,29,1,28,9,29,1,28,5,29,1,28,9,29,1,28,10,10,1,29,1,28,2,7,1,29,1,6,2,33,1,29,1,6,4,16,1,28,1,1,336,}, + {1,132,28,32,29,2,28,45,1,107,28,1,6,1,29,2,26,1,13,1,26,1,30,2,13,1,28,116,29,5,26,1,30,1,29,2,30,2,29,1,30,1,29,1,30,1,29,1,28,1,30,1,9,2,15,2,11,1,14,1,29,3,26,1,29,2,28,4,29,1,28,3,29,3,28,34,29,1,28,27,29,3,28,2,29,1,28,7,9,1,26,2,28,4,26,1,9,1,27,1,26,1,28,5,29,1,28,8,29,1,30,3,28,4,30,1,28,2,29,1,30,2,26,1,28,5,9,1,26,1,29,1,13,1,26,1,28,2,30,1,29,3,28,3,30,2,28,10,29,1,28,18,29,1,28,1,7,2,16,1,6,1,16,2,29,1,28,4,10,1,28,1,1,335,}, + {1,133,28,31,29,1,28,45,1,107,28,1,30,3,29,1,30,3,26,2,13,1,29,1,28,10,29,5,28,88,29,1,28,11,29,1,28,1,29,6,30,1,26,1,30,1,29,1,30,2,29,3,13,1,9,1,15,2,14,1,1,1,13,1,29,2,30,1,29,3,28,4,29,1,28,1,29,1,28,1,29,3,28,68,29,1,28,7,26,2,28,1,25,1,28,2,9,1,26,1,9,1,26,1,28,2,29,1,28,14,29,2,28,3,30,1,28,5,30,2,28,4,30,1,29,1,26,1,13,2,28,2,29,1,30,1,29,1,28,1,29,4,28,4,29,1,28,7,29,1,28,7,29,1,28,3,29,1,28,6,16,1,29,1,6,1,12,3,1,2,11,1,8,1,28,5,1,334,}, + {1,133,28,31,29,1,28,45,1,106,28,2,13,1,29,1,30,1,29,1,26,1,29,2,26,1,30,1,26,2,28,11,29,2,28,89,29,2,28,11,29,2,26,2,29,3,30,3,29,2,30,2,29,1,28,1,30,1,9,1,15,3,11,1,14,1,29,4,28,1,29,2,28,2,29,1,28,1,29,7,28,3,29,1,28,62,26,1,28,5,29,1,28,2,29,1,15,1,28,5,9,1,26,1,9,1,26,1,28,2,26,1,28,8,29,1,28,1,29,1,28,3,29,1,30,1,29,1,28,2,30,1,28,6,30,1,28,5,29,3,30,1,29,1,28,2,29,2,28,2,29,2,28,7,29,2,30,1,29,1,28,12,29,1,28,2,29,1,28,2,6,1,28,2,10,1,7,1,28,1,6,1,7,1,6,2,9,1,16,1,1,1,9,1,29,1,28,3,1,334,}, + {1,134,28,76,1,106,28,1,29,1,30,2,26,1,30,1,13,1,29,2,13,1,29,2,25,1,28,102,29,1,28,6,29,1,28,5,29,2,30,3,29,6,26,1,30,1,26,1,28,2,26,1,9,1,15,3,1,1,9,1,29,2,26,1,28,2,29,2,28,2,29,1,28,3,29,5,28,7,29,1,28,39,29,1,28,28,9,1,28,4,26,1,9,1,26,1,9,1,26,1,28,2,26,1,28,2,29,1,28,5,29,1,28,10,30,1,28,2,29,1,28,3,29,1,28,4,30,1,13,1,28,2,29,1,26,1,28,2,29,1,13,1,28,1,29,1,28,1,29,2,28,5,29,2,28,2,29,2,28,3,29,1,28,14,10,1,29,1,28,1,16,1,29,1,28,1,29,1,28,2,6,1,7,1,9,1,11,1,8,1,7,1,6,1,28,1,1,334,}, + {1,136,28,72,1,108,28,1,6,1,13,1,29,1,30,1,29,1,26,2,29,3,28,1,13,1,30,1,28,101,29,1,28,12,29,1,30,2,29,1,26,1,30,1,29,2,30,1,29,2,30,1,13,1,28,2,26,1,13,1,9,1,14,1,15,1,11,2,28,1,29,1,26,1,29,1,28,1,29,1,26,1,29,1,28,2,29,1,30,1,28,1,29,1,26,1,28,54,29,1,28,4,29,1,28,4,29,1,28,2,29,1,28,12,25,1,28,1,9,1,26,1,28,1,26,1,9,1,26,1,9,1,26,1,28,2,9,1,26,1,28,1,29,1,30,1,28,4,30,1,28,22,29,2,30,1,28,1,29,1,26,1,30,1,28,2,26,1,29,2,28,2,30,1,28,5,29,2,28,1,29,1,28,2,29,1,28,12,29,1,28,5,6,1,28,1,29,1,7,1,10,2,29,1,28,3,7,1,12,1,7,1,6,2,28,1,1,334,}, + {1,136,28,72,1,107,28,2,30,5,26,1,30,1,29,4,26,2,28,101,29,1,28,11,29,4,28,2,29,2,30,1,26,1,30,1,29,2,26,1,28,2,26,1,25,1,15,2,14,1,11,1,15,1,28,1,30,1,26,1,28,1,29,2,30,2,28,1,29,3,28,10,29,1,28,59,13,1,30,1,28,11,9,1,28,1,26,1,15,1,28,2,27,1,26,3,28,1,26,1,9,1,28,2,29,2,28,1,30,1,28,3,30,1,29,1,28,2,29,1,28,12,29,1,28,3,29,1,30,1,29,4,30,1,13,1,28,2,29,2,28,1,29,1,28,1,29,1,30,1,28,4,29,1,28,2,29,2,28,1,29,1,26,1,28,3,29,1,28,14,9,1,6,1,28,1,6,1,9,1,6,1,8,1,6,1,28,2,6,1,11,1,6,1,28,1,6,1,28,1,1,333,}, + {1,137,28,71,1,107,28,1,6,1,30,1,29,1,26,1,29,1,30,4,29,2,13,1,29,1,26,1,28,115,29,1,26,1,13,1,29,2,28,1,29,1,26,1,30,1,29,3,28,2,26,1,9,1,15,2,14,1,11,1,26,1,28,1,26,2,28,1,29,7,30,1,28,7,29,2,28,33,29,1,28,2,29,2,28,11,29,1,28,11,29,1,28,12,9,1,26,1,28,1,9,2,28,2,27,2,9,1,28,1,26,2,28,1,29,2,28,2,26,1,29,1,28,2,29,1,28,3,29,1,28,17,29,2,28,4,26,1,29,1,28,4,30,1,28,2,26,1,29,1,28,6,29,2,28,2,30,1,29,1,28,9,29,1,28,8,6,2,29,1,6,3,7,1,16,1,28,2,10,1,11,1,6,1,28,2,1,333,}, + {1,138,28,69,1,108,28,1,13,1,30,1,29,1,26,1,30,1,26,1,29,1,30,1,26,1,29,2,13,1,29,1,13,1,29,1,28,115,26,1,25,1,13,1,26,1,28,2,29,1,30,2,26,1,28,2,29,1,13,1,15,3,11,2,28,1,29,1,26,1,29,1,28,1,30,1,29,1,28,2,29,1,30,1,29,1,26,1,28,6,26,1,29,1,28,37,30,1,29,1,28,15,29,1,28,12,30,1,28,6,29,1,26,2,28,2,26,4,9,1,26,2,15,2,26,1,28,1,29,1,28,3,29,1,28,1,29,1,28,18,29,1,28,1,29,1,28,2,29,1,28,1,29,1,28,2,30,2,28,4,29,1,28,2,29,2,28,6,29,2,28,3,29,1,30,1,28,4,29,1,28,13,7,1,10,1,29,1,6,1,28,1,29,1,9,1,16,1,29,1,28,1,16,1,1,1,29,1,28,2,1,332,}, + {1,139,28,68,1,107,28,1,6,1,30,4,26,2,29,1,30,1,26,1,29,1,28,1,26,1,30,1,13,1,26,1,28,113,29,1,28,3,9,1,13,1,28,2,29,1,26,1,30,1,26,1,28,1,29,2,25,1,15,2,14,1,1,1,15,1,28,1,26,2,28,2,26,1,29,1,28,2,29,1,30,1,29,1,26,1,28,2,29,1,28,2,30,1,29,1,28,38,29,1,28,16,30,1,28,3,29,1,28,14,29,1,26,1,29,1,26,2,28,3,26,1,28,1,27,1,26,1,28,1,26,1,15,1,25,1,29,1,28,6,29,1,28,6,29,1,28,8,29,1,28,2,29,2,28,1,29,1,28,1,29,1,28,1,29,1,30,1,28,1,29,1,13,1,28,8,29,2,28,9,29,1,28,2,29,2,28,3,29,1,28,13,7,1,9,1,10,1,8,1,29,1,28,1,8,1,11,1,7,1,28,1,9,1,1,1,10,1,28,1,1,332,}, + {1,139,28,66,1,109,28,1,13,1,29,1,26,2,29,1,26,1,30,1,29,1,30,1,26,1,30,1,29,2,26,1,13,2,28,96,29,1,28,10,29,1,28,4,29,1,26,1,29,1,28,2,30,2,28,2,29,1,30,1,29,4,26,1,9,1,15,2,14,1,1,1,13,1,28,1,13,1,26,1,28,1,29,1,30,1,29,2,28,1,29,1,30,1,28,1,26,1,28,2,30,1,26,1,30,1,28,42,29,1,28,11,29,2,28,1,29,1,28,3,29,1,28,10,26,1,28,2,30,1,28,4,26,1,27,1,26,1,28,1,26,2,25,1,9,1,28,2,27,1,26,1,15,1,29,1,28,5,29,1,26,1,28,5,29,2,28,7,29,1,28,1,29,1,28,3,30,1,29,2,28,5,29,2,28,7,29,1,30,1,28,3,29,1,28,5,29,1,28,2,29,2,28,5,29,1,28,3,29,2,28,3,29,1,28,4,9,1,11,1,12,1,6,1,29,1,9,1,11,1,9,1,29,1,10,2,7,1,28,1,1,331,}, + {1,140,28,65,1,108,28,2,26,1,30,1,29,1,30,2,26,1,29,2,30,1,29,1,30,3,13,1,30,1,26,1,29,1,28,95,29,1,28,10,29,1,28,5,29,4,28,1,29,2,28,2,29,2,26,2,29,1,26,1,9,1,15,1,14,1,11,2,30,1,29,1,30,1,26,1,28,1,29,7,28,1,26,1,28,7,29,1,28,55,29,1,28,13,26,1,29,2,28,6,26,1,15,1,9,2,26,1,28,4,9,1,26,1,27,1,26,1,28,3,29,2,28,1,29,1,28,5,29,2,28,7,29,1,28,1,29,1,28,3,29,1,28,16,29,1,30,1,28,11,29,1,28,7,26,1,29,1,28,4,29,1,28,3,29,1,28,3,29,1,9,1,17,1,11,1,10,1,28,1,12,1,1,1,16,1,28,2,12,1,9,1,28,1,1,330,}, + {1,140,28,64,1,109,28,1,6,1,29,1,26,1,29,1,30,3,29,1,30,2,29,1,30,1,13,1,26,2,28,1,30,1,29,1,28,95,29,1,28,16,29,1,28,3,29,1,26,2,28,3,26,1,9,2,29,1,30,1,9,1,15,1,14,1,11,2,29,1,30,1,29,1,26,1,29,2,28,1,29,2,28,1,29,2,28,1,13,1,29,1,28,1,29,5,28,13,29,1,28,42,29,1,28,2,29,1,28,11,26,1,30,1,28,4,26,1,28,2,26,2,27,1,15,1,29,1,28,2,26,1,27,1,26,2,25,1,28,7,30,1,29,1,28,7,29,1,28,4,29,2,28,2,29,2,28,14,29,1,28,3,29,2,28,17,29,1,28,16,29,1,6,1,12,1,16,1,6,1,12,1,1,1,12,1,6,1,8,1,1,1,6,1,1,330,}, + {1,140,28,2,29,1,28,61,1,109,28,1,13,1,29,1,30,1,26,2,13,1,26,2,29,2,26,1,13,1,26,1,29,1,30,3,26,1,28,2,29,1,28,91,29,1,28,10,29,1,28,7,29,3,28,1,30,2,29,2,26,1,9,2,28,2,26,1,15,1,14,2,1,1,14,1,30,1,29,2,30,1,29,1,28,2,29,1,28,1,29,2,28,1,29,1,26,1,29,1,28,2,29,3,28,11,29,2,28,40,29,1,28,14,30,1,28,4,29,1,28,3,29,1,26,1,28,2,26,1,28,1,26,1,9,1,28,3,26,4,9,1,26,1,28,2,29,1,28,4,30,2,28,2,29,1,28,2,29,1,28,5,29,1,28,2,29,2,28,4,29,1,28,8,29,1,28,5,29,1,26,1,28,2,29,1,28,4,29,1,28,1,29,1,28,2,29,1,28,3,29,1,28,5,29,1,28,12,6,1,29,1,28,1,29,1,10,2,12,1,16,1,28,1,7,1,1,1,29,1,1,329,}, + {1,141,28,2,29,1,28,59,1,107,28,3,30,2,29,1,30,3,13,4,26,1,30,7,26,1,28,94,29,1,28,18,29,3,30,1,28,2,26,1,9,2,26,1,28,3,13,1,15,2,14,1,1,1,15,1,29,2,30,1,29,5,28,2,29,5,28,1,29,4,28,8,29,2,28,43,29,1,28,2,29,1,28,18,29,1,28,1,29,1,28,2,26,1,28,2,27,1,9,1,28,3,26,1,27,1,26,2,9,1,26,1,28,2,29,1,28,5,29,3,28,3,30,1,28,5,29,1,28,5,29,1,28,18,29,1,28,10,29,3,28,5,29,2,28,3,29,1,28,11,6,1,7,1,6,1,29,1,28,4,7,1,28,1,7,1,11,1,29,1,1,328,}, + {1,142,28,1,7,1,29,1,28,57,1,102,28,9,29,1,26,2,30,1,26,1,30,2,26,1,13,2,26,1,30,7,26,1,28,112,29,1,30,2,29,1,28,1,30,1,9,2,13,1,28,5,9,1,14,1,15,1,11,1,1,1,9,1,30,1,26,2,29,6,28,1,29,1,30,1,29,6,28,1,29,3,28,51,29,1,28,2,29,1,28,15,29,1,28,4,25,1,28,2,26,1,28,2,15,1,26,1,28,3,26,3,27,1,9,1,29,1,28,2,29,1,28,6,29,2,28,2,29,1,28,7,29,2,28,2,29,3,28,17,29,1,30,1,28,2,29,1,28,6,29,2,28,2,29,1,28,4,29,1,28,12,6,1,28,4,9,1,12,1,8,1,10,1,9,1,28,2,7,1,28,2,7,1,6,1,28,1,1,326,}, + {1,142,28,59,1,92,28,16,29,1,28,4,13,2,29,1,30,1,26,1,28,1,29,3,26,1,13,1,26,1,30,1,29,1,30,2,29,1,26,1,29,1,28,2,29,1,28,101,29,1,28,6,29,1,30,1,29,1,28,1,25,1,9,2,13,1,28,4,29,1,30,1,15,1,14,1,15,1,11,2,13,1,26,2,30,1,29,6,28,1,29,1,30,1,29,1,28,3,29,5,28,50,29,3,28,2,29,1,28,3,29,1,28,16,25,1,28,4,26,1,27,1,28,3,26,5,25,1,28,3,29,1,28,3,29,1,28,3,29,2,28,9,29,1,28,2,29,3,28,17,29,1,30,1,13,1,28,12,29,1,30,1,28,5,29,1,28,4,29,1,28,7,29,1,28,5,9,1,7,1,12,1,1,1,16,1,28,1,6,1,8,1,28,2,9,1,28,3,1,2,28,1,1,320,}, + {1,143,28,24,29,1,28,32,1,83,28,16,29,1,30,1,6,1,29,1,28,5,29,2,28,4,26,1,13,1,28,1,29,1,26,1,30,1,29,1,28,1,29,1,30,1,26,1,30,3,26,1,30,1,29,1,26,1,29,1,28,2,29,1,28,88,29,2,28,11,29,1,28,7,29,2,26,1,15,1,13,1,29,1,28,3,29,2,30,1,13,1,15,1,14,2,1,1,11,1,30,2,28,3,29,8,28,1,29,1,28,2,29,2,30,1,29,1,28,4,30,1,28,44,29,1,28,6,29,1,28,11,29,1,28,2,29,1,28,5,26,1,28,4,26,2,28,1,26,7,9,1,29,1,28,2,29,1,28,3,29,2,28,2,29,1,30,1,28,5,29,2,28,5,29,3,28,19,30,1,28,4,29,1,28,7,29,3,28,3,29,1,28,15,6,1,28,4,29,1,28,2,9,1,11,1,9,1,29,1,6,1,28,2,9,2,28,2,1,322,}, + {1,144,28,2,29,1,28,20,26,1,28,32,1,78,28,32,30,1,29,1,28,2,29,1,26,1,30,5,29,1,30,1,26,1,29,1,28,1,29,1,26,1,30,1,26,1,29,1,30,1,26,1,28,112,29,1,13,1,15,1,26,1,30,1,28,3,29,1,26,1,13,1,26,1,13,1,9,1,14,2,1,1,15,1,29,1,26,1,28,3,30,1,29,1,28,1,29,2,30,2,29,1,28,1,30,1,29,1,28,1,29,2,30,1,29,1,28,10,29,1,28,33,29,1,28,11,29,1,28,14,29,1,28,2,30,1,28,6,26,1,27,1,26,8,27,1,9,1,26,1,28,1,29,2,28,7,29,1,28,11,29,1,28,3,29,2,28,30,29,1,28,2,30,1,28,3,29,1,28,2,29,1,28,9,29,1,28,3,6,1,7,1,29,2,6,1,28,3,6,1,11,1,16,1,9,1,6,1,28,2,6,2,28,2,1,321,}, + {1,145,28,1,29,2,28,51,1,73,28,16,29,1,30,1,13,1,26,1,30,1,28,17,29,1,13,1,28,3,29,1,30,3,29,1,30,2,26,1,13,1,26,1,28,1,29,1,30,1,29,1,26,1,29,2,26,1,28,111,29,1,13,1,9,2,29,1,28,3,30,1,13,2,26,2,13,1,9,1,14,1,11,1,1,1,16,1,28,1,13,1,30,1,28,1,29,3,28,1,29,1,30,1,26,1,30,1,28,2,26,1,29,1,28,2,29,1,28,12,30,1,28,45,29,1,28,13,30,1,28,4,29,1,28,5,9,1,26,1,28,3,29,1,27,1,26,4,9,1,26,1,28,9,29,1,28,3,29,1,28,7,29,1,30,1,29,1,28,26,29,1,28,11,30,1,28,5,29,2,30,1,28,8,29,1,28,3,29,1,28,3,29,2,28,2,29,1,16,1,11,1,17,1,28,2,29,1,6,2,28,2,1,320,}, + {1,144,28,1,1,1,28,1,26,1,28,50,1,1,28,1,1,69,28,35,30,1,28,5,29,1,30,1,28,5,30,2,29,2,28,1,29,1,13,1,9,1,26,1,29,1,28,2,26,1,29,2,30,1,28,104,29,1,28,6,26,1,9,1,25,1,28,3,29,1,26,1,13,1,26,2,13,1,26,1,13,1,9,1,14,1,11,2,9,1,29,1,26,1,30,1,29,8,28,3,29,1,28,16,29,1,28,42,29,1,28,2,29,1,28,2,29,1,28,4,29,2,28,3,30,1,28,6,29,1,26,1,28,2,27,1,15,1,28,4,27,1,9,2,26,4,28,8,29,1,28,2,29,1,28,2,29,2,28,4,29,1,28,4,29,1,28,22,29,1,28,2,29,1,28,2,29,1,28,9,29,1,28,9,29,1,28,19,6,1,11,1,17,1,28,3,7,1,28,2,1,320,}, + {1,147,28,50,1,67,28,29,29,1,28,10,29,1,28,6,29,1,30,1,29,1,28,4,26,2,29,1,30,1,28,2,25,1,9,1,13,1,29,2,28,1,29,1,30,1,29,1,28,99,29,1,28,2,29,1,28,7,26,1,9,1,26,1,28,3,29,1,13,1,26,1,30,1,26,1,13,4,9,1,11,2,1,1,13,1,29,3,28,2,29,1,30,1,26,1,30,1,29,5,30,1,29,2,28,6,29,1,28,27,29,1,28,34,29,2,28,6,29,1,28,3,25,1,27,1,26,1,27,1,26,1,28,1,26,2,28,3,15,1,9,1,26,2,29,1,28,7,29,1,28,2,29,1,28,3,29,1,28,6,29,1,28,2,29,2,28,36,29,1,28,27,29,1,7,1,6,1,28,3,1,1,11,1,28,2,6,1,29,1,6,1,28,1,1,319,}, + {1,148,28,47,1,64,28,34,29,1,28,18,26,2,28,4,29,1,26,1,29,1,30,2,28,1,29,1,25,1,9,1,26,2,29,1,28,1,29,1,28,2,29,1,28,97,29,1,28,1,29,2,28,7,29,1,13,1,28,3,29,1,26,1,13,2,26,1,13,5,9,1,11,2,1,1,26,1,29,6,30,2,29,1,28,1,29,2,30,2,29,2,28,2,29,1,28,2,29,1,28,30,29,1,28,13,29,1,28,16,29,1,28,13,29,1,25,1,9,3,28,2,11,1,28,4,27,1,9,2,27,1,28,8,29,1,28,2,29,1,28,3,29,1,28,6,29,1,28,2,29,2,28,22,29,1,28,41,29,4,28,3,9,1,1,1,6,1,28,1,29,3,28,1,1,318,}, + {1,149,28,45,1,58,28,15,29,1,28,38,29,1,28,6,13,2,28,4,29,3,30,1,29,1,28,1,29,1,9,2,13,1,26,1,29,2,28,1,29,2,28,99,29,1,28,8,29,1,26,1,28,2,29,1,26,3,13,6,25,1,9,1,14,1,11,1,1,1,26,1,28,1,29,2,30,1,29,2,30,1,29,2,28,1,29,1,30,2,29,2,28,3,29,1,28,1,29,3,28,9,29,1,28,22,30,1,28,10,29,1,28,4,29,1,28,11,29,2,28,12,26,1,28,2,9,1,26,1,28,1,15,2,28,3,26,4,9,1,28,8,29,1,28,19,29,2,28,43,29,1,28,21,29,1,28,3,6,1,17,1,28,3,6,1,7,1,28,1,1,317,}, + {1,147,28,1,1,2,28,42,1,3,28,1,1,52,28,19,26,1,28,36,29,1,28,1,29,1,28,6,26,1,13,1,28,2,29,1,26,3,28,1,29,1,30,1,29,1,28,1,30,1,9,1,26,4,29,3,28,108,29,1,26,1,28,1,29,1,26,1,13,1,26,2,13,6,25,1,9,1,14,1,11,2,30,1,28,1,29,2,30,1,29,4,28,1,29,4,28,4,29,2,28,1,29,2,28,4,29,1,28,6,29,1,28,21,29,2,28,14,29,1,28,11,29,2,28,9,29,2,28,4,9,1,28,2,11,1,26,1,28,3,25,1,26,2,29,1,9,1,26,1,28,1,29,1,28,2,29,1,28,3,29,1,28,12,29,1,28,2,29,1,28,47,30,1,28,27,17,1,28,3,6,1,28,1,1,317,}, + {1,152,28,39,1,50,28,26,29,1,28,24,29,1,28,7,29,1,13,2,26,1,28,3,29,1,28,4,9,1,30,1,28,1,29,1,26,1,15,1,9,1,29,1,13,2,29,2,26,1,29,1,28,1,25,1,29,1,30,1,26,2,29,3,28,109,29,1,28,1,29,1,26,4,13,4,25,1,13,1,25,1,9,1,15,1,11,2,29,1,28,1,29,10,28,3,29,2,28,1,29,4,28,60,29,1,28,2,29,1,28,15,9,1,28,2,27,1,28,2,29,1,26,1,28,1,26,3,27,1,26,1,28,1,29,1,28,19,29,1,28,2,29,1,30,1,29,1,28,45,29,1,28,20,29,1,28,2,29,1,28,4,16,1,28,5,1,316,}, + {1,154,28,35,1,49,28,31,30,1,28,22,29,1,28,4,29,1,26,1,13,1,26,1,29,1,28,5,30,1,28,2,30,1,13,2,28,2,9,1,13,1,28,3,13,1,15,1,26,1,28,1,30,2,28,1,26,1,29,1,30,1,26,2,30,1,29,2,28,62,29,2,28,33,29,1,28,11,26,1,28,1,29,1,26,3,13,3,26,2,13,3,9,1,15,1,11,1,14,1,28,1,29,11,28,2,29,3,28,3,30,1,29,1,28,43,29,2,28,1,29,1,28,13,29,4,28,12,26,1,28,2,25,1,28,1,26,2,28,2,26,1,28,2,26,3,9,1,26,1,28,9,29,1,28,11,29,1,28,80,8,1,28,4,1,316,}, + {1,157,28,30,1,48,28,34,29,1,28,25,30,1,9,1,13,1,29,1,28,8,13,1,26,1,30,1,25,1,26,1,28,2,29,1,14,1,13,1,28,2,29,1,13,1,15,1,25,1,28,2,29,2,30,1,26,1,29,2,26,1,13,1,26,1,29,1,28,60,29,1,28,36,29,2,28,9,29,1,26,1,28,1,29,1,13,1,26,3,13,2,26,2,13,3,9,1,15,1,11,1,15,1,28,1,30,1,29,2,30,1,29,5,28,1,29,5,28,4,29,1,28,44,29,1,28,2,29,1,28,14,29,3,28,9,29,3,26,1,28,1,9,1,27,1,28,1,26,2,28,1,29,1,28,3,26,3,9,1,28,4,26,1,28,5,29,1,28,2,29,1,28,8,29,1,28,1,30,1,28,4,29,2,28,67,29,1,28,2,29,1,28,7,1,315,}, + {1,162,28,22,1,49,28,35,29,1,28,26,25,1,28,11,13,2,30,1,29,1,28,3,29,1,9,1,15,1,30,1,28,1,30,1,26,1,9,2,26,1,29,2,30,1,26,1,30,1,28,2,13,1,9,2,26,1,28,98,29,1,28,10,29,1,28,2,26,3,13,3,25,4,13,1,9,1,15,1,1,1,9,1,28,1,30,1,29,1,30,2,29,5,28,1,29,3,28,4,29,1,28,68,29,3,28,6,29,1,26,1,29,1,28,1,9,1,28,2,9,1,28,1,27,1,28,3,26,3,25,2,28,7,29,1,28,2,29,1,28,2,29,1,28,6,29,1,28,1,29,1,28,3,29,2,28,52,29,1,28,21,6,1,28,3,29,1,28,2,1,315,}, + {1,173,28,6,1,51,28,38,29,1,28,23,26,1,28,14,13,1,9,1,29,1,28,3,29,1,26,1,9,1,14,1,9,1,29,1,28,1,30,1,9,1,15,2,30,1,29,1,9,1,13,1,29,4,26,1,15,2,29,1,28,1,29,1,28,2,29,1,28,91,29,1,28,10,26,1,29,1,28,1,29,1,26,5,13,5,26,1,25,1,15,1,1,1,9,1,28,1,29,1,30,1,29,1,28,2,29,3,28,1,29,6,28,69,29,1,28,2,29,1,28,7,26,4,27,1,28,1,26,1,27,1,28,1,27,1,28,2,26,1,27,1,26,2,25,1,26,1,28,1,29,1,28,2,30,1,28,8,29,1,28,5,29,1,28,2,29,1,28,2,29,2,28,59,29,2,28,16,29,1,28,5,1,314,}, + {1,227,28,7,29,1,28,33,29,1,28,11,29,1,28,9,30,1,9,2,29,1,28,13,26,1,9,1,13,1,26,2,30,2,13,1,9,1,15,1,9,1,26,1,28,1,29,1,13,1,9,1,14,1,13,1,28,1,30,1,29,1,28,1,29,4,13,1,9,2,28,1,29,1,28,105,29,1,30,1,28,2,26,3,13,4,25,1,9,1,13,1,26,1,25,1,15,1,11,1,9,1,28,1,29,1,30,1,29,6,28,1,29,3,28,1,29,2,28,57,29,1,28,8,29,1,28,2,29,1,28,2,29,1,28,5,29,3,25,1,26,2,28,2,9,2,26,2,28,2,26,1,25,1,26,1,9,2,29,1,28,1,29,1,28,5,29,2,28,2,29,1,28,3,29,1,28,9,29,2,28,59,29,2,28,22,1,314,}, + {1,224,28,10,29,2,28,42,29,1,13,1,26,3,25,1,9,6,15,1,14,1,9,1,29,3,28,8,29,2,28,1,26,1,15,1,9,1,13,1,26,3,13,1,9,1,15,1,14,1,9,1,30,1,28,1,29,1,25,1,14,1,9,1,30,1,29,2,28,1,29,5,9,1,14,1,28,2,29,1,28,79,29,1,28,23,29,1,28,1,26,1,29,1,28,1,29,1,13,1,26,1,29,1,26,1,13,5,26,1,13,1,15,1,11,1,9,1,28,1,29,1,30,3,29,2,28,2,29,4,28,1,29,2,28,42,29,1,28,26,29,1,28,8,29,1,28,2,9,1,28,1,9,1,27,1,26,1,9,1,27,1,26,1,9,1,28,2,26,1,27,1,26,1,27,1,26,1,28,4,26,1,28,2,29,2,28,3,26,1,28,3,29,1,28,9,29,2,28,39,29,1,28,33,6,2,29,1,28,2,29,1,28,5,1,313,}, + {1,222,28,13,29,2,26,1,30,1,28,18,29,1,28,19,30,1,13,1,26,1,28,10,30,1,9,1,25,1,29,2,28,1,29,2,28,4,29,2,30,1,26,1,30,1,13,1,15,2,9,1,30,1,26,2,13,1,9,2,14,2,9,1,28,1,29,1,30,1,9,1,15,1,25,1,30,2,29,4,26,1,30,1,26,1,15,1,26,1,28,6,29,1,28,74,29,1,28,15,29,2,28,8,26,2,28,2,26,1,30,1,29,1,26,1,13,1,26,3,13,3,9,1,11,1,9,1,28,1,29,1,30,2,29,9,28,2,29,1,28,54,29,1,28,13,29,2,28,3,29,1,28,5,29,1,28,2,9,1,15,1,26,1,28,3,26,1,15,1,26,1,28,1,26,3,9,1,29,1,28,1,29,1,28,5,29,2,28,7,29,2,28,6,29,3,28,40,29,1,28,36,29,1,28,8,1,312,}, + {1,220,28,7,29,5,28,4,29,5,28,16,30,1,29,1,28,9,26,1,28,8,13,2,28,12,29,2,28,1,29,7,30,1,26,1,13,1,26,1,13,2,9,1,15,1,14,1,15,1,13,1,30,1,26,1,25,1,9,2,15,1,14,1,15,1,30,1,28,1,29,1,13,1,15,1,9,1,26,2,30,2,29,2,26,2,29,1,26,1,9,1,28,6,29,2,28,74,29,1,28,14,29,1,26,1,29,1,28,7,29,3,28,1,29,2,26,1,13,1,26,3,25,1,13,3,9,1,14,1,9,1,28,1,30,1,29,7,28,1,29,2,28,2,29,2,28,16,29,1,28,38,29,1,28,12,29,3,28,2,29,1,28,2,29,1,28,4,29,1,28,7,26,1,15,1,26,1,28,1,26,1,9,2,28,6,29,1,28,10,30,2,28,6,29,3,28,44,29,1,28,35,29,2,28,4,1,312,}, + {1,219,28,14,29,1,28,23,29,1,30,1,28,5,29,1,28,3,9,1,13,1,26,1,13,1,26,1,30,1,28,3,13,1,29,1,28,2,29,2,28,5,29,2,28,4,29,1,26,1,29,3,30,1,26,1,13,2,25,2,9,4,15,1,14,1,25,1,30,1,13,1,9,3,15,1,14,2,29,1,28,2,13,1,9,2,13,2,30,2,29,2,30,2,29,1,30,1,15,1,29,1,28,2,29,1,28,27,29,2,28,49,29,2,28,14,29,2,28,4,29,2,26,1,29,1,28,1,30,1,28,4,30,1,26,1,13,6,9,1,14,1,9,1,28,1,30,1,29,7,28,1,29,1,28,3,29,3,28,1,29,2,28,1,29,1,28,59,29,2,28,3,30,2,28,1,29,3,25,1,30,1,28,3,26,1,28,2,9,4,26,2,27,1,26,3,9,1,26,1,28,4,30,1,29,1,30,1,28,4,29,1,28,2,29,1,28,2,29,1,26,1,28,6,29,2,28,21,29,2,26,1,28,64,1,311,}, + {1,217,28,7,13,1,30,1,29,3,28,29,26,1,29,1,28,1,29,3,30,1,29,2,30,1,15,1,13,1,29,1,13,2,9,3,15,1,13,1,28,2,29,5,30,3,28,1,29,2,26,2,29,5,30,1,26,1,13,1,25,1,9,1,25,1,9,5,15,1,14,1,13,2,9,5,15,1,14,1,26,1,28,1,26,1,9,2,25,1,13,1,9,1,13,1,30,1,29,1,30,1,29,2,30,2,9,1,25,1,28,28,29,2,28,52,29,1,28,15,29,2,28,3,26,1,29,1,28,4,29,5,30,1,13,2,26,1,13,3,9,1,14,1,25,1,28,1,30,1,29,13,30,1,29,1,28,1,29,2,28,1,29,1,28,50,29,2,28,7,29,1,28,7,30,1,13,1,9,1,26,1,28,3,29,2,28,1,25,1,15,1,28,3,27,2,26,3,9,1,25,1,28,2,29,1,28,12,29,2,28,2,13,1,28,7,29,1,28,16,29,1,28,3,26,5,28,64,1,310,}, + {1,216,28,3,29,1,28,3,26,1,13,1,29,1,28,2,29,1,28,9,29,1,28,6,13,2,26,1,28,10,13,2,26,1,9,1,13,1,26,1,29,2,13,2,15,1,29,1,28,4,30,1,25,1,9,1,30,1,28,1,30,2,28,1,29,1,30,1,29,1,30,1,26,1,29,1,30,1,26,1,29,1,26,1,9,2,26,1,29,1,30,1,26,2,13,1,25,1,9,2,25,1,9,3,15,2,14,2,13,2,9,3,15,3,14,1,15,1,30,1,9,1,14,1,9,1,30,1,13,1,14,1,9,1,29,2,30,4,29,1,13,1,9,1,29,1,28,3,29,1,28,11,29,2,28,64,29,1,28,13,29,1,28,1,29,1,26,2,28,2,29,1,28,5,26,1,29,1,13,1,9,1,26,1,28,2,26,1,25,1,13,3,25,1,15,1,25,1,28,1,30,1,29,1,30,3,29,8,30,2,29,1,28,55,29,1,28,11,29,1,28,4,30,1,9,1,28,3,29,3,15,1,26,2,28,4,9,1,27,1,9,1,26,1,28,1,26,1,28,2,29,2,28,3,30,1,29,2,28,2,29,1,28,5,29,1,28,1,13,1,28,5,29,1,28,1,29,1,28,15,26,3,28,2,26,2,28,1,26,3,28,4,29,1,28,59,1,309,}, + {1,214,28,4,29,1,28,3,9,2,28,22,30,1,9,1,26,1,30,1,29,1,28,4,29,1,26,1,29,1,14,1,9,1,29,1,25,2,9,1,25,1,13,2,9,1,13,1,28,3,29,1,28,5,29,1,30,1,29,1,30,4,26,2,30,1,13,1,26,1,30,1,26,1,9,1,15,1,13,1,30,1,26,2,13,1,25,1,9,6,25,1,14,2,9,2,15,1,26,1,29,1,30,1,13,1,9,1,15,2,14,1,15,2,9,1,29,1,28,1,30,1,9,1,15,1,14,1,25,1,29,2,30,1,29,2,26,2,9,1,26,1,28,10,29,2,28,2,29,3,28,78,29,1,28,1,26,1,29,1,28,1,26,2,28,6,29,1,30,1,25,1,9,1,14,1,13,1,28,1,26,1,29,1,13,1,26,1,13,1,26,1,14,1,9,1,28,1,29,5,30,1,29,3,26,1,30,2,29,2,28,57,30,1,28,17,26,1,28,2,29,1,28,2,25,1,11,1,29,1,28,5,26,1,9,1,26,1,27,1,26,2,28,1,29,2,28,2,30,1,26,1,28,13,29,1,26,1,28,2,29,1,28,1,29,1,28,1,29,1,30,1,28,11,26,2,28,1,26,1,28,2,26,3,28,3,26,3,29,1,28,14,29,1,28,2,29,1,28,9,29,1,28,35,1,308,}, + {1,212,28,8,26,1,15,1,25,1,28,4,30,1,29,1,28,19,13,1,9,1,26,1,28,1,29,1,30,1,29,1,30,1,26,1,11,1,14,1,28,4,26,1,9,1,15,1,14,1,15,1,30,1,28,2,30,1,28,2,29,1,30,2,26,2,30,1,29,1,26,3,13,2,26,1,30,1,13,1,26,2,13,1,9,1,15,1,25,1,13,1,26,2,13,2,25,1,9,4,15,2,14,1,15,1,26,1,25,1,14,1,13,1,29,1,30,1,13,1,9,1,15,2,14,1,15,2,9,1,30,1,28,1,29,1,13,1,9,1,14,1,15,1,9,1,30,1,29,1,30,1,26,1,30,1,25,2,26,1,28,8,29,1,28,3,29,1,28,87,26,1,13,1,29,1,28,6,26,2,29,1,9,1,15,2,9,1,29,1,26,1,13,1,9,1,13,1,9,2,28,1,29,1,28,1,29,1,26,2,29,1,28,2,29,1,28,62,30,1,28,17,30,1,28,4,9,3,28,6,26,1,9,1,26,1,27,1,26,1,28,1,29,1,28,3,26,1,28,15,13,1,26,1,28,2,30,1,28,2,29,3,28,10,26,2,28,1,29,1,26,1,28,2,26,2,28,6,26,1,29,1,28,14,29,1,28,2,29,1,28,9,29,1,28,36,1,307,}, + {1,208,28,1,1,2,28,8,13,1,14,1,26,1,28,6,29,2,28,19,29,1,26,2,30,3,29,1,9,1,14,1,28,2,29,1,28,4,30,1,26,1,30,1,28,2,29,1,26,1,30,1,26,1,13,3,9,2,26,1,13,11,25,1,15,2,9,1,25,1,9,9,14,2,15,1,30,1,28,1,13,1,14,1,9,1,29,1,30,1,13,1,9,2,15,2,14,2,15,1,9,1,30,1,29,1,30,1,13,1,9,1,14,2,13,1,28,1,29,1,26,1,13,1,9,1,26,1,29,1,28,9,29,1,28,85,29,2,26,1,29,1,28,1,29,1,26,2,29,1,28,6,30,2,26,1,15,1,14,1,9,1,28,1,26,2,25,1,26,1,9,1,15,1,29,1,28,1,29,4,30,1,29,3,28,62,29,1,28,8,29,3,28,7,29,1,28,2,26,1,9,1,25,1,29,1,28,7,9,1,26,2,29,1,28,1,29,1,28,2,26,1,30,1,28,4,29,1,28,2,29,1,28,7,13,2,28,2,29,1,28,2,29,1,28,2,29,1,28,7,29,1,26,2,28,3,27,1,26,1,28,1,26,2,28,5,26,3,28,3,29,1,28,10,29,1,28,12,30,1,28,36,1,307,}, + {1,210,28,2,29,1,28,2,29,1,28,2,9,1,14,1,29,1,28,8,29,1,28,16,29,1,30,1,28,2,26,1,9,1,28,4,26,1,28,3,25,1,13,1,9,1,29,5,30,4,13,3,26,1,13,1,15,1,9,1,26,2,13,6,25,1,13,3,9,1,14,1,15,1,9,1,13,1,25,1,9,8,14,1,9,1,26,1,28,2,13,1,14,2,30,1,29,1,13,1,9,2,15,2,14,3,15,1,25,1,30,1,29,1,26,1,25,1,15,1,14,1,9,1,30,1,29,1,13,1,9,1,26,1,28,1,29,1,30,1,28,9,29,2,28,7,29,1,28,82,30,2,28,6,26,1,25,1,26,1,25,1,9,1,30,1,29,1,25,1,13,1,9,1,13,1,9,1,14,1,13,1,28,1,26,1,29,1,28,1,29,1,30,2,29,1,28,1,29,4,28,13,29,1,28,44,29,1,28,8,29,1,28,1,29,1,28,7,26,1,28,1,29,1,9,1,26,1,25,1,28,7,26,1,9,1,27,1,28,2,29,1,28,2,30,1,13,1,28,8,29,1,28,7,30,1,13,1,29,1,28,3,29,1,28,9,26,1,28,6,26,2,28,2,26,2,28,3,26,1,29,2,26,2,29,1,28,13,29,1,28,12,30,1,28,31,29,1,28,5,1,306,}, + {1,204,28,1,1,3,28,5,29,1,28,3,14,1,9,1,28,2,29,1,28,1,29,1,28,7,29,1,28,12,30,1,26,1,30,1,26,2,29,3,28,1,29,1,13,2,14,1,30,1,28,3,30,1,9,1,26,1,25,2,9,2,13,1,26,2,13,5,9,1,15,1,9,1,13,1,29,1,30,1,13,1,9,2,25,1,13,1,25,3,9,1,15,1,14,1,9,1,30,1,28,1,29,1,26,1,13,1,9,2,15,4,14,1,13,1,29,2,30,1,9,1,14,2,26,1,28,1,26,1,9,1,15,4,14,3,9,1,26,1,29,2,13,1,9,1,15,2,9,3,25,1,28,2,29,1,13,1,29,1,28,4,29,2,28,103,29,1,28,1,29,1,26,1,28,1,29,1,30,1,26,1,9,1,13,1,26,1,13,1,26,1,29,2,30,2,26,1,30,1,29,1,28,1,29,1,28,2,29,1,28,52,29,1,28,5,30,1,28,11,29,1,28,9,9,1,25,1,26,1,15,1,28,7,27,1,9,1,26,1,28,2,29,1,28,2,13,1,28,8,29,1,28,9,30,1,29,1,28,3,29,1,28,1,29,1,28,4,26,2,28,3,29,1,28,4,26,2,28,2,26,1,28,36,29,1,28,16,29,1,28,21,1,305,}, + {1,206,28,3,30,1,28,6,15,1,26,1,28,4,29,1,28,1,29,2,28,15,29,1,28,1,30,1,9,2,30,3,13,1,28,2,9,1,1,1,11,1,1,4,15,1,30,1,28,2,25,1,13,1,25,1,9,2,13,1,30,1,26,1,9,1,13,2,25,1,9,1,25,1,9,1,15,1,14,1,13,2,25,1,9,1,25,1,13,1,25,1,9,4,15,2,13,1,28,3,29,2,26,1,13,1,9,2,15,3,30,1,29,1,13,1,9,1,15,2,14,1,9,1,28,1,29,1,9,1,15,4,14,1,11,1,14,1,15,1,9,1,26,1,29,1,30,1,13,1,9,2,15,1,14,1,9,1,28,3,30,1,13,1,30,1,28,5,29,2,28,3,29,1,28,63,29,1,28,50,29,1,30,2,29,3,28,22,29,1,28,49,29,1,28,9,26,1,13,1,26,1,9,1,26,1,28,6,26,1,9,1,26,1,29,1,28,5,26,1,28,1,29,1,28,5,29,2,28,20,29,1,26,3,28,2,15,1,9,1,28,4,26,1,28,1,26,2,28,53,29,1,28,22,1,304,}, + {1,205,28,9,29,1,15,1,13,1,28,5,29,1,28,1,29,1,28,4,29,1,28,13,29,1,25,1,26,1,29,1,26,1,13,1,26,1,29,1,8,1,1,9,15,1,28,2,25,1,9,1,15,1,9,1,13,1,26,3,13,2,25,2,13,1,9,1,14,1,15,1,25,4,13,2,25,1,9,4,15,1,9,1,30,1,28,1,29,1,30,1,26,5,25,1,9,1,15,1,9,1,30,2,9,2,15,2,14,1,15,1,29,1,28,1,25,1,9,1,15,2,14,2,11,1,14,2,15,1,9,1,30,1,29,1,26,1,13,1,25,1,9,1,15,1,9,1,29,1,26,1,30,2,26,2,28,59,29,1,28,26,29,2,28,40,29,4,28,6,29,1,28,1,29,1,28,62,29,1,28,8,9,2,28,1,26,2,28,6,26,4,28,1,29,1,28,3,30,1,29,1,28,21,29,1,28,4,29,1,26,2,29,2,26,1,25,1,15,1,28,2,15,1,29,1,28,3,27,1,26,2,28,22,29,1,28,1,29,1,28,53,1,303,}, + {1,204,28,9,13,1,15,1,29,1,28,3,29,2,28,20,30,3,26,1,28,1,29,1,15,1,25,1,28,1,7,1,1,5,11,1,1,2,11,3,9,1,29,1,28,1,25,1,14,1,15,1,13,3,26,1,13,3,25,1,9,1,14,1,9,1,30,1,28,2,13,1,9,2,25,1,13,2,25,1,9,1,15,2,9,1,30,1,29,1,13,3,25,2,13,4,15,1,9,1,26,2,13,1,25,1,15,1,14,3,30,1,28,1,25,1,9,2,15,2,14,5,9,1,26,1,30,1,26,1,13,1,25,1,13,1,26,1,9,1,15,1,9,1,25,1,29,1,30,1,13,1,29,1,28,7,29,1,28,49,29,1,28,63,29,1,28,7,29,3,28,7,29,1,28,46,29,1,28,3,26,1,28,20,14,1,9,1,29,1,28,8,26,4,28,5,13,1,29,1,28,3,29,1,28,4,29,1,28,13,29,2,28,1,26,3,29,2,28,3,27,1,9,1,28,1,26,1,9,1,28,3,9,2,28,26,29,1,28,10,29,1,28,42,1,302,}, + {1,203,28,2,30,2,28,5,15,1,14,1,28,5,29,1,28,14,29,1,30,1,26,2,30,2,13,1,30,2,13,4,25,1,28,1,29,1,1,10,11,1,14,2,30,1,28,1,29,1,15,2,9,2,25,2,13,1,26,1,30,1,13,1,15,2,26,1,28,2,29,1,26,1,9,8,25,1,13,4,25,1,9,2,25,3,9,2,15,2,13,2,9,2,15,3,11,1,25,1,28,1,13,1,9,2,15,2,11,2,15,2,11,1,14,1,9,1,29,1,26,1,25,1,13,1,26,1,13,1,25,1,9,1,15,2,9,1,26,1,13,1,26,1,28,45,29,1,28,19,29,1,28,51,29,1,28,3,29,1,28,10,29,1,28,66,29,1,28,3,29,2,28,5,26,1,13,1,26,1,29,1,28,7,26,2,27,2,28,2,29,1,28,2,13,1,26,1,28,7,29,1,28,9,29,1,28,4,29,3,26,3,28,7,26,1,15,1,26,2,28,2,26,1,9,2,29,1,28,28,30,1,28,6,29,1,28,18,29,1,28,25,1,301,}, + {1,201,28,7,29,1,28,2,15,1,9,1,29,1,28,1,29,1,28,2,29,4,28,4,29,1,28,7,29,2,28,2,29,1,26,1,29,1,26,1,9,1,15,1,14,1,15,1,9,2,28,1,7,1,11,1,1,9,11,2,14,1,13,1,28,2,9,1,15,1,9,5,13,2,9,1,15,1,25,1,29,1,28,1,26,1,13,2,25,1,9,4,13,1,9,2,25,1,13,2,25,2,9,4,25,1,9,3,15,2,13,2,25,1,9,1,15,3,11,1,9,1,29,1,13,1,9,2,15,2,14,2,15,2,11,2,15,1,26,1,13,2,26,1,30,1,26,1,13,1,25,1,9,1,14,2,15,1,25,1,30,1,28,43,29,1,28,5,29,1,28,92,29,1,28,43,29,1,28,9,29,1,28,2,29,1,28,2,29,2,26,1,13,1,30,1,28,2,26,1,28,1,30,1,29,1,28,3,29,1,26,4,28,1,27,2,28,6,13,1,26,1,28,3,29,1,28,13,29,1,28,4,29,2,26,2,28,1,29,1,28,1,29,1,26,1,28,5,26,4,28,1,26,2,9,1,27,1,28,35,29,1,28,10,29,1,28,7,29,1,28,26,1,300,}, + {1,200,28,7,29,1,28,2,25,1,15,1,28,5,29,2,28,2,29,1,28,4,29,1,28,14,29,1,26,2,9,1,15,3,8,1,11,1,1,10,11,3,9,1,28,2,9,1,15,1,25,1,13,2,9,1,15,1,9,2,14,1,9,1,29,1,28,1,30,1,13,1,25,2,9,1,15,3,25,1,26,1,13,1,25,1,13,3,9,9,15,1,14,1,9,1,26,1,13,1,25,1,9,1,15,3,14,1,15,1,25,1,13,1,25,1,9,1,15,1,14,2,15,3,14,1,11,1,14,1,9,2,13,1,30,1,29,1,30,1,13,2,9,2,15,3,9,1,26,1,28,51,29,1,28,89,29,2,28,42,29,1,28,9,29,2,28,6,30,1,26,2,30,1,29,1,25,1,13,1,26,2,29,1,26,4,25,1,26,5,28,5,26,1,25,1,28,21,29,2,28,1,29,1,26,2,29,1,28,2,26,1,29,1,28,4,26,3,28,4,26,1,28,1,27,1,15,1,28,25,29,1,28,19,29,1,28,7,29,2,28,26,1,299,}, + {1,200,28,5,30,1,29,2,28,1,9,2,28,6,29,2,28,5,29,1,28,7,29,1,28,4,29,4,9,1,13,1,28,1,30,1,13,1,9,1,15,1,14,1,1,11,11,2,14,1,9,1,28,2,9,2,30,1,26,1,13,2,9,2,15,1,14,1,25,1,28,2,26,1,13,1,25,1,9,2,15,1,14,1,9,1,26,2,13,1,25,4,9,8,15,1,14,2,13,1,29,1,26,1,25,1,9,1,15,3,14,2,9,1,26,1,13,1,9,1,15,1,14,1,15,5,14,1,11,1,15,1,9,1,25,1,30,2,26,1,13,2,9,1,13,1,9,1,15,1,14,1,11,1,15,1,28,45,29,1,28,30,29,1,28,65,29,2,28,41,29,1,28,10,29,1,28,3,29,1,28,2,29,1,28,2,29,1,28,2,29,1,26,8,29,1,27,1,9,1,26,1,28,5,29,1,13,1,30,1,28,21,29,3,26,2,29,1,26,1,28,8,27,1,26,1,28,5,26,7,28,22,29,1,28,22,29,1,28,19,29,1,28,13,1,298,}, + {1,198,28,6,29,1,30,1,28,2,26,1,13,1,29,1,28,21,29,3,30,1,13,1,25,1,9,1,25,1,13,1,15,1,9,1,26,1,13,1,26,1,30,1,13,1,15,1,1,1,11,1,1,9,11,2,14,1,9,1,13,1,28,1,26,1,13,1,29,1,26,1,25,1,13,2,25,1,9,2,13,1,29,1,30,1,13,1,25,1,9,1,25,2,9,1,15,1,9,1,26,2,13,1,25,3,9,3,25,1,9,5,15,1,14,2,30,1,28,1,30,1,25,1,9,2,15,2,14,2,15,1,26,2,9,1,15,8,14,2,15,1,25,1,26,4,13,1,26,1,13,1,9,3,14,2,9,1,28,76,29,1,28,29,29,1,28,35,29,2,28,1,29,1,28,31,29,1,28,6,29,1,28,14,29,1,28,5,30,1,28,4,29,1,25,1,9,2,26,1,28,1,26,3,9,1,28,2,29,1,28,2,29,1,26,2,28,5,29,1,30,1,29,1,28,15,26,4,28,10,26,1,28,1,26,1,28,1,29,1,26,1,29,1,28,2,27,1,26,1,28,1,26,1,9,1,26,1,28,31,29,1,28,15,29,1,28,4,29,1,28,8,29,1,28,17,1,297,}, + {1,198,28,5,30,1,26,1,28,2,29,1,9,1,28,3,29,1,28,3,29,1,28,2,29,1,28,3,26,1,28,6,29,1,28,2,29,1,26,3,30,1,26,2,25,1,9,2,13,1,25,1,13,1,26,1,13,1,8,1,14,1,11,1,1,10,11,1,14,1,15,1,14,1,28,1,29,1,25,1,26,4,29,1,13,1,9,1,25,1,13,5,25,1,9,4,13,1,30,1,26,1,13,1,25,1,9,4,25,3,9,4,15,1,14,1,15,1,28,2,26,1,25,1,9,3,15,2,14,1,15,1,25,1,13,1,9,1,15,2,9,1,15,5,14,2,15,1,9,1,13,1,26,4,13,1,25,1,9,4,14,2,28,42,29,1,28,34,29,1,28,28,29,1,28,17,29,2,28,3,29,1,28,54,30,1,28,14,29,1,28,4,26,1,9,1,30,1,29,1,30,1,28,3,29,1,26,1,9,2,26,1,25,1,26,2,29,1,28,4,29,1,26,2,28,6,29,1,30,2,28,14,26,4,28,9,27,1,28,2,26,2,27,1,26,1,28,5,26,2,29,1,26,2,28,31,29,1,28,7,29,1,28,3,29,1,28,12,29,2,28,20,1,297,}, + {1,196,28,3,29,1,28,3,30,1,28,2,29,1,13,1,30,1,28,5,29,1,28,8,13,1,28,3,29,1,28,4,29,1,26,1,13,1,26,1,29,1,28,2,29,1,14,2,9,1,13,6,16,1,1,11,11,1,14,1,15,1,9,1,28,1,30,1,25,1,26,1,25,2,26,1,28,1,30,1,13,5,26,1,30,1,13,1,9,1,15,1,9,1,13,1,30,1,29,1,26,1,13,1,25,1,9,4,25,1,13,1,25,1,9,4,15,1,14,1,15,1,28,2,13,2,9,2,15,3,14,2,9,1,25,2,9,3,15,6,14,1,15,1,9,1,25,1,26,1,30,1,26,1,13,1,9,2,25,1,9,4,15,2,28,105,29,1,28,8,29,1,30,1,28,12,29,1,28,17,29,2,28,37,29,2,28,2,29,1,28,5,29,1,28,3,30,1,29,1,26,1,9,1,15,1,9,1,29,1,28,3,29,1,26,1,29,1,28,1,26,1,27,1,25,1,9,1,26,2,28,6,29,3,30,1,29,1,28,1,29,1,28,2,29,1,13,1,30,1,28,12,26,1,25,1,26,1,29,1,28,1,29,1,28,8,27,1,28,1,26,3,27,1,28,8,26,2,9,1,26,1,28,30,29,1,28,7,30,1,28,3,29,1,28,4,29,1,28,6,29,2,28,22,1,296,}, + {1,195,28,3,29,2,28,1,29,1,30,1,28,3,26,2,28,2,29,2,28,11,30,1,28,3,29,2,28,3,30,1,26,6,13,1,15,1,9,1,25,1,26,2,9,2,8,1,30,1,9,1,1,10,11,1,14,1,15,2,9,1,28,1,29,2,26,1,11,2,26,1,28,2,30,1,13,3,26,2,25,2,9,2,13,1,29,1,28,1,29,1,26,1,13,1,25,1,9,4,13,2,25,1,9,4,14,2,9,1,28,1,29,1,25,1,13,1,25,2,15,2,14,3,15,1,9,1,25,1,9,3,15,5,14,2,15,1,9,2,13,1,30,1,26,1,13,1,25,1,9,1,25,1,9,2,13,1,26,1,9,1,14,1,29,1,28,22,29,1,28,81,26,1,28,9,29,1,28,12,30,1,28,18,30,1,26,1,29,1,28,28,29,1,28,6,29,2,28,8,29,1,28,4,29,1,26,1,9,1,15,1,13,1,29,1,28,5,26,1,25,1,27,1,26,2,29,1,25,1,26,1,28,2,29,1,28,7,30,2,28,3,29,2,28,1,29,1,9,1,28,9,26,1,25,1,9,1,26,1,28,10,29,1,28,2,9,1,28,1,26,2,28,10,26,3,28,17,29,1,28,2,29,1,28,5,29,2,28,15,29,1,28,1,29,2,28,3,29,3,28,26,1,294,}, + {1,194,28,6,29,1,28,1,29,1,28,2,9,1,28,3,29,1,28,2,29,1,28,4,29,1,28,5,29,1,30,1,29,4,28,2,29,1,13,1,29,1,28,1,26,1,13,1,26,2,9,1,14,1,9,1,26,1,13,2,9,3,13,1,9,1,11,1,1,4,11,1,1,4,11,2,14,1,15,1,29,3,26,1,9,1,14,3,26,1,28,2,29,1,26,3,13,1,9,4,26,1,29,1,28,1,29,1,30,1,13,2,25,2,9,2,13,2,25,2,13,1,9,1,14,2,15,1,13,4,9,4,15,2,14,2,15,1,9,1,25,1,13,1,9,2,15,2,14,1,15,6,9,1,13,3,25,1,9,4,25,1,26,1,13,1,9,1,14,1,9,1,28,18,29,1,28,10,29,2,28,36,29,1,28,21,29,1,28,31,30,1,29,1,28,3,30,1,28,21,26,1,29,1,28,35,29,2,28,7,29,1,28,4,13,1,14,1,9,2,29,1,28,7,26,1,27,1,9,1,26,1,28,1,29,1,28,2,29,1,28,2,9,1,26,1,29,1,28,3,29,1,28,1,30,1,28,5,29,2,13,1,28,2,29,2,28,3,29,1,25,1,9,1,26,2,28,12,26,2,28,1,26,1,29,1,28,29,29,1,28,9,26,1,29,1,28,17,29,2,28,2,26,1,30,1,29,1,28,27,1,294,}, + {1,193,28,3,29,2,28,3,29,1,28,2,26,1,13,1,29,1,28,3,29,2,28,1,29,1,28,6,29,1,28,4,29,1,13,1,9,1,26,1,28,2,29,3,30,1,13,2,26,2,9,1,14,1,25,1,26,1,13,1,9,5,30,1,16,1,1,2,11,1,1,4,11,4,9,1,29,1,28,1,29,1,26,2,13,1,9,1,15,1,14,1,9,1,30,1,28,1,30,1,13,1,30,1,26,1,8,1,9,4,13,1,29,3,30,1,13,4,25,2,13,4,9,1,15,2,9,1,13,1,30,1,26,1,13,2,9,4,15,2,14,2,15,1,9,2,13,2,9,2,15,8,9,2,25,3,9,5,25,2,9,1,15,1,14,1,26,1,28,82,29,2,28,3,29,1,28,32,29,2,28,3,29,1,28,22,29,1,28,35,29,2,28,11,29,1,9,1,25,1,28,1,29,2,28,5,26,5,27,1,28,6,25,1,29,1,28,5,29,1,28,1,29,1,28,7,29,3,28,1,29,1,28,3,26,1,15,2,26,1,28,11,29,1,26,1,9,1,28,1,26,2,28,39,29,1,13,1,30,1,28,9,29,1,28,7,29,1,28,32,29,1,28,1,1,293,}, + {1,193,28,1,29,1,28,6,30,1,28,2,9,1,29,2,28,3,29,1,28,2,29,1,26,1,28,12,29,2,30,1,26,1,13,3,30,2,13,3,9,1,15,1,26,1,29,1,13,1,9,5,29,1,8,1,1,5,11,1,1,3,11,1,9,1,29,1,28,2,30,1,26,3,13,1,9,1,14,2,13,1,29,1,13,1,8,1,13,2,9,6,26,1,29,3,30,1,13,9,9,1,15,2,13,1,29,2,30,1,13,1,25,1,9,5,15,2,14,1,15,2,9,2,13,2,9,3,15,5,9,4,10,1,25,1,9,1,8,2,9,6,15,2,28,15,29,1,28,2,29,1,28,123,29,1,28,5,26,2,28,26,29,1,28,7,29,1,28,12,26,1,30,1,28,2,29,1,13,1,29,1,28,3,29,1,25,1,27,1,26,4,29,1,28,4,26,1,13,1,28,17,29,1,28,6,9,1,15,2,26,1,28,2,29,1,28,9,26,1,15,1,26,2,28,40,30,1,15,1,14,1,15,1,28,4,29,1,28,11,30,1,28,1,29,2,28,32,1,292,}, + {1,192,28,1,29,1,30,1,28,5,29,1,28,2,13,1,15,1,28,2,29,2,28,1,29,1,28,3,29,1,28,1,29,1,30,2,28,5,29,1,28,5,30,1,26,2,13,1,30,1,29,1,26,1,13,1,25,1,15,1,9,1,30,2,9,1,15,1,9,2,25,1,13,1,8,1,9,1,15,1,1,6,11,1,8,1,28,4,30,1,26,2,30,1,26,1,13,1,9,2,14,1,13,1,30,1,13,1,9,2,25,1,9,6,13,1,30,1,29,3,30,1,26,7,13,1,9,1,15,1,9,1,30,1,29,1,30,1,26,1,13,4,25,1,9,2,15,2,14,2,15,2,9,2,8,1,9,4,15,4,9,5,25,2,13,1,25,1,9,2,15,1,9,2,25,1,9,1,15,1,29,1,28,17,29,1,28,15,29,1,28,26,29,1,28,43,29,1,28,42,29,1,25,1,28,2,29,1,28,31,29,1,28,4,29,1,28,2,29,1,28,4,29,1,28,3,13,2,28,4,26,1,25,1,26,4,29,1,26,1,28,3,29,1,13,1,28,8,29,2,28,14,29,1,11,1,15,2,25,1,28,3,29,1,28,6,26,1,28,1,27,1,9,2,26,1,28,41,26,1,9,1,15,2,26,1,28,2,29,2,28,9,29,2,28,2,29,1,28,33,1,291,}, + {1,192,28,1,30,1,29,1,28,1,29,1,28,6,15,1,13,1,28,2,29,1,28,1,29,2,28,5,30,1,28,16,30,1,25,1,13,1,26,2,9,1,14,1,13,1,26,1,25,1,15,1,9,3,25,1,13,1,15,2,10,1,9,1,15,1,11,1,1,1,11,1,9,1,29,1,28,3,29,1,26,1,30,2,29,1,30,1,26,1,13,1,25,1,9,1,15,1,13,1,30,2,13,1,9,1,25,1,26,1,13,3,9,2,25,1,26,2,29,3,30,2,26,4,13,1,9,3,26,1,29,2,30,1,26,1,13,5,9,3,15,2,14,1,15,4,9,6,15,1,9,1,15,3,9,4,13,1,25,1,8,1,9,5,10,1,9,2,10,1,28,3,29,1,28,7,29,2,28,6,29,1,28,65,29,1,28,18,30,1,28,43,26,2,29,1,28,1,29,1,28,22,29,1,28,7,29,1,28,6,29,2,28,3,29,1,30,1,28,2,29,1,30,2,28,3,29,1,26,2,28,1,26,3,29,2,28,3,26,2,28,9,29,1,28,5,29,1,28,4,29,1,28,3,25,1,11,1,9,2,26,1,28,4,26,2,28,3,29,2,28,1,26,1,28,45,29,2,14,1,13,1,28,13,29,1,28,3,30,1,28,34,1,290,}, + {1,192,28,1,30,1,28,2,30,1,28,5,26,1,9,1,28,3,29,1,28,1,29,1,28,2,29,1,28,12,29,4,30,1,29,2,28,1,26,1,9,2,13,1,26,1,9,1,15,1,30,1,26,1,9,2,25,1,9,3,15,2,9,1,25,1,13,1,7,1,6,2,28,4,29,1,28,3,29,2,30,1,26,3,25,1,9,2,13,1,29,1,28,1,29,1,13,2,29,1,30,2,26,1,13,1,25,3,13,1,30,1,29,1,28,1,29,2,30,3,13,1,25,1,9,2,13,1,29,1,28,1,29,1,30,1,26,3,13,3,9,4,15,7,9,7,15,3,9,4,25,1,9,9,29,2,30,1,28,6,29,2,28,2,29,1,28,7,30,1,28,42,29,1,28,16,29,2,28,18,29,1,28,4,29,1,28,44,13,2,28,17,29,1,28,20,29,1,30,1,29,1,28,3,29,1,26,1,28,3,29,1,13,1,29,1,28,2,26,4,25,1,26,1,28,3,29,1,30,1,26,2,28,10,29,1,28,5,29,1,28,3,26,1,28,3,29,1,14,1,9,1,25,1,26,2,28,4,25,1,9,2,28,2,26,1,28,1,26,2,28,1,26,1,28,45,26,1,30,1,29,1,28,16,29,1,28,35,1,289,}, + {1,192,28,1,29,1,28,2,30,1,28,5,13,1,30,1,28,1,29,2,28,1,29,2,28,5,30,1,28,4,29,1,26,1,29,1,28,1,30,1,29,3,30,1,13,2,26,1,9,1,26,1,25,1,9,1,13,2,9,1,13,1,29,1,26,1,25,1,13,1,26,1,9,1,15,2,14,1,9,4,13,1,29,1,28,3,6,2,29,1,28,5,29,1,30,3,13,1,9,1,13,1,30,1,28,3,29,1,30,5,26,2,13,2,25,1,13,1,30,1,29,4,30,2,25,1,9,3,26,1,29,3,30,4,26,1,13,2,25,2,9,2,15,7,9,6,15,4,9,11,8,2,29,1,28,1,6,1,11,1,28,7,29,1,28,32,29,1,28,21,29,1,28,7,29,1,28,7,29,1,28,67,29,1,28,1,29,1,13,1,30,1,28,10,29,1,28,5,29,1,28,3,29,1,28,16,29,1,26,1,29,1,28,3,29,1,26,1,28,3,30,1,13,1,26,1,28,2,26,3,25,1,27,1,29,1,28,3,30,1,13,1,26,1,29,1,28,9,29,2,28,9,29,1,28,3,9,1,14,1,26,3,29,1,28,6,15,1,29,1,28,3,9,1,26,2,15,1,26,1,28,52,29,1,28,6,29,1,28,12,29,1,28,28,1,287,}, + {1,192,28,1,29,1,28,1,29,2,28,1,29,1,28,1,29,1,30,2,28,3,30,1,29,2,28,1,29,2,28,8,29,1,28,2,30,1,28,1,30,1,26,1,30,1,29,1,30,1,13,1,9,1,26,1,29,1,25,1,15,1,9,1,13,2,29,1,26,1,9,2,26,1,30,1,9,1,14,2,9,4,8,1,9,3,28,14,29,1,30,1,29,2,28,1,29,4,26,3,30,3,26,1,13,2,9,1,13,1,30,1,29,1,30,1,26,2,13,1,9,3,25,1,13,1,26,1,30,1,29,1,30,4,26,1,13,4,25,1,9,2,15,5,9,2,25,2,9,3,15,4,9,4,15,1,9,6,8,1,28,3,11,1,1,1,13,1,28,1,29,1,28,59,29,2,28,6,29,1,28,69,29,1,28,8,30,1,13,1,30,1,28,15,29,1,28,5,29,1,28,11,29,1,28,2,30,1,26,1,28,4,29,1,30,1,28,5,26,1,28,1,29,1,26,3,9,1,26,1,28,4,26,2,28,12,30,1,28,8,29,1,28,3,29,1,14,1,29,2,28,3,26,1,28,2,29,2,28,5,27,1,26,2,9,1,26,1,9,1,26,1,28,58,30,1,28,15,30,1,28,26,1,286,}, + {1,192,28,1,30,1,29,1,28,1,29,1,28,1,29,1,28,3,29,2,28,2,29,2,28,2,29,1,30,1,29,1,28,2,29,1,28,5,30,2,29,2,26,1,30,1,29,2,26,1,13,1,26,2,25,1,13,1,9,2,26,1,29,1,9,1,15,1,9,3,13,1,9,1,14,1,25,3,9,4,8,1,28,2,1,3,28,4,29,3,28,8,29,5,30,1,29,1,30,2,26,1,13,1,25,2,13,1,26,1,30,1,13,1,9,2,25,1,26,1,13,1,9,3,13,2,26,1,30,1,29,3,30,2,26,3,25,1,13,2,9,1,15,1,14,1,15,4,9,1,25,1,13,1,25,1,9,3,15,2,9,1,15,2,9,6,8,1,9,1,6,1,28,2,6,1,11,1,16,1,28,4,29,1,28,1,29,2,28,19,29,1,28,36,26,1,28,6,30,1,28,38,29,1,28,18,29,1,28,21,26,2,28,5,29,1,28,31,29,2,28,4,29,2,28,4,26,1,25,1,28,1,26,2,9,1,26,1,28,4,26,2,29,1,28,13,29,1,30,2,28,2,29,2,26,1,28,4,9,2,28,1,29,1,28,3,26,1,29,1,28,3,26,2,28,2,26,1,15,1,26,2,9,1,26,2,9,1,15,1,26,1,29,1,28,33,29,1,28,19,29,2,28,4,29,2,28,10,30,1,28,4,29,1,28,21,1,286,}, + {1,192,28,1,30,1,28,2,29,1,28,1,29,1,28,6,29,3,28,5,26,1,29,1,28,8,29,1,30,1,26,2,30,1,26,1,13,7,9,3,15,1,13,1,9,2,15,1,9,1,26,1,25,1,9,4,10,1,9,2,28,1,1,8,28,5,29,4,28,1,29,1,28,3,29,4,30,1,29,2,28,2,30,1,13,1,30,1,29,1,30,2,26,3,30,1,26,1,13,2,25,2,9,1,13,2,29,4,30,1,26,1,13,2,30,1,13,1,9,5,15,2,9,1,13,1,30,2,13,1,9,1,15,1,9,1,15,1,14,1,15,1,9,3,15,2,9,1,13,1,9,2,7,1,28,2,10,1,11,1,6,1,28,1,1,2,28,11,29,1,28,50,29,2,28,63,26,1,28,21,30,1,13,1,28,11,29,2,28,2,30,1,28,22,29,1,28,2,29,1,28,1,29,2,28,4,26,6,29,1,28,3,30,1,26,1,30,1,28,13,26,1,30,1,29,1,30,3,29,1,28,2,13,1,28,2,29,1,9,1,29,1,28,3,29,2,28,7,9,1,26,1,28,2,26,1,28,4,26,2,28,66,30,1,29,1,28,33,1,285,}, + {1,192,28,1,30,1,28,2,29,1,28,1,29,1,28,5,29,1,30,1,29,2,30,1,29,1,28,4,29,1,30,1,28,3,29,2,28,2,30,1,26,8,9,1,25,1,13,2,9,4,13,2,25,1,15,2,26,1,29,1,9,1,25,1,9,1,25,1,9,1,16,1,28,1,1,1,28,1,1,12,28,18,29,2,28,1,29,6,30,2,26,1,13,2,9,3,13,1,29,2,28,2,29,1,30,4,26,1,13,1,25,1,8,1,9,2,15,1,9,1,25,1,26,2,13,1,25,1,9,11,8,1,13,1,6,1,28,2,29,1,9,1,11,1,28,2,1,3,28,1,29,1,28,6,29,2,28,10,29,2,28,41,29,1,28,3,29,1,28,27,29,1,28,17,29,1,28,36,26,1,30,1,28,11,26,1,28,2,29,1,28,25,29,2,28,5,29,1,26,5,28,4,30,1,13,1,30,1,28,19,29,1,28,3,9,1,29,1,28,1,13,2,28,1,29,1,28,5,29,1,28,5,27,1,25,1,28,10,29,1,28,64,29,1,13,1,28,6,29,1,28,27,1,284,}, + {1,192,28,1,30,1,28,10,29,1,30,1,29,2,28,1,29,1,30,1,28,5,30,1,28,3,30,2,29,1,30,1,26,5,29,2,26,1,13,1,26,1,13,1,9,4,13,4,15,1,14,1,9,1,26,1,9,1,16,1,15,1,16,1,8,1,28,1,1,19,28,12,29,3,28,3,29,1,30,3,13,1,26,1,30,2,26,1,13,2,9,1,13,2,29,2,28,2,29,1,30,3,13,1,26,2,13,3,25,1,9,2,13,1,30,1,26,1,13,1,8,1,9,1,8,1,9,1,15,2,14,2,9,1,6,1,28,6,6,1,8,1,10,1,28,1,1,4,28,2,29,4,28,2,29,1,28,10,29,2,28,46,29,1,30,1,28,27,30,1,28,52,29,1,28,2,13,1,29,1,28,5,29,1,28,4,26,1,28,27,29,3,28,5,26,1,25,1,26,4,28,4,13,1,26,1,29,1,28,20,29,1,28,1,29,1,28,2,29,1,26,1,29,1,28,1,29,2,28,3,29,1,26,1,29,1,28,5,29,1,28,1,26,1,28,3,29,1,28,4,29,1,28,2,29,3,28,60,29,1,28,1,29,1,28,4,29,1,26,1,28,3,29,1,28,23,1,283,}, + {1,191,28,2,30,1,29,1,28,9,29,3,28,3,29,1,26,1,30,1,28,4,26,1,30,1,28,2,30,1,13,1,29,1,26,5,29,1,26,1,13,1,29,2,13,1,15,2,9,3,30,2,9,3,14,1,9,2,10,1,6,1,28,2,1,23,28,7,29,1,6,1,29,2,30,1,7,1,28,5,29,6,30,1,13,4,26,1,29,1,28,3,29,1,30,1,13,1,30,1,26,1,13,1,30,1,29,2,30,1,13,1,25,1,30,1,29,1,30,1,13,1,8,1,9,5,7,1,28,7,6,1,9,1,7,1,28,2,1,5,28,2,30,1,29,3,28,12,29,2,28,6,29,2,28,40,29,1,28,26,29,1,30,1,28,52,29,1,28,2,13,1,26,1,28,6,29,1,28,3,29,1,13,1,28,11,29,1,28,13,29,2,28,1,29,1,28,5,26,2,29,1,26,1,29,1,28,1,26,1,28,2,13,1,29,2,28,18,29,1,28,2,29,1,28,1,26,1,28,2,13,1,29,1,28,1,30,1,28,15,26,1,28,47,29,1,28,28,29,1,26,1,28,4,13,1,30,1,28,7,29,1,28,19,1,282,}, + {1,191,28,1,30,2,29,2,28,7,29,3,28,2,30,1,28,3,30,1,26,1,28,4,26,1,30,1,28,2,29,1,26,1,30,1,29,1,30,1,26,3,13,1,9,1,25,2,9,1,15,2,9,2,15,1,13,1,26,1,9,3,15,1,7,1,28,2,1,5,28,1,1,23,28,9,29,1,7,1,29,1,28,9,29,1,30,1,6,1,13,2,8,1,13,1,29,1,28,4,29,1,28,1,29,4,30,1,26,1,13,1,29,3,13,1,9,2,8,1,7,1,29,2,28,4,29,1,7,1,9,1,10,1,7,1,29,1,28,2,1,2,28,1,1,3,28,2,30,1,29,1,28,1,29,4,28,4,29,1,28,5,29,1,28,2,29,3,28,2,29,1,30,1,29,1,28,6,29,1,28,59,30,2,28,56,26,1,29,1,28,5,29,1,28,4,13,1,28,11,29,1,28,13,29,1,28,7,29,1,26,2,29,1,26,2,28,1,29,1,28,2,13,2,29,1,28,25,30,1,13,1,29,1,28,1,29,1,28,63,30,1,28,29,30,1,26,1,28,4,30,2,28,6,29,1,28,20,1,281,}, + {1,191,28,1,30,1,29,2,30,1,29,1,28,6,29,3,28,5,29,1,30,1,29,1,28,5,13,2,29,1,28,1,30,1,29,3,30,1,13,4,15,2,9,3,13,2,15,2,13,2,25,1,15,1,9,1,28,2,1,1,28,2,1,32,28,16,29,4,6,1,13,3,30,1,28,7,29,1,13,1,9,2,25,1,29,1,28,2,6,1,13,1,6,1,29,1,28,4,29,2,6,1,29,1,28,5,1,6,28,1,1,1,28,2,13,1,28,1,29,5,28,4,29,1,28,6,29,5,28,3,29,2,28,1,29,2,28,38,29,1,28,24,26,1,30,1,28,10,29,1,28,38,29,1,28,3,29,1,28,2,30,1,26,1,28,10,29,2,28,10,29,1,28,13,29,2,28,4,29,1,28,1,29,1,25,1,26,2,28,1,29,1,28,2,29,1,28,2,9,1,30,1,29,1,28,23,29,1,26,1,29,2,28,65,29,2,28,29,29,1,28,5,13,1,29,1,28,5,29,1,28,20,1,281,}, + {1,191,28,1,30,1,28,1,29,1,30,1,29,1,28,6,29,1,30,1,29,1,28,5,26,1,30,1,28,2,29,2,28,3,26,1,15,1,13,1,28,1,26,1,29,2,26,1,25,1,9,1,13,1,29,1,9,1,15,1,25,1,13,1,9,3,15,1,9,1,13,1,25,1,9,1,15,1,29,1,1,6,28,1,1,37,28,15,6,1,9,2,6,1,28,3,29,1,6,1,8,1,10,1,8,2,10,1,9,1,6,1,28,13,1,13,28,2,29,1,28,1,29,5,28,9,29,1,28,2,29,1,28,9,29,1,28,33,29,1,28,6,29,1,28,23,29,1,13,1,26,1,28,10,29,1,28,14,29,1,28,25,29,1,28,1,29,1,28,2,29,1,26,1,29,1,28,10,26,1,28,1,29,2,28,7,29,1,28,5,29,2,28,3,29,1,28,2,29,2,28,4,29,1,28,1,26,4,29,1,28,2,13,1,26,1,28,3,13,1,26,1,28,11,29,1,28,4,29,2,28,4,29,2,26,1,28,1,29,1,28,1,29,1,28,64,30,1,28,3,29,2,28,20,29,1,28,10,9,1,30,1,28,4,29,1,28,21,1,280,}, + {1,191,28,1,29,2,28,3,29,2,28,4,30,2,29,1,26,1,28,10,13,1,28,2,30,1,26,1,9,2,26,1,25,1,26,1,29,1,26,1,9,1,25,1,30,1,29,1,15,1,9,1,30,1,9,3,15,2,28,1,9,1,11,1,28,1,1,51,28,32,1,18,28,2,29,3,28,2,30,1,29,1,28,3,29,1,28,5,29,1,28,1,29,1,28,1,29,1,28,2,29,1,28,3,29,1,13,1,26,2,29,1,28,31,29,1,28,31,29,1,9,1,28,25,29,1,28,12,29,2,28,12,29,1,28,5,13,1,29,1,28,3,29,1,28,19,29,1,28,2,29,1,28,2,29,1,28,3,29,2,28,5,29,2,28,1,29,1,26,2,28,2,29,1,26,2,29,1,28,4,29,1,26,1,29,1,28,8,29,1,28,5,29,1,28,5,30,2,29,2,28,62,30,1,28,6,26,1,13,1,26,1,29,3,28,4,29,1,28,13,29,1,28,3,29,1,28,7,30,1,28,4,30,1,28,22,1,279,}, + {1,190,28,2,29,1,28,5,29,3,28,2,30,3,26,1,30,2,28,9,30,2,29,2,13,1,9,2,25,1,26,2,9,3,25,1,26,2,25,1,9,1,13,1,9,1,15,1,9,4,28,2,1,100,28,2,29,2,28,2,29,3,28,7,29,1,28,1,29,5,28,7,29,1,28,1,13,2,29,3,28,4,29,1,28,21,29,2,28,13,29,1,28,19,26,1,9,1,28,39,29,1,28,18,13,1,30,1,28,3,29,1,28,18,29,1,28,15,29,1,30,1,29,1,28,2,29,3,28,1,29,1,26,2,29,1,28,5,29,1,26,1,29,1,28,20,30,2,29,1,28,43,29,2,28,25,29,2,28,3,29,1,30,2,28,2,29,1,28,17,29,1,28,7,29,1,28,4,30,1,28,23,1,278,}, + {1,190,28,2,29,1,28,6,26,1,30,1,28,1,30,2,28,1,29,1,28,2,29,3,28,7,13,1,26,1,28,1,29,1,30,1,13,1,9,2,26,2,25,1,9,3,26,1,28,1,13,1,15,1,9,3,25,1,14,1,9,1,28,2,1,101,28,2,30,1,29,1,28,2,30,1,28,11,29,2,28,1,29,1,28,7,29,3,28,1,26,1,25,1,26,1,30,1,29,1,28,22,29,1,28,37,13,1,9,1,28,10,29,1,28,12,29,1,28,34,29,1,26,1,28,3,29,1,28,1,29,1,28,25,29,1,28,3,29,3,28,1,30,1,29,1,28,5,29,1,26,2,29,1,28,7,26,2,30,1,29,1,28,6,29,1,28,10,26,1,30,1,29,2,28,43,29,1,28,36,29,1,28,27,29,1,28,2,26,1,28,24,1,277,}, + {1,190,28,1,29,1,30,1,28,9,30,2,28,6,29,3,28,3,29,1,30,1,13,1,29,1,28,1,30,2,28,1,13,1,9,2,26,1,13,1,9,1,25,1,13,2,30,1,29,1,13,1,9,2,25,1,9,2,28,1,1,2,28,1,1,99,28,2,30,1,28,2,29,3,28,11,29,2,28,8,29,2,28,1,29,2,28,1,26,1,9,1,13,1,28,6,29,1,28,16,29,1,28,37,9,2,28,23,29,1,28,35,26,1,28,3,29,1,28,6,29,1,28,13,29,1,28,2,29,1,28,2,29,1,28,2,29,5,28,2,29,3,28,2,29,1,26,1,29,2,28,8,29,1,26,3,30,1,29,4,30,1,29,1,28,9,29,1,13,1,29,1,28,45,29,1,28,36,30,1,29,1,28,18,29,1,28,4,29,1,28,2,30,1,28,2,30,1,28,25,1,276,}, + {1,190,28,1,29,1,30,1,28,9,29,2,28,8,30,2,28,2,29,1,13,1,29,1,28,2,30,1,26,1,28,2,13,1,9,4,26,1,29,1,9,2,26,1,28,1,26,1,16,1,9,1,8,1,28,2,1,101,28,2,29,1,28,3,29,1,28,11,29,4,28,8,29,2,28,1,29,1,28,1,29,1,30,1,29,1,25,1,9,1,29,1,28,27,30,1,29,1,28,22,29,2,28,6,9,1,13,1,28,25,29,1,28,14,29,1,28,29,29,2,28,12,29,1,28,5,29,1,28,1,29,1,26,1,29,1,28,3,30,1,29,1,28,3,29,1,26,2,29,1,28,14,29,1,30,2,29,1,28,9,29,1,28,2,29,1,26,1,28,46,29,1,28,38,29,2,28,1,29,1,28,14,29,1,28,3,29,1,26,1,28,2,30,1,28,2,29,1,28,26,1,275,}, + {1,190,28,1,29,1,28,9,30,1,28,14,29,1,30,1,28,2,30,2,26,1,30,1,29,2,26,1,25,1,9,1,26,1,29,1,30,1,13,1,9,1,15,1,13,1,30,1,15,1,9,1,28,1,1,102,28,2,30,1,28,3,29,1,28,13,29,2,28,9,29,2,28,2,30,1,29,1,28,1,26,2,13,1,15,1,29,1,28,3,29,2,28,21,29,2,28,22,29,2,28,5,29,1,15,1,26,1,28,22,29,1,28,2,29,1,28,30,29,2,28,13,29,1,28,12,29,1,28,5,29,3,28,7,29,1,28,2,29,1,30,1,29,1,28,21,29,1,28,6,29,1,28,2,26,2,28,46,30,1,28,34,29,1,28,26,26,1,29,1,28,1,30,1,28,2,29,2,28,25,1,275,}, + {1,190,28,9,29,1,28,1,30,1,29,1,28,12,29,1,28,4,29,1,30,1,26,3,29,1,28,1,26,1,25,1,26,1,29,1,30,1,29,1,13,1,15,2,10,1,7,1,28,1,1,103,28,2,29,1,28,16,29,3,28,8,29,1,28,2,29,1,30,1,28,2,26,1,29,1,28,1,26,1,9,2,29,1,28,2,29,2,28,1,29,1,28,14,29,1,28,27,29,2,28,6,26,1,15,1,28,56,29,1,28,1,29,1,28,6,29,1,28,18,29,1,28,5,29,2,28,5,29,1,28,4,29,2,30,1,29,1,28,12,29,1,28,8,30,1,26,2,30,1,29,1,28,3,29,1,28,2,25,1,26,1,28,46,26,1,29,1,28,33,29,1,28,26,29,1,28,2,30,1,28,2,29,2,28,11,29,2,28,14,1,273,}, + {1,190,28,2,30,1,28,6,29,1,28,1,29,1,30,1,28,10,29,2,28,3,30,1,28,2,26,2,30,4,13,1,9,2,26,1,28,1,29,1,25,2,9,1,16,1,28,1,1,103,28,2,13,1,28,2,29,1,28,10,29,1,28,3,26,1,30,1,29,1,28,4,29,1,28,2,29,2,28,2,29,3,28,3,29,2,30,1,9,1,15,1,13,1,28,3,30,1,29,2,28,13,29,1,28,17,29,2,28,7,29,1,26,1,29,1,28,6,13,1,9,1,28,9,29,2,28,14,26,1,28,29,29,2,28,2,29,1,28,5,29,1,28,3,29,1,28,3,29,1,28,16,29,1,28,9,30,1,28,2,29,1,13,1,26,1,29,1,28,11,29,2,28,8,29,2,30,1,13,1,26,1,30,1,29,1,26,1,28,2,9,1,29,1,28,16,29,1,28,5,29,1,28,22,29,1,13,1,30,1,28,32,29,1,28,23,29,1,28,6,29,1,28,2,30,1,28,11,29,1,30,1,28,14,1,274,}, + {1,191,28,1,29,2,28,6,29,1,28,11,30,1,13,1,26,1,29,1,28,6,29,1,30,2,26,1,28,1,13,1,15,1,9,1,26,1,28,1,29,1,15,1,29,1,28,1,6,1,1,104,28,1,30,1,28,14,29,2,28,2,25,1,30,1,28,10,29,2,28,1,29,1,28,4,29,3,28,1,25,1,14,1,26,1,28,1,29,1,28,1,29,1,28,13,29,1,28,16,29,1,28,6,29,1,28,2,29,1,13,1,30,1,28,7,15,1,26,1,28,9,29,2,28,44,30,1,28,3,29,1,28,6,29,1,28,6,29,1,28,1,29,1,28,4,29,1,28,8,29,1,28,11,30,1,28,3,13,1,25,1,29,2,28,2,29,2,28,4,30,1,13,1,29,1,28,2,29,1,28,7,29,3,26,2,28,3,26,1,29,1,28,46,29,1,30,1,28,12,29,1,28,1,29,2,28,15,29,1,30,1,28,30,29,1,28,9,30,1,28,4,29,1,30,1,28,15,1,273,}, + {1,191,28,1,30,1,29,1,28,6,30,1,28,11,29,1,26,3,30,1,26,1,30,1,29,1,28,2,29,1,30,1,29,1,30,1,29,1,9,1,15,1,30,4,9,1,28,3,1,103,28,2,29,1,28,13,30,1,26,2,30,1,29,1,9,1,30,1,28,10,29,2,28,6,29,3,28,1,29,1,9,2,28,2,30,1,28,9,29,1,28,20,29,1,30,1,29,1,28,4,29,1,28,3,13,1,29,1,28,7,26,1,14,1,30,1,28,11,29,1,28,43,30,1,28,3,29,2,28,8,29,1,28,2,29,1,28,2,29,1,28,1,29,1,28,2,29,2,28,5,29,2,28,10,29,1,26,1,13,1,26,1,28,2,29,1,13,2,30,1,28,8,26,2,29,1,28,12,29,3,28,4,26,2,29,1,28,46,29,1,28,16,29,1,28,29,29,6,28,12,30,1,29,1,28,6,29,1,28,22,1,272,}, + {1,191,28,1,30,1,29,1,28,1,29,2,28,3,30,1,28,11,29,1,30,1,26,1,13,4,26,1,28,3,29,1,30,1,29,1,28,1,9,1,15,1,26,1,13,1,9,3,29,1,28,1,1,104,28,1,30,1,28,13,29,1,26,1,13,1,26,3,25,1,28,11,29,1,28,5,29,6,28,1,26,1,9,1,29,1,28,1,29,1,28,9,29,1,28,2,29,1,28,16,29,1,30,2,29,1,28,7,30,2,28,2,30,1,28,5,15,2,28,12,29,1,28,12,29,1,28,30,30,1,28,4,29,1,28,8,29,1,28,1,29,1,28,2,29,1,28,2,29,1,28,2,29,5,28,2,29,1,28,10,29,1,26,2,30,1,28,4,26,1,9,1,13,1,26,1,28,3,29,4,13,1,26,1,28,4,29,1,28,8,29,1,28,6,29,1,28,1,29,2,28,45,29,2,28,15,29,1,28,24,29,1,30,3,13,8,26,1,13,4,26,1,29,1,28,16,29,2,28,17,1,272,}, + {1,191,28,1,30,1,29,1,28,2,29,1,28,3,29,1,28,12,29,1,30,1,26,2,13,3,30,1,29,1,28,2,29,1,30,1,29,1,13,1,9,1,26,1,13,2,15,1,8,1,16,1,28,1,1,103,28,16,29,1,26,4,13,1,26,1,28,11,29,1,28,4,29,4,28,3,30,1,28,1,30,1,9,1,28,2,29,2,28,14,29,1,28,4,29,1,28,5,29,2,30,2,29,1,28,1,29,1,28,5,29,1,13,1,29,4,28,1,29,1,28,2,29,1,14,1,26,1,28,13,29,1,28,10,29,1,28,31,29,1,28,11,29,1,28,6,29,1,28,6,29,2,28,3,29,2,28,10,26,2,13,1,30,1,28,6,13,3,26,2,13,1,26,1,29,1,28,1,13,1,30,1,28,7,29,1,28,5,29,1,28,9,29,1,26,1,28,62,29,1,28,19,29,1,26,1,9,6,15,1,14,14,15,1,9,1,13,1,29,1,28,12,29,1,30,1,28,18,1,271,}, + {1,191,28,1,30,2,28,2,29,1,28,2,29,2,28,11,29,2,30,3,26,1,13,3,30,1,29,1,28,2,30,1,13,1,25,1,26,1,28,2,29,1,13,1,29,1,7,1,28,1,1,103,28,1,29,1,28,13,30,1,26,5,13,1,29,1,28,2,29,1,28,5,29,5,28,1,29,4,28,5,26,1,28,2,15,1,30,1,28,1,29,2,28,23,29,3,28,5,29,2,28,3,29,1,30,2,13,1,26,1,29,1,28,1,29,2,28,2,15,2,28,25,29,1,28,44,29,1,28,1,29,1,28,10,29,1,28,3,29,2,28,11,26,2,29,4,28,5,29,2,28,6,26,2,28,13,29,1,28,3,29,1,30,1,28,6,29,2,28,77,30,1,26,1,13,1,9,5,25,1,13,4,29,1,30,3,26,1,13,3,15,2,14,3,11,2,14,1,9,2,30,1,28,31,1,270,}, + {1,191,28,1,29,1,30,1,29,1,28,1,29,1,28,2,29,2,28,10,29,2,30,3,26,6,30,2,28,2,29,1,30,2,28,1,29,1,25,1,13,1,28,2,1,104,28,1,29,1,28,13,26,3,13,4,28,7,29,12,28,4,29,1,28,3,13,2,29,1,28,25,29,1,28,6,29,1,28,1,29,2,28,2,30,1,29,1,28,1,30,1,26,1,29,1,28,4,26,1,15,1,13,1,28,5,29,1,28,19,29,1,28,39,29,1,28,6,29,1,28,2,29,1,28,11,29,1,28,10,29,1,28,2,29,1,28,4,29,1,30,1,29,1,28,3,29,1,28,6,26,2,28,16,29,1,30,1,28,31,29,2,28,51,29,1,13,1,25,2,13,1,26,2,29,3,28,10,29,3,28,1,29,1,30,1,13,1,9,1,14,1,11,3,14,2,15,1,9,1,30,1,28,29,1,269,}, + {1,191,28,2,30,1,29,1,28,1,29,1,28,2,29,2,28,7,29,2,28,1,29,2,30,2,26,5,30,4,26,1,29,1,28,2,29,1,30,1,26,1,8,1,29,1,28,2,1,103,28,1,29,1,28,14,30,1,26,3,13,1,25,1,26,1,28,7,29,12,28,9,13,2,28,12,29,1,28,8,29,2,28,2,29,1,28,3,29,1,28,4,29,5,28,3,29,3,28,2,29,1,9,1,26,1,28,6,29,3,28,57,29,1,28,20,29,1,28,11,29,1,28,2,29,1,30,1,28,3,30,2,28,11,30,1,13,1,29,1,28,15,26,1,28,33,29,1,28,13,29,1,28,33,29,3,13,4,26,1,30,1,29,1,28,1,29,4,30,3,29,9,28,2,29,2,26,1,9,1,15,2,14,3,11,2,14,1,9,1,13,1,30,1,28,27,1,268,}, + {1,192,28,1,29,2,28,1,29,2,28,1,29,2,28,7,29,2,28,3,29,1,30,1,26,1,30,1,26,3,30,1,29,3,30,1,13,1,30,1,28,2,29,1,28,4,1,104,28,1,29,1,28,12,29,2,30,1,26,1,13,1,26,1,13,1,9,1,29,1,28,6,29,1,28,1,29,11,28,9,26,1,13,1,28,19,29,1,28,4,30,1,13,1,28,7,29,5,28,3,30,1,28,4,30,1,13,1,26,1,28,4,29,1,26,1,28,1,29,1,26,1,30,1,29,1,28,53,29,1,28,4,29,1,30,1,28,2,30,1,28,4,29,1,28,8,29,1,30,1,28,8,26,1,28,2,29,2,30,1,29,1,28,3,30,1,26,1,29,1,28,11,30,1,25,1,26,1,28,4,29,1,28,4,29,1,28,4,29,2,28,33,29,2,28,36,29,1,28,8,29,1,26,1,13,3,26,1,30,1,29,2,26,3,30,1,26,1,13,2,26,2,30,1,29,1,30,4,29,5,30,1,29,1,28,1,29,1,26,1,13,2,15,1,14,1,11,2,14,2,11,1,14,1,15,1,13,1,28,18,29,2,28,6,1,268,}, + {1,192,28,4,29,1,28,2,29,1,28,10,29,4,30,1,26,2,30,1,29,5,28,2,9,1,14,1,29,1,28,1,1,108,28,2,30,1,28,11,29,2,30,1,26,1,25,1,26,2,9,1,26,1,28,2,29,1,28,5,30,1,29,7,28,1,29,2,28,1,29,2,28,8,30,1,13,1,28,33,29,3,28,4,30,1,28,3,26,2,30,1,28,3,29,8,28,19,29,1,28,6,29,1,28,33,29,1,30,1,29,1,28,14,29,1,28,6,29,1,28,9,30,1,29,2,30,1,29,1,28,1,29,1,28,11,30,1,9,2,29,1,28,5,26,1,30,1,28,5,29,1,28,15,29,1,28,20,30,1,28,7,29,2,28,25,29,2,28,5,29,1,30,1,26,1,13,4,26,1,13,2,26,2,25,1,9,1,25,1,9,5,13,3,26,5,29,2,30,1,29,4,30,2,26,3,9,1,15,1,14,1,11,3,14,1,11,1,14,1,9,1,29,1,28,11,29,2,28,2,29,1,28,9,1,267,}, + {1,193,28,1,29,1,28,4,30,1,28,10,29,4,30,1,26,1,30,1,29,3,30,1,29,3,30,1,15,1,28,2,1,108,28,2,29,2,28,11,29,1,30,1,26,2,13,1,26,2,25,1,29,1,28,7,29,2,28,2,29,5,28,1,29,5,28,8,30,1,13,1,28,38,29,5,30,2,29,1,28,3,29,5,28,76,29,1,28,4,29,1,28,16,26,2,29,3,28,1,29,2,28,10,29,1,26,2,30,1,28,3,30,2,28,7,29,1,28,36,29,1,28,40,29,1,26,1,9,2,25,1,13,3,9,1,25,1,9,8,13,1,26,1,30,1,29,1,28,2,29,2,28,2,29,1,28,5,29,2,30,4,26,1,13,2,9,1,15,1,11,3,15,1,14,1,11,1,15,1,26,1,28,8,29,1,28,16,1,266,}, + {1,193,28,2,29,1,28,3,29,2,28,9,29,2,30,1,26,3,29,2,28,1,29,2,28,2,30,1,9,1,8,1,28,1,1,109,28,2,30,1,28,12,30,1,26,1,13,1,26,1,13,4,28,8,29,2,28,3,29,10,28,5,29,2,28,2,29,2,28,40,29,3,28,3,29,1,28,1,29,4,28,23,29,1,28,52,29,2,28,2,29,2,28,5,29,1,28,11,29,1,13,1,29,1,28,1,29,1,28,2,29,1,28,12,29,1,26,2,28,1,29,1,30,1,28,6,26,1,29,1,28,17,29,1,28,58,30,1,26,1,9,2,25,1,13,1,25,1,9,2,15,1,14,1,15,2,14,2,15,1,25,1,26,1,28,1,29,4,28,14,29,2,30,3,26,2,13,1,8,1,9,1,14,1,11,6,14,1,9,1,30,1,28,23,1,266,}, + {1,193,28,2,29,1,28,3,29,1,28,8,29,1,28,1,29,2,30,1,26,2,30,2,29,4,28,1,29,1,8,1,9,1,28,1,1,110,28,2,30,1,28,12,30,1,26,4,13,1,25,1,26,1,28,7,29,4,28,1,29,12,28,1,29,1,28,7,29,2,28,36,29,2,28,5,29,1,28,4,29,3,28,22,29,2,28,10,29,1,28,31,30,1,28,8,29,2,28,2,29,2,28,5,29,1,28,8,29,1,28,4,26,1,29,1,28,1,29,1,28,16,26,2,29,2,28,3,29,1,28,3,26,1,29,1,28,40,29,1,28,32,29,1,28,1,29,1,13,1,9,5,14,4,15,1,14,1,15,1,13,1,29,1,28,1,29,1,28,27,29,1,30,1,26,1,9,1,14,1,1,1,11,2,14,2,11,2,15,1,13,1,28,6,29,1,28,8,29,1,28,7,1,265,}, + {1,194,28,14,29,4,30,1,26,2,30,1,29,6,26,1,9,1,28,1,1,2,28,1,1,108,28,2,29,1,28,10,29,2,26,1,30,1,26,1,13,1,26,1,13,2,30,1,28,6,29,6,30,2,29,10,28,1,29,1,28,7,29,2,28,40,29,1,28,2,29,2,28,9,29,2,28,35,29,2,28,23,29,1,13,1,28,8,29,1,28,3,29,1,28,20,26,1,30,1,28,1,29,1,28,22,29,2,28,2,29,2,28,74,29,1,13,1,9,4,15,1,14,6,15,1,9,1,30,1,28,12,29,1,28,1,29,1,28,19,29,1,13,1,16,1,11,1,1,1,11,2,14,4,26,1,30,1,29,1,28,2,13,1,26,1,28,17,1,264,}, + {1,195,28,3,29,1,28,7,29,1,28,1,29,3,30,5,29,5,13,1,9,1,13,1,28,1,1,111,28,1,30,1,28,10,29,1,30,2,26,3,13,1,26,3,28,7,29,3,28,2,29,1,30,1,29,10,28,51,29,1,13,1,28,6,29,2,28,5,29,1,28,3,29,2,28,31,29,2,28,23,29,1,30,1,28,6,29,1,28,3,29,2,28,21,26,1,29,1,28,22,29,1,28,2,29,1,28,24,29,1,28,26,29,2,28,23,30,1,26,1,13,1,9,1,15,2,14,1,11,1,14,2,15,1,9,5,26,1,28,1,29,1,30,1,28,12,29,1,28,22,7,1,15,1,1,2,11,4,14,1,9,1,30,1,28,1,29,1,15,1,28,10,29,1,28,8,1,263,}, + {1,195,28,4,29,1,28,6,29,1,28,1,29,7,30,1,29,1,28,1,29,3,9,1,8,1,28,1,1,112,28,1,30,1,28,10,29,1,30,2,26,3,13,1,30,1,26,2,28,7,29,3,28,1,29,11,28,12,29,1,28,41,26,1,28,7,29,3,28,1,29,2,28,3,29,3,28,31,29,1,28,23,30,2,28,6,29,2,28,2,29,2,28,18,29,1,28,2,29,1,30,1,29,1,28,15,29,2,28,51,29,1,28,8,29,2,30,1,29,1,28,18,29,3,9,1,15,3,14,2,11,1,14,1,15,1,9,3,13,1,29,1,28,3,29,1,30,1,28,4,29,2,28,32,7,1,15,1,11,1,1,2,11,1,1,1,15,1,26,1,29,1,13,1,26,1,28,11,30,1,28,8,1,262,}, + {1,196,28,3,29,1,28,3,29,1,28,1,29,2,28,1,29,8,30,1,29,1,30,1,29,1,28,1,10,1,30,1,28,1,1,112,28,1,29,1,28,10,30,3,26,1,13,1,26,2,30,1,26,2,28,7,29,1,28,1,29,6,30,1,29,6,28,12,30,1,29,1,28,48,29,6,28,1,29,4,28,27,29,1,28,4,29,1,28,11,29,1,28,11,26,1,30,1,28,10,29,1,28,23,29,3,28,2,29,1,28,11,29,2,28,6,29,2,28,26,30,1,28,16,29,1,28,2,29,1,28,7,30,1,26,2,30,1,29,1,28,12,29,4,26,1,9,1,15,3,11,2,14,1,15,2,9,1,25,1,26,1,29,1,28,2,29,1,28,5,29,1,30,2,28,37,8,1,11,1,1,1,11,1,1,1,9,1,30,1,13,1,28,9,29,1,28,3,30,1,28,2,29,1,28,4,1,262,}, + {1,196,28,5,29,1,28,1,29,1,28,2,30,1,28,1,29,12,6,1,7,1,28,1,1,113,28,10,29,1,30,3,26,2,29,1,30,3,29,2,28,7,29,14,28,12,29,1,13,1,29,1,28,43,29,1,28,7,29,3,30,1,28,4,29,1,28,4,29,3,28,19,30,1,29,1,28,14,29,1,30,1,29,1,28,10,26,1,13,1,28,4,29,2,28,3,29,1,28,23,29,2,28,6,29,1,28,8,29,1,30,1,29,1,28,3,29,1,28,23,29,1,28,24,29,1,28,11,29,1,30,4,28,8,29,3,28,1,29,1,9,1,15,3,11,2,14,1,15,2,9,1,15,1,9,1,13,1,29,4,28,5,30,1,29,1,28,41,10,1,11,1,1,1,11,1,9,2,26,1,28,12,29,1,28,7,1,4,28,1,1,257,}, + {1,197,28,2,29,2,28,2,29,2,28,1,29,14,9,1,28,1,1,114,28,10,29,1,30,5,29,1,30,2,29,2,28,8,29,14,28,11,29,1,26,1,28,4,29,1,26,1,28,47,29,1,30,3,28,9,29,3,28,36,30,1,29,1,28,10,30,1,13,1,28,3,29,1,28,4,29,1,30,1,28,17,29,2,28,4,29,3,28,1,29,2,28,1,29,1,28,9,29,3,28,47,29,3,28,2,29,1,28,15,30,2,28,6,29,1,28,2,29,1,13,1,9,1,15,2,11,4,14,1,11,1,14,1,15,1,13,1,26,1,29,1,28,7,29,2,28,45,13,1,11,1,1,1,11,1,15,1,9,1,26,1,28,12,29,1,28,6,1,261,}, + {1,198,28,2,30,1,28,4,29,1,28,1,30,1,29,10,28,1,13,1,6,1,1,115,28,10,29,4,30,3,29,3,28,9,29,13,28,11,29,2,30,1,28,3,29,1,30,1,29,1,28,44,29,3,30,3,28,3,30,2,29,1,28,3,29,10,28,30,29,2,28,7,29,2,28,1,29,1,30,1,28,3,29,1,28,3,29,2,28,18,29,2,28,4,29,2,28,7,29,1,28,4,29,4,28,48,29,2,28,4,29,1,28,16,13,1,30,1,28,6,29,1,30,1,13,1,9,1,14,2,11,3,14,1,15,1,14,2,15,1,13,1,26,1,30,1,28,57,25,1,14,1,1,1,11,1,10,1,29,1,28,11,29,1,28,7,1,260,}, + {1,199,28,1,29,1,28,6,29,10,28,1,30,1,9,1,28,1,1,115,28,9,29,9,28,11,29,12,28,17,29,1,28,57,29,1,28,1,29,2,28,1,29,11,28,29,29,2,28,7,29,1,28,6,29,2,28,2,29,2,28,25,26,2,29,1,28,11,29,2,28,48,29,1,28,6,29,2,28,16,29,2,28,6,13,1,9,1,15,2,14,1,11,1,1,1,15,1,14,1,15,1,9,1,15,1,9,1,29,1,28,1,26,1,30,1,29,1,28,58,30,1,11,1,1,1,11,1,30,1,28,9,29,1,28,2,29,1,28,5,1,260,}, + {1,199,28,2,29,1,28,9,29,7,7,1,28,1,1,116,28,7,29,9,28,13,29,11,28,10,29,1,28,68,29,1,28,2,29,6,28,27,29,2,28,5,29,1,28,18,29,1,28,26,30,1,26,1,29,1,28,8,29,4,28,3,29,3,28,51,30,1,28,18,29,1,28,2,29,1,26,1,13,1,9,1,15,1,14,1,11,4,15,1,14,1,15,1,9,1,25,1,29,1,28,2,30,1,29,1,28,49,29,2,28,10,25,1,1,1,14,1,13,1,28,7,29,1,30,1,28,2,29,1,28,6,1,259,}, + {1,200,28,1,29,1,28,4,29,1,28,5,29,5,13,1,6,1,28,1,1,116,28,1,29,1,28,7,29,4,28,2,29,1,28,11,29,11,28,10,29,1,28,55,29,1,28,20,29,3,28,9,29,2,28,12,29,1,28,2,29,1,28,13,29,1,28,11,29,2,28,17,29,5,28,3,29,1,26,1,13,1,26,2,13,4,30,1,29,2,28,1,29,9,28,37,29,3,28,10,29,1,13,1,28,15,29,1,28,4,29,1,25,1,9,2,15,1,14,1,11,2,1,1,11,1,15,1,14,1,15,1,9,1,13,1,30,1,28,2,26,1,30,1,28,64,9,1,11,1,8,1,28,5,29,2,28,11,1,258,}, + {1,200,28,2,29,1,28,10,29,4,6,1,28,1,1,117,28,6,29,1,28,3,29,3,28,5,29,2,28,7,29,11,28,63,29,1,26,2,28,14,29,2,28,2,29,17,28,14,29,2,28,9,29,1,28,10,29,2,28,2,29,1,28,18,29,5,30,1,29,1,28,2,29,1,28,5,29,3,13,1,26,1,30,1,28,3,29,7,28,35,29,2,28,13,29,1,13,1,29,1,28,14,29,1,28,3,29,1,13,1,9,1,15,2,14,1,11,5,15,2,9,1,13,1,26,1,28,2,30,1,13,1,29,1,28,54,29,1,28,10,29,1,14,2,29,1,28,3,30,1,28,5,29,1,28,6,1,258,}, + {1,201,28,1,29,1,28,2,29,1,28,1,29,1,28,5,29,3,30,1,29,1,28,1,1,117,28,5,29,2,28,3,29,3,28,5,29,2,28,7,29,10,28,84,29,7,30,2,29,3,28,31,30,1,29,1,28,9,29,2,28,2,29,1,28,17,29,3,28,4,30,2,28,10,29,2,30,2,29,2,28,2,29,1,28,39,29,1,28,14,29,1,13,1,29,1,28,18,9,1,14,1,15,1,14,2,11,1,1,1,11,2,14,1,15,2,9,1,25,1,13,1,26,1,29,2,26,1,29,1,28,27,29,1,28,22,29,1,28,17,26,1,14,1,13,1,28,16,1,257,}, + {1,202,28,6,29,1,28,1,29,1,28,2,29,1,28,1,29,1,9,1,28,1,1,118,28,6,29,2,28,3,29,1,28,4,6,1,28,3,1,1,28,2,29,1,28,4,29,2,28,1,29,5,28,9,29,1,28,76,29,2,28,2,29,7,28,3,30,1,29,1,28,1,29,2,28,1,29,1,30,1,28,20,29,1,28,9,29,2,28,20,29,1,28,8,29,2,28,12,26,2,30,1,29,1,28,3,29,2,28,51,29,1,26,1,29,1,28,16,13,1,14,1,9,2,14,1,11,1,1,2,11,1,14,2,15,1,9,1,15,2,25,1,30,1,29,2,30,2,28,29,29,1,28,41,15,1,26,1,28,15,1,257,}, + {1,202,28,8,29,1,28,4,13,1,28,2,1,118,28,2,29,1,28,5,29,1,28,3,29,1,28,1,29,2,28,2,1,4,28,1,29,1,28,4,29,2,28,1,29,2,28,86,29,2,28,3,29,1,30,2,29,2,28,3,29,4,28,1,29,1,26,1,29,1,28,1,29,3,28,32,29,2,28,28,29,2,28,11,29,1,30,1,26,2,30,1,29,2,28,53,29,1,26,1,29,1,28,14,29,1,13,1,15,2,16,1,14,1,11,2,1,2,11,1,15,4,9,1,26,1,30,1,29,1,28,1,29,1,30,1,29,1,28,1,29,1,28,66,29,1,28,4,26,1,28,15,1,256,}, + {1,203,28,6,29,1,28,2,29,1,28,2,6,1,28,1,1,120,28,4,29,1,28,2,29,1,28,2,29,1,30,1,29,1,28,2,1,6,28,1,29,1,28,4,29,2,28,1,29,3,28,89,29,5,28,4,29,4,28,1,29,4,26,1,29,1,28,2,29,3,28,4,29,2,28,16,29,2,28,3,29,1,30,1,28,29,29,1,30,1,28,12,29,1,26,2,30,1,28,56,30,1,29,1,28,13,30,1,13,1,14,2,9,1,14,1,1,3,11,1,14,3,15,2,9,1,13,1,30,2,29,4,28,70,30,1,28,19,1,256,}, + {1,203,28,3,29,1,28,2,29,1,28,4,29,1,28,2,1,121,28,7,29,2,28,3,1,9,28,5,29,2,28,1,29,1,28,8,29,2,28,81,29,1,28,5,29,1,30,2,29,1,28,1,29,2,26,1,28,2,29,1,30,1,29,1,28,2,29,5,28,11,29,1,28,7,29,2,28,5,29,1,28,30,29,1,30,1,28,3,29,2,28,8,29,13,28,46,30,1,29,1,28,12,30,1,13,1,15,3,14,1,1,2,11,2,15,1,9,1,15,1,11,1,15,1,9,1,13,1,26,3,30,1,29,1,28,2,29,2,28,32,29,1,28,50,29,1,28,5,1,255,}, + {1,204,28,7,29,1,28,1,29,1,6,1,28,1,1,120,28,1,1,1,28,10,1,11,28,1,29,1,28,3,29,5,28,92,29,1,28,3,29,1,30,2,29,3,30,5,29,1,28,2,26,1,29,2,30,1,29,5,28,4,29,4,28,8,29,1,28,5,29,2,28,30,29,2,28,15,29,1,26,5,29,1,28,48,29,1,30,2,29,1,28,7,29,1,30,1,28,2,26,1,9,2,15,1,9,1,14,1,1,2,11,2,14,1,15,4,13,1,26,1,13,1,26,1,29,3,28,4,29,1,30,1,28,4,29,1,28,26,30,1,26,1,29,1,28,15,29,1,28,32,29,2,28,5,1,254,}, + {1,205,28,6,29,1,28,1,29,1,28,1,1,125,28,4,1,2,28,1,1,12,28,7,29,2,28,95,29,2,28,3,29,1,30,3,29,1,30,2,28,2,29,1,30,2,29,8,30,2,29,4,28,4,29,2,28,3,30,1,28,4,29,2,28,23,29,1,28,2,29,1,28,5,29,2,28,5,29,1,28,1,29,2,28,2,29,1,28,3,26,3,29,1,28,31,29,1,28,17,29,1,30,1,29,1,28,1,26,1,30,1,28,7,29,2,28,1,30,1,9,1,15,1,9,1,15,1,14,1,1,2,14,3,15,2,14,1,9,1,29,1,28,1,30,1,13,1,30,1,29,3,28,5,26,1,30,1,28,32,29,1,28,15,29,1,28,16,29,1,28,22,1,254,}, + {1,205,28,7,29,1,28,2,1,144,28,7,29,1,28,7,1,4,28,91,29,5,28,2,29,1,26,1,30,1,28,1,29,9,28,9,29,3,28,2,29,1,28,3,29,3,28,21,29,3,28,9,29,1,28,3,29,7,28,4,29,1,26,1,29,1,28,33,26,1,29,1,28,14,29,4,28,2,30,2,28,8,29,1,30,1,13,1,9,1,15,1,9,1,15,1,1,1,11,1,14,1,15,1,14,1,15,4,13,1,28,2,26,2,30,1,29,2,28,41,29,1,28,12,29,1,28,15,26,1,28,2,29,1,28,11,29,1,28,11,1,253,}, + {1,206,28,3,29,2,28,1,30,1,28,1,1,146,28,3,29,1,28,9,1,6,28,87,29,2,28,4,29,1,28,1,29,1,13,2,30,1,29,3,28,5,29,2,28,5,29,2,28,4,29,1,30,1,29,1,28,4,29,3,28,22,29,2,28,2,29,1,28,7,30,1,29,6,28,3,29,2,28,2,29,2,28,35,26,1,29,1,28,13,29,1,28,6,29,1,30,1,28,8,30,1,25,1,9,2,15,1,11,2,1,1,16,1,8,1,14,2,9,1,14,1,15,1,13,1,29,2,25,1,13,1,29,3,28,46,29,1,28,8,30,1,29,1,28,18,29,1,28,22,1,253,}, + {1,206,28,2,29,1,28,2,29,1,28,2,1,146,28,2,29,1,28,5,29,1,28,3,1,8,28,89,29,4,28,3,29,1,30,8,29,1,28,2,29,6,28,3,29,1,28,6,30,1,29,1,28,25,29,1,28,4,29,1,28,6,29,1,13,1,29,2,28,3,29,1,28,1,29,1,28,3,29,3,28,36,30,1,29,1,28,10,29,2,28,7,29,1,26,1,28,7,30,1,13,1,15,1,25,1,15,1,17,1,11,1,1,1,7,2,11,2,9,2,15,1,9,1,26,1,30,1,13,2,26,2,28,1,29,2,28,36,30,1,28,17,29,1,28,37,29,1,28,4,1,253,}, + {1,207,28,3,29,1,28,2,1,148,28,2,29,1,28,7,1,9,28,92,29,1,28,1,29,2,30,2,29,5,28,2,29,11,30,1,29,1,28,2,29,2,28,3,29,2,28,25,29,3,28,4,29,2,28,5,29,1,26,1,29,1,28,2,29,1,28,1,29,5,28,37,29,2,28,20,26,1,30,1,28,5,30,1,13,1,9,1,25,1,15,1,11,2,1,1,7,1,10,1,15,1,14,1,15,3,9,1,13,1,30,2,13,1,26,1,30,1,29,2,28,72,29,1,28,27,1,252,}, + {1,208,28,4,1,149,28,4,29,1,28,3,1,12,28,95,29,2,30,2,29,7,30,2,29,17,28,24,29,3,30,2,29,1,28,2,29,1,28,7,29,1,26,3,29,6,28,40,29,2,28,19,26,2,28,3,29,1,30,1,13,1,9,2,15,1,14,1,11,1,1,1,9,1,28,1,16,1,11,1,15,1,9,2,15,1,13,1,26,1,29,1,26,1,13,1,26,1,29,3,28,1,29,3,28,5,30,2,29,1,28,59,29,1,28,29,1,251,}, + {1,363,28,5,1,13,28,97,29,1,30,1,26,7,30,2,29,7,28,2,29,1,26,1,28,2,29,1,30,1,28,26,26,2,29,1,28,1,29,2,28,5,29,3,28,1,29,1,28,2,26,1,13,1,29,1,28,1,29,4,28,40,29,1,28,2,29,2,28,16,30,2,28,2,29,1,26,1,13,2,9,2,11,1,14,1,1,1,15,1,28,1,9,1,11,1,14,1,9,3,25,1,13,1,29,1,30,1,26,1,13,1,30,1,29,3,28,72,29,1,28,9,29,1,28,7,29,1,28,10,1,251,}, + {1,382,28,98,29,2,30,1,26,6,30,2,29,6,28,1,29,1,26,2,30,1,29,1,28,27,29,1,26,2,29,1,28,1,29,3,28,3,29,2,28,1,29,2,28,3,29,2,30,1,26,1,29,1,28,42,29,3,28,1,29,3,28,14,29,1,28,2,29,1,26,1,13,1,9,1,25,1,15,1,11,2,1,2,28,1,10,1,11,1,15,1,9,3,25,1,13,2,28,1,26,1,13,1,30,1,29,4,28,64,29,1,28,5,29,4,28,3,29,1,28,4,29,1,28,10,29,1,28,8,1,250,}, + {1,383,28,102,29,1,30,1,26,7,30,2,29,3,26,1,29,1,28,30,29,1,26,1,30,1,29,7,30,1,29,1,28,1,29,1,28,2,29,1,28,2,30,1,15,1,26,1,29,1,28,42,30,1,26,1,29,1,28,20,29,1,26,1,13,2,9,2,14,1,11,1,1,2,30,1,6,1,11,1,14,1,15,1,9,3,25,1,26,1,30,1,28,1,26,2,29,1,28,1,29,2,28,1,29,1,28,68,30,1,26,1,30,1,28,11,29,1,28,9,26,1,28,8,1,250,}, + {1,383,28,105,29,8,28,36,29,6,30,1,29,4,28,1,29,1,28,1,29,1,30,1,28,2,26,1,15,1,28,44,29,1,30,1,29,1,28,20,26,1,13,2,9,2,14,1,11,2,1,1,16,1,28,1,11,1,14,1,15,1,9,1,15,1,9,1,25,2,13,1,29,2,26,2,29,1,30,1,29,1,28,23,29,1,28,17,29,1,28,25,29,1,30,1,29,1,28,11,29,1,28,3,29,1,28,4,29,1,28,4,26,1,28,9,1,249,}, + {1,384,28,150,29,6,28,2,29,1,26,1,29,2,26,1,29,1,28,1,26,2,29,1,28,47,29,1,28,10,29,1,28,5,29,1,28,1,30,1,13,2,9,2,15,1,11,2,1,1,16,1,28,1,14,1,15,2,9,1,13,1,25,1,9,1,13,1,25,2,30,1,26,2,30,2,26,1,29,1,28,1,29,1,28,8,29,1,28,31,29,1,28,42,29,1,28,4,29,1,28,3,29,1,26,1,28,9,1,249,}, + {1,385,28,151,29,1,26,1,13,1,29,1,28,2,29,1,30,1,28,1,26,1,29,1,28,2,29,1,26,1,29,1,28,43,29,1,28,3,30,1,28,7,29,1,28,2,29,2,28,4,29,1,26,1,13,3,9,1,15,1,14,1,11,1,1,2,28,1,15,3,9,2,13,1,26,6,30,2,29,6,28,76,29,1,28,12,29,1,28,4,30,1,28,8,1,249,}, + {1,385,28,152,29,1,26,3,29,6,28,2,29,2,28,41,30,1,29,1,28,5,30,2,28,5,29,1,28,8,29,1,26,1,13,1,25,1,9,2,15,1,14,1,11,1,1,2,16,1,30,1,15,3,9,1,25,1,13,1,26,3,30,4,29,1,28,3,29,1,30,2,28,66,29,1,28,10,29,1,28,6,29,1,30,1,28,3,29,1,28,14,1,248,}, + {1,386,28,148,29,1,28,3,29,1,13,2,30,1,29,4,28,44,29,1,30,2,29,1,28,6,26,1,28,5,29,1,28,7,30,1,26,1,13,2,9,2,15,1,14,1,11,1,1,3,8,1,15,1,14,1,15,1,9,1,13,1,25,1,13,1,26,3,30,3,29,2,28,4,29,1,30,1,28,9,29,1,28,38,30,2,28,16,29,2,28,6,29,1,28,2,29,2,28,5,30,2,28,4,29,1,28,7,29,1,28,5,1,248,}, + {1,387,28,147,29,1,28,4,29,1,30,1,29,4,28,43,29,1,30,2,29,1,28,8,29,1,26,1,29,1,28,4,29,1,28,5,30,1,26,2,13,2,9,2,15,1,11,2,1,2,11,1,8,1,11,1,15,2,25,1,13,3,26,3,30,3,29,3,28,14,29,1,28,5,29,1,28,1,29,3,28,26,29,1,28,1,29,1,13,2,28,24,29,1,28,14,29,1,28,13,1,248,}, + {1,388,28,147,29,3,28,3,29,4,28,42,29,3,28,11,30,2,28,9,29,1,26,1,13,1,26,1,25,1,9,2,15,1,14,1,11,1,1,3,16,1,15,1,14,1,9,2,13,3,26,4,30,3,29,4,28,54,26,2,29,1,28,15,29,1,28,7,29,1,28,2,29,2,28,2,29,1,28,21,1,247,}, + {1,389,28,122,26,1,28,23,29,4,28,1,29,1,30,1,29,1,28,43,29,2,28,14,30,1,26,1,28,7,29,1,26,1,13,2,26,1,9,2,15,1,14,1,11,1,1,4,9,1,15,2,9,2,13,3,26,4,30,3,29,3,28,46,29,1,28,9,29,1,30,1,29,1,28,14,26,1,28,4,29,1,28,5,29,2,28,2,13,1,28,21,1,247,}, + {1,389,28,122,29,1,28,22,29,8,28,49,29,1,28,11,30,1,29,1,28,5,29,1,26,1,13,2,25,2,9,2,15,1,14,1,11,1,1,4,9,2,16,1,8,1,9,2,13,2,26,4,30,3,29,2,28,14,29,1,28,10,29,1,28,48,30,1,28,14,30,1,28,22,1,246,}, + {1,390,28,122,26,1,29,1,28,19,29,1,26,1,29,4,26,1,29,1,28,48,29,1,28,14,13,1,29,1,28,4,30,1,13,3,25,1,9,2,15,1,14,1,11,1,1,5,15,1,6,1,15,1,9,1,13,1,9,1,13,3,26,3,30,1,29,1,30,1,29,2,28,8,29,1,28,1,29,1,28,14,29,1,28,4,30,4,29,1,28,37,29,1,28,10,29,2,28,7,29,1,28,2,29,1,28,4,30,1,28,11,1,246,}, + {1,390,28,129,29,1,28,12,29,4,28,1,26,2,29,1,28,65,29,2,28,2,26,1,13,3,25,1,9,3,14,1,11,2,1,5,11,1,7,1,6,1,9,1,25,1,13,1,26,1,13,2,30,1,29,1,30,2,29,2,28,1,30,2,29,2,28,4,29,1,30,3,28,3,29,1,28,10,29,1,28,5,13,1,26,1,28,1,29,1,30,1,29,2,28,32,30,3,29,1,28,3,30,1,28,10,29,1,28,3,26,1,28,8,29,1,28,10,1,246,}, + {1,392,28,140,26,1,29,6,28,69,30,1,26,1,13,3,9,3,15,1,14,1,11,1,1,8,9,1,29,1,26,1,9,1,13,3,26,1,29,1,30,1,29,4,26,1,29,3,30,1,28,21,29,1,28,8,30,2,28,5,26,1,9,1,26,1,28,44,30,1,28,4,29,1,28,19,1,245,}, + {1,393,28,138,30,1,26,1,29,4,28,70,30,1,26,1,13,3,25,1,9,1,15,2,14,1,11,2,1,6,11,1,1,2,26,1,28,1,13,2,26,1,13,1,26,1,29,5,30,1,29,1,28,3,30,1,29,1,28,20,30,1,28,15,26,1,13,1,30,1,28,3,29,2,28,34,29,1,28,9,29,1,28,19,1,245,}, + {1,393,28,138,30,1,29,2,30,1,29,1,28,70,29,1,13,5,9,1,15,3,11,3,1,6,8,1,9,1,1,1,11,1,13,1,28,1,26,2,13,1,26,1,29,6,28,4,30,2,28,20,30,1,28,21,29,2,28,41,29,1,28,22,1,245,}, + {1,394,28,130,29,1,28,5,29,2,28,1,29,2,28,49,29,1,28,20,30,1,26,3,13,1,25,1,9,2,15,3,11,2,1,5,11,1,9,1,15,1,6,1,26,1,1,2,26,1,28,1,26,2,30,1,29,2,30,1,29,3,28,1,29,1,28,2,30,2,29,1,28,25,29,1,28,15,29,2,28,65,1,244,}, + {1,395,28,111,29,1,28,22,29,1,26,1,29,3,28,49,29,2,28,19,29,1,13,1,26,1,30,1,26,1,13,1,9,3,15,1,14,1,11,2,1,5,11,1,15,1,8,1,15,1,13,1,29,1,9,1,1,1,11,1,28,1,26,2,30,1,29,1,30,2,29,3,28,1,30,1,28,2,30,2,29,1,28,25,30,1,28,15,29,2,28,30,29,1,28,1,29,1,28,12,29,1,28,19,1,244,}, + {1,396,28,133,29,1,30,1,29,1,28,51,29,1,28,19,29,1,26,3,30,1,13,1,9,3,15,2,14,1,11,2,1,5,17,1,9,1,15,1,13,2,8,1,28,1,9,1,1,1,25,1,29,1,26,1,30,1,29,6,28,1,30,1,28,2,29,1,30,1,28,21,29,1,28,4,26,1,28,40,29,1,28,41,1,244,}, + {1,397,28,131,29,1,30,1,28,53,29,1,28,19,26,1,13,1,26,2,13,1,25,1,9,2,15,2,14,1,11,4,1,3,11,1,16,1,9,3,30,1,9,1,30,1,28,1,14,2,28,1,30,1,26,1,29,4,30,2,28,1,30,1,28,2,30,2,28,2,29,2,28,1,29,1,28,15,29,1,28,4,29,1,28,43,29,1,28,9,29,1,28,2,30,1,26,1,28,7,29,1,28,13,29,1,28,3,1,1,28,1,1,241,}, + {1,397,28,98,29,1,28,31,26,1,28,55,29,2,28,2,29,2,28,12,29,1,13,2,26,1,30,1,26,1,9,1,25,1,9,1,15,2,14,2,11,3,1,4,15,1,13,1,9,1,13,4,26,2,28,1,11,1,26,1,30,1,26,1,29,1,28,1,29,4,28,5,29,1,28,2,29,1,28,18,29,1,28,3,30,1,29,1,28,16,29,1,28,29,29,1,30,1,28,4,26,1,28,1,30,3,28,6,29,1,28,1,29,1,28,13,29,1,28,4,1,242,}, + {1,398,28,127,30,1,29,1,28,58,29,3,28,2,29,1,30,1,29,2,28,7,26,1,13,1,26,1,30,1,26,1,13,1,25,1,9,2,15,2,14,2,11,2,1,4,14,1,9,3,13,3,26,3,28,1,14,1,9,1,26,2,29,1,28,1,29,6,28,48,30,1,13,1,26,1,28,26,26,1,28,4,30,2,28,1,29,1,28,8,29,1,30,1,29,1,28,18,1,242,}, + {1,400,28,111,29,1,28,12,29,1,30,1,28,55,29,1,28,3,29,6,28,2,29,1,28,6,26,1,13,2,30,2,13,1,9,4,15,1,14,3,11,1,1,4,11,1,9,3,13,4,26,3,28,1,25,1,15,1,26,1,30,1,29,5,28,7,29,4,26,1,29,1,28,42,29,1,28,31,29,1,28,30,1,242,}, + {1,401,28,122,26,2,28,55,29,5,28,3,29,1,30,1,29,1,28,5,29,1,28,2,30,1,13,2,30,1,29,1,26,1,25,1,9,3,15,2,14,2,11,2,1,4,15,1,25,1,9,2,13,2,26,1,13,1,26,3,28,1,26,1,15,1,26,1,29,4,28,1,29,1,28,1,29,1,28,9,29,1,26,3,30,2,28,43,29,1,30,1,29,1,28,47,29,1,28,7,1,242,}, + {1,402,28,119,29,1,26,1,28,58,29,7,28,2,29,1,13,1,28,6,29,1,13,2,30,1,29,1,26,1,13,1,25,1,9,3,15,2,14,1,11,2,1,4,11,1,9,3,13,3,26,5,28,1,26,1,15,1,26,1,30,1,29,2,28,2,29,2,26,1,29,1,28,11,29,1,30,2,28,20,29,1,28,46,29,1,28,8,29,1,28,12,30,1,29,1,28,11,1,241,}, + {1,403,28,116,29,2,28,60,29,7,28,4,30,1,29,1,28,3,29,1,30,1,13,1,26,1,29,2,13,1,9,1,25,1,9,1,15,4,14,1,11,2,1,4,16,1,8,1,9,2,26,1,13,2,26,1,13,1,26,3,28,1,13,1,9,1,26,2,30,1,28,4,29,2,28,46,29,1,28,17,30,1,29,1,28,13,30,1,28,4,29,1,28,10,29,1,28,8,29,2,28,3,29,1,28,7,1,241,}, + {1,404,28,116,29,1,28,60,29,7,30,1,28,4,29,1,28,2,29,1,26,3,29,2,26,1,13,1,9,3,15,4,11,2,1,4,11,1,9,3,13,4,26,1,13,1,26,2,30,1,28,1,15,1,13,1,30,1,26,1,29,1,28,1,29,1,28,7,29,1,28,9,29,1,28,51,26,1,28,13,26,1,28,5,29,1,28,2,29,1,28,20,29,1,28,7,1,241,}, + {1,406,28,110,29,2,28,63,29,2,28,1,29,3,28,1,29,3,28,4,29,1,13,1,9,1,13,1,29,1,28,1,30,1,13,1,25,1,9,2,15,4,14,1,11,2,1,4,16,1,8,1,9,1,13,5,26,1,13,2,26,1,29,1,28,1,15,1,26,1,29,1,30,1,29,1,28,1,30,1,29,1,28,1,26,1,28,35,29,2,28,2,29,1,28,9,29,1,28,16,29,1,13,1,28,12,30,1,29,1,28,2,26,1,28,7,29,1,28,10,29,1,28,12,29,1,28,1,1,241,}, + {1,408,28,106,29,2,28,64,29,9,28,2,29,1,28,3,26,1,13,1,26,1,29,1,28,1,26,1,13,2,25,1,9,2,15,3,14,1,11,3,1,3,15,1,16,1,9,1,13,5,26,1,13,1,26,2,13,1,28,1,30,1,15,1,30,1,29,2,26,1,29,2,28,1,29,1,26,1,29,1,28,34,29,2,28,1,29,1,28,2,29,1,30,1,28,6,29,1,28,17,29,1,26,1,28,11,30,1,26,1,28,2,30,1,28,7,29,1,28,25,1,241,}, + {1,410,28,3,29,1,28,92,29,1,28,71,29,11,28,2,29,1,28,2,30,1,13,2,30,1,29,2,13,3,9,3,15,3,14,1,11,3,1,2,11,1,9,2,25,1,13,5,26,1,13,1,26,2,13,1,28,1,26,1,13,1,29,3,30,1,29,2,28,1,30,2,29,1,28,13,30,1,28,53,30,2,28,10,29,1,26,1,28,2,30,1,28,1,29,1,28,5,29,1,28,26,1,240,}, + {1,408,28,1,1,2,28,166,29,9,30,1,29,1,28,5,30,1,13,2,26,1,29,1,30,2,13,2,9,3,15,3,14,2,11,1,1,1,11,1,1,2,15,1,9,2,13,6,26,1,13,1,26,3,28,1,26,2,29,3,30,1,29,2,28,1,30,2,29,1,28,12,30,2,28,33,29,1,30,1,28,19,30,1,26,1,28,10,26,1,28,10,29,1,28,26,1,240,}, + {1,413,28,96,29,1,28,67,29,9,30,1,29,1,28,5,30,1,26,2,29,2,26,1,13,3,9,3,15,3,14,1,17,1,11,1,1,3,11,1,9,1,8,1,9,1,13,3,26,7,29,1,30,1,26,1,30,1,29,5,28,2,26,1,30,1,29,1,28,3,29,1,28,8,29,1,28,4,29,1,28,16,29,1,28,12,29,2,28,20,26,2,28,9,30,1,29,1,28,9,29,1,28,26,1,240,}, + {1,414,28,92,29,2,28,69,29,11,28,4,29,1,30,2,29,2,26,1,13,4,9,3,15,2,14,1,11,3,1,3,11,1,13,1,25,1,13,4,26,4,13,1,26,1,13,1,28,1,13,1,26,2,30,1,29,4,28,2,26,1,29,2,28,35,29,1,28,2,29,1,28,15,29,1,28,15,13,1,29,1,28,8,29,1,30,1,28,2,29,1,28,33,1,240,}, + {1,416,28,161,29,12,28,3,26,1,30,1,29,2,30,1,26,1,13,4,9,2,15,2,14,2,11,2,1,3,11,1,9,1,13,6,26,3,13,2,26,2,29,1,13,1,30,1,26,1,30,2,29,3,28,2,26,1,29,2,28,35,29,4,28,15,29,1,28,16,26,1,29,1,28,8,30,1,28,36,1,240,}, + {1,416,28,88,29,1,28,69,29,1,28,1,29,3,30,1,29,8,28,3,26,2,30,3,26,2,13,3,9,3,15,2,14,1,11,2,1,4,17,1,8,2,13,6,26,4,29,1,28,1,26,1,13,1,29,1,30,1,29,1,30,1,29,1,28,1,29,1,28,1,29,1,26,1,29,2,28,17,29,1,28,17,29,1,26,1,29,1,28,1,29,1,28,8,29,1,28,22,29,3,28,7,29,1,28,36,1,240,}, + {1,417,28,157,29,1,28,1,29,2,30,3,29,4,28,1,29,2,28,2,29,1,13,1,30,1,29,1,30,1,13,2,26,2,13,1,9,3,15,3,14,1,11,2,1,4,15,1,6,1,9,1,13,2,26,3,13,1,26,3,29,2,28,1,13,2,30,1,29,4,28,1,29,1,28,1,29,1,26,1,29,1,28,8,30,2,28,8,29,1,28,18,30,1,28,1,13,1,26,1,28,33,29,2,28,6,29,1,28,22,29,1,28,7,29,1,28,5,1,240,}, + {1,417,28,82,29,1,28,74,26,1,28,3,29,7,28,1,29,1,30,1,28,2,13,2,30,2,26,2,13,3,9,3,15,4,11,2,1,5,15,1,13,1,9,1,13,4,26,2,30,2,26,2,28,1,13,1,9,1,30,1,29,1,30,1,29,1,30,1,29,2,26,1,28,2,30,1,29,1,28,7,26,1,29,1,28,31,13,2,30,1,29,1,28,3,29,1,28,4,29,1,28,18,29,1,28,4,29,1,28,6,29,2,28,12,29,1,28,22,1,239,}, + {1,417,28,157,26,1,28,1,29,8,28,1,29,2,28,2,26,1,13,1,26,1,30,1,26,2,13,4,9,3,15,3,14,1,11,3,1,3,14,1,15,1,9,1,13,2,26,8,28,1,26,1,13,2,26,1,30,1,26,1,30,2,29,3,28,2,30,1,29,1,28,6,30,2,29,1,28,11,29,1,28,14,29,1,28,5,29,2,30,1,28,48,29,1,28,4,29,1,28,22,1,239,}, + {1,417,28,1,30,1,29,1,28,153,29,1,26,1,28,2,29,7,28,1,30,1,28,2,30,1,25,1,26,1,29,1,26,3,13,3,25,1,9,3,15,2,14,2,11,3,1,3,8,1,15,2,26,7,13,2,26,1,28,1,13,2,29,1,30,2,26,2,30,1,29,2,30,1,28,2,26,1,30,1,29,1,28,2,30,1,29,1,28,1,29,1,28,13,26,1,28,1,29,2,28,10,30,1,28,8,29,2,28,3,29,1,28,9,29,1,28,26,29,2,28,3,29,1,28,29,1,239,}, + {1,417,28,2,30,1,28,153,29,1,30,1,28,3,29,7,28,2,29,1,13,2,30,2,26,2,13,4,9,3,15,2,14,2,11,2,1,4,14,1,30,1,9,1,15,1,9,1,13,2,26,4,13,2,26,1,29,1,13,1,26,1,28,1,29,6,30,2,28,2,30,1,13,1,26,1,29,1,28,1,26,1,13,1,26,1,29,1,28,13,26,1,28,1,29,1,28,1,29,3,28,7,26,1,28,12,29,2,28,9,29,1,26,1,28,11,30,1,28,7,29,1,28,5,29,6,28,29,1,239,}, + {1,417,28,2,29,1,28,153,29,2,28,2,29,8,28,1,29,1,13,1,26,1,29,1,30,1,26,3,13,4,9,2,15,3,14,2,11,2,1,4,9,1,13,1,30,1,13,1,9,1,13,2,26,6,30,1,26,1,30,1,29,2,28,1,29,1,28,8,29,1,28,21,29,1,28,1,29,2,28,3,29,2,28,5,30,1,28,13,29,1,28,10,26,2,28,26,29,1,28,4,29,1,28,16,29,1,28,10,1,239,}, + {1,417,28,1,29,1,28,154,29,2,28,2,29,3,28,1,29,3,28,1,29,1,26,2,29,2,26,4,13,3,25,1,9,2,15,3,14,1,11,2,1,4,11,1,8,1,9,1,29,2,9,2,13,2,26,5,29,1,13,1,28,1,29,1,30,1,28,1,29,1,28,8,29,1,28,8,29,1,28,8,29,1,28,4,29,2,30,1,29,1,28,35,29,1,13,1,28,30,29,2,28,15,29,1,28,10,1,239,}, + {1,417,28,1,29,1,28,1,29,1,28,151,29,1,30,1,29,1,28,3,29,6,28,1,26,2,29,2,30,1,26,3,13,4,9,3,15,2,14,2,11,2,1,4,15,1,8,1,9,1,26,1,29,1,13,1,9,1,25,1,13,1,26,3,30,2,26,1,30,1,29,1,30,1,29,3,28,1,29,3,28,3,29,2,28,12,29,1,28,13,29,1,28,6,30,2,28,27,26,1,29,2,28,5,29,1,28,24,29,1,28,25,1,239,}, + {1,417,28,1,29,1,28,1,29,1,28,151,30,1,26,1,29,2,28,1,29,1,26,3,30,1,29,1,28,1,29,1,13,1,29,1,28,1,26,2,29,1,26,2,13,3,25,1,9,3,14,4,11,2,1,4,9,1,13,3,30,1,13,1,9,1,25,1,13,1,26,3,30,1,29,1,13,1,28,1,26,2,28,1,30,1,29,1,28,1,29,1,30,1,29,1,28,2,29,2,28,2,29,1,28,1,29,2,28,6,29,2,28,2,29,1,28,16,26,1,30,1,28,17,29,1,28,7,29,1,28,3,29,2,28,5,30,1,28,17,30,1,28,3,29,1,28,3,29,1,28,6,29,1,28,5,29,1,28,11,1,239,}, + {1,417,28,1,29,2,28,1,29,1,28,150,29,1,26,3,30,2,26,2,30,1,29,1,28,2,29,4,30,1,26,4,13,2,25,1,9,3,15,2,14,3,11,1,1,1,11,1,1,2,15,1,9,1,13,4,30,1,26,1,13,2,26,2,30,1,29,1,13,1,30,1,26,3,30,1,29,2,30,1,28,1,26,1,28,5,26,1,30,1,28,3,29,1,28,5,29,1,28,2,29,2,28,18,30,1,28,14,29,1,30,1,29,1,28,17,29,1,28,19,29,1,28,4,29,1,28,12,30,1,28,14,1,239,}, + {1,417,28,154,29,2,30,3,28,3,29,1,28,4,29,4,30,1,26,3,13,3,9,4,15,2,14,1,11,3,1,1,11,1,1,2,15,1,13,5,26,2,25,2,13,1,26,1,29,1,30,1,26,1,30,1,26,2,30,2,29,2,30,1,29,1,30,1,28,2,26,1,28,3,29,2,28,8,29,1,28,2,29,2,28,18,29,1,28,15,29,3,28,20,30,1,28,15,29,1,28,16,30,1,29,1,28,15,1,238,}, + {1,417,28,3,29,1,28,150,30,1,26,1,29,1,28,9,29,5,30,1,26,3,13,3,9,3,15,3,14,1,11,2,1,1,11,2,1,1,11,1,9,1,26,1,13,5,26,1,13,1,9,1,13,1,30,2,26,2,30,2,26,1,30,2,29,3,30,1,28,3,26,1,29,1,28,3,30,1,26,1,28,3,29,2,28,1,29,1,28,3,29,1,28,36,29,1,28,21,30,1,28,15,29,1,28,15,29,2,28,16,1,238,}, + {1,417,28,154,29,2,28,3,29,2,28,1,29,1,30,1,29,1,28,1,29,5,26,4,13,2,9,4,15,2,14,2,11,2,1,4,14,1,25,1,26,1,13,5,30,1,26,1,13,1,26,1,29,1,26,1,13,1,30,5,29,4,28,3,29,1,30,1,29,1,28,3,29,1,13,1,30,1,28,3,29,1,28,1,29,2,28,2,29,1,28,5,29,1,28,52,29,1,28,25,29,1,30,1,28,22,1,238,}, + {1,417,28,1,29,1,28,34,29,1,28,118,29,1,28,3,30,1,29,1,28,1,29,1,26,1,29,1,28,1,29,4,30,1,26,3,13,3,9,4,15,2,14,2,11,2,1,4,9,1,13,7,30,2,26,2,29,1,26,1,13,1,29,1,30,3,29,5,28,3,26,1,30,2,29,1,28,4,30,1,29,1,28,5,29,3,28,35,29,1,28,23,29,1,28,25,29,2,28,3,29,1,28,3,29,1,28,15,1,237,}, + {1,417,28,1,6,1,28,2,29,1,28,31,29,1,28,122,29,2,28,2,29,1,28,2,29,4,30,1,26,3,13,3,9,3,15,2,14,1,11,4,1,3,11,1,13,7,26,4,30,2,26,2,29,1,30,1,29,8,28,3,29,3,28,5,26,1,28,5,29,3,28,3,29,1,28,7,29,1,28,22,29,2,28,6,29,1,28,16,30,1,28,23,29,1,28,5,29,1,28,20,1,237,}, + {1,417,28,4,26,1,28,31,29,1,28,119,29,1,28,1,29,1,28,1,30,1,29,1,28,1,29,1,28,2,29,4,30,1,26,2,13,3,9,4,15,2,14,1,11,3,1,4,15,1,26,2,13,5,26,1,13,2,26,1,30,1,26,2,30,3,29,4,30,1,29,2,30,1,29,1,28,10,29,1,30,1,28,28,29,1,28,12,30,1,28,24,29,2,28,15,29,1,28,6,29,1,28,26,1,237,}, + {1,417,28,4,26,1,29,1,28,30,26,1,28,117,29,2,30,1,29,2,28,1,30,1,26,1,28,1,29,1,28,2,29,4,30,1,26,2,13,3,9,3,15,3,14,1,11,2,1,5,9,1,13,1,26,1,13,1,9,1,13,1,26,2,13,1,26,1,13,1,30,1,29,1,26,1,30,1,29,1,26,1,30,1,29,4,30,1,29,2,28,1,29,4,28,2,29,1,28,1,29,1,28,3,29,1,30,1,28,10,29,1,28,2,29,1,28,12,30,1,29,1,28,12,30,1,28,25,13,1,28,15,29,1,28,18,29,1,28,14,1,237,}, + {1,417,28,4,29,2,28,30,26,1,28,116,29,7,28,1,13,1,30,1,28,1,29,1,28,1,29,3,30,1,26,2,13,3,25,1,9,2,15,2,14,2,11,3,1,1,11,1,1,2,14,1,13,5,26,1,13,4,30,1,29,1,30,1,26,1,30,3,26,1,30,2,29,11,28,8,30,1,26,1,28,2,29,2,28,1,29,2,28,8,29,1,28,1,29,1,28,8,13,1,26,1,28,37,29,1,26,1,28,48,1,237,}, + {1,417,28,4,29,2,28,30,30,1,28,116,29,7,28,1,26,2,28,3,29,3,30,1,26,2,13,3,9,3,15,2,14,2,11,3,1,1,11,1,1,2,16,1,13,1,25,2,13,1,26,3,13,3,26,1,29,1,26,2,30,3,29,5,30,1,29,8,28,3,29,1,28,5,30,2,28,1,29,1,28,2,29,1,28,20,30,1,29,1,30,1,29,2,28,1,29,2,28,6,29,2,28,24,26,2,28,47,1,237,}, + {1,417,28,5,29,1,28,30,29,1,28,115,29,6,30,1,29,1,28,1,26,2,28,3,30,2,29,1,30,1,26,2,13,2,25,1,9,2,15,2,14,2,11,4,1,1,11,1,1,1,11,1,8,1,13,1,25,1,13,2,26,2,13,2,26,2,30,1,29,1,30,1,26,1,30,1,29,6,30,2,29,7,28,4,29,1,28,5,29,1,30,1,28,4,29,2,28,21,29,1,30,2,28,1,29,1,30,1,28,5,29,1,28,27,26,1,28,48,1,236,}, + {1,417,28,5,29,1,28,30,29,1,28,116,29,2,30,1,29,2,30,1,29,1,28,1,26,1,29,1,28,2,29,1,30,4,26,1,13,3,9,3,15,2,14,2,11,3,1,1,11,1,1,2,14,1,13,8,26,2,30,1,29,2,30,2,29,16,28,10,29,2,28,4,29,3,28,17,29,1,28,7,29,1,28,5,26,2,30,1,28,4,29,2,28,20,30,1,28,34,29,1,28,12,1,236,}, + {1,417,28,5,29,2,28,29,29,2,28,115,29,2,30,1,29,5,30,1,28,2,29,1,30,5,26,1,13,2,25,1,9,3,15,1,14,3,11,3,1,1,11,1,1,2,15,1,6,1,9,1,26,1,13,4,26,2,13,1,26,1,30,5,26,2,29,3,28,3,29,1,30,1,29,5,28,11,30,1,29,1,28,23,29,1,28,10,29,1,28,3,13,1,26,1,30,1,28,2,29,1,30,1,29,1,28,17,29,1,28,33,29,1,28,3,29,1,28,12,1,236,}, + {1,417,28,5,29,2,28,30,29,1,28,114,29,5,28,2,30,1,26,1,29,1,28,2,29,1,30,1,29,1,30,3,26,1,13,2,25,1,9,3,15,1,14,3,11,3,1,4,9,1,26,1,9,1,13,3,26,4,13,1,26,3,30,3,26,4,30,1,29,1,28,3,29,2,28,2,29,2,28,5,29,1,28,5,29,3,28,38,29,1,13,1,26,1,30,1,28,19,29,1,28,15,29,1,28,22,29,1,28,13,1,235,}, + {1,417,28,6,29,1,28,30,26,1,28,114,29,5,28,1,29,1,30,1,29,1,28,3,29,3,30,2,26,1,13,3,9,3,15,2,14,2,11,3,1,4,11,1,13,5,26,5,13,1,26,3,30,1,29,4,26,2,30,1,29,5,28,10,29,1,28,13,29,2,28,25,29,1,28,81,1,235,}, + {1,417,28,37,13,1,28,114,29,6,30,2,28,3,30,1,29,2,26,1,30,2,26,1,13,3,9,3,15,1,14,3,11,3,1,4,14,1,30,1,13,3,26,2,13,2,26,2,30,3,26,1,29,2,28,6,29,1,30,1,26,1,30,1,29,1,28,10,29,2,28,1,29,1,28,9,29,3,28,53,29,1,28,2,29,1,28,4,29,1,28,12,29,1,28,32,1,235,}, + {1,417,28,37,26,2,28,113,26,2,28,2,30,1,26,1,29,1,28,5,29,1,30,2,26,4,13,1,9,3,15,2,14,2,11,3,1,5,9,1,28,1,30,1,13,1,25,1,13,1,25,1,9,1,25,1,26,1,29,2,30,2,29,6,28,5,29,2,26,1,29,2,28,9,29,2,28,10,29,1,28,2,29,1,28,23,29,1,28,2,26,1,28,38,29,1,28,2,29,1,28,10,29,2,28,11,29,1,28,13,1,235,}, + {1,417,28,38,26,1,28,113,29,1,26,3,30,1,29,2,28,2,29,4,30,2,26,3,13,2,9,3,15,2,14,2,11,3,1,5,9,1,30,1,13,1,9,1,13,5,30,1,29,2,30,2,29,6,28,1,29,1,28,5,26,1,29,2,28,9,29,1,28,2,29,1,28,2,29,1,28,8,29,1,28,13,29,1,28,12,30,1,28,5,29,1,28,53,29,1,28,19,1,235,}, + {1,417,28,38,26,1,28,112,29,1,28,1,29,1,26,2,28,5,29,1,30,1,29,2,30,2,26,3,13,1,25,1,9,3,15,2,14,2,11,3,1,4,11,1,9,1,13,2,9,1,13,1,26,4,30,1,29,1,30,3,29,9,30,1,29,1,28,2,26,1,30,1,29,1,28,9,29,1,28,2,29,1,28,7,29,1,28,1,30,2,29,1,28,13,13,1,28,11,29,1,28,6,29,1,28,44,29,1,28,8,29,2,28,19,1,234,}, + {1,417,28,8,29,1,28,29,29,1,28,112,29,1,28,1,29,1,26,1,30,1,28,5,30,1,26,1,29,2,30,2,26,2,13,2,25,1,9,2,15,3,14,1,11,4,1,4,16,1,26,1,25,1,13,3,26,4,30,2,26,1,30,2,29,9,30,1,29,1,28,2,26,2,29,1,28,9,29,1,28,2,29,1,28,7,30,1,29,1,30,1,29,4,28,11,26,1,29,1,28,10,30,1,28,6,29,2,28,58,29,1,28,14,1,234,}, + {1,417,28,8,29,1,28,30,29,1,28,111,29,3,30,2,29,2,28,1,29,3,30,1,29,2,26,1,30,1,26,2,13,2,25,1,9,2,15,2,14,2,11,3,1,5,10,1,30,1,13,1,26,1,13,2,26,4,30,4,29,12,28,3,26,1,30,1,28,9,29,2,28,1,29,1,28,3,30,1,29,1,28,7,30,1,26,1,29,1,28,2,30,1,29,1,28,8,30,1,28,9,30,1,28,5,29,1,30,1,29,1,28,66,29,1,28,6,1,234,}, + {1,417,28,9,29,1,28,142,29,3,30,2,29,1,28,1,29,6,26,3,13,2,25,1,9,3,15,1,14,3,11,3,1,4,11,1,25,1,30,1,13,2,25,1,13,3,26,2,30,1,29,11,30,1,29,1,28,1,29,2,28,2,26,1,30,1,29,1,28,8,29,2,28,5,26,1,30,1,28,8,29,1,28,2,29,1,30,1,28,10,30,1,28,14,30,1,29,1,28,58,29,1,28,3,29,1,28,3,26,1,28,8,1,233,}, + {1,417,28,9,29,1,28,141,29,7,28,1,29,4,28,1,29,1,26,3,13,1,25,1,9,3,15,2,14,2,11,3,1,5,16,1,13,2,26,1,13,1,9,1,13,3,26,2,30,1,29,11,30,1,29,1,28,1,29,2,28,2,29,3,28,8,29,1,28,6,29,1,28,12,29,1,28,12,29,1,28,13,29,2,28,58,30,1,28,7,29,1,28,8,1,233,}, + {1,417,28,151,13,1,26,1,30,1,29,5,28,2,30,2,28,2,30,1,26,2,13,1,25,1,9,3,15,2,14,2,11,4,1,4,9,1,13,2,26,1,13,4,26,2,30,4,29,11,28,1,29,2,28,3,29,2,28,13,29,2,28,33,29,1,28,1,29,1,28,4,29,1,30,1,28,17,29,2,28,17,29,1,28,9,29,2,28,10,29,1,28,16,1,233,}, + {1,418,28,9,26,1,28,140,29,1,26,1,13,2,26,1,29,3,28,2,29,1,30,1,29,2,26,1,13,3,25,1,9,3,15,2,14,2,11,4,1,3,11,1,13,3,26,1,13,4,26,1,30,1,29,1,30,2,29,1,26,1,29,3,28,2,29,8,28,4,29,1,28,6,29,2,28,5,30,1,29,1,28,14,29,1,28,11,29,1,28,6,30,1,29,1,28,6,26,1,30,1,28,20,29,1,28,24,29,1,30,1,28,12,29,1,28,15,1,4,28,1,1,227,}, + {1,418,28,7,29,2,30,1,29,1,28,141,29,1,30,2,29,3,30,1,29,1,28,3,30,1,26,2,13,2,9,3,15,2,14,2,11,4,1,4,14,1,13,3,26,1,13,4,26,1,30,2,26,1,30,1,29,5,28,2,29,1,28,1,30,1,29,2,28,2,29,1,28,11,29,2,28,2,29,1,30,2,29,1,28,27,29,1,28,6,30,1,29,1,28,1,29,1,30,1,28,3,26,1,29,1,28,35,29,1,28,8,29,3,28,29,1,231,}, + {1,418,28,5,29,1,28,1,29,2,28,1,13,1,28,142,29,2,30,1,29,1,28,1,30,1,29,2,28,2,29,1,26,2,13,2,9,3,15,2,14,1,11,4,1,5,15,1,13,4,26,1,13,3,26,1,29,1,30,1,26,1,30,1,29,1,28,1,30,2,29,4,28,1,29,2,28,2,29,2,28,11,29,2,28,2,29,2,28,1,29,1,28,6,29,1,28,28,30,1,26,1,29,2,28,3,30,1,29,1,28,1,29,1,28,76,1,229,}, + {1,418,28,7,29,1,28,2,26,1,28,28,9,1,29,1,28,109,29,4,30,2,29,1,28,2,29,1,26,2,28,2,30,1,13,3,9,3,15,1,14,3,11,4,1,3,11,1,9,1,25,1,26,1,13,2,30,1,13,2,26,1,30,1,29,1,30,1,26,1,30,1,29,1,28,1,26,2,29,1,26,2,29,2,28,5,29,2,28,5,29,1,28,1,29,2,26,5,30,1,29,1,28,8,29,1,28,18,29,1,28,5,29,1,28,13,30,1,28,45,29,1,28,31,1,228,}, + {1,418,28,7,29,1,28,2,29,1,26,1,28,26,15,1,1,2,9,1,28,108,29,3,28,1,29,1,30,3,28,2,26,1,13,1,29,1,28,1,29,1,13,2,25,1,9,2,15,2,14,3,11,4,1,3,14,1,25,1,13,4,30,1,13,2,26,1,29,2,26,2,30,1,29,1,28,1,26,2,29,1,30,1,26,1,29,2,30,1,29,2,28,4,30,1,28,2,30,1,28,1,26,1,28,1,29,2,30,1,26,5,30,1,29,1,28,7,29,1,28,16,29,1,28,1,30,1,29,1,28,18,29,1,28,35,29,1,28,39,6,1,28,2,1,227,}, + {1,418,28,9,29,1,28,1,13,1,28,26,29,1,1,4,29,1,28,106,29,3,28,1,29,1,30,1,26,1,30,1,29,1,28,2,26,1,30,1,29,1,30,1,13,2,9,2,15,3,14,1,11,4,1,5,9,1,13,4,26,2,13,2,26,1,29,1,30,1,26,2,30,1,29,1,28,1,30,2,29,3,28,2,29,2,30,2,29,1,28,5,29,1,28,1,30,1,28,8,29,4,28,6,29,1,28,1,29,1,28,16,29,2,28,6,29,1,28,44,29,1,28,4,29,1,28,4,29,1,28,32,6,1,29,1,28,2,1,226,}, + {1,418,28,9,29,1,28,1,30,1,29,1,28,26,11,1,1,1,11,1,1,3,9,1,28,104,29,4,30,1,26,2,30,1,29,1,28,2,29,3,26,1,13,2,9,2,15,2,14,2,11,4,1,5,9,1,13,1,26,1,13,2,26,1,13,2,26,1,30,1,29,1,30,5,28,2,29,1,30,1,29,1,28,5,29,1,26,1,13,1,29,1,28,5,29,2,28,9,29,1,30,1,28,7,29,3,28,23,29,1,28,13,29,1,28,20,29,1,28,10,29,1,28,4,29,1,28,4,29,1,28,27,29,1,28,3,29,1,28,2,7,1,28,2,1,225,}, + {1,418,28,10,29,1,28,1,26,1,28,25,29,1,1,8,11,1,26,1,28,102,29,3,26,1,13,2,30,1,28,2,29,2,28,1,29,1,26,1,13,1,25,1,9,2,15,2,14,2,11,5,1,2,11,2,13,1,25,1,26,1,25,1,13,1,30,1,13,2,26,1,30,1,29,1,30,5,28,2,29,1,26,1,30,1,29,2,28,4,29,1,26,2,30,1,29,1,28,3,13,1,29,2,28,9,29,1,28,7,29,3,28,23,29,2,28,12,29,1,28,23,30,1,29,1,28,2,29,1,30,2,28,14,29,1,28,29,27,1,29,2,7,1,28,2,1,224,}, + {1,419,28,8,29,1,28,3,29,1,28,25,1,3,17,1,28,1,30,1,25,1,11,1,1,2,25,1,28,100,29,3,30,1,26,1,13,1,26,1,29,1,28,2,29,4,26,1,25,1,9,3,15,2,14,2,11,2,1,2,11,1,1,3,9,1,13,2,26,2,25,1,13,1,26,2,30,7,29,3,28,1,29,1,26,1,29,1,28,7,26,1,29,1,28,2,29,2,28,13,29,1,28,3,29,3,28,2,29,3,28,15,29,1,28,4,30,1,28,16,29,1,28,22,29,1,28,2,29,2,28,5,29,1,28,38,26,1,28,1,27,1,29,1,28,1,8,1,28,1,1,224,}, + {1,419,28,11,29,2,28,25,11,1,1,2,13,1,28,4,29,1,9,1,1,1,14,1,28,100,29,3,26,1,9,1,13,1,29,1,28,1,29,5,26,1,25,1,9,3,15,2,14,2,11,3,1,1,11,1,1,3,8,1,26,1,13,1,26,2,13,2,26,2,30,1,29,2,30,4,29,3,28,2,30,1,29,5,28,28,29,1,28,20,29,1,28,4,29,1,28,16,29,1,30,1,28,18,29,1,28,12,30,1,28,38,29,1,28,1,26,1,25,1,28,1,6,1,11,1,28,1,1,223,}, + {1,419,28,12,29,2,28,24,29,1,1,2,29,1,28,1,13,1,29,1,28,4,14,1,11,1,29,1,28,98,29,2,28,1,13,1,9,1,13,1,29,1,28,1,29,3,28,1,29,1,26,1,25,1,9,3,15,2,14,1,11,4,1,4,14,1,13,4,26,2,13,3,29,4,30,2,29,4,28,2,26,1,30,1,26,3,30,1,28,1,29,1,28,5,29,6,28,14,29,1,30,1,28,1,29,1,28,22,29,2,28,17,30,1,29,1,28,17,13,1,28,16,29,1,13,1,30,1,29,1,28,17,29,1,28,16,9,1,29,1,28,1,17,1,16,1,28,1,1,222,}, + {1,419,28,13,30,1,28,25,1,2,28,1,13,2,30,1,26,1,28,4,29,1,14,1,26,1,28,97,30,1,29,2,13,1,9,1,30,1,28,1,29,6,26,1,25,1,9,2,15,3,14,1,11,5,1,1,11,1,1,1,9,1,26,1,13,1,26,1,13,1,26,2,13,1,9,1,13,1,29,3,30,3,29,4,28,1,29,1,26,1,30,3,29,1,28,7,30,1,29,1,28,4,29,3,28,3,29,1,28,3,30,2,28,3,29,2,28,1,29,1,28,22,30,1,28,37,13,1,28,8,29,1,28,5,29,1,28,4,29,1,28,5,30,1,29,1,28,10,29,1,28,13,26,1,29,1,28,1,27,1,9,1,28,2,7,1,29,1,1,222,}, + {1,419,28,3,29,1,28,4,29,1,28,4,29,2,28,24,9,1,14,1,28,1,26,1,29,3,28,6,9,1,28,97,26,3,9,1,13,1,29,8,26,1,13,1,9,2,15,2,14,2,11,5,1,3,13,1,26,1,13,1,26,4,13,1,9,1,26,1,29,3,30,3,29,2,28,1,29,1,28,1,29,1,26,1,29,2,28,3,29,1,28,3,29,1,26,1,29,2,28,5,29,1,26,1,29,1,28,6,26,1,13,1,29,1,28,7,29,2,28,3,29,1,28,14,29,1,26,1,28,2,29,2,28,33,30,1,28,2,29,1,28,5,29,2,28,2,29,1,28,1,29,1,28,11,29,1,28,2,29,1,28,21,26,1,9,1,28,2,12,1,29,1,28,2,10,1,28,1,1,221,}, + {1,419,28,3,29,1,30,1,28,4,29,1,28,4,13,1,28,25,15,1,28,2,29,1,28,5,29,3,28,98,29,1,26,1,13,2,26,1,29,8,26,1,13,1,9,2,15,2,14,1,11,5,1,3,14,1,13,1,26,1,13,1,26,4,13,2,26,1,29,2,30,4,29,3,30,1,28,2,29,1,28,1,29,1,28,2,29,2,28,3,26,1,30,1,29,2,28,7,29,4,28,4,9,1,13,1,29,1,28,1,29,1,13,2,29,1,28,2,29,1,30,1,26,1,29,1,28,15,29,1,30,1,28,1,29,2,28,13,29,1,28,30,30,1,28,2,29,1,28,6,29,1,28,3,29,2,28,4,30,1,28,22,9,1,28,2,9,1,7,1,28,3,6,1,1,221,}, + {1,419,28,4,30,1,28,9,30,1,28,25,15,1,26,1,28,9,29,1,26,1,29,2,28,96,30,1,26,1,30,1,29,2,28,1,29,2,30,2,29,2,30,1,26,1,9,2,15,1,14,2,11,4,1,4,9,1,13,1,26,1,13,1,26,3,13,1,26,1,30,1,26,1,29,3,30,3,29,3,26,1,28,2,29,5,28,4,30,1,26,1,28,1,29,1,28,9,29,2,30,2,28,3,13,2,26,2,30,1,26,1,13,1,30,1,28,3,26,2,29,1,28,15,29,2,28,1,29,1,28,45,30,1,28,2,29,2,28,5,29,1,28,3,29,2,28,4,29,1,28,22,27,1,28,2,9,2,6,1,28,2,8,1,28,1,1,220,}, + {1,419,28,5,30,1,28,9,26,1,28,24,15,1,11,1,28,9,29,1,28,1,29,2,26,1,29,1,28,8,29,1,28,85,30,1,29,1,28,1,29,2,28,1,29,2,30,2,29,2,30,1,26,1,9,2,15,1,14,2,11,4,1,4,8,1,13,1,26,5,13,1,30,1,28,1,26,1,29,3,30,3,29,2,28,1,30,1,28,1,29,4,28,3,29,1,28,3,30,1,29,2,28,12,30,2,28,2,26,2,29,1,28,11,30,1,28,13,29,2,28,2,29,1,28,13,29,1,28,14,29,1,28,3,29,1,28,12,29,2,28,2,29,1,28,2,29,1,28,31,29,1,28,3,9,1,28,2,27,1,10,2,6,1,29,1,28,1,9,1,28,1,1,219,}, + {1,420,28,12,29,1,28,1,29,2,28,23,29,1,1,1,28,11,29,2,26,1,28,95,26,3,29,1,28,3,29,4,30,2,26,1,25,1,15,3,11,3,1,6,30,1,13,1,26,7,29,2,28,1,29,1,26,1,30,1,29,9,28,1,29,2,28,8,30,1,28,7,29,2,28,7,13,1,26,1,28,26,30,1,29,1,28,3,29,1,28,2,29,2,28,7,29,1,28,15,29,1,28,3,26,1,28,9,29,2,28,5,29,1,28,2,29,1,28,31,29,1,28,3,26,1,29,1,28,2,9,2,10,1,6,1,28,1,6,1,16,1,28,1,1,218,}, + {1,420,28,12,29,1,28,1,29,2,28,24,14,1,28,11,29,1,28,1,25,1,28,95,30,1,26,3,30,1,29,7,30,2,13,1,15,3,11,3,1,1,11,2,1,2,11,1,30,1,26,7,30,1,29,3,30,1,26,1,30,1,29,5,30,1,29,2,28,2,29,1,28,9,30,1,29,1,28,6,29,3,28,6,30,1,29,1,28,2,29,2,28,20,29,1,26,2,28,4,26,2,28,3,29,1,28,6,29,1,28,27,29,2,28,7,29,1,28,38,26,2,28,2,8,1,7,3,29,1,28,1,9,1,10,1,28,1,1,217,}, + {1,420,28,10,29,2,28,1,29,1,28,2,29,1,28,23,15,1,28,10,29,2,28,1,9,1,29,1,28,94,29,1,30,1,26,1,13,2,30,3,26,1,30,4,26,2,9,1,15,1,14,1,11,4,1,4,14,1,26,5,13,1,26,2,29,4,30,1,26,1,29,6,30,1,29,1,28,1,29,3,28,10,29,1,28,5,29,7,28,3,30,1,28,2,29,1,26,2,29,3,28,17,29,1,13,1,30,1,28,5,29,2,28,37,29,1,28,5,29,1,28,24,29,1,28,16,29,2,28,2,29,1,6,1,28,1,29,1,6,1,28,2,17,1,10,1,28,2,1,215,}, + {1,420,28,9,29,3,28,1,29,1,28,2,30,1,28,23,25,1,29,1,28,10,29,2,26,2,28,94,29,2,26,1,13,2,30,1,13,4,26,1,30,4,9,1,14,2,11,4,1,4,9,1,13,1,26,2,30,1,26,1,13,1,26,1,30,1,29,4,30,2,29,4,28,1,29,2,28,1,29,1,30,3,28,10,29,1,28,5,30,1,29,2,28,2,29,2,28,3,30,1,28,4,29,2,30,2,28,17,30,1,13,1,29,1,28,6,29,2,28,9,30,1,28,19,29,1,28,13,29,1,28,4,29,1,28,18,29,1,28,21,29,1,28,2,29,1,28,2,7,1,16,1,29,1,28,2,1,214,}, + {1,420,28,10,29,4,28,1,29,3,28,22,29,1,30,1,28,2,26,1,29,1,28,7,29,2,25,1,28,95,29,2,30,3,13,4,26,1,30,1,29,3,25,1,14,1,11,6,1,2,11,1,26,1,13,1,26,1,29,1,30,1,26,1,13,1,26,1,30,1,29,3,30,2,29,2,28,1,29,2,28,4,29,1,30,1,28,1,29,1,28,10,29,1,28,5,29,1,30,2,29,2,28,4,29,2,28,7,29,3,28,15,26,1,13,1,28,7,30,2,29,2,28,7,29,1,28,16,29,1,28,16,30,1,28,4,30,1,28,41,9,1,28,2,6,1,28,2,6,1,29,1,7,1,28,2,1,213,}, + {1,420,28,10,29,3,28,1,29,2,28,1,29,1,28,25,29,1,1,1,11,1,15,1,26,1,28,5,29,1,28,1,25,1,26,1,28,94,29,4,30,1,13,4,26,2,30,1,29,2,26,1,15,1,11,3,1,2,11,1,1,2,11,1,29,1,26,1,30,1,29,1,26,1,13,2,26,1,29,4,30,1,29,2,28,2,29,5,28,1,30,2,28,18,29,6,28,3,30,1,28,3,29,1,28,5,29,1,28,15,29,1,26,1,29,1,28,7,29,3,28,1,29,2,28,39,30,1,28,3,29,2,28,17,29,1,28,16,29,1,28,6,7,2,28,1,29,1,7,1,28,2,29,1,7,1,16,1,28,1,1,213,}, + {1,421,28,9,29,1,28,6,29,1,28,25,26,1,15,2,14,1,11,1,15,1,28,6,26,2,28,94,29,1,30,1,29,1,28,1,30,2,26,1,13,4,26,2,30,1,29,1,9,1,11,3,1,3,11,1,1,1,11,1,30,2,29,2,26,1,13,2,26,1,29,4,30,1,29,2,28,1,29,2,30,1,29,1,30,1,29,1,28,1,29,1,30,1,29,1,28,12,29,1,28,4,29,1,28,2,29,4,28,2,30,1,28,2,29,2,28,5,29,1,28,13,30,1,28,1,29,1,30,1,28,2,29,1,28,10,30,1,28,6,29,2,28,27,29,1,28,3,29,1,28,2,29,1,28,19,30,1,28,3,29,1,28,4,29,1,28,15,9,1,29,1,28,2,6,1,28,2,29,1,16,1,9,1,28,1,1,212,}, + {1,421,28,15,29,2,28,25,29,1,14,1,15,1,25,2,15,1,14,1,26,1,28,5,26,1,28,94,26,2,29,1,28,1,29,1,28,1,29,1,26,1,13,4,26,2,29,1,25,1,11,5,1,1,11,1,1,1,11,1,13,1,29,2,30,1,26,1,13,2,30,1,29,1,30,2,29,1,30,1,29,2,28,1,29,1,30,4,29,1,28,2,29,3,28,9,30,1,29,1,26,1,29,1,28,1,29,1,28,1,29,6,28,3,30,1,29,1,28,1,29,1,28,2,29,1,28,1,29,1,28,1,29,1,28,12,29,1,28,2,30,1,13,1,29,1,26,1,13,1,28,2,29,2,28,6,30,1,28,7,29,1,28,33,30,1,26,1,28,2,29,1,28,8,30,1,28,2,29,1,28,4,29,1,28,8,29,1,28,15,8,2,28,2,8,1,6,1,28,1,6,2,17,1,16,1,28,1,1,211,}, + {1,421,28,10,29,1,28,7,29,2,28,23,15,2,9,2,25,1,26,1,15,1,29,1,28,2,29,1,28,1,26,1,28,95,30,1,29,1,28,1,29,3,30,1,26,2,13,1,26,2,13,1,26,1,25,1,14,1,11,3,1,4,13,1,9,1,13,1,28,1,30,1,26,1,13,1,26,1,29,3,30,2,29,2,30,1,26,1,30,3,29,3,28,1,29,1,30,1,29,2,28,8,29,1,26,1,29,1,28,2,29,3,28,1,29,2,28,1,29,3,28,2,26,1,29,1,28,1,29,2,28,2,29,1,28,18,29,1,26,1,28,1,29,1,26,1,28,1,29,1,28,17,29,1,28,28,29,1,28,2,29,2,28,3,29,1,28,8,29,1,28,7,29,1,28,18,26,1,28,6,7,1,6,1,28,2,10,1,28,2,6,1,9,1,12,1,11,1,28,1,1,210,}, + {1,421,28,10,29,1,28,7,29,2,28,23,25,1,15,1,9,1,26,1,25,2,29,1,13,1,28,4,26,1,29,1,28,94,30,1,29,1,28,1,30,1,29,3,30,1,26,4,13,1,26,1,25,1,14,1,11,3,1,3,14,1,29,1,13,1,25,1,30,1,29,1,26,2,30,1,29,2,30,3,26,1,29,1,30,1,26,1,29,3,28,1,29,2,28,2,30,2,29,1,28,8,29,1,30,1,28,4,29,2,30,1,26,1,29,7,30,1,29,1,28,28,29,1,28,1,29,1,28,16,29,2,28,8,29,2,28,16,29,1,28,9,29,1,28,35,25,1,28,6,6,1,7,1,28,2,29,1,28,3,7,1,12,1,17,2,28,1,1,209,}, + {1,421,28,18,29,1,28,1,9,1,29,1,28,17,30,1,26,1,29,1,28,1,26,3,25,1,29,1,26,1,29,1,26,1,29,1,28,3,29,1,26,1,28,94,30,2,29,1,30,1,29,3,30,2,26,5,9,1,14,1,11,3,1,3,9,1,28,1,26,1,9,2,26,2,30,1,29,2,30,2,29,1,30,1,26,1,30,3,29,3,28,1,29,2,28,2,29,1,30,2,28,8,29,3,28,4,29,1,30,2,29,1,28,1,29,2,28,1,29,1,30,3,29,2,28,10,29,2,28,2,29,1,28,6,29,1,30,1,29,1,28,1,29,2,28,18,29,2,28,7,29,3,28,62,9,1,28,7,7,1,29,1,28,2,29,1,28,3,16,2,11,1,17,1,28,1,1,208,}, + {1,421,28,3,29,2,28,14,29,1,28,1,13,1,30,1,28,15,9,1,11,2,1,1,28,2,26,1,29,1,13,1,29,2,26,1,28,6,13,1,28,82,29,1,28,11,29,1,30,1,29,2,30,1,29,3,30,5,26,1,25,1,14,1,11,3,1,1,11,1,1,1,10,1,28,1,30,1,26,1,9,1,13,1,26,1,29,2,30,2,29,3,26,1,29,9,28,3,30,2,28,10,29,3,28,11,30,4,29,2,30,1,29,3,28,9,30,1,28,6,29,3,30,1,29,1,28,20,30,2,28,6,30,1,29,1,28,12,29,1,28,2,29,1,28,47,25,1,28,7,7,1,6,1,28,2,6,1,28,3,10,1,16,1,9,1,16,2,28,1,1,207,}, + {1,421,28,4,29,2,28,13,29,2,28,1,25,2,28,14,26,1,14,1,11,1,1,1,9,1,28,1,26,1,25,1,26,2,29,2,28,6,26,2,28,94,29,1,30,1,29,1,30,2,29,2,30,3,26,1,30,2,25,1,15,1,11,3,1,3,13,1,29,2,28,1,26,2,29,3,26,1,30,1,29,2,26,1,29,4,28,1,29,4,30,1,28,4,30,1,29,1,28,24,30,1,29,1,28,2,29,2,28,19,30,1,28,5,29,1,28,19,29,1,28,4,29,1,28,1,29,2,28,13,29,1,30,1,29,1,28,13,29,1,28,33,26,1,28,7,29,1,6,1,29,1,28,1,29,1,10,1,28,3,12,1,9,1,16,1,11,1,6,1,28,1,1,206,}, + {1,421,28,5,29,1,28,15,29,1,28,1,25,1,9,1,28,14,9,1,14,1,11,1,1,1,28,2,9,1,26,3,28,7,29,1,26,1,28,94,29,1,26,1,30,3,29,1,30,2,26,3,30,2,13,1,15,1,11,4,1,1,11,1,29,1,30,1,26,1,29,1,30,1,29,1,28,1,29,1,30,1,26,1,30,1,29,2,26,1,29,4,28,2,29,1,28,1,29,2,28,4,30,2,28,24,29,1,28,14,30,1,28,8,29,1,13,1,28,1,29,1,30,1,28,1,29,2,28,20,30,1,28,6,29,1,28,15,29,1,30,1,28,12,30,1,28,4,29,1,28,8,29,1,30,1,28,27,29,2,28,2,16,1,28,3,10,1,16,2,9,1,16,1,28,1,1,206,}, + {1,421,28,21,13,1,28,2,15,1,9,1,28,13,26,1,11,2,1,1,9,1,28,2,26,1,28,1,29,1,28,8,26,1,29,1,28,94,26,1,30,1,29,4,30,1,26,4,30,1,26,1,9,1,14,1,11,3,1,1,15,1,28,1,30,1,26,4,30,1,26,2,30,1,29,2,30,2,29,3,30,1,29,3,28,2,29,1,28,4,29,2,28,15,29,3,28,6,30,1,28,15,29,1,28,7,30,1,29,1,28,1,29,1,26,1,28,1,29,1,28,1,29,1,28,19,30,1,28,7,30,1,28,15,30,1,28,3,29,1,28,22,30,1,29,1,28,28,6,1,28,2,7,1,6,1,28,3,16,1,9,1,7,1,10,1,28,2,1,205,}, + {1,421,28,19,29,3,13,1,28,2,14,1,15,1,28,13,25,1,14,1,11,1,1,1,28,3,26,1,29,1,28,4,29,1,28,3,26,1,25,1,28,94,26,1,30,1,29,4,30,1,26,3,13,1,30,1,26,1,9,1,15,1,11,3,1,1,15,1,29,1,30,1,29,3,26,1,13,3,30,1,29,5,28,1,29,1,30,1,29,3,28,8,29,1,28,1,30,1,26,1,29,1,28,7,29,2,28,2,29,2,28,4,29,1,28,2,29,1,28,6,29,1,28,8,29,1,28,6,29,1,30,1,28,3,30,1,29,1,30,1,29,1,28,15,29,1,28,12,13,1,28,63,29,1,28,8,6,2,28,2,8,1,6,1,28,2,16,3,7,1,28,2,1,205,}, + {1,421,28,7,29,3,28,7,29,2,28,1,30,1,29,1,30,1,29,1,28,2,14,1,9,1,28,13,9,1,14,1,1,1,9,1,28,3,26,1,28,9,25,2,28,71,29,1,28,21,29,1,26,1,29,4,30,2,29,1,30,1,13,2,26,1,8,1,15,1,11,1,1,1,11,1,1,1,13,1,29,2,30,2,29,1,30,4,29,7,28,2,29,4,28,8,29,2,28,10,29,6,28,3,29,1,28,2,29,1,28,21,29,1,26,1,29,1,28,3,26,1,28,1,29,1,28,1,29,1,28,13,29,2,28,30,29,1,28,38,29,1,28,15,6,2,29,1,28,2,6,1,28,2,10,1,16,1,9,1,12,1,9,1,29,1,28,1,1,204,}, + {1,421,28,7,29,4,28,4,29,4,26,1,29,1,28,2,26,1,28,3,9,1,25,1,28,12,29,1,15,1,11,2,28,4,29,1,28,9,15,1,9,1,25,1,28,92,30,1,29,1,30,3,26,3,13,1,26,1,13,1,26,1,9,1,15,2,1,2,11,1,26,1,28,1,29,2,30,1,29,1,30,4,29,5,30,1,29,1,28,1,29,1,30,1,29,1,28,2,29,1,28,2,29,1,30,1,29,1,28,14,29,7,28,1,29,2,28,24,29,1,30,1,28,3,29,1,26,1,28,1,29,1,28,4,29,1,28,11,29,1,28,12,29,1,28,17,29,1,28,1,29,1,28,49,29,1,28,2,29,1,6,1,28,1,6,1,28,2,29,1,28,2,9,1,16,1,7,1,9,1,12,1,6,1,28,1,1,203,}, + {1,421,28,8,29,2,30,1,29,10,28,2,30,1,28,4,15,1,29,1,28,12,15,1,9,1,1,1,9,1,28,4,26,1,29,1,28,7,9,1,15,2,11,1,9,1,28,84,29,1,28,5,26,1,28,1,29,6,30,1,26,1,13,1,26,1,9,1,15,1,9,1,11,1,1,1,14,1,30,1,28,1,29,4,30,4,29,5,30,1,29,1,28,1,29,1,26,1,29,1,28,2,29,1,28,2,29,1,30,1,28,5,29,2,28,6,29,12,28,24,29,2,28,3,29,1,26,1,29,1,28,17,30,1,29,1,28,11,29,1,28,73,6,1,28,1,6,2,28,1,6,1,28,2,10,1,12,1,6,1,10,1,16,1,12,1,28,1,1,203,}, + {1,421,28,9,29,2,30,1,29,7,28,1,29,2,28,2,29,1,28,4,15,1,30,1,28,11,14,1,9,1,14,1,1,1,28,5,9,2,26,1,28,5,29,1,9,1,15,1,14,1,11,2,9,1,28,82,29,1,28,5,26,2,13,1,26,5,13,3,30,1,15,1,9,1,30,1,14,1,1,1,15,1,29,2,30,1,29,1,30,1,29,1,30,4,29,2,30,1,29,4,28,2,26,2,28,4,29,1,30,1,29,1,28,5,29,3,28,5,29,12,28,3,29,3,28,17,29,2,28,5,26,2,28,2,29,1,28,14,30,1,29,1,28,11,29,1,28,73,7,1,28,2,7,1,28,1,29,1,28,2,7,1,16,1,7,3,16,1,17,1,28,1,1,202,}, + {1,421,28,10,29,1,30,1,29,1,28,3,29,1,28,2,29,1,28,4,29,1,28,4,26,1,13,1,28,11,26,1,14,1,9,1,1,1,25,1,28,13,9,1,15,1,9,2,11,2,26,1,28,81,29,1,28,5,29,1,9,3,13,1,9,5,13,1,30,1,15,1,9,1,29,1,9,1,1,1,9,1,28,1,29,1,30,1,29,1,30,1,29,1,30,3,29,3,30,1,29,2,28,1,30,1,29,1,28,1,29,1,26,1,29,1,28,3,26,1,30,1,28,8,29,2,28,5,29,11,28,3,29,3,28,17,29,2,28,5,30,1,13,1,29,1,28,16,29,2,28,11,26,1,29,1,28,72,6,1,29,1,28,1,6,2,28,3,29,1,16,1,6,1,28,1,7,1,10,1,16,1,7,1,28,2,1,200,}, + {1,421,28,2,29,1,28,16,29,1,28,4,29,2,28,4,29,1,26,1,28,1,29,1,28,9,25,1,9,1,14,1,1,1,28,13,29,1,9,1,15,3,14,1,15,1,28,88,26,1,13,2,26,1,13,1,9,2,15,2,25,1,13,1,15,1,9,1,29,1,9,1,1,1,13,1,28,1,29,1,30,1,29,1,30,5,29,3,30,1,29,2,28,1,26,1,29,1,28,2,29,2,28,2,30,2,29,1,28,9,29,2,28,4,29,10,28,3,29,2,28,26,29,1,13,1,30,1,29,1,28,16,29,1,28,12,26,1,29,1,28,72,29,1,28,2,6,1,28,4,12,1,9,1,28,2,27,1,7,1,9,2,28,3,1,198,}, + {1,421,28,21,29,2,28,2,29,1,30,1,28,4,29,1,28,1,29,1,26,1,28,5,29,1,28,3,9,1,15,1,1,1,25,1,28,13,9,3,14,1,11,1,14,1,29,1,28,88,26,2,29,1,30,1,13,2,9,1,15,1,9,2,13,1,30,1,26,1,25,1,14,1,26,1,28,1,29,1,30,1,29,1,30,5,29,1,28,1,29,1,30,1,29,1,28,1,29,3,28,5,30,2,29,1,28,10,30,1,26,1,28,5,29,3,28,9,29,1,28,25,29,1,28,2,29,1,30,2,29,1,28,28,26,1,30,1,28,35,29,1,28,16,30,1,29,1,28,18,29,1,28,2,6,1,28,4,16,1,11,1,28,3,29,1,9,1,10,1,6,1,16,1,6,1,28,1,1,197,}, + {1,421,28,3,29,1,28,9,29,2,28,4,29,2,28,2,29,4,28,8,26,1,29,1,28,7,13,1,9,1,15,1,1,1,28,13,26,1,15,2,9,2,11,1,9,1,28,46,29,1,28,42,29,1,28,3,29,1,26,1,9,1,25,1,15,1,30,1,28,1,26,1,13,1,14,1,26,1,28,1,26,2,29,1,30,4,29,2,28,1,29,1,30,1,29,1,28,1,29,2,28,5,29,1,13,1,29,1,28,11,29,1,26,1,30,1,28,5,29,1,28,5,29,6,28,18,29,2,28,4,26,1,13,1,28,3,29,1,30,1,26,1,30,1,28,26,29,1,28,2,29,1,28,34,29,1,28,6,29,1,28,9,30,1,29,1,28,18,6,1,28,2,7,1,29,1,28,2,29,1,9,1,11,1,10,1,28,3,29,2,6,1,16,1,17,1,9,1,28,1,1,196,}, + {1,421,28,21,29,6,26,1,28,5,26,1,28,2,29,4,28,5,15,1,9,1,1,1,15,1,28,13,9,1,14,1,9,1,15,2,11,1,28,42,29,1,28,46,26,1,30,1,29,2,30,3,13,1,30,1,13,1,25,1,26,1,9,1,14,1,29,1,30,2,29,5,30,1,29,1,28,2,29,1,26,1,29,1,28,1,30,1,28,6,13,1,29,1,28,14,29,10,30,2,29,4,28,1,29,1,30,1,29,1,28,2,29,1,28,15,29,1,26,1,28,2,29,1,30,1,28,6,29,3,28,13,29,2,28,1,29,1,26,1,28,3,30,1,29,1,28,14,29,1,28,23,30,1,28,9,29,1,28,27,30,1,28,2,13,1,7,1,28,3,6,1,9,1,6,1,28,3,29,1,27,1,6,1,9,1,10,1,6,1,10,1,28,1,1,195,}, + {1,421,28,10,29,1,28,9,29,5,28,2,30,1,28,6,26,1,28,2,29,1,30,1,26,2,28,4,29,1,14,1,11,2,28,13,26,1,15,3,9,1,15,2,28,67,29,2,28,19,26,2,29,2,30,3,13,3,25,1,26,1,25,1,9,1,30,1,29,1,28,3,29,3,28,2,29,7,28,5,29,1,26,1,28,15,30,1,28,7,29,4,28,7,30,2,28,11,29,1,28,6,26,1,29,3,28,9,29,2,28,13,26,2,28,3,30,2,28,39,29,1,28,2,29,1,28,7,29,2,28,26,29,2,28,1,29,3,28,2,29,1,28,1,9,2,28,3,26,1,6,1,10,1,9,1,10,1,9,1,7,1,28,2,1,193,}, + {1,421,28,13,29,2,28,13,30,1,28,5,30,1,28,3,29,1,26,1,9,2,26,2,28,3,15,1,1,1,14,1,28,13,9,1,15,2,9,1,15,1,1,1,26,1,28,63,29,6,28,18,29,1,26,1,30,1,29,1,26,1,30,2,13,2,9,2,25,2,30,1,26,1,30,1,28,2,29,1,26,2,30,1,28,2,29,1,30,1,29,1,28,2,29,1,28,1,29,1,28,3,29,1,30,1,28,16,30,1,28,7,29,1,28,1,29,2,28,8,29,2,28,8,29,2,28,7,30,2,28,15,29,3,28,9,30,1,28,2,29,1,30,1,29,1,28,18,29,1,28,31,30,1,29,1,28,11,29,1,28,14,29,2,28,6,7,1,28,1,27,1,12,1,29,1,28,3,29,1,6,1,11,1,17,1,16,2,7,1,28,1,1,193,}, + {1,421,28,13,29,2,28,13,26,1,28,6,29,1,28,4,26,1,15,3,9,1,26,1,28,1,26,1,14,1,11,1,28,13,26,1,9,1,15,1,9,1,15,1,11,2,28,60,29,1,28,4,29,3,28,19,29,1,13,1,26,1,29,1,26,1,30,1,26,1,13,1,9,4,25,1,29,1,26,2,29,1,30,1,26,3,29,1,26,1,29,2,30,2,29,1,28,3,29,1,28,3,29,2,28,16,29,1,28,11,29,6,28,3,29,2,28,7,29,3,28,6,29,1,28,15,29,1,13,1,29,2,28,11,26,1,13,1,28,43,29,1,28,8,30,1,29,1,28,26,29,1,28,2,29,2,28,3,29,1,28,2,27,2,28,4,6,1,11,2,9,1,17,1,11,1,6,1,28,1,1,192,}, + {1,421,28,28,29,1,30,1,28,7,29,2,28,2,26,2,9,1,11,1,14,2,9,1,14,1,26,1,28,1,29,1,28,12,25,1,9,2,14,1,11,1,1,1,25,1,28,55,29,1,28,4,29,2,28,2,29,1,26,1,28,21,26,2,30,1,26,2,25,2,9,2,13,1,9,1,13,1,29,2,30,1,26,4,30,1,29,1,13,1,30,1,29,1,30,1,26,2,30,1,26,1,29,3,28,2,29,2,28,31,29,3,28,9,30,1,28,4,30,1,28,5,29,1,28,7,29,1,28,8,29,2,28,13,29,1,13,1,29,1,28,45,26,1,28,5,29,2,28,29,29,1,13,1,28,1,30,1,6,1,28,3,6,1,10,1,28,4,29,1,16,1,11,1,16,1,12,1,1,1,12,1,6,1,28,1,1,191,}, + {1,421,28,17,29,2,28,2,29,3,28,3,29,1,28,1,29,1,30,1,28,7,29,1,28,4,26,1,25,1,15,1,14,2,9,1,28,2,29,2,28,11,26,1,9,1,15,1,11,1,14,1,11,2,28,54,29,1,28,12,29,1,28,19,29,1,26,3,13,1,9,2,15,1,9,1,13,2,26,1,29,2,30,1,26,1,30,1,29,3,30,2,29,2,30,3,26,1,13,1,26,2,30,1,29,2,28,33,29,2,28,6,29,1,28,2,29,1,30,1,28,5,30,1,28,21,29,1,28,16,30,1,28,76,29,1,28,5,30,1,6,1,28,1,6,1,9,1,29,1,28,2,29,1,9,1,10,1,28,4,6,1,11,2,16,1,12,1,17,1,11,1,9,1,1,191,}, + {1,421,28,3,29,2,28,8,29,3,28,2,29,1,28,8,29,1,28,1,29,1,30,1,28,9,29,1,28,2,29,1,26,1,9,1,26,2,28,2,29,1,28,2,30,1,29,1,28,9,30,1,25,1,15,1,14,1,15,1,14,2,26,1,28,42,29,1,28,8,29,1,28,5,29,1,26,1,9,2,14,2,26,1,28,23,26,3,9,4,13,3,29,2,30,3,29,3,30,1,26,1,28,2,29,5,30,6,29,1,28,17,29,1,28,4,29,3,28,1,29,8,28,5,29,2,28,1,29,2,28,16,29,2,28,10,30,1,29,1,28,15,29,1,28,76,29,1,28,2,29,1,28,2,30,1,28,2,29,1,7,1,8,1,29,1,28,2,10,1,17,1,29,1,28,4,12,1,11,1,16,3,11,1,1,1,28,1,1,190,}, + {1,421,28,4,29,2,28,2,29,8,28,11,29,2,28,1,29,1,26,1,30,1,28,7,29,1,28,3,29,1,28,4,29,1,28,1,29,1,28,3,29,2,28,8,26,1,15,1,9,1,15,1,9,3,28,42,29,2,28,9,29,1,9,1,14,1,11,2,14,2,9,1,15,1,1,1,11,1,29,1,28,19,29,1,28,2,26,2,30,1,9,1,13,3,26,1,13,1,25,1,29,1,26,1,29,6,30,2,29,6,28,5,29,1,30,1,13,1,26,1,28,15,29,1,28,5,29,12,28,1,29,1,28,5,29,1,28,16,29,1,28,13,29,1,28,15,29,1,28,51,29,1,28,25,29,1,28,7,30,2,28,1,29,1,28,4,9,2,28,4,7,1,11,1,17,1,11,1,16,1,10,1,9,2,28,1,1,189,}, + {1,421,28,5,29,2,28,1,29,1,30,3,26,3,30,2,29,3,28,3,29,1,28,2,29,1,30,1,29,3,26,1,30,1,29,1,28,8,29,1,28,7,29,1,28,5,29,3,26,4,29,2,26,1,9,1,25,3,26,2,29,1,28,49,29,1,25,1,15,1,14,2,15,1,9,1,29,1,28,5,15,1,14,1,28,17,29,1,26,2,28,2,29,1,13,2,29,1,30,1,13,2,9,2,30,1,29,1,30,1,29,3,30,5,29,2,30,1,29,1,28,1,29,2,28,7,29,1,30,1,28,13,30,1,28,5,29,12,28,1,29,1,28,6,26,1,28,29,29,1,30,1,29,1,28,14,29,1,28,10,29,1,28,27,29,1,28,13,29,2,28,17,29,1,28,18,29,1,28,1,29,1,10,2,7,1,28,4,11,2,12,1,11,1,16,1,28,1,10,1,28,1,1,189,}, + {1,421,28,9,29,1,28,1,30,3,29,6,28,1,29,3,28,1,29,2,28,1,29,1,26,1,30,1,29,1,28,2,29,1,28,24,29,2,26,10,29,1,28,43,26,2,25,1,9,1,15,5,9,1,13,1,28,9,29,1,15,1,26,1,28,5,29,1,28,9,29,1,30,1,29,1,28,4,30,1,26,1,13,4,9,2,30,1,29,1,30,1,29,2,30,6,29,2,30,2,29,3,28,9,29,1,28,9,29,1,28,2,29,3,28,3,29,12,28,1,29,1,28,6,26,1,28,15,29,1,28,13,29,2,28,87,29,1,28,9,29,1,28,11,30,1,16,1,7,1,28,5,12,3,11,1,16,1,29,1,6,1,28,1,1,188,}, + {1,420,28,9,29,2,28,1,29,3,28,3,29,1,28,3,29,2,28,3,29,5,28,30,29,2,26,1,29,9,28,26,29,2,28,9,26,1,9,1,15,1,14,3,15,1,9,1,25,1,26,3,29,1,28,13,15,1,14,1,28,5,29,1,28,10,29,1,28,5,29,1,13,1,9,1,13,1,9,2,14,1,15,1,26,1,29,2,30,6,29,5,30,1,29,3,28,2,29,2,28,16,29,4,28,3,29,5,30,1,29,7,28,8,30,1,28,46,29,1,28,81,29,1,28,4,29,1,28,4,29,1,28,2,9,1,7,1,28,5,9,1,12,1,16,1,11,2,7,1,9,1,29,1,28,2,1,186,}, + {1,420,28,9,29,2,28,11,29,1,28,5,29,1,28,3,29,2,28,2,29,1,28,13,29,1,26,1,28,12,29,2,28,2,29,2,28,2,29,4,28,29,25,1,14,1,11,1,1,1,11,2,15,2,9,1,25,2,28,4,29,1,28,16,9,1,11,1,26,1,28,2,29,3,28,14,29,1,28,1,29,1,26,1,9,1,25,1,15,2,14,1,15,1,30,1,29,1,30,6,29,6,30,1,29,2,28,4,29,2,28,5,29,1,28,5,29,1,30,1,29,1,28,1,29,1,30,1,28,1,29,1,28,3,29,14,28,7,29,1,28,45,29,2,28,43,13,1,28,42,30,1,29,1,28,6,6,1,8,1,29,1,28,3,29,1,9,4,12,1,16,1,17,1,6,1,7,1,9,1,28,1,1,185,}, + {1,420,28,17,29,2,28,2,29,2,28,1,29,3,28,3,29,2,28,5,29,1,28,5,29,1,28,6,29,1,26,1,28,21,29,4,28,25,9,1,11,1,1,1,11,1,14,1,15,1,9,1,25,1,26,1,28,26,29,1,14,1,1,1,26,1,28,2,26,1,29,1,28,1,29,1,28,12,29,1,28,2,29,1,26,1,9,2,13,1,9,2,29,2,30,6,29,4,28,1,29,1,30,1,29,2,28,3,29,3,28,5,30,1,29,2,30,1,29,3,28,1,30,2,13,1,30,1,28,1,29,1,30,1,28,2,29,12,28,24,29,2,28,14,29,2,28,13,29,1,28,44,26,1,28,42,29,1,30,1,28,6,7,1,9,1,28,5,29,1,9,3,10,1,9,1,11,1,9,1,29,1,8,1,11,1,28,1,1,184,}, + {1,420,28,16,29,3,28,2,29,1,28,2,29,1,30,1,29,1,28,1,29,6,28,3,26,1,28,24,29,2,28,13,26,1,28,18,29,1,13,1,15,2,11,2,14,1,9,1,26,1,28,7,29,2,28,24,29,1,11,2,28,2,29,1,28,15,29,1,28,4,25,1,13,1,29,2,26,1,30,3,29,1,30,5,29,5,30,1,29,1,28,3,29,3,28,6,26,1,28,2,29,1,28,5,29,1,26,1,30,1,28,2,29,1,28,2,29,9,28,12,29,1,28,14,29,6,28,12,29,3,28,10,29,2,28,22,29,1,28,58,29,1,28,5,30,1,29,1,28,1,29,1,28,3,13,1,15,1,30,1,28,1,29,1,28,3,10,2,16,1,7,1,10,1,9,1,16,1,6,1,28,1,11,1,1,1,29,1,28,1,1,182,}, + {1,420,28,1,29,1,28,9,29,1,28,4,29,3,28,6,26,2,29,2,28,3,29,2,28,2,29,1,26,1,29,1,28,20,29,1,28,11,29,2,28,2,29,2,9,1,25,1,28,9,29,1,26,1,25,1,9,1,15,2,14,1,11,3,14,1,15,1,26,1,28,6,30,1,29,2,28,29,25,1,1,1,25,1,28,17,29,2,28,3,26,1,13,1,30,1,29,1,30,1,29,1,30,1,29,4,30,3,29,4,30,2,28,9,29,1,28,3,26,1,28,10,29,1,30,1,28,6,29,6,28,13,29,1,28,17,29,1,30,2,29,1,28,12,29,2,28,10,29,2,28,21,30,2,28,41,29,1,28,12,29,1,28,3,30,1,28,2,29,1,28,2,30,1,29,1,28,1,29,2,28,2,30,1,16,1,15,1,28,1,29,2,28,2,29,2,9,1,7,1,10,1,6,2,9,1,28,1,8,1,1,2,10,1,28,2,1,180,}, + {1,420,28,1,6,1,28,1,29,1,28,8,29,1,28,3,29,3,28,2,29,1,28,3,13,3,28,2,29,2,28,2,29,1,30,1,28,2,26,1,29,1,28,20,29,1,28,14,29,1,28,2,25,1,15,1,9,1,15,1,14,1,9,1,15,1,14,1,11,2,14,1,15,2,14,1,15,1,9,1,25,1,26,2,29,1,28,6,29,2,28,33,26,1,11,2,26,1,28,2,29,1,28,14,29,2,28,3,9,2,25,1,26,1,29,6,30,5,29,2,30,2,28,3,29,1,28,9,26,1,28,4,29,3,28,1,29,1,28,2,29,1,28,1,30,1,28,4,29,5,28,7,29,1,28,6,29,1,30,1,28,10,29,2,28,5,29,3,28,25,29,1,28,21,29,1,28,15,29,1,28,15,29,1,28,23,29,1,28,2,29,2,28,1,29,1,26,1,28,2,30,1,29,2,28,1,30,1,29,2,30,1,29,1,9,1,25,1,28,1,29,1,28,3,29,1,9,1,12,1,10,1,7,1,6,1,7,1,6,1,8,1,16,1,11,1,1,2,29,1,28,1,1,179,}, + {1,420,28,3,29,1,28,9,29,2,28,2,29,5,28,2,29,1,28,1,30,1,9,1,29,1,28,4,29,2,30,1,29,3,13,1,28,32,29,1,26,1,29,1,28,4,26,1,9,1,15,2,9,1,25,1,26,2,29,1,28,16,29,2,28,34,25,1,1,1,15,1,28,2,29,1,28,14,29,2,28,3,29,1,15,1,25,1,28,1,29,2,30,1,29,7,26,1,29,5,28,2,29,1,28,4,29,1,28,4,26,1,28,2,29,2,28,8,29,1,26,2,28,3,29,3,28,1,29,1,28,4,29,2,28,8,29,1,30,1,29,2,28,7,30,1,29,1,28,8,30,1,29,1,28,2,30,1,29,1,28,9,26,1,28,50,29,1,28,48,30,1,29,1,28,2,29,3,30,1,13,1,15,1,29,1,28,5,9,1,17,1,6,1,16,1,10,1,28,1,7,2,16,1,11,2,16,2,9,1,28,1,1,178,}, + {1,420,28,18,29,1,28,3,29,2,28,2,29,1,9,1,30,1,29,1,28,1,29,1,26,1,13,4,28,2,29,1,30,1,28,51,29,2,28,6,29,1,28,40,1,1,11,1,29,1,28,1,29,1,28,1,29,1,28,13,29,3,28,2,26,2,29,1,26,1,30,1,28,1,29,1,28,2,29,4,30,1,29,5,28,7,29,1,28,4,30,1,28,2,30,1,29,1,28,9,29,1,30,1,29,3,28,7,29,2,28,12,29,2,28,6,29,2,28,10,30,1,28,3,29,2,28,8,29,1,28,12,29,1,28,57,29,1,28,25,29,1,28,2,29,1,28,6,29,1,13,1,15,1,27,1,28,6,9,1,27,1,7,1,9,1,7,1,6,1,10,1,16,1,12,1,11,1,16,1,6,1,7,1,6,1,28,1,1,177,}, + {1,420,28,18,29,1,28,5,29,1,28,2,30,1,13,1,30,1,29,1,30,1,13,2,26,2,29,1,28,2,29,1,13,1,26,1,28,41,29,1,28,1,29,1,26,1,29,5,28,6,29,1,26,1,29,2,28,39,15,1,1,1,15,1,28,2,29,2,28,10,29,2,28,1,29,2,26,1,29,1,30,1,29,2,28,2,29,2,28,5,29,4,28,2,29,2,28,7,29,1,28,4,30,1,28,2,30,1,29,1,28,12,26,2,28,5,29,2,30,1,29,2,28,13,29,1,28,4,29,3,28,3,29,2,28,10,30,1,29,1,28,6,29,1,28,97,29,1,28,10,29,1,9,2,28,3,26,1,28,2,26,1,9,1,27,1,9,2,28,1,8,1,16,1,8,1,11,1,1,1,16,1,28,4,1,176,}, + {1,420,28,10,29,1,30,1,29,9,28,3,29,1,28,3,26,1,30,1,29,4,28,3,29,1,26,1,29,1,26,1,25,1,28,39,29,1,26,1,29,1,28,1,29,1,28,8,29,6,28,38,29,2,28,2,11,1,1,1,29,1,28,1,29,3,28,13,29,2,13,2,29,2,28,2,29,2,28,7,29,2,28,2,29,3,28,6,29,1,28,4,29,1,28,1,29,1,30,1,28,13,30,1,13,1,30,1,28,1,29,2,26,1,30,1,28,2,29,2,28,15,29,2,13,1,28,6,29,1,28,12,29,1,28,5,30,1,29,1,28,94,29,1,28,2,29,1,28,2,29,1,28,8,26,1,25,1,30,1,29,1,28,1,26,1,28,3,9,1,27,1,10,1,9,1,29,1,7,1,9,1,10,1,16,1,11,1,1,1,7,1,28,2,10,1,28,2,1,174,}, + {1,420,28,8,29,2,30,3,29,2,28,1,29,4,28,1,26,1,13,1,26,1,29,1,28,2,30,1,29,1,28,7,29,1,26,1,30,1,29,1,26,1,25,1,13,1,28,41,29,2,28,5,26,4,30,1,29,1,28,38,29,3,26,1,29,2,28,1,25,1,1,1,15,1,28,3,29,2,28,10,29,3,26,1,9,1,13,1,28,1,29,1,26,1,29,1,30,1,28,1,29,3,28,4,29,2,28,3,29,2,28,10,29,2,28,1,29,1,30,1,28,7,29,3,28,4,13,2,29,3,30,1,28,22,13,1,28,3,29,1,28,4,29,1,28,16,29,1,28,36,29,1,28,59,29,3,28,2,29,1,28,8,29,2,30,1,25,1,28,1,29,1,28,3,27,2,6,1,9,2,10,2,7,1,9,1,12,1,1,1,11,1,7,1,29,1,7,1,11,1,6,1,28,1,1,173,}, + {1,420,28,9,29,2,30,1,29,1,28,4,29,4,30,1,26,1,30,1,29,1,28,2,29,2,28,4,29,2,30,3,29,1,26,2,13,1,15,1,26,1,28,44,29,1,30,1,26,2,29,1,28,40,29,1,26,3,29,2,28,4,14,1,1,1,9,1,28,2,29,3,28,5,29,9,26,1,29,1,30,1,13,1,26,1,30,1,29,1,26,3,30,1,29,1,28,2,29,3,28,3,29,1,28,10,30,1,29,1,28,1,29,2,28,7,29,3,28,5,26,1,29,1,28,25,26,1,30,1,28,2,29,4,28,13,29,1,28,3,29,2,28,36,29,1,28,60,29,3,28,1,29,1,30,1,29,1,28,3,29,1,30,1,28,1,30,1,28,1,29,1,9,1,29,3,28,3,9,1,27,1,7,1,9,1,10,1,9,1,29,1,8,1,12,1,1,2,9,1,28,2,9,1,11,1,6,1,28,1,1,172,}, + {1,421,28,10,29,1,28,4,29,6,28,2,29,2,28,2,26,1,29,1,28,1,29,3,30,2,29,1,30,1,26,1,13,2,25,1,15,2,28,42,29,5,28,39,29,2,26,3,29,1,28,7,26,1,1,2,29,1,28,2,29,1,26,1,28,14,29,1,26,1,30,3,28,1,30,3,26,1,13,1,26,1,29,3,26,1,30,1,29,1,28,2,29,2,28,9,26,1,29,1,28,1,30,1,29,1,28,4,29,6,28,5,29,2,28,4,29,1,28,7,29,1,28,12,30,1,13,1,29,1,28,3,29,3,28,1,29,2,28,9,29,1,28,4,29,1,28,35,29,2,28,62,29,1,28,2,30,1,29,1,28,3,29,3,30,1,13,1,6,1,9,1,26,2,29,1,28,3,27,1,9,1,7,2,10,1,16,2,29,1,6,1,11,1,1,1,11,1,7,1,28,2,9,1,16,1,28,1,1,172,}, + {1,421,28,14,29,1,30,1,29,2,28,2,29,2,28,4,30,1,13,1,30,1,28,1,29,1,30,4,26,2,13,1,30,1,9,1,14,1,26,1,30,1,29,1,28,30,29,1,28,4,29,5,28,43,29,1,26,3,29,2,28,10,15,1,1,1,15,1,28,2,30,1,13,1,29,1,28,11,29,2,26,2,28,1,29,1,26,1,28,1,29,1,28,1,29,1,30,1,13,2,26,1,29,2,13,2,30,1,29,1,28,1,29,2,28,9,26,1,28,2,30,2,28,2,29,1,28,1,29,6,28,2,29,1,28,2,29,1,30,1,28,12,29,1,28,6,29,1,28,6,9,1,30,1,28,4,29,1,28,4,29,2,28,10,29,1,28,1,29,1,28,35,26,1,29,1,28,67,29,2,28,5,9,1,13,2,30,1,26,1,28,5,9,2,10,1,9,2,16,1,28,1,6,1,16,1,11,1,1,1,11,1,6,1,28,2,6,1,10,1,28,1,1,171,}, + {1,421,28,14,29,6,28,2,29,1,28,2,29,1,26,1,13,1,29,6,26,1,29,1,13,1,15,1,14,1,9,1,29,1,28,2,26,2,28,79,29,1,26,4,29,1,28,10,29,1,28,3,11,2,28,3,9,1,26,1,28,6,29,3,28,1,29,1,30,1,26,2,30,1,29,2,30,1,29,4,26,5,13,5,26,1,30,1,29,1,28,6,29,2,28,4,29,2,28,2,29,1,28,1,29,6,28,2,29,1,28,2,29,2,28,11,30,1,28,2,29,1,28,11,26,2,29,1,28,2,29,2,28,14,29,2,28,39,29,3,28,63,29,1,28,8,30,1,13,1,30,1,29,1,30,2,29,1,28,3,29,1,9,1,7,1,10,1,8,2,9,1,28,2,10,1,1,1,11,2,29,1,28,1,29,1,16,1,9,1,28,1,1,170,}, + {1,421,28,15,29,5,28,5,29,1,30,1,13,1,28,3,30,1,26,1,30,1,26,1,30,1,15,1,14,1,25,1,28,2,29,1,26,2,9,1,26,1,28,76,29,2,26,3,29,1,28,11,29,2,28,3,25,1,1,1,26,1,28,2,9,2,28,3,29,1,28,3,29,1,28,3,29,1,26,2,29,6,30,3,26,1,30,3,26,2,13,4,26,1,30,1,29,2,28,5,29,1,28,4,29,2,28,4,29,9,28,2,29,2,28,11,30,1,29,1,28,14,13,2,28,4,29,1,28,13,29,1,28,42,30,1,28,4,29,1,28,15,30,1,29,1,28,20,29,1,28,21,29,3,28,5,29,1,26,1,30,1,29,1,30,1,26,2,28,4,10,1,27,1,7,2,6,1,16,1,7,1,28,2,16,1,11,1,1,1,16,1,28,2,6,1,12,1,9,1,28,1,1,169,}, + {1,421,28,16,29,4,28,1,29,2,28,2,29,1,26,2,29,1,30,1,29,1,30,3,26,1,15,1,14,1,25,1,28,3,13,1,25,2,9,2,30,1,28,73,29,3,26,1,29,1,28,20,1,1,15,1,28,2,13,1,15,1,26,1,28,6,29,1,28,3,29,1,26,2,29,6,26,1,30,1,29,7,30,1,26,1,13,3,26,2,30,2,29,1,28,14,29,8,28,3,29,1,30,1,28,11,26,2,28,8,29,1,28,5,13,1,26,1,28,18,29,1,28,42,30,1,28,20,29,1,28,7,29,1,28,12,29,2,28,14,29,1,28,6,29,2,28,7,30,2,29,2,26,1,25,1,29,1,28,3,27,1,9,1,7,1,6,1,7,1,16,1,9,1,28,2,9,1,1,2,11,1,7,1,28,2,9,1,11,1,9,1,28,2,1,167,}, + {1,421,28,17,29,2,28,2,29,2,28,2,29,1,26,2,29,2,28,1,29,1,13,1,9,1,14,1,9,1,26,1,28,3,26,1,25,1,9,2,26,1,9,2,28,71,29,1,26,2,29,1,28,13,29,2,28,5,29,1,28,2,15,1,11,1,28,2,29,1,9,1,25,1,28,6,29,2,28,2,29,1,26,1,29,7,30,2,29,12,30,3,26,3,30,1,29,1,28,11,29,8,28,4,30,1,28,11,30,1,26,1,30,1,28,12,29,1,26,1,30,1,29,1,28,89,29,1,28,5,29,1,28,38,29,1,30,1,29,3,26,2,28,3,26,1,12,1,27,1,6,1,10,1,9,1,16,1,8,1,6,1,8,1,17,1,11,2,9,1,7,1,29,1,6,1,16,1,12,1,16,1,7,1,28,1,1,166,}, + {1,421,28,26,29,1,26,1,28,2,29,1,13,1,9,1,13,1,26,1,28,3,26,1,9,1,25,2,9,2,26,1,9,1,15,1,28,69,29,1,26,2,29,1,28,7,29,1,28,12,29,1,28,4,29,1,1,1,26,1,28,2,15,1,9,1,29,1,28,5,29,2,28,2,29,1,26,1,29,8,30,2,29,4,30,1,26,1,29,1,28,7,29,1,30,4,29,4,28,9,29,5,28,5,29,1,28,12,29,1,30,1,29,6,28,7,30,1,13,2,30,1,28,2,29,1,28,85,30,1,28,31,29,1,28,12,29,1,30,2,29,2,26,2,28,4,27,1,29,1,26,1,7,1,6,1,9,1,17,1,7,1,28,1,7,1,12,1,1,1,12,1,10,1,7,1,6,1,10,1,9,1,29,1,8,1,11,1,9,1,28,1,1,164,}, + {1,421,28,8,29,7,28,4,29,5,28,1,29,4,26,1,13,2,26,1,28,3,30,1,13,1,25,1,9,6,25,1,15,1,14,1,29,1,28,65,29,3,28,21,29,3,28,3,29,1,28,1,14,1,11,1,28,2,15,1,9,1,26,2,28,1,26,1,29,7,26,1,29,3,30,1,29,4,30,2,29,1,28,2,29,1,30,1,29,2,28,11,29,1,30,1,26,1,28,1,29,1,28,4,29,1,28,5,29,4,28,5,30,1,29,1,28,12,29,2,28,2,29,1,30,2,29,1,28,3,29,2,28,1,29,1,30,1,13,2,29,1,28,14,29,1,28,63,29,1,28,7,29,1,30,1,28,44,29,1,30,2,29,2,30,1,26,3,28,4,27,1,9,1,29,1,7,1,16,1,9,1,28,1,6,1,9,1,11,3,10,1,29,2,6,1,29,1,7,1,16,1,1,2,6,1,28,1,1,162,}, + {1,422,28,7,29,21,30,1,29,1,28,1,29,2,13,1,25,2,13,3,9,4,15,1,9,2,14,1,9,1,28,80,29,2,28,6,29,2,28,1,29,3,30,1,29,1,28,1,26,1,1,1,26,1,28,1,26,1,25,1,26,2,28,1,26,1,29,1,28,4,29,1,26,1,30,1,29,3,30,1,29,2,30,1,29,1,30,1,29,1,28,2,29,3,28,3,29,2,28,9,30,2,29,2,28,4,29,2,28,13,26,1,29,1,28,10,29,1,28,6,29,1,30,2,29,2,30,3,29,1,28,3,30,1,26,1,28,14,29,1,28,63,30,1,29,1,28,6,30,1,29,1,28,32,29,2,28,4,29,2,28,4,29,1,30,1,29,1,28,1,29,1,30,1,26,1,29,1,27,1,28,4,26,1,12,1,7,1,29,1,8,1,9,1,8,1,7,2,8,1,11,1,1,1,16,1,29,1,28,1,29,1,16,1,8,2,16,1,11,1,1,1,11,1,28,1,1,161,}, + {1,422,28,15,29,3,28,4,29,1,30,2,29,3,30,3,26,2,13,1,30,1,26,1,13,1,9,6,15,1,14,1,25,1,28,1,30,1,9,1,13,1,28,77,29,2,28,4,29,8,28,1,29,1,28,1,26,1,28,1,9,1,1,1,25,1,28,1,26,1,28,2,26,1,29,1,28,5,29,1,26,1,30,1,29,3,30,1,29,2,30,3,29,1,28,1,29,1,30,3,28,3,29,1,28,4,29,1,28,7,13,1,26,1,30,1,29,1,28,4,29,4,28,9,26,1,29,1,28,10,30,1,28,8,29,6,28,1,29,1,28,3,29,2,28,13,29,1,28,71,26,1,29,1,28,4,29,2,28,20,29,1,28,7,29,1,28,5,29,1,30,1,28,2,29,1,30,1,28,3,29,2,28,1,26,2,28,2,29,1,28,1,9,2,7,2,8,1,9,2,7,1,8,1,9,1,16,1,17,1,16,1,29,2,9,1,8,1,16,1,9,1,6,1,10,1,11,2,6,1,28,1,1,159,}, + {1,422,28,17,29,2,28,6,29,1,28,1,29,1,26,2,30,1,26,1,13,3,25,3,13,1,9,2,15,1,14,1,9,1,29,1,28,1,30,1,9,1,15,2,13,1,28,78,29,1,28,1,29,13,28,3,14,1,1,1,28,3,13,1,26,1,29,1,28,5,29,2,26,1,29,8,30,1,29,1,28,1,29,1,30,2,29,2,28,15,29,1,13,3,29,1,28,1,29,1,28,1,26,1,13,1,30,1,28,1,30,1,29,1,28,6,30,2,28,11,29,1,30,1,28,7,30,2,28,5,29,1,28,5,29,1,28,13,29,1,30,1,28,68,30,1,29,1,28,22,29,1,28,12,29,1,28,9,29,4,28,4,29,1,25,1,26,2,25,1,26,2,9,1,10,1,7,1,8,2,7,1,8,2,9,4,6,2,8,1,28,1,8,1,12,1,8,1,29,1,8,1,12,1,17,1,9,1,28,1,1,158,}, + {1,422,28,8,29,1,28,1,29,1,28,1,29,2,28,3,29,1,30,1,29,1,28,5,29,2,30,1,26,4,13,3,25,4,9,1,15,2,29,1,28,1,29,1,9,1,15,1,9,3,15,1,26,1,28,77,29,1,28,1,29,14,28,2,26,1,11,1,26,1,28,1,29,1,26,1,13,1,29,2,28,3,29,1,26,2,29,9,30,1,29,1,28,1,29,1,30,2,29,2,28,19,29,1,30,2,28,2,26,2,29,1,30,1,26,1,30,1,26,1,28,1,29,1,30,1,29,1,28,13,29,1,26,1,29,1,28,6,26,1,30,1,28,3,29,1,28,7,29,1,28,82,29,2,28,23,29,1,28,8,29,1,28,13,29,2,28,3,29,2,28,2,26,3,25,1,26,2,27,2,6,3,7,2,16,1,9,1,6,2,10,1,9,1,6,1,28,2,6,1,9,2,6,1,7,1,9,3,10,1,28,2,1,156,}, + {1,422,28,12,29,2,28,2,29,1,30,1,26,1,30,1,29,1,28,3,29,3,30,4,26,3,13,2,25,1,9,3,25,1,30,1,28,1,26,1,25,1,9,1,15,2,9,2,15,1,9,1,13,1,28,76,29,1,28,1,29,14,28,3,15,1,11,1,28,3,9,1,26,3,29,4,28,1,29,8,30,2,29,3,30,2,29,1,28,16,29,1,28,8,30,2,28,2,30,2,29,1,28,1,29,2,28,15,30,1,29,1,28,6,29,2,28,3,29,2,28,2,29,1,28,4,29,7,30,1,28,68,29,1,28,5,26,1,28,47,29,1,28,4,9,1,25,1,28,4,25,2,26,1,29,1,26,1,27,1,26,1,29,2,6,2,9,1,16,1,8,1,29,1,6,1,10,1,7,1,29,2,6,1,10,2,7,2,10,2,7,2,16,1,6,1,28,1,1,155,}, + {1,423,28,11,29,1,28,3,29,2,26,1,30,1,29,1,28,3,29,2,26,4,13,5,25,1,9,3,13,1,26,1,29,1,9,1,15,2,13,2,15,2,9,2,15,2,13,1,28,76,29,18,26,1,14,1,15,1,28,2,26,1,25,2,26,1,28,1,29,3,26,1,29,2,30,2,29,4,30,2,29,3,30,2,29,1,28,16,29,1,28,6,26,1,29,2,28,3,30,1,29,1,28,1,29,1,28,17,29,1,28,3,29,1,28,6,29,2,28,10,29,1,26,2,29,3,28,19,29,2,28,48,29,1,28,4,13,1,26,1,28,49,29,1,28,2,11,1,9,1,28,3,29,1,9,1,27,1,26,4,27,1,29,2,6,3,9,2,30,1,29,1,7,3,29,1,7,1,8,1,7,1,6,1,10,1,9,1,7,1,10,2,6,1,9,1,7,1,28,1,1,154,}, + {1,424,28,9,29,2,28,4,29,1,30,2,29,1,28,3,29,2,30,4,26,1,13,2,26,1,13,1,25,1,9,1,26,1,29,2,13,1,9,8,15,2,9,2,15,1,25,1,28,59,29,1,28,6,29,1,28,8,29,14,26,4,29,1,25,1,11,1,25,1,28,2,29,1,26,4,30,1,28,1,26,1,29,1,30,3,29,4,30,2,29,3,30,1,29,2,28,16,30,1,28,7,29,1,28,3,29,1,30,1,26,1,30,1,28,7,29,1,28,8,29,1,28,12,29,2,28,3,29,1,28,6,30,1,26,1,29,1,28,22,30,2,28,46,29,1,28,6,13,1,28,43,25,1,9,1,28,5,29,1,28,1,29,1,11,1,25,1,28,3,26,1,9,1,27,1,26,4,27,1,30,2,6,1,29,1,6,1,9,1,8,1,6,1,7,1,8,1,7,1,6,1,29,1,30,1,6,3,8,1,9,1,7,1,9,1,6,1,7,1,9,1,10,1,6,1,28,2,1,152,}, + {1,424,28,8,29,4,28,1,29,2,28,1,30,2,29,1,28,3,29,4,30,1,26,1,13,1,25,1,13,5,26,2,25,1,9,1,15,1,9,8,15,1,9,2,15,1,9,1,30,1,28,65,29,1,28,8,29,12,26,5,29,2,28,1,25,1,11,1,9,1,29,1,26,1,25,1,26,2,13,1,30,1,28,1,29,1,30,1,29,7,30,1,29,7,28,16,30,1,28,14,26,1,28,16,30,1,28,9,29,1,28,14,30,2,28,23,26,2,28,52,13,1,29,1,28,4,29,1,28,38,11,1,14,1,28,8,14,1,30,1,28,1,29,1,26,1,25,1,9,1,26,2,27,1,26,4,6,2,30,1,6,1,7,3,9,2,13,1,6,1,30,1,28,1,29,1,10,2,7,3,28,1,9,2,6,1,8,1,9,1,7,2,28,2,1,150,}, + {1,424,28,8,29,3,28,1,29,1,30,1,29,3,30,2,29,1,28,2,29,2,26,1,13,1,25,1,9,4,13,1,26,3,13,1,9,1,15,1,9,1,13,1,9,3,25,1,9,1,15,2,9,4,15,1,9,1,26,1,28,74,29,2,26,2,29,6,26,6,29,1,28,1,29,1,28,2,14,1,1,2,11,2,26,1,28,3,29,1,26,1,30,1,29,1,28,2,29,1,30,2,29,1,30,1,29,7,28,21,29,1,28,1,29,1,28,8,30,1,29,1,28,13,29,1,28,10,26,1,28,5,29,1,28,7,26,1,29,1,28,24,29,1,30,1,28,51,30,2,28,5,29,1,28,37,25,1,1,1,15,1,28,8,26,1,29,1,28,2,29,1,26,4,27,1,26,2,29,1,26,1,30,2,6,1,30,1,8,3,9,3,8,1,6,1,28,1,29,1,8,1,10,1,7,1,6,1,7,1,16,1,8,1,7,1,6,2,9,1,12,1,9,1,12,1,9,1,28,2,1,148,}, + {1,425,28,6,29,1,28,4,29,1,30,2,29,3,30,1,29,1,28,1,29,1,30,2,13,1,9,2,25,1,13,1,30,1,29,1,28,2,30,1,13,1,9,6,25,2,9,4,15,2,9,3,15,1,9,1,30,1,28,73,29,2,26,2,29,4,26,6,29,1,28,4,29,3,11,1,1,3,26,1,28,2,30,1,29,1,28,1,29,2,28,2,29,1,30,2,29,1,30,1,29,7,28,9,29,1,28,6,29,1,28,15,26,1,30,1,29,2,28,11,13,1,28,3,29,2,28,5,30,1,29,1,28,1,30,1,29,1,28,9,13,1,28,77,29,1,26,1,28,44,11,2,29,1,28,9,30,1,29,1,28,2,29,1,26,3,25,1,27,1,26,1,29,1,26,1,29,2,7,1,8,1,9,2,8,1,9,1,15,1,9,1,13,1,7,1,29,1,28,1,29,1,6,1,7,2,29,1,6,1,9,1,7,1,28,1,6,1,16,1,17,1,16,1,7,1,9,1,12,2,29,1,28,1,1,146,}, + {1,425,28,11,29,1,28,4,29,1,26,1,30,1,29,4,28,8,30,1,26,1,25,1,9,15,15,1,9,2,14,1,15,1,29,1,28,36,29,1,28,35,29,2,26,1,29,3,26,5,29,1,28,4,29,1,26,1,29,2,28,1,29,1,15,1,1,3,11,1,28,2,30,1,29,2,28,2,29,1,26,1,30,1,29,3,30,1,29,2,30,1,29,3,28,1,29,1,28,23,29,1,28,8,29,3,28,9,29,1,13,1,30,1,28,14,29,2,28,1,29,2,28,4,30,1,13,1,28,2,29,1,28,18,29,1,28,55,29,1,28,7,26,1,28,34,29,1,28,2,15,1,9,1,28,10,30,1,13,1,28,3,29,1,26,3,27,1,28,2,26,1,29,1,28,1,29,1,8,3,7,1,6,1,9,2,30,1,29,1,30,1,29,1,28,1,29,1,10,1,7,1,28,2,30,1,7,3,10,1,9,2,8,1,6,1,9,1,11,2,9,1,28,1,1,145,}, + {1,426,28,10,29,2,28,3,29,1,30,2,29,4,28,4,29,2,26,2,13,3,9,11,15,3,9,1,15,3,9,1,10,1,26,1,28,68,29,4,28,1,29,3,26,4,29,3,28,3,29,1,26,2,29,1,26,2,28,2,29,1,15,1,1,2,11,1,26,1,28,2,29,1,30,2,29,2,30,1,29,3,30,2,29,2,26,1,29,1,28,1,29,2,28,15,29,1,28,8,29,1,28,6,29,1,28,3,29,1,30,1,29,1,28,7,30,1,29,1,28,6,29,1,28,3,29,2,28,7,29,1,28,1,29,1,28,2,29,1,13,1,28,76,30,1,28,2,29,1,28,5,30,2,28,36,26,1,29,1,28,3,29,1,30,1,29,1,28,5,30,1,28,4,26,2,25,1,27,1,28,2,26,1,30,1,29,1,30,1,6,1,7,1,8,2,7,1,8,1,7,1,28,1,30,1,13,1,30,1,28,2,26,1,6,1,28,3,6,1,8,2,7,3,9,1,8,1,7,2,8,1,9,1,10,1,7,1,28,2,1,142,}, + {1,426,28,10,29,2,28,1,29,1,28,1,29,2,30,1,29,1,28,2,29,4,30,1,26,1,13,5,25,1,9,10,15,6,14,2,9,1,25,1,9,1,29,1,28,71,29,3,26,4,29,1,28,4,29,2,26,3,29,2,26,1,29,1,28,2,29,1,15,1,1,2,14,1,28,2,26,1,30,1,26,1,29,1,30,2,28,2,29,1,30,2,28,1,29,1,30,1,29,1,28,1,29,2,28,14,29,3,28,4,29,3,28,2,29,1,28,4,29,1,28,5,30,2,26,1,30,1,29,2,28,1,29,1,26,2,28,6,29,1,28,2,29,1,30,1,29,1,28,12,26,1,30,1,28,76,13,1,28,2,29,1,28,5,29,1,30,1,28,26,29,1,28,15,30,2,29,1,28,4,29,1,28,4,29,1,26,1,25,1,27,1,28,2,26,2,30,1,6,3,8,1,9,1,8,2,26,1,29,1,13,1,10,1,13,1,29,1,28,1,29,1,30,1,29,1,28,2,6,1,9,2,6,2,7,1,6,1,10,1,7,2,9,2,16,1,17,2,28,1,1,142,}, + {1,427,28,9,29,2,28,2,29,3,30,1,29,1,28,2,29,2,30,2,26,5,13,3,9,11,15,2,9,1,14,1,15,1,9,1,15,2,9,1,15,2,28,67,29,8,26,1,29,1,28,5,29,1,26,7,29,2,26,2,28,1,29,1,15,1,1,1,11,1,28,1,29,1,13,1,28,1,29,1,28,1,29,2,28,2,29,3,28,2,29,4,28,3,29,1,28,10,29,2,30,2,29,1,28,2,29,1,28,3,29,1,28,1,29,1,28,4,29,1,28,13,30,1,26,1,29,1,28,8,29,3,28,12,26,1,28,2,29,1,26,1,28,72,30,1,13,1,28,53,30,2,28,10,26,1,25,1,26,4,29,2,13,2,6,2,13,1,8,1,10,2,25,1,13,1,8,1,25,1,29,1,28,2,29,1,30,1,13,2,9,1,16,1,9,1,6,2,8,1,7,1,8,1,7,1,6,1,7,1,16,2,12,1,17,1,11,1,6,1,28,1,1,140,}, + {1,427,28,9,29,2,28,2,29,3,30,2,29,4,30,1,26,1,13,1,26,4,13,3,9,2,15,1,9,1,25,1,9,9,14,1,15,1,25,1,9,1,15,3,11,1,26,1,28,64,29,6,28,1,29,3,28,4,29,2,26,7,25,2,29,1,28,1,29,2,28,2,29,1,14,1,9,1,28,1,26,2,28,10,29,1,30,1,29,1,28,1,29,2,28,10,29,3,28,1,29,2,30,1,29,1,28,7,29,2,28,5,29,1,28,13,30,2,28,10,29,2,28,12,30,1,28,2,29,1,26,1,30,1,29,2,28,69,13,1,30,1,28,8,29,1,28,44,29,1,30,1,29,1,28,9,29,1,9,1,26,4,29,2,9,1,13,1,6,1,29,1,30,1,7,1,13,1,25,1,9,1,26,1,13,2,30,1,28,3,29,1,13,1,10,1,9,2,8,1,7,2,9,1,7,2,10,1,7,1,6,1,9,1,11,1,9,1,7,1,10,1,12,1,7,1,28,1,1,139,}, + {1,428,28,5,29,1,28,2,29,2,28,2,29,4,30,1,29,4,30,1,26,1,13,1,26,5,25,1,9,2,13,1,25,1,9,9,15,3,9,6,15,1,14,1,25,1,28,57,29,9,28,10,29,1,26,7,13,1,26,2,29,2,28,6,25,1,26,1,28,1,29,3,28,9,30,1,13,1,26,1,28,2,29,2,28,5,29,2,28,1,29,2,30,1,29,1,28,2,29,1,30,1,28,9,29,1,28,4,29,2,28,2,29,2,28,9,29,1,26,1,29,1,28,9,29,3,28,9,29,2,26,1,29,1,28,4,29,1,30,1,26,1,28,67,29,1,13,1,29,1,28,8,29,1,28,41,30,1,28,3,29,1,28,11,15,1,26,1,28,2,29,3,25,1,13,2,30,2,13,2,30,1,26,1,13,4,29,1,28,4,26,1,9,1,8,1,6,1,7,1,8,1,9,1,29,1,6,1,9,2,6,1,8,1,12,1,10,1,8,1,6,1,28,1,6,1,7,1,28,1,1,138,}, + {1,428,28,9,29,1,28,3,29,4,30,2,29,2,30,2,26,1,30,3,26,2,9,1,15,1,13,1,29,1,26,1,9,1,15,1,9,8,15,1,9,8,15,2,25,1,28,54,29,5,26,1,29,2,28,12,29,1,26,10,28,7,29,1,28,1,29,2,26,1,29,1,28,1,26,1,29,3,28,7,30,1,26,1,29,1,28,2,29,1,28,5,29,7,28,3,29,1,28,4,29,1,28,4,29,1,28,4,29,2,28,14,29,2,28,9,29,1,26,2,30,1,29,1,28,9,29,1,13,1,30,1,28,8,29,2,28,63,29,1,26,1,29,1,28,8,29,1,28,57,25,1,28,4,29,2,26,1,30,1,13,1,26,2,13,2,29,2,13,2,25,1,9,1,13,1,28,4,29,1,30,1,29,2,6,1,7,1,8,1,7,1,6,2,10,1,29,1,28,1,7,1,16,1,9,2,10,1,29,1,28,1,7,1,29,1,28,2,1,135,}, + {1,429,28,8,29,1,28,1,29,1,28,1,29,2,28,1,29,1,30,2,29,4,30,2,26,3,15,2,13,1,29,1,30,1,9,2,13,1,9,9,25,1,9,1,15,1,9,2,15,1,9,1,15,1,25,1,15,1,11,1,25,1,28,45,29,6,26,1,29,4,28,10,29,6,28,1,29,1,26,5,13,1,26,1,29,1,28,3,29,1,28,3,29,3,26,1,29,2,26,1,29,3,28,1,29,1,30,2,28,4,29,1,28,2,29,1,26,1,29,2,28,3,29,1,28,2,29,4,28,6,29,2,28,8,29,1,28,4,30,1,26,1,28,14,29,1,28,11,30,1,26,2,30,1,29,3,28,1,29,3,28,5,26,1,30,1,28,7,29,1,30,3,29,1,28,12,29,1,28,45,29,3,30,1,28,7,29,1,30,1,28,49,29,1,28,1,29,3,28,3,29,1,28,1,26,1,28,4,29,1,28,1,30,3,25,1,13,1,29,2,30,1,26,1,25,1,9,1,13,1,28,3,29,2,28,4,30,1,6,1,7,1,29,2,7,2,28,2,9,1,16,3,9,2,7,1,10,1,9,2,28,2,1,133,}, + {1,429,28,10,29,9,28,1,29,1,30,1,26,1,30,1,29,1,26,1,9,1,14,1,26,1,28,1,30,1,13,2,9,19,15,3,9,1,30,1,28,37,29,3,28,2,29,2,28,19,29,3,28,3,29,5,26,2,13,1,26,1,29,1,28,5,29,1,28,2,29,3,26,2,29,2,26,1,29,2,26,1,28,1,29,2,26,3,30,1,29,1,26,1,28,6,26,1,28,1,29,4,28,12,29,2,28,2,30,2,28,7,30,2,28,8,29,1,28,5,29,2,28,4,29,2,30,1,29,1,28,5,29,1,13,1,30,1,26,1,30,1,29,2,28,10,29,1,28,7,29,1,30,1,29,1,28,10,29,2,28,35,30,1,29,1,28,8,29,3,28,8,29,1,28,51,29,1,30,1,26,1,29,1,28,1,29,3,25,2,26,1,28,2,29,1,28,2,30,1,26,2,13,1,9,1,13,1,29,2,30,1,29,1,13,2,28,5,29,1,28,3,29,1,30,1,7,1,6,1,30,1,29,1,30,1,29,1,28,2,9,1,16,2,9,3,10,1,9,1,7,1,11,1,17,1,28,1,1,132,}, + {1,429,28,10,29,7,30,2,29,2,30,3,26,1,25,1,15,1,13,1,28,2,30,1,13,1,25,1,9,2,15,5,9,9,15,1,9,1,15,2,9,1,25,2,9,1,13,1,28,33,29,5,28,17,29,7,28,3,29,8,26,1,29,1,28,6,29,1,28,2,29,1,26,4,29,1,28,1,29,1,26,2,30,1,26,1,30,1,29,4,30,1,26,3,29,1,28,1,26,2,28,20,29,1,28,1,29,2,28,2,13,1,26,1,13,1,26,1,29,1,28,1,29,1,30,2,28,9,29,1,28,5,29,2,28,2,29,6,28,6,30,2,28,2,29,2,28,7,29,1,28,2,29,1,28,20,29,2,28,8,29,1,28,31,29,1,28,4,29,3,28,23,29,1,28,37,29,1,30,1,28,2,29,2,26,1,9,2,26,1,28,5,29,1,30,3,26,1,13,2,29,1,30,2,13,2,29,1,28,4,29,2,28,1,29,3,6,1,30,1,29,3,28,3,6,1,9,1,10,1,6,1,10,1,9,1,6,1,7,1,16,1,8,1,16,1,11,1,16,1,28,1,1,130,}, + {1,430,28,7,29,1,28,1,29,5,30,6,26,1,30,1,26,1,13,1,9,2,28,2,29,1,13,1,25,1,9,3,15,9,9,5,15,2,9,3,26,1,25,1,15,2,9,1,28,48,29,8,28,1,29,13,28,11,29,1,26,2,13,1,26,1,29,1,28,3,29,1,26,1,29,2,26,1,29,1,30,1,29,4,30,1,26,2,29,1,28,1,9,2,13,2,29,1,28,1,29,2,28,9,29,6,28,1,29,1,30,1,28,7,29,2,30,1,29,1,28,8,29,1,28,6,29,4,30,2,29,1,28,10,30,1,28,11,29,1,28,2,29,1,28,11,29,1,28,8,29,2,28,8,29,1,28,9,29,1,28,18,29,1,28,1,29,1,26,1,29,1,28,3,29,2,28,63,29,1,28,2,29,2,26,1,9,2,26,1,29,2,28,4,29,2,28,2,30,1,13,1,30,1,13,1,30,1,26,2,29,2,28,3,29,5,28,1,30,1,29,2,28,5,29,1,16,1,7,1,28,1,7,1,9,1,6,2,9,2,16,1,11,2,16,1,28,2,1,128,}, + {1,430,28,12,29,7,30,4,13,2,26,1,28,1,29,1,13,1,25,1,13,1,25,1,9,7,15,7,9,1,15,3,25,1,13,2,25,2,9,2,15,1,9,1,28,21,29,2,28,12,29,9,28,1,29,8,28,2,29,11,28,8,29,1,28,3,29,2,26,1,13,2,26,1,28,5,29,1,26,1,30,3,29,5,30,4,29,1,28,1,30,1,26,1,30,1,26,1,13,2,26,1,30,1,29,1,28,7,29,6,28,1,29,1,28,2,13,1,30,1,28,4,29,4,30,2,26,2,30,1,29,1,28,10,30,1,29,5,28,5,29,2,28,5,26,1,28,5,29,2,28,5,29,2,28,10,29,1,30,1,28,50,29,2,28,3,30,1,29,1,28,68,29,1,25,2,28,8,29,1,28,3,30,1,13,2,26,1,29,1,28,1,29,2,28,5,29,1,30,2,28,1,30,1,29,2,28,5,6,1,16,1,9,1,29,1,7,1,8,1,7,2,10,1,9,3,16,1,11,2,16,1,28,2,1,126,}, + {1,431,28,18,29,2,28,1,29,3,28,1,30,1,13,1,25,1,13,1,26,1,13,1,9,9,15,2,9,1,15,2,9,1,15,4,25,1,26,1,25,1,9,4,14,1,9,1,28,29,29,12,28,4,29,9,26,2,29,5,28,14,29,1,26,2,13,1,26,2,28,4,29,2,26,1,29,1,28,1,26,2,29,1,30,1,29,3,30,3,29,2,28,2,29,4,28,1,29,1,30,1,29,1,28,11,29,3,28,1,30,1,28,2,29,1,13,1,26,1,13,1,30,1,26,1,30,1,28,4,29,3,30,1,26,2,30,1,28,8,26,1,29,1,28,6,29,1,30,1,29,2,28,6,29,2,30,1,26,2,30,2,29,1,28,5,30,1,29,2,28,9,29,1,30,1,28,48,30,2,29,1,28,4,26,1,30,1,28,59,25,1,29,1,28,8,26,2,28,4,30,1,28,8,30,1,26,2,28,2,30,2,29,1,28,5,26,1,30,1,28,1,29,3,28,3,29,2,7,1,10,1,16,1,9,1,7,1,6,1,7,1,6,1,7,1,8,1,16,3,12,1,11,2,1,1,16,1,28,3,1,123,}, + {1,432,28,7,29,4,28,1,29,6,28,3,29,3,26,2,13,1,26,1,30,1,26,1,9,12,15,2,9,2,15,5,9,1,25,1,9,2,25,1,15,1,14,1,9,1,28,15,29,3,28,10,29,1,28,8,29,2,28,3,29,2,26,1,29,10,28,18,26,4,29,1,28,5,29,3,26,1,28,2,30,1,29,1,28,1,30,3,29,1,30,4,29,3,26,2,30,1,29,1,28,17,29,4,28,3,13,1,30,1,28,13,29,1,30,1,29,3,28,3,29,1,13,1,29,1,28,3,29,2,28,2,29,2,28,9,26,2,28,3,29,1,28,5,29,1,28,10,29,4,28,9,29,1,28,36,30,1,13,2,29,1,28,3,29,1,26,1,30,1,28,58,29,1,14,1,13,1,28,8,29,1,26,2,29,1,28,1,29,1,30,1,26,1,28,9,30,1,28,1,29,1,13,1,26,1,29,1,28,5,30,2,29,2,30,1,29,1,28,2,29,2,30,1,6,1,30,1,9,1,11,1,9,1,6,1,7,1,6,1,29,1,16,1,12,1,10,1,9,1,17,1,11,1,12,1,17,1,11,2,16,1,6,1,28,2,1,121,}, + {1,432,28,7,29,7,30,2,26,1,30,1,29,4,30,1,26,6,13,1,9,12,15,2,9,3,15,2,14,2,15,1,9,1,13,1,9,4,15,1,25,1,28,17,29,1,28,4,29,16,28,3,29,5,28,24,29,1,26,3,29,1,28,5,29,1,26,1,29,3,26,1,28,5,29,1,30,2,29,2,30,4,28,1,29,4,28,9,29,4,28,5,29,1,28,2,29,2,28,2,13,1,30,1,28,4,29,2,28,16,26,1,29,1,28,3,29,2,28,5,29,2,28,6,30,1,28,23,29,2,28,9,29,1,28,16,29,1,28,18,29,1,30,2,29,1,28,5,30,1,29,1,28,58,13,1,11,1,13,1,28,9,29,1,11,1,15,1,28,3,26,1,29,1,28,2,29,3,28,5,29,1,13,1,26,1,29,1,28,4,29,5,30,2,29,1,28,1,29,4,28,1,7,1,16,2,8,1,6,3,7,1,6,1,29,1,6,1,9,1,12,1,11,1,12,1,7,1,28,1,29,1,16,1,11,2,7,1,28,2,1,118,}, + {1,432,28,7,29,9,26,1,30,1,29,1,30,2,29,2,30,1,13,1,26,1,13,3,25,1,9,12,15,2,9,1,25,1,9,1,15,2,9,1,15,1,14,2,9,1,25,1,9,2,25,1,13,1,9,2,28,19,29,17,28,31,29,1,26,3,29,1,28,5,29,2,26,6,28,4,29,1,30,1,29,3,30,3,29,2,28,1,30,1,29,3,28,10,29,3,28,4,29,3,28,6,29,1,28,7,29,1,28,14,29,1,28,7,29,3,28,5,29,1,28,3,30,1,29,1,28,10,30,1,28,22,26,1,28,34,30,1,26,2,29,1,28,6,29,1,28,59,9,1,11,1,30,1,28,7,29,1,28,2,11,1,14,1,28,6,29,1,26,1,13,1,26,1,29,2,28,3,29,1,13,1,30,1,29,1,28,3,30,1,29,1,28,4,29,1,30,1,29,1,28,7,7,1,9,2,6,1,7,1,28,1,6,2,28,2,9,1,12,2,9,1,28,3,8,1,9,1,16,1,11,2,10,1,28,2,1,116,}, + {1,433,28,9,29,4,30,1,29,4,30,1,29,2,30,1,26,1,30,1,26,1,13,3,25,1,9,10,15,2,9,1,25,2,9,1,15,1,9,1,15,1,9,1,15,2,14,1,15,1,9,1,25,1,26,2,13,1,9,1,15,1,9,1,28,59,29,2,28,2,29,1,26,3,29,1,28,6,29,3,26,6,29,1,28,1,29,1,30,1,29,1,30,1,28,3,29,3,30,1,29,1,28,1,29,1,30,2,29,1,28,9,29,1,28,1,29,1,28,1,29,3,28,4,29,1,28,6,29,1,28,23,26,2,29,1,28,15,29,1,26,1,29,1,28,7,26,2,28,23,30,1,13,1,29,1,28,26,29,1,26,1,28,4,29,1,30,1,26,1,30,1,28,46,13,1,29,1,28,18,26,1,9,2,28,11,14,2,28,3,29,2,28,2,26,1,30,1,29,1,26,2,29,1,28,1,29,1,26,1,13,1,26,1,28,1,29,1,28,6,29,1,28,2,29,1,30,1,28,7,29,1,9,1,8,1,30,1,7,1,6,3,7,2,8,1,9,1,17,1,16,1,7,2,10,1,7,1,6,1,8,1,10,1,9,1,11,1,1,1,9,1,28,2,1,114,}, + {1,433,28,8,29,14,26,2,13,3,25,1,9,10,15,1,9,3,25,1,9,4,15,7,9,2,25,1,13,1,25,1,9,1,15,1,13,1,29,1,28,57,29,7,28,7,29,3,26,7,29,1,28,1,29,1,26,1,29,1,26,1,29,1,28,3,29,1,30,1,29,4,30,1,29,1,28,8,29,1,28,5,29,3,28,11,29,1,28,23,29,1,28,1,30,1,9,1,13,1,26,1,29,1,28,12,30,1,29,1,28,7,30,1,26,1,29,1,28,22,13,2,28,28,29,1,28,3,30,1,26,1,30,1,28,47,14,1,11,1,9,1,28,19,30,1,29,1,28,11,15,1,9,1,28,3,29,1,28,3,29,2,28,1,29,1,26,1,29,1,28,1,29,3,28,2,29,1,28,9,29,2,28,7,29,1,13,2,29,2,13,1,30,1,29,1,6,1,7,2,9,1,12,2,16,3,7,1,6,3,10,1,16,1,12,1,11,2,12,1,6,1,28,3,1,110,}, + {1,434,28,6,29,2,30,2,29,3,30,1,29,3,30,1,29,2,30,1,26,3,13,4,9,8,15,2,9,1,25,2,9,10,15,5,9,1,25,1,9,1,15,2,9,1,28,57,29,3,28,9,29,5,26,7,28,2,30,1,26,1,29,1,30,1,26,1,30,1,28,3,29,5,30,1,29,1,28,3,29,1,28,4,29,2,28,4,29,3,28,9,29,2,28,28,29,1,13,1,15,1,9,1,13,1,28,10,29,1,28,8,26,1,30,1,28,22,30,1,13,1,30,1,28,29,29,1,28,1,29,1,30,1,26,1,30,1,28,46,13,1,1,2,15,1,28,32,26,1,30,1,28,2,29,2,28,2,29,1,28,4,30,1,29,3,28,4,29,1,28,10,29,1,28,8,26,1,13,1,30,1,29,2,28,2,29,1,7,2,9,1,12,1,11,1,17,2,16,1,7,2,10,1,9,1,7,1,9,1,12,2,16,2,11,3,16,1,6,1,29,1,28,2,1,106,}, + {1,435,28,6,29,1,30,8,29,4,30,1,26,1,13,5,25,1,9,6,15,3,9,2,13,2,9,8,25,1,13,1,9,3,15,1,14,1,15,1,9,5,26,1,28,65,29,8,26,7,28,2,29,2,28,1,29,1,30,1,26,2,29,1,28,2,29,1,26,1,29,2,30,1,29,5,28,5,29,4,28,1,29,3,28,9,29,2,28,18,29,2,28,5,26,1,28,5,26,1,9,1,15,1,9,1,13,1,30,1,28,7,30,1,28,9,29,1,28,21,13,1,30,1,28,30,29,2,28,2,30,2,29,1,28,3,29,1,28,41,15,1,1,1,11,1,25,1,28,36,29,1,28,3,29,1,28,4,29,1,28,1,29,2,28,4,29,2,28,18,30,1,13,3,28,4,6,2,7,1,9,1,17,1,12,1,9,3,16,2,9,2,16,1,12,1,16,1,9,2,16,1,11,1,17,1,12,1,11,1,1,2,12,1,7,1,28,2,1,103,}, + {1,435,28,8,29,2,30,5,29,3,30,1,26,1,13,6,25,1,9,4,15,6,9,1,25,1,13,1,9,5,15,3,9,1,25,2,9,3,15,1,14,1,15,1,25,1,13,2,9,2,13,1,28,61,29,1,28,1,29,9,26,7,29,3,28,2,29,2,30,1,13,1,26,1,28,2,29,1,30,1,28,1,29,2,28,3,29,1,28,8,29,2,28,5,29,1,28,7,29,2,28,18,29,1,28,6,9,1,29,1,28,6,29,1,26,1,13,1,9,2,13,1,30,1,29,1,28,3,29,1,28,4,30,1,28,4,29,2,28,20,26,1,28,3,29,1,28,31,29,3,28,2,29,2,28,41,9,1,1,1,15,1,28,41,29,1,28,2,29,1,28,2,29,2,28,5,29,1,26,1,28,18,29,1,13,1,9,2,26,1,28,2,29,1,30,1,29,1,28,2,8,1,9,3,16,2,10,1,6,1,10,1,9,1,16,1,17,1,12,1,9,1,8,1,10,1,9,1,16,1,17,1,11,2,1,1,11,1,12,1,9,1,6,1,28,5,1,97,}, + {1,436,28,8,29,1,30,2,29,1,26,2,30,3,13,1,25,1,9,1,25,2,9,11,15,3,9,7,15,4,9,3,25,1,9,1,25,1,9,1,15,1,9,1,13,1,26,1,13,1,9,3,25,1,28,60,29,3,28,3,29,6,26,6,28,1,29,1,28,2,29,4,30,1,26,2,29,5,28,5,29,2,28,8,29,1,28,3,29,3,28,5,29,2,28,26,26,1,30,1,28,11,30,1,13,1,25,1,13,1,29,1,28,33,29,1,28,3,30,1,29,1,28,34,29,2,28,42,30,1,9,1,26,1,28,47,29,2,28,2,29,1,28,3,26,1,28,19,30,1,13,2,9,1,26,1,30,1,13,1,26,1,29,1,28,2,29,1,7,1,10,1,8,1,7,1,6,1,29,1,6,1,7,1,8,1,16,1,12,1,16,1,10,3,9,2,16,1,9,2,17,1,11,2,12,3,9,2,10,1,9,1,10,1,28,2,1,94,}, + {1,437,28,7,29,4,30,1,26,2,30,1,26,1,13,3,9,8,25,3,9,4,15,4,9,8,15,1,9,8,13,2,25,1,9,1,25,1,9,1,15,1,9,1,28,55,29,1,28,4,29,13,26,4,28,4,29,1,28,1,29,3,30,1,26,1,30,1,29,2,30,1,29,1,28,5,29,1,30,1,28,8,29,1,28,3,29,3,28,1,29,1,28,2,29,2,28,28,26,1,13,1,29,1,28,3,29,1,28,10,29,1,30,2,29,1,28,30,30,1,28,3,29,2,28,24,30,2,29,1,28,5,29,1,28,98,29,1,28,3,13,1,28,19,29,1,26,1,29,1,13,1,26,2,13,1,26,1,30,1,28,2,29,1,7,1,8,1,6,1,29,1,28,1,29,1,9,4,17,1,11,2,9,1,7,1,8,1,9,2,8,1,10,1,16,1,12,1,16,1,9,1,16,1,11,2,16,1,10,1,16,1,11,1,1,1,16,1,28,2,1,92,}, + {1,438,28,11,29,4,30,1,29,4,30,6,26,1,13,1,25,1,9,6,15,2,9,4,25,1,9,1,25,1,9,1,15,2,9,3,15,1,9,2,25,3,9,3,25,1,9,1,15,1,9,1,28,10,29,4,28,43,29,2,28,2,29,11,26,2,13,1,26,1,28,6,29,7,30,2,26,1,28,8,29,6,28,1,29,1,28,3,29,3,28,1,29,1,28,2,29,2,28,26,29,3,26,2,29,1,28,6,29,1,28,9,29,1,26,1,30,1,29,1,28,27,13,1,28,20,29,1,28,7,29,1,30,1,29,1,28,5,30,1,26,1,28,54,15,2,28,36,29,1,28,9,13,1,28,14,30,1,29,2,28,2,30,2,28,1,29,1,30,5,29,1,28,1,30,1,10,1,9,1,10,1,6,1,28,1,29,1,16,1,9,1,8,1,7,1,8,1,12,1,11,3,16,1,9,4,16,1,12,1,11,2,12,1,16,1,11,2,9,1,10,1,16,1,11,1,1,2,12,1,29,1,28,1,1,90,}, + {1,438,28,9,29,1,28,1,29,2,28,8,29,1,30,1,26,1,13,2,25,2,9,7,15,2,9,1,13,1,9,3,10,2,9,3,15,4,9,1,13,1,26,1,13,1,9,7,15,2,29,1,28,5,29,1,28,6,29,10,28,1,29,8,28,2,29,2,28,5,29,1,28,11,29,3,28,2,29,13,26,4,28,4,29,1,28,1,29,2,30,1,29,2,30,2,29,1,30,1,29,1,28,3,29,3,28,8,29,6,28,5,29,2,28,19,26,1,28,2,29,1,28,2,29,1,13,1,26,1,28,2,29,1,26,1,30,1,28,19,30,4,29,1,28,23,13,1,30,1,28,18,29,1,28,7,29,2,28,7,26,2,28,53,13,1,11,1,14,1,28,45,30,1,13,1,28,15,29,2,28,2,30,1,26,1,30,1,28,2,30,2,28,1,29,1,30,1,28,1,29,1,6,1,9,1,16,1,9,1,8,1,7,1,8,1,7,4,9,1,11,4,16,1,9,1,16,1,12,4,17,2,12,3,16,1,9,2,16,1,12,1,11,1,1,2,11,1,9,1,29,1,28,4,1,84,}, + {1,439,28,6,29,1,26,1,29,4,28,1,29,4,26,3,13,3,25,1,9,10,15,2,10,1,13,1,9,13,13,1,26,1,13,1,9,4,15,1,9,5,26,1,28,3,29,1,28,2,29,1,28,8,29,1,28,9,29,7,28,9,29,3,28,3,29,1,28,12,29,11,30,1,29,1,28,6,29,2,30,1,29,2,30,2,29,1,30,1,29,1,28,5,29,1,28,1,26,3,29,1,28,10,29,2,28,2,29,1,28,4,29,1,28,15,30,1,26,1,28,1,29,2,30,1,13,1,29,1,28,6,30,1,26,1,28,9,29,1,28,34,29,1,26,2,28,18,30,1,28,6,29,1,26,1,29,1,28,7,30,1,29,1,28,53,14,1,11,1,15,1,28,45,29,1,13,1,28,19,29,1,30,1,13,1,28,3,29,1,28,3,29,1,28,1,30,1,8,1,9,2,8,1,10,1,9,1,8,1,7,2,8,2,9,1,17,1,11,1,8,1,6,2,8,1,16,1,11,2,12,1,17,2,12,1,16,4,9,2,16,1,12,1,11,6,12,1,16,1,9,1,29,1,28,2,1,81,}, + {1,440,28,5,29,1,30,1,26,3,30,1,29,2,26,1,13,4,25,2,9,13,15,1,9,1,25,1,13,1,9,13,13,2,25,1,9,11,13,1,28,4,29,2,28,1,29,1,28,6,29,1,28,30,29,6,28,1,29,15,28,11,29,5,30,1,29,2,30,1,28,7,29,1,28,2,29,1,30,1,29,2,28,9,29,3,28,5,29,1,28,17,29,1,26,3,29,1,28,9,30,1,28,42,29,2,28,1,29,1,30,1,28,16,26,2,28,6,29,1,13,1,30,1,28,7,29,1,28,37,29,1,28,15,9,1,1,1,15,1,29,1,28,37,29,1,28,3,29,2,28,3,13,1,28,20,30,1,13,2,29,1,28,5,29,1,28,1,29,1,30,1,13,1,8,3,9,2,13,1,30,1,29,1,30,1,8,1,9,2,28,2,29,1,7,1,9,1,17,2,12,1,17,1,12,2,16,4,12,2,11,7,12,1,17,1,11,3,16,1,10,1,6,1,28,1,1,79,}, + {1,441,28,5,29,1,26,4,30,2,26,1,13,5,25,2,9,11,15,3,9,4,25,1,9,10,25,2,9,12,11,1,25,1,28,7,29,3,28,25,29,11,28,6,29,2,26,3,29,5,28,15,29,5,30,1,29,1,28,1,29,1,28,2,29,2,28,7,29,8,28,5,26,1,29,1,28,24,26,1,29,1,28,3,29,2,28,2,30,1,28,3,29,3,28,2,29,2,28,36,29,1,28,3,29,1,28,16,26,1,29,1,28,3,29,1,28,3,26,1,29,1,28,61,26,1,15,1,29,1,28,42,29,2,28,3,13,1,28,21,30,1,9,2,30,1,28,6,29,2,26,1,13,4,9,2,6,1,28,2,13,1,9,1,6,1,28,1,6,1,9,1,10,2,9,1,12,2,16,2,12,1,17,3,11,2,12,1,17,1,11,6,12,1,16,3,17,1,11,4,9,1,28,5,1,73,}, + {1,443,28,3,29,1,30,1,26,1,13,2,26,4,30,1,13,4,25,1,9,13,15,1,9,25,8,1,13,1,9,1,14,1,15,1,29,1,26,1,30,1,28,2,29,1,28,3,29,6,28,2,29,1,28,9,29,4,28,3,29,5,28,1,29,2,28,7,29,6,28,11,29,5,28,7,29,6,28,2,29,1,28,3,29,1,28,4,29,3,28,5,29,3,28,5,30,1,29,1,28,14,29,1,28,8,29,1,28,5,29,1,28,4,29,1,28,3,29,5,28,32,29,1,28,2,30,1,28,23,29,5,28,3,30,1,28,76,29,1,28,30,29,1,28,4,13,1,28,22,26,1,9,1,26,1,28,1,29,1,30,2,29,1,28,2,29,1,30,1,26,4,30,1,25,1,9,1,28,2,30,1,9,2,8,1,16,1,17,1,16,1,9,1,16,1,12,1,17,1,16,2,17,1,11,7,12,1,16,2,11,4,17,1,12,2,16,1,12,2,17,1,11,4,16,2,9,2,28,2,1,70,}, + {1,444,28,2,29,2,30,1,13,6,26,1,13,4,25,5,9,10,15,3,9,5,15,3,9,17,15,1,28,2,26,1,15,1,26,1,28,3,29,3,28,2,29,3,28,1,29,3,28,3,29,1,28,6,29,2,28,1,29,6,28,4,29,5,26,3,29,2,28,13,29,7,28,8,29,4,28,22,29,1,28,4,29,1,28,15,29,1,28,8,26,1,28,3,29,1,28,11,29,1,26,1,29,1,28,32,29,2,28,2,29,1,28,24,26,1,29,3,28,3,30,1,29,1,28,32,29,1,28,38,26,1,13,1,28,2,29,1,28,17,29,1,28,17,13,1,28,23,30,2,29,5,28,2,29,2,26,2,30,1,26,1,29,2,30,1,29,1,28,1,30,1,9,1,16,1,9,1,15,2,16,1,9,1,16,5,12,1,11,3,12,2,1,1,11,2,16,1,12,1,11,3,12,1,11,1,17,1,11,5,17,1,11,2,12,1,16,1,12,1,11,2,1,1,16,1,29,1,28,2,1,3,28,2,1,62,}, + {1,445,28,3,29,1,30,1,26,2,13,4,26,1,13,7,9,11,15,2,9,5,15,4,9,1,25,1,9,3,15,5,9,4,15,2,9,1,28,2,29,1,26,1,9,1,14,1,13,1,28,2,29,3,28,3,29,2,28,8,29,8,28,1,29,8,26,7,28,13,29,12,28,7,29,3,30,1,29,1,28,3,29,1,28,9,29,3,28,3,29,4,28,29,26,1,29,1,28,15,30,1,29,1,28,7,29,1,28,11,29,1,28,15,30,1,28,24,29,1,13,1,26,1,28,5,29,1,28,33,29,1,28,15,29,1,28,14,29,1,28,6,15,1,14,1,26,1,28,1,29,1,28,18,29,1,28,16,29,1,9,1,28,25,29,1,28,8,29,3,30,1,26,1,28,3,29,1,13,1,25,1,13,1,9,11,16,1,17,1,16,1,9,2,16,1,17,1,11,11,17,3,11,2,16,1,9,2,16,4,11,3,16,1,10,2,8,2,7,1,6,1,28,16,1,9,28,1,1,6,28,9,1,8,28,1,1,11,}, + {1,447,28,5,29,1,30,1,13,6,25,4,9,8,15,1,9,2,15,1,9,1,25,2,9,4,15,3,9,1,13,2,25,1,9,7,15,2,9,2,15,1,25,1,28,1,29,1,13,1,9,3,15,1,13,1,28,3,29,8,28,1,29,13,28,1,29,3,26,7,29,1,28,11,29,18,28,7,29,3,30,2,28,14,29,7,28,24,29,2,28,4,29,1,26,1,28,37,29,1,28,15,13,1,28,24,26,1,9,1,26,1,28,55,29,1,28,19,30,1,1,2,15,1,28,2,26,1,28,26,29,1,28,8,29,1,9,1,28,27,29,1,30,1,28,7,29,2,26,1,30,1,29,1,28,2,13,2,30,1,8,1,9,1,15,1,9,2,8,1,9,3,7,2,9,1,16,1,9,3,16,1,17,1,11,10,17,1,11,8,9,2,16,1,11,5,1,1,11,1,17,1,12,2,17,1,11,5,12,1,16,1,9,1,10,1,9,1,16,1,11,4,16,1,8,1,29,1,28,5,7,1,16,3,10,1,7,1,29,1,6,1,7,1,9,1,17,1,11,3,1,2,11,1,12,1,16,5,9,2,16,2,8,1,28,2,1,8,}, + {1,449,28,4,29,1,30,1,29,1,30,3,26,1,13,1,9,1,25,1,13,1,25,2,9,6,15,2,9,2,26,2,13,1,9,6,15,2,9,1,25,1,13,2,9,2,15,2,9,3,15,2,9,2,13,1,29,1,13,1,25,1,9,5,15,1,28,4,29,2,28,2,29,12,28,4,29,2,26,3,29,1,28,11,29,6,28,1,29,16,28,5,29,4,30,1,28,1,29,1,30,1,28,15,29,11,28,1,29,4,28,17,29,1,28,2,26,1,13,1,28,25,29,1,28,10,29,1,28,31,29,1,28,9,9,2,29,1,28,43,29,1,30,1,28,31,15,1,1,1,9,1,28,35,29,1,28,2,30,1,13,1,28,17,29,2,28,10,29,1,28,6,29,1,30,1,29,1,30,1,29,2,30,1,13,1,26,1,30,1,26,2,9,1,15,1,13,1,7,1,9,1,8,1,9,1,8,1,6,2,8,1,16,1,11,2,15,1,17,1,11,2,17,1,12,1,17,2,11,1,1,1,11,3,17,1,11,7,17,1,16,2,11,9,12,1,16,2,12,1,17,1,11,4,12,1,16,2,12,2,16,2,12,1,11,2,1,2,11,2,17,1,11,5,1,4,11,4,12,1,16,1,11,4,1,5,11,3,1,4,9,1,28,1,1,3,28,1,1,2,}, + {1,450,28,2,7,1,6,1,30,1,13,1,26,1,30,2,29,1,30,1,26,1,25,2,13,1,25,4,9,3,15,1,9,2,13,1,26,2,25,1,9,6,15,2,9,1,25,1,9,1,15,3,9,10,26,1,9,7,15,1,25,1,30,1,28,3,29,1,30,1,29,19,28,12,29,27,28,4,29,1,28,3,29,2,30,1,28,3,29,4,28,9,29,4,30,1,29,15,28,16,13,2,28,16,29,1,28,3,29,1,30,1,28,3,29,1,26,1,30,1,28,7,29,1,30,1,28,31,29,1,28,9,9,2,29,1,28,43,29,2,28,31,30,1,15,1,26,1,28,38,29,1,13,1,28,12,29,2,28,23,29,6,26,2,30,3,9,2,30,1,29,1,30,1,29,1,8,4,9,1,15,1,11,2,15,1,16,1,15,1,11,2,9,1,8,1,10,1,11,9,17,1,11,3,17,1,11,8,17,2,12,4,17,1,11,1,17,1,12,4,16,2,12,2,16,2,12,1,11,6,17,1,11,2,17,1,11,11,17,1,12,1,17,1,11,3,1,1,11,10,1,1,11,1,12,1,28,1,1,4,}, + {1,451,28,2,29,1,13,2,8,1,9,1,25,1,26,1,30,2,26,1,13,1,25,3,9,3,15,2,25,1,13,4,9,7,15,3,9,2,15,2,9,1,13,2,9,3,25,2,9,1,25,1,9,13,13,1,29,1,28,3,29,12,28,2,29,5,28,5,29,17,26,8,29,7,28,8,29,2,28,2,30,1,28,3,29,1,28,6,29,2,28,4,29,7,28,1,29,5,28,3,29,1,30,3,29,1,28,15,9,1,30,1,28,17,29,1,28,3,29,1,28,4,29,1,26,1,29,1,28,8,29,1,28,13,29,1,28,27,29,1,28,43,29,2,28,33,29,1,28,9,29,1,28,29,29,1,9,1,28,12,29,2,28,25,29,4,30,2,29,1,28,2,13,1,9,1,26,1,29,3,6,1,13,1,9,2,15,1,14,1,15,3,16,1,9,3,7,1,6,2,9,1,16,3,17,1,11,4,16,2,17,1,11,1,17,1,11,1,1,1,11,7,12,4,17,1,11,3,12,1,17,1,11,2,16,3,12,3,17,1,11,9,17,1,11,12,12,1,11,11,12,2,11,3,1,2,16,1,28,1,1,3,}, + {1,452,28,4,30,1,13,1,9,2,13,2,26,2,9,4,15,1,9,2,25,1,30,2,26,1,25,1,9,8,15,3,9,2,13,1,30,2,26,1,13,1,9,1,15,1,25,1,13,3,25,1,9,1,15,1,9,5,15,1,9,3,29,1,9,1,15,1,9,1,29,1,28,3,29,8,26,1,29,13,26,2,29,5,28,1,29,10,26,1,29,14,28,2,29,3,28,4,29,1,28,2,29,1,28,1,30,1,28,1,29,1,28,12,29,4,28,4,29,5,28,4,29,1,28,2,26,1,30,1,28,13,29,1,9,1,29,1,28,17,29,1,28,5,29,1,28,4,30,2,28,21,29,1,28,42,29,1,28,28,29,2,28,41,30,1,14,2,29,1,28,28,26,1,9,1,28,22,29,2,28,15,29,3,28,1,29,3,28,2,30,1,9,1,13,1,26,3,6,1,13,1,9,1,16,1,15,3,9,1,16,1,15,1,9,1,29,1,28,1,8,1,9,1,8,2,9,1,10,1,8,1,16,1,11,4,16,1,8,1,9,1,17,1,11,2,17,1,11,7,17,3,12,2,17,1,11,6,17,1,16,1,12,1,11,2,17,1,12,1,17,1,11,33,17,1,12,1,11,2,17,1,11,2,1,2,28,1,1,2,}, + {1,453,28,4,29,1,26,1,13,1,25,1,9,7,25,1,13,1,26,1,30,1,26,1,13,1,25,1,9,8,15,3,9,1,25,1,30,1,29,2,26,1,25,1,9,3,13,3,9,9,15,1,9,3,13,1,9,4,13,1,29,1,28,4,29,20,28,1,29,1,28,2,29,2,28,1,29,12,28,3,29,11,30,2,29,2,30,2,28,4,29,2,28,1,30,2,29,2,28,12,29,3,28,2,29,3,28,13,29,3,28,10,26,1,13,1,28,5,29,1,28,11,29,1,30,2,29,1,28,4,29,2,28,4,29,1,28,20,29,1,28,41,29,1,28,30,29,1,28,41,9,1,1,1,11,1,29,1,28,28,13,2,28,22,29,3,28,15,29,2,28,2,29,2,30,1,28,1,29,1,13,3,26,1,30,1,13,2,8,1,9,1,15,2,16,1,9,2,14,1,9,1,28,2,16,1,11,1,16,2,12,1,16,1,9,1,12,1,11,4,15,1,9,2,17,1,11,2,17,1,11,7,17,1,11,2,12,3,11,6,17,1,12,1,11,3,12,1,16,2,11,1,1,2,11,2,17,1,11,7,1,1,11,20,12,2,17,1,11,4,1,1,11,1,28,1,1,1,}, + {1,454,28,4,29,1,26,1,30,1,26,1,13,1,25,1,13,2,26,4,13,2,25,1,9,10,15,3,9,1,13,1,29,1,26,1,13,1,9,6,25,1,9,5,13,1,25,1,9,6,15,2,9,1,13,1,9,1,15,2,25,1,30,1,28,4,29,12,26,2,29,8,26,3,29,3,26,5,29,11,28,1,29,5,30,1,29,4,30,1,26,1,13,1,30,1,28,6,30,1,26,1,28,15,29,2,28,1,29,3,28,22,29,1,28,4,30,2,28,6,29,1,28,10,29,1,30,1,29,1,28,14,29,2,28,15,29,2,28,41,26,1,28,30,29,1,28,6,29,2,28,33,9,1,1,1,11,1,29,1,28,28,9,1,26,1,28,23,29,2,28,20,29,1,30,1,29,1,28,1,29,1,13,2,26,1,30,1,13,3,9,5,8,1,9,2,8,1,9,1,15,2,16,1,17,1,11,1,17,1,15,1,17,1,15,1,9,2,16,1,15,2,16,1,15,1,11,1,1,1,11,1,16,3,17,1,11,6,17,1,11,4,17,1,11,3,17,2,11,3,12,1,9,2,16,1,17,2,12,1,16,1,12,3,17,1,12,1,17,1,11,15,17,2,11,7,17,1,12,1,17,2,11,1,12,1,16,1,1,1,29,1,1,1,}, + {1,456,28,2,29,1,30,2,29,1,30,2,26,2,13,4,9,2,25,2,9,5,15,1,9,3,15,3,9,2,13,1,25,1,9,13,13,2,25,1,9,2,25,1,9,2,15,2,9,1,25,1,9,5,26,1,29,2,28,1,29,4,26,10,29,2,26,9,29,3,26,2,29,14,28,1,29,3,30,1,26,1,30,1,29,1,28,2,29,3,30,1,13,2,29,1,28,4,29,1,13,1,28,8,29,1,28,7,29,5,28,20,29,3,28,4,29,1,30,1,28,18,29,1,28,11,29,1,28,3,29,1,28,16,29,1,28,42,29,1,28,37,29,1,28,34,14,1,1,1,14,1,29,1,28,28,15,1,30,1,28,1,29,1,28,21,29,2,28,21,29,2,28,2,30,1,13,1,26,1,30,3,13,1,8,1,13,1,6,1,30,3,29,1,30,1,9,1,15,2,9,2,12,1,16,1,9,1,16,2,9,1,6,1,29,1,30,1,7,1,9,4,16,2,6,3,9,1,17,3,11,3,17,1,11,4,12,1,11,1,17,1,12,1,16,1,12,1,11,3,12,1,9,1,7,4,10,1,9,1,12,1,16,1,9,2,16,1,12,1,17,1,11,14,17,2,11,7,17,2,11,1,17,1,11,2,12,1,11,1,16,1,28,1,}, + {1,457,28,2,30,1,26,1,30,3,13,2,9,3,25,3,13,1,25,1,9,6,15,1,9,3,15,2,9,18,13,1,9,7,15,1,9,7,15,1,25,1,26,1,29,6,28,12,29,1,28,7,29,5,28,5,29,11,26,4,29,1,28,6,30,1,26,3,30,1,29,2,28,2,9,2,30,2,29,2,28,11,29,5,28,3,29,2,28,4,29,1,28,2,29,1,28,15,13,2,26,1,28,16,29,2,28,11,29,1,28,19,29,1,28,17,26,1,29,1,28,10,29,1,28,13,30,1,28,31,29,1,28,4,29,1,28,8,29,1,28,10,29,1,28,14,9,1,15,1,29,1,28,29,15,1,29,1,28,1,29,1,28,45,29,1,28,3,30,1,29,2,28,1,29,1,13,2,30,1,28,6,13,1,15,2,9,2,16,1,9,1,7,1,8,1,9,1,8,1,29,1,28,4,29,2,28,2,29,1,6,1,28,1,29,1,10,1,12,2,17,1,11,3,17,2,11,3,17,1,9,4,16,1,11,3,17,1,16,1,7,1,29,1,28,2,7,1,16,2,10,1,6,1,7,1,9,1,16,1,12,2,17,1,12,2,17,1,11,7,1,1,11,1,17,1,12,1,17,1,11,6,17,2,12,1,11,1,16,1,17,1,11,1,16,1,17,1,28,1,}, + {1,458,28,2,25,1,9,1,13,1,26,1,13,1,9,2,13,2,9,3,25,1,9,9,15,3,9,28,15,3,9,4,15,2,9,1,13,1,29,3,26,1,29,2,28,18,29,1,26,1,29,1,28,3,29,2,28,1,29,8,26,5,29,4,30,1,28,6,29,2,30,1,29,1,13,1,26,2,30,1,28,1,29,1,26,1,28,1,30,2,29,3,28,5,29,4,28,2,29,1,28,3,29,1,30,2,28,25,29,1,30,1,29,1,13,1,26,1,28,1,29,2,28,2,29,2,28,9,29,1,28,46,13,1,26,1,28,26,26,2,28,8,29,1,28,24,29,1,28,14,29,1,28,51,29,1,15,1,28,53,29,2,28,1,29,3,28,4,30,1,13,1,26,1,6,1,8,1,9,2,8,1,9,2,8,1,6,1,29,1,6,1,9,1,15,1,6,1,28,2,6,1,9,1,29,1,28,2,8,1,15,1,12,1,9,1,12,1,11,1,17,1,11,4,12,1,16,1,17,1,12,1,9,2,6,2,9,1,17,1,16,2,17,1,11,1,12,1,9,1,8,1,10,1,9,1,12,1,11,2,16,1,7,2,9,1,17,1,11,3,17,1,11,2,17,1,12,1,11,1,1,1,11,6,17,2,11,4,12,1,16,1,12,3,11,2,16,1,9,2,7,1,28,1,}, + {1,459,28,2,7,1,9,1,13,4,9,2,25,1,9,1,25,1,9,8,15,4,9,2,25,1,13,1,9,16,25,1,9,15,25,1,9,3,25,1,26,1,29,2,26,3,29,2,26,1,29,9,26,1,29,1,26,2,29,4,28,1,29,1,26,15,29,4,28,1,29,1,26,1,28,6,29,2,30,1,29,1,26,1,30,1,26,2,30,1,26,1,13,1,28,4,29,1,30,1,29,1,28,1,29,1,28,6,29,2,28,3,29,1,30,1,29,1,28,4,29,1,28,23,29,3,28,4,29,1,30,1,29,1,28,3,30,1,26,2,29,1,28,20,30,2,29,1,28,7,29,1,28,11,29,1,30,1,28,5,29,1,28,26,26,2,13,1,28,78,26,2,28,20,26,1,15,1,28,54,29,1,28,7,29,1,9,1,15,1,9,1,13,2,9,4,15,2,10,1,30,1,6,1,9,1,14,2,9,1,8,1,15,1,11,1,15,1,9,1,8,1,16,1,11,2,15,1,11,2,15,1,17,1,16,1,17,1,11,1,16,1,7,1,6,2,7,1,16,1,9,1,16,1,11,2,9,1,6,1,29,1,8,1,10,1,9,1,12,1,11,5,16,1,9,1,16,1,17,1,11,7,12,1,16,2,12,1,16,1,12,2,11,3,16,1,9,1,12,1,11,2,17,1,9,4,12,1,11,1,12,1,9,1,6,3,28,1,}, + {1,461,28,1,6,1,16,1,13,3,9,2,13,2,9,6,15,4,9,2,13,1,26,2,13,2,25,2,9,14,25,1,9,11,25,1,13,2,9,1,25,1,9,5,13,1,26,1,28,1,29,1,26,6,29,1,26,3,29,1,26,10,29,1,26,14,29,4,28,1,29,1,28,1,29,1,26,1,28,7,29,5,26,2,30,1,26,1,13,2,29,1,28,4,29,1,26,1,29,2,28,9,29,1,30,2,28,3,29,3,28,23,29,1,28,1,30,2,29,3,30,2,29,1,28,3,29,1,30,2,28,18,29,1,28,8,29,1,28,3,29,1,28,11,29,2,28,32,13,1,29,1,28,38,29,1,28,40,11,1,15,1,28,20,9,2,28,54,29,1,28,5,26,1,13,2,15,1,9,1,13,1,30,2,26,1,13,1,9,1,15,2,9,2,8,1,9,2,15,1,14,3,11,4,14,1,15,1,11,2,15,1,11,1,16,1,8,1,9,1,8,1,7,3,29,1,28,2,29,1,11,3,1,1,11,1,9,1,29,1,28,2,29,1,9,1,11,1,1,2,11,3,12,2,11,9,12,1,9,3,16,4,12,1,17,1,9,1,7,2,16,1,11,1,16,1,8,1,6,1,7,1,10,1,12,2,9,1,6,2,9,1,7,1,28,1,}, + {1,462,28,1,9,2,25,2,9,8,15,3,9,2,13,2,26,1,30,2,26,1,13,1,9,1,25,3,9,4,15,1,9,20,25,1,26,1,13,1,9,7,15,1,14,1,28,3,26,2,29,2,26,9,29,1,26,15,29,14,26,1,28,8,29,4,26,1,30,1,28,1,30,3,28,7,29,6,28,4,29,2,28,5,29,3,28,24,29,1,13,1,26,1,13,1,29,4,28,6,29,1,28,24,30,1,29,1,28,4,29,2,28,44,26,2,28,4,29,1,28,10,29,3,28,4,29,3,28,11,29,1,25,1,14,1,9,1,28,39,9,1,1,1,9,1,28,20,14,1,26,1,28,50,29,2,28,2,29,2,28,3,30,1,25,1,9,1,25,1,13,1,26,1,29,1,28,2,29,2,13,1,9,5,15,1,9,1,13,1,9,1,15,1,14,2,15,3,11,1,15,1,14,1,16,3,8,1,29,1,30,1,6,1,28,2,29,1,7,2,6,1,7,1,11,6,9,1,29,1,28,1,6,1,16,1,11,1,17,1,12,2,11,2,17,2,12,4,11,5,16,1,9,2,16,2,11,1,15,1,9,2,16,1,9,1,6,1,28,1,6,1,9,2,7,3,10,1,9,2,7,1,6,1,7,1,9,1,8,1,28,1,}, + {1,462,28,2,13,1,25,2,13,1,9,7,25,2,13,1,30,1,28,1,29,1,30,1,26,1,25,1,9,33,13,2,9,7,15,1,14,1,9,1,28,3,29,3,26,1,29,1,26,21,29,4,28,2,29,7,26,1,29,2,26,1,28,9,30,2,29,1,26,1,29,1,28,1,30,3,28,9,29,2,30,1,29,2,28,2,29,2,28,5,29,4,28,12,30,1,29,2,28,5,29,1,28,3,29,1,13,1,28,11,29,2,28,24,30,2,28,6,29,1,28,6,30,2,29,1,28,34,29,1,28,5,26,1,28,6,29,2,28,3,29,2,28,4,29,1,30,1,29,1,28,11,29,1,11,1,1,1,28,14,29,1,13,1,30,1,28,23,11,2,29,1,28,19,29,1,14,1,28,48,29,1,28,2,30,2,28,5,29,1,28,1,29,1,26,1,13,1,26,1,29,1,28,7,29,1,30,1,8,1,9,4,8,1,13,1,9,1,15,1,16,1,9,1,16,1,15,1,16,1,15,2,9,2,16,1,8,1,30,1,7,1,10,1,28,2,7,1,15,2,9,1,16,1,15,2,16,2,15,1,17,1,16,1,10,1,9,1,12,1,11,2,16,1,9,1,12,1,11,3,15,1,16,2,9,1,16,1,11,1,15,1,17,2,15,1,16,2,15,1,11,1,17,1,11,1,15,1,9,1,8,1,9,1,16,1,10,1,28,2,29,1,6,1,8,1,16,2,9,1,6,1,9,1,13,1,6,1,29,1,8,1,6,1,28,1,}, + {1,464,28,1,29,1,25,1,10,1,26,5,30,1,29,2,30,2,29,2,30,1,26,1,13,1,9,34,25,2,9,1,25,1,9,1,15,3,9,3,15,1,9,1,26,1,29,1,28,2,29,2,28,1,29,4,26,5,29,2,26,1,29,3,26,1,29,21,26,1,28,10,29,2,30,1,28,2,26,1,29,1,26,1,28,11,29,5,28,6,29,7,28,10,29,3,28,4,29,2,28,3,30,1,13,1,28,11,29,2,28,21,26,1,28,11,29,1,28,6,29,2,28,2,29,1,28,29,29,1,28,13,29,1,26,1,29,1,28,9,29,2,28,12,26,1,1,1,26,1,28,13,26,1,11,2,9,1,28,22,30,1,14,1,26,1,28,20,13,1,9,1,28,38,29,2,28,11,29,2,28,5,29,5,28,1,29,1,28,2,30,1,26,1,28,5,29,1,30,1,8,1,15,1,9,1,8,1,29,2,30,1,8,1,16,1,17,1,16,1,9,1,15,2,9,1,8,1,9,1,10,1,8,1,15,2,9,1,10,1,15,1,11,2,15,1,16,1,9,2,16,1,15,1,16,1,9,3,15,1,11,3,16,1,9,1,16,1,17,4,15,1,16,1,9,1,16,1,15,2,17,2,15,1,16,2,15,1,17,1,15,2,16,1,9,3,16,2,15,1,7,1,28,2,9,1,11,2,9,1,13,2,6,1,29,1,28,1,30,1,28,2,}, + {1,464,28,2,29,1,26,1,29,1,28,2,29,5,30,1,13,3,9,1,25,4,9,37,15,2,9,3,25,2,9,1,15,1,9,1,26,1,29,2,28,1,29,7,26,1,29,10,28,2,29,9,26,1,29,7,28,1,26,1,29,1,28,10,29,2,28,2,13,1,28,2,29,1,30,2,29,1,28,10,29,2,28,6,29,4,28,15,29,1,28,9,29,1,13,1,30,1,28,10,29,3,28,20,29,2,28,10,29,5,28,3,29,2,28,45,29,2,28,2,29,1,28,7,29,2,28,12,9,1,15,1,28,13,29,1,14,1,1,2,9,1,28,23,29,1,28,21,9,1,26,1,28,39,29,1,28,19,29,1,28,4,29,1,28,1,29,1,13,1,25,1,29,1,28,1,29,1,13,1,29,1,28,2,30,1,9,2,13,1,28,3,8,1,15,2,9,1,7,1,16,1,9,1,7,1,29,1,30,1,6,1,8,1,15,3,14,1,11,2,15,1,16,1,9,1,8,1,7,1,10,1,16,2,10,1,8,1,9,1,15,1,11,2,15,1,16,1,9,3,16,1,15,1,16,3,9,2,15,1,16,1,15,3,16,1,9,1,16,1,15,1,9,6,16,1,15,1,11,1,15,1,7,1,29,1,8,1,15,1,16,1,8,1,13,1,30,1,28,6,}, + {1,465,28,2,29,1,13,1,26,1,30,1,26,2,13,1,25,1,9,1,25,1,13,1,9,10,25,1,9,6,15,2,9,12,15,2,9,9,14,1,15,1,9,1,13,3,9,7,13,1,26,1,29,3,28,5,29,6,28,2,29,1,28,8,29,1,28,2,29,2,26,1,29,2,26,1,29,2,26,1,29,1,28,1,26,1,29,1,28,10,29,1,28,2,29,1,13,1,28,1,29,2,28,2,29,2,28,13,29,1,28,3,29,2,28,17,30,1,29,1,28,9,13,2,29,2,28,9,29,1,28,22,29,1,28,3,30,1,13,1,30,1,28,8,29,1,28,53,29,3,28,6,29,2,28,12,26,1,28,14,15,1,1,1,11,1,14,1,29,1,28,2,29,1,28,36,29,1,28,5,15,1,28,64,29,3,30,1,9,2,30,1,29,1,13,1,15,1,9,1,29,1,28,2,13,1,9,2,30,1,29,1,6,1,15,1,11,1,16,1,8,1,7,1,9,2,29,1,28,3,30,1,9,2,16,1,15,1,14,3,15,1,9,1,13,1,28,1,29,1,9,1,15,1,9,1,8,1,9,1,14,1,15,2,16,2,9,2,10,1,9,7,16,1,9,1,16,1,15,2,16,1,9,2,16,1,8,1,6,1,7,1,9,1,15,1,9,2,15,1,14,2,16,1,7,1,29,2,30,2,29,2,28,5,1,1,}, + {1,467,28,1,7,1,9,1,25,3,9,21,15,3,9,1,13,1,9,1,15,1,9,7,15,2,9,3,15,3,9,3,15,2,9,1,13,2,25,1,9,9,25,2,29,2,28,5,29,9,28,1,29,11,26,3,29,9,28,10,29,1,28,2,29,1,13,1,28,24,29,1,28,6,29,5,28,8,29,1,28,9,29,1,26,1,13,1,29,2,28,6,29,1,30,2,28,24,29,1,28,2,13,1,28,10,29,1,28,2,29,2,28,4,29,1,28,10,29,1,28,6,29,1,28,16,29,1,28,7,29,2,28,8,30,1,29,1,28,27,14,1,1,1,9,1,28,46,26,1,15,1,28,66,29,1,30,1,29,1,28,1,29,1,30,1,26,1,9,1,25,1,13,7,9,1,15,1,9,1,13,1,26,1,13,1,25,1,13,1,29,1,28,4,26,1,9,2,13,1,25,1,15,1,14,2,9,1,13,1,30,1,29,1,28,1,29,1,9,1,8,1,13,1,15,1,11,1,15,2,9,1,25,1,7,1,9,1,15,1,9,1,13,1,29,1,28,1,29,1,8,1,9,1,8,1,9,3,13,1,29,1,30,1,16,1,11,1,9,1,13,2,15,2,9,1,13,1,9,1,15,1,9,2,30,1,28,11,1,1,}, + {1,467,28,2,13,1,15,1,25,3,13,1,9,17,15,4,9,4,15,3,9,8,15,1,9,8,15,1,9,1,13,2,25,1,9,9,25,2,9,1,26,1,29,1,28,1,26,7,29,7,26,2,29,7,26,5,29,8,28,10,29,1,28,2,29,1,9,1,28,2,29,1,28,3,29,2,28,16,29,1,28,2,29,5,28,1,29,2,28,15,29,1,28,4,30,1,13,2,30,1,29,2,26,2,30,1,29,1,28,2,29,1,30,1,28,23,29,1,28,2,30,1,28,37,29,2,28,7,29,1,28,7,29,1,28,7,29,1,28,35,29,1,28,2,29,2,28,47,9,1,13,1,28,66,29,3,28,1,29,2,30,1,26,4,13,3,26,1,30,1,26,1,13,1,26,1,30,2,26,2,29,1,28,3,29,2,30,1,26,3,13,1,9,2,13,1,29,1,28,2,30,1,29,1,28,3,30,1,9,1,15,1,9,2,7,1,29,1,30,1,9,1,14,1,15,1,8,1,28,3,26,1,25,1,26,1,7,1,9,2,29,1,28,1,30,1,15,2,9,1,13,2,9,2,8,1,13,1,8,1,9,1,8,1,30,1,28,11,1,2,}, + {1,468,28,2,29,1,9,19,15,1,9,1,15,4,25,1,9,3,15,3,9,1,25,4,9,5,25,1,13,1,25,1,9,7,13,2,9,9,25,2,9,2,25,1,26,3,29,1,26,5,29,2,26,2,29,1,26,4,29,1,26,12,29,8,28,12,15,1,28,1,29,2,28,2,29,3,28,19,29,5,28,1,29,1,28,12,29,1,28,10,29,7,28,4,26,1,30,1,28,12,29,1,28,11,29,2,28,36,29,1,28,22,29,2,28,36,30,1,29,1,28,50,29,1,15,1,29,1,28,67,29,1,28,3,29,2,28,1,29,1,30,1,26,3,30,3,29,1,28,2,29,1,30,1,26,1,30,1,28,4,29,4,28,1,29,1,26,2,29,1,28,4,26,2,28,4,30,1,13,3,30,1,28,1,30,1,9,1,15,2,9,1,29,1,28,1,6,1,9,2,29,1,28,1,30,1,25,1,30,1,29,1,13,1,9,1,13,1,26,2,30,3,13,3,29,2,28,3,29,2,28,7,1,2,}, + {1,468,28,4,25,1,9,16,15,2,9,1,15,3,9,1,13,1,9,4,15,1,9,2,13,2,9,7,25,1,13,1,9,4,13,1,9,4,25,1,9,8,25,3,13,1,9,2,25,1,26,1,30,1,29,4,26,24,29,10,28,7,29,1,28,2,15,1,28,20,29,2,28,9,29,2,28,24,29,2,30,1,29,1,28,2,29,2,28,4,29,2,28,23,29,1,26,1,29,1,28,35,29,1,28,20,29,4,28,35,29,1,30,1,28,51,9,2,28,76,30,3,29,3,30,1,29,1,28,2,29,1,26,1,30,1,29,1,28,5,29,2,28,2,29,2,28,5,30,1,13,2,30,2,26,1,30,1,29,1,28,1,29,2,28,2,26,1,9,4,13,2,15,1,11,1,15,1,26,1,28,2,29,1,9,2,13,1,30,1,29,1,28,1,29,2,28,2,30,1,26,1,29,1,28,4,29,1,25,2,30,1,28,2,30,1,29,1,28,1,1,3,}, + {1,468,28,5,13,1,9,2,25,1,9,1,15,1,9,7,15,2,9,1,15,2,9,1,15,4,9,4,15,2,9,1,13,2,9,8,25,2,9,1,15,1,9,1,25,1,13,1,9,2,15,1,9,10,25,4,9,1,25,1,9,3,13,1,26,1,29,2,30,1,26,24,29,4,26,1,29,1,30,3,29,1,28,1,29,2,28,3,29,1,28,2,9,1,29,1,28,2,29,1,28,4,29,1,28,11,29,2,28,5,29,2,28,3,29,1,28,17,29,1,28,5,30,1,26,2,30,1,29,4,28,7,29,1,28,23,13,1,29,1,28,42,29,2,28,12,29,5,28,33,29,1,30,1,28,51,29,1,15,1,29,1,28,76,29,1,28,4,29,3,28,2,29,3,28,2,29,2,28,10,29,1,30,2,13,1,26,1,29,2,26,1,13,3,29,2,28,3,26,1,9,1,10,1,25,1,9,1,25,1,13,1,9,1,14,2,9,1,30,1,28,1,29,1,9,1,25,1,29,1,28,1,29,1,28,1,29,2,28,3,29,1,28,5,13,1,9,1,25,1,29,1,28,4,1,4,}, + {1,469,28,1,29,1,28,2,30,1,9,12,15,7,9,2,15,1,9,4,15,2,9,1,25,1,9,11,15,2,9,1,25,2,9,2,15,1,9,11,25,3,9,7,26,3,30,1,29,1,26,27,29,1,30,1,26,1,30,1,29,3,26,1,28,3,29,1,28,2,9,1,13,1,28,2,29,2,28,3,29,1,28,11,29,2,28,5,29,1,30,1,29,1,28,18,29,1,28,1,29,2,28,5,29,1,30,1,29,1,28,29,29,1,28,5,13,1,29,1,28,88,29,1,28,4,29,2,28,7,29,1,28,44,9,2,28,83,29,5,28,4,29,1,30,1,29,1,28,9,29,1,30,1,29,1,28,4,29,2,30,1,26,1,30,2,29,2,30,1,25,1,9,1,13,4,30,1,13,1,9,3,26,1,13,1,9,2,30,1,28,4,29,1,28,4,29,3,28,2,29,1,30,1,26,1,29,1,28,4,1,5,}, + {1,470,28,1,29,1,28,2,6,1,8,1,9,6,15,2,9,4,15,4,9,1,13,2,9,5,15,1,9,3,15,2,9,9,15,2,9,1,25,1,9,9,25,1,9,5,25,3,15,2,9,1,13,5,9,2,13,1,26,1,30,1,26,1,30,1,26,7,29,1,26,18,30,2,29,2,30,1,26,1,30,1,28,5,13,1,15,1,29,1,28,2,29,2,28,2,29,1,28,12,29,2,28,4,29,1,30,2,29,1,28,26,29,1,30,2,28,11,29,3,28,15,30,1,28,5,26,1,30,1,28,19,29,2,28,1,29,1,28,70,29,2,28,7,29,1,28,43,29,1,15,1,29,1,28,74,29,1,28,5,29,1,28,3,29,3,28,23,29,2,28,3,29,1,30,1,13,1,25,2,9,1,25,1,30,4,29,2,30,1,26,2,30,1,13,1,9,2,29,1,28,6,26,2,29,3,30,1,29,1,28,1,29,1,28,7,1,5,}, + {1,465,28,1,1,5,28,4,29,1,7,1,25,1,9,1,15,1,9,1,15,3,9,8,13,1,26,1,13,1,9,1,13,2,25,1,9,2,25,1,9,6,15,2,9,5,15,2,9,6,15,1,9,4,25,1,9,5,8,1,25,1,8,1,9,5,26,1,30,1,26,1,9,1,15,1,9,1,13,1,26,1,30,1,29,1,26,7,30,1,26,18,29,2,30,3,26,1,13,1,29,1,28,2,29,1,28,1,30,1,14,1,29,1,28,3,29,2,28,2,29,2,28,6,29,1,28,3,29,2,28,5,29,1,30,2,29,1,28,11,29,1,28,12,26,1,30,1,29,1,28,3,29,2,28,7,29,1,28,1,29,1,28,21,29,1,30,1,28,19,26,1,28,2,29,1,28,24,29,1,28,27,29,1,28,70,25,1,15,1,28,74,29,1,30,2,29,1,28,1,29,1,26,1,13,1,29,1,28,16,30,1,29,2,28,6,29,1,28,1,29,5,28,2,29,1,13,2,26,2,13,1,26,1,29,1,28,5,29,1,26,1,13,1,29,1,28,8,29,1,9,1,15,1,30,1,28,2,29,1,28,9,1,6,}, + {1,471,28,5,29,1,30,1,9,1,15,1,9,2,25,1,9,1,25,1,13,2,9,1,25,1,9,23,15,1,9,6,15,1,25,1,13,3,25,1,9,1,15,2,9,1,15,2,9,3,25,1,13,2,9,3,13,1,8,1,9,1,13,2,9,4,25,2,15,1,30,1,26,1,29,1,25,1,26,5,13,1,26,1,29,1,26,11,29,1,26,1,30,1,28,2,26,1,29,1,30,3,13,1,30,1,29,1,30,1,28,2,9,2,26,1,30,1,26,1,29,3,28,3,29,2,28,3,29,1,28,14,29,1,30,1,28,9,29,3,28,11,13,2,28,2,29,1,28,12,29,1,30,1,28,18,29,1,28,1,26,1,30,1,28,17,30,2,28,71,29,1,28,3,29,1,28,50,29,1,15,1,26,1,28,73,29,2,28,4,30,2,29,1,28,9,29,1,28,15,29,4,26,1,30,1,29,1,28,4,30,1,26,1,30,1,29,2,30,1,28,7,29,1,28,5,29,1,30,1,29,1,28,2,30,1,13,1,26,1,28,11,1,8,}, + {1,471,28,7,13,1,9,1,13,1,26,5,13,2,25,2,9,20,15,3,9,2,15,2,9,3,13,1,25,2,13,3,25,1,9,2,15,1,9,6,13,1,25,1,9,2,13,2,9,1,13,1,26,1,25,1,9,6,26,1,29,2,25,1,26,1,25,1,26,1,30,1,29,1,30,1,29,2,30,1,26,2,13,1,26,10,28,2,29,1,26,1,13,1,28,1,29,1,26,1,30,2,13,1,29,1,28,1,26,1,14,1,25,1,30,1,29,2,30,1,26,2,29,1,30,1,29,3,28,3,29,2,28,12,29,1,30,1,29,1,28,7,29,2,28,13,13,1,25,1,28,2,29,1,28,11,29,3,28,20,29,1,13,1,28,16,30,2,28,3,29,1,28,123,14,1,9,1,28,80,29,2,28,26,29,1,28,8,30,3,29,2,28,1,29,1,30,1,28,2,29,1,30,1,29,1,28,5,29,2,30,1,26,2,30,1,29,2,30,1,29,1,28,12,1,8,}, + {1,471,28,8,29,1,13,5,9,2,25,1,9,22,15,2,9,3,15,1,9,4,13,1,25,1,9,1,25,1,13,1,26,2,13,1,9,3,13,1,25,1,8,1,13,1,9,1,13,2,9,2,8,1,13,1,9,2,25,1,9,2,25,1,30,1,26,1,9,3,30,1,13,1,9,1,25,1,15,2,11,1,13,2,30,2,26,1,29,3,26,2,29,6,26,2,28,4,29,1,26,1,30,3,26,1,13,1,26,1,28,2,15,1,13,1,28,3,29,2,26,1,13,3,26,2,30,2,29,4,28,12,29,1,30,1,29,1,28,5,29,2,28,14,26,1,9,1,28,13,29,1,30,1,29,1,28,13,29,2,28,2,30,1,28,4,26,1,30,1,28,14,30,1,29,2,28,126,26,1,11,1,26,1,28,117,26,2,29,1,28,3,29,2,28,1,29,1,30,1,26,1,29,1,28,5,30,5,29,2,30,1,29,1,28,12,1,9,}, + {1,471,28,1,29,1,28,2,29,2,28,3,13,1,9,4,15,2,9,9,15,1,9,20,25,3,13,1,25,1,9,2,13,4,9,2,25,1,13,4,25,1,13,2,9,1,15,1,9,1,13,1,25,1,9,1,25,1,9,2,26,1,28,1,29,1,9,1,15,1,13,1,26,1,13,1,29,1,28,1,13,1,26,1,14,1,1,3,11,2,15,1,13,1,26,3,25,2,9,1,25,1,13,1,26,3,29,1,28,4,26,1,30,1,29,1,30,1,26,2,30,1,29,1,28,1,25,1,13,1,29,2,26,1,29,1,28,1,30,2,29,3,30,2,29,6,28,4,29,2,28,6,29,2,28,4,29,2,28,15,29,1,9,1,29,1,28,12,30,1,29,2,28,13,26,2,30,1,28,1,29,1,28,4,30,1,13,1,28,13,30,1,13,1,28,2,29,1,30,1,28,69,9,1,15,1,26,1,29,1,28,2,29,2,28,13,9,1,26,1,28,32,11,1,25,1,28,118,29,2,28,3,29,2,28,3,29,1,30,1,29,1,28,3,30,3,29,1,28,6,29,1,28,11,1,10,}, + {1,471,28,1,12,1,8,1,28,1,29,1,26,1,30,1,29,2,30,1,13,1,9,14,15,2,9,19,25,2,9,7,13,2,9,3,13,1,9,2,13,1,9,1,13,2,9,1,15,1,9,1,26,2,13,1,26,1,30,1,26,1,28,2,26,1,15,1,9,1,26,1,9,1,29,1,28,2,30,1,28,2,1,5,14,1,13,1,29,1,26,1,9,1,14,2,15,1,9,1,15,1,14,1,26,1,25,1,26,1,28,2,30,1,28,2,29,1,28,1,30,1,26,1,29,3,28,1,26,1,13,1,26,3,29,1,28,1,29,1,28,10,29,1,28,4,29,1,30,1,29,1,28,7,29,2,28,2,29,2,28,16,29,1,25,1,29,1,28,12,26,1,28,15,30,1,13,1,29,1,28,6,29,1,28,12,26,1,13,1,26,1,29,1,30,1,28,2,30,1,29,2,28,65,26,1,14,1,1,1,11,1,25,1,29,1,28,2,29,2,28,6,29,1,28,5,11,1,1,1,28,13,29,2,28,17,15,1,14,1,28,124,29,1,28,8,29,1,30,1,13,1,26,1,29,1,28,18,1,11,}, + {1,471,28,1,16,1,11,1,16,1,29,1,28,1,30,1,26,2,29,1,13,1,9,5,15,1,9,15,13,2,25,1,9,21,13,1,9,3,13,1,9,2,13,3,25,1,9,2,13,1,30,2,29,1,30,1,28,3,29,1,9,1,15,1,13,2,8,1,28,3,11,1,10,1,28,1,11,1,1,4,11,1,9,1,26,1,25,1,15,1,14,1,15,1,9,3,15,1,13,1,25,1,13,1,29,1,30,1,26,1,29,1,28,3,29,1,30,1,29,3,28,1,29,5,28,3,29,5,28,5,29,1,28,4,29,3,28,7,29,2,28,2,29,2,28,16,29,1,13,1,26,1,28,11,30,1,26,1,28,16,29,1,28,18,29,1,30,1,13,1,26,1,29,1,28,1,30,1,28,2,29,2,28,2,29,2,28,59,29,1,28,2,11,1,1,1,14,1,13,1,29,1,28,11,29,1,28,4,14,1,1,1,25,1,28,13,29,2,28,16,9,1,14,1,29,1,28,6,29,1,28,116,29,2,28,8,30,1,13,1,26,1,29,1,28,18,1,12,}, + {1,471,28,2,11,2,30,1,28,2,29,1,30,1,29,1,30,1,13,1,9,4,15,1,9,11,25,1,13,6,25,1,9,24,13,1,25,1,13,4,9,3,13,1,26,2,30,1,26,1,30,1,29,2,25,1,15,1,9,1,30,1,26,1,28,3,7,1,1,1,12,1,29,1,16,1,1,2,11,3,15,1,25,1,9,1,15,1,9,5,13,2,26,1,25,1,13,1,26,1,30,1,29,1,13,1,28,3,29,4,28,1,26,1,29,3,28,2,29,2,28,2,29,1,28,6,29,3,28,3,29,3,28,30,26,1,13,1,28,11,26,2,28,17,29,1,30,1,28,15,29,1,30,2,28,3,30,1,28,7,30,1,26,1,29,1,28,58,29,1,28,1,29,1,11,1,15,1,30,1,28,18,11,1,9,1,28,14,29,1,28,17,14,1,9,1,28,134,29,1,30,1,28,19,1,13,}, + {1,471,28,2,15,1,14,1,30,1,28,1,29,3,28,2,30,1,13,2,26,1,13,1,25,6,9,4,25,1,13,9,9,12,25,1,9,9,15,1,9,1,25,1,9,1,25,1,13,3,9,1,15,1,9,1,13,2,25,1,13,2,25,1,13,2,9,3,13,1,8,1,28,2,8,1,11,1,16,1,28,2,9,1,11,1,1,2,11,2,15,1,25,1,26,1,25,1,9,2,25,1,9,2,13,1,26,1,13,2,29,1,30,1,9,1,13,1,26,2,29,1,28,6,26,1,28,5,29,1,28,3,29,2,28,1,29,7,28,3,29,4,28,5,29,1,28,6,29,1,28,9,29,1,28,6,26,1,13,1,28,4,29,1,28,6,13,1,26,1,28,15,29,3,30,1,29,1,28,9,29,1,28,3,30,1,29,1,28,3,29,1,28,2,29,1,28,3,29,2,28,2,26,1,30,1,28,61,13,1,28,20,26,1,28,14,29,2,28,16,14,1,15,1,28,24,29,1,28,131,1,13,}, + {1,472,28,1,8,2,28,2,29,1,30,1,28,1,29,3,30,1,26,3,13,1,26,4,13,4,25,1,13,6,26,4,13,1,25,1,9,17,13,2,9,1,15,1,9,1,13,2,25,1,13,1,26,1,13,1,9,2,25,1,13,4,26,1,13,1,26,1,13,1,9,2,13,2,30,1,13,1,14,1,1,2,11,1,10,1,28,1,11,1,1,2,11,3,9,1,29,2,13,1,9,1,25,1,13,1,9,1,13,1,26,2,25,1,13,1,29,1,28,1,29,1,26,1,13,1,26,1,30,1,29,1,28,2,29,2,28,1,26,2,28,3,26,1,28,2,29,3,28,3,29,8,28,3,29,1,28,22,29,2,28,6,30,1,26,1,30,1,28,10,29,2,28,15,29,4,28,9,29,1,28,2,30,1,28,17,29,2,30,1,29,1,28,7,29,1,28,87,29,1,28,16,25,1,14,1,29,1,28,155,1,14,}, + {1,472,28,1,7,1,6,1,28,2,29,2,28,1,29,3,30,2,26,11,13,7,26,4,13,1,25,1,9,17,13,3,9,2,13,4,26,1,13,1,9,2,13,7,26,1,13,1,9,2,13,1,26,1,28,2,29,1,11,1,1,2,11,2,1,4,11,1,14,1,9,1,30,2,26,1,13,5,30,2,25,1,9,1,13,1,28,3,26,1,13,2,26,1,28,5,13,1,26,1,28,1,29,1,28,2,29,17,28,2,29,2,28,14,29,1,30,1,26,1,30,1,29,1,28,10,29,1,30,1,26,1,30,1,28,9,29,2,28,14,30,2,29,1,30,1,28,6,29,2,30,1,28,4,29,1,28,9,30,1,28,7,29,1,28,1,29,2,28,5,29,1,26,1,29,1,28,103,29,1,11,1,13,1,28,155,1,15,}, + {1,472,28,1,29,2,28,2,30,1,29,1,28,1,29,4,30,13,26,2,13,5,26,3,13,1,25,1,9,16,25,1,13,3,9,3,25,1,9,2,13,2,9,3,13,1,25,2,13,1,8,1,13,1,26,1,13,1,9,2,13,2,28,3,8,1,1,1,16,2,1,4,11,2,15,1,25,1,30,1,26,3,13,3,26,1,30,1,13,2,25,2,30,1,28,3,30,1,26,1,9,1,13,1,29,1,28,3,29,1,9,1,28,4,26,1,28,1,29,6,28,2,29,13,28,3,29,1,28,9,30,1,13,2,29,1,28,12,29,1,28,6,29,2,28,3,30,2,28,13,30,2,29,2,28,5,29,1,30,1,29,1,28,26,29,2,28,3,26,2,29,1,28,8,30,1,29,1,28,94,14,1,15,1,28,30,29,1,28,124,1,16,}, + {1,472,28,4,29,9,30,5,29,7,30,2,26,1,13,4,30,1,26,2,13,1,9,18,13,2,25,1,9,3,25,1,9,2,13,1,9,7,25,1,13,3,25,1,9,1,25,1,13,1,9,1,13,1,28,2,29,1,1,1,12,1,11,1,1,3,11,2,14,1,9,1,13,1,26,1,25,1,13,1,26,1,13,5,9,1,13,1,26,3,30,1,28,4,13,1,9,1,13,1,26,1,28,3,9,1,26,1,28,1,29,3,28,1,29,7,28,1,29,8,28,3,29,1,28,1,29,2,28,12,29,2,28,14,29,4,26,1,29,1,28,6,30,1,29,1,28,14,30,1,28,5,29,1,28,2,29,1,28,3,26,1,28,12,29,1,28,8,29,3,28,2,13,1,26,1,28,8,29,1,26,1,29,1,28,94,14,2,28,151,29,1,28,2,1,18,}, + {1,472,28,4,29,12,30,2,29,7,30,1,29,2,13,4,30,1,26,2,13,1,9,18,25,1,13,1,25,1,9,2,13,1,30,2,26,1,30,1,13,7,26,2,13,1,25,1,9,2,13,2,9,1,15,1,25,1,28,1,6,1,11,1,17,1,1,4,11,2,14,1,9,1,13,2,25,1,13,1,26,1,13,4,9,3,13,1,26,1,30,1,26,1,30,1,28,1,29,1,28,2,30,1,25,1,9,1,13,1,30,1,28,1,26,1,9,1,30,1,29,1,28,2,30,1,28,1,29,1,28,1,29,13,28,19,29,1,28,3,29,1,28,10,29,1,26,3,29,2,28,8,30,1,29,1,28,13,29,1,28,3,29,1,28,1,29,2,28,5,26,1,28,12,29,1,28,8,29,1,28,1,29,1,28,1,29,1,26,1,28,8,29,1,26,1,29,1,28,5,29,1,28,88,15,1,14,1,29,1,28,53,29,1,30,1,29,1,28,97,1,19,}, + {1,472,28,6,29,16,30,2,29,1,26,1,29,2,13,1,25,1,13,2,26,3,13,1,9,17,25,2,13,1,9,2,25,1,30,1,29,4,26,1,30,2,26,1,13,2,30,1,29,1,13,1,9,4,13,2,9,1,15,1,1,1,11,2,1,7,11,1,16,1,26,1,30,1,26,1,25,1,13,5,9,4,26,2,25,1,9,1,25,1,26,2,28,4,26,1,9,2,13,1,28,1,13,1,9,1,13,1,30,1,26,2,30,2,29,19,28,5,29,2,28,7,29,1,28,14,29,4,28,10,29,2,28,13,29,1,28,3,29,1,28,1,29,2,28,5,29,1,28,10,29,1,28,7,29,1,28,4,29,2,28,8,29,2,26,1,29,1,28,5,29,1,28,88,14,2,30,1,28,55,29,2,28,92,29,1,28,3,1,20,}, + {1,473,28,3,29,21,26,1,29,2,9,2,13,2,26,2,13,2,9,14,25,3,13,3,9,3,26,1,30,1,26,1,13,1,26,2,30,2,26,1,13,2,30,1,28,1,13,1,9,1,25,1,13,2,9,1,25,1,13,1,28,1,9,1,11,1,1,4,11,1,1,2,11,1,14,1,8,1,29,2,26,1,25,1,13,2,26,2,13,2,9,2,13,1,26,1,9,1,15,2,9,1,26,2,30,1,29,1,28,3,26,1,25,1,15,1,28,2,25,1,15,1,26,1,13,1,30,1,13,1,26,3,30,1,29,3,30,2,29,12,28,2,29,3,28,7,29,2,28,12,29,1,26,2,29,1,28,2,29,2,28,23,29,1,28,11,29,1,30,1,28,13,29,1,26,2,29,3,28,4,29,2,28,8,30,1,26,1,29,1,28,6,29,1,28,87,14,2,26,1,28,152,1,22,}, + {1,473,28,4,29,20,26,1,29,2,9,2,13,6,25,1,9,11,25,3,13,5,9,2,25,1,26,2,13,1,25,1,13,1,26,1,30,2,13,1,25,1,13,1,30,1,28,1,30,1,13,1,30,1,29,1,26,1,25,1,13,1,26,1,28,1,30,1,14,1,1,7,11,1,15,1,13,1,28,1,29,1,26,1,13,2,26,1,30,1,26,1,13,2,26,1,30,1,26,1,9,1,15,1,9,1,26,1,29,1,26,2,30,1,29,2,28,4,29,1,25,1,29,2,15,1,28,2,30,1,26,8,30,8,29,7,28,1,30,1,29,1,28,2,29,2,28,4,29,1,28,14,29,1,26,1,30,1,28,14,29,1,28,6,29,2,28,4,29,1,30,1,28,10,29,1,30,1,28,14,26,2,30,1,29,2,28,3,29,1,28,2,29,2,28,4,26,2,29,1,28,6,26,1,29,1,28,8,29,1,28,77,29,1,15,1,11,1,29,1,28,28,29,1,28,122,1,24,}, + {1,473,28,1,29,1,28,1,29,1,28,1,29,19,30,1,29,2,15,1,14,1,13,6,9,6,13,2,9,1,13,2,15,1,9,4,25,1,13,2,9,3,13,3,26,4,30,2,13,3,30,1,29,4,28,1,30,1,25,1,9,1,25,1,30,1,26,1,25,1,14,1,1,5,11,1,9,1,26,1,29,1,30,1,26,1,13,1,25,1,26,1,30,1,26,1,13,2,26,1,30,2,9,1,15,1,25,1,26,2,30,1,28,1,13,2,26,1,28,1,30,2,28,4,29,5,28,3,29,1,28,2,29,3,30,1,26,1,13,2,26,3,13,1,26,6,30,1,29,2,30,1,29,2,28,6,29,2,28,14,30,1,29,1,28,27,30,1,28,11,13,1,28,16,30,2,29,2,28,3,30,1,28,2,29,1,28,3,29,1,30,1,29,2,28,5,29,2,28,8,29,3,28,77,14,2,30,1,28,31,29,1,28,49,29,1,28,69,1,25,}, + {1,473,28,3,29,21,30,1,29,2,15,1,14,1,13,6,25,1,9,6,13,1,26,1,30,2,13,1,25,2,9,6,13,8,26,3,13,2,26,1,30,2,28,1,29,3,26,1,9,2,13,1,29,3,26,1,9,1,14,1,11,1,1,1,15,1,9,1,13,1,30,3,26,1,13,3,26,5,13,1,15,2,9,1,30,2,13,2,30,2,26,2,30,1,29,1,26,2,29,1,28,17,29,1,30,3,29,1,30,1,26,8,30,1,29,4,28,6,29,3,28,13,30,1,29,1,28,27,30,1,29,2,28,8,29,3,28,17,29,1,30,1,29,1,28,2,29,5,28,2,30,1,29,1,28,7,29,1,28,8,29,2,28,77,25,1,14,1,15,1,30,1,28,33,29,1,28,117,1,26,}, + {1,473,28,3,29,20,30,2,29,2,15,1,14,1,25,1,26,1,25,1,13,3,25,1,9,6,25,1,26,2,13,1,26,3,13,3,25,2,13,1,26,1,13,7,26,2,13,2,26,1,29,2,30,1,28,1,29,2,30,1,13,1,9,1,25,1,26,1,30,1,26,1,29,1,28,2,29,1,30,1,7,1,30,5,26,2,13,1,26,2,13,1,26,3,13,1,9,1,14,1,9,1,26,2,13,2,26,1,30,1,29,1,13,1,26,1,13,1,30,2,9,1,26,1,29,1,28,2,29,2,28,2,29,3,28,18,29,2,28,3,29,2,28,8,29,2,28,12,29,1,30,1,29,1,28,28,29,1,28,9,29,1,28,1,29,1,28,16,29,2,28,1,29,1,28,3,29,2,28,1,29,1,28,2,29,1,28,15,29,2,28,78,9,1,14,1,15,1,30,1,28,34,29,2,28,115,1,27,}, + {1,473,28,2,29,21,30,2,29,2,15,1,11,1,9,1,13,1,25,2,13,3,9,7,13,1,9,2,13,1,29,1,30,1,26,1,30,2,13,2,26,1,13,3,25,1,13,8,30,1,29,2,30,1,29,3,30,1,13,1,9,1,13,1,29,2,25,2,26,1,29,2,28,1,29,4,30,1,26,3,30,2,26,4,13,1,9,1,15,1,9,1,26,1,13,1,9,2,26,1,30,1,26,1,30,3,13,2,30,1,26,1,13,1,30,1,29,1,28,1,29,8,28,2,29,3,28,17,29,2,28,8,29,2,28,8,29,2,28,2,29,1,30,1,29,2,28,27,29,1,28,9,30,1,26,1,29,1,28,16,29,2,28,1,29,1,28,3,29,1,28,2,29,2,28,4,29,1,28,11,29,3,28,77,14,1,11,1,13,1,28,36,29,2,28,112,1,30,}, + {1,474,28,1,29,1,28,1,29,19,30,1,29,3,15,1,11,1,15,1,25,3,13,3,25,1,9,6,13,1,9,2,30,2,26,1,13,1,26,2,13,2,25,9,13,3,26,2,30,1,29,2,30,1,29,2,30,1,25,1,9,1,13,1,29,2,25,1,9,1,13,1,26,1,13,3,26,12,13,1,9,2,15,1,25,1,26,1,13,1,9,2,26,1,30,1,25,1,28,1,29,1,30,1,29,1,13,2,30,1,13,2,26,1,29,1,28,2,29,8,30,3,26,2,30,1,29,1,30,2,29,9,28,2,29,2,28,2,29,1,28,6,29,1,28,8,29,2,28,2,29,1,30,1,29,2,28,26,29,1,30,1,28,2,29,1,28,7,13,1,29,1,28,18,29,3,28,2,29,1,28,2,29,2,28,4,30,1,28,10,29,1,28,78,29,1,14,1,15,1,29,1,28,149,1,32,}, + {1,474,28,1,29,21,30,2,29,2,15,1,1,1,15,1,25,4,13,3,9,5,25,2,9,1,13,1,29,1,13,6,9,1,15,1,9,2,25,3,9,1,25,2,13,3,26,1,30,5,29,2,30,1,25,1,9,1,13,1,29,2,13,1,9,1,13,5,9,2,25,3,13,2,25,1,13,3,26,1,13,1,25,1,9,2,25,1,26,2,9,2,26,1,29,1,30,1,28,1,26,1,9,1,28,2,13,1,26,2,9,2,13,1,29,1,28,1,29,1,30,1,29,1,30,1,26,1,30,7,29,3,30,1,26,1,30,1,29,8,28,1,29,4,28,1,29,1,28,6,29,2,28,5,29,3,28,3,29,1,30,1,29,2,28,39,26,1,28,18,29,3,28,2,29,1,28,2,29,1,28,94,25,1,14,1,15,1,29,1,28,2,29,1,28,145,1,34,}, + {1,474,28,1,30,1,28,1,29,19,30,1,29,3,9,1,1,1,14,1,9,1,25,3,13,3,9,4,25,2,9,2,13,1,30,1,13,1,26,2,13,3,25,1,15,1,9,1,25,1,13,5,26,2,13,2,26,1,30,1,29,1,30,3,29,2,26,1,25,1,9,1,13,1,30,1,28,1,30,1,26,1,13,1,9,7,25,7,13,1,26,2,13,3,26,1,30,1,26,1,13,1,25,1,26,1,29,2,13,1,9,2,28,3,30,1,29,1,26,1,13,1,25,1,13,1,29,3,26,5,30,6,26,8,30,4,29,6,28,1,29,2,28,6,29,2,28,4,29,1,28,6,29,3,28,39,30,1,13,1,28,15,29,1,28,3,29,1,28,4,29,1,28,3,29,2,28,88,29,1,15,1,14,1,9,1,28,148,1,36,}, + {1,474,28,1,29,1,28,1,30,1,29,18,30,1,29,3,9,1,1,1,11,1,9,1,25,3,13,3,25,1,9,1,25,1,9,1,25,2,9,2,26,2,25,1,26,1,30,1,13,2,26,1,13,1,9,2,13,1,26,4,30,1,29,2,26,1,13,1,26,1,29,2,30,1,26,1,30,3,13,1,25,1,9,1,13,1,29,4,28,1,30,3,26,3,13,3,26,3,13,1,9,2,13,1,30,2,13,2,26,6,13,1,25,1,15,1,9,1,13,1,28,1,1,1,28,1,30,1,28,3,13,1,9,1,26,1,28,1,29,1,26,1,29,1,26,2,30,1,29,2,30,3,26,3,30,4,26,1,30,2,29,4,28,2,29,2,28,2,29,2,28,2,29,1,28,3,30,1,29,1,28,2,29,2,28,7,29,3,28,32,29,1,26,1,29,1,28,2,30,1,28,2,29,1,30,1,28,23,29,1,28,25,29,1,28,66,26,1,9,2,26,1,28,147,1,38,}, + {1,474,28,2,30,1,28,1,29,9,30,1,29,8,30,2,29,2,9,1,11,3,25,1,9,3,13,1,25,2,9,1,25,3,9,1,15,1,26,1,29,1,13,1,25,1,13,1,26,2,13,2,26,2,13,2,25,1,13,2,26,4,9,1,13,1,29,1,30,1,26,1,30,1,28,1,26,1,28,2,13,1,9,1,13,1,26,1,29,8,30,1,29,1,30,1,26,3,13,2,26,1,30,1,13,1,25,1,9,1,13,1,30,2,26,2,13,3,25,1,9,2,15,2,13,1,7,1,28,2,1,1,28,1,7,1,6,1,28,2,13,1,9,2,29,1,28,1,13,1,26,4,13,2,26,3,30,2,29,1,30,3,29,1,30,2,29,4,30,2,29,1,28,2,29,3,28,1,29,1,28,5,29,2,13,1,26,1,29,1,28,3,29,3,30,3,29,2,28,40,29,2,28,9,29,2,28,5,29,1,28,9,30,2,28,18,29,2,28,65,29,1,26,1,13,1,26,1,28,147,1,40,}, + {1,474,28,2,30,1,29,19,30,2,29,2,9,1,11,3,9,4,25,3,9,2,25,2,9,2,30,1,29,1,13,2,26,3,13,1,26,1,30,2,26,3,13,3,26,2,25,1,9,1,26,1,29,2,30,1,29,3,28,1,29,1,13,1,25,1,13,1,26,1,28,1,29,5,30,2,29,2,30,1,26,1,30,1,26,1,13,3,28,1,30,1,13,1,9,1,13,1,30,2,13,1,30,1,13,3,9,5,13,1,9,1,28,2,1,2,28,2,7,1,28,3,30,1,26,1,30,1,29,1,30,1,9,2,13,1,30,1,26,2,13,1,26,4,13,7,26,2,13,2,30,1,29,5,28,8,29,1,28,1,29,1,26,2,13,1,29,2,13,1,26,1,29,1,28,3,30,2,28,28,29,2,28,56,29,1,28,67,29,2,28,38,29,1,28,109,1,42,}, + {1,475,28,1,30,1,29,15,30,6,29,2,9,1,11,1,1,1,11,1,15,1,9,1,25,1,9,2,13,2,25,1,9,1,25,3,26,1,29,1,26,1,25,1,13,1,26,2,13,1,26,3,13,1,26,4,13,2,26,1,30,1,9,1,25,1,26,1,29,4,30,1,26,2,13,4,26,1,29,3,28,1,29,6,30,4,26,1,13,2,28,1,30,1,9,2,13,1,30,2,26,1,30,1,13,2,25,1,9,2,25,1,13,1,30,1,6,1,9,1,28,1,1,3,28,2,6,1,9,1,28,3,29,2,30,2,26,1,13,1,30,1,29,3,30,3,26,5,13,2,26,1,30,1,29,1,28,3,29,8,28,9,29,1,13,2,30,1,29,1,26,1,29,2,28,5,29,2,28,9,29,1,28,8,29,1,28,7,29,1,28,11,29,1,26,1,29,1,28,17,29,1,30,1,29,2,28,3,29,1,28,16,29,2,28,215,1,45,}, + {1,475,28,1,29,1,28,1,29,15,30,5,29,2,9,1,11,1,1,2,14,1,9,1,13,1,9,2,13,1,26,1,25,1,9,1,13,2,26,1,29,1,26,1,25,3,13,2,26,3,13,1,9,1,13,2,26,2,13,2,26,1,29,1,13,2,26,1,29,1,26,3,13,2,25,1,9,1,13,1,26,1,13,2,28,6,29,3,30,6,13,2,30,1,26,1,25,1,9,1,13,1,26,1,30,2,13,2,9,4,26,1,30,1,26,1,29,1,7,1,28,1,1,5,28,1,8,1,13,2,28,3,30,1,29,3,28,19,29,2,30,2,29,5,28,10,26,1,29,1,28,10,29,2,28,10,29,1,28,7,29,2,28,5,29,3,28,10,29,3,30,1,29,1,28,3,29,2,28,10,30,1,13,1,30,3,29,1,28,1,26,1,28,2,29,1,28,10,29,3,28,213,1,49,}, + {1,475,28,1,29,1,28,1,29,16,30,3,26,1,29,2,9,1,11,1,1,2,11,1,15,1,25,1,9,2,13,1,26,1,13,1,25,1,13,2,26,1,29,1,26,1,9,1,13,3,26,1,30,1,29,1,30,1,13,2,25,1,13,2,26,4,30,1,29,1,26,3,25,1,9,1,25,1,13,1,30,1,13,1,9,1,25,1,26,1,13,1,26,1,28,3,29,3,30,2,13,4,26,1,30,2,26,1,13,1,26,2,13,2,25,1,13,3,9,2,15,2,9,1,25,1,26,2,13,1,28,1,30,1,28,1,1,6,28,1,30,1,26,1,13,1,26,1,29,1,28,2,29,1,30,1,28,6,29,5,28,1,29,4,30,3,26,1,30,1,26,3,29,4,28,10,13,1,29,1,28,5,29,2,28,23,29,1,28,6,29,1,30,1,29,1,28,13,13,2,28,4,13,1,28,11,29,1,28,2,29,1,28,1,29,1,26,1,28,2,26,1,28,8,29,3,28,213,1,51,}, + {1,474,28,2,29,1,28,1,29,8,30,2,29,4,30,5,26,1,29,2,9,1,11,2,1,1,11,1,15,1,9,3,13,3,25,2,13,2,26,1,13,1,25,1,26,2,13,2,26,2,30,1,26,3,13,3,26,2,13,2,26,1,25,1,13,2,25,2,26,1,29,1,28,1,30,1,25,1,9,1,13,2,26,1,28,1,29,1,30,1,26,1,13,4,9,2,13,2,26,1,30,3,26,1,13,1,26,2,13,1,9,4,13,1,9,4,25,1,13,1,25,1,30,1,29,1,13,1,28,1,1,6,28,3,26,1,13,1,25,1,30,1,29,5,30,1,29,1,26,1,13,11,26,1,30,4,26,4,30,4,29,2,28,7,13,1,29,1,28,3,29,1,28,7,29,2,28,11,29,2,28,10,29,1,28,15,29,1,28,24,30,1,28,2,29,1,28,6,29,3,28,212,1,54,}, + {1,474,28,2,30,1,28,1,29,6,30,12,26,2,29,2,9,1,14,1,11,2,1,1,14,1,9,4,25,1,13,2,9,1,25,1,13,1,25,1,13,3,26,1,13,5,26,3,13,2,25,2,13,2,25,1,13,1,25,1,13,1,26,2,30,1,28,4,26,1,9,2,13,1,26,1,30,1,13,2,9,5,25,1,13,1,30,1,29,1,30,4,26,1,13,1,26,1,13,1,9,1,15,3,9,1,13,1,9,1,25,1,13,1,25,1,13,2,9,1,26,1,13,2,28,1,1,6,28,1,29,1,28,2,30,1,13,1,9,1,26,1,29,1,28,1,29,1,26,1,13,1,26,3,13,6,26,3,13,5,30,1,26,6,30,1,26,1,30,2,29,3,28,4,30,1,28,5,29,1,28,7,29,3,28,21,30,1,28,3,29,1,26,1,30,1,28,1,29,2,28,5,26,1,30,1,28,16,30,1,28,4,29,1,28,2,29,2,28,5,29,3,28,211,1,58,}, + {1,474,28,1,29,1,30,1,28,1,29,1,30,1,29,3,30,10,26,5,29,2,9,1,14,1,11,2,1,1,11,1,15,1,9,4,25,1,13,1,9,2,25,1,9,1,25,1,13,1,25,1,26,1,13,1,26,3,13,4,25,1,9,4,25,1,13,2,26,1,29,2,26,1,29,1,28,1,29,2,28,2,26,1,13,1,26,2,13,1,9,6,13,1,26,1,29,1,28,3,30,2,26,4,13,1,9,4,25,1,9,2,13,5,25,1,13,1,30,2,28,1,1,7,30,2,28,2,29,1,30,2,26,2,30,1,26,1,9,2,13,5,9,4,13,11,26,1,30,1,29,4,30,1,26,3,28,4,29,1,28,2,29,1,28,4,29,1,28,5,29,4,28,11,29,1,28,7,29,1,28,2,30,1,13,2,26,1,28,9,29,2,28,8,29,1,30,1,28,6,29,1,28,2,29,1,28,2,29,2,28,4,30,2,28,1,29,1,28,71,29,1,28,138,1,61,}, + {1,474,28,1,30,1,29,3,30,1,29,3,30,12,26,1,30,1,26,1,29,2,25,1,14,1,11,2,1,1,11,1,14,1,9,5,13,2,25,1,9,2,25,1,13,4,26,1,13,3,25,1,9,3,26,1,13,1,9,1,13,1,30,1,13,2,26,1,30,1,29,5,28,3,26,1,13,1,30,2,26,1,25,1,9,1,13,1,26,1,30,1,29,1,28,3,29,2,28,2,29,1,30,1,13,1,30,1,13,1,30,1,9,1,14,1,9,1,13,2,9,1,15,1,9,1,26,1,13,1,25,1,13,1,25,1,26,2,30,1,28,1,1,7,28,1,8,1,28,4,26,1,13,1,30,1,29,1,30,1,26,2,30,2,26,3,30,3,26,4,13,4,30,1,26,2,30,1,29,1,28,6,30,1,13,2,30,1,29,1,28,2,29,2,28,2,29,1,28,10,29,3,28,13,29,1,28,5,29,1,30,1,13,1,30,1,29,2,28,10,26,1,28,9,29,1,28,1,13,1,30,1,28,2,30,1,28,1,30,1,28,4,29,1,28,1,29,1,28,4,26,1,30,1,28,208,1,65,}, + {1,474,28,1,30,1,29,1,30,1,29,5,30,9,26,2,30,1,26,3,30,1,29,1,13,1,14,1,11,2,1,1,11,2,15,1,9,4,13,1,25,2,9,3,25,1,13,5,25,3,9,1,13,2,26,2,9,1,13,1,26,3,30,3,29,6,30,1,13,1,25,1,13,1,30,1,29,1,28,8,29,1,30,2,29,1,30,1,26,1,30,2,29,1,30,2,9,1,15,1,9,1,13,2,25,1,9,1,25,1,26,1,13,1,25,1,13,1,25,1,13,2,28,2,1,7,28,1,9,1,30,1,28,4,29,2,30,2,29,7,28,23,29,1,26,1,13,1,26,1,28,3,29,1,28,3,29,1,28,8,29,2,28,22,29,1,26,1,29,2,28,11,30,1,29,1,28,11,30,2,28,3,29,1,28,4,29,2,28,3,29,1,26,1,29,1,28,200,1,74,}, + {1,473,28,2,29,3,30,1,29,4,30,7,26,8,30,1,29,1,13,1,15,1,11,3,1,1,11,1,15,1,9,5,25,2,9,4,25,1,13,10,26,2,9,2,13,1,26,1,30,2,26,4,30,3,26,1,13,2,9,1,13,1,30,1,28,6,29,3,26,1,13,1,26,1,30,1,26,2,30,1,29,2,30,1,29,1,9,1,15,1,13,1,26,1,13,2,9,1,13,1,26,1,13,1,25,1,13,1,25,1,13,2,28,2,1,8,6,1,9,1,28,1,29,1,28,3,29,1,30,1,29,1,28,2,29,5,28,3,29,1,28,13,29,3,28,5,29,1,26,2,28,4,29,1,28,10,29,1,28,24,29,1,28,13,29,2,28,12,29,1,28,3,29,1,28,2,30,1,29,2,28,3,29,1,26,1,29,1,28,31,29,1,28,163,1,80,}, + {1,473,28,2,30,1,28,1,29,1,30,2,29,4,30,4,26,10,30,1,29,1,13,1,15,1,14,1,11,2,1,2,14,1,9,1,15,2,9,3,25,2,9,4,13,1,26,3,13,1,26,3,13,1,26,1,30,1,26,1,9,1,15,1,9,1,26,1,30,1,26,8,13,2,26,2,13,1,26,1,29,9,26,1,13,2,26,1,13,2,26,1,30,2,29,2,9,2,29,1,30,1,13,4,26,1,13,4,26,1,30,1,28,3,1,7,28,1,15,1,30,3,28,7,29,9,28,9,29,6,28,1,29,2,28,4,29,1,26,1,30,1,26,1,28,2,29,1,28,9,29,1,28,18,30,1,29,1,28,5,29,2,28,13,29,1,28,16,29,1,28,2,30,1,28,4,29,1,26,1,29,1,28,187,1,89,}, + {1,471,28,3,30,1,29,1,28,1,29,1,30,10,26,9,13,1,26,1,29,1,13,1,15,1,14,1,11,2,1,2,11,1,15,3,9,1,15,1,9,2,13,1,25,1,9,3,13,2,26,6,13,1,26,1,30,2,13,1,15,1,9,1,13,1,26,2,30,1,29,2,30,1,26,2,13,1,9,1,13,1,26,1,30,1,13,2,26,1,29,5,28,2,29,1,30,1,13,1,25,2,9,2,13,2,26,1,30,2,25,1,26,1,28,1,29,1,26,6,13,3,26,1,30,1,28,4,1,6,28,1,9,1,13,1,30,1,13,1,26,1,29,1,28,3,29,2,28,18,29,3,28,5,29,2,28,3,29,1,28,1,13,1,9,1,30,1,28,3,29,1,28,7,30,1,28,17,29,1,30,1,28,6,30,1,29,2,28,12,29,1,28,9,29,1,28,6,29,1,28,6,26,1,28,4,29,1,28,2,1,5,28,20,1,5,28,19,29,1,28,124,1,98,}, + {1,469,28,5,29,1,28,1,30,1,26,2,29,1,26,4,30,4,26,9,13,1,26,1,29,1,13,1,15,1,14,2,11,1,1,2,11,1,14,1,15,4,9,2,25,1,13,1,25,1,9,3,13,4,26,2,13,2,26,2,30,1,26,1,9,1,15,1,9,1,26,3,30,1,29,1,30,1,26,1,13,2,9,1,13,1,26,2,13,2,26,1,30,4,29,1,28,1,29,2,13,1,25,1,26,1,30,1,26,1,13,2,9,1,25,1,13,2,9,1,30,1,28,1,29,1,26,1,30,2,13,2,30,2,13,2,26,1,29,1,28,5,1,6,28,1,9,1,13,1,26,1,13,1,26,1,29,1,28,2,29,6,28,4,29,8,30,2,29,7,28,2,29,1,28,4,29,1,26,3,30,1,28,2,29,1,28,7,30,1,28,17,29,1,28,7,29,3,28,12,29,1,28,16,30,1,28,5,30,1,29,1,28,4,30,1,28,2,1,8,28,14,1,12,28,21,1,9,28,106,1,102,}, + {1,468,28,3,6,1,28,2,29,2,13,1,26,10,30,1,26,9,13,1,26,1,29,1,13,1,9,1,14,2,11,2,1,2,11,1,15,6,9,2,13,1,25,1,9,2,25,1,13,7,26,1,13,1,26,1,30,1,13,1,9,2,13,3,26,3,13,1,25,1,13,2,26,1,29,1,30,1,13,2,26,1,30,1,29,1,30,1,29,1,28,3,29,1,9,1,25,1,29,1,28,2,29,1,26,1,13,1,9,1,25,2,9,1,30,1,28,1,30,1,26,1,30,2,13,2,29,2,26,3,29,1,28,5,1,6,28,1,9,1,13,1,30,1,26,3,29,3,30,6,29,5,30,2,29,2,30,2,29,8,30,1,29,1,28,2,29,1,28,3,30,1,13,1,29,1,26,1,13,1,28,9,29,1,30,1,28,16,29,1,28,7,29,2,28,13,29,2,28,16,26,1,28,3,29,1,30,1,29,1,28,1,29,2,28,5,1,42,28,6,1,24,28,91,1,109,}, + {1,466,28,3,29,2,28,3,29,2,13,1,30,1,13,1,25,1,13,4,26,13,13,1,26,1,29,1,13,1,9,1,14,2,11,3,1,1,11,1,15,2,14,1,9,1,15,3,9,1,25,3,9,1,25,1,13,4,26,2,13,1,26,1,13,2,29,1,26,1,9,2,26,1,13,3,26,2,13,3,30,1,28,3,13,2,26,1,30,4,29,1,28,1,29,1,30,1,9,1,25,1,29,1,28,2,29,1,28,2,13,2,25,1,9,1,29,1,28,1,29,1,30,3,13,2,29,1,28,1,30,1,26,2,29,1,28,6,1,5,28,1,8,1,26,4,13,1,26,1,28,1,29,1,26,1,30,7,26,1,29,11,30,2,29,3,28,1,29,2,28,6,15,1,25,1,13,1,29,1,28,1,29,1,28,7,29,1,30,1,28,10,29,1,28,5,29,1,28,2,30,1,28,3,29,3,28,13,29,1,28,17,30,1,28,3,29,2,28,1,29,1,28,7,1,83,28,74,1,115,}, + {1,465,28,6,29,1,28,4,30,1,13,1,9,5,25,1,13,3,26,1,30,1,26,1,13,1,26,3,13,2,26,3,30,1,26,1,9,1,15,3,14,1,11,2,1,1,11,1,14,1,15,5,9,2,25,2,9,2,25,4,13,1,26,5,30,1,29,1,26,1,13,2,30,1,13,1,9,1,25,1,29,1,28,1,29,1,26,1,28,4,30,1,13,2,30,2,13,1,30,1,29,2,28,1,30,1,9,2,28,2,29,1,28,2,29,1,30,1,13,1,26,1,9,1,26,1,28,1,29,1,26,3,13,1,25,1,26,1,28,1,29,1,13,1,29,2,28,3,29,2,28,3,1,4,28,1,9,1,30,1,26,1,13,2,26,1,29,3,26,2,29,3,30,2,29,1,30,1,29,4,30,1,29,13,28,6,30,1,9,2,26,1,28,2,29,2,28,6,26,1,28,3,29,1,28,2,29,1,28,8,29,1,28,7,13,1,26,1,28,2,29,1,28,29,30,1,28,3,29,1,28,10,1,101,28,11,1,12,28,1,1,147,}, + {1,458,28,10,29,1,30,3,28,4,30,1,25,1,9,4,15,2,9,2,13,2,26,1,30,2,26,1,13,1,26,2,13,3,26,1,30,1,26,1,25,1,9,1,15,2,14,1,11,2,1,1,11,2,15,5,9,3,25,3,9,2,25,1,13,3,26,4,30,3,26,3,13,1,9,1,25,1,26,1,29,1,28,1,26,2,30,1,28,3,30,1,13,2,26,2,29,1,28,1,29,1,28,2,9,2,28,2,29,1,28,3,29,1,26,1,30,1,25,1,26,1,28,1,29,1,30,1,26,1,30,1,26,1,13,1,30,1,28,2,30,1,28,1,29,1,28,4,29,1,28,3,1,4,28,1,7,1,26,6,29,1,28,1,30,2,29,3,30,4,29,4,30,1,29,2,30,3,29,8,28,7,30,1,26,2,30,1,29,3,28,2,29,4,30,1,13,1,28,13,29,2,28,7,30,1,26,1,28,33,29,1,28,4,29,1,28,9,1,271,}, + {1,452,28,17,26,2,29,1,28,4,30,1,25,1,9,4,15,5,9,2,30,1,29,1,26,1,13,1,26,2,13,3,26,1,30,2,13,1,9,2,15,1,14,2,11,2,1,1,11,2,14,1,15,5,9,2,13,1,25,1,9,2,25,1,13,4,26,4,30,2,26,1,13,2,25,2,26,1,13,1,26,1,28,1,29,1,13,2,29,2,28,2,13,2,30,1,26,1,29,1,28,4,9,1,25,1,29,1,28,1,29,1,28,1,29,1,28,2,26,1,30,1,13,1,30,1,28,1,29,2,26,1,30,1,26,3,30,1,29,2,28,2,29,1,28,4,29,1,28,2,1,4,28,1,29,1,30,1,13,1,26,3,13,1,30,1,28,1,30,1,29,3,30,1,26,2,30,3,29,3,30,1,29,2,30,5,29,6,28,2,29,1,28,4,29,2,26,1,30,1,29,1,28,1,29,6,28,2,13,1,30,1,28,11,29,5,28,6,26,1,28,37,29,1,28,7,29,1,28,2,1,271,}, + {1,451,28,4,29,7,28,13,29,1,26,1,13,1,25,1,9,5,15,2,14,2,15,1,13,1,26,1,13,7,26,1,30,2,13,1,25,1,9,2,15,3,11,1,1,2,11,2,14,1,15,4,9,2,13,1,25,1,9,2,25,1,13,4,26,3,30,2,26,1,13,1,9,1,25,1,13,1,26,1,30,1,26,1,13,1,26,1,28,1,26,2,30,2,29,2,13,1,26,2,9,2,13,1,26,1,29,1,26,1,25,1,13,1,29,1,28,5,29,1,26,1,30,1,26,2,30,1,26,1,29,1,26,1,30,2,26,1,13,2,26,1,29,1,28,2,29,2,28,3,29,2,28,2,1,3,28,1,29,1,28,1,26,1,13,1,26,4,30,2,29,3,30,4,26,1,30,3,29,1,30,8,29,7,28,5,30,1,26,1,29,2,28,2,29,1,30,2,29,2,28,5,13,1,26,1,28,6,29,1,28,5,29,1,30,1,26,1,30,1,29,1,30,1,29,1,28,2,30,1,29,1,28,31,29,1,28,9,29,1,28,5,1,271,}, + {1,449,28,3,29,1,30,2,28,1,29,1,28,1,29,1,28,8,29,1,28,4,29,1,30,1,26,1,13,4,9,6,15,5,9,1,13,4,25,1,13,2,26,1,30,2,26,1,13,2,9,1,15,3,14,1,1,3,11,2,14,2,15,3,9,2,25,1,13,2,25,4,13,2,26,2,30,1,26,1,13,1,25,1,9,1,13,1,26,2,29,1,26,1,13,1,25,1,29,1,28,1,29,1,30,1,29,1,26,1,13,2,26,1,30,1,13,1,9,3,13,4,26,1,28,6,30,1,29,1,30,1,26,1,13,2,30,2,29,2,30,1,26,2,30,1,28,4,29,2,28,2,29,3,28,1,1,3,28,1,29,1,28,1,29,1,26,6,30,1,29,3,30,4,26,2,30,11,29,8,28,4,29,2,28,4,29,4,28,1,29,2,28,3,29,1,13,1,29,1,28,4,29,2,28,5,29,1,26,1,30,1,29,1,30,2,28,3,29,1,30,1,29,1,28,14,29,1,28,15,29,1,28,9,29,1,28,5,1,271,}, + {1,448,28,2,30,1,26,1,29,1,28,2,29,1,30,1,29,2,28,7,29,1,28,4,29,1,26,1,13,6,9,9,15,1,14,1,15,1,9,1,13,6,26,1,30,2,26,1,13,2,9,3,16,1,15,1,11,1,1,3,11,2,14,2,15,3,9,2,25,3,9,1,25,2,13,1,25,1,13,1,26,3,13,1,9,1,25,1,26,4,30,1,26,1,25,1,13,1,29,1,28,1,29,2,13,1,9,1,13,1,26,1,28,2,29,1,13,1,9,1,26,2,25,1,26,2,29,1,28,5,29,3,30,1,13,2,26,2,30,1,29,1,30,3,29,1,28,1,29,1,28,2,29,1,30,1,29,1,28,3,29,1,28,2,1,2,28,1,29,1,28,2,29,1,30,1,26,1,13,2,26,1,30,1,29,3,30,3,26,4,30,13,29,7,28,1,29,2,28,6,29,2,28,2,29,2,28,4,30,1,26,2,29,1,28,9,30,1,26,1,29,1,28,1,29,2,28,4,29,2,28,14,29,1,28,18,29,1,28,12,1,271,}, + {1,442,28,7,29,1,26,2,29,1,28,1,29,1,30,1,29,1,30,1,29,3,28,9,29,1,13,7,25,1,9,1,25,1,9,3,15,2,9,3,15,3,9,1,13,5,26,1,30,2,26,1,13,4,8,1,9,2,16,1,11,1,1,4,11,1,14,4,15,2,9,3,25,3,13,1,25,1,13,1,26,3,25,2,26,1,30,1,26,2,30,1,29,1,30,1,26,1,9,1,26,1,29,2,30,1,13,2,26,1,30,1,28,3,30,1,13,1,26,1,13,1,25,1,29,1,30,2,28,5,26,1,13,1,30,1,29,1,26,1,13,2,26,2,30,1,26,1,30,1,29,3,30,1,28,2,29,1,30,1,29,1,28,4,29,1,28,2,1,1,28,1,30,1,28,2,29,1,30,1,26,5,29,2,30,4,26,4,30,13,29,1,30,5,29,2,26,1,30,1,28,6,29,1,28,10,26,1,13,1,30,1,29,2,28,7,13,1,28,1,29,1,28,8,29,1,28,14,29,1,28,18,30,1,28,12,1,271,}, + {1,437,28,14,26,1,13,1,26,1,30,1,29,5,30,1,29,5,28,3,30,1,13,1,30,1,13,5,9,2,13,1,9,11,15,1,9,1,13,1,26,1,13,3,26,1,30,3,26,1,13,2,26,2,13,2,8,1,15,1,11,1,1,4,11,2,14,2,15,1,14,1,15,1,9,2,25,1,13,3,25,1,13,1,26,2,13,3,26,2,13,1,26,1,28,2,29,1,30,1,9,2,30,1,29,1,13,2,30,2,28,6,29,1,9,1,13,1,28,1,29,1,30,1,29,2,28,1,29,1,30,1,25,1,15,1,13,1,29,2,30,1,13,1,26,2,30,1,26,1,29,1,28,1,29,1,26,1,30,1,28,2,29,1,30,1,29,1,28,4,30,1,28,2,1,1,28,1,30,1,28,2,29,1,30,1,29,2,26,1,13,2,30,1,29,1,30,4,26,5,30,3,26,1,30,8,26,6,29,2,26,1,30,1,28,17,29,2,30,1,26,1,29,1,30,1,29,1,28,5,30,1,28,10,29,1,28,13,30,1,28,18,29,1,28,12,1,272,}, + {1,435,28,3,29,1,28,12,26,1,25,1,13,1,30,3,29,1,28,1,29,1,26,1,13,2,26,2,29,1,28,2,30,1,13,1,25,1,13,2,26,2,13,1,25,1,9,2,13,1,9,12,14,1,9,1,29,1,28,1,30,1,25,1,26,1,29,1,26,1,30,1,29,1,13,1,30,2,29,1,30,1,26,1,8,1,9,1,16,1,11,2,1,3,11,3,14,4,15,1,9,1,25,1,13,1,25,2,13,2,26,5,13,1,26,1,13,1,26,1,29,2,28,1,26,6,30,1,29,1,28,6,29,1,26,1,13,5,26,3,13,4,30,1,28,1,29,3,30,2,29,1,30,1,29,1,28,1,29,1,30,1,29,1,28,1,29,2,28,2,29,1,28,2,29,1,28,4,29,1,26,1,28,2,29,4,30,1,26,1,13,2,26,1,13,2,26,1,29,1,30,2,29,6,30,7,29,1,30,4,29,2,28,2,29,1,26,2,29,1,28,2,29,1,30,1,29,2,28,9,29,1,30,2,26,1,29,1,30,1,29,3,28,2,29,1,28,3,29,2,28,7,29,1,28,12,29,1,28,31,1,272,}, + {1,432,28,3,30,1,29,1,28,11,29,1,28,3,30,1,25,2,26,1,29,3,30,1,26,1,30,1,28,7,30,1,25,1,9,3,25,1,13,3,25,3,9,11,15,1,9,1,26,1,28,1,29,1,13,1,26,1,29,1,30,3,26,1,29,4,26,1,8,1,9,3,12,1,11,1,1,4,11,4,14,2,15,1,9,2,13,2,25,2,9,1,25,1,13,1,26,2,13,1,26,3,29,1,30,1,28,2,30,1,13,1,25,1,13,1,26,1,30,1,26,2,29,1,28,7,29,1,13,1,9,2,25,1,13,1,9,1,13,4,29,1,28,1,30,4,29,2,30,1,29,1,28,2,29,4,30,1,28,2,29,1,28,8,15,1,28,4,29,2,26,4,30,1,26,1,13,1,9,1,25,1,9,10,13,5,25,1,13,4,26,3,30,1,28,1,30,1,13,1,26,1,28,3,26,1,29,2,28,9,30,1,28,10,29,1,28,12,29,1,28,12,29,1,28,31,1,272,}, + {1,426,28,7,29,1,25,1,30,1,28,2,29,2,28,9,29,2,28,1,29,1,13,1,25,1,13,1,30,1,26,1,30,1,29,1,28,10,13,1,9,1,15,2,9,2,25,1,13,3,25,1,13,1,25,2,9,9,15,1,9,1,29,1,28,1,30,1,26,1,29,2,30,1,26,1,29,4,30,1,13,1,9,3,7,1,9,1,15,1,11,1,1,4,11,7,14,1,9,2,25,2,9,2,13,4,26,2,29,1,28,1,29,1,28,2,30,1,13,2,26,1,30,2,13,3,30,1,26,2,30,1,29,1,28,4,26,1,9,2,25,1,26,1,13,4,30,1,28,1,30,4,28,1,29,1,26,1,30,1,29,1,28,2,29,2,30,2,28,6,29,2,28,3,15,1,30,1,29,1,28,4,26,1,29,1,30,1,29,1,28,2,29,1,26,1,13,7,26,2,30,1,13,7,26,2,30,1,29,5,28,2,30,1,26,1,30,1,28,2,29,3,28,9,30,1,28,10,30,1,29,2,28,10,29,2,28,43,1,272,}, + {1,422,28,11,29,1,30,1,29,4,28,11,29,3,30,1,13,1,9,1,30,1,29,1,28,12,26,1,9,1,15,4,9,2,13,1,26,1,25,3,9,10,15,2,13,1,28,2,29,3,30,1,26,1,29,1,28,1,29,1,30,1,13,1,25,1,9,2,25,1,13,1,8,1,9,1,15,1,11,2,1,6,11,4,14,1,15,1,9,1,13,7,26,2,30,1,28,3,30,1,26,1,13,3,26,1,30,1,26,1,30,1,26,3,30,2,26,1,13,1,29,1,28,3,30,1,13,1,30,1,29,1,26,2,13,1,25,1,26,1,28,1,30,2,29,2,28,1,29,1,26,2,29,1,28,2,29,1,30,2,29,1,28,3,29,1,28,1,29,1,13,1,30,1,28,3,25,1,26,3,28,4,30,1,26,2,30,1,29,2,30,2,29,5,28,5,30,2,29,2,28,10,29,1,28,2,30,1,26,2,28,3,29,2,28,8,30,1,28,9,29,1,30,1,29,2,28,11,29,3,28,2,29,1,28,5,29,1,28,33,1,271,}, + {1,419,28,15,29,1,13,1,26,1,29,5,28,9,29,3,30,1,13,1,29,1,28,8,29,2,28,2,29,1,26,1,13,1,9,2,15,1,14,2,15,1,9,1,13,3,25,1,9,6,25,1,9,2,25,1,9,1,15,1,9,1,29,1,28,2,29,1,30,2,29,2,28,1,29,1,26,1,13,1,25,1,13,3,9,5,15,1,14,1,11,1,1,6,11,2,1,1,11,1,15,1,9,1,25,1,13,7,26,1,29,1,28,1,29,2,30,1,13,1,9,1,13,1,26,1,29,2,26,2,13,1,26,1,30,2,26,1,13,1,26,1,30,1,28,5,29,3,26,1,9,1,13,1,28,1,29,1,30,1,29,4,26,1,30,1,29,1,28,2,29,4,28,5,29,1,26,2,29,1,28,2,25,1,26,1,29,1,30,1,26,2,28,3,29,1,26,2,30,1,29,1,30,1,26,1,30,1,29,3,30,1,29,1,28,17,29,2,28,3,26,1,13,1,29,1,28,11,29,2,28,2,29,1,28,4,29,3,28,14,29,1,30,2,29,1,28,1,29,1,28,27,30,1,28,9,29,1,28,1,1,271,}, + {1,417,28,3,29,2,28,12,29,1,26,2,29,2,26,1,30,1,29,2,28,6,29,3,26,2,28,6,29,7,30,1,26,1,13,2,25,1,9,3,15,1,14,2,15,1,9,1,13,1,26,1,13,1,9,2,25,2,9,2,13,1,9,2,25,2,9,1,15,1,25,1,29,1,28,1,29,1,26,1,29,1,28,2,29,1,26,1,13,1,9,1,25,1,13,2,25,1,9,4,8,1,9,2,16,1,14,1,11,1,1,9,11,1,14,1,9,2,13,2,26,1,13,2,26,2,28,1,29,2,30,1,26,2,29,1,28,3,13,2,26,1,13,2,25,1,13,1,26,2,30,1,29,1,28,7,26,1,9,1,26,1,28,1,29,1,30,1,29,4,30,2,28,3,29,4,28,6,30,1,26,1,30,1,28,2,13,1,25,1,29,2,26,3,30,1,28,6,29,2,30,1,29,2,30,1,26,2,29,2,28,11,29,5,28,1,29,1,28,2,29,1,30,2,29,1,28,10,29,1,28,2,29,2,28,4,30,1,29,1,28,14,29,3,30,1,29,2,28,28,26,1,28,9,30,1,28,1,1,271,}, + {1,416,28,2,30,2,28,15,26,1,9,1,13,1,30,1,28,1,29,3,28,4,29,3,30,1,26,2,29,1,28,3,29,1,13,2,29,3,30,3,26,1,13,2,25,1,9,5,15,2,14,3,9,1,13,1,26,1,13,1,9,1,25,4,9,4,13,2,9,2,13,1,28,2,26,1,29,1,28,2,13,2,9,2,25,1,13,2,9,2,25,2,13,2,8,1,9,3,16,1,15,1,11,2,1,8,11,1,14,1,15,1,9,1,13,1,25,1,13,1,26,2,28,1,29,1,26,1,29,1,28,10,29,1,30,2,29,2,28,3,29,1,26,1,30,1,28,3,30,1,13,1,30,1,28,1,29,1,30,1,29,1,30,1,29,4,28,1,29,1,28,1,29,1,28,2,29,2,28,5,29,1,13,1,30,1,28,2,29,1,9,1,26,1,30,1,26,2,13,2,29,2,28,2,29,4,28,2,29,6,28,11,29,2,28,9,29,1,26,1,28,9,29,1,28,9,30,1,29,1,28,2,29,1,28,11,29,4,28,1,29,1,28,23,29,1,28,1,29,1,28,2,30,1,28,11,1,271,}, + {1,403,28,14,30,1,13,1,30,1,28,1,29,2,28,8,29,1,28,3,30,1,13,3,30,1,29,8,26,1,29,3,28,3,13,1,9,1,25,1,26,1,30,2,26,4,13,5,9,4,15,4,14,3,9,1,26,1,13,1,9,1,25,1,13,3,9,2,13,1,9,1,13,1,26,1,25,1,9,2,29,1,28,1,30,2,28,1,29,1,25,2,13,5,25,2,13,4,9,7,16,1,11,1,1,9,11,2,9,2,25,1,13,1,26,1,29,2,26,1,28,19,29,1,26,2,29,1,28,2,29,1,13,1,29,1,28,1,29,1,30,1,26,2,29,1,28,1,29,2,28,3,29,1,28,2,30,2,28,6,26,1,30,1,28,2,29,1,9,1,26,1,30,1,26,2,13,1,30,1,29,2,28,1,29,3,28,3,29,4,28,1,29,6,28,6,29,6,28,6,29,1,13,1,28,8,29,1,30,1,28,2,29,1,28,2,29,1,28,2,29,1,30,1,29,1,28,13,29,1,30,1,28,28,26,1,28,4,26,1,28,11,1,271,}, + {1,392,28,4,1,5,28,5,29,1,28,11,29,1,13,2,29,1,28,11,29,3,26,1,9,1,25,1,13,1,30,1,29,3,26,2,29,1,28,9,29,1,13,1,9,2,13,1,26,2,13,6,9,8,15,3,14,2,9,1,25,1,13,1,25,2,13,3,25,1,13,1,26,1,30,1,29,1,28,1,26,1,25,1,26,1,28,1,29,1,30,1,29,1,26,1,25,2,13,4,25,2,13,3,26,1,13,2,9,8,15,2,1,10,11,1,14,1,9,1,25,1,26,2,13,1,26,1,29,4,28,15,29,2,28,1,29,6,30,1,26,1,30,1,29,1,28,2,29,3,28,4,29,1,28,1,29,3,28,4,30,1,26,1,29,1,28,2,13,1,25,1,26,4,13,1,26,1,29,32,28,5,29,2,30,1,28,6,29,1,26,1,28,9,30,1,13,1,28,14,29,2,28,14,29,1,28,14,29,1,28,2,29,1,30,1,28,11,1,271,}, + {1,388,28,15,26,1,30,1,28,14,13,1,9,1,26,1,29,1,28,11,29,2,26,1,13,3,30,1,29,3,28,15,30,1,9,1,15,1,9,1,26,1,13,4,26,1,13,2,9,6,15,4,14,2,15,1,13,1,26,1,13,1,25,2,13,1,26,1,30,1,29,3,30,1,28,1,26,1,30,1,28,1,29,1,30,1,26,1,13,5,25,1,9,2,25,1,9,1,25,1,13,4,25,1,9,5,25,2,9,3,15,1,11,1,1,9,11,1,14,1,15,1,9,2,13,1,26,1,29,5,28,14,29,1,30,1,28,2,29,1,30,2,29,2,30,1,29,2,28,1,29,1,30,2,29,1,28,3,29,2,28,2,29,2,28,4,29,1,30,1,29,1,28,2,26,1,13,1,26,1,30,1,26,1,13,1,26,2,30,1,29,31,28,5,29,1,26,1,13,1,29,2,30,1,29,1,28,1,29,2,28,4,29,1,28,6,9,1,29,3,28,11,29,1,28,33,29,1,30,1,28,11,1,271,}, + {1,386,28,17,13,2,29,1,28,13,30,1,25,2,30,1,28,9,29,2,30,1,26,1,13,1,26,1,13,1,9,1,25,1,30,1,28,18,29,1,26,1,25,1,9,1,25,1,13,6,9,7,15,2,9,1,14,3,9,1,13,2,25,2,13,2,26,1,29,3,30,1,28,1,26,5,13,6,9,6,25,5,9,1,25,1,9,3,25,2,13,3,9,1,16,1,14,1,11,1,1,10,11,1,14,1,15,1,9,1,13,1,30,1,29,1,28,18,30,2,26,3,30,1,29,2,28,2,29,1,30,1,26,2,29,1,28,3,30,2,28,3,29,1,28,5,29,2,28,2,29,1,13,1,26,1,29,1,26,1,13,1,26,2,30,1,29,28,28,2,29,3,28,4,30,1,26,1,29,1,30,2,28,1,29,1,26,1,29,1,28,11,14,1,13,1,30,2,28,10,29,1,28,46,1,272,}, + {1,384,28,19,29,1,9,1,30,1,28,14,30,1,13,2,29,1,28,6,29,2,30,2,26,1,13,3,9,3,29,1,28,12,29,2,28,1,29,1,28,4,13,1,9,2,25,1,13,1,26,1,13,1,9,2,13,1,9,7,15,1,9,1,15,1,14,2,15,2,9,1,25,1,13,3,26,1,30,3,26,1,30,1,25,1,9,4,13,1,26,1,13,3,9,10,25,3,13,1,25,4,9,4,25,1,13,2,9,1,15,1,11,1,1,11,11,2,15,1,9,1,8,1,7,1,29,1,28,13,30,1,13,1,9,1,13,3,26,1,30,1,29,2,28,1,29,1,26,1,13,1,26,1,30,1,29,2,28,2,30,2,28,9,29,2,28,3,26,1,13,1,30,2,13,1,26,2,30,1,29,3,30,3,29,23,28,2,30,1,29,1,28,5,29,1,28,1,29,1,28,2,29,1,26,1,28,9,29,1,28,2,9,2,26,1,29,2,28,8,29,2,28,16,29,1,28,29,1,272,}, + {1,374,28,12,30,1,29,1,28,15,29,1,25,2,29,1,28,10,29,2,28,1,29,1,26,2,30,1,28,5,29,1,30,1,26,1,29,1,26,1,13,2,9,4,29,1,28,3,29,3,30,1,29,2,28,3,29,3,30,3,26,2,25,1,9,1,25,1,9,2,25,1,30,2,13,1,25,1,13,2,25,1,9,5,15,5,14,1,15,1,9,3,25,1,13,1,26,3,25,1,9,3,15,2,14,1,15,1,9,1,13,6,25,1,9,7,25,1,13,2,25,8,9,2,25,1,13,2,25,1,9,2,14,1,11,1,1,12,11,2,15,1,16,1,9,1,10,1,7,2,6,2,30,2,26,1,13,1,9,1,15,1,14,2,13,2,26,2,30,1,29,4,26,1,13,2,30,1,29,3,28,2,29,1,30,1,29,1,28,8,29,2,28,3,29,1,9,1,13,1,30,1,26,4,29,3,30,3,29,20,28,1,29,2,28,2,29,2,28,1,29,1,28,9,30,1,28,13,13,1,26,1,28,1,29,1,28,8,29,1,28,17,29,1,28,29,1,272,}, + {1,372,28,15,30,1,26,1,29,1,28,9,29,3,28,2,26,1,9,1,26,1,28,10,29,1,26,3,13,1,26,1,29,1,28,1,29,4,30,1,26,2,13,1,9,4,15,1,9,1,26,1,28,1,29,1,30,1,26,1,30,1,29,1,28,1,29,3,30,3,29,2,30,1,26,2,13,1,25,1,9,1,15,1,9,1,25,1,9,1,15,1,9,1,26,1,28,1,29,1,13,1,9,1,13,2,25,1,9,5,15,3,14,1,15,4,9,6,15,2,9,1,25,2,9,2,15,2,9,1,13,3,26,2,13,1,25,1,9,6,25,1,13,10,25,2,9,3,25,1,13,2,8,1,9,1,16,1,15,1,11,1,1,19,11,1,1,4,14,1,9,1,30,1,29,2,30,4,29,2,30,1,26,1,13,1,26,1,29,1,28,1,29,1,30,1,28,3,30,1,29,2,28,7,29,2,28,4,13,2,30,2,26,1,13,1,26,1,30,1,29,3,30,2,29,17,30,1,29,1,28,2,29,2,28,1,29,2,28,5,29,1,28,6,30,1,28,10,29,1,28,2,26,1,13,1,28,1,30,2,29,5,28,50,1,272,}, + {1,371,28,4,29,1,28,11,29,1,13,1,29,1,28,10,29,1,28,1,29,2,26,1,13,1,25,1,30,1,28,5,29,4,30,1,13,1,25,1,9,2,26,1,29,1,28,1,29,4,26,3,13,3,30,3,29,1,28,2,29,1,30,1,13,1,26,2,30,1,29,1,30,1,26,8,13,1,25,3,9,5,15,1,9,1,26,1,29,1,30,1,9,1,13,2,25,2,9,5,15,6,14,1,9,1,15,5,9,2,25,1,26,2,13,2,9,1,14,1,15,1,9,1,25,1,26,1,30,1,26,2,13,3,25,2,9,3,25,3,13,5,26,3,13,1,25,1,9,5,13,4,9,1,16,1,11,2,1,18,11,1,14,1,9,1,25,1,30,1,28,2,29,1,30,5,29,1,30,3,29,5,28,3,30,1,29,1,28,8,29,2,28,4,30,1,13,2,26,1,13,3,26,1,29,3,30,2,29,1,30,6,29,1,30,2,29,7,30,2,29,4,28,1,30,1,28,7,29,1,28,1,29,1,28,3,29,1,30,1,28,13,13,1,29,2,30,1,29,3,28,5,29,1,28,16,29,1,28,29,1,272,}, + {1,370,28,13,29,2,28,2,30,1,26,1,30,1,28,10,29,2,26,2,30,1,13,1,9,1,13,1,28,5,29,2,30,1,26,3,25,1,9,2,13,1,29,1,28,1,29,1,30,3,26,3,29,1,28,11,26,1,9,2,13,1,30,2,26,1,30,3,26,2,13,2,25,3,9,5,15,1,14,1,15,1,26,1,30,1,13,3,25,3,9,6,15,3,14,2,15,1,9,3,25,1,13,1,26,2,30,1,29,1,26,1,25,1,26,1,9,1,14,3,9,1,26,1,30,1,26,3,30,1,26,2,13,1,9,9,13,1,26,1,29,1,28,1,26,2,13,4,9,4,13,2,25,1,8,1,10,2,9,1,15,1,14,1,11,5,1,3,11,5,14,1,15,1,9,1,13,1,26,1,30,1,29,2,28,1,30,1,26,1,30,1,29,2,30,1,29,8,28,4,30,1,29,1,28,4,29,1,28,3,29,3,28,4,13,1,9,1,13,2,26,1,13,1,26,1,29,3,30,1,26,1,30,11,29,6,30,2,29,4,28,1,29,1,28,2,29,1,28,2,29,1,28,1,29,1,28,6,30,1,29,1,28,6,29,1,28,5,26,1,28,11,29,1,28,16,29,1,28,29,1,272,}, + {1,369,28,13,29,1,26,2,13,3,25,1,13,1,29,1,28,8,29,3,30,1,26,1,13,1,9,2,25,1,29,1,28,4,29,1,26,3,13,1,25,1,9,2,25,1,13,2,30,1,26,1,13,2,30,1,28,17,13,1,9,2,13,1,26,3,30,1,26,1,13,1,26,2,25,1,9,4,15,2,9,2,15,1,14,2,25,1,29,1,9,1,26,1,30,1,13,1,9,2,25,1,9,5,15,2,14,2,9,3,30,1,28,1,30,1,26,1,29,1,30,1,29,2,13,2,26,1,13,1,9,1,14,2,9,1,13,1,30,1,26,2,29,2,26,1,25,1,9,1,15,2,14,6,15,1,9,1,13,1,29,1,28,2,29,1,26,1,13,11,25,1,13,3,8,1,9,3,15,3,14,2,15,2,9,2,13,1,26,1,29,2,30,1,26,1,30,1,29,1,28,1,29,1,30,2,29,13,28,2,29,1,30,1,29,1,28,8,29,2,28,3,30,1,28,1,30,1,26,1,9,1,13,3,26,1,28,1,30,1,26,1,29,1,26,5,30,3,26,2,13,1,26,1,29,5,28,1,29,1,13,2,30,1,28,3,29,3,28,5,29,2,30,2,28,2,30,1,29,1,28,11,29,1,28,13,29,1,28,15,29,2,28,3,29,3,28,11,30,1,28,10,1,272,}, + {1,368,28,5,29,1,28,7,29,1,13,1,9,2,25,1,26,1,29,2,26,1,30,1,28,7,29,2,26,3,13,1,9,4,29,1,28,2,29,3,13,1,25,2,13,1,26,1,13,1,9,1,15,2,9,1,13,1,9,2,26,1,28,20,9,1,15,1,9,1,26,2,13,2,26,1,13,1,26,1,13,2,25,1,9,6,15,2,14,1,9,1,26,2,29,2,13,1,9,2,25,1,9,6,15,3,9,1,25,1,15,1,9,1,30,2,29,2,26,1,29,1,30,1,13,1,25,1,13,2,9,1,15,2,9,1,26,1,30,1,26,3,13,1,25,1,9,1,15,4,14,1,15,4,14,1,15,3,9,1,30,1,28,2,26,1,13,7,25,1,13,2,25,1,13,8,29,2,26,4,30,2,29,1,30,2,26,2,30,2,29,3,30,2,29,4,28,1,29,8,28,3,29,2,28,1,29,1,28,7,29,2,28,2,26,1,29,2,30,1,13,1,9,1,13,2,30,1,28,2,30,1,13,1,26,6,30,3,26,3,30,2,29,2,28,1,29,2,30,1,29,1,28,2,29,5,28,4,29,1,28,3,29,2,28,1,29,2,30,2,29,1,28,1,29,2,28,5,30,1,29,1,28,11,29,2,28,44,1,273,}, + {1,368,28,5,29,2,28,4,29,1,13,1,25,1,13,1,26,2,30,1,28,3,30,1,26,1,30,1,28,5,29,2,30,1,26,1,13,2,25,1,9,4,13,1,28,2,29,1,30,1,26,1,13,2,26,1,13,1,9,1,15,2,9,1,25,1,13,1,30,1,29,1,28,4,29,2,28,2,29,5,28,1,29,5,28,3,29,1,9,1,15,1,9,1,26,2,13,5,26,1,13,1,25,1,9,4,15,3,14,1,15,1,9,1,26,1,30,2,25,1,9,2,13,3,25,1,9,1,25,1,9,1,14,1,15,1,9,1,13,2,15,1,14,1,9,1,30,1,29,1,30,1,26,3,13,1,9,7,13,3,9,3,15,14,14,2,9,1,13,1,30,2,26,1,13,3,26,3,13,4,26,8,29,3,30,1,26,3,30,1,29,2,26,2,30,1,29,11,28,1,29,1,30,1,29,2,28,1,29,3,28,4,29,3,28,7,29,1,28,3,26,1,29,3,30,1,13,3,25,1,26,1,28,1,29,1,13,1,26,8,30,3,29,1,30,3,29,1,30,1,28,6,30,1,29,2,28,10,29,6,30,1,26,1,30,1,29,2,28,5,30,1,29,1,28,11,29,2,28,20,29,1,28,14,29,1,28,8,1,273,}, + {1,368,28,4,29,1,28,4,29,1,26,1,13,2,26,1,29,1,28,4,29,1,30,1,13,2,30,1,28,5,29,1,26,2,13,2,25,2,9,2,15,1,9,1,13,1,29,1,28,1,30,2,26,1,13,2,9,2,13,1,29,1,28,9,30,1,13,1,9,1,26,2,30,1,29,7,30,1,26,4,30,1,28,1,30,1,9,1,15,1,9,1,26,2,13,2,25,2,13,2,25,1,9,4,15,4,14,2,9,1,13,2,25,1,9,2,25,1,13,2,26,1,30,1,26,1,9,1,14,1,15,1,9,1,13,1,26,1,9,1,15,1,9,1,26,1,29,1,26,2,13,3,9,4,15,2,9,3,15,1,14,2,15,4,9,2,15,5,9,5,15,2,14,1,15,1,13,1,26,1,13,1,9,1,13,1,26,5,13,2,26,1,13,7,26,2,30,1,26,8,29,2,28,1,29,2,30,1,29,7,30,1,26,2,30,1,29,1,28,2,29,2,28,3,29,2,30,2,29,1,28,6,29,1,28,3,26,1,29,5,26,1,13,1,9,2,30,1,28,1,26,11,30,1,29,2,30,3,26,1,28,4,29,5,28,10,30,2,28,5,29,1,13,1,30,1,28,6,30,1,29,1,28,11,29,2,28,20,29,1,28,14,30,1,29,1,28,7,1,273,}, + {1,368,28,1,29,1,28,2,29,1,28,4,30,1,26,1,29,1,28,5,29,1,30,1,26,1,13,1,25,1,13,1,30,1,28,4,29,1,30,1,26,1,13,3,25,1,9,2,15,3,30,1,28,1,29,1,26,1,30,2,13,1,9,1,13,1,29,1,28,13,29,1,9,2,13,1,26,1,30,1,29,4,30,2,26,1,13,6,25,1,15,1,14,1,9,1,13,1,26,2,13,1,25,2,13,1,25,1,9,3,15,6,14,1,15,1,9,1,13,1,25,1,9,4,13,1,28,2,29,1,9,1,15,1,9,1,13,4,9,1,15,1,9,1,25,1,13,1,26,1,13,1,25,2,9,2,15,1,9,5,15,1,14,2,15,1,9,7,15,7,9,4,15,3,9,1,13,1,26,1,13,1,26,3,30,2,26,1,13,1,26,1,13,3,26,2,13,2,26,1,30,1,29,1,30,1,26,6,30,1,29,4,30,2,29,7,26,3,30,1,29,2,28,1,29,2,28,3,29,1,30,3,29,1,28,6,29,1,28,3,13,1,26,1,29,4,26,3,13,1,26,1,30,1,13,1,26,5,30,2,26,4,29,2,30,3,29,2,30,1,26,2,29,1,28,14,30,1,26,1,28,6,29,1,26,1,30,1,28,5,29,2,28,11,29,2,28,20,29,1,28,23,1,273,}, + {1,367,28,5,29,2,28,1,29,1,30,1,29,1,28,6,29,1,30,1,26,2,13,1,25,1,9,1,13,1,30,1,28,3,29,1,26,2,13,2,25,1,9,3,15,3,13,1,29,1,28,1,30,1,26,1,13,2,30,1,28,4,29,2,28,11,13,1,15,2,9,1,26,1,29,3,30,1,26,1,13,4,25,1,9,1,15,1,9,2,15,1,14,1,15,1,25,1,26,2,13,1,9,2,25,2,9,3,15,6,14,1,15,1,9,1,25,1,9,4,13,1,28,2,29,1,9,1,15,1,9,1,13,1,26,1,25,1,26,1,25,1,14,3,9,1,13,1,9,5,15,2,9,4,15,3,9,13,15,2,9,2,15,1,9,3,15,2,9,2,13,2,26,1,30,1,29,1,28,1,29,1,26,1,13,4,26,4,25,1,26,1,30,2,26,4,29,3,30,1,26,4,30,1,29,16,28,3,29,5,28,6,29,1,28,3,13,1,26,1,29,4,26,1,30,1,29,1,26,1,13,1,26,2,25,3,13,1,26,1,30,3,29,1,30,1,26,2,30,4,29,2,30,1,26,1,13,2,29,1,28,3,29,1,28,9,29,2,28,2,29,1,28,4,30,1,26,1,28,5,29,1,28,11,30,1,26,1,30,1,28,20,29,1,28,8,30,1,28,14,1,273,}, + {1,367,28,3,29,1,28,1,29,2,28,2,30,1,28,4,29,1,28,2,30,2,26,2,13,1,9,3,13,1,29,1,28,1,29,1,26,2,13,2,25,1,9,4,15,3,9,1,26,1,30,2,26,1,13,1,30,1,28,3,29,2,28,4,29,1,28,3,29,2,28,4,9,1,15,2,9,1,26,1,30,1,29,2,30,1,13,1,25,1,9,4,15,2,9,2,15,1,14,2,9,1,13,2,9,2,25,2,9,7,15,2,14,2,15,1,9,6,26,1,29,1,26,1,9,2,25,1,13,2,9,1,26,1,30,1,9,1,14,2,15,1,9,8,15,1,9,1,15,4,9,18,15,1,9,6,15,1,9,1,13,1,26,1,30,1,28,4,26,2,13,1,26,5,25,1,26,1,29,3,28,1,29,5,30,1,26,4,30,1,29,6,28,3,29,3,28,2,29,1,28,5,29,2,28,1,29,1,28,10,26,2,28,1,29,1,28,2,29,3,30,1,26,2,29,1,13,5,26,3,30,1,26,2,30,2,26,1,30,1,29,1,30,1,29,1,28,1,29,1,26,1,13,1,30,1,28,2,29,5,28,1,29,1,28,1,29,1,28,1,29,2,28,2,29,3,28,4,29,2,28,3,29,3,28,3,29,5,28,3,29,1,30,2,29,1,28,26,29,1,13,1,28,13,1,274,}, + {1,366,28,3,29,1,13,1,28,2,30,1,29,1,28,2,29,2,28,4,29,1,30,1,26,1,13,2,25,1,9,3,13,1,30,1,29,2,26,2,13,1,25,1,13,1,9,5,15,2,13,1,9,1,15,1,9,1,30,1,29,1,30,8,29,2,28,3,29,3,28,5,29,1,9,1,14,1,9,1,13,1,29,3,30,1,13,1,9,6,15,4,14,2,25,1,26,1,25,1,9,1,25,2,9,6,15,3,9,1,15,1,14,1,15,1,9,2,15,2,14,1,15,1,9,1,13,5,9,1,15,1,30,1,28,1,26,1,9,1,14,2,15,2,9,1,15,3,9,3,15,2,14,2,15,1,9,1,25,1,9,1,25,1,13,3,25,1,9,2,25,1,9,5,15,2,9,8,15,1,9,1,13,1,26,1,29,1,28,3,29,1,30,1,26,6,13,1,30,1,29,5,26,1,29,8,30,1,29,6,28,3,29,1,30,1,29,1,28,2,29,1,28,5,29,2,28,1,29,1,28,3,29,1,28,6,26,2,29,1,30,1,29,2,28,2,29,1,28,1,26,1,13,1,30,1,29,2,30,1,26,1,13,5,26,1,30,1,29,2,30,2,29,3,28,3,29,1,30,1,26,1,29,1,30,2,26,2,30,1,29,3,28,2,29,1,30,1,29,1,28,4,29,1,28,4,26,1,28,3,29,4,28,1,13,3,26,1,29,1,28,5,29,1,13,1,26,1,28,19,29,1,28,5,29,1,26,1,29,1,28,13,1,274,}, + {1,365,28,2,30,1,28,1,29,1,30,2,29,1,28,3,29,4,28,3,29,1,26,3,13,1,9,5,13,1,29,2,13,1,25,3,9,5,15,3,28,7,29,1,8,1,13,1,26,1,30,2,26,1,30,1,29,1,28,4,29,4,30,2,28,3,9,1,15,2,13,1,26,1,29,1,30,1,13,1,9,8,15,3,14,1,15,1,9,1,13,2,9,4,25,1,13,2,25,1,9,2,15,2,14,2,15,2,9,2,15,2,14,2,15,1,25,1,13,3,9,2,13,1,26,2,25,1,15,1,14,4,15,2,9,1,15,5,14,1,15,1,9,3,13,3,26,2,13,1,25,1,9,8,15,1,9,6,25,1,9,5,26,1,29,1,28,3,29,1,26,2,30,1,26,5,13,2,26,2,30,1,29,4,26,2,29,2,30,1,29,5,30,1,29,1,28,3,29,3,28,10,29,2,28,4,29,2,28,1,29,1,28,2,26,1,13,1,28,2,29,2,28,2,29,2,28,1,30,1,25,1,30,1,29,1,28,2,29,1,26,1,13,3,25,1,13,1,26,1,29,1,28,1,29,5,28,4,29,1,30,1,28,3,29,1,28,1,29,1,30,1,29,1,30,1,28,2,30,2,28,13,29,2,28,2,13,1,30,2,29,3,28,7,26,1,29,1,28,24,30,2,28,14,1,274,}, + {1,363,28,3,29,1,28,2,29,2,30,1,29,1,28,2,29,2,28,1,29,3,28,1,29,1,30,1,13,2,25,1,9,3,25,1,9,2,26,1,30,1,13,1,25,3,9,1,25,2,9,1,15,1,14,1,15,1,26,1,28,11,13,1,9,1,13,1,26,1,30,1,29,4,28,2,29,2,30,2,26,1,13,1,26,2,25,1,9,1,15,2,25,1,29,1,30,1,13,3,9,7,15,2,14,2,15,1,9,1,25,1,9,5,13,1,26,2,13,1,25,1,9,1,15,2,14,1,15,1,9,6,15,2,9,1,13,2,25,1,13,5,9,1,15,2,14,5,15,3,9,2,15,1,14,2,15,1,9,1,15,1,9,3,13,1,26,4,13,1,9,3,25,2,9,1,15,1,9,13,26,1,28,4,30,1,26,3,13,4,26,2,13,2,26,2,29,3,30,2,29,7,28,1,29,2,28,1,29,6,28,2,29,1,28,5,29,1,30,1,29,2,28,3,29,1,28,2,29,1,28,2,30,1,9,1,29,2,28,1,29,2,28,3,29,1,28,5,29,5,28,1,29,1,26,1,13,2,26,1,29,5,28,6,29,2,28,1,29,1,28,2,29,3,28,2,30,1,26,1,28,2,29,1,28,11,29,3,30,1,29,3,28,35,30,1,29,1,28,14,1,274,}, + {1,363,28,1,29,2,28,4,29,6,28,3,29,4,30,1,26,2,13,1,9,2,25,1,13,1,25,1,9,1,25,1,13,1,9,2,25,2,9,3,15,2,13,1,28,14,26,1,9,2,13,1,26,1,30,2,29,1,28,2,29,2,26,2,13,1,9,2,25,1,26,1,13,1,9,1,14,1,15,1,13,1,29,1,26,1,13,2,9,8,15,2,14,2,15,1,9,6,13,1,26,3,13,1,9,1,14,2,15,1,9,5,25,1,26,1,13,1,15,2,13,2,9,1,26,2,13,1,25,1,9,1,15,2,9,1,14,5,15,1,9,2,25,2,9,1,15,1,14,1,15,1,14,4,15,1,9,2,13,1,26,2,29,1,30,1,13,1,25,1,9,16,15,1,9,1,30,1,28,2,29,1,26,2,13,4,25,1,13,1,26,3,13,1,26,2,29,4,30,1,29,7,28,2,29,4,28,2,29,2,28,2,29,1,28,5,29,1,30,1,29,2,28,6,29,1,28,2,29,1,13,1,30,2,29,1,28,2,29,3,30,1,29,2,28,2,29,4,28,4,29,1,30,1,26,3,30,1,29,3,28,5,29,2,28,2,26,1,29,1,28,6,29,1,26,1,29,1,28,1,29,1,28,12,29,3,28,1,29,2,28,11,29,1,28,22,29,2,28,15,1,274,}, + {1,362,28,1,29,1,28,8,29,4,28,4,29,2,30,2,13,2,9,7,13,2,30,2,26,1,13,1,9,1,15,2,25,1,28,4,29,2,28,11,29,1,9,3,13,1,26,1,30,1,28,2,29,2,26,1,25,1,13,2,9,2,13,2,25,1,15,1,14,1,15,1,30,1,29,1,13,1,9,1,13,1,9,7,15,2,14,3,15,1,9,4,15,1,9,1,13,1,26,3,13,1,14,2,15,1,25,1,13,1,9,1,15,1,9,1,25,1,26,1,13,1,15,2,13,2,9,1,25,3,9,2,15,2,9,1,15,4,9,7,15,1,14,8,15,2,9,2,26,1,30,1,29,1,30,1,13,1,9,2,25,1,9,9,25,1,13,1,25,1,9,2,25,1,26,1,30,1,26,1,13,2,25,1,13,5,26,7,29,14,30,1,29,2,28,2,29,3,28,1,29,1,28,4,29,5,28,7,29,1,28,2,29,2,30,1,29,1,26,1,30,1,29,2,28,3,30,1,29,8,30,1,29,1,28,2,29,2,30,2,29,5,28,7,30,1,29,1,28,7,26,1,29,1,28,1,29,1,28,12,29,1,30,1,29,1,28,1,29,3,28,10,29,2,28,8,29,1,28,12,30,1,29,1,28,15,1,274,}, + {1,360,28,2,30,1,28,9,29,1,30,1,29,1,28,5,29,1,30,1,26,1,30,1,13,2,9,8,13,1,29,1,28,1,30,1,13,2,9,1,13,1,29,1,28,3,29,1,30,1,29,2,28,12,13,1,15,1,9,1,25,1,26,1,29,1,28,2,29,2,13,3,25,1,9,5,15,1,14,1,9,1,29,1,26,1,9,1,13,1,9,5,15,5,14,3,9,4,15,1,9,1,13,1,29,4,15,1,14,1,15,1,13,2,9,2,13,1,9,3,14,1,15,1,9,1,13,1,25,1,9,4,15,2,9,2,15,3,9,5,15,2,14,4,15,5,14,6,9,1,26,1,29,2,26,1,13,4,25,1,9,6,25,1,13,3,25,1,9,2,25,5,13,1,26,7,30,2,26,2,29,4,30,1,29,1,30,1,29,4,30,3,29,5,28,2,29,3,28,4,29,5,28,7,29,1,28,2,29,1,30,2,29,1,30,1,29,1,28,1,29,1,26,1,30,1,29,1,28,1,29,2,28,1,29,11,28,2,29,4,28,3,29,1,28,1,29,1,28,2,29,1,28,3,29,2,28,3,26,2,28,15,30,1,28,2,29,2,28,12,29,1,28,8,29,2,28,10,29,1,26,1,29,1,28,15,1,274,}, + {1,358,28,4,30,1,28,3,29,1,28,5,29,1,30,2,28,1,29,1,28,3,29,1,26,4,13,1,9,4,15,2,14,2,9,1,29,1,28,7,29,1,13,2,30,1,28,1,29,5,28,2,29,1,28,1,29,1,30,1,29,1,28,3,26,1,15,1,9,1,25,1,26,1,29,2,28,1,29,1,30,1,13,1,9,6,15,1,9,1,14,2,13,1,30,1,13,1,25,1,9,6,15,5,14,2,15,1,9,3,15,1,25,1,28,5,9,1,15,1,9,1,13,2,25,1,13,1,28,1,26,1,13,1,15,1,14,3,9,2,25,1,9,1,15,6,14,1,15,2,9,4,15,4,14,2,15,11,14,2,15,1,9,1,26,3,13,1,26,2,13,1,25,1,9,4,13,1,25,2,13,4,9,3,25,3,13,1,26,2,29,1,30,1,26,7,29,6,30,2,29,2,30,1,26,1,30,1,29,2,28,1,29,3,28,2,29,2,28,5,29,5,28,6,29,1,28,3,13,1,9,1,13,1,29,1,28,5,30,1,26,1,29,5,30,1,29,3,28,1,29,2,30,1,29,3,28,1,29,4,28,3,29,3,28,2,26,1,30,1,28,2,29,2,28,3,26,2,28,3,29,2,28,10,30,1,28,16,29,1,28,9,29,1,28,10,29,1,26,1,28,16,1,274,}, + {1,357,28,2,29,1,30,1,29,1,28,11,30,2,29,2,28,3,30,1,13,2,26,1,13,1,9,1,15,1,14,1,15,4,9,1,13,1,29,1,28,11,26,1,25,1,30,3,29,3,28,4,29,1,30,2,29,1,28,1,29,1,9,3,25,1,26,1,29,4,13,1,9,6,15,1,9,1,15,1,14,1,15,1,26,1,30,1,25,1,9,7,15,5,14,2,15,1,9,3,13,1,28,2,29,1,30,1,26,1,9,5,13,1,26,4,25,1,15,1,14,3,15,1,9,2,15,1,14,3,15,1,14,1,15,4,9,3,15,1,9,4,15,12,9,1,15,1,14,2,15,1,9,1,13,7,25,3,13,2,25,1,13,5,9,1,13,1,26,6,29,1,30,1,26,7,29,6,30,2,29,3,30,1,29,11,28,1,29,1,28,4,29,4,28,10,13,1,9,1,13,1,30,1,26,1,9,1,13,1,28,4,29,1,28,3,29,1,30,1,29,7,28,1,29,2,30,1,29,3,28,5,29,1,28,3,30,2,29,1,28,2,29,1,28,3,29,1,26,1,28,8,29,2,28,4,29,1,26,1,28,2,29,1,28,13,29,2,28,19,30,2,28,16,1,274,}, + {1,356,28,2,30,1,28,3,29,1,28,10,29,1,30,1,29,1,28,4,30,1,13,3,9,1,15,1,14,1,15,1,9,2,13,1,26,1,28,16,25,1,13,1,26,1,29,2,28,6,29,1,26,2,13,1,25,1,26,1,25,1,15,1,9,1,13,1,30,1,29,1,30,2,13,1,9,4,15,1,9,2,15,1,9,1,15,1,14,1,25,1,29,1,13,1,9,9,15,4,14,2,9,2,15,1,9,1,26,1,13,1,15,1,14,2,9,3,14,1,15,1,13,2,15,1,9,1,13,1,26,1,9,1,14,5,15,2,14,2,15,8,9,8,15,2,9,1,15,4,9,1,15,3,14,1,15,3,14,1,15,1,9,1,25,1,13,3,26,1,13,11,26,2,29,1,28,1,29,7,30,1,26,3,30,3,29,6,30,1,29,5,28,1,29,9,28,1,29,2,28,4,29,4,28,10,29,1,26,2,13,1,11,1,1,3,15,1,26,1,28,6,29,18,28,2,29,3,28,3,29,1,28,2,29,1,28,3,29,1,26,1,29,1,28,7,30,1,29,1,28,4,30,1,13,1,28,17,29,1,28,5,29,1,28,13,26,1,30,1,28,16,1,274,}, + {1,354,28,2,29,1,28,2,29,1,28,11,29,1,30,2,29,3,28,3,30,1,13,3,26,1,29,2,30,1,29,1,26,1,30,1,28,18,26,1,9,2,26,1,30,1,29,1,28,4,29,2,26,1,13,1,9,1,25,2,13,1,9,1,15,1,26,1,28,1,29,1,13,2,9,8,15,3,14,1,9,1,29,1,9,3,15,1,9,1,26,2,9,4,15,1,14,2,15,2,9,1,15,3,14,1,15,1,13,1,9,2,15,1,25,1,15,1,14,1,26,1,13,1,9,1,15,2,9,1,15,1,14,6,15,4,9,3,15,1,14,1,15,1,9,12,15,1,9,3,15,3,9,1,15,4,9,6,13,2,26,1,13,3,25,1,13,5,26,2,13,1,30,1,29,2,28,3,29,1,26,1,30,1,29,1,26,2,30,2,26,1,30,1,29,20,28,3,29,2,28,4,29,1,30,1,29,2,28,10,29,2,28,1,26,1,1,5,11,1,14,1,9,1,14,1,9,1,26,1,28,3,29,1,30,1,29,1,28,1,29,1,30,1,29,1,28,1,29,1,30,2,29,1,28,1,29,3,28,1,29,4,28,2,13,1,28,2,29,1,28,5,30,2,26,1,30,2,28,4,29,2,28,3,29,1,9,1,13,1,30,1,28,15,30,1,29,1,28,5,29,1,28,12,29,1,13,1,29,2,28,15,1,274,}, + {1,353,28,2,30,1,29,1,28,13,29,2,30,1,26,1,30,1,29,1,28,2,30,1,26,1,13,2,30,1,28,3,30,1,13,1,26,1,29,1,28,5,29,1,28,4,29,1,28,9,25,1,9,1,13,1,26,1,30,1,29,1,28,3,29,1,26,2,13,1,9,5,15,2,13,1,28,2,13,1,9,1,13,1,9,1,15,1,9,4,15,5,25,3,9,3,26,2,13,1,9,3,15,1,14,4,25,1,9,2,15,1,14,1,9,1,13,1,25,1,9,3,15,1,14,1,15,1,13,2,9,1,15,3,14,2,15,3,14,2,15,1,9,4,15,1,14,2,15,2,9,10,15,1,9,3,15,1,9,2,15,6,9,7,13,3,26,1,13,7,26,2,13,2,26,6,13,1,30,1,29,1,26,3,30,1,26,1,29,6,30,1,29,8,28,2,29,3,28,4,29,1,28,5,29,4,28,10,29,2,28,1,13,1,1,4,14,1,15,2,9,1,25,1,14,2,15,1,26,1,28,3,29,2,28,2,29,3,28,1,30,1,29,5,28,2,29,3,28,2,13,1,28,4,29,1,28,5,30,1,26,3,29,1,28,8,30,2,28,16,29,2,28,5,29,1,28,12,13,2,28,17,1,274,}, + {1,352,28,2,13,1,29,1,28,1,29,2,28,5,29,1,28,2,29,4,30,1,26,3,29,1,28,1,29,1,30,2,29,2,28,3,29,1,13,1,9,1,26,1,28,4,29,10,28,8,26,1,9,1,25,1,26,1,30,1,28,3,30,1,26,1,13,1,25,2,9,4,15,1,11,1,14,1,28,2,26,1,9,1,13,1,9,1,15,1,9,4,15,2,9,1,15,1,14,1,15,1,9,5,13,1,26,1,30,1,9,3,15,2,14,3,13,2,25,1,9,1,15,2,25,1,29,1,9,1,25,1,9,1,25,1,15,1,14,1,13,1,26,1,9,3,15,1,14,2,15,6,9,3,15,1,14,3,15,1,14,2,15,4,9,2,25,2,9,9,15,4,9,9,25,1,13,1,26,3,13,1,25,1,13,4,26,1,13,4,9,3,13,2,26,1,29,2,26,2,30,2,29,11,28,1,29,2,28,3,29,3,28,10,29,3,28,11,29,2,28,1,9,1,11,1,1,2,11,1,9,1,25,1,9,5,15,2,9,1,30,1,28,2,29,1,26,2,29,1,28,1,29,1,26,1,29,6,28,2,29,1,28,1,29,1,28,2,26,1,28,3,29,1,30,1,28,7,30,1,26,1,30,1,28,4,29,1,28,2,29,1,30,1,13,1,28,16,29,1,28,6,29,1,28,12,30,1,26,1,28,17,1,274,}, + {1,350,28,2,30,1,29,2,28,1,29,2,28,5,29,8,30,1,26,1,13,1,26,1,29,1,30,2,29,1,28,4,29,2,26,1,9,1,13,1,28,4,29,7,30,1,29,2,30,1,29,1,28,4,30,1,28,2,13,1,9,2,26,1,29,4,26,2,13,1,25,2,9,2,15,2,9,1,15,1,14,1,15,1,28,1,30,1,25,1,9,1,25,1,9,2,15,1,9,2,15,2,9,1,15,1,14,2,9,5,25,1,26,1,29,1,26,1,9,1,15,3,14,2,15,1,13,2,9,3,15,1,9,1,29,1,13,1,25,1,9,1,26,1,9,1,14,1,9,1,26,1,25,1,9,3,15,3,14,2,15,7,14,2,15,2,14,3,15,2,14,2,15,1,9,2,25,3,9,21,26,1,29,2,26,1,13,2,26,1,13,2,26,3,13,2,9,2,13,3,30,1,28,2,30,1,26,2,30,2,29,10,28,1,29,3,28,3,29,1,28,12,29,2,28,8,29,1,28,2,29,2,28,1,9,1,11,1,1,2,15,1,7,1,26,1,13,1,25,2,13,3,25,1,9,3,29,1,28,4,29,9,28,2,29,3,28,2,26,1,29,1,28,1,29,1,28,1,29,1,28,8,30,1,26,2,30,1,26,1,29,2,28,3,30,1,13,1,30,1,28,22,29,1,28,14,29,2,28,16,1,273,}, + {1,349,28,2,26,1,29,2,28,1,29,2,28,2,29,12,30,1,26,1,13,1,26,1,29,4,28,5,29,1,13,2,29,1,28,3,29,1,28,1,29,5,30,3,29,3,28,4,9,5,25,1,26,1,29,3,30,1,26,1,13,2,25,2,9,1,15,2,9,3,15,1,11,1,25,1,28,1,30,1,9,1,25,1,13,1,9,4,15,2,9,1,15,1,14,1,15,6,9,1,25,1,26,1,13,1,15,1,14,1,15,2,14,2,9,1,25,1,13,1,9,3,14,1,15,1,29,2,9,2,25,1,9,1,15,2,30,1,9,1,15,6,14,1,15,5,14,1,15,10,14,4,15,2,9,3,25,2,9,19,26,1,28,2,29,1,26,6,13,1,26,2,13,1,25,1,13,1,26,2,13,1,30,1,28,2,29,1,26,2,29,12,28,1,29,4,28,16,29,1,28,7,29,1,28,3,30,2,28,1,13,1,11,1,1,2,9,1,26,3,13,1,26,1,13,6,9,2,29,1,28,5,29,7,28,2,29,1,30,1,29,1,28,2,29,1,26,1,28,1,29,1,28,2,29,3,28,9,29,1,28,2,29,1,28,2,29,1,30,1,13,1,29,1,28,21,29,1,28,15,29,1,28,12,29,1,28,2,1,274,}, + {1,348,28,2,30,1,29,1,28,1,29,2,28,1,29,2,30,1,28,1,29,6,30,1,29,2,30,2,29,1,26,1,13,2,30,1,29,2,28,7,26,1,30,1,28,3,29,9,30,1,26,1,30,1,29,2,28,3,26,1,9,2,13,1,29,2,30,1,26,2,30,2,26,1,13,1,25,4,13,1,15,1,9,5,15,1,14,1,29,1,28,1,9,10,15,1,14,1,15,5,14,1,15,2,9,2,15,2,9,2,15,2,9,2,25,1,9,3,15,1,14,1,13,1,28,1,25,4,9,1,14,1,13,1,9,1,15,1,14,1,15,3,9,3,15,3,9,3,15,8,14,2,15,4,14,2,15,1,9,2,25,2,9,18,13,1,28,3,30,1,26,5,9,1,26,2,13,2,26,1,30,1,26,2,30,1,29,1,28,1,29,1,30,1,26,1,29,12,28,1,29,4,28,1,29,1,28,14,29,2,28,10,26,1,30,1,28,1,13,1,1,2,11,1,13,1,26,1,13,1,26,1,13,2,26,1,30,1,26,1,13,3,30,1,9,2,15,1,9,1,26,1,28,2,29,3,30,1,29,3,28,3,30,1,29,1,28,3,26,1,29,1,28,2,29,2,28,14,29,1,28,2,29,1,28,1,30,1,29,2,28,19,29,1,30,1,28,31,1,274,}, + {1,347,28,2,26,1,29,1,28,1,29,3,28,2,29,2,28,1,30,3,29,6,30,3,26,1,13,2,26,1,30,1,29,1,28,6,29,1,26,1,29,1,28,4,29,5,30,3,29,1,30,3,29,2,30,1,13,2,30,1,28,4,30,1,13,1,9,1,13,1,26,1,30,1,26,1,13,1,25,4,9,4,15,1,9,2,14,1,9,1,26,1,13,1,9,5,15,1,9,1,13,1,26,1,9,1,14,2,9,1,25,1,9,1,15,1,14,4,15,1,9,12,15,1,14,1,9,1,29,1,26,1,13,3,15,1,14,1,15,1,25,1,15,1,14,1,15,3,9,6,25,2,9,2,15,14,14,2,15,2,9,20,13,1,29,1,28,2,29,1,26,2,30,1,26,1,13,1,25,1,26,3,13,1,26,5,30,1,28,2,29,1,30,1,29,8,30,1,29,2,28,3,29,6,28,13,29,2,28,10,30,2,28,1,13,1,1,2,16,1,30,1,26,1,13,1,26,1,13,1,26,4,13,1,26,1,13,2,25,2,9,3,25,1,29,1,28,2,29,1,30,2,29,3,28,2,29,2,28,3,29,1,30,1,28,2,29,2,28,4,29,1,28,12,29,1,28,2,29,2,28,19,30,1,26,1,28,11,29,1,28,14,29,1,28,4,1,274,}, + {1,346,28,2,30,1,29,1,28,3,29,1,28,1,29,1,28,3,29,1,30,2,29,1,28,2,29,4,26,2,30,1,26,1,13,3,30,2,29,1,28,6,29,1,28,5,29,5,30,1,26,1,30,2,29,1,26,2,29,2,13,2,30,1,28,2,30,1,13,2,26,1,13,1,15,2,13,1,29,2,26,1,25,4,26,1,9,1,15,1,9,2,15,1,9,2,11,1,15,1,13,1,9,3,15,3,9,1,26,1,29,1,9,1,14,2,25,1,30,2,9,1,15,3,14,1,15,1,9,2,15,1,14,1,9,8,15,1,11,1,14,1,30,1,29,1,9,3,11,1,14,1,15,1,13,1,15,6,14,1,15,1,9,2,25,1,9,4,15,1,9,2,15,10,9,2,15,1,14,2,15,1,9,16,25,1,9,3,26,1,30,1,29,2,26,4,9,1,26,2,30,2,26,7,29,1,28,1,29,1,30,1,29,11,28,6,29,3,28,13,30,1,29,2,28,9,29,2,28,1,13,1,1,2,9,1,29,1,30,1,26,1,30,1,13,2,26,2,13,2,26,1,13,2,26,1,13,2,26,1,9,1,15,1,9,1,26,1,28,2,29,1,30,3,29,1,28,3,29,2,28,2,29,1,26,1,29,1,28,2,29,1,28,2,29,1,28,10,26,1,29,2,28,4,29,2,28,19,26,1,13,1,29,1,28,25,30,1,28,4,1,274,}, + {1,345,28,2,30,1,29,1,28,2,29,1,28,8,29,5,28,3,30,1,26,4,13,3,29,3,28,12,29,4,30,2,29,1,30,3,29,2,26,1,13,2,30,1,28,3,29,1,13,1,9,3,15,2,9,1,15,1,29,1,28,1,13,1,9,1,13,1,25,2,9,4,15,1,9,1,15,4,9,2,15,1,9,4,13,1,9,1,14,2,9,3,26,1,29,1,9,1,15,1,14,4,15,3,9,5,13,1,26,1,25,1,15,1,14,2,30,2,14,2,15,1,14,3,9,1,15,2,14,1,15,3,14,1,15,1,9,3,15,3,9,6,15,11,9,1,15,1,14,2,15,2,9,1,25,2,9,8,25,2,9,1,25,5,9,1,25,1,13,1,25,1,13,1,25,2,26,2,30,4,26,2,30,1,26,2,29,1,28,2,29,12,28,21,29,3,28,10,29,2,28,1,9,1,1,1,14,1,29,1,30,1,26,1,30,1,13,1,26,10,13,5,9,2,26,1,28,2,30,1,28,2,30,1,28,3,29,2,28,3,29,1,26,2,29,1,28,1,29,2,28,1,29,1,28,9,29,1,30,1,29,1,28,5,29,1,30,1,28,5,29,1,28,2,29,1,28,1,29,2,28,6,30,1,29,1,30,2,29,1,28,1,29,2,28,1,29,1,26,1,29,1,28,21,1,274,}, + {1,344,28,2,30,1,29,1,28,14,29,6,30,1,26,4,13,2,25,1,30,1,29,2,28,14,29,8,28,1,29,1,26,1,13,1,26,1,29,5,26,1,13,1,25,1,9,3,15,2,25,1,28,1,29,1,13,1,9,1,25,2,9,7,15,1,14,2,9,9,14,2,15,3,25,1,30,1,25,1,15,3,9,4,15,3,9,6,15,1,14,1,11,1,13,1,28,1,15,1,14,1,15,1,14,1,15,1,14,2,15,2,9,2,15,2,14,1,15,11,9,3,15,9,14,1,15,6,9,11,25,4,13,2,25,2,9,1,13,3,26,1,13,2,26,3,30,1,29,1,30,2,26,1,30,3,29,4,30,1,29,11,28,3,29,1,28,16,29,2,28,11,29,2,28,1,15,1,1,1,9,1,29,1,30,1,26,1,30,1,13,1,26,11,13,1,26,3,13,2,9,1,30,1,28,5,30,1,29,1,28,1,29,2,28,4,26,2,29,1,28,2,29,1,28,10,29,3,28,7,30,1,29,4,28,1,29,1,28,3,29,1,30,2,28,6,30,1,29,2,30,1,28,4,29,2,28,1,30,2,29,1,28,19,1,274,}, + {1,344,28,1,29,1,30,1,29,1,28,14,29,4,30,1,26,1,30,1,26,4,13,2,25,1,26,1,29,2,28,10,29,3,28,1,29,8,28,2,26,2,29,2,30,1,29,1,26,3,13,1,25,1,9,3,14,1,15,1,14,1,9,1,28,1,26,1,9,1,25,1,9,8,15,1,9,1,15,3,14,1,15,10,14,1,15,1,26,1,13,1,9,7,15,1,14,2,15,1,9,2,15,4,14,1,11,1,9,1,28,1,9,1,11,1,14,1,15,8,9,3,15,5,14,5,15,3,9,3,15,7,14,1,15,8,9,2,25,2,9,3,25,1,9,1,25,4,13,3,25,1,9,1,13,1,26,1,13,1,26,1,13,1,26,1,13,1,26,1,30,1,29,3,30,1,26,1,30,2,29,4,30,1,26,1,29,11,28,3,29,1,28,16,29,1,28,12,29,2,28,1,14,1,1,1,26,1,29,1,26,13,13,5,26,3,25,1,9,1,28,5,30,1,29,5,28,4,26,1,13,1,29,1,28,3,29,1,28,7,29,3,28,8,29,1,30,3,29,2,28,4,29,1,26,1,13,1,30,1,29,2,28,2,29,1,30,1,29,1,28,6,29,2,28,18,29,1,28,4,1,274,}, + {1,340,28,1,1,2,28,1,30,1,29,1,28,15,29,5,26,2,30,1,26,5,13,1,25,1,26,1,29,2,28,10,29,2,30,1,29,8,28,3,30,1,29,1,28,2,30,2,26,4,25,1,9,3,14,1,15,1,14,2,13,1,30,1,26,1,25,1,9,4,15,1,9,1,15,3,9,1,15,1,14,1,15,3,14,5,15,1,9,2,15,1,14,2,13,1,26,1,25,1,9,5,25,1,9,1,15,1,14,2,9,3,15,3,14,1,11,1,14,1,29,1,9,1,11,1,14,1,15,1,9,4,15,2,9,1,13,2,9,1,15,6,14,6,15,3,9,4,15,14,9,2,25,10,13,3,9,2,26,2,13,1,26,3,13,1,26,1,30,1,29,1,28,1,29,1,30,1,26,2,30,1,29,3,30,2,29,12,28,3,29,1,28,16,29,1,28,12,29,1,28,2,14,1,11,1,28,1,29,1,26,1,30,1,26,1,30,1,26,9,13,6,26,3,9,1,26,1,28,4,29,1,28,3,29,3,28,4,13,1,26,1,29,1,28,10,30,1,29,1,28,10,29,1,30,1,29,3,28,5,29,2,30,1,26,1,29,1,28,2,30,1,29,2,28,7,29,1,28,14,29,1,28,9,1,273,}, + {1,342,28,1,29,1,28,17,29,4,30,2,26,3,13,1,26,1,30,1,26,1,13,2,30,1,29,3,28,12,30,2,29,1,30,1,29,2,28,4,29,2,28,3,29,2,26,4,13,1,9,4,15,2,14,1,15,1,29,2,13,1,9,1,25,1,9,1,15,2,9,1,15,2,14,3,15,1,26,1,13,1,14,3,15,3,9,1,25,1,9,2,14,2,9,1,30,1,13,1,9,2,25,1,9,2,25,1,13,1,25,1,15,1,14,2,15,1,9,2,15,2,14,1,11,2,9,1,15,1,11,1,15,2,9,5,26,1,29,2,26,1,9,1,15,8,14,6,15,2,9,4,15,14,9,2,25,1,13,1,25,7,13,3,25,1,9,1,26,2,13,1,26,1,13,3,26,1,30,1,28,3,29,1,26,2,30,1,29,16,28,21,29,1,28,12,29,2,28,1,14,2,28,1,29,1,26,1,30,1,13,1,30,1,26,16,30,1,26,1,25,1,13,1,28,3,29,2,28,1,29,2,28,1,29,2,28,5,30,1,26,2,29,1,28,3,29,1,28,4,29,1,28,10,29,1,30,1,29,1,28,15,30,1,29,2,28,32,1,273,}, + {1,341,28,1,29,2,28,1,29,1,28,15,29,2,30,3,26,2,13,3,26,1,30,2,26,1,13,1,30,1,29,5,28,1,29,1,28,8,29,3,30,2,29,1,28,3,29,2,28,5,29,1,30,1,26,3,13,1,25,1,9,3,14,1,15,1,14,2,13,1,26,1,13,1,9,1,25,2,15,2,9,5,14,2,30,2,9,1,15,1,14,1,15,1,25,1,9,2,13,1,25,1,9,1,15,1,11,1,15,1,26,2,9,2,25,2,9,5,15,1,11,1,15,1,9,2,15,2,14,1,11,2,14,1,11,2,15,2,9,3,13,1,30,1,29,2,30,1,13,1,25,1,15,5,14,1,15,5,14,6,15,1,9,3,15,9,9,2,15,3,9,2,13,2,25,1,13,1,25,3,13,3,26,1,13,1,25,1,30,1,26,1,13,1,26,1,13,3,26,2,29,1,28,2,29,1,30,2,29,15,28,1,29,1,28,21,29,1,28,12,29,2,28,1,15,1,9,1,28,1,26,2,30,1,13,1,30,1,26,15,30,1,29,1,13,1,26,1,13,1,28,3,29,10,28,4,30,3,29,3,30,2,29,1,28,13,30,2,29,1,28,7,29,1,28,6,30,1,13,1,29,2,28,32,1,273,}, + {1,340,28,2,13,1,28,17,29,2,30,3,26,3,13,3,26,1,30,2,26,1,25,1,13,1,30,1,29,2,30,1,29,1,28,8,29,2,28,3,29,3,28,2,29,2,28,6,29,2,30,1,26,1,13,3,9,2,15,1,14,4,15,1,25,1,30,1,9,5,26,1,25,1,9,1,13,1,29,1,9,1,14,1,13,1,29,1,13,1,9,1,14,1,15,1,30,1,26,1,13,1,26,1,13,1,25,1,15,1,11,1,14,1,13,1,26,1,25,2,9,3,15,2,9,2,15,1,11,1,14,1,15,3,14,1,11,4,14,1,15,4,9,1,25,1,13,1,26,1,13,1,25,3,13,1,9,3,15,8,14,6,15,2,9,4,15,6,9,9,13,3,25,2,13,4,26,1,13,2,29,1,30,1,13,1,26,1,13,1,26,2,13,1,26,1,30,1,29,1,28,1,29,1,30,1,29,19,28,20,29,1,28,12,29,1,30,1,28,1,9,1,30,1,29,1,26,2,30,1,13,1,26,11,13,1,26,6,13,1,26,1,13,1,29,1,28,1,29,5,28,1,29,4,28,4,29,1,28,2,30,1,26,1,29,1,30,2,29,2,28,13,30,2,29,1,28,7,30,2,28,5,13,2,28,1,29,1,28,32,1,273,}, + {1,337,28,1,1,2,28,1,30,1,28,17,29,2,30,5,26,2,13,1,26,1,13,1,26,1,30,2,26,1,25,2,30,1,29,2,30,1,29,1,28,5,29,4,28,1,29,1,28,4,29,4,28,9,29,1,26,1,13,1,26,2,25,1,9,1,15,1,9,1,15,2,14,2,13,1,29,1,9,4,13,1,29,1,26,1,15,1,13,1,29,1,9,1,14,1,30,1,28,1,25,1,9,1,11,1,15,1,29,2,26,1,30,2,13,1,9,1,11,2,9,1,26,1,13,1,25,1,14,1,9,2,15,1,14,1,9,2,15,1,14,2,11,1,14,1,15,1,14,1,11,2,14,1,11,1,15,1,9,1,15,4,9,2,15,2,9,2,25,1,9,1,26,1,25,1,9,1,15,1,9,2,15,2,14,2,15,4,14,5,15,1,9,4,15,6,9,8,25,1,13,2,25,2,13,3,26,4,29,2,13,1,26,7,29,3,30,3,29,8,28,2,29,3,28,1,29,3,28,20,29,1,28,12,29,1,26,1,28,1,25,1,28,1,29,1,13,1,30,2,13,1,26,1,30,1,26,15,13,1,26,3,29,1,28,1,29,1,28,1,30,1,29,1,28,2,29,3,28,4,29,1,30,1,28,1,30,1,26,1,30,1,29,2,28,6,29,1,28,8,29,2,28,9,30,1,29,1,28,5,13,1,26,1,28,23,29,1,28,5,29,1,28,4,1,273,}, + {1,339,28,1,29,2,28,16,29,5,30,1,26,4,13,3,26,1,30,1,29,1,26,1,25,1,9,1,30,1,29,2,28,4,29,1,28,2,29,1,30,2,29,1,28,6,29,1,30,1,29,3,28,8,29,1,30,1,26,1,13,3,25,1,9,1,14,4,15,1,9,1,26,1,9,8,13,1,30,1,25,1,15,1,26,1,28,1,13,2,9,1,11,1,25,1,28,1,25,1,9,2,14,1,15,1,14,1,11,1,15,1,29,1,30,1,9,1,15,8,14,1,11,6,14,2,15,2,9,3,25,1,13,2,9,1,15,6,25,1,13,2,25,1,9,1,15,2,9,1,15,4,14,3,15,1,14,3,15,3,9,5,15,2,9,8,25,1,26,2,25,1,13,6,26,1,13,1,30,1,29,1,30,1,26,1,13,2,26,1,13,1,26,5,30,1,29,1,30,1,29,17,28,5,29,1,28,15,29,2,28,2,29,1,28,4,29,1,28,3,29,3,28,1,29,2,30,6,26,18,13,1,30,1,28,2,29,1,30,1,29,2,28,1,29,2,28,2,26,1,28,3,13,1,26,1,29,4,28,15,29,2,28,9,29,2,28,6,13,1,30,1,28,13,29,1,30,1,28,8,29,1,28,4,30,1,28,5,1,273,}, + {1,338,28,2,30,1,28,17,29,5,30,1,26,4,13,4,30,1,29,1,26,1,9,1,25,1,13,1,30,1,28,4,29,7,28,7,29,1,30,1,29,4,28,8,29,1,26,1,13,1,9,2,15,2,9,4,15,2,9,1,15,1,9,3,15,1,9,2,30,1,26,1,29,1,13,1,15,1,9,1,13,1,9,3,14,1,9,1,13,1,14,3,15,1,14,2,11,1,15,1,29,1,26,1,9,2,15,7,14,7,15,1,9,2,13,1,30,1,29,1,28,2,29,1,13,1,9,1,15,3,14,2,15,1,14,1,15,1,9,1,13,2,9,1,15,8,14,2,15,1,14,1,15,6,9,8,15,1,9,4,13,1,26,1,30,1,26,4,13,3,26,1,9,1,13,1,30,1,29,1,30,1,26,1,13,2,26,7,30,3,29,16,28,5,29,1,28,15,29,2,28,2,29,1,28,3,29,2,28,3,26,1,30,1,29,1,28,1,29,2,30,6,26,18,13,1,30,1,28,2,29,1,30,1,29,1,28,3,29,1,28,2,29,2,28,2,29,2,28,15,29,2,28,1,29,1,28,11,30,1,29,1,28,5,29,1,13,1,28,15,29,1,28,19,1,273,}, + {1,338,28,1,30,1,28,18,29,4,30,2,26,5,13,3,30,2,13,1,9,2,13,1,29,1,28,3,29,4,30,1,29,1,28,7,29,2,26,3,28,2,29,3,28,5,29,1,26,1,13,4,26,4,13,1,9,1,15,2,14,2,9,2,15,1,14,1,15,1,9,1,29,1,26,1,30,1,13,1,15,2,9,1,15,1,9,2,14,1,15,1,9,1,14,1,11,5,14,1,15,1,25,1,9,3,15,4,14,1,15,2,11,2,14,4,15,1,9,1,13,1,30,1,28,4,29,1,30,1,9,2,15,3,14,5,15,2,9,4,15,7,14,1,15,9,9,2,25,1,9,9,25,3,13,8,25,1,13,1,26,1,30,1,29,1,26,1,13,2,26,2,30,1,26,5,30,2,29,15,28,25,30,1,29,1,28,2,29,2,28,4,30,1,26,1,29,1,28,1,29,2,30,5,26,1,30,2,26,14,13,1,26,1,13,1,30,1,28,1,29,2,30,1,29,1,28,7,29,1,28,2,29,2,28,15,30,1,29,1,28,1,26,1,28,10,30,1,26,1,29,1,28,5,30,1,26,1,28,28,29,1,28,6,1,273,}, + {1,337,28,2,29,1,28,14,29,2,28,2,29,1,30,4,26,7,13,1,26,1,30,2,13,1,9,2,30,1,28,3,29,7,28,4,29,1,30,3,26,1,13,3,29,1,28,2,29,2,28,4,29,1,26,1,13,2,26,1,29,2,30,1,26,1,13,1,25,1,9,1,15,3,14,1,15,2,9,1,15,1,14,2,15,1,9,1,10,1,25,1,9,2,13,1,26,1,9,1,15,2,14,2,15,1,14,1,11,4,15,3,14,1,15,1,9,3,15,1,14,9,15,1,9,1,13,1,30,2,29,3,26,2,13,1,9,2,15,5,14,1,15,3,14,4,9,3,15,17,9,13,15,1,9,3,25,1,13,2,26,3,13,2,26,1,30,1,26,1,13,1,26,2,30,3,26,4,30,2,29,14,28,25,29,2,28,2,29,1,28,3,1,2,28,1,29,6,30,4,26,2,30,2,26,14,13,1,26,1,13,1,30,1,28,1,29,4,28,5,29,1,28,4,13,2,28,14,29,2,28,2,30,1,28,10,26,1,13,1,29,1,28,5,29,1,30,1,28,35,1,273,}, + {1,337,28,1,29,1,28,15,29,5,30,3,26,10,30,1,26,1,13,1,25,1,26,1,28,3,29,1,30,1,29,5,28,4,29,2,30,1,26,3,13,4,29,1,28,2,29,1,28,3,29,2,30,2,29,2,30,1,26,1,13,1,25,2,9,2,15,1,14,1,15,1,14,2,15,1,9,2,15,8,13,2,9,1,14,1,9,3,15,1,14,2,9,3,13,1,25,1,15,1,14,1,11,1,15,1,9,2,15,1,14,8,15,1,9,1,13,1,26,2,13,1,26,2,13,2,25,1,9,3,15,10,14,4,15,1,9,3,15,16,9,9,25,1,9,6,25,1,13,1,26,2,13,1,26,1,13,2,26,1,30,1,26,4,30,7,29,13,28,1,29,2,28,24,30,1,28,3,29,2,28,1,1,4,28,2,29,1,30,1,29,4,30,7,26,14,13,1,26,1,13,1,30,1,28,1,29,4,28,1,29,1,28,3,29,1,28,4,13,2,28,14,26,1,28,2,29,2,28,10,26,1,13,1,30,1,29,2,28,4,29,2,28,19,29,1,28,14,1,273,}, + {1,336,28,1,29,1,28,15,29,6,30,2,26,12,13,3,28,3,29,4,26,1,29,2,28,2,29,5,26,4,13,3,9,1,26,1,29,1,28,1,29,7,28,3,26,1,13,4,25,1,9,1,15,3,14,2,15,1,9,1,30,1,26,1,9,3,15,1,14,2,15,3,14,1,15,1,9,3,10,1,9,2,25,1,26,1,9,1,25,1,9,2,15,1,11,2,15,3,14,7,15,1,9,1,26,1,30,1,26,1,13,6,25,1,9,5,15,5,14,2,15,2,14,4,9,4,15,11,9,1,15,4,9,2,25,1,9,9,13,2,25,3,13,2,9,3,25,1,26,1,29,1,30,1,26,4,30,2,29,20,28,11,29,1,28,12,29,1,28,2,30,1,29,1,28,2,1,4,28,2,13,1,29,6,30,6,26,16,13,1,29,1,28,1,29,6,28,3,29,1,28,4,26,2,28,13,29,1,26,1,28,2,29,2,28,10,29,1,30,1,29,2,30,1,29,1,28,4,29,1,28,18,29,2,28,14,1,273,}, + {1,335,28,17,29,6,30,3,26,11,13,2,30,1,29,1,28,2,29,1,30,1,29,3,26,1,29,2,28,2,29,3,30,1,26,4,13,4,9,1,13,1,26,1,29,1,28,1,29,3,28,5,29,1,30,1,26,2,13,1,9,2,15,2,14,2,15,1,14,2,9,1,30,2,13,1,25,3,15,1,14,2,15,5,14,1,15,1,13,2,9,2,25,1,9,2,15,1,9,2,14,1,11,1,14,2,15,1,14,5,9,2,25,1,13,1,30,1,29,2,26,2,13,3,25,1,9,6,15,7,14,7,15,1,9,4,15,9,9,1,15,1,9,1,15,2,9,1,13,1,26,2,13,1,25,1,9,6,13,2,25,1,9,1,25,1,13,1,9,1,15,1,9,2,13,1,26,1,30,3,26,3,30,2,29,3,30,1,29,16,28,11,29,1,28,14,30,2,28,1,1,6,28,1,29,1,30,2,29,5,30,3,29,1,30,2,26,16,13,1,29,1,28,1,29,5,28,2,29,2,28,1,29,2,28,2,30,1,26,1,28,12,29,1,30,1,28,4,26,1,29,1,28,9,30,2,28,1,29,2,28,25,29,1,28,14,1,273,}, + {1,334,28,2,30,1,28,14,29,6,30,4,26,6,13,1,26,4,13,2,29,1,28,3,29,3,30,2,29,7,30,1,26,6,13,4,25,1,13,1,29,1,28,2,29,2,28,5,29,1,30,1,26,1,13,2,25,1,13,1,25,1,9,1,15,3,14,1,11,1,14,1,13,2,9,3,30,1,25,1,11,2,9,1,25,1,9,2,15,1,14,1,15,1,13,1,25,1,9,5,15,2,9,1,14,1,11,2,14,1,15,1,14,1,11,1,14,1,15,2,9,5,13,1,30,2,29,1,13,1,9,3,15,1,9,1,25,1,9,3,15,7,14,2,15,2,14,4,15,1,9,4,15,10,9,2,14,1,15,1,26,1,28,2,30,1,13,1,25,3,9,2,13,3,25,1,9,1,25,1,13,2,9,1,13,1,26,4,30,2,26,1,30,4,29,1,30,3,29,16,28,25,29,2,28,2,1,6,28,1,30,2,28,1,26,1,29,5,30,1,29,2,30,3,26,14,30,1,26,1,29,1,28,1,29,5,28,2,30,1,29,1,28,1,29,1,28,3,29,1,26,1,29,1,28,11,13,1,30,1,28,4,13,1,26,1,30,1,28,7,29,1,13,2,30,1,29,1,28,26,29,1,28,14,1,273,}, + {1,334,28,16,29,1,28,2,29,1,30,3,29,1,30,1,26,1,13,1,26,7,13,1,26,1,13,3,29,1,28,2,29,4,30,2,29,6,30,1,26,5,13,2,26,3,13,2,9,2,26,1,29,1,28,1,29,2,28,6,29,1,30,1,13,2,25,1,9,1,25,2,9,1,14,2,15,1,14,1,11,1,15,1,26,2,9,2,26,1,15,1,14,1,11,1,14,1,29,2,9,2,15,1,11,1,13,1,30,1,9,5,15,1,9,2,15,1,11,4,15,1,25,1,30,1,26,1,9,2,13,2,9,2,15,1,9,1,8,1,30,1,26,1,13,1,9,2,15,2,9,3,15,15,14,3,15,1,9,3,15,2,14,1,15,1,9,1,15,2,9,1,15,1,9,1,15,3,13,1,29,3,30,1,9,2,13,4,29,1,13,1,9,2,13,6,26,4,30,6,29,1,30,1,29,2,30,4,29,11,28,3,29,4,28,2,29,2,28,7,29,1,28,1,29,1,28,4,29,2,28,2,1,7,28,1,8,1,26,1,13,1,29,9,30,3,26,16,29,1,28,1,29,2,30,1,29,2,28,2,29,3,28,1,29,1,28,3,26,1,29,1,28,11,29,1,30,1,28,4,29,1,30,2,28,4,29,1,28,3,13,1,26,1,28,43,1,273,}, + {1,334,28,1,29,1,28,14,29,2,28,1,29,2,30,4,26,11,13,2,30,1,28,3,29,4,30,2,29,6,30,1,26,4,13,3,26,3,13,3,9,1,13,1,26,1,29,1,28,1,29,2,28,5,29,1,30,1,13,3,9,2,25,1,9,1,15,1,14,1,15,1,14,1,11,1,14,1,25,1,26,1,13,1,9,1,13,1,14,2,11,1,14,1,30,1,29,1,15,3,11,1,9,1,29,1,13,1,15,2,9,2,15,3,14,1,11,2,15,1,10,1,30,1,28,2,29,1,13,1,28,4,29,1,13,1,9,1,15,2,9,2,15,5,9,3,15,13,14,4,15,2,9,4,15,5,9,1,15,1,9,2,15,2,9,1,13,3,26,1,13,1,9,1,25,1,9,1,25,1,30,1,29,1,26,1,13,1,25,1,13,2,26,1,30,1,13,3,26,3,30,1,29,1,30,2,29,4,30,3,29,2,30,1,29,11,28,3,29,2,28,4,29,2,28,11,29,1,28,2,29,1,28,2,1,8,28,1,9,1,13,1,26,1,29,9,30,4,26,14,30,1,29,1,28,1,29,2,30,1,29,2,28,2,29,3,28,1,29,1,28,3,30,2,28,10,29,3,28,4,29,1,30,1,26,1,28,8,26,1,30,1,28,43,1,273,}, + {1,333,28,16,29,6,30,3,26,7,13,1,26,3,13,2,26,1,28,3,29,4,30,3,29,5,30,1,26,5,13,4,26,1,13,5,9,1,25,1,30,1,28,2,29,1,28,5,29,2,26,2,13,1,9,2,25,1,9,2,15,1,14,2,11,2,9,1,30,1,26,1,13,1,25,1,14,2,11,2,13,1,29,1,15,3,11,1,15,1,29,1,26,1,15,2,9,2,15,1,14,4,9,1,13,1,29,5,30,2,29,3,30,1,25,1,15,1,14,3,15,2,14,3,15,2,9,3,15,12,14,1,15,3,14,2,15,1,9,1,25,1,9,3,14,1,15,1,9,1,15,2,9,2,15,2,9,4,13,1,25,1,9,4,26,1,30,1,26,1,13,4,26,1,29,1,13,2,26,4,30,1,29,1,30,9,29,4,28,2,29,8,28,1,29,1,28,7,29,1,28,12,29,3,28,2,1,8,28,2,9,2,26,1,29,9,30,6,26,12,30,1,29,1,28,1,29,2,30,1,29,2,28,3,29,4,28,4,30,1,29,1,28,9,30,1,29,1,28,7,13,1,29,1,28,1,29,1,28,4,30,2,29,1,28,36,29,1,28,6,1,273,}, + {1,333,28,1,30,1,28,14,29,5,30,4,26,6,13,2,26,3,13,1,26,1,29,1,28,2,29,1,30,1,29,3,30,2,29,5,30,1,26,4,13,1,26,1,13,10,9,2,13,1,29,1,28,1,29,1,28,6,29,1,26,2,13,1,9,3,25,1,9,1,15,1,14,3,11,1,15,1,26,1,13,1,25,1,9,1,14,2,11,2,9,1,30,1,15,1,9,1,15,1,14,1,11,1,29,1,26,1,15,4,14,3,15,1,9,1,30,1,29,2,26,1,13,2,26,2,13,2,25,3,9,2,15,3,14,6,15,3,9,1,15,12,14,1,15,3,14,2,15,2,13,1,9,1,25,2,15,2,9,1,15,2,9,2,15,2,9,2,13,1,9,2,15,2,9,4,25,2,13,2,26,10,30,2,26,4,30,5,29,4,28,2,29,8,28,1,29,1,28,16,29,1,28,3,30,1,28,2,1,10,28,1,30,1,9,1,25,1,30,1,29,12,30,5,26,10,30,1,29,1,28,1,29,6,28,2,29,3,28,5,30,1,26,1,29,1,28,8,30,1,28,8,30,1,26,1,30,1,29,1,28,4,13,1,30,1,29,1,28,28,29,1,28,6,29,2,28,6,1,273,}, + {1,333,28,16,29,5,30,3,26,6,13,2,26,3,13,1,26,1,29,1,28,3,29,2,30,3,29,6,30,1,26,5,13,1,26,1,13,10,25,1,9,2,26,1,29,1,28,2,29,1,28,4,30,2,26,1,13,1,25,1,9,2,25,2,9,1,14,1,11,1,14,1,11,1,15,1,25,1,9,3,15,1,14,1,11,2,9,1,26,1,15,1,16,1,9,1,15,1,11,1,13,2,14,6,15,1,13,1,30,3,26,5,13,1,26,2,13,3,9,2,15,3,14,8,15,18,14,2,15,2,13,1,9,1,25,1,26,1,9,1,15,8,9,1,25,1,26,1,9,2,15,1,9,8,13,2,26,1,13,2,26,6,30,2,26,4,30,5,29,14,28,1,29,1,28,15,29,1,28,3,29,1,28,2,1,11,28,1,13,3,29,14,30,7,26,7,30,1,29,1,28,1,29,6,28,2,29,4,28,4,29,1,30,1,26,1,29,1,28,7,30,1,28,9,29,1,26,1,29,2,28,3,13,1,29,2,28,17,29,1,28,17,29,1,28,7,1,273,}, + {1,332,28,1,29,1,28,14,29,6,30,2,26,6,13,2,26,3,13,1,25,1,30,1,28,3,29,4,30,2,29,6,30,1,26,5,13,1,26,1,13,8,25,1,9,1,13,1,9,2,13,1,30,1,28,1,29,3,28,3,30,2,26,1,13,1,25,1,9,3,25,1,15,1,11,2,14,2,15,1,9,2,14,1,15,2,14,1,11,2,9,1,26,1,15,2,9,1,14,1,11,1,15,1,9,1,14,4,15,1,9,1,13,1,26,1,30,2,26,6,13,3,26,3,13,1,9,1,15,1,14,3,15,4,14,5,15,3,14,1,15,16,9,1,15,1,25,1,29,1,13,1,15,3,9,1,15,1,9,3,15,1,9,1,25,1,9,2,25,1,13,1,9,8,13,2,26,2,13,2,26,4,30,1,29,1,30,9,29,2,30,1,29,10,28,2,29,1,28,11,29,3,28,3,29,1,30,1,28,2,1,12,28,1,13,3,29,15,30,7,26,6,29,2,28,1,29,6,28,2,29,4,28,6,29,1,26,2,29,1,28,4,29,1,26,1,29,1,28,6,30,1,28,2,29,1,30,1,13,1,26,1,28,2,29,2,28,44,1,273,}, + {1,332,28,15,29,7,30,2,26,6,13,1,26,3,13,2,26,1,29,1,28,2,29,12,30,1,26,6,13,11,9,4,13,2,30,1,29,3,28,3,29,2,30,1,13,2,25,2,9,2,15,1,14,2,15,1,14,2,15,1,9,1,14,4,11,2,16,1,29,1,16,1,14,1,15,1,14,1,11,1,14,1,15,2,14,2,15,1,25,1,26,4,30,1,26,2,13,3,26,2,25,2,13,1,30,1,29,1,30,1,25,1,15,3,9,3,15,3,14,8,15,18,13,1,29,1,30,1,9,1,15,2,9,1,15,1,9,3,15,1,9,1,25,1,9,2,13,1,26,1,9,2,25,3,13,2,25,2,13,1,26,2,13,2,26,3,30,1,29,2,30,9,29,2,30,1,29,10,28,4,29,2,28,7,29,4,28,2,29,1,30,1,28,2,1,12,28,1,29,1,13,2,26,1,30,1,29,16,30,6,26,4,30,1,29,1,28,2,29,6,28,2,29,4,28,8,29,1,26,1,13,1,30,1,28,2,29,1,30,1,29,1,28,6,29,1,28,3,30,1,13,1,30,1,29,1,28,47,1,273,}, + {1,329,28,1,1,2,28,14,29,8,30,2,26,6,13,1,26,3,13,2,29,1,28,3,29,3,30,1,29,8,30,1,26,5,13,12,25,1,9,2,13,2,9,1,26,1,29,1,28,1,29,4,28,1,29,1,30,1,26,1,13,2,25,1,9,2,15,5,14,2,9,1,15,1,11,2,14,2,11,1,16,1,28,1,9,1,11,1,15,1,14,1,15,1,14,1,15,1,9,3,13,1,26,1,30,1,26,3,13,2,26,3,13,2,26,2,13,3,26,2,9,1,14,1,9,1,25,2,9,1,15,1,14,10,15,17,14,1,9,1,13,1,30,1,29,1,13,1,9,3,15,2,9,1,15,2,9,1,13,1,9,1,15,1,9,1,13,1,9,5,13,1,26,1,13,3,26,8,30,1,29,1,26,1,30,7,29,14,28,4,29,4,28,5,29,4,28,2,29,1,28,2,1,13,28,1,13,1,26,1,13,1,26,1,30,1,29,18,30,4,26,4,30,1,29,1,28,2,29,7,28,1,29,4,28,3,29,1,28,7,29,3,30,1,29,1,28,11,29,1,30,1,28,1,30,1,28,47,1,273,}, + {1,331,28,1,29,1,28,13,29,6,30,2,29,1,30,1,26,4,13,1,26,1,13,2,26,1,13,2,30,1,28,3,29,12,30,1,26,3,13,15,9,1,25,1,13,2,25,1,9,1,13,1,30,1,28,1,29,3,28,1,29,3,26,2,13,1,25,1,9,1,15,2,9,1,25,1,9,1,14,1,11,1,14,1,15,1,30,1,9,1,11,4,9,1,29,1,9,1,15,1,14,4,9,1,26,18,13,2,26,2,9,3,26,1,25,1,15,5,14,9,15,2,14,1,15,2,14,2,15,10,14,1,15,1,30,1,28,1,13,1,9,4,15,1,9,5,15,1,9,1,13,1,25,1,9,5,13,6,26,1,13,1,26,2,30,5,26,1,30,7,29,2,30,1,29,13,28,4,29,4,28,4,29,2,28,2,13,1,28,2,1,14,28,1,13,1,30,1,13,2,30,1,29,18,30,3,29,2,30,3,26,1,30,1,28,2,29,1,30,2,29,1,30,1,29,2,28,1,29,3,28,4,30,2,28,4,29,1,28,4,13,1,29,1,28,13,29,1,28,25,29,1,28,22,1,273,}, + {1,331,28,1,29,1,28,13,29,6,30,4,26,5,13,2,26,2,13,2,28,3,29,12,30,1,26,3,13,16,25,1,13,4,25,1,9,1,26,1,29,3,28,4,29,2,13,1,9,1,15,1,9,3,25,2,9,1,14,1,11,2,14,1,26,1,9,1,14,1,11,3,15,1,26,1,9,1,14,1,11,1,14,3,9,1,13,1,26,6,29,2,26,8,30,2,29,2,13,1,9,2,13,1,26,1,25,1,15,5,14,10,15,2,14,1,15,2,14,2,15,9,14,1,15,1,9,1,26,2,13,1,9,3,15,2,9,13,13,6,26,3,30,1,26,4,30,1,26,1,30,11,29,16,28,4,29,1,28,2,29,1,28,2,29,1,30,1,28,3,1,14,28,1,13,1,29,1,13,2,29,19,30,3,29,2,30,3,26,1,30,1,28,2,29,1,30,2,29,1,30,1,29,2,28,1,29,4,28,3,30,2,28,1,29,1,28,7,29,1,13,1,29,1,28,9,29,1,28,1,29,2,28,48,1,273,}, + {1,330,28,16,29,5,30,4,26,6,13,1,26,1,30,1,13,2,29,1,28,3,29,1,30,2,29,7,30,3,26,2,13,13,25,2,13,8,9,1,13,1,30,1,29,6,30,1,26,1,13,6,25,1,9,2,15,1,14,1,11,2,9,2,15,1,14,2,11,1,14,1,9,1,15,1,14,1,11,1,14,1,15,1,9,1,25,1,13,1,26,4,30,1,29,1,28,2,26,1,30,6,29,1,28,3,30,1,13,1,9,1,25,1,26,2,9,2,15,5,14,9,15,2,14,1,15,4,9,6,15,6,9,1,26,2,13,1,25,1,9,8,13,2,25,1,9,4,25,1,13,2,25,1,13,3,30,1,26,4,13,1,26,4,30,6,29,1,30,4,29,16,28,5,29,2,28,1,29,1,30,1,29,1,28,2,1,16,30,1,13,1,30,1,9,1,13,1,28,1,29,19,30,2,29,2,30,2,29,1,30,2,29,1,28,1,29,4,30,2,29,1,28,2,29,3,28,3,29,1,30,1,29,1,30,1,28,7,29,2,28,1,29,1,30,1,28,6,29,1,30,1,29,3,28,48,1,273,}, + {1,330,28,16,29,5,30,3,26,7,13,1,26,2,25,1,26,1,28,3,29,2,30,1,29,7,30,2,26,5,13,11,25,3,13,1,25,2,13,2,26,2,13,3,30,1,29,3,30,1,29,1,30,3,29,3,13,1,9,1,13,1,9,3,15,2,11,2,15,1,9,1,15,1,14,2,11,2,14,4,15,1,9,1,13,2,26,4,30,1,29,2,28,2,29,8,28,2,29,1,26,1,13,2,26,2,13,1,9,3,15,5,14,7,11,1,14,2,15,1,9,10,15,4,9,1,15,2,9,1,25,1,26,1,25,1,9,8,13,1,26,1,13,1,9,3,25,2,13,1,25,2,13,3,30,1,26,1,13,4,26,4,30,6,29,21,28,5,29,1,28,2,30,2,28,2,1,16,28,1,8,1,30,1,13,1,9,1,26,1,28,1,30,1,29,19,30,2,29,1,30,2,29,4,28,1,29,4,30,2,29,1,28,2,29,3,28,4,29,3,28,7,30,1,28,2,29,2,28,6,29,1,30,2,29,1,28,48,1,274,}, + {1,330,28,15,29,6,30,1,29,1,30,1,26,7,13,1,26,1,13,2,29,1,28,2,29,2,30,2,29,3,28,1,29,3,30,1,26,6,13,10,25,4,9,1,25,2,13,3,26,2,13,2,26,1,29,2,30,2,29,2,28,3,29,1,26,1,13,1,25,1,9,4,15,2,14,1,11,1,15,3,14,3,11,2,14,1,15,1,9,2,25,1,13,1,30,2,26,2,30,1,29,7,30,4,29,2,28,2,29,1,26,1,13,1,26,1,30,1,29,1,13,1,25,1,9,2,15,5,14,10,15,1,9,2,15,1,9,1,25,1,9,4,15,5,9,2,15,1,14,1,15,1,9,17,25,1,13,1,25,1,9,1,13,3,26,1,13,4,26,5,30,6,29,21,28,4,29,1,28,2,30,1,29,1,28,2,1,16,28,2,13,1,30,1,15,1,9,1,26,1,28,1,29,21,30,2,29,11,30,2,29,2,28,1,29,4,28,4,30,1,28,1,29,1,28,7,30,3,28,7,29,4,28,46,29,1,28,1,1,274,}, + {1,330,28,15,29,6,30,3,26,6,13,3,25,1,26,1,28,2,29,2,30,2,29,2,28,3,29,2,30,2,26,5,13,11,25,4,9,3,25,1,13,5,9,1,13,1,30,1,29,3,28,4,29,1,30,1,13,1,25,1,9,5,15,1,14,1,11,2,15,3,14,3,11,1,14,1,15,1,9,2,13,3,26,1,30,1,26,1,30,1,29,4,30,1,26,2,13,1,25,1,9,3,25,1,13,2,29,1,28,1,29,1,26,2,29,1,28,1,26,1,13,1,9,3,15,6,14,7,11,1,15,1,9,1,15,2,9,1,25,2,9,3,15,3,9,1,15,2,25,2,15,1,14,1,15,3,9,7,25,1,13,1,25,1,9,4,25,1,13,1,9,2,13,3,26,6,30,2,26,3,30,5,29,2,30,2,29,17,28,5,29,1,30,1,29,1,28,2,1,17,28,1,13,1,26,1,13,1,15,1,9,1,26,1,29,22,30,2,29,12,30,2,29,1,28,2,29,1,28,1,29,1,28,4,30,1,29,2,28,8,29,1,13,1,30,1,28,5,29,1,30,1,29,2,28,12,29,1,28,8,30,1,28,23,30,2,29,1,28,1,1,274,}, + {1,329,28,16,29,6,30,3,26,6,13,2,25,1,13,1,29,1,28,2,29,5,28,3,29,2,30,3,26,2,13,1,26,1,13,12,25,2,9,6,25,1,9,1,25,2,9,3,30,1,29,3,28,2,29,1,30,1,26,3,13,1,9,5,15,1,14,1,11,2,14,7,9,3,25,1,13,3,26,1,30,3,29,3,30,1,26,1,13,3,25,1,9,6,13,1,30,1,29,2,30,1,28,2,29,1,13,1,9,3,15,7,14,6,11,1,14,1,15,3,9,3,25,1,9,2,15,3,9,1,15,2,25,1,13,1,9,1,15,5,9,6,13,1,26,1,13,1,9,3,25,2,13,1,9,2,13,3,26,6,30,1,26,4,30,5,29,2,30,2,29,17,28,5,30,1,28,2,1,19,28,1,8,1,30,1,13,1,9,2,30,1,28,1,29,21,30,2,29,2,30,1,29,9,30,2,29,1,28,2,29,1,28,6,30,2,28,10,30,1,26,1,29,1,28,4,30,1,26,1,29,2,28,18,29,1,28,3,26,1,28,22,30,1,13,1,28,2,1,274,}, + {1,329,28,16,29,6,30,2,26,7,13,2,9,1,26,1,28,2,29,5,28,4,29,2,30,1,26,1,30,1,26,2,13,1,26,2,13,10,25,3,9,2,25,3,9,8,30,1,29,2,30,1,29,3,28,1,29,1,30,1,13,3,9,4,15,1,14,1,11,2,14,3,15,4,13,1,30,1,13,1,25,1,13,1,26,2,30,2,29,4,30,1,26,1,13,2,30,1,29,3,30,1,26,1,25,1,9,3,25,1,30,1,28,4,29,1,26,1,9,4,15,4,9,1,15,1,14,7,11,1,14,1,15,1,16,1,9,3,25,1,9,2,15,2,9,1,15,1,14,1,15,1,9,2,15,2,9,2,15,2,9,5,15,1,9,4,25,2,9,1,25,1,13,1,25,1,9,1,13,3,26,2,13,2,26,7,30,6,29,16,28,8,30,1,28,2,1,19,28,1,13,2,30,1,9,1,13,1,9,1,26,1,28,1,29,21,30,2,29,2,30,1,29,9,30,2,29,1,28,2,29,2,28,1,29,1,28,3,30,1,13,1,29,2,28,10,30,2,28,3,26,2,29,1,28,17,29,1,28,2,13,1,28,2,13,1,29,1,28,25,1,274,}, + {1,329,28,15,29,5,30,2,26,1,30,2,26,7,25,1,13,1,28,3,29,2,30,1,29,1,28,4,29,2,30,2,26,6,13,4,25,1,13,1,25,1,13,3,25,2,9,11,25,1,9,3,13,1,29,2,30,1,28,1,29,5,26,1,13,2,25,1,9,2,15,2,14,3,11,1,14,2,9,1,15,1,9,1,30,2,26,1,13,2,26,2,30,2,29,4,30,1,26,1,13,2,26,1,29,1,30,2,26,3,13,2,9,1,15,1,14,1,9,1,13,1,30,1,28,3,29,1,9,3,15,5,14,9,11,2,15,4,9,1,26,1,25,1,15,4,14,1,15,10,9,6,15,2,9,3,13,1,25,1,13,2,25,1,13,1,26,1,13,3,26,6,30,2,26,3,30,3,29,2,30,1,29,11,28,1,29,2,28,1,29,1,28,2,30,1,29,1,28,1,29,1,13,1,28,2,1,20,28,1,13,4,9,2,29,19,30,6,29,1,30,1,29,2,28,1,29,3,30,1,29,6,28,2,29,4,28,4,13,1,30,1,28,6,29,2,28,4,29,1,13,1,28,3,29,1,30,1,28,9,29,1,28,10,26,1,28,3,13,1,30,1,28,24,1,274,}, + {1,329,28,15,29,5,30,2,26,1,30,1,26,8,13,1,26,1,28,3,29,1,30,1,29,2,28,4,29,2,30,2,26,5,13,11,25,2,9,14,15,1,13,1,29,2,30,1,29,6,26,1,13,2,25,1,9,2,15,2,14,2,11,1,14,1,11,1,14,1,9,3,29,1,30,1,26,1,13,2,26,2,30,2,29,3,26,2,13,2,26,2,30,2,26,3,13,2,25,1,9,1,15,4,9,1,13,1,29,1,30,1,29,1,26,1,9,4,15,1,14,5,15,1,14,5,11,1,14,1,15,3,14,1,15,1,9,2,15,3,14,1,15,5,14,3,9,6,25,2,9,6,13,1,25,1,13,1,25,2,13,4,26,8,30,1,26,2,30,3,29,3,30,1,29,10,28,1,29,3,28,2,30,2,28,2,26,1,29,1,28,2,1,21,28,1,9,1,13,2,25,1,9,2,29,19,30,8,29,2,28,1,29,10,28,2,29,4,28,4,26,1,13,1,28,5,30,2,29,1,28,5,29,1,28,3,29,2,28,8,29,2,28,9,29,1,28,5,13,1,26,1,28,23,1,274,}, + {1,328,28,15,29,5,30,3,26,8,13,1,26,2,29,1,28,2,29,1,30,2,29,1,28,4,29,3,30,2,26,4,13,12,25,1,9,15,15,1,9,1,30,1,29,1,30,1,29,6,26,2,13,1,25,1,9,2,15,2,14,2,11,1,14,1,11,2,15,1,9,1,25,1,29,1,30,1,26,4,30,1,29,4,26,1,13,1,25,1,13,2,26,1,30,2,26,3,13,2,9,2,15,4,14,2,9,1,26,1,30,1,28,2,13,1,9,2,15,1,14,3,15,2,9,2,15,1,14,6,15,3,14,2,15,1,9,1,15,3,14,1,15,5,14,3,9,3,15,1,9,1,25,1,13,2,9,6,13,1,25,1,13,1,25,2,13,4,26,9,30,6,29,2,30,2,29,8,28,2,29,3,28,1,29,2,28,2,30,1,29,1,28,2,1,22,28,1,9,1,13,1,9,2,15,1,9,1,29,19,30,8,29,2,28,1,29,1,30,1,29,8,28,2,29,3,28,6,9,1,29,1,28,3,29,1,13,1,29,2,28,9,29,1,28,9,29,2,28,9,30,1,28,6,30,1,28,3,29,1,28,19,1,274,}, + {1,328,28,14,29,4,30,5,26,8,13,2,30,1,28,3,29,1,30,1,29,1,28,5,29,1,30,3,26,4,13,11,25,3,9,15,15,1,9,1,13,1,29,1,30,2,29,5,30,1,26,1,13,1,25,1,9,3,15,1,14,4,11,1,14,1,9,2,25,1,29,1,30,1,26,4,30,1,29,4,26,1,25,2,13,1,26,1,30,2,26,4,13,1,9,3,15,1,9,2,15,1,14,2,9,1,25,1,26,1,29,1,28,2,25,1,15,1,14,2,9,2,15,3,9,2,15,1,14,6,15,4,9,2,15,2,9,2,15,8,9,3,15,1,9,1,25,1,26,1,30,1,9,6,13,3,25,2,13,4,26,9,30,3,26,1,30,6,29,13,28,4,26,1,28,3,1,23,28,1,13,1,25,1,9,2,15,1,9,1,29,20,30,7,29,2,28,1,30,2,29,4,30,4,29,1,28,1,29,4,28,5,30,2,28,3,13,2,29,1,28,1,29,1,28,3,29,1,28,4,29,1,28,8,30,3,29,1,28,17,29,1,28,4,29,2,28,15,1,274,}, + {1,328,28,14,29,3,30,5,26,9,13,1,25,1,29,1,28,2,29,1,30,1,29,1,28,5,29,1,30,3,26,4,13,12,25,2,9,16,15,2,13,1,29,2,30,1,29,4,30,2,26,1,13,1,25,1,9,3,15,2,14,4,15,1,9,3,30,1,26,5,29,4,26,1,13,1,25,1,13,1,26,1,30,1,26,5,13,2,9,2,15,7,14,2,15,1,26,1,28,2,9,1,14,1,15,1,9,1,25,1,9,1,15,4,9,2,14,7,15,5,14,1,15,1,9,3,15,2,14,2,15,4,9,5,26,1,29,1,25,1,9,5,13,2,25,7,13,1,26,4,13,1,26,3,30,3,26,1,30,7,29,12,28,2,30,2,28,2,1,25,28,1,8,1,9,5,29,25,30,3,29,1,28,1,30,1,26,1,29,1,30,1,29,1,30,1,26,1,30,2,26,1,29,1,28,3,29,2,28,6,26,1,28,3,13,1,30,1,28,2,30,1,28,5,29,1,28,2,29,1,28,8,30,2,29,1,28,23,29,1,30,2,28,14,1,274,}, + {1,328,28,13,29,4,30,5,26,9,13,2,28,3,30,2,28,6,29,1,30,3,26,4,13,12,9,16,15,1,9,1,15,1,14,1,9,1,29,7,30,1,26,2,13,2,25,1,9,2,15,2,14,4,15,1,9,3,26,5,30,1,29,3,26,1,25,3,13,1,26,3,13,1,26,3,13,1,9,3,15,7,14,1,11,2,9,1,28,2,9,1,15,1,9,1,13,1,9,1,15,5,9,2,15,1,14,7,15,1,14,4,15,3,9,1,15,2,14,3,15,4,9,4,25,1,30,1,25,1,9,5,13,2,9,3,25,2,9,2,25,1,26,2,13,3,26,5,30,10,29,4,28,1,29,7,26,1,29,1,28,2,1,26,28,1,9,5,25,1,29,25,30,3,29,1,28,1,30,1,26,1,29,1,30,3,26,4,30,1,28,3,29,2,28,6,13,1,28,3,30,1,28,2,29,2,28,8,29,1,28,8,30,1,26,1,28,10,29,1,28,15,29,1,28,1,29,2,28,10,1,275,}, + {1,328,28,13,29,4,30,4,26,10,13,1,30,1,28,2,29,1,30,1,29,1,28,4,29,2,30,4,26,3,13,10,25,3,9,16,15,1,9,1,15,1,14,1,9,1,30,1,29,6,30,1,26,1,13,4,9,2,15,1,14,5,15,1,9,1,15,1,9,1,26,4,30,1,29,3,26,1,13,1,9,1,25,1,13,2,26,7,13,1,9,2,15,9,14,1,11,1,15,1,30,1,28,1,26,1,25,1,13,1,9,1,15,6,9,3,15,1,14,2,15,1,14,2,15,2,14,1,15,6,9,1,15,2,14,3,15,3,14,1,15,1,9,2,15,1,9,1,30,1,13,1,9,2,25,4,9,4,25,4,13,1,26,1,13,4,26,5,30,10,29,12,28,2,1,28,28,1,9,1,15,1,9,3,13,1,29,2,30,1,29,15,30,1,29,6,30,3,29,1,28,1,26,1,13,1,30,3,26,4,13,1,26,1,28,3,29,2,28,6,29,1,28,3,29,2,28,1,30,1,28,7,29,1,28,10,29,1,26,1,28,10,26,1,29,1,28,6,29,1,28,21,1,275,}, + {1,327,28,13,29,5,30,3,26,10,13,2,29,1,28,2,29,1,30,1,28,5,29,1,30,5,26,3,13,10,25,1,9,18,15,1,9,1,15,1,14,1,9,1,30,1,29,6,30,1,26,1,13,4,9,2,14,6,15,1,9,1,15,1,9,1,30,2,26,1,30,1,29,4,26,1,25,3,13,1,26,7,13,1,25,1,9,1,15,4,9,1,15,2,14,1,15,4,1,1,14,1,28,2,29,1,13,1,9,2,15,3,14,2,15,1,9,2,15,1,14,2,15,1,14,2,15,3,25,2,15,1,14,2,15,3,14,4,15,3,14,2,9,1,25,1,9,1,13,1,29,1,26,1,9,2,25,4,9,3,25,1,13,4,26,1,13,5,26,5,30,2,29,1,30,7,29,4,30,1,29,6,28,2,1,29,28,1,9,1,15,2,9,2,13,1,29,2,30,1,29,14,30,2,29,6,30,3,29,1,28,1,26,1,13,1,30,1,26,1,30,1,26,4,13,1,26,1,29,1,28,2,29,3,28,8,29,2,30,1,28,9,29,1,28,10,29,1,30,1,28,10,29,1,28,12,29,1,28,16,1,275,}, + {1,327,28,12,29,3,30,1,29,2,30,4,26,3,30,1,25,1,13,2,26,2,9,1,26,1,28,2,29,1,30,1,29,1,28,5,29,2,30,2,26,4,13,12,25,2,9,15,15,4,14,1,15,1,26,1,28,1,29,3,30,4,26,1,13,1,9,2,15,7,14,1,15,3,9,1,26,4,29,3,26,1,13,1,9,1,13,3,26,3,30,3,13,1,9,4,15,11,14,1,11,1,15,1,29,1,28,1,13,1,9,3,15,3,14,2,15,1,9,2,15,1,11,1,14,1,15,2,14,2,15,1,9,1,8,1,15,3,14,1,15,3,14,2,15,3,9,1,15,2,9,9,25,6,13,6,26,2,13,3,26,1,30,2,29,1,26,2,30,1,29,1,30,4,29,2,26,1,30,1,29,2,30,2,29,3,26,1,29,1,28,2,1,30,28,2,11,1,9,1,14,1,15,1,26,1,28,1,30,1,29,4,30,5,29,1,30,6,29,1,30,2,29,4,30,3,29,3,15,1,30,1,26,8,29,1,28,3,29,1,30,1,28,6,13,1,28,2,30,1,29,1,28,10,29,2,28,2,29,1,28,6,29,2,28,9,30,1,29,1,28,28,1,275,}, + {1,327,28,10,29,1,28,2,29,2,28,1,29,1,30,6,26,2,13,2,29,1,30,1,13,2,25,1,30,1,28,2,29,2,28,5,29,2,30,3,26,4,13,12,25,2,9,15,15,4,14,1,15,1,13,1,29,4,30,1,26,1,13,2,25,1,9,1,13,2,9,2,15,5,14,1,15,2,14,1,9,1,26,4,29,3,26,1,25,2,13,2,26,3,30,3,26,1,13,1,9,3,15,13,11,1,14,1,13,1,28,1,29,1,13,1,9,1,15,3,14,3,15,4,14,1,15,3,14,3,15,1,9,1,15,3,14,1,15,1,9,1,15,1,14,2,15,3,9,3,15,3,9,9,25,3,13,6,26,3,13,2,26,2,30,1,29,1,30,1,26,1,30,5,29,1,26,1,30,1,29,4,30,1,28,1,29,1,26,2,28,2,1,33,28,1,8,1,14,1,9,1,14,1,30,1,28,1,30,2,29,3,30,15,29,4,30,3,29,3,15,1,26,1,30,1,13,1,26,6,29,1,28,3,29,2,28,9,30,1,26,1,30,1,29,1,28,12,29,1,30,2,28,4,26,2,28,9,30,1,29,1,28,12,29,1,28,15,1,275,}, + {1,328,28,6,29,1,30,1,29,2,30,1,29,1,30,1,29,1,30,4,26,6,25,1,13,1,26,1,13,1,26,1,30,1,26,1,28,3,29,2,28,4,29,2,30,3,26,5,13,12,25,2,9,15,15,4,14,1,15,1,13,1,29,3,28,3,29,4,30,1,26,1,13,1,9,2,15,6,14,2,9,1,26,1,13,1,26,2,29,2,26,1,25,2,13,1,26,1,13,1,26,2,30,4,13,1,9,4,15,13,14,1,11,1,15,1,29,1,28,1,26,1,9,2,15,3,14,2,15,8,11,1,14,1,11,1,14,1,15,2,14,2,11,1,15,8,9,3,15,4,9,8,25,3,13,7,26,3,13,1,26,3,29,1,30,7,29,1,30,2,29,1,30,2,29,3,26,1,30,1,28,2,1,35,28,1,14,1,11,1,9,1,13,1,28,1,29,4,30,17,29,2,30,4,29,1,28,1,29,1,14,1,13,1,29,1,13,1,26,6,29,1,28,2,29,2,28,2,29,1,28,8,29,2,26,2,29,1,28,10,29,3,26,1,28,3,30,1,29,1,28,9,30,1,29,1,28,11,29,1,26,1,28,15,1,275,}, + {1,330,28,10,29,4,30,3,26,3,13,2,6,1,7,1,8,1,9,1,13,3,28,2,29,2,28,5,30,3,26,4,13,1,26,2,13,12,25,2,9,15,15,6,25,1,30,1,29,9,26,2,13,1,9,3,15,2,14,1,15,2,14,1,15,1,13,1,30,1,26,2,30,1,29,1,26,1,13,1,25,1,13,1,26,2,13,1,26,2,30,1,29,1,30,1,26,1,9,5,15,11,9,2,15,1,11,2,9,1,29,1,30,1,9,3,15,10,14,1,11,2,14,6,11,2,14,1,15,4,16,1,9,1,15,8,9,1,15,1,9,5,25,4,13,7,26,7,30,9,29,2,26,1,30,1,29,3,13,1,29,1,28,2,1,37,28,1,1,1,9,1,13,1,29,1,30,27,29,1,28,1,29,1,14,1,9,1,29,1,13,3,26,2,13,2,26,1,28,2,30,1,29,1,28,1,29,2,28,10,29,1,26,1,13,1,26,1,29,1,28,15,26,1,29,1,28,9,29,2,28,11,29,1,26,1,28,15,1,275,}, + {1,338,28,19,13,2,28,2,29,2,28,4,29,1,30,1,26,8,13,12,25,3,9,15,15,6,9,1,30,1,29,2,30,3,29,1,30,1,26,1,13,3,9,3,15,5,14,2,9,1,30,1,29,1,26,2,29,2,13,1,9,1,13,1,26,3,13,1,26,2,30,2,26,1,13,1,9,5,15,12,9,2,14,1,1,1,14,1,13,1,29,1,25,1,9,4,15,5,14,2,11,4,14,5,11,2,14,2,15,2,16,3,15,5,9,9,25,7,13,6,26,9,30,6,26,2,30,1,29,1,28,1,29,1,30,1,13,1,28,2,1,40,28,1,11,1,29,2,30,27,29,1,28,1,29,1,14,1,15,1,29,1,13,3,26,2,13,2,26,1,29,1,28,1,29,1,30,1,28,1,29,1,28,6,30,1,29,1,28,7,29,1,30,3,28,12,29,1,30,1,28,9,29,2,28,12,29,1,28,15,1,275,}, + {1,356,28,4,29,2,28,4,29,1,26,1,30,1,26,7,13,13,25,1,9,16,15,7,9,1,26,1,29,3,30,1,29,3,26,1,13,3,9,3,15,2,14,1,15,2,14,2,13,1,29,3,30,1,29,1,30,1,25,1,9,1,13,1,26,6,30,1,26,1,13,1,9,5,15,14,9,1,15,1,11,2,9,1,29,1,30,1,13,1,9,2,15,1,14,5,11,4,14,1,15,1,14,1,15,1,14,1,11,1,14,3,15,1,14,1,15,8,9,12,25,2,9,2,25,2,13,7,26,6,13,1,26,1,30,6,29,1,26,1,30,1,29,1,30,1,13,1,29,1,28,2,1,41,28,2,26,1,29,1,30,27,29,3,14,2,26,1,13,4,26,1,13,2,26,2,28,2,29,3,28,6,29,1,28,4,30,1,29,1,28,8,29,2,28,19,29,2,28,18,29,1,28,9,1,275,}, + {1,358,28,1,29,1,30,1,28,5,29,1,26,1,30,1,26,7,13,12,25,2,9,16,15,3,14,1,15,2,14,1,15,1,13,1,29,1,30,6,26,1,13,3,25,1,9,3,15,2,14,1,15,1,14,1,15,1,26,1,29,2,28,1,29,1,26,1,13,3,26,6,30,1,26,1,13,1,9,5,15,15,9,2,14,1,11,1,14,1,13,1,29,1,13,1,9,1,15,1,14,10,15,2,14,1,15,1,14,1,11,1,15,2,14,1,15,10,9,12,25,2,9,2,25,2,13,8,26,1,13,1,26,3,13,1,26,1,30,2,26,1,30,3,29,1,30,1,29,2,26,1,29,1,28,2,1,41,28,1,1,2,30,1,26,1,29,1,30,26,29,2,28,1,15,1,11,1,25,1,13,5,26,1,13,2,26,1,28,3,29,2,28,5,29,1,28,10,29,1,28,26,29,1,28,28,1,275,}, + {1,356,28,1,1,1,28,2,30,1,28,4,29,1,30,1,26,1,30,1,26,6,13,13,25,1,9,16,15,4,14,1,15,2,14,1,15,1,13,1,29,1,30,2,29,2,30,2,26,2,13,2,9,4,15,2,14,1,15,1,14,1,15,1,26,1,30,1,29,1,28,2,26,1,9,1,26,1,30,1,26,1,13,1,26,3,30,2,26,1,13,1,9,2,15,1,9,2,15,16,9,1,15,1,11,2,9,1,26,1,9,1,15,1,14,3,15,3,14,1,15,4,11,1,14,1,15,2,11,2,15,2,14,2,15,2,14,4,15,4,9,12,25,2,9,1,25,3,13,9,26,3,13,1,26,1,30,1,26,2,30,2,26,1,30,1,29,1,30,1,13,1,28,2,1,46,28,1,8,1,28,1,30,20,26,1,30,4,26,1,29,3,15,1,1,1,9,1,13,5,26,1,13,3,29,1,28,2,29,3,28,4,13,1,29,1,28,4,29,2,28,4,29,1,28,2,30,2,29,3,28,4,30,2,28,2,29,1,28,9,30,1,28,10,29,1,30,1,28,16,1,275,}, + {1,359,28,1,29,1,28,3,29,1,30,3,26,8,13,12,9,17,15,5,14,2,15,2,25,1,29,1,30,2,29,2,30,1,26,1,13,4,25,1,9,2,15,3,14,2,15,1,9,1,26,2,30,1,28,1,29,1,26,1,13,2,26,3,13,1,26,1,30,2,26,1,13,1,9,4,15,3,9,2,15,15,14,2,15,1,13,1,25,1,26,1,13,1,9,3,15,4,9,1,15,1,11,2,14,4,11,2,15,2,11,1,14,1,15,9,9,13,25,1,9,1,25,1,13,9,26,5,13,1,26,1,30,1,13,1,26,1,30,2,26,1,28,1,8,1,7,1,28,2,1,47,28,1,13,1,26,1,29,1,30,22,26,2,30,2,29,2,15,1,11,1,15,1,30,1,25,1,13,2,25,1,13,1,26,2,13,1,26,1,28,3,30,2,28,3,30,1,29,1,28,1,29,1,28,4,30,1,29,1,28,12,29,2,28,3,29,1,28,2,29,1,28,8,29,1,28,28,1,275,}, + {1,358,28,1,29,2,28,3,29,1,30,3,26,9,13,11,9,17,15,5,14,2,15,2,25,1,29,1,30,2,29,2,30,2,26,2,13,2,9,4,15,1,14,1,15,3,9,1,13,1,26,2,29,1,26,2,13,1,26,3,13,2,26,3,13,2,9,4,15,3,9,2,15,15,14,1,11,1,14,1,13,1,26,1,30,1,26,1,9,3,15,6,14,1,11,2,14,3,11,2,14,1,15,1,14,2,15,9,9,13,25,1,9,1,25,2,13,8,26,5,29,1,13,1,26,1,29,2,13,2,28,1,13,1,28,3,1,48,28,1,13,1,26,2,30,13,26,2,30,5,26,4,30,2,29,1,30,1,15,1,1,1,14,1,26,1,25,1,13,7,26,1,28,3,29,1,28,4,30,1,29,1,28,6,29,1,26,1,28,13,13,1,28,7,29,2,28,6,29,1,28,28,1,275,}, + {1,358,28,6,30,1,26,2,30,1,26,9,13,11,9,17,15,6,14,1,15,2,9,1,29,1,30,3,29,1,30,2,26,1,13,3,25,2,9,1,15,1,14,2,9,1,15,1,14,1,15,1,13,1,26,1,13,2,26,6,13,2,26,3,13,1,25,1,9,5,15,15,14,2,15,3,11,2,9,1,13,1,26,1,13,2,9,1,15,3,14,2,15,2,14,1,11,3,15,1,14,1,11,2,14,1,15,5,14,2,15,2,14,1,15,2,9,13,25,1,9,1,25,4,13,7,26,6,29,1,30,1,26,1,30,1,29,1,30,1,28,2,1,50,28,1,30,1,29,2,30,11,26,14,29,2,30,1,15,1,1,1,11,1,25,2,13,8,29,1,28,6,29,1,30,1,29,1,28,7,26,1,29,1,28,12,13,1,28,4,29,1,28,2,29,1,26,1,30,1,28,34,1,275,}, + {1,358,28,1,29,1,28,4,30,4,26,9,13,10,25,2,9,15,15,7,14,1,15,2,9,1,30,7,26,1,13,4,9,1,15,1,14,1,15,2,9,2,14,1,15,1,26,1,29,1,26,1,13,3,26,8,13,1,25,1,9,6,15,2,9,2,15,11,14,2,15,3,14,1,11,1,14,1,8,1,26,3,9,1,15,3,14,2,15,3,11,3,15,1,14,1,11,3,15,5,14,2,15,5,9,13,25,4,9,2,25,1,13,6,26,6,30,1,29,1,26,1,13,1,29,1,28,1,1,52,28,1,13,1,30,1,29,1,30,6,26,19,29,2,26,1,15,1,1,2,9,1,13,1,25,1,9,1,13,5,9,1,30,1,28,3,29,1,28,2,13,1,26,1,29,1,28,5,29,1,28,1,29,1,26,1,28,11,29,3,30,1,28,4,29,1,28,1,29,1,30,1,29,1,28,1,29,1,28,3,29,1,30,1,29,1,28,3,29,3,28,14,29,1,28,5,1,274,}, + {1,358,28,5,29,1,30,4,26,9,13,9,25,3,9,14,15,10,14,1,9,1,30,5,29,1,30,2,26,1,13,2,9,1,15,3,9,1,25,1,9,1,15,1,14,1,15,1,26,1,29,1,30,1,13,2,26,8,13,1,25,1,9,12,15,10,14,3,15,1,14,3,11,1,9,1,30,3,25,1,15,1,9,1,15,1,14,2,15,3,14,1,11,2,14,1,15,1,11,3,15,5,14,2,15,5,16,1,9,11,25,5,9,2,25,1,13,6,26,4,30,2,26,1,13,2,29,1,28,1,1,52,28,2,26,2,30,10,26,16,30,1,29,1,26,1,9,1,11,1,1,1,11,1,13,1,9,3,25,1,13,4,26,1,29,1,28,2,29,1,28,2,13,1,29,1,28,9,26,1,28,14,29,1,28,12,29,3,28,1,29,2,30,1,29,1,28,3,29,4,28,17,1,273,}, + {1,357,28,6,29,1,30,3,26,10,13,9,25,3,9,14,15,7,14,1,15,2,14,1,9,1,26,1,30,4,26,2,13,3,9,3,13,2,9,1,15,3,14,1,9,1,26,1,29,1,26,11,13,1,9,14,15,5,14,2,15,1,14,8,11,1,9,1,30,1,29,1,30,1,25,1,9,2,15,2,14,2,15,2,14,1,11,2,14,1,15,1,11,3,14,1,15,4,14,1,15,8,16,1,9,9,25,6,9,1,25,1,13,6,26,4,30,2,8,1,9,1,28,2,1,50,28,1,1,2,28,1,6,1,30,1,29,1,26,1,30,7,26,19,29,1,30,1,15,1,11,1,1,2,9,5,25,1,13,2,26,1,13,2,28,5,26,1,28,10,13,1,29,1,28,31,29,3,28,4,29,2,28,18,1,273,}, + {1,357,28,5,29,1,30,2,29,1,30,1,26,10,13,8,25,5,9,13,15,7,14,1,15,2,14,1,15,1,26,1,29,2,30,2,26,1,13,3,25,1,9,1,13,1,26,1,30,1,13,1,9,1,14,1,15,2,14,1,9,1,26,2,13,1,26,7,30,1,26,1,13,2,9,14,15,5,14,2,15,1,14,8,11,1,15,1,13,1,30,1,13,1,25,1,9,1,15,3,14,5,11,2,14,1,15,1,14,1,11,2,14,1,15,3,14,2,15,8,16,1,9,11,25,6,13,5,26,6,9,1,7,1,28,2,1,48,28,6,29,1,30,1,26,3,30,6,26,18,30,1,13,1,29,2,15,1,11,2,1,1,14,1,9,5,25,2,26,1,13,2,29,1,28,3,29,2,28,9,29,1,30,2,28,5,29,1,30,1,28,5,29,1,30,1,28,20,29,1,28,3,29,6,28,15,1,272,}, + {1,357,28,5,29,1,30,2,29,1,30,1,26,10,13,8,25,5,9,13,15,7,14,1,15,2,14,1,15,1,26,1,29,4,30,2,29,2,30,3,13,1,9,1,15,2,9,1,15,3,9,1,30,1,26,1,13,1,26,6,30,2,26,1,13,1,25,1,9,5,25,1,9,3,25,1,9,4,15,5,14,2,15,1,14,7,11,2,14,1,9,1,13,2,25,2,15,3,14,6,11,1,14,1,15,1,14,1,11,3,14,5,15,3,14,1,15,4,9,12,8,1,25,4,13,3,26,1,13,2,26,5,9,1,29,1,28,2,1,47,28,2,7,1,15,1,14,1,11,1,1,1,15,1,13,1,28,1,30,1,26,1,29,1,30,5,26,19,29,1,13,1,29,2,14,1,11,2,1,1,11,1,15,1,25,1,9,1,15,1,9,1,25,1,9,1,25,1,13,2,26,1,28,3,29,3,28,8,29,1,28,1,26,1,28,3,30,1,28,8,30,2,29,1,28,8,29,2,28,17,29,1,30,1,28,16,1,271,}, + {1,357,28,4,29,1,30,2,29,2,26,10,13,9,25,3,9,5,15,3,9,6,15,9,14,1,15,3,25,1,29,4,28,3,29,1,26,1,13,1,9,1,25,1,13,1,9,1,15,3,14,1,15,1,25,1,26,2,13,1,26,6,29,2,26,1,13,2,9,4,25,1,13,1,9,1,25,2,9,1,25,1,13,1,9,1,15,7,14,10,11,2,9,1,13,3,25,1,15,1,9,1,15,2,14,6,15,2,14,2,11,1,14,1,16,1,14,2,15,3,11,1,14,1,16,1,15,2,9,1,15,2,16,1,9,9,25,3,9,2,25,1,13,2,25,1,26,1,25,2,13,4,9,1,28,2,1,48,28,1,7,1,15,2,9,1,8,1,9,1,15,1,9,1,30,1,29,1,26,29,29,1,30,1,15,1,11,3,1,1,15,1,9,1,15,1,9,4,25,1,13,3,30,1,28,6,29,2,28,5,29,1,28,3,29,1,28,5,30,1,26,1,28,4,29,1,26,1,29,1,28,4,29,1,28,2,26,1,28,2,29,1,28,9,29,1,28,24,1,270,}, + {1,357,28,4,29,1,30,1,29,2,30,1,26,10,13,9,25,3,9,5,15,3,9,6,15,9,14,1,15,3,9,1,26,1,30,3,29,3,26,1,9,1,25,1,13,2,9,4,15,1,14,1,15,1,25,1,26,9,29,1,30,1,26,1,13,2,9,4,25,2,26,3,13,3,9,1,15,7,14,11,11,1,15,1,13,4,9,2,15,2,14,5,11,1,15,1,14,3,11,2,15,2,14,1,15,3,14,2,16,1,15,1,16,1,9,1,16,1,15,2,9,9,8,1,9,1,25,2,9,1,25,1,13,7,30,1,9,2,28,2,1,47,28,2,16,1,15,1,13,1,30,1,8,1,15,1,9,1,15,1,25,1,30,1,29,1,26,29,29,1,30,1,15,1,11,3,1,1,11,1,9,2,15,1,9,4,25,1,13,2,26,1,28,4,29,1,28,2,29,1,28,13,29,2,28,7,29,1,26,1,30,1,28,6,30,1,28,38,1,269,}, + {1,357,28,4,29,3,30,1,26,11,13,9,25,3,9,6,15,1,9,7,15,9,14,1,15,3,9,1,30,7,26,1,13,1,9,3,25,1,9,3,15,1,14,1,15,1,25,1,26,8,29,2,26,1,13,2,25,1,9,4,25,2,30,1,26,2,13,2,9,2,15,7,14,9,11,1,14,1,11,1,14,1,9,1,13,3,25,1,9,2,15,2,14,4,11,1,14,1,11,6,15,5,14,1,15,1,16,1,15,1,16,1,9,2,15,2,16,1,9,10,25,1,13,1,25,1,9,1,25,1,13,5,26,1,9,1,8,1,28,2,1,47,28,1,8,1,9,1,16,1,9,1,8,1,9,2,13,1,9,2,13,1,29,1,30,1,26,11,13,2,26,16,29,1,30,1,15,1,11,3,1,2,15,1,9,1,15,2,9,5,25,1,13,1,30,1,28,3,29,1,28,2,29,1,28,6,13,1,28,4,29,2,30,1,29,1,28,8,29,1,26,1,29,1,28,6,13,1,28,2,29,2,28,19,29,1,28,11,30,1,28,2,1,268,}, + {1,357,28,3,29,4,30,1,26,9,13,11,25,3,9,14,15,9,14,1,15,2,14,1,9,1,30,7,26,1,13,2,9,2,25,1,9,1,15,1,14,1,9,1,15,2,25,1,26,7,29,3,26,1,25,1,13,1,25,1,9,4,25,2,26,1,13,4,9,1,15,1,9,1,15,6,14,7,11,3,14,1,11,2,9,1,25,4,9,2,15,1,14,4,11,5,14,1,11,3,15,5,14,1,15,4,9,2,16,1,9,12,25,3,9,1,25,2,13,3,7,1,16,1,29,1,28,2,1,33,28,1,1,12,28,2,11,2,16,1,8,1,13,2,9,1,13,1,9,3,13,1,29,1,26,30,29,1,30,1,15,1,11,4,1,1,11,1,9,1,15,2,9,6,25,1,13,1,29,1,28,2,29,2,28,8,26,1,28,2,29,1,28,15,30,1,26,1,28,5,9,1,28,36,29,1,28,2,1,267,}, + {1,356,28,3,29,5,26,10,13,10,25,4,9,14,15,9,14,1,15,2,14,1,9,1,26,1,30,5,26,1,13,1,25,1,13,2,25,1,9,1,15,2,9,2,15,1,9,1,13,1,26,6,29,1,28,2,29,1,26,1,13,1,25,1,9,5,25,2,13,1,25,1,13,1,26,1,13,1,9,3,15,3,14,1,15,2,14,7,11,6,15,1,8,1,25,1,9,2,15,2,14,6,11,1,17,1,11,1,14,1,15,1,11,3,15,10,16,1,9,2,16,1,9,9,25,3,10,1,25,4,13,1,25,1,13,1,16,1,28,2,1,2,28,1,1,40,28,6,6,1,1,1,11,1,15,1,9,2,13,2,9,1,25,1,9,2,13,1,30,1,26,10,30,2,26,18,29,1,30,1,15,1,11,1,14,1,11,3,1,1,14,1,9,1,15,2,9,2,15,1,9,3,25,1,26,1,29,1,28,2,29,2,28,8,29,1,28,1,30,1,29,1,28,16,29,2,28,3,13,1,29,1,28,14,29,1,28,21,13,1,28,1,1,267,}, + {1,356,28,1,29,1,28,1,29,3,30,2,26,9,13,11,25,4,9,14,15,9,14,1,15,2,14,1,15,1,26,1,30,5,26,1,13,1,9,1,13,1,25,1,9,4,25,1,9,1,15,1,9,1,13,1,26,5,30,1,29,1,28,2,29,1,13,2,25,1,9,5,25,4,13,2,25,1,9,3,15,2,14,10,11,7,14,1,9,1,25,1,9,1,15,1,9,1,15,7,14,1,15,1,11,1,15,2,14,1,11,2,15,8,9,1,15,2,16,2,15,2,9,8,25,2,10,1,9,1,25,5,9,2,28,1,1,39,28,4,30,1,8,1,15,1,11,1,17,1,16,1,7,1,28,3,15,1,11,1,14,1,9,3,25,1,13,1,25,1,9,1,13,1,26,2,13,1,26,1,13,4,26,23,29,1,30,1,15,1,11,1,14,1,11,3,1,1,11,1,16,1,9,1,14,1,9,2,15,1,9,4,13,2,28,3,29,1,28,2,29,1,28,6,29,1,26,1,13,1,28,11,29,2,28,4,30,1,28,3,29,1,13,1,28,14,29,2,28,20,29,1,30,1,28,1,1,266,}, + {1,356,28,1,29,1,28,1,29,3,30,3,26,8,13,11,25,3,9,15,15,2,9,2,15,5,14,1,15,2,14,1,15,1,26,1,30,1,29,2,30,2,26,1,13,1,25,3,9,1,25,1,13,1,25,1,9,1,15,2,9,1,13,1,26,3,30,2,29,1,28,2,29,1,26,1,13,1,25,1,9,6,25,2,9,1,25,1,13,1,25,1,9,4,15,2,14,10,11,5,14,1,11,1,14,1,9,1,13,1,9,7,15,3,14,1,17,1,11,1,14,1,15,2,11,2,14,1,15,7,9,1,15,6,9,9,25,5,9,2,13,1,8,1,28,1,1,38,28,2,29,1,9,1,11,4,14,1,15,1,9,2,25,2,13,1,7,1,10,1,15,1,11,1,14,1,9,1,25,2,9,1,13,1,25,1,13,1,26,4,13,1,25,1,13,4,26,21,29,1,30,1,15,1,14,2,11,3,1,2,11,1,15,5,9,5,25,1,26,1,28,5,29,1,28,7,29,2,13,1,28,13,29,2,28,1,29,1,28,4,9,1,28,37,30,1,28,2,1,265,}, + {1,356,28,1,29,1,28,1,29,3,30,3,26,8,13,11,25,3,9,19,15,5,14,1,15,2,14,1,15,1,13,1,26,1,30,1,29,1,30,1,26,1,13,2,9,1,13,1,29,1,30,1,13,1,9,3,15,2,9,1,13,1,26,3,30,1,29,2,28,2,29,1,13,1,25,1,9,7,25,2,9,1,13,2,9,5,15,1,14,9,11,10,9,1,30,1,13,1,9,5,15,2,14,1,11,1,14,2,11,2,15,2,11,3,15,7,16,1,15,5,9,11,25,2,13,1,9,3,7,1,28,1,1,3,28,1,1,33,28,1,29,1,15,2,14,1,15,2,9,1,15,1,9,1,15,2,14,1,15,1,14,2,11,1,15,1,16,2,14,1,11,1,14,1,9,1,13,1,25,1,13,1,25,2,26,4,13,1,25,4,13,4,26,18,29,1,30,1,15,1,14,2,11,5,1,1,14,1,9,1,14,1,15,1,9,8,29,1,28,6,29,1,28,7,26,1,29,1,28,7,29,1,28,6,26,1,29,2,28,3,9,1,28,38,29,1,28,1,1,265,}, + {1,356,28,1,30,1,28,1,30,3,26,14,13,8,25,4,9,17,15,11,9,1,26,1,29,2,30,1,29,2,30,2,29,1,30,1,13,1,9,1,15,2,9,1,15,2,9,1,13,1,26,3,29,2,28,2,29,1,26,1,13,2,9,16,15,1,14,10,11,10,15,1,13,1,26,1,9,5,15,1,14,7,15,1,17,1,11,3,15,10,16,1,9,6,15,1,9,6,13,1,25,2,15,2,28,1,1,37,28,1,29,1,15,2,9,4,15,10,14,3,15,2,14,3,9,1,13,1,9,1,25,3,13,1,25,1,9,7,25,1,13,3,26,8,13,2,26,2,13,4,26,1,29,1,30,1,9,1,14,1,11,1,14,1,11,5,1,1,11,1,14,1,15,3,9,6,13,1,30,1,28,5,29,1,28,8,26,1,28,6,29,1,28,9,29,1,30,1,28,2,29,1,13,1,28,13,29,1,28,12,30,1,28,13,1,264,}, + {1,356,28,1,30,1,29,1,30,3,26,11,13,1,26,1,13,9,25,4,9,17,15,8,14,3,9,1,13,1,29,3,28,3,26,2,13,1,25,1,9,4,15,2,9,1,13,1,26,3,30,1,29,1,28,2,29,1,26,1,13,1,9,15,15,3,14,10,11,10,14,1,25,1,26,1,9,5,15,1,14,7,17,1,15,1,11,3,15,7,16,1,15,2,16,1,9,5,16,1,9,6,25,1,9,4,28,1,1,33,28,1,1,2,28,1,6,1,11,1,15,1,26,1,25,1,9,6,15,2,9,1,15,6,14,5,11,1,14,1,15,1,9,1,25,2,9,5,15,1,9,1,15,3,9,5,13,1,30,1,29,1,30,1,26,2,29,1,26,1,13,2,26,2,13,4,26,1,29,1,30,1,9,1,14,1,11,7,1,2,11,1,14,2,15,4,9,4,13,1,29,1,28,13,30,1,29,1,28,4,30,1,28,12,29,1,28,1,29,1,13,1,28,26,29,1,28,13,1,264,}, + {1,355,28,2,30,1,29,2,30,1,26,10,13,13,25,4,9,15,15,13,9,1,13,1,29,5,30,1,13,2,9,6,15,2,9,1,26,1,30,1,26,2,30,1,28,3,30,1,13,1,9,15,15,4,14,10,11,11,9,1,26,1,25,1,9,4,15,1,14,6,11,1,17,1,15,1,17,1,11,2,17,1,15,6,16,1,15,2,16,1,9,2,16,1,9,1,15,1,9,7,13,1,8,1,15,1,8,1,28,1,1,35,28,2,29,1,11,2,9,3,25,1,9,6,15,1,9,2,15,6,14,4,11,2,14,1,15,1,9,5,15,11,9,2,26,1,29,2,26,1,13,1,26,6,13,4,26,1,29,1,30,1,25,1,15,1,11,2,14,1,11,5,1,2,11,2,14,4,15,1,9,1,25,1,9,2,13,1,29,1,28,34,13,1,28,41,1,263,}, + {1,355,28,2,26,1,29,2,26,10,13,14,25,3,9,15,15,5,9,2,15,3,14,4,15,1,25,1,30,3,29,1,30,1,26,2,13,1,9,6,15,1,9,1,13,1,26,1,30,3,29,1,28,2,29,1,26,1,25,1,9,15,15,4,14,11,11,10,9,1,26,1,13,1,9,4,15,1,14,6,11,1,14,1,15,2,17,1,11,1,17,1,15,6,16,4,9,6,15,1,9,6,15,1,29,1,28,1,1,24,28,1,1,5,28,3,29,1,9,1,16,1,9,2,28,2,15,1,1,1,15,1,25,2,9,9,15,7,14,4,11,1,14,1,15,1,9,19,25,1,26,1,29,1,30,1,26,6,13,4,26,1,29,2,13,1,15,1,14,1,11,1,14,1,11,6,1,2,11,2,14,4,15,1,9,4,26,1,29,1,28,2,29,1,28,17,29,1,28,12,30,1,29,1,28,24,29,1,28,15,1,263,}, + {1,355,28,1,29,4,26,10,13,14,25,4,9,13,15,6,9,1,15,8,9,1,13,1,26,3,29,3,13,2,9,6,15,1,9,1,13,1,30,3,29,1,28,3,30,1,13,1,25,1,9,14,15,5,14,11,11,10,9,1,26,2,9,4,15,1,14,6,11,1,14,1,15,3,11,1,15,13,9,2,15,3,9,1,25,1,9,2,15,2,28,2,1,27,28,3,30,1,9,1,14,1,11,2,14,3,15,2,30,1,28,1,9,1,11,1,14,1,9,14,15,5,14,3,15,1,9,6,25,1,9,13,15,1,25,1,29,1,28,2,26,3,13,6,26,1,29,1,30,1,26,1,9,1,15,1,14,2,11,7,1,3,11,2,14,3,15,1,9,4,26,1,28,3,29,2,28,14,30,2,28,4,29,1,28,7,30,1,29,1,28,23,30,1,29,1,28,16,1,262,}, + {1,355,28,1,30,3,29,1,26,8,13,15,25,5,9,13,15,9,9,2,15,3,14,2,9,1,13,1,26,1,30,1,29,2,26,1,13,2,25,1,9,5,15,1,9,1,26,1,30,3,29,1,28,2,29,1,26,1,13,1,25,1,9,9,15,8,14,14,11,9,15,1,26,1,30,1,25,1,9,3,15,2,14,2,11,1,14,4,15,3,11,1,15,2,14,1,15,10,9,2,15,2,9,4,15,1,16,1,28,2,1,25,28,3,7,1,14,4,15,2,9,1,15,3,14,1,15,3,9,2,11,1,14,1,15,1,9,1,13,1,25,1,9,3,13,1,25,1,9,6,15,3,14,2,9,1,13,1,29,1,13,6,9,11,25,1,9,1,15,2,25,1,30,1,29,1,26,3,13,6,26,1,30,3,13,1,9,1,15,1,14,2,11,7,1,3,11,3,14,2,15,1,9,3,25,1,30,1,28,7,29,1,30,1,28,23,29,2,28,23,13,1,28,9,29,1,28,5,29,1,28,1,1,262,}, + {1,355,28,1,30,1,29,2,30,2,26,6,13,1,26,2,13,12,25,5,9,16,15,5,16,1,15,3,14,3,11,1,14,1,9,1,13,1,26,1,30,1,29,2,26,1,13,1,25,1,9,6,15,1,9,1,30,4,28,3,29,1,13,1,25,2,9,8,15,8,14,15,11,6,14,1,11,2,15,1,25,1,26,1,13,1,9,4,15,1,14,7,15,2,11,2,15,2,14,1,15,10,9,1,15,1,9,1,15,1,9,2,16,1,15,1,10,1,28,3,1,24,28,2,13,1,15,2,9,6,15,1,9,1,15,1,14,1,9,1,15,1,11,1,14,1,15,1,14,2,11,1,14,1,9,1,25,1,13,2,26,2,30,1,26,1,13,1,25,1,9,4,15,3,14,1,9,1,13,1,29,2,26,1,13,5,9,2,25,2,9,10,15,2,9,1,25,1,26,4,13,4,26,2,30,3,26,1,9,1,15,1,14,2,11,7,1,4,11,5,14,1,15,1,9,2,13,1,30,1,28,4,29,3,30,1,28,24,30,1,28,9,29,1,28,12,26,1,13,1,28,9,29,2,28,4,29,1,28,2,1,261,}, + {1,355,28,1,30,1,29,1,26,2,30,1,26,10,13,10,25,6,9,18,15,3,14,1,11,1,14,1,15,1,9,1,6,1,28,5,6,1,25,1,13,3,9,2,15,6,9,1,25,1,30,4,28,3,30,1,13,1,25,2,9,8,15,8,14,15,11,6,14,1,11,1,1,1,14,1,9,1,13,1,26,1,9,4,15,1,14,9,11,2,15,2,14,1,15,6,16,1,15,3,16,1,15,1,16,1,15,1,9,2,16,1,9,1,28,1,1,1,28,1,1,23,28,2,15,1,14,1,9,1,25,1,9,6,15,4,9,1,14,1,15,3,14,3,11,2,14,1,9,1,13,1,30,1,29,1,28,1,29,2,26,1,13,1,25,1,9,5,15,2,25,1,29,1,30,1,13,11,9,4,25,2,13,1,9,1,25,1,26,1,13,1,9,1,15,1,9,1,26,1,30,2,26,1,13,1,26,2,13,1,26,1,30,4,26,1,25,1,9,1,14,3,11,8,1,4,11,4,15,1,9,4,29,1,28,1,29,1,28,2,29,1,28,4,29,1,13,1,26,1,28,4,13,2,28,13,30,1,28,9,29,1,28,5,29,1,28,6,9,1,25,1,28,4,29,1,28,11,29,1,28,1,1,261,}, + {1,355,28,1,29,2,30,1,26,14,13,1,26,1,13,3,25,1,13,3,25,1,13,2,25,1,13,2,9,13,16,1,15,1,14,1,11,1,15,1,16,1,9,1,6,1,28,4,1,6,28,4,29,1,6,2,30,1,29,3,6,1,7,1,9,2,29,2,13,1,29,1,28,2,30,1,26,1,13,1,25,2,9,9,15,7,14,13,11,12,9,1,26,2,13,1,9,3,15,2,14,3,11,6,15,1,14,1,11,1,15,9,16,5,9,1,16,1,17,1,9,1,28,1,1,18,28,3,29,1,6,1,29,1,30,1,6,1,13,1,9,1,11,2,9,1,13,1,9,9,15,7,14,4,11,1,14,1,9,1,26,1,30,1,29,1,26,2,30,2,13,1,9,4,15,2,9,1,13,1,26,2,13,1,9,1,13,7,25,1,13,2,25,1,13,5,25,1,13,1,26,2,13,1,25,1,13,3,29,2,13,2,26,2,13,1,29,2,30,1,26,2,25,1,15,1,14,6,11,1,1,1,11,1,1,2,11,2,1,4,11,3,14,1,15,3,9,1,29,1,28,6,30,1,28,4,30,1,29,1,28,2,30,1,26,1,13,1,30,1,29,3,28,9,30,1,28,21,14,1,28,4,30,1,28,13,29,1,28,1,1,260,}, + {1,355,28,1,30,1,28,1,30,1,26,7,13,3,26,1,13,10,9,1,13,1,9,3,13,1,25,1,9,1,25,1,9,3,15,1,9,1,15,2,14,2,15,3,9,1,7,1,28,5,1,23,28,2,30,1,13,1,30,2,28,2,29,1,26,2,13,1,25,1,9,10,15,7,14,13,11,12,9,1,26,1,25,1,9,2,15,3,14,5,11,3,14,2,15,1,14,1,11,1,14,1,15,3,16,1,15,4,16,4,9,2,17,1,8,1,28,1,1,16,28,2,6,1,16,1,15,1,17,1,11,2,14,3,15,1,26,1,30,1,15,1,11,1,9,1,13,1,25,1,9,7,15,1,9,1,15,5,14,3,11,2,14,1,15,1,9,1,13,1,26,1,29,1,26,1,13,3,9,2,15,1,9,3,13,2,9,2,13,1,26,2,13,10,25,1,13,2,26,2,13,1,9,2,26,1,29,1,26,1,9,1,13,2,26,1,29,2,26,1,13,1,26,1,13,1,30,1,29,1,26,2,30,1,13,1,15,2,14,3,15,4,1,2,11,2,1,3,11,1,1,2,11,3,14,1,15,3,9,1,29,1,28,11,29,2,26,1,28,4,30,1,26,1,30,1,29,3,28,6,26,1,29,1,28,3,29,2,28,14,9,2,28,4,29,1,28,16,1,259,}, + {1,354,28,2,29,2,30,1,13,1,26,14,13,1,26,1,13,5,25,3,9,4,15,4,14,1,15,1,9,1,8,1,6,1,29,1,28,5,1,29,28,2,25,1,30,1,29,1,28,2,29,1,26,2,13,1,9,11,15,6,14,14,11,12,15,1,26,1,9,3,15,2,14,10,15,2,11,2,14,1,15,1,14,1,15,6,16,4,9,1,11,1,10,1,28,1,1,14,28,3,9,1,15,4,9,6,15,1,9,1,13,1,25,1,11,1,14,1,9,1,25,1,9,1,25,3,9,5,15,5,14,4,11,2,14,1,15,1,9,1,25,1,29,2,30,1,26,3,13,1,9,3,25,4,9,2,25,1,13,14,26,4,13,2,26,2,13,4,26,1,28,1,29,1,13,1,26,1,13,1,30,1,29,1,30,3,13,1,9,2,15,1,14,1,15,4,9,1,15,1,11,1,1,2,11,3,1,6,11,1,14,1,15,1,14,2,15,1,30,1,28,12,30,1,29,1,28,2,29,4,30,1,26,1,30,1,29,1,28,5,26,1,30,1,28,12,29,1,28,6,11,1,29,1,28,21,1,259,}, + {1,354,28,2,29,3,30,1,26,12,13,4,26,2,25,1,9,5,15,2,9,2,13,1,6,1,29,2,28,5,1,36,28,1,13,1,30,1,29,1,28,2,29,1,26,2,25,1,9,11,15,6,14,14,11,12,15,1,13,1,25,1,13,1,25,1,9,2,15,4,14,7,15,1,14,2,15,7,16,6,9,1,15,1,29,1,28,1,1,12,28,2,29,1,9,10,15,3,9,1,14,2,25,1,15,1,11,1,14,1,9,1,25,6,9,4,15,5,14,7,15,1,9,2,29,1,28,1,30,1,13,1,26,2,9,2,25,1,9,1,15,1,25,1,29,1,26,1,15,1,14,1,15,1,9,1,13,2,26,1,13,4,26,7,29,1,28,1,29,1,13,2,26,1,29,1,13,2,9,1,13,1,28,2,30,1,13,2,30,1,29,1,30,3,13,1,9,1,25,1,9,1,15,3,14,1,15,2,8,1,15,1,11,1,1,1,11,3,1,7,11,2,14,4,13,1,28,3,29,1,28,9,26,1,13,1,30,1,29,4,30,2,29,2,28,18,29,1,28,5,15,2,28,20,29,1,28,2,1,258,}, + {1,354,28,2,6,1,30,3,29,2,30,1,26,5,13,1,26,1,13,3,25,1,8,2,9,5,13,1,7,1,30,1,28,6,1,43,28,1,26,1,29,3,28,1,29,1,26,2,25,1,9,11,15,6,14,14,11,6,14,1,11,5,15,1,25,1,13,1,26,2,25,1,9,2,15,2,14,8,15,14,16,1,9,2,6,1,30,1,28,4,1,4,28,1,1,2,28,2,13,1,10,1,9,3,13,2,25,2,9,7,15,1,9,1,15,3,14,2,15,1,25,6,9,7,15,3,14,4,11,2,14,1,15,1,14,1,25,1,30,1,13,1,9,4,15,1,9,2,15,1,25,1,29,1,26,1,15,2,14,3,9,1,13,1,26,2,13,3,26,1,30,2,29,3,30,1,26,1,30,2,26,4,13,1,9,2,26,1,28,2,26,1,13,1,30,1,29,1,30,3,26,1,13,1,15,1,9,2,15,1,14,1,15,4,9,2,16,1,11,1,1,2,11,1,1,2,11,2,1,4,11,2,14,3,9,1,28,15,29,6,28,5,29,1,28,2,29,4,28,8,29,1,28,5,11,1,30,1,28,19,29,1,28,3,1,258,}, + {1,355,28,3,29,1,6,1,25,2,10,3,25,1,13,2,7,2,6,1,29,2,28,10,1,50,28,1,13,1,29,1,28,3,13,1,26,1,13,1,25,1,9,11,15,7,14,13,11,6,14,1,11,5,15,1,10,1,13,1,26,1,13,1,9,2,15,2,14,8,15,2,14,1,11,2,14,3,15,7,9,2,15,1,9,1,15,2,9,1,13,1,7,1,8,2,29,1,28,4,8,1,1,2,15,1,13,1,26,1,25,1,9,2,25,1,9,7,15,2,9,2,14,1,9,1,15,1,11,1,14,1,9,2,25,5,9,7,15,3,14,4,11,1,14,1,15,4,9,2,15,2,9,1,15,1,9,3,13,2,25,1,9,4,14,3,9,1,13,1,30,2,26,4,30,1,29,2,26,1,13,1,26,1,29,2,26,2,30,1,13,2,25,1,9,1,29,1,28,1,29,1,13,1,30,1,29,1,30,2,29,2,30,1,15,1,9,2,15,3,9,1,15,1,14,1,15,1,9,3,15,1,11,1,1,4,11,3,1,3,11,5,15,1,30,1,28,17,29,1,28,6,29,1,28,1,29,1,30,1,29,2,30,1,28,1,29,1,28,11,14,2,29,1,28,19,29,1,28,4,1,257,}, + {1,357,28,16,1,60,28,1,13,1,29,1,28,2,29,1,13,3,25,1,9,11,15,7,14,13,11,6,14,1,11,5,14,1,9,1,25,1,13,2,9,2,15,2,14,5,11,1,14,7,15,5,9,2,15,3,9,1,25,1,29,1,13,1,26,1,9,1,14,1,15,1,9,1,14,1,15,2,14,2,15,1,9,1,30,1,29,1,9,1,14,2,15,1,13,1,26,1,25,2,9,9,15,3,9,1,15,1,14,1,11,1,15,1,9,1,25,1,13,1,25,6,9,4,15,4,14,1,15,1,14,3,15,1,25,1,9,1,15,1,9,8,13,2,9,2,13,1,9,1,13,2,25,1,15,1,14,2,15,1,13,1,30,1,29,1,30,1,26,2,30,1,26,7,30,1,29,1,30,1,26,2,13,1,25,1,13,1,29,1,28,1,26,1,30,1,29,1,30,1,29,1,28,2,29,1,30,1,13,1,9,1,15,5,9,1,14,2,15,1,8,1,13,1,16,1,11,2,1,2,11,5,1,1,11,7,26,1,28,27,29,1,30,4,29,1,28,9,13,1,11,1,29,1,28,25,1,257,}, + {1,432,28,2,13,1,28,2,29,2,26,1,13,1,25,2,9,11,15,9,14,11,11,6,14,1,11,5,14,1,9,1,13,1,26,1,13,1,9,3,15,1,14,6,11,3,14,1,15,1,9,12,25,1,26,1,29,1,28,1,26,1,25,1,13,1,9,9,26,1,28,2,9,1,14,1,15,1,9,3,25,1,9,9,15,1,9,2,15,2,9,1,14,1,11,1,15,1,9,1,13,2,25,3,13,1,25,1,9,5,15,3,14,3,11,1,14,1,15,1,9,1,25,1,9,1,15,1,9,1,13,2,9,2,25,2,13,2,25,1,9,1,25,1,13,1,9,3,13,2,9,1,14,2,13,1,28,1,29,1,30,1,29,2,26,2,30,2,26,2,30,1,29,1,30,2,29,1,30,1,26,1,13,1,9,1,25,1,28,1,29,2,30,2,29,1,28,2,29,1,28,1,30,1,9,1,15,1,9,1,15,2,9,1,15,3,14,2,15,1,8,1,7,1,14,1,11,1,1,1,11,13,1,1,9,1,28,20,29,2,30,1,28,3,29,1,28,2,29,1,30,1,29,1,28,4,29,1,28,4,1,1,15,1,28,2,29,1,28,19,29,1,28,3,1,257,}, + {1,432,28,1,30,1,26,1,29,1,28,2,30,1,26,1,25,3,9,10,15,10,14,12,11,6,15,2,11,4,9,1,25,1,13,2,25,1,9,1,15,2,14,2,11,2,14,1,11,2,14,1,9,1,13,1,30,1,28,3,26,1,9,6,25,2,15,1,14,1,15,1,26,1,13,1,9,1,25,1,26,1,25,1,9,9,30,1,28,1,13,1,11,1,14,1,25,1,13,1,9,1,13,1,25,2,9,9,15,4,11,1,14,1,9,2,13,1,30,2,13,2,9,5,15,2,9,1,15,2,14,3,15,1,9,1,26,1,13,1,9,2,13,5,25,2,13,6,25,1,9,1,13,3,25,1,9,1,14,2,13,1,28,2,29,1,26,1,29,2,30,4,26,1,30,1,29,4,30,1,13,1,9,1,13,1,29,1,28,1,13,1,29,1,30,1,29,1,28,1,29,1,28,2,29,1,25,1,9,4,15,4,9,1,15,3,9,1,28,1,8,1,11,1,1,2,11,6,17,1,12,1,16,1,17,1,11,2,1,1,11,1,8,1,28,19,30,2,28,3,30,1,28,13,14,2,30,1,28,27,1,256,}, + {1,432,28,1,26,2,29,1,28,1,29,1,26,1,13,1,25,3,9,8,15,12,14,12,11,12,9,1,13,1,26,2,13,1,9,1,15,3,14,5,9,1,13,1,29,1,28,3,29,1,26,1,13,1,25,1,13,1,25,1,9,3,25,1,13,1,26,2,14,2,25,1,30,1,25,1,9,1,13,2,9,8,13,1,26,2,15,1,11,1,15,1,25,1,26,3,13,3,25,1,9,7,15,3,14,2,11,1,15,1,30,1,28,2,29,1,30,1,13,2,25,1,9,5,15,4,9,1,30,1,28,1,30,1,26,1,13,13,26,1,13,7,25,2,15,1,14,1,25,1,28,2,29,1,13,1,29,1,30,1,26,1,30,1,29,3,30,1,28,3,29,1,30,1,13,2,26,1,28,1,29,1,30,2,28,4,29,2,13,1,9,4,15,1,9,1,15,1,9,6,15,1,9,2,16,1,11,1,1,10,11,1,1,1,11,1,1,2,14,1,30,1,28,18,29,1,28,16,9,1,11,1,9,1,28,1,29,1,26,1,28,25,1,256,}, + {1,432,28,1,26,1,30,1,28,2,29,1,26,1,13,1,25,3,9,7,15,2,9,2,15,9,14,12,11,8,17,1,11,1,1,1,11,1,9,1,30,1,26,2,13,1,9,1,15,1,14,5,15,1,13,1,28,2,29,3,30,2,26,1,13,1,25,2,26,1,13,1,25,1,9,1,25,1,13,1,29,1,28,1,30,1,14,2,13,2,9,1,13,5,25,1,9,6,13,1,25,1,11,2,9,1,26,3,13,2,25,2,9,8,15,3,14,1,11,1,14,1,9,1,29,1,28,1,29,2,26,1,25,1,9,5,15,3,14,1,15,1,9,3,13,1,26,3,13,1,25,1,13,1,30,1,13,2,26,2,13,3,26,1,13,1,26,3,13,3,26,2,25,1,9,2,26,1,28,2,29,1,30,3,29,2,30,1,29,2,28,4,29,1,26,1,13,1,9,1,26,1,28,1,30,2,28,4,30,1,29,1,26,1,13,2,9,11,15,3,9,2,16,1,11,1,1,15,9,1,28,17,29,1,28,15,25,1,11,1,9,1,28,3,30,1,28,25,1,256,}, + {1,432,28,1,26,1,29,1,28,2,30,1,13,2,25,2,9,8,15,2,9,2,15,9,14,15,11,3,15,1,17,1,11,4,14,1,13,4,9,2,15,2,14,1,15,2,9,1,26,1,29,2,30,1,13,2,26,4,13,1,25,1,26,2,13,1,25,3,13,1,26,1,28,1,13,1,11,1,14,1,26,2,25,1,13,5,25,1,9,4,15,1,9,2,15,1,14,1,15,1,9,1,25,1,13,3,25,2,13,2,25,1,9,5,15,4,14,2,15,1,9,1,13,6,9,8,25,1,26,1,25,1,15,1,14,1,15,1,9,1,26,3,13,4,26,14,13,1,26,2,13,1,9,1,25,1,29,1,28,1,30,1,29,2,30,1,26,2,29,1,28,7,30,1,13,1,9,1,28,1,30,1,26,1,28,3,30,1,26,1,30,1,26,1,13,2,9,7,13,1,25,1,9,1,15,6,9,3,11,1,1,3,11,2,1,4,11,1,1,5,9,1,28,13,29,1,13,1,29,1,28,14,9,1,1,1,14,1,28,31,1,255,}, + {1,432,28,1,30,1,29,1,28,1,29,1,26,1,13,2,25,2,9,7,15,3,9,2,15,10,14,14,11,2,14,1,15,1,11,3,14,1,11,1,1,1,9,1,25,1,26,2,13,3,26,1,9,1,25,1,9,2,15,2,25,1,29,2,30,1,26,1,13,3,26,2,13,5,9,3,13,1,26,1,15,1,11,1,9,1,26,2,13,5,25,1,9,2,25,2,9,1,15,2,9,1,15,1,14,2,25,1,13,1,26,1,13,6,9,6,15,3,14,3,9,1,13,1,26,1,25,1,26,1,29,1,13,1,9,1,15,1,9,1,13,2,25,1,9,1,25,1,30,1,28,3,25,1,9,1,14,2,9,1,26,1,13,2,26,4,30,3,26,12,13,1,25,1,9,1,25,1,26,1,28,1,29,1,26,2,29,4,28,8,9,1,29,2,26,1,28,2,29,1,26,1,30,1,29,1,26,1,13,2,25,1,9,5,13,1,26,1,13,1,25,1,9,1,15,1,9,2,15,1,14,2,9,1,13,1,8,1,15,1,11,1,1,4,11,1,1,5,11,1,1,3,11,1,9,1,28,21,29,1,28,5,9,1,1,1,14,1,26,1,29,1,28,30,1,255,}, + {1,432,28,1,30,1,28,2,29,1,26,1,13,1,25,3,9,7,15,2,9,2,15,11,14,15,11,8,15,1,26,3,29,3,30,1,13,2,25,1,9,1,25,1,9,2,15,2,26,3,13,3,26,3,13,5,9,2,15,1,9,1,13,1,14,1,11,1,25,1,29,1,13,5,25,4,9,1,13,1,9,1,15,1,9,1,15,1,14,2,25,1,26,3,13,5,25,1,9,6,15,3,14,2,15,1,13,1,29,1,26,2,13,1,9,7,25,1,9,1,25,1,26,1,28,4,26,1,15,1,14,1,15,1,25,1,13,1,26,5,30,1,29,1,30,3,26,1,30,4,26,1,29,1,26,1,13,1,26,2,13,1,9,1,15,1,29,3,30,1,26,1,30,1,29,2,28,8,26,2,28,1,26,1,28,2,26,2,28,2,30,1,13,2,25,1,9,5,13,1,26,1,13,2,9,3,15,3,9,1,15,2,9,1,8,1,7,1,9,1,11,1,1,3,11,1,1,2,11,2,1,2,11,2,1,3,15,1,30,1,28,22,13,1,14,3,9,1,28,9,29,2,28,22,1,254,}, + {1,432,28,1,30,1,29,2,30,1,13,2,25,2,9,12,15,12,14,14,11,2,14,3,11,2,9,1,29,1,28,1,29,3,28,2,26,1,9,1,13,1,9,2,13,1,29,2,25,1,14,1,15,1,9,1,13,1,26,4,13,9,25,1,9,2,15,1,11,1,15,1,26,2,13,1,26,2,13,2,25,3,9,1,25,2,9,2,15,1,14,2,9,1,25,1,26,1,13,4,25,1,13,2,9,6,15,3,14,3,9,1,13,1,26,1,13,1,9,2,25,1,13,2,9,1,25,1,13,1,26,1,13,1,9,2,25,1,26,1,28,4,13,1,9,3,13,1,26,4,30,1,29,7,30,3,29,1,30,4,26,1,13,1,9,2,26,1,28,2,26,1,13,1,26,1,29,1,28,8,30,1,13,1,29,1,26,1,29,1,28,1,30,1,29,2,28,1,29,1,26,1,13,1,9,6,25,1,13,2,9,2,15,1,9,7,14,1,9,1,26,1,6,1,8,1,15,1,11,1,1,2,11,2,1,2,11,1,1,8,11,1,9,1,28,19,14,1,11,1,14,3,13,1,28,9,29,1,28,23,1,254,}, + {1,432,28,1,30,1,29,2,30,1,13,2,25,2,9,12,15,12,14,14,11,2,15,1,11,2,15,1,26,1,28,2,26,1,28,3,29,1,13,4,26,1,13,1,9,1,25,1,30,1,29,2,14,1,15,1,25,1,13,2,26,3,13,2,26,2,13,4,9,1,25,1,9,2,15,1,14,2,29,1,26,4,13,2,25,1,13,2,9,1,25,2,9,1,15,2,14,1,15,1,9,1,26,1,13,5,25,3,9,6,15,1,14,2,15,1,9,2,15,1,9,1,13,1,26,1,13,1,25,2,13,2,26,1,13,4,25,2,13,1,25,1,13,3,26,2,13,1,15,2,25,1,26,4,30,1,29,2,28,3,29,1,30,2,29,1,26,1,30,1,29,1,30,2,29,1,30,1,13,1,15,1,13,1,28,2,29,1,26,1,30,1,29,1,28,8,26,1,9,1,13,3,29,1,30,1,28,1,30,1,28,2,26,1,13,1,9,3,13,1,9,3,25,1,9,10,25,2,9,1,15,2,13,1,29,1,13,1,15,1,1,4,11,1,1,13,11,1,9,1,29,1,28,11,29,1,14,1,1,1,14,1,15,1,14,1,9,1,30,1,28,1,29,1,28,6,29,1,30,1,29,1,28,23,1,254,}, + {1,432,28,1,29,1,28,1,30,1,26,1,13,2,25,2,9,7,15,15,14,1,15,4,14,3,15,2,14,1,11,1,14,2,11,2,14,3,11,1,15,1,29,1,28,1,29,1,26,1,28,2,29,1,30,1,26,2,13,2,26,3,13,1,9,2,26,1,28,1,25,1,14,1,9,1,26,3,13,1,30,1,26,1,13,8,25,2,9,1,15,1,14,1,15,1,25,1,29,1,26,2,29,1,26,1,13,2,25,2,13,1,25,1,9,2,15,3,14,1,9,1,25,1,13,1,26,1,13,1,25,2,9,1,13,2,9,4,15,2,9,1,15,1,14,1,11,1,14,1,15,1,9,1,30,1,29,2,26,1,25,2,13,1,26,1,13,2,26,4,13,7,26,4,9,2,29,1,28,1,29,1,26,2,30,1,29,1,28,2,29,1,28,1,29,6,30,4,26,1,25,1,13,1,29,2,26,1,29,2,28,7,30,1,13,1,26,1,15,1,14,1,9,1,26,1,28,1,13,3,30,1,13,2,9,1,13,2,9,2,13,11,9,2,25,2,13,2,9,1,15,2,13,1,29,1,9,1,14,1,1,3,11,1,1,2,11,1,1,2,11,2,1,2,11,2,1,4,11,1,14,1,15,1,8,1,30,1,29,1,6,1,8,1,9,1,15,1,11,3,14,2,15,1,13,1,28,10,29,1,28,25,1,254,}, + {1,432,28,1,30,1,28,1,30,1,26,1,13,2,25,2,9,10,15,14,14,4,15,3,11,2,14,2,11,3,15,1,11,2,15,1,13,1,29,1,28,1,29,3,30,1,26,6,13,3,26,1,13,5,14,2,13,1,30,1,26,2,30,1,26,1,13,8,25,3,9,1,14,2,9,1,30,1,26,2,30,1,26,1,13,1,26,1,25,2,13,2,25,1,9,2,15,1,9,1,15,1,9,3,25,2,13,4,25,1,9,4,15,3,14,1,11,2,15,1,9,1,13,1,26,1,13,1,9,2,13,1,26,2,25,1,13,7,26,10,30,1,13,1,9,1,13,1,28,2,30,1,29,1,30,2,29,1,28,1,29,2,28,1,29,5,30,2,29,1,26,1,13,2,26,2,13,1,26,1,29,3,28,3,13,1,9,2,29,1,26,1,13,1,15,2,9,1,13,1,26,1,13,4,9,1,13,3,25,1,13,1,9,3,25,1,13,3,25,2,13,1,25,2,13,3,9,2,13,3,9,2,30,2,8,1,14,1,1,3,11,1,1,6,11,2,1,2,11,2,1,10,11,2,14,3,15,1,13,1,28,37,1,254,}, + {1,432,28,1,30,1,28,1,30,1,26,1,13,1,25,1,9,1,25,1,9,11,15,17,14,1,11,2,15,1,14,1,15,1,11,1,15,2,11,2,15,1,11,1,9,1,28,2,29,2,26,6,30,1,26,7,25,1,9,1,25,1,13,1,9,1,14,1,9,1,29,1,26,1,30,1,26,3,13,6,25,4,9,1,15,1,14,2,26,3,30,1,26,3,13,5,9,3,15,2,9,3,25,2,13,2,25,1,9,2,13,4,9,2,14,1,11,2,15,1,13,1,26,1,13,2,26,3,13,6,26,2,13,1,26,12,29,1,30,1,13,1,9,1,13,1,29,1,28,1,29,1,30,1,29,1,28,1,29,1,30,1,29,1,28,2,29,2,28,1,29,2,30,1,29,2,30,1,29,2,26,1,30,1,28,5,30,1,13,2,26,1,30,1,29,2,28,1,13,1,14,1,15,1,9,1,26,1,13,2,9,1,25,1,26,1,29,1,26,1,13,2,26,1,13,1,9,3,13,2,26,1,13,5,25,1,13,4,26,2,13,1,9,3,13,1,30,2,9,1,14,1,1,3,11,2,1,5,11,5,1,1,11,5,15,1,16,2,15,4,9,1,25,1,29,1,28,19,29,1,28,17,1,254,}, + {1,432,28,1,30,1,28,1,30,1,26,1,13,1,9,2,25,1,9,12,15,10,14,1,15,1,14,2,11,2,14,1,15,1,16,1,11,1,15,2,11,1,1,2,11,2,14,1,15,1,13,1,28,2,29,1,30,1,26,5,30,1,29,1,30,2,26,3,13,2,26,4,13,1,14,1,15,1,26,8,13,5,25,2,13,1,25,1,9,1,14,2,9,1,30,2,26,4,13,5,25,1,9,1,15,4,9,1,25,1,9,2,25,1,13,1,25,1,9,2,13,1,26,2,25,2,15,1,14,1,11,1,14,1,9,1,26,1,13,1,9,2,25,1,13,2,25,2,13,1,26,1,13,2,26,13,30,2,26,1,30,1,29,1,26,1,9,1,13,1,28,2,29,6,28,6,29,2,30,1,29,3,26,1,13,1,26,1,29,2,30,2,13,1,9,2,29,1,28,3,29,1,28,2,13,1,15,1,14,1,9,1,13,3,26,1,29,1,28,1,30,1,13,2,26,3,13,1,9,1,25,1,13,1,26,3,30,1,29,1,30,1,26,2,13,1,26,3,13,3,26,1,13,4,30,2,13,1,9,1,1,3,11,3,1,1,11,2,1,2,11,9,14,4,15,1,9,1,26,1,29,1,28,38,1,254,}, + {1,432,28,1,30,1,28,1,29,1,26,1,13,1,25,1,9,14,15,13,14,1,15,1,9,1,15,1,11,1,1,1,11,3,9,1,28,3,7,1,1,1,25,1,28,2,29,1,30,2,29,1,26,3,30,1,29,2,30,1,26,1,30,1,26,2,30,1,28,4,26,1,13,1,9,1,14,1,9,1,29,1,26,8,13,5,25,2,9,1,15,1,14,1,9,1,29,1,30,1,26,7,13,2,25,1,9,1,15,2,9,1,15,1,9,2,15,2,9,1,13,1,26,1,25,1,9,1,25,2,9,3,15,2,9,3,25,1,13,2,9,1,15,1,14,1,9,1,26,1,29,1,26,1,9,1,13,3,26,5,30,2,26,9,30,1,29,2,26,1,13,1,28,1,29,1,30,1,26,1,29,1,28,1,29,2,28,7,30,1,29,3,26,1,13,2,26,3,13,2,29,1,28,5,29,1,30,1,28,2,9,1,14,2,9,1,13,1,30,1,29,1,30,1,26,1,30,1,29,1,13,2,26,2,13,1,9,5,13,1,30,1,29,1,28,1,29,1,28,2,29,1,30,1,26,5,30,1,26,1,13,3,30,1,29,1,28,1,29,1,9,1,1,2,11,11,14,5,15,3,9,1,13,1,30,1,28,41,1,253,}, + {1,432,28,1,30,1,28,1,29,1,26,1,13,1,25,1,9,14,15,14,14,1,11,4,9,1,28,2,1,4,28,1,15,1,29,1,28,1,30,1,29,2,30,2,26,4,30,1,29,1,30,2,28,4,29,1,30,3,13,3,14,1,15,1,30,1,26,3,30,3,26,2,13,2,26,2,13,1,25,1,9,2,15,1,14,1,15,1,30,2,26,4,30,1,26,2,13,3,25,1,9,1,15,2,14,1,9,1,25,1,15,1,14,1,15,1,9,1,13,1,25,1,9,3,15,1,9,2,13,2,26,1,13,4,30,1,28,1,29,1,9,1,14,3,9,1,26,7,30,2,29,4,30,2,26,3,30,1,26,2,30,1,28,1,29,1,26,2,29,2,26,3,29,3,28,7,29,3,30,1,26,2,29,2,30,1,28,9,26,1,28,3,30,1,14,1,9,1,25,1,13,1,26,1,29,1,28,3,29,2,26,1,13,1,9,2,15,1,9,1,15,3,9,1,25,1,13,1,26,2,28,4,29,1,26,5,30,2,26,1,13,1,26,1,30,1,28,3,13,1,11,1,1,1,11,1,14,1,1,1,11,1,1,2,11,4,14,2,15,1,9,1,13,3,26,1,28,43,1,253,}, + {1,432,28,1,30,1,28,1,30,1,26,1,13,1,25,2,9,12,15,10,14,2,11,1,14,2,11,2,16,1,28,2,1,8,28,2,29,2,28,2,30,1,13,1,30,1,26,3,29,3,30,1,29,1,28,2,30,1,25,1,9,3,13,3,9,1,14,1,9,1,26,1,30,1,26,1,30,1,29,2,30,1,26,3,13,1,26,2,9,3,15,1,14,1,15,1,30,1,26,1,13,1,26,1,13,1,26,1,29,1,30,1,26,1,13,2,26,1,13,1,9,2,15,1,14,1,9,1,29,1,13,1,15,2,14,1,9,2,13,1,25,1,9,2,25,1,13,2,25,1,9,2,25,3,13,1,26,1,28,3,26,1,15,1,14,1,15,1,13,1,26,5,29,1,28,5,29,2,30,5,29,1,30,1,26,1,29,1,28,1,13,1,26,1,29,2,26,2,30,1,28,1,29,1,28,8,30,1,26,3,30,1,28,2,26,1,28,10,26,1,29,1,28,2,9,3,13,1,26,1,28,6,26,1,9,2,15,2,9,1,15,7,9,1,13,1,29,1,28,3,29,7,30,2,29,2,30,1,28,5,13,1,14,1,8,1,13,3,30,1,29,1,13,1,14,3,15,1,9,1,13,1,28,46,1,253,}, + {1,432,28,1,26,1,28,1,30,1,13,2,25,2,9,12,15,9,14,1,11,2,14,1,15,1,9,1,28,3,1,10,28,2,29,1,28,2,29,2,30,1,29,1,30,3,29,3,30,1,28,1,30,1,9,1,15,1,13,1,30,2,13,2,26,1,13,2,14,2,26,3,30,1,29,3,26,3,25,1,26,2,9,3,15,1,14,2,26,2,13,1,26,1,13,1,26,1,29,2,26,1,13,1,26,3,13,1,9,1,15,1,14,1,9,1,30,1,13,1,9,2,14,1,15,1,13,1,30,2,13,9,25,2,13,2,25,1,13,1,28,3,26,1,15,2,9,1,26,4,30,1,29,2,28,5,29,1,30,1,29,8,28,1,26,1,13,1,29,1,28,2,29,1,26,1,28,1,29,1,28,8,29,1,30,1,26,1,30,1,28,2,9,1,13,1,29,1,28,8,29,1,26,1,29,1,30,1,28,1,14,1,13,1,28,2,30,1,26,1,30,1,29,1,28,1,30,1,9,14,15,1,9,1,13,1,30,1,28,3,30,1,26,1,29,1,28,2,29,2,28,3,29,3,28,12,9,1,13,2,30,1,28,4,30,1,29,1,28,14,29,2,30,1,29,1,28,23,1,253,}, + {1,432,28,1,26,1,28,1,29,1,13,1,26,1,9,1,25,1,9,14,15,4,14,1,11,2,16,1,8,1,29,1,28,2,1,14,28,1,13,1,26,1,28,4,26,1,30,1,29,2,28,2,29,1,13,3,26,2,30,2,26,2,30,1,26,1,13,3,15,1,9,1,13,1,26,1,30,1,26,2,30,2,26,2,30,2,26,1,13,1,25,1,9,2,15,2,14,1,28,2,13,3,26,3,29,1,26,1,29,1,26,1,9,1,26,1,30,1,11,1,15,1,25,1,26,1,25,1,9,3,13,1,29,1,28,2,30,1,13,1,26,3,13,3,26,2,13,2,26,1,13,3,26,2,30,1,29,1,9,1,14,1,9,1,26,3,30,1,29,1,28,1,29,1,28,2,29,1,28,2,30,1,28,1,29,7,28,2,25,1,26,1,28,1,30,2,29,1,26,1,29,2,28,7,30,1,29,1,30,2,28,3,13,2,28,10,30,2,28,1,13,2,29,1,30,1,13,2,25,1,9,1,14,1,15,1,9,5,25,1,9,1,25,2,13,5,26,1,13,1,9,2,25,1,26,1,28,2,29,6,28,6,29,2,28,61,1,253,}, + {1,432,28,1,29,3,26,1,25,1,9,1,13,1,9,1,25,1,9,6,15,1,9,2,15,1,14,3,11,1,15,1,9,1,6,1,28,3,1,18,28,1,13,1,30,1,29,1,30,1,28,2,30,1,26,1,29,2,28,2,26,1,13,2,26,1,30,1,29,3,26,4,13,3,9,1,15,1,9,1,30,1,26,2,30,2,26,2,30,1,29,2,30,1,26,1,13,1,9,2,15,2,9,2,26,1,30,1,25,2,30,1,9,1,30,1,29,1,26,1,28,2,13,1,26,1,25,1,11,1,14,1,13,1,26,1,13,1,9,2,13,1,9,4,13,1,29,1,30,1,13,2,26,15,29,1,26,1,14,1,15,1,29,1,28,1,26,1,29,2,28,1,29,1,30,1,28,2,29,1,28,1,29,5,28,3,29,3,26,2,30,1,29,1,26,1,28,1,29,1,26,1,29,1,28,6,30,2,13,1,29,1,28,3,26,1,25,1,29,1,28,7,30,1,29,1,28,3,29,1,13,2,9,2,13,1,9,1,15,2,9,5,25,2,13,8,26,4,13,1,25,1,13,1,26,1,29,1,30,1,29,4,28,7,29,2,28,1,29,4,28,2,29,1,26,1,28,8,29,1,28,42,1,253,}, + {1,432,28,1,29,1,26,1,30,1,26,1,30,1,9,1,13,1,9,4,15,6,16,1,9,1,10,1,6,1,28,4,1,22,30,2,28,1,26,1,9,1,30,1,28,2,30,1,29,1,28,2,26,1,13,1,26,1,30,1,29,3,28,1,29,1,30,1,26,1,13,1,26,1,13,2,26,1,13,1,15,1,9,1,29,1,13,1,26,4,30,1,29,5,26,1,9,1,15,3,25,1,15,1,9,1,30,1,13,1,25,1,30,1,26,2,29,1,30,1,29,1,26,1,9,1,25,1,9,1,14,1,9,1,25,1,13,2,9,1,13,2,26,1,9,1,14,2,9,1,25,1,13,2,26,17,30,1,29,1,9,1,14,1,29,1,28,1,26,1,29,1,30,1,29,1,28,5,29,1,28,7,29,1,30,1,28,1,26,1,13,1,30,1,29,1,26,1,29,2,30,2,28,5,30,4,28,4,29,1,25,1,13,1,28,11,30,1,26,1,25,1,9,2,13,2,9,1,15,1,9,1,25,1,13,1,25,2,9,1,25,1,13,6,26,9,13,3,26,1,30,1,29,3,28,10,29,6,28,5,29,2,28,3,29,1,28,42,1,253,}, + {1,432,28,2,6,1,8,1,9,2,15,2,9,3,8,1,13,1,7,1,29,2,28,5,1,26,28,1,29,1,30,1,29,1,13,1,9,2,13,1,28,1,29,1,30,1,28,2,26,2,29,2,30,1,29,2,28,2,30,1,26,2,13,2,25,1,13,2,9,2,26,2,13,2,26,1,29,3,28,1,29,3,30,1,13,1,9,1,15,1,14,1,9,1,25,1,15,1,9,1,26,1,13,1,26,1,28,1,30,2,13,2,9,1,15,1,26,1,30,1,29,1,13,1,9,2,13,5,26,1,29,2,9,1,11,1,14,1,26,16,30,1,13,1,29,1,28,1,30,1,13,1,9,1,25,1,29,1,28,1,29,2,28,1,30,1,29,1,28,1,26,1,28,7,29,1,28,1,26,1,28,1,29,1,13,3,29,1,30,2,29,1,30,2,28,4,26,1,30,2,28,6,13,1,9,1,13,1,29,1,28,3,26,1,30,1,28,2,30,2,26,1,9,2,13,1,26,1,30,1,13,1,15,1,9,1,13,4,25,1,13,3,26,8,30,1,26,3,30,1,29,1,30,1,26,1,13,2,26,1,30,1,29,1,28,2,29,1,28,13,29,1,28,13,29,3,28,37,1,253,}, + {1,433,28,13,1,30,28,1,1,1,28,1,30,2,13,2,25,2,9,2,29,2,26,1,30,1,29,1,26,1,29,1,28,1,26,1,30,2,29,4,30,2,26,2,13,3,25,1,9,2,28,1,26,1,13,1,30,1,28,4,29,4,26,1,25,1,15,1,14,1,9,1,13,1,9,1,15,1,9,2,26,1,28,1,30,1,13,1,9,2,26,1,29,1,28,3,30,1,25,2,13,1,26,1,13,3,26,1,28,3,26,1,15,1,14,1,15,1,25,1,26,5,29,1,26,6,30,2,29,1,30,1,26,1,30,1,28,1,26,1,9,2,30,1,28,2,30,1,29,2,30,1,28,9,30,2,28,2,30,1,13,1,9,1,28,2,29,2,30,1,29,1,28,3,30,1,29,1,30,1,26,1,28,6,29,1,9,1,15,1,9,1,30,1,28,2,13,1,25,1,30,1,29,1,26,1,13,2,9,1,13,3,25,1,15,2,13,7,26,10,30,1,29,2,30,1,26,2,30,1,29,1,30,1,26,1,13,2,29,1,28,2,26,1,28,10,29,1,28,3,29,2,28,11,29,1,28,39,1,253,}, + {1,477,28,2,13,1,26,3,13,1,26,1,13,1,9,1,13,1,29,2,30,2,29,1,28,2,30,1,29,1,30,3,29,1,30,2,29,1,30,1,29,1,26,1,13,3,9,1,14,1,28,1,26,1,13,1,30,1,28,2,29,2,28,3,29,1,30,1,13,1,9,1,15,1,9,1,13,2,25,1,14,1,15,1,26,2,9,2,13,1,30,1,28,4,29,1,26,9,13,1,26,1,28,3,9,1,14,2,15,1,9,1,26,1,29,2,30,1,29,1,30,2,26,3,30,2,28,1,26,1,29,1,30,1,26,1,28,2,15,2,13,1,28,3,29,3,28,8,29,3,30,1,28,1,29,1,9,1,13,1,30,1,29,2,26,2,28,3,29,2,26,1,30,1,28,2,29,1,28,4,26,1,9,1,15,1,9,1,26,1,28,1,29,2,30,1,26,1,13,2,9,2,13,3,9,1,15,1,9,1,13,5,26,4,30,9,29,2,30,5,26,1,29,1,26,1,13,1,26,1,28,3,29,1,28,66,1,253,}, + {1,475,28,3,13,1,30,1,26,2,29,1,30,2,29,1,13,1,9,1,30,1,29,2,30,1,29,1,28,3,29,1,30,1,26,2,30,2,29,2,28,2,29,1,26,1,13,1,26,1,13,1,14,1,13,2,26,2,29,1,28,2,29,1,28,2,29,1,30,1,26,1,13,1,9,2,25,1,13,1,26,2,15,1,14,1,13,2,9,1,25,1,29,2,30,1,26,6,30,1,26,3,30,1,13,1,30,2,13,1,9,1,26,1,28,2,13,1,15,1,14,2,9,1,30,1,29,1,26,1,29,4,30,4,26,1,29,1,30,2,28,1,26,1,13,1,28,1,15,1,14,1,13,1,28,2,29,2,26,1,28,10,26,2,28,2,29,1,15,1,9,1,26,1,30,1,13,1,9,2,26,1,29,1,28,1,29,1,26,1,28,9,26,1,9,3,13,1,29,1,28,1,29,1,13,2,9,3,13,3,9,2,13,1,25,1,13,3,26,3,30,2,29,9,30,1,26,1,30,1,29,3,26,1,13,1,30,1,29,2,26,1,29,1,28,10,29,1,28,3,29,2,28,53,1,253,}, + {1,475,28,1,30,1,13,1,29,1,13,1,26,1,13,1,30,3,29,1,26,1,13,1,25,1,29,2,26,1,30,1,29,2,28,2,29,1,26,3,30,1,29,1,28,3,29,1,30,1,13,1,26,2,15,2,13,1,29,1,30,1,29,1,28,5,29,1,26,1,25,1,9,1,25,1,13,1,25,1,26,1,9,1,25,2,14,1,15,1,26,2,13,1,26,1,13,2,26,1,13,2,26,11,29,1,30,1,26,3,28,1,30,1,9,1,14,2,15,1,26,1,28,1,29,6,30,2,29,1,30,1,29,2,26,1,30,1,29,1,30,1,28,1,9,1,14,1,13,1,28,2,30,1,28,12,29,1,26,1,30,1,28,1,26,1,13,1,29,2,26,2,13,3,28,1,30,2,28,9,29,1,26,1,9,2,15,1,9,1,15,1,9,1,13,1,9,2,13,1,9,1,13,3,15,2,26,1,13,3,26,3,30,3,29,12,30,3,29,2,30,2,29,2,30,1,29,1,28,12,29,1,28,3,29,1,30,1,28,1,29,1,30,1,29,1,28,46,1,253,}, + {1,473,28,2,6,1,9,1,30,1,29,1,13,1,30,1,29,2,30,1,26,3,13,3,29,2,26,1,29,1,28,3,29,1,26,2,30,2,29,1,28,2,29,2,28,3,26,1,9,1,15,1,9,1,28,1,25,2,29,1,13,1,29,3,28,2,13,1,14,1,13,1,9,1,26,1,13,1,26,1,29,1,26,1,14,2,15,1,26,1,13,2,25,1,13,2,26,2,25,1,26,4,30,2,26,6,30,1,26,2,30,2,29,1,26,1,15,1,14,1,15,1,26,1,28,1,29,1,30,1,29,1,28,2,26,1,29,1,30,2,29,6,26,1,28,1,25,1,14,1,26,1,28,3,29,1,28,10,26,2,28,1,26,1,13,1,30,1,29,6,30,1,29,1,30,1,28,12,30,1,15,1,14,2,15,1,9,3,13,1,9,1,13,3,9,1,15,1,13,1,30,1,25,1,13,3,26,3,30,4,29,2,28,2,29,2,28,1,29,7,30,1,29,5,30,2,29,1,28,17,29,4,28,45,1,253,}, + {1,472,28,2,13,2,30,3,26,1,29,3,26,4,13,3,30,1,29,1,30,1,29,1,28,3,29,1,30,4,29,1,28,2,29,3,28,4,26,1,9,1,25,1,13,1,9,7,26,1,13,1,15,1,9,1,13,1,26,5,25,1,9,1,13,1,25,1,13,1,26,1,13,1,9,3,25,1,26,5,30,1,29,1,30,1,26,5,30,1,26,2,30,1,26,2,29,2,26,1,15,1,14,1,13,1,28,1,29,2,28,1,29,1,28,1,29,12,13,1,15,1,26,1,28,1,29,2,28,10,29,1,26,2,13,1,29,1,28,2,29,1,28,5,30,2,28,8,29,1,26,1,29,1,28,2,13,1,15,1,9,5,25,1,13,1,9,1,13,1,29,1,30,1,9,2,13,1,9,1,13,3,26,2,29,1,28,2,29,5,28,5,29,14,30,1,29,1,28,9,29,4,28,52,1,253,}, + {1,467,28,1,1,2,28,3,13,1,9,1,13,1,29,1,26,2,29,3,30,1,26,5,25,1,13,1,30,1,29,1,30,1,29,1,28,3,29,1,30,1,26,3,29,1,28,10,30,1,9,1,30,1,28,1,30,4,26,1,9,3,14,1,9,1,29,1,13,1,26,1,13,2,25,1,13,2,25,1,26,1,13,5,25,1,9,2,13,1,26,1,30,1,26,4,30,2,26,3,30,2,26,2,30,3,29,2,26,1,15,1,14,1,30,1,28,1,29,1,30,1,28,2,29,1,28,1,29,8,26,1,28,2,15,2,28,5,29,1,28,8,30,1,26,2,30,1,28,1,29,2,28,5,13,1,30,1,28,8,26,2,29,1,28,2,29,1,26,2,9,1,15,1,13,2,25,1,26,1,28,3,29,1,9,2,13,6,26,1,30,1,29,1,28,4,29,1,28,9,29,12,30,2,28,7,29,1,30,1,29,3,28,22,29,1,28,29,1,253,}, + {1,465,28,1,1,3,28,2,30,1,13,2,26,1,29,2,26,1,29,1,28,1,30,2,26,4,30,2,13,2,26,1,30,2,29,1,28,3,29,1,26,4,29,1,28,3,29,1,30,2,26,1,25,1,9,1,13,1,29,1,13,2,28,8,13,1,14,1,15,1,29,1,30,1,28,2,29,1,26,1,13,3,26,1,13,3,30,2,26,1,13,1,15,1,9,1,25,1,26,5,30,1,29,1,30,1,26,2,30,3,26,1,29,2,26,2,29,3,15,1,14,1,29,1,28,1,29,1,28,2,29,1,28,1,29,5,28,2,29,3,28,1,26,1,15,1,9,1,28,4,29,1,28,8,30,1,29,2,26,1,28,1,29,1,28,6,26,2,28,7,29,2,28,4,29,1,26,2,13,1,9,1,26,3,30,1,28,2,30,1,13,1,9,1,25,1,13,8,26,2,29,2,28,12,29,9,28,3,29,1,30,1,28,4,29,1,28,1,29,2,28,11,29,1,28,43,1,253,}, + {1,468,28,2,8,1,13,1,26,1,30,1,29,1,30,1,29,3,26,1,30,2,26,1,30,2,26,1,30,2,13,3,26,2,29,1,28,3,29,1,13,4,26,2,9,1,15,1,14,5,15,2,25,1,30,1,13,2,29,4,30,1,28,2,30,1,9,1,13,1,29,2,28,3,29,1,26,3,13,1,26,3,13,2,26,1,29,2,13,1,15,2,9,1,26,1,30,3,29,2,30,5,29,1,30,3,29,3,30,1,26,1,14,2,28,2,30,1,28,3,29,4,28,5,30,1,29,1,28,1,25,1,14,1,25,1,28,3,29,1,28,7,29,1,26,1,30,1,28,1,29,1,28,8,29,1,13,2,28,12,26,1,25,1,13,1,26,2,13,1,26,1,29,2,26,1,13,1,9,1,13,5,26,1,13,6,26,1,13,1,26,1,30,1,29,1,28,12,29,9,28,2,29,2,28,3,29,3,28,56,1,253,}, + {1,467,28,1,29,1,13,1,26,1,13,1,29,1,30,2,29,3,30,1,26,1,29,1,30,4,26,4,13,2,26,2,29,1,28,3,29,1,13,4,25,2,15,2,9,4,25,1,26,1,13,1,14,1,30,1,28,1,9,1,26,1,28,2,13,1,15,1,26,1,28,1,26,1,30,1,28,2,30,1,26,3,30,1,26,6,13,3,26,1,30,1,28,1,29,1,13,1,9,1,15,2,13,1,30,1,26,1,30,1,29,1,30,2,29,2,30,1,29,1,30,2,29,1,28,1,29,1,30,2,29,2,15,2,28,14,29,4,13,1,14,1,30,1,28,12,26,1,30,1,29,2,28,7,26,1,13,1,15,2,30,1,28,5,29,3,30,1,13,1,25,1,9,1,15,1,9,1,13,2,30,1,29,1,13,1,9,2,25,1,13,7,26,8,30,3,29,2,28,9,29,10,28,3,29,2,28,60,1,253,}, + {1,466,28,1,29,1,13,1,26,1,30,2,29,4,26,3,29,2,30,3,26,5,13,2,26,1,30,1,29,1,28,3,29,1,13,1,25,1,13,4,25,1,13,1,26,1,30,2,26,1,30,1,29,1,26,1,14,1,9,1,29,1,25,2,28,2,9,1,15,1,13,1,29,3,13,2,26,1,13,2,26,1,30,4,29,1,26,1,13,2,26,1,30,1,26,1,13,1,26,1,29,1,28,1,29,1,9,1,15,2,25,1,26,2,29,6,30,2,29,3,30,1,29,1,28,1,29,1,28,2,14,1,15,1,28,2,29,1,28,11,29,1,30,1,28,2,9,1,13,1,28,4,29,1,28,7,26,1,28,1,29,1,25,1,28,7,13,2,15,1,14,1,15,1,13,1,28,3,26,1,13,1,29,1,26,1,15,2,13,2,25,2,13,2,26,1,13,1,9,1,13,1,26,2,13,4,26,1,13,2,26,6,29,3,30,1,26,1,30,1,29,5,28,10,29,3,28,1,29,1,28,3,29,2,28,60,1,253,}, + {1,465,28,1,13,1,25,1,13,1,30,1,29,1,30,2,29,1,30,1,26,3,30,1,26,1,29,1,26,7,13,1,9,1,13,1,26,1,29,2,28,3,26,1,25,1,9,1,13,3,26,1,29,1,26,1,25,1,13,1,26,1,29,1,30,2,29,1,26,1,11,1,15,1,13,1,15,1,13,1,26,2,13,2,9,1,13,2,9,2,25,1,26,4,13,2,26,1,13,1,26,9,30,1,29,1,30,1,13,1,15,1,14,1,13,1,26,1,30,1,29,3,28,2,29,8,28,1,29,1,28,1,30,1,14,1,9,1,28,1,29,2,28,11,29,4,15,1,30,1,28,2,29,2,28,6,13,1,28,3,9,1,29,1,28,6,29,1,26,1,9,1,25,1,13,1,14,2,26,1,9,1,13,1,29,2,25,1,15,1,9,1,13,1,9,1,28,2,26,1,13,1,9,2,26,1,13,1,26,2,13,1,26,2,13,2,26,10,30,4,29,6,28,12,29,1,28,2,29,2,28,3,29,1,28,4,29,1,28,54,1,252,}, + {1,464,28,1,26,1,9,1,30,1,29,1,26,2,29,1,26,2,30,1,26,13,13,1,9,1,13,1,30,2,13,1,28,2,26,1,13,1,9,2,13,1,26,1,29,2,28,2,26,1,13,1,29,1,28,1,30,2,28,1,13,1,14,1,9,1,30,1,28,2,29,1,28,1,29,1,13,3,26,2,13,1,9,1,25,1,26,6,13,1,26,1,30,1,29,2,30,1,26,2,30,4,29,2,26,1,9,1,15,2,30,1,28,1,29,1,30,1,28,5,29,8,28,1,13,1,15,1,13,1,28,1,29,1,28,11,29,1,26,1,29,1,28,1,26,1,15,1,28,7,29,1,26,1,9,1,30,1,28,3,13,2,28,8,30,1,13,1,9,3,26,1,13,1,26,2,25,1,9,1,13,1,26,1,13,1,26,1,30,1,26,1,13,4,26,14,30,3,26,7,30,1,26,2,30,1,29,1,28,7,29,2,28,2,29,1,28,1,29,3,28,7,29,1,28,3,29,1,28,52,1,252,}, + {1,460,28,1,1,2,28,1,13,2,26,1,30,4,26,17,30,1,9,2,13,1,29,2,28,1,30,1,13,1,26,1,30,1,29,1,28,1,29,1,26,1,13,1,30,1,28,2,29,1,28,1,29,1,30,1,29,1,26,3,28,6,30,1,26,3,13,1,26,2,13,1,26,1,25,1,9,2,26,1,30,1,26,4,30,2,29,3,26,1,30,1,26,2,30,1,29,2,26,1,13,1,14,1,13,1,28,2,30,1,29,1,28,3,29,2,28,2,29,4,28,2,30,1,13,2,29,1,28,14,29,2,28,1,13,1,29,1,28,4,30,1,13,1,30,1,28,6,30,1,9,1,28,7,29,1,26,3,13,2,30,1,26,3,13,1,26,1,29,1,26,1,13,1,30,1,13,1,9,2,13,1,26,2,13,1,26,4,30,4,26,2,30,8,26,4,30,2,26,1,30,2,29,3,28,9,29,4,28,65,1,252,}, + {1,462,28,1,6,1,13,2,30,1,29,1,26,2,30,4,26,2,30,5,26,10,13,1,29,1,30,2,26,1,29,1,28,5,26,1,13,2,29,1,28,3,29,1,30,1,29,1,13,1,29,1,28,7,30,1,26,1,29,1,30,1,13,1,26,3,30,1,26,1,25,1,9,1,25,1,26,2,30,3,26,2,29,6,30,1,26,1,29,4,13,1,15,1,13,1,28,2,29,2,28,3,29,11,26,1,13,1,28,14,29,2,26,1,29,1,25,1,26,1,29,1,13,1,26,2,30,1,29,1,28,7,15,1,13,1,28,6,30,1,13,1,26,1,29,2,26,6,13,5,9,2,13,3,26,5,30,2,29,3,30,17,29,7,28,6,29,1,28,2,29,2,28,3,29,3,28,59,1,252,}, + {1,461,28,1,13,2,29,1,26,2,30,1,26,2,29,2,30,2,26,2,30,3,26,1,30,2,26,6,13,1,29,1,28,1,26,4,28,6,29,1,30,1,13,2,30,1,29,1,28,3,29,3,28,3,30,1,26,1,30,1,29,2,26,1,30,1,28,1,29,1,26,5,29,1,28,1,29,1,9,1,15,1,9,1,26,1,29,2,30,1,26,1,29,3,28,4,29,3,30,1,28,1,29,1,13,1,15,1,13,1,28,2,29,2,28,3,29,1,30,1,29,1,28,1,29,1,28,1,29,3,28,1,29,1,13,1,26,1,28,13,29,2,13,1,28,1,26,1,13,1,28,6,13,1,28,6,13,1,9,1,28,5,30,1,13,2,30,1,28,1,29,1,26,1,13,3,26,1,13,1,25,1,9,1,25,1,26,1,9,1,14,1,9,1,26,1,25,1,9,1,13,2,26,4,30,4,29,5,30,4,29,16,28,14,29,3,28,3,29,3,28,52,1,252,}, + {1,457,28,1,1,2,28,1,30,1,13,1,26,2,30,1,29,1,30,2,28,2,26,1,29,2,30,5,26,1,30,2,26,6,13,1,29,1,28,1,13,1,30,1,29,1,30,1,29,2,28,5,30,1,13,2,26,1,29,1,28,2,29,3,28,1,29,1,30,1,26,3,29,2,26,2,29,2,30,3,26,1,30,1,13,1,26,1,28,2,26,1,9,1,15,1,9,1,26,1,29,2,30,1,29,2,28,7,29,1,30,3,28,1,30,1,14,1,9,1,28,2,29,1,28,3,29,3,28,5,29,4,13,1,28,14,30,1,26,1,28,2,26,1,28,6,25,1,28,7,9,1,29,1,28,3,30,1,26,1,30,1,29,1,28,2,29,1,26,1,13,2,9,2,13,1,26,4,25,1,14,1,15,1,13,4,9,1,13,3,26,2,30,1,29,25,28,1,29,3,28,4,29,1,28,2,29,1,28,6,29,7,28,15,29,1,28,36,1,252,}, + {1,459,28,1,6,1,13,2,29,1,26,2,29,1,28,1,29,7,30,1,26,3,30,1,26,7,13,2,26,1,28,1,13,1,26,1,29,1,30,1,29,2,28,5,29,1,26,1,25,1,26,1,28,2,29,1,30,1,29,3,26,3,30,1,29,1,26,2,13,1,26,1,30,2,26,1,30,1,29,1,26,5,29,2,30,1,26,1,15,1,9,1,13,1,30,2,29,2,28,8,29,1,26,1,29,3,13,1,14,1,9,1,28,3,29,2,28,3,29,2,28,4,29,3,30,1,29,1,28,12,29,1,26,1,13,1,29,1,28,1,13,1,29,1,28,4,29,1,13,1,29,1,28,6,13,1,26,1,28,2,29,1,13,1,28,5,26,1,13,2,9,2,13,1,26,6,9,1,25,1,13,3,26,1,13,1,9,1,25,1,13,2,26,1,30,1,29,1,28,9,29,14,28,3,29,1,30,1,28,4,29,1,28,9,29,1,30,2,29,1,28,16,29,1,28,38,1,252,}, + {1,458,28,1,8,1,13,1,26,2,30,1,28,1,29,2,28,1,29,1,30,1,29,1,28,1,29,4,30,1,26,1,30,1,29,1,26,5,13,5,28,1,13,2,26,1,30,1,29,2,28,6,30,1,13,2,29,1,28,1,30,2,29,2,26,4,30,1,29,1,13,2,26,4,13,1,26,1,30,1,26,2,29,2,26,2,30,1,29,2,13,1,9,2,13,1,30,1,29,2,28,9,29,1,28,1,26,2,28,1,13,1,14,1,29,1,28,2,30,1,29,1,28,4,29,1,28,5,29,1,30,1,29,1,28,11,29,1,26,2,29,1,26,1,28,2,26,1,28,5,29,1,13,2,29,1,28,6,9,1,28,2,26,1,29,1,28,3,29,1,26,1,13,1,9,1,25,2,26,3,13,1,25,1,13,1,26,5,13,2,26,1,30,1,13,4,26,2,30,1,29,3,28,9,29,13,28,1,29,2,28,14,29,3,28,56,1,252,}, + {1,457,28,1,30,1,13,1,30,1,29,2,30,1,29,1,28,2,29,2,28,2,30,1,29,2,28,1,29,1,30,1,26,1,29,2,26,5,13,4,9,1,28,1,13,1,25,1,30,1,29,1,30,2,28,6,26,2,13,2,30,2,29,2,30,1,29,1,26,1,29,1,26,4,30,1,29,1,13,2,26,1,13,2,26,1,30,1,29,1,30,2,29,3,26,2,28,1,26,1,9,1,13,1,29,1,28,1,29,2,28,12,30,1,29,1,26,1,14,1,28,2,29,1,30,1,29,1,28,10,30,2,28,2,29,1,26,1,29,1,28,5,29,1,26,2,30,1,29,1,13,1,28,1,13,1,26,1,28,6,26,1,9,1,29,1,28,6,9,1,28,1,13,1,26,1,28,3,30,1,13,1,9,2,13,1,26,1,30,1,26,1,13,4,26,2,13,1,26,1,13,2,26,1,30,1,26,1,13,1,30,2,26,2,13,2,26,2,29,3,28,8,29,13,28,2,29,2,28,18,29,1,28,1,29,1,28,51,1,252,}, + {1,456,28,1,29,1,9,1,30,1,29,5,28,7,29,5,30,2,26,4,13,5,25,2,26,2,15,1,26,1,29,3,28,6,13,1,26,1,13,1,9,1,13,1,29,3,30,1,29,1,26,14,30,1,29,7,28,1,29,2,26,2,29,1,28,2,26,1,29,1,28,3,29,1,28,3,29,1,28,2,30,1,29,1,28,1,30,1,9,2,28,2,29,2,28,10,26,1,30,1,29,1,28,1,29,1,28,1,13,1,26,1,30,1,26,2,30,3,29,1,28,2,29,2,30,1,29,1,28,6,30,1,9,1,26,1,28,5,26,1,15,1,13,1,28,4,13,3,9,1,13,3,26,1,13,1,25,1,13,5,26,18,29,2,28,9,29,12,28,12,29,2,28,60,1,253,}, + {1,455,28,2,13,1,26,1,29,1,26,2,28,10,29,5,30,1,26,4,13,7,25,1,13,1,26,1,15,1,13,1,29,1,30,1,29,2,28,5,29,1,13,3,30,1,29,3,26,4,30,2,26,8,30,2,29,4,28,4,30,1,26,5,29,1,28,2,29,3,28,3,29,1,28,1,29,1,28,2,29,1,28,3,30,1,13,2,28,2,29,2,28,9,29,1,26,1,28,4,26,3,13,2,26,1,29,1,28,2,29,1,26,1,29,1,28,7,29,3,13,1,29,1,28,1,29,1,28,2,13,1,9,1,26,1,29,1,28,2,29,2,13,3,25,2,9,2,13,1,25,1,9,1,13,2,26,13,30,1,26,1,30,1,26,1,30,1,26,1,30,3,29,2,28,11,29,8,28,1,29,1,30,1,29,1,28,71,1,253,}, + {1,454,28,2,13,2,29,1,28,1,29,1,28,10,29,5,30,1,26,5,13,8,25,1,26,1,9,1,25,1,28,1,26,1,29,2,28,3,29,2,28,1,9,1,13,1,30,1,29,2,28,1,29,1,26,3,29,3,26,8,30,1,29,4,28,4,30,1,13,1,26,3,29,1,26,2,30,1,28,1,29,1,28,1,29,2,28,2,29,1,28,3,29,3,28,1,29,2,26,1,25,1,30,1,28,2,30,1,29,1,28,8,30,1,13,1,28,5,29,1,30,1,26,1,30,1,28,4,29,1,30,1,28,8,29,1,28,1,30,1,13,1,28,2,13,1,26,2,13,1,28,2,9,2,28,2,13,1,25,1,13,4,15,1,9,1,13,3,26,13,30,13,29,3,28,8,29,10,28,72,1,254,}, + {1,454,28,1,26,1,29,1,26,1,29,1,28,4,29,1,28,6,29,5,30,1,26,6,13,8,9,1,26,1,9,2,28,1,26,1,29,2,28,3,29,2,28,1,9,1,13,1,30,1,29,4,26,2,30,1,29,3,26,9,30,2,29,1,28,3,29,1,30,1,26,1,30,1,29,1,26,2,29,2,26,3,28,3,29,1,28,2,29,1,28,2,29,6,28,1,29,1,30,1,25,2,29,1,28,1,29,1,28,8,9,1,30,1,28,3,29,1,28,3,30,4,26,2,29,2,13,1,29,1,28,8,26,1,25,1,30,1,28,1,29,3,30,1,28,2,25,1,9,1,29,1,13,1,9,2,13,2,26,1,13,1,15,1,9,1,26,7,29,1,30,16,29,1,30,5,29,2,28,10,29,7,28,3,29,1,30,1,29,1,28,2,29,1,30,3,29,1,28,60,1,254,}, + {1,453,28,1,29,1,25,1,30,2,28,11,29,2,28,2,29,2,26,8,13,5,25,1,13,1,9,1,13,1,25,1,9,1,28,1,30,2,29,2,28,2,29,1,28,2,30,3,28,2,29,1,30,1,26,2,29,3,30,1,26,4,30,2,26,3,30,1,29,3,26,3,30,1,28,3,29,1,30,1,29,3,26,1,13,1,30,1,28,2,29,2,28,13,13,1,9,1,30,1,28,9,29,1,9,1,28,3,29,1,26,1,28,4,29,1,13,1,26,1,29,1,28,3,9,2,29,1,28,2,29,1,28,4,29,1,13,2,29,1,28,2,26,1,13,1,26,1,28,2,25,1,9,2,13,6,15,1,13,7,26,1,29,7,30,9,29,1,30,2,29,7,28,13,29,1,28,3,29,1,28,3,29,2,28,2,29,4,28,60,1,254,}, + {1,452,28,2,13,1,29,1,26,1,29,1,28,11,29,2,28,2,29,2,26,3,13,3,26,2,13,7,25,1,13,1,25,1,9,1,30,1,29,1,30,1,29,3,28,4,29,1,30,2,28,2,29,1,30,1,29,1,30,1,29,3,26,5,30,2,26,2,29,1,28,2,29,1,26,1,13,1,26,1,30,1,28,5,29,1,30,2,29,3,25,1,26,1,28,2,29,1,28,13,29,2,13,1,26,1,29,2,28,6,9,1,26,1,28,3,29,1,13,1,29,1,28,11,15,1,14,1,28,6,29,1,30,1,26,1,13,1,28,2,26,1,14,1,26,1,28,2,30,1,9,2,26,1,13,6,9,1,13,8,26,1,30,4,29,5,30,6,29,1,30,2,29,9,28,10,29,3,28,1,29,2,28,4,29,1,28,62,29,1,28,2,1,255,}, + {1,451,28,2,13,1,26,1,28,14,29,5,30,1,26,3,13,7,25,1,13,3,25,1,13,1,25,1,9,1,15,1,13,1,29,1,30,1,29,4,28,2,29,1,30,2,29,2,28,1,29,2,30,2,29,2,30,4,26,2,30,1,26,2,29,1,28,3,26,1,13,2,30,1,29,1,28,6,29,1,26,1,30,1,29,1,28,1,13,1,25,1,30,1,28,1,29,2,28,14,30,1,26,3,29,3,28,2,30,1,13,1,28,1,29,1,30,1,28,1,29,1,13,2,28,11,29,1,14,1,9,1,28,6,26,1,13,1,26,1,28,2,14,1,15,1,28,1,29,1,13,1,9,1,13,1,26,1,13,2,25,1,26,1,13,1,25,1,13,2,26,5,13,3,26,5,30,1,29,2,28,1,29,3,30,3,29,2,30,2,29,10,28,9,29,3,30,1,28,6,29,1,28,5,29,3,28,56,1,256,}, + {1,451,28,1,13,1,30,1,28,1,26,1,29,1,28,13,29,2,26,6,13,7,25,2,13,2,9,1,26,1,9,2,14,1,9,1,29,1,26,2,30,2,26,1,13,3,30,1,29,1,28,1,29,3,26,1,13,1,26,1,30,4,29,1,30,4,26,2,29,1,28,3,13,2,30,1,28,2,29,1,28,5,29,2,30,2,29,2,9,1,26,1,28,1,30,1,26,1,28,13,29,1,28,2,30,3,9,1,13,2,14,1,26,1,28,1,29,1,28,1,30,1,28,1,29,1,13,1,9,1,28,12,29,1,14,1,9,1,28,3,29,1,28,1,30,1,25,1,13,1,30,1,26,1,14,1,9,1,30,1,26,1,13,1,25,2,26,1,25,1,26,1,9,1,26,2,13,4,26,5,13,2,26,1,13,4,26,1,29,1,28,2,29,10,30,4,29,4,30,1,29,2,28,8,29,3,28,3,29,1,28,3,26,1,28,7,29,1,28,56,1,256,}, + {1,451,29,1,13,1,29,2,28,15,30,1,26,5,13,8,25,3,13,1,25,2,13,1,25,2,15,2,30,1,29,1,30,1,29,2,28,3,26,1,29,2,30,1,13,1,30,1,28,1,29,1,26,1,13,3,26,1,30,1,29,2,30,1,26,1,29,1,26,1,13,1,28,3,26,1,13,1,28,4,29,2,28,4,29,2,28,1,29,1,30,1,29,1,28,1,15,1,9,1,29,1,30,2,28,15,29,3,26,1,9,1,26,1,28,2,29,2,28,3,26,1,13,1,9,1,29,1,28,12,13,1,14,1,9,1,28,4,29,1,13,4,9,1,28,1,29,1,13,1,9,2,25,1,13,9,26,2,13,2,26,11,29,2,28,5,29,2,30,2,29,9,30,2,29,2,28,10,29,1,28,8,29,1,28,2,29,1,28,1,29,2,28,55,1,257,}, + {1,450,28,1,6,1,26,1,29,1,30,1,28,11,29,4,30,1,13,1,26,2,13,11,25,2,13,5,25,1,15,1,14,1,26,1,30,1,29,1,28,1,29,2,28,2,29,1,30,1,26,1,30,1,29,1,28,2,29,2,30,1,26,2,13,2,26,1,30,2,29,2,30,1,28,3,30,1,13,1,28,6,29,3,28,2,29,1,28,1,29,3,30,1,29,2,9,2,28,2,29,2,28,11,29,1,30,1,29,1,28,2,29,1,26,1,13,1,26,1,29,1,28,1,29,1,28,3,29,1,26,1,13,1,26,1,28,7,29,1,30,1,28,3,13,1,9,1,15,1,26,1,28,3,30,1,13,1,9,2,26,1,28,1,13,2,25,2,13,1,26,3,13,2,26,4,13,2,26,14,30,2,29,1,28,5,29,13,30,1,29,4,28,7,29,1,28,2,29,1,28,4,29,1,28,4,29,1,28,1,29,1,28,56,1,257,}, + {1,449,28,1,29,1,30,2,28,1,29,1,28,11,29,4,26,1,13,1,26,1,13,14,25,1,13,4,25,1,15,1,14,1,26,1,30,1,29,2,30,1,29,1,28,2,30,1,13,1,26,1,29,1,28,2,29,2,28,1,29,1,30,1,26,1,13,3,26,1,30,1,29,1,26,1,29,1,28,2,29,1,30,1,29,1,28,7,30,1,29,3,28,2,29,2,28,1,30,1,29,1,28,1,13,1,15,1,29,1,28,1,30,1,28,12,29,1,26,1,29,1,28,1,29,2,30,1,26,1,29,1,28,6,26,1,13,3,28,4,29,1,28,2,30,1,13,1,28,3,30,1,13,1,15,1,14,1,13,1,26,1,9,2,25,1,9,1,15,1,9,1,30,1,9,2,25,1,13,1,26,4,13,6,26,1,30,1,26,9,30,2,26,5,30,2,29,2,28,4,29,2,30,2,29,13,28,9,29,2,28,3,29,1,28,5,29,1,28,56,1,258,}, + {1,448,28,2,13,1,30,1,28,14,29,3,30,1,26,1,13,16,9,2,25,1,13,1,25,1,9,1,15,2,26,1,30,1,29,1,26,1,30,1,28,2,26,1,25,1,13,1,29,1,28,2,29,3,26,6,13,2,26,1,30,1,26,1,28,3,26,1,28,9,30,1,29,3,28,4,29,4,28,1,9,2,29,1,30,1,29,1,28,11,29,1,26,1,28,4,30,2,28,8,30,1,13,1,9,1,29,1,28,3,30,1,28,2,30,1,26,1,28,2,29,1,28,1,30,1,9,1,11,1,15,1,9,1,14,2,9,1,13,1,9,1,15,1,9,1,25,1,13,1,26,4,13,2,26,7,30,1,26,6,30,2,26,2,30,6,26,2,30,1,29,2,28,4,29,16,28,9,29,1,28,8,29,1,28,1,29,1,28,55,1,259,}, + {1,448,28,1,13,1,30,1,29,1,28,13,29,2,30,2,26,2,13,16,9,3,25,1,9,3,15,1,26,1,29,2,30,1,29,1,28,1,29,1,13,1,26,1,28,3,29,1,30,3,26,1,30,1,26,3,30,1,26,3,30,1,29,1,28,2,26,2,28,9,29,2,30,1,29,3,28,2,29,3,26,1,28,1,29,1,9,1,13,1,29,1,26,1,29,1,28,6,29,1,28,3,29,1,26,1,29,1,28,3,29,1,13,2,28,6,29,1,26,1,13,1,9,1,29,1,28,3,30,1,28,2,29,1,28,3,30,1,28,1,29,1,13,1,14,1,15,1,13,1,9,3,13,2,25,1,9,1,13,2,26,3,13,3,26,2,30,1,29,2,30,1,26,2,30,21,29,3,28,4,29,14,28,3,29,2,28,1,29,1,28,10,29,1,28,1,29,1,28,54,1,260,}, + {1,447,28,2,9,1,29,1,28,13,29,2,30,1,26,3,13,7,25,1,13,8,25,1,9,1,13,1,25,2,9,3,15,1,13,1,30,1,29,3,30,1,13,1,26,1,28,2,29,1,30,1,29,1,30,1,13,1,26,1,30,1,29,1,30,1,26,2,30,4,29,1,28,2,30,1,26,1,28,11,29,1,30,3,29,1,28,3,29,1,30,1,29,2,28,1,30,1,25,1,29,1,26,1,29,2,28,4,29,2,28,4,26,2,28,4,13,1,9,1,28,4,29,1,26,1,9,1,13,1,30,1,13,1,30,1,28,3,29,1,28,5,26,1,28,2,29,1,13,1,9,1,15,1,13,1,26,2,13,1,25,1,13,3,25,1,9,2,13,8,26,3,29,8,30,2,29,2,30,1,29,3,30,2,29,1,30,6,29,1,28,5,29,13,28,4,29,1,28,1,29,1,28,64,29,1,28,2,1,260,}, + {1,447,28,1,30,1,13,1,29,1,28,12,29,1,30,3,26,2,13,11,25,1,13,5,25,2,13,1,25,2,9,1,13,1,9,1,14,1,9,1,26,1,30,1,29,1,30,1,13,2,29,1,28,1,29,1,26,1,13,1,26,2,13,1,26,1,30,1,29,3,30,2,29,3,28,2,29,3,28,12,30,1,29,3,28,3,29,3,26,1,29,1,28,1,26,4,30,1,28,4,29,1,28,5,13,2,28,4,29,1,9,1,26,1,28,1,13,1,9,1,25,2,13,1,28,2,26,1,13,1,29,1,28,7,29,1,13,1,28,2,30,1,9,1,13,1,9,1,25,1,13,1,26,1,13,1,9,4,25,1,9,2,13,4,26,1,13,2,25,1,9,1,13,1,26,1,29,1,28,1,29,1,28,2,29,12,30,1,29,2,30,6,29,2,28,5,29,1,28,2,29,5,28,2,29,1,28,26,29,1,28,46,1,261,}, + {1,446,28,2,9,1,28,1,29,1,28,12,29,2,30,2,26,2,13,10,9,2,13,4,25,2,13,1,25,1,9,3,13,1,9,1,14,1,9,1,30,2,29,1,26,1,13,1,29,1,28,1,30,1,26,5,30,4,29,5,28,7,30,2,28,10,30,1,29,1,28,1,30,1,29,1,28,2,29,1,28,1,26,1,30,1,29,1,30,1,29,1,13,2,25,1,13,1,28,10,13,1,9,1,28,2,29,3,13,2,30,1,13,2,26,1,25,1,9,1,13,1,25,1,13,1,26,2,29,1,28,7,30,1,28,1,26,1,9,1,15,1,29,1,28,1,26,1,13,1,25,1,9,2,13,4,25,2,13,1,26,1,13,4,26,4,13,3,29,2,28,6,29,10,30,4,29,2,30,2,29,1,28,9,29,2,28,3,29,1,28,13,29,1,28,4,29,1,28,10,29,1,28,42,1,262,}, + {1,446,28,1,30,2,28,14,26,1,30,3,26,2,13,11,25,2,9,1,25,2,13,1,25,2,13,1,9,2,13,1,9,3,15,1,13,1,30,1,13,2,28,2,26,7,30,1,29,2,30,1,29,4,28,5,29,1,28,3,29,2,28,3,29,2,28,4,29,5,28,2,29,1,13,1,30,1,26,1,29,1,28,1,30,1,28,1,13,1,9,1,26,1,29,1,28,7,29,1,28,1,26,2,25,1,26,1,30,1,13,3,26,1,28,1,13,1,9,2,15,1,14,1,15,1,25,1,26,2,15,1,9,1,28,6,26,1,13,3,9,1,13,1,29,1,26,1,13,1,25,1,9,2,25,1,13,1,26,2,13,8,26,8,13,1,26,1,30,1,29,1,28,10,29,1,30,1,29,7,30,2,29,3,28,5,30,1,29,1,28,1,29,1,28,10,29,2,28,8,29,1,28,53,29,1,28,2,1,262,}, + {1,446,28,1,13,1,29,1,28,13,29,1,26,1,30,2,26,3,13,11,25,2,9,1,25,2,13,1,25,2,9,2,25,2,9,3,14,1,9,1,30,1,26,2,28,1,29,1,13,2,26,4,30,2,29,8,28,3,29,3,28,3,29,1,28,9,29,2,30,1,29,3,28,2,29,8,13,2,29,1,30,2,28,7,29,2,28,2,29,1,9,1,26,1,28,1,13,1,9,1,25,1,9,2,13,1,30,1,28,3,26,1,15,1,14,1,9,1,29,2,28,2,26,2,9,1,25,1,26,2,13,3,9,3,25,1,13,6,26,16,30,1,29,3,28,8,29,15,28,4,29,1,28,2,29,1,28,3,29,1,28,3,29,1,28,2,29,1,28,9,29,1,28,48,29,1,28,6,1,263,}, + {1,445,28,1,30,2,28,10,29,1,28,1,29,3,26,1,30,1,26,4,13,11,25,2,9,1,25,4,9,2,13,1,25,1,9,3,15,1,14,1,25,1,29,4,30,1,13,1,26,5,30,2,29,13,30,1,29,1,28,2,29,3,28,6,29,1,30,1,26,1,30,1,29,3,28,5,29,1,26,1,29,1,26,1,28,1,13,1,9,1,28,4,29,1,30,1,26,1,30,1,28,1,30,1,29,3,26,1,29,1,26,1,28,2,26,1,13,1,28,1,26,1,28,7,25,1,14,2,9,1,26,3,9,1,13,1,9,1,13,1,30,2,13,1,9,2,13,10,26,8,30,12,29,2,28,8,29,14,28,5,29,1,28,2,29,1,28,1,29,1,28,3,29,1,28,2,29,1,28,7,29,3,28,54,1,264,}, + {1,445,28,1,13,1,29,1,28,9,29,2,28,1,29,1,30,3,26,5,13,6,25,1,13,3,25,1,13,1,25,1,9,2,25,3,9,2,13,1,9,2,25,1,9,1,15,1,9,1,26,1,29,2,30,2,26,2,29,1,26,3,30,2,29,14,26,2,29,1,28,2,29,2,28,4,29,2,30,3,29,1,28,2,29,2,28,4,26,2,30,2,28,1,13,1,15,1,28,3,29,1,13,1,30,1,29,1,28,1,29,1,26,1,28,2,13,1,29,1,28,4,26,1,28,6,26,1,30,1,28,3,9,1,14,1,15,1,9,1,13,2,9,2,30,1,29,1,30,1,13,4,30,1,26,1,13,4,26,9,30,9,29,1,30,7,29,1,28,7,29,11,28,1,29,1,30,1,26,1,29,1,28,6,29,1,28,14,29,3,28,52,29,1,28,2,1,265,}, + {1,445,29,1,30,1,28,8,29,1,28,1,29,4,30,3,26,5,13,5,25,3,13,1,25,2,13,1,25,1,9,2,25,2,9,6,25,1,15,1,9,1,26,1,29,2,30,1,26,2,13,1,26,1,30,1,26,2,30,2,29,12,28,1,29,3,30,1,26,1,29,1,28,2,29,1,30,1,29,1,28,1,29,3,28,5,29,1,30,1,29,1,26,1,28,3,26,1,29,1,30,1,28,1,29,1,30,1,25,1,13,1,28,1,29,1,28,5,30,1,13,1,28,2,13,1,28,4,13,2,28,5,26,2,29,1,28,3,29,1,25,1,15,2,9,1,26,3,29,2,13,3,26,1,29,1,30,1,26,2,13,3,26,8,30,3,29,3,30,4,29,5,30,3,29,2,28,7,29,10,28,2,29,1,30,2,28,6,30,1,28,4,29,1,28,66,1,266,}, + {1,444,28,1,13,1,29,1,28,8,29,1,28,1,30,1,29,2,30,3,26,5,13,6,25,6,13,1,25,1,9,2,25,2,9,8,13,1,28,1,29,1,30,3,26,5,30,3,29,14,28,3,26,2,28,3,29,5,28,5,29,1,26,1,30,1,29,1,26,1,29,1,28,2,30,1,29,1,26,1,28,3,26,1,9,1,28,7,30,1,9,1,13,1,29,1,28,1,25,1,28,3,26,1,9,1,29,1,28,3,29,1,26,1,29,1,28,5,26,1,9,1,14,1,9,1,13,1,30,1,29,1,26,1,13,2,25,2,26,1,29,1,13,2,26,4,13,2,26,6,30,2,29,7,30,1,29,7,30,1,29,4,28,6,29,6,28,1,29,5,28,2,29,1,28,5,29,1,28,1,29,1,28,2,29,2,28,64,1,267,}, + {1,444,28,1,13,1,28,10,29,4,30,3,26,3,13,8,25,6,13,1,25,1,9,11,13,1,29,1,28,1,29,1,26,1,30,4,26,3,30,2,29,15,28,3,29,1,30,1,29,1,28,3,29,3,28,5,29,2,30,1,29,4,28,3,29,1,13,1,29,2,30,1,26,1,15,1,13,1,29,2,28,4,29,1,25,1,13,1,26,1,28,1,30,1,28,3,26,1,14,1,13,1,28,1,29,1,28,2,30,1,29,1,28,3,30,2,13,1,9,2,15,1,9,1,13,1,30,1,9,2,13,1,9,2,13,6,26,1,13,3,26,5,30,3,29,10,30,1,29,10,28,7,29,5,28,1,29,3,28,3,29,2,28,6,29,1,28,3,29,1,28,63,1,268,}, + {1,443,28,1,30,1,28,11,29,3,30,1,26,1,30,1,29,1,26,3,13,7,25,9,9,11,30,1,28,1,29,2,26,5,30,5,29,17,28,3,29,2,28,3,29,2,28,4,29,4,30,2,29,1,30,1,29,1,28,3,30,2,26,2,28,1,9,1,14,1,30,1,29,1,28,4,29,1,13,1,26,1,9,1,29,1,28,1,29,2,28,1,13,1,14,1,30,2,26,1,29,2,30,1,29,1,28,2,29,1,13,1,9,3,25,1,9,1,15,1,9,1,25,1,13,1,30,2,9,1,13,1,26,1,25,1,26,2,13,4,26,2,13,1,26,4,30,2,29,4,28,4,29,3,30,2,29,7,26,2,29,1,28,6,29,4,30,1,28,2,29,3,28,1,29,2,30,1,28,13,29,1,28,59,1,269,}, + {1,442,28,2,13,1,28,10,29,5,30,1,26,3,13,11,25,9,9,4,25,1,9,3,26,1,29,2,30,1,26,10,30,1,29,16,28,4,29,3,28,2,29,3,28,4,29,2,30,2,29,1,30,2,29,1,28,3,30,1,26,1,30,1,26,1,29,2,15,1,13,1,28,4,29,1,26,2,25,2,9,1,28,1,29,1,9,1,26,1,29,1,26,1,9,1,28,3,29,1,26,1,29,1,28,2,13,1,26,1,9,1,15,1,9,1,26,1,9,3,13,4,26,1,13,2,25,1,13,8,26,5,30,1,29,1,28,1,29,1,30,2,28,7,29,3,28,1,29,7,30,3,28,5,29,2,28,1,29,2,28,1,29,3,28,3,30,1,28,70,29,1,28,2,1,269,}, + {1,442,28,2,30,1,28,10,29,4,30,2,26,4,13,10,25,5,9,2,25,2,9,7,13,1,29,3,30,1,26,7,30,4,29,17,28,4,30,3,29,3,28,6,29,1,30,3,29,1,30,2,28,4,30,1,26,1,28,1,26,2,9,1,15,1,29,1,28,4,30,1,26,1,13,2,25,1,28,1,30,1,28,2,26,1,9,1,15,1,26,1,28,1,29,3,28,1,29,1,30,1,26,1,9,2,13,1,26,2,13,2,9,1,13,1,26,6,13,11,26,2,30,4,29,2,28,9,29,1,28,2,29,7,30,2,29,2,28,5,29,1,28,1,29,1,28,2,29,3,28,73,29,1,28,2,1,270,}, + {1,441,28,2,30,1,29,1,28,1,29,1,28,6,29,2,28,1,29,3,30,2,26,4,13,10,25,5,9,2,25,1,9,7,25,1,29,1,28,1,29,1,26,8,30,3,29,21,28,2,30,1,26,2,30,1,29,2,28,6,29,2,30,1,26,1,29,1,26,1,30,1,29,1,28,3,29,1,26,1,28,1,13,3,14,1,13,1,28,5,26,1,13,2,9,1,28,1,29,2,28,1,29,1,13,1,15,1,13,1,29,1,13,1,9,1,26,1,29,1,30,1,13,2,9,1,13,1,26,1,13,5,26,4,13,1,26,8,13,6,26,1,30,4,29,2,28,13,29,9,26,1,29,1,28,4,29,2,28,4,29,2,28,6,30,1,28,6,29,1,28,61,1,271,}, + {1,442,28,1,13,1,28,7,29,1,28,1,29,2,28,1,29,2,30,2,26,5,13,10,25,2,9,3,25,1,9,7,15,1,9,1,26,1,28,2,30,1,26,7,30,3,29,22,28,2,29,1,30,3,29,4,28,4,29,2,30,1,26,1,30,1,26,1,30,1,29,2,28,3,30,2,13,2,30,1,14,1,9,1,30,1,28,4,26,1,25,2,9,1,28,2,13,1,26,1,28,1,29,1,14,1,9,4,13,1,30,2,26,1,13,3,25,2,13,3,26,4,13,2,26,2,13,1,26,10,13,1,26,2,30,1,29,1,28,2,29,2,28,13,29,1,28,1,29,6,30,1,26,1,28,5,29,1,28,2,29,1,28,2,29,2,28,2,26,1,28,3,29,3,28,3,29,5,28,56,1,272,}, + {1,442,28,1,13,1,28,7,29,1,28,2,30,1,29,3,30,1,26,6,13,4,25,1,13,5,25,2,9,3,13,1,9,8,13,1,29,1,28,1,29,1,30,1,26,6,30,2,29,31,30,1,29,1,28,6,29,2,30,1,26,2,29,1,30,2,28,4,9,1,13,2,26,1,9,2,26,1,13,2,30,2,13,2,25,1,9,1,26,1,28,1,26,1,30,1,28,1,30,1,14,1,15,1,13,1,29,2,26,1,9,3,14,1,15,1,9,2,13,1,26,4,29,1,30,1,26,1,13,1,26,1,30,2,26,9,30,1,26,5,29,1,28,20,29,6,26,1,28,6,29,3,28,3,29,2,28,1,26,1,29,1,28,3,29,1,28,1,29,1,28,1,29,2,28,1,29,2,28,56,1,273,}, + {1,441,28,1,29,1,28,8,29,1,28,1,29,1,30,2,29,2,30,1,26,6,13,4,25,1,13,2,25,5,9,3,13,1,9,7,25,1,29,1,28,1,29,1,26,2,30,1,26,4,30,2,29,29,28,2,29,1,30,1,29,1,28,1,29,2,28,3,29,2,30,1,26,1,30,1,29,1,30,1,26,1,29,1,28,3,9,1,13,2,26,2,9,1,26,2,9,1,25,1,13,1,25,1,13,1,25,1,9,1,29,1,28,1,30,1,29,1,30,1,29,1,13,1,15,1,29,2,13,1,15,1,14,1,9,1,15,1,11,1,14,1,25,1,26,2,13,1,26,1,30,1,26,1,29,1,26,4,30,1,26,5,30,9,26,4,28,21,29,3,28,1,30,1,29,1,28,6,29,2,28,3,29,2,28,6,29,1,28,61,30,1,28,1,1,274,}, + {1,441,28,1,30,1,28,2,29,1,28,3,29,1,28,2,29,3,30,1,29,2,30,1,26,4,13,7,25,1,13,1,25,5,9,11,29,3,30,1,26,2,30,1,26,3,30,2,29,28,30,1,29,1,28,2,29,1,30,1,29,1,28,1,29,2,28,3,29,2,30,3,26,1,30,2,26,1,28,2,30,1,13,2,26,1,30,1,26,1,15,1,26,1,28,1,9,4,25,1,9,2,28,2,13,3,28,2,9,1,13,1,9,1,15,2,9,1,26,2,13,1,9,1,26,1,30,1,13,2,26,1,29,3,26,1,13,1,26,1,30,1,26,4,30,3,29,4,30,2,29,3,26,3,30,1,28,21,29,4,30,1,28,10,29,3,30,1,28,1,29,1,28,3,29,1,28,11,29,1,28,46,29,1,28,4,1,274,}, + {1,441,28,1,30,1,28,2,29,1,28,3,29,1,28,2,30,2,28,1,29,3,30,1,26,4,13,7,25,1,13,1,25,5,9,10,25,1,28,1,29,1,30,3,26,3,30,4,29,3,28,1,29,18,30,1,29,5,30,1,29,1,28,2,29,1,30,2,29,1,28,5,29,2,30,1,29,1,30,1,26,1,30,1,29,1,26,1,29,1,28,1,9,1,30,1,13,1,29,1,28,1,13,1,14,1,26,1,28,1,15,1,14,1,15,1,9,1,25,1,9,2,26,1,28,1,13,1,9,1,13,1,28,1,29,1,9,1,13,1,30,1,28,3,30,1,13,1,26,2,13,2,26,3,30,1,28,1,30,1,13,2,30,2,26,6,30,2,29,7,28,1,29,3,26,2,29,1,28,19,29,3,28,1,29,1,28,10,29,2,28,1,29,1,28,1,26,1,28,3,30,1,28,3,29,1,28,7,29,1,28,47,29,2,28,1,1,275,}, + {1,441,28,1,29,1,28,8,29,5,30,2,26,3,13,10,25,5,9,9,15,2,28,2,29,1,30,1,26,6,30,1,29,3,28,2,29,10,30,1,29,14,30,1,28,1,30,1,28,2,26,1,25,1,29,2,28,3,29,5,30,1,26,2,30,5,28,2,26,1,29,1,13,1,15,1,9,1,28,1,29,1,15,1,14,2,9,1,13,1,15,1,30,1,28,1,29,1,9,1,26,1,13,1,9,1,26,2,29,1,28,2,30,1,26,1,13,3,26,4,29,2,26,1,13,1,26,8,30,2,26,1,30,1,29,1,28,2,29,1,28,2,30,2,29,2,26,1,29,1,30,2,29,1,28,20,29,5,28,6,29,2,28,2,29,1,28,2,29,1,28,7,29,1,28,54,29,1,28,2,1,276,}, + {1,440,28,1,29,2,28,8,29,4,30,3,26,2,13,11,25,5,9,10,13,1,28,1,29,2,30,1,26,3,30,2,26,1,30,1,29,3,28,2,29,10,30,2,29,14,28,1,30,1,28,2,30,1,13,1,29,1,28,1,29,3,28,2,29,1,26,4,29,2,30,1,13,1,15,1,30,1,28,3,30,1,13,1,9,1,14,1,30,1,28,2,26,1,15,1,11,1,15,1,13,1,28,1,29,1,25,1,9,2,14,1,15,1,28,1,30,1,29,2,30,1,13,2,26,7,29,2,26,1,13,1,26,7,13,1,26,1,30,1,29,2,28,5,30,1,26,3,30,1,29,2,30,3,29,2,28,19,29,1,28,2,29,1,28,7,29,1,28,3,29,3,28,61,29,1,28,3,1,276,}, + {1,440,28,1,29,1,28,9,29,4,30,3,26,1,13,12,25,4,9,5,15,1,13,1,15,1,9,3,28,2,29,1,30,1,26,4,30,3,29,4,28,2,29,10,30,3,29,15,28,2,30,3,29,2,28,1,29,2,28,2,29,4,26,1,13,4,29,1,28,3,13,3,14,2,28,2,29,1,26,1,15,1,14,2,25,2,9,1,14,1,15,1,9,1,13,1,29,1,26,3,13,3,26,7,29,1,30,1,13,1,26,5,30,2,26,2,30,1,29,3,28,4,29,1,13,1,26,1,29,3,28,1,29,2,30,3,29,3,28,17,29,1,28,2,29,2,28,9,29,1,28,2,29,1,28,3,29,1,28,59,1,278,}, + {1,440,28,1,29,1,28,8,29,4,30,1,26,1,30,1,26,2,13,11,25,4,9,7,25,1,9,1,15,1,9,1,26,1,28,1,29,1,30,2,26,3,30,3,29,1,28,3,29,11,30,5,29,15,28,2,29,2,13,1,30,1,28,3,29,2,28,2,29,2,26,1,13,1,9,1,25,1,30,1,28,5,13,3,15,1,14,1,26,1,25,1,9,1,29,1,30,1,25,1,15,1,14,1,15,2,14,1,9,1,29,2,25,1,13,4,26,5,30,1,26,2,30,1,29,1,26,1,13,1,26,4,30,2,26,2,29,2,30,2,29,1,28,4,29,1,26,1,28,4,29,5,30,1,29,3,28,19,29,2,28,2,29,1,28,7,29,1,28,5,29,2,28,59,1,278,}, + {1,440,28,1,29,1,28,8,29,3,30,2,26,3,13,8,25,6,9,8,25,1,9,2,15,1,9,1,28,2,29,1,30,3,26,2,30,3,28,4,29,9,30,11,29,4,30,2,29,3,30,2,29,1,28,3,13,1,29,5,28,1,29,1,30,1,26,2,13,1,26,1,30,1,29,2,30,1,29,4,30,1,26,1,25,1,9,1,14,1,25,2,9,2,25,1,26,1,9,1,15,1,14,1,15,1,30,1,28,1,29,1,26,1,9,1,13,3,26,6,30,1,26,2,29,2,26,2,30,1,26,2,30,1,26,4,29,6,28,2,26,1,29,1,28,5,29,9,28,18,29,2,28,3,29,2,28,4,29,1,28,4,29,1,28,61,1,280,}, + {1,439,28,2,29,1,28,3,29,1,28,1,29,2,28,1,29,3,30,2,26,3,13,8,25,5,9,10,15,1,9,2,26,1,28,1,29,1,30,5,26,1,30,1,29,2,28,3,29,4,30,1,29,2,30,14,29,3,30,4,29,1,30,1,29,1,28,3,29,1,28,2,30,1,29,3,30,4,28,5,29,1,26,1,13,1,26,3,29,1,28,1,26,1,9,2,15,1,9,1,13,2,9,1,15,1,9,1,14,1,15,1,14,1,9,1,29,2,13,1,9,1,13,1,26,1,13,1,26,3,13,1,26,3,30,1,26,1,29,1,28,1,29,1,26,1,30,5,26,2,30,1,29,2,28,4,29,3,13,1,28,4,29,1,28,1,29,8,30,1,28,18,29,1,28,5,26,1,29,1,28,8,29,1,28,60,1,281,}, + {1,439,28,1,30,1,28,3,29,1,28,2,29,2,28,1,29,4,30,1,26,1,13,10,25,5,9,12,25,1,28,2,29,1,30,1,26,3,30,2,29,1,28,5,29,4,30,25,26,1,29,1,28,2,30,1,26,1,28,2,13,1,29,1,28,2,29,3,28,5,30,1,26,3,13,1,26,3,30,1,13,1,9,2,26,2,9,9,25,2,9,1,25,1,13,3,26,3,13,1,26,1,30,3,26,1,28,2,29,1,13,1,29,5,30,2,29,1,28,6,29,1,26,3,28,3,29,2,28,3,29,6,30,1,28,18,29,1,28,6,29,1,30,1,28,68,1,281,}, + {1,439,28,1,30,1,28,7,29,6,30,1,26,1,13,10,25,5,9,9,15,1,9,1,15,1,26,1,28,1,29,1,30,2,26,3,30,2,29,1,28,2,29,9,30,15,26,1,30,4,29,4,30,1,26,1,28,1,29,1,28,1,30,1,9,1,26,1,29,2,28,6,29,1,26,5,13,1,26,3,13,1,9,4,15,1,26,1,9,2,13,1,15,1,14,1,9,1,29,1,26,1,9,3,25,2,13,1,9,1,25,1,26,5,30,2,29,1,30,1,28,2,29,1,13,1,28,1,29,6,28,7,30,1,26,2,28,2,29,2,28,3,29,1,28,2,29,7,28,18,29,1,28,6,30,2,28,65,1,283,}, + {1,439,28,8,29,5,30,2,26,2,13,12,25,5,9,8,14,1,9,1,28,2,30,3,26,1,30,1,29,2,28,5,29,6,30,1,29,2,30,22,29,1,26,1,30,1,28,2,30,1,13,1,25,1,13,1,29,2,30,1,29,3,30,1,29,3,30,1,26,5,13,4,25,1,9,2,15,1,9,2,15,1,9,1,26,1,28,1,30,1,26,1,28,1,25,1,15,1,13,1,9,1,13,3,26,5,30,1,29,2,30,2,29,1,28,1,29,2,28,1,29,1,26,2,29,1,28,2,29,1,28,5,30,1,26,1,28,1,30,1,28,2,29,2,28,8,29,6,28,16,29,2,28,2,29,1,28,3,29,1,28,1,29,3,28,58,29,1,28,2,1,284,}, + {1,438,28,1,29,1,28,7,29,4,30,3,26,2,13,11,25,1,9,1,25,1,9,2,25,1,9,8,15,1,13,1,28,2,30,1,26,3,30,1,29,2,28,4,29,7,30,1,29,1,30,24,26,2,30,1,29,1,26,1,13,1,25,2,30,1,29,1,30,1,29,7,30,1,26,5,13,4,25,1,9,2,13,1,25,1,9,1,15,1,9,1,13,1,30,1,13,1,30,1,28,1,13,1,9,1,26,1,25,1,13,3,26,5,29,4,28,1,29,2,26,1,13,1,9,1,25,1,9,3,13,2,26,1,29,1,28,4,29,2,30,1,28,3,29,2,28,9,29,1,30,1,29,1,28,1,29,2,28,23,29,1,28,4,29,1,28,53,29,1,28,2,29,1,28,3,1,284,}, + {1,438,28,1,29,1,28,7,29,4,30,2,26,3,13,10,25,1,9,5,25,1,9,7,15,1,9,1,29,1,28,1,29,1,30,2,26,1,30,2,29,1,28,4,29,7,30,27,26,3,30,2,26,1,13,1,9,1,13,1,30,1,29,8,30,1,26,4,13,5,25,1,9,2,25,1,9,1,15,2,9,4,30,1,29,1,9,1,13,1,26,1,13,3,26,4,30,1,29,6,26,1,25,1,13,2,25,2,9,2,15,2,9,1,25,1,13,1,26,1,29,1,28,1,29,1,26,1,29,1,30,1,28,2,29,3,28,1,29,1,28,7,29,5,28,19,29,2,28,8,29,1,28,4,29,4,28,50,1,286,}, + {1,438,28,1,29,1,28,7,29,3,30,2,26,2,13,11,25,1,9,6,25,1,9,7,15,1,13,1,28,2,30,3,26,1,30,1,29,1,28,5,29,5,30,21,26,7,30,2,26,3,29,1,30,1,26,1,9,1,13,1,30,1,29,8,30,1,26,4,13,5,9,2,15,2,14,2,15,1,9,2,15,2,29,1,26,1,9,1,13,1,26,1,13,1,26,1,13,1,26,3,30,1,29,5,30,1,26,1,9,2,13,1,30,1,29,1,26,3,13,1,9,5,13,1,28,2,29,2,30,1,28,2,29,1,30,1,29,3,28,9,29,2,28,2,29,1,28,17,29,2,28,8,29,1,28,1,29,1,28,4,29,1,28,51,1,286,}, + {1,437,28,2,30,1,28,3,29,6,30,2,26,2,13,11,25,2,9,6,25,1,9,7,15,1,30,1,28,1,29,1,26,1,30,4,28,6,29,1,30,17,26,1,30,6,26,11,13,1,26,3,13,1,9,2,26,1,29,8,30,2,26,4,13,3,25,1,9,1,15,3,14,1,15,2,9,2,15,1,13,1,28,1,30,1,13,1,26,2,13,1,26,1,13,1,26,3,29,5,26,1,13,2,26,4,29,1,26,1,30,1,29,2,30,2,26,1,13,1,26,1,9,2,28,3,29,1,28,3,30,1,29,2,30,1,29,1,28,11,29,2,28,20,30,1,29,1,28,5,29,1,28,56,1,288,}, + {1,437,28,2,30,1,28,3,29,5,30,2,26,3,13,11,25,2,9,14,25,1,28,2,29,1,26,2,30,2,29,1,28,4,29,3,30,16,26,4,30,6,26,9,13,2,26,1,13,3,9,1,13,1,28,1,29,1,30,1,29,6,30,1,26,4,13,3,9,2,15,5,14,1,15,1,25,1,9,1,26,1,28,1,26,1,13,4,26,4,30,1,29,3,30,1,26,2,13,2,30,1,29,1,30,1,26,1,30,1,26,3,30,3,29,2,28,1,29,1,9,1,13,1,29,2,28,4,29,6,28,10,29,2,28,21,29,3,28,4,29,1,28,54,1,289,}, + {1,438,28,1,30,1,28,3,29,5,26,6,13,8,25,5,9,9,25,1,9,2,15,1,30,1,28,2,30,4,29,1,28,5,29,3,30,15,26,1,30,6,26,2,30,4,26,9,13,4,15,1,25,1,29,2,30,1,29,6,30,1,26,5,13,1,25,1,9,2,15,2,9,1,15,2,11,1,15,1,25,1,15,1,13,1,30,1,26,1,13,3,26,4,30,1,29,2,30,1,26,4,13,2,26,3,30,1,29,1,26,6,29,1,28,4,13,1,15,1,13,1,29,1,28,3,29,6,28,7,29,3,28,2,30,2,28,14,29,1,28,5,29,1,30,1,28,4,29,1,28,6,29,1,28,46,1,290,}, + {1,438,28,2,29,3,30,5,26,7,13,6,25,5,9,10,25,1,9,2,15,1,29,1,28,1,29,1,30,4,28,5,29,3,30,1,29,2,30,12,26,2,30,4,26,14,13,7,14,1,9,1,29,2,30,1,28,1,29,5,30,1,26,5,13,1,25,1,9,5,15,1,9,1,14,1,9,1,13,1,14,1,9,1,30,2,26,1,13,2,26,1,13,1,26,2,30,1,29,2,26,3,13,2,26,1,30,1,26,2,30,2,26,1,30,1,26,2,30,2,26,1,29,1,28,2,29,1,28,2,13,1,9,1,14,1,13,1,29,3,30,2,29,1,28,1,29,1,28,6,29,1,30,1,28,1,29,5,28,14,29,2,28,2,29,1,28,7,29,1,28,20,29,1,28,31,1,291,}, + {1,440,28,4,29,1,30,1,6,1,13,4,25,1,8,1,25,2,13,1,25,3,9,13,15,1,9,1,15,5,13,1,28,2,30,1,26,2,29,1,28,5,29,4,30,9,26,8,30,4,26,4,30,1,26,11,13,3,25,1,13,1,9,1,15,1,29,5,28,1,29,1,30,2,26,6,25,1,9,4,14,4,15,1,25,1,9,1,11,1,13,1,26,1,30,1,13,2,26,2,30,1,26,2,30,1,29,1,30,1,26,1,13,4,26,6,30,1,26,1,30,2,26,1,30,1,28,8,30,1,9,2,26,2,29,2,30,1,29,2,30,1,28,10,29,1,28,1,29,2,28,1,29,1,28,2,29,1,28,6,29,1,28,8,29,1,28,1,29,1,28,46,29,1,28,5,29,1,28,2,1,292,}, + {1,443,28,12,29,1,30,1,6,1,7,1,13,5,8,4,13,2,7,1,6,1,30,1,6,1,7,1,28,1,29,1,13,1,15,1,9,1,28,1,29,1,30,1,26,1,30,1,28,6,29,4,30,9,26,8,30,4,26,4,30,1,26,9,13,5,25,1,9,2,15,1,29,10,30,1,26,2,13,4,9,1,15,1,14,1,11,1,14,3,15,1,25,1,15,1,11,1,9,1,30,1,26,1,13,2,26,2,30,1,26,2,29,2,30,1,26,1,13,3,26,9,30,3,29,1,28,9,30,1,13,2,29,1,28,1,29,3,30,1,28,13,29,2,28,1,29,1,28,3,30,1,29,1,28,4,29,1,28,5,29,1,28,10,29,1,28,12,29,1,28,26,29,1,28,5,29,1,28,3,1,292,}, + {1,454,28,18,1,2,28,1,1,1,28,5,29,1,30,2,29,1,28,6,29,3,30,10,26,12,30,4,26,8,13,6,25,1,9,3,15,1,30,1,29,4,30,5,26,3,29,1,26,1,13,1,9,1,15,1,11,1,14,1,15,1,13,1,9,1,15,2,9,1,14,2,13,1,26,2,25,1,13,1,26,2,29,1,26,1,30,1,29,1,30,1,26,1,13,4,26,8,30,3,29,1,28,11,30,1,9,2,28,3,29,2,28,1,30,1,29,1,28,10,29,2,28,2,29,1,28,3,26,1,29,1,28,3,29,1,28,5,29,1,28,6,26,1,28,3,29,1,28,47,1,294,}, + {1,478,28,2,29,2,30,1,29,1,28,6,29,3,30,11,26,12,30,4,26,8,13,6,25,1,9,3,15,1,13,1,29,10,30,1,26,1,13,1,9,1,15,2,14,1,15,1,13,1,28,1,26,1,25,1,15,1,14,1,15,1,14,2,13,1,26,2,25,1,13,1,26,2,29,1,26,1,30,1,26,2,13,4,26,9,30,1,29,2,28,9,29,1,28,3,26,1,14,1,13,1,28,2,29,2,28,1,26,1,30,1,29,1,28,10,29,1,28,3,29,1,28,3,26,2,29,1,28,1,30,1,28,5,29,1,28,6,30,1,28,41,29,1,28,8,1,295,}, + {1,479,28,1,30,3,29,1,28,6,29,3,30,11,26,12,30,4,26,7,13,7,9,4,15,1,25,1,29,1,30,1,29,2,30,2,26,2,13,3,25,1,15,1,9,4,13,1,30,1,29,1,15,2,14,1,15,2,14,2,9,1,13,3,26,3,29,1,30,1,29,1,26,1,13,3,26,2,13,1,26,6,30,3,28,12,30,1,28,3,15,1,9,1,28,3,30,1,29,4,28,10,29,2,28,2,29,1,26,1,28,6,29,1,28,5,29,1,28,2,29,1,28,4,29,1,28,48,1,296,}, + {1,479,28,1,30,2,29,1,28,6,29,4,30,9,26,10,30,4,26,10,13,7,25,1,9,4,15,1,9,1,28,1,29,3,30,2,26,2,13,2,25,2,13,1,26,3,13,1,9,2,14,4,15,2,14,1,15,1,25,2,13,2,26,3,29,3,26,1,13,3,26,2,13,1,26,4,30,3,29,2,28,8,29,2,28,7,9,1,15,1,28,2,26,1,29,5,28,9,29,1,30,1,28,3,26,1,28,6,29,1,28,5,29,1,28,2,29,1,28,4,29,1,28,47,1,297,}, + {1,479,28,1,26,1,30,1,28,6,29,6,30,7,26,11,30,4,26,9,13,7,25,2,9,4,15,1,9,1,28,1,29,2,28,9,26,1,13,3,25,1,9,1,15,4,14,4,9,1,13,1,25,1,13,2,26,3,29,1,30,1,26,2,13,3,26,2,13,1,26,3,30,3,29,2,28,9,29,2,28,7,29,1,15,1,25,1,28,2,29,4,30,2,28,9,29,1,28,16,29,1,28,54,1,298,}, + {1,479,28,1,13,1,30,1,28,6,29,7,30,6,26,6,30,3,26,2,30,4,26,9,13,5,25,3,9,5,14,1,15,1,29,1,30,2,29,2,28,3,29,2,30,2,26,1,13,1,25,1,13,1,9,1,15,3,14,2,11,1,15,2,14,1,9,1,13,1,25,1,13,2,26,1,30,1,26,1,29,1,26,1,13,6,26,4,30,3,29,3,28,7,29,2,28,10,30,1,14,1,26,1,28,1,29,1,30,1,29,3,30,1,28,3,29,1,28,6,29,1,28,3,29,1,28,18,30,1,28,3,29,1,28,42,1,299,}, + {1,478,28,1,29,1,26,1,29,1,28,5,29,9,30,19,26,4,30,1,26,4,13,6,25,1,9,6,15,1,9,1,15,1,30,1,29,2,30,1,29,2,30,1,29,1,30,1,26,3,13,3,25,1,9,2,15,2,14,6,9,2,14,1,9,1,13,1,26,4,13,5,26,6,30,3,29,1,28,7,29,3,28,10,29,1,28,1,26,1,14,1,28,2,26,1,29,2,30,1,28,1,30,1,28,9,29,1,28,3,30,1,28,7,13,1,25,1,28,2,29,1,28,8,30,1,29,1,28,3,29,2,28,37,1,300,}, + {1,478,28,1,30,2,28,5,29,10,30,17,26,10,13,7,25,1,9,6,15,2,14,1,26,1,29,2,30,1,29,4,30,2,26,2,13,3,9,3,15,1,14,2,15,1,14,2,15,2,13,1,29,2,26,1,13,2,30,1,29,1,26,1,25,1,13,4,26,6,30,2,29,1,28,7,29,3,28,13,29,1,9,1,13,1,28,1,29,1,30,1,29,1,30,1,28,1,29,1,28,13,29,1,28,7,26,1,13,1,28,54,1,301,}, + {1,478,28,1,26,1,29,1,28,5,29,10,30,16,26,11,13,6,25,1,9,7,15,2,14,1,13,1,29,2,30,1,29,4,30,2,26,2,13,3,9,3,15,1,14,2,15,1,14,2,15,2,13,1,28,3,26,1,13,1,30,2,13,5,26,6,30,1,29,3,28,7,29,2,28,15,26,1,14,1,30,1,28,1,30,3,29,1,28,1,26,1,28,10,30,1,28,2,29,1,28,6,29,1,30,1,28,53,1,302,}, + {1,478,28,1,13,1,28,5,29,11,30,16,26,10,13,4,25,3,9,8,15,2,14,1,13,1,29,1,30,2,29,4,30,2,26,2,13,3,9,3,15,2,14,1,15,1,14,2,15,2,13,1,29,2,28,1,26,1,13,1,29,1,26,1,9,1,25,1,13,2,26,7,30,1,29,2,28,26,15,2,28,1,29,1,30,1,29,1,30,1,28,1,26,1,29,1,28,7,29,2,26,1,29,1,28,5,30,2,29,1,28,9,29,1,30,1,28,43,1,303,}, + {1,478,28,1,30,1,28,4,29,12,30,15,26,9,13,6,25,2,9,8,15,3,14,1,9,1,29,1,30,2,29,2,30,3,26,2,13,4,9,3,15,2,14,1,11,1,14,1,15,1,14,1,15,1,26,1,13,1,26,1,29,1,26,2,28,1,30,1,9,2,13,2,26,7,30,1,29,1,28,27,13,1,14,1,13,1,28,1,30,1,29,1,30,1,29,3,28,8,30,1,28,4,29,1,28,2,26,1,29,1,28,3,29,1,28,4,29,3,28,43,1,304,}, + {1,477,28,1,29,1,28,5,29,12,30,14,26,10,13,5,25,3,9,8,15,1,9,1,15,1,14,1,9,1,29,1,30,2,29,1,30,4,26,2,13,3,25,1,9,3,15,1,14,2,11,1,14,1,15,1,14,1,9,1,29,1,9,1,13,1,29,4,13,1,9,1,13,2,26,8,30,1,29,1,28,5,29,2,28,21,14,1,15,1,29,5,28,1,29,1,28,6,29,1,28,1,30,1,28,1,29,1,28,7,29,2,28,4,29,3,28,44,1,305,}, + {1,477,28,1,30,1,28,4,29,13,30,14,26,10,13,4,25,3,9,9,15,1,9,1,15,1,14,1,15,1,29,1,30,2,29,1,30,4,26,2,13,3,25,1,9,3,15,1,14,3,15,2,14,1,9,1,29,1,25,1,9,1,30,1,28,2,26,1,9,2,26,9,30,1,29,1,28,5,29,2,28,22,26,1,14,1,26,1,28,1,29,3,28,3,29,1,30,1,28,3,30,1,26,1,29,1,28,1,29,1,28,7,29,2,28,3,29,2,28,39,29,1,28,5,1,306,}, + {1,477,28,1,26,1,28,4,29,13,30,14,26,5,13,3,26,2,13,4,25,2,9,9,15,2,9,1,14,2,15,1,29,1,30,2,29,2,30,4,26,1,13,3,25,1,9,3,14,1,11,1,14,1,9,2,14,2,9,1,30,1,13,1,9,1,13,1,30,1,29,1,13,1,9,2,13,1,26,7,30,2,29,1,28,4,29,1,30,1,29,1,28,23,15,1,13,1,28,1,30,1,28,1,29,1,30,1,29,1,30,1,28,3,29,3,28,3,30,1,28,4,26,1,30,1,28,4,29,1,28,47,1,307,}, + {1,476,28,7,29,9,30,14,26,11,13,7,25,2,9,11,14,1,9,1,15,2,26,1,30,1,26,1,30,3,26,1,30,3,26,1,13,4,9,1,14,3,9,2,15,1,11,1,14,1,25,1,13,1,30,1,13,1,9,1,25,1,26,1,13,1,9,1,13,1,26,8,30,2,29,1,28,3,29,2,28,24,29,2,9,1,26,1,29,2,13,1,29,1,28,10,29,2,28,5,13,1,28,2,30,1,28,36,29,1,28,11,1,308,}, + {1,476,28,1,29,1,28,5,29,9,30,13,26,12,13,7,25,2,9,11,14,1,9,1,15,2,13,1,30,2,29,3,30,3,13,1,25,1,13,2,25,1,9,1,14,2,15,1,9,2,15,2,14,2,13,2,26,1,13,3,9,2,25,1,26,8,30,2,29,1,28,4,29,1,28,27,30,1,13,1,29,2,30,1,28,3,29,1,28,7,29,2,28,5,13,1,28,50,1,309,}, + {1,476,28,1,29,1,28,4,29,12,30,9,26,1,30,1,26,11,13,8,25,2,9,10,15,1,14,1,15,2,14,1,13,1,30,6,29,3,26,1,25,1,9,1,15,1,9,5,15,1,14,1,15,1,14,1,15,1,13,3,26,1,29,1,26,1,9,2,26,9,30,1,29,2,28,2,29,2,28,29,9,1,29,1,30,1,29,1,28,1,29,1,30,2,28,7,29,2,28,5,30,1,28,46,29,1,28,2,1,310,}, + {1,475,28,2,29,1,28,4,29,14,30,7,26,12,13,9,25,1,9,10,15,2,14,1,15,2,14,1,9,1,30,3,26,1,13,1,25,1,9,7,13,1,30,1,13,1,9,1,14,5,15,1,13,3,26,1,29,1,26,1,9,1,13,1,26,9,30,1,29,2,28,2,29,2,28,29,13,1,26,2,29,2,30,3,29,1,28,7,29,1,28,5,29,2,28,46,1,312,}, + {1,475,28,1,29,1,28,4,29,7,30,4,29,3,30,7,26,11,13,10,25,2,9,9,15,6,14,1,9,1,30,2,29,2,30,1,26,1,30,3,26,1,13,4,9,1,15,2,14,1,15,1,14,1,15,1,14,1,15,1,13,3,26,1,30,1,13,1,9,1,26,2,13,1,26,7,30,1,29,6,28,30,26,2,29,1,30,1,29,5,28,12,29,1,30,1,28,45,1,313,}, + {1,475,28,1,29,1,28,3,29,3,30,2,29,3,30,14,26,9,13,12,25,1,9,10,15,6,14,1,15,1,30,1,26,1,29,2,28,6,13,3,9,2,15,4,14,3,15,1,13,3,29,1,13,1,9,2,13,2,26,1,30,1,26,6,30,1,29,6,28,30,26,2,30,1,26,1,29,5,28,12,29,1,30,1,28,5,29,1,28,7,29,1,28,31,1,313,}, + {1,475,28,1,29,1,28,2,29,4,30,3,29,2,30,14,26,2,30,1,26,6,13,11,25,1,9,10,15,7,14,1,15,1,26,3,30,2,29,3,30,1,13,2,9,5,15,3,14,3,15,1,13,3,29,1,13,1,9,1,13,2,26,1,30,2,26,5,30,1,29,8,28,29,29,1,13,1,30,3,29,1,26,1,29,1,28,13,29,2,28,4,29,2,28,7,29,1,28,30,1,314,}, + {1,475,28,1,29,1,28,3,29,3,30,2,29,3,30,14,26,2,30,2,26,4,13,12,25,1,9,10,15,7,14,2,26,3,30,5,26,1,13,1,25,3,9,2,15,2,9,1,15,1,14,3,15,1,13,1,26,1,13,1,29,1,13,1,9,1,13,2,26,1,30,1,26,5,30,1,29,2,28,2,29,5,28,30,13,1,30,1,29,1,30,1,29,1,26,1,29,1,28,1,29,1,28,15,29,3,28,1,29,1,28,3,30,1,29,1,28,28,29,1,28,2,1,315,}, + {1,474,28,5,29,5,30,7,29,2,30,6,26,11,13,9,9,1,13,2,25,1,9,11,15,3,14,2,15,1,14,2,13,1,26,1,30,4,29,2,26,1,13,1,25,3,9,3,15,2,14,1,15,1,14,2,9,1,13,2,26,1,29,1,9,1,13,3,30,1,26,2,30,1,26,2,30,1,29,5,30,1,29,1,28,1,29,2,28,30,13,1,28,1,30,1,29,3,30,2,29,1,28,14,29,1,26,1,29,1,28,38,1,316,}, + {1,474,28,4,29,7,30,2,29,1,30,3,29,2,30,8,26,9,13,9,25,1,13,2,9,11,15,7,14,2,13,1,26,2,30,5,26,1,13,1,9,1,25,1,9,1,15,1,9,3,14,1,15,2,14,2,9,1,13,1,26,3,9,1,13,2,26,1,30,1,26,5,29,6,30,1,29,3,30,1,29,1,28,29,30,1,29,1,30,1,29,7,28,53,1,317,}, + {1,474,28,1,29,1,28,1,29,11,30,3,29,2,30,9,26,7,13,12,25,1,9,12,15,6,14,2,13,1,26,2,30,1,29,2,30,3,26,1,9,1,13,3,9,1,15,1,14,2,9,1,15,1,14,2,9,1,13,1,26,1,30,1,13,4,26,1,30,1,26,1,30,1,26,2,30,1,29,6,30,2,29,4,28,30,26,1,30,1,29,7,28,12,30,1,28,39,1,318,}, + {1,474,28,1,29,1,28,2,29,1,30,1,29,8,30,3,29,2,30,9,26,7,13,12,25,1,9,12,15,6,14,2,25,1,30,1,26,2,30,4,26,2,13,1,9,3,15,1,14,1,15,1,9,2,15,1,14,2,9,1,13,1,26,2,9,1,13,3,30,1,26,2,30,1,26,1,30,1,29,1,28,2,29,4,30,2,29,3,28,31,13,1,30,1,29,5,30,1,29,1,28,9,29,1,28,2,30,1,28,34,29,1,28,2,1,320,}, + {1,474,28,1,29,1,28,2,29,10,30,16,26,4,13,12,25,2,9,12,15,2,14,1,15,1,14,1,15,2,14,1,9,1,30,1,29,5,30,1,26,1,25,1,9,2,15,2,9,2,25,2,15,2,14,2,9,1,13,3,9,1,13,2,26,1,29,1,26,2,30,1,26,1,29,1,28,3,29,4,30,2,29,2,28,32,13,1,30,1,29,7,28,9,30,1,28,3,30,1,28,32,29,1,28,2,1,321,}, + {1,474,28,4,29,6,30,16,26,7,13,13,25,1,9,14,15,3,14,1,15,2,14,1,9,1,26,1,29,2,30,2,26,2,9,1,15,1,14,1,13,1,29,1,26,1,9,3,14,1,15,2,14,2,9,1,26,1,13,2,9,1,13,2,26,1,30,1,26,3,30,1,29,1,28,2,29,3,30,1,29,8,28,29,30,1,26,1,29,4,28,5,29,1,28,2,29,2,28,6,26,1,28,2,29,1,28,28,29,1,28,2,1,322,}, + {1,474,28,3,29,2,30,1,29,3,30,16,26,8,13,12,25,1,9,16,15,2,14,1,15,2,14,1,15,1,25,1,13,1,26,2,13,3,25,1,9,1,30,1,28,2,13,1,15,1,14,1,15,4,14,1,15,1,25,1,26,1,13,1,9,1,13,3,30,1,26,2,29,1,26,1,29,1,28,3,29,1,30,1,29,10,28,30,13,1,29,4,28,1,29,3,28,12,26,1,28,33,1,323,}, + {1,473,28,4,29,5,30,16,26,9,13,5,26,1,13,1,25,2,13,3,25,1,9,15,15,2,9,1,14,1,15,2,14,1,15,1,9,1,29,1,28,8,26,1,9,3,15,5,14,1,15,1,13,1,26,1,13,1,9,1,26,1,13,2,30,1,26,2,29,1,26,1,28,4,30,2,29,2,30,1,29,6,28,31,25,1,29,1,30,4,26,2,29,1,28,12,30,1,28,32,1,324,}, + {1,473,28,2,29,2,30,1,29,4,30,1,26,2,30,1,29,1,30,5,26,2,30,1,29,1,30,6,26,7,13,8,25,3,9,1,25,2,9,11,15,7,14,2,15,1,29,4,28,2,29,1,26,1,9,5,15,5,14,2,9,1,26,1,13,1,9,1,13,2,26,1,30,1,26,2,30,1,29,1,28,3,29,2,30,3,26,1,29,2,30,2,29,1,28,32,29,1,13,1,29,3,26,2,30,1,29,1,28,12,29,1,30,1,28,11,29,1,28,15,29,1,28,2,1,325,}, + {1,473,28,2,29,1,28,1,30,1,29,3,30,1,29,3,30,7,26,2,30,7,26,3,13,1,26,4,13,7,25,4,9,15,15,2,16,1,15,2,14,3,15,1,13,1,30,3,26,4,9,4,15,4,14,3,15,1,13,1,26,1,13,1,9,1,13,2,26,1,30,1,26,2,30,1,28,4,29,2,30,3,26,1,30,1,29,1,30,2,29,1,28,32,29,1,26,1,29,6,30,2,28,11,29,1,30,1,28,26,29,1,28,2,1,326,}, + {1,473,28,1,29,1,30,1,29,4,30,1,29,4,30,8,26,3,30,4,26,9,13,6,25,3,9,16,15,2,9,1,15,7,13,1,26,1,30,1,29,1,28,1,29,2,25,1,13,2,9,3,15,6,9,1,26,2,13,1,9,1,13,2,26,1,30,2,26,1,29,1,28,4,29,2,30,7,29,4,28,31,26,1,29,6,30,1,26,1,29,1,28,11,29,1,28,28,1,327,}, + {1,473,28,1,29,1,30,1,29,4,30,1,29,2,26,1,13,1,30,1,29,1,30,6,26,15,13,7,25,3,9,14,15,2,9,7,15,2,14,1,29,1,30,2,13,1,30,1,29,1,30,1,26,1,9,5,15,4,14,2,9,1,13,6,26,1,30,2,26,1,29,1,28,3,29,2,30,8,29,4,28,31,26,1,29,8,28,12,29,1,28,24,29,1,28,2,1,328,}, + {1,473,28,1,29,1,30,1,29,3,26,1,29,1,30,1,29,3,26,2,30,1,26,2,30,3,26,14,13,8,25,3,9,18,15,1,9,2,16,1,14,3,15,1,25,1,26,1,29,2,30,2,26,1,13,1,9,9,15,2,9,1,26,1,13,4,26,2,30,3,28,4,29,2,30,8,29,4,28,31,26,1,29,4,30,2,29,1,28,34,29,1,28,5,1,329,}, + {1,473,28,1,29,3,30,3,29,1,26,1,29,1,28,2,26,1,13,1,29,1,30,1,26,3,30,2,26,11,13,10,25,3,9,16,15,2,9,1,16,1,15,1,14,1,15,1,16,2,14,1,9,1,13,1,26,2,30,2,26,1,9,7,15,2,14,2,15,1,9,1,26,1,13,1,9,1,13,2,26,1,30,2,26,1,29,1,28,3,29,2,30,9,29,5,28,30,26,2,29,4,30,1,29,2,28,38,1,330,}, + {1,472,28,2,29,4,30,2,29,1,26,1,30,1,28,2,26,2,29,1,30,2,26,16,13,7,25,4,9,15,15,3,9,1,11,2,16,1,6,1,28,6,26,1,25,1,9,1,13,3,9,3,15,5,14,3,15,1,9,1,13,4,30,2,26,2,28,4,29,1,30,9,29,1,30,2,29,1,28,1,29,1,28,30,26,2,29,4,30,2,29,2,28,36,1,331,}, + {1,472,28,2,29,1,28,1,29,2,30,1,29,1,30,3,26,3,29,3,30,1,26,15,13,7,25,4,9,4,25,1,9,9,15,1,14,2,15,1,8,1,6,1,28,3,1,6,28,4,29,1,13,1,9,6,13,1,6,1,30,1,28,2,29,1,13,6,29,2,26,2,28,4,29,1,30,9,29,1,30,2,29,1,28,1,29,1,28,30,30,6,29,4,28,14,29,1,28,19,1,333,}, + {1,472,28,1,29,2,28,1,29,1,26,1,29,2,30,7,29,1,28,1,29,1,26,3,30,2,13,1,26,4,30,1,26,2,13,10,25,1,9,2,25,4,9,5,15,2,16,1,15,1,9,1,8,1,28,4,1,14,28,9,1,4,28,2,30,1,15,1,26,1,13,1,26,1,30,2,26,1,29,1,28,3,30,12,29,4,28,31,30,1,13,1,28,1,30,2,29,5,28,24,29,1,28,6,29,1,28,1,1,334,}, + {1,472,28,1,29,1,28,2,29,1,26,1,29,1,26,1,30,4,26,3,30,1,29,1,30,1,26,2,30,3,26,8,13,8,25,1,13,1,25,1,13,1,25,2,9,2,15,3,9,1,15,1,9,1,8,1,6,1,29,1,28,3,1,33,28,1,9,1,13,2,26,1,30,2,26,1,28,4,30,8,29,9,28,30,29,1,13,1,29,1,30,2,28,1,29,1,28,1,29,1,28,24,29,1,28,2,29,1,28,6,1,334,}, + {1,472,28,1,29,1,28,2,29,2,28,1,30,1,26,1,30,2,26,6,30,1,26,1,30,2,26,3,29,2,30,2,26,4,13,1,26,1,13,1,26,1,13,2,9,1,25,1,9,4,15,1,9,3,8,1,7,1,29,1,28,3,1,38,28,1,8,1,13,2,26,1,29,1,26,2,28,3,29,1,30,8,29,9,28,30,29,1,9,1,30,2,29,5,28,32,1,336,}, + {1,472,28,1,30,1,28,2,30,3,26,1,30,8,26,2,30,1,26,12,13,1,30,1,26,1,13,1,25,1,9,6,8,1,6,1,28,6,1,42,28,1,9,1,13,2,26,1,29,1,26,1,30,1,28,2,29,1,30,8,29,10,28,31,9,1,26,1,30,1,29,5,28,10,29,2,28,13,29,1,28,6,1,336,}, + {1,472,28,1,30,1,28,3,26,1,30,1,29,1,30,6,26,2,29,4,30,1,26,1,29,1,26,1,30,3,26,1,13,4,9,4,13,1,6,1,29,1,28,5,1,48,28,1,9,1,13,1,30,1,26,1,29,1,26,1,29,1,28,2,30,6,29,11,28,1,29,1,28,31,9,1,13,1,29,6,28,8,29,3,28,19,1,338,}, + {1,472,28,1,30,1,26,2,29,6,30,2,29,3,30,1,26,2,13,1,25,1,26,2,13,5,8,2,13,1,30,1,29,1,28,6,1,54,28,1,9,1,13,1,30,4,28,3,26,1,30,5,29,11,28,33,9,1,25,1,29,6,28,1,29,1,30,1,29,1,28,3,29,2,28,6,29,1,28,13,1,339,}, + {1,473,28,2,30,1,29,2,26,1,13,6,26,3,30,2,29,2,28,13,1,59,28,1,9,1,26,1,30,1,29,1,30,1,29,1,28,2,29,1,26,1,30,5,29,11,28,33,13,1,9,1,29,2,30,1,29,5,28,5,29,1,28,20,1,2,28,1,1,337,}, + {1,473,28,1,1,1,28,19,1,70,28,1,9,1,26,1,30,1,29,1,26,1,29,1,28,2,30,7,29,12,28,32,13,1,9,1,29,2,30,1,29,1,30,1,29,1,30,1,28,26,1,341,}, + {1,564,28,1,9,1,30,1,29,1,30,1,29,2,28,1,29,1,26,1,30,3,29,15,28,32,13,1,9,1,30,1,28,1,30,1,29,1,28,1,29,2,28,25,1,342,}, + {1,564,28,1,8,1,30,1,29,1,30,1,29,1,28,2,29,1,26,1,30,2,29,16,28,32,13,1,9,1,30,1,28,1,30,1,29,1,28,1,29,2,28,25,1,342,}, + {1,563,28,1,29,1,8,1,29,2,30,1,29,1,28,2,30,1,26,1,30,1,29,17,28,32,26,1,9,1,26,1,29,1,30,1,29,5,28,15,29,1,28,3,29,1,28,2,1,344,}, + {1,563,28,1,29,1,13,1,30,1,29,1,30,1,29,1,28,1,29,1,26,2,29,18,28,32,29,1,9,1,26,1,29,1,30,1,29,5,28,21,1,345,}, + {1,563,28,1,6,1,30,1,29,1,30,2,28,2,26,2,30,1,29,17,28,1,29,1,28,32,9,1,13,1,29,1,30,2,29,4,28,17,29,1,28,2,1,346,}, + {1,563,28,1,7,1,30,1,29,1,30,1,29,1,28,2,26,2,29,18,28,34,9,1,13,1,29,1,30,1,29,4,28,17,29,1,28,2,1,347,}, + {1,563,28,1,13,1,30,1,29,1,30,1,29,1,28,2,30,2,29,18,28,34,9,2,29,7,28,18,1,348,}, + {1,563,28,1,13,1,30,1,29,1,30,1,29,1,28,1,30,1,29,12,28,1,29,6,28,35,9,2,29,5,28,1,29,2,28,16,1,349,}, + {1,563,28,1,30,2,28,1,29,1,28,2,29,20,28,35,13,1,9,1,26,1,29,2,30,1,29,1,28,2,29,2,28,11,29,1,28,2,1,350,}, + {1,563,28,1,29,1,30,1,29,2,28,2,29,20,28,35,13,1,9,1,30,1,28,1,29,1,30,1,29,1,30,2,29,2,28,3,29,1,28,1,29,1,28,3,30,1,28,3,1,351,}, + {1,563,28,1,29,4,28,2,29,20,28,35,30,1,9,1,13,1,30,1,29,5,28,9,29,2,28,1,1,354,}, + {1,562,28,2,29,4,28,2,29,20,28,35,30,1,13,2,30,1,29,7,28,6,29,1,28,2,1,355,}, + {1,562,28,2,29,1,30,1,29,2,28,2,29,20,28,35,29,1,26,1,13,1,30,1,29,2,30,1,28,1,29,2,28,4,29,1,28,1,30,1,28,1,1,357,}, + {1,562,28,2,29,3,28,2,29,21,28,36,30,1,26,2,29,1,28,2,29,1,28,9,1,358,}, + {1,562,28,1,29,1,28,1,29,1,30,1,28,2,29,21,28,34,29,2,30,7,29,1,28,2,29,1,28,3,1,4,28,1,1,355,}, + {1,562,28,1,30,1,28,2,29,1,28,1,29,22,28,32,29,2,28,3,1,2,28,9,1,362,}, + {1,562,28,2,29,3,28,1,29,24,28,1,29,1,28,14,29,1,28,11,29,1,28,3,1,376,}, + {1,562,28,3,29,27,28,1,29,1,28,18,29,2,28,4,29,1,28,3,1,378,}, + {1,562,28,4,29,26,28,1,29,1,28,16,29,1,28,4,30,1,28,4,1,380,}, + {1,562,28,4,29,26,28,1,29,1,28,18,29,2,28,4,1,382,}, + {1,562,28,4,29,26,28,1,29,1,28,17,29,1,28,3,1,385,}, + {1,562,28,3,29,27,28,1,29,1,28,13,29,1,28,1,29,1,28,3,1,387,}, + {1,562,28,3,29,27,28,1,29,1,28,10,29,1,28,6,1,389,}, + {1,562,28,2,29,2,28,1,29,27,28,9,29,2,28,3,1,392,}, + {1,563,28,2,30,1,29,1,28,1,29,7,28,1,29,1,28,1,29,17,28,2,29,1,28,9,1,393,}, + {1,563,28,1,30,1,29,2,26,1,29,9,30,1,29,3,30,1,29,2,28,1,29,9,28,1,29,2,28,7,1,396,}, + {1,563,28,1,6,1,28,3,29,5,30,1,29,3,28,1,29,1,28,1,29,7,28,6,29,3,28,5,1,399,}, + {1,564,28,1,30,1,29,1,28,1,29,1,30,1,29,2,30,4,29,1,30,1,29,3,28,1,29,1,28,7,29,2,28,6,1,402,}, + {1,564,28,1,29,1,26,1,29,2,28,1,30,2,29,11,28,2,29,1,28,1,29,1,28,7,1,405,}, + {1,565,28,2,29,5,30,2,29,6,28,1,29,1,28,8,1,410,}, + {1,566,28,20,1,414,}, + {1,570,28,11,1,419,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino20.lua b/map_gen/data/presets/dino20.lua new file mode 100644 index 00000000..c122f994 --- /dev/null +++ b/map_gen/data/presets/dino20.lua @@ -0,0 +1,109 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 102, +width = 158, +data = { + {1,158,}, + {1,158,}, + {1,84,11,2,1,24,16,2,1,46,}, + {1,83,8,1,6,3,16,1,1,20,17,1,6,4,11,1,1,44,}, + {1,82,6,6,16,1,1,18,16,1,6,6,11,1,1,43,}, + {1,63,11,1,1,17,16,1,6,7,11,1,1,16,16,1,6,7,16,1,1,43,}, + {1,61,16,1,6,2,8,1,11,1,1,14,16,1,6,9,1,15,16,1,6,9,1,43,}, + {1,60,16,1,6,5,16,1,1,12,11,1,6,10,16,1,1,13,16,1,6,10,16,1,1,42,}, + {1,59,11,1,6,7,16,1,1,11,6,12,11,1,1,11,8,1,6,11,8,1,1,42,}, + {1,59,6,10,1,9,17,1,6,13,1,10,16,1,6,13,1,42,}, + {1,59,6,10,8,1,1,8,7,1,6,13,11,1,1,8,11,1,6,14,17,1,1,41,}, + {1,58,16,1,6,11,8,1,1,6,11,1,6,14,16,1,1,8,6,15,16,1,1,41,}, + {1,58,8,1,6,12,17,1,1,5,8,1,6,15,1,7,6,16,8,1,1,41,}, + {1,58,6,14,1,5,6,16,11,1,1,5,16,1,6,17,1,41,}, + {1,57,11,1,6,14,16,1,1,3,11,1,6,16,17,1,1,4,11,1,6,18,1,41,}, + {1,57,16,1,6,15,1,3,16,1,6,16,16,1,1,4,6,19,11,1,1,40,}, + {1,57,8,1,6,15,11,1,1,2,16,1,6,16,16,1,1,3,16,1,6,19,16,1,1,40,}, + {1,57,6,16,16,1,1,2,16,1,6,16,16,1,1,3,6,20,16,1,1,40,}, + {1,57,6,17,1,2,16,1,6,16,16,1,1,2,11,1,6,20,8,1,1,40,}, + {1,57,6,17,1,2,17,1,6,16,16,1,1,2,8,1,6,20,16,1,1,40,}, + {1,43,16,1,6,2,16,2,1,9,6,17,1,3,6,16,16,1,1,2,6,21,16,1,1,40,}, + {1,42,8,1,6,6,16,1,1,7,6,17,1,3,6,16,11,1,1,1,16,1,6,21,16,1,1,40,}, + {1,41,11,1,6,8,8,1,1,5,11,1,6,17,11,1,1,1,11,1,6,16,1,2,8,1,6,22,1,40,}, + {1,41,16,1,6,10,11,1,1,4,6,36,1,2,6,23,1,40,}, + {1,41,16,1,6,11,11,1,1,3,16,1,6,35,1,1,16,1,6,22,16,1,1,40,}, + {1,41,16,1,6,12,1,4,6,59,16,1,1,40,}, + {1,41,16,1,6,12,8,1,1,3,8,1,6,58,8,1,1,40,}, + {1,41,16,1,6,13,11,1,1,2,11,1,6,58,16,1,1,40,}, + {1,41,8,1,6,13,16,1,1,2,8,1,6,58,16,1,1,40,}, + {1,41,14,1,6,75,1,41,}, + {1,41,16,1,6,75,1,41,}, + {1,41,11,1,6,74,16,1,1,41,}, + {1,42,6,74,11,1,1,41,}, + {1,42,16,1,6,72,8,1,1,42,}, + {1,33,16,5,11,1,1,3,11,1,6,72,1,9,16,1,14,1,8,1,16,2,11,1,1,28,}, + {1,32,6,8,17,1,1,2,8,1,6,70,11,1,1,4,11,1,16,1,8,1,6,8,11,1,1,27,}, + {1,31,16,1,6,9,7,1,1,2,8,1,6,68,16,1,1,3,11,1,6,12,16,1,1,27,}, + {1,31,16,1,6,10,8,1,1,2,16,1,6,66,16,1,1,2,11,1,8,1,6,14,1,27,}, + {1,31,16,1,6,11,16,1,1,1,16,1,6,66,1,2,16,1,6,16,1,27,}, + {1,31,16,1,6,80,8,1,6,18,1,27,}, + {1,31,16,1,6,99,1,27,}, + {1,31,16,1,6,99,1,27,}, + {1,31,11,1,6,98,16,1,1,27,}, + {1,32,6,98,16,1,1,27,}, + {1,26,11,1,1,5,11,1,6,97,16,1,1,27,}, + {1,24,16,1,6,4,8,1,11,1,1,2,16,1,6,96,1,28,}, + {1,24,6,8,11,1,1,1,11,1,6,95,11,1,1,27,}, + {1,23,11,1,6,9,17,1,1,1,6,95,1,28,}, + {1,23,16,1,6,105,16,1,1,28,}, + {1,23,16,1,6,105,16,1,1,28,}, + {1,23,16,1,6,105,17,1,1,28,}, + {1,24,6,105,1,29,}, + {1,8,16,1,8,1,6,5,16,1,1,8,8,1,6,103,8,1,1,29,}, + {1,6,16,1,6,10,16,1,11,1,1,6,6,103,11,1,1,29,}, + {1,5,8,1,6,14,16,1,11,1,1,4,8,1,6,101,1,30,}, + {1,4,11,1,6,18,16,1,11,1,1,1,7,1,6,100,11,1,1,30,}, + {1,3,11,1,6,122,16,1,1,31,}, + {1,2,16,1,6,121,16,1,11,1,1,32,}, + {1,1,8,1,6,120,16,1,1,35,}, + {16,1,6,120,11,1,1,4,11,2,16,5,11,1,1,24,}, + {6,121,11,1,1,2,16,1,6,10,7,1,11,1,1,21,}, + {6,122,16,1,6,13,16,1,1,21,}, + {6,137,1,21,}, + {16,1,6,4,7,1,16,3,6,128,11,1,1,20,}, + {1,1,11,1,16,2,11,1,1,5,8,1,6,126,11,1,1,20,}, + {1,11,6,126,11,1,1,20,}, + {1,11,11,1,6,125,1,21,}, + {1,12,11,1,6,124,1,21,}, + {1,13,16,1,6,122,16,1,1,21,}, + {1,14,16,1,6,121,16,1,1,21,}, + {1,15,8,1,6,120,16,1,1,21,}, + {1,16,16,1,6,119,1,10,16,1,8,1,16,1,1,9,}, + {1,17,16,1,6,117,8,1,1,9,16,1,6,3,16,1,1,8,}, + {1,17,11,1,8,1,6,116,16,1,1,8,11,1,6,5,1,8,}, + {1,19,16,1,6,115,1,9,16,1,6,5,11,1,1,7,}, + {1,20,8,1,6,113,11,1,1,9,6,6,11,1,1,7,}, + {1,21,16,1,6,50,8,1,6,60,11,1,1,9,11,1,6,6,16,1,1,7,}, + {1,22,17,1,6,47,8,1,11,1,1,1,6,59,16,1,1,10,16,1,6,6,16,1,1,7,}, + {1,24,8,1,6,44,11,1,1,3,6,57,8,1,11,1,1,10,11,1,6,7,16,1,1,7,}, + {1,25,16,1,6,41,11,1,1,5,6,56,8,1,1,12,6,8,16,1,1,7,}, + {1,27,16,1,8,1,6,36,17,1,1,7,6,14,8,1,6,42,11,1,1,10,16,1,6,8,11,1,1,7,}, + {1,29,16,1,8,1,6,33,1,9,6,14,1,2,16,1,6,40,16,1,1,10,6,9,1,8,}, + {1,32,16,2,6,30,1,9,6,14,11,1,1,2,16,1,6,14,16,2,6,24,8,1,1,8,16,1,6,8,16,1,1,8,}, + {1,36,11,1,6,27,1,9,8,1,6,13,16,1,1,3,8,1,6,14,1,1,6,26,11,1,1,5,16,1,6,9,16,1,1,8,}, + {1,36,16,1,6,27,16,1,1,8,16,1,6,13,16,1,1,4,7,1,6,13,1,2,8,1,6,25,16,1,1,3,16,1,6,10,1,9,}, + {1,36,6,13,16,1,1,2,6,12,11,1,1,8,11,1,6,13,16,1,1,4,17,1,6,13,16,1,1,2,6,27,16,2,6,10,8,1,1,9,}, + {1,35,16,1,6,13,1,3,7,1,6,11,16,1,1,9,6,13,16,1,1,5,6,13,16,1,1,2,11,1,6,38,16,1,1,9,}, + {1,35,8,1,6,12,11,1,1,3,16,1,6,11,16,1,1,9,16,1,6,13,1,5,11,1,6,12,16,1,1,3,11,1,6,37,1,10,}, + {1,34,16,1,6,12,16,1,1,4,8,1,6,11,16,1,1,10,6,13,1,6,6,13,1,4,11,1,8,1,6,34,16,1,1,10,}, + {1,33,8,1,6,12,7,1,1,4,11,1,6,12,16,1,1,10,8,1,6,12,1,6,6,13,1,6,6,34,11,1,1,10,}, + {1,32,8,1,6,13,1,5,6,13,1,11,16,1,6,12,1,6,6,13,1,7,16,1,6,32,1,11,}, + {1,30,16,1,6,14,16,1,1,4,8,1,6,12,16,1,1,11,7,1,6,12,1,5,16,1,6,13,1,8,16,1,6,32,8,1,16,1,11,1,1,7,}, + {1,29,8,1,6,15,1,4,7,1,6,12,8,1,1,11,11,1,6,12,16,1,1,4,11,1,6,14,1,9,11,1,6,35,16,1,17,1,1,4,}, + {1,28,8,1,6,15,8,1,1,3,11,1,6,13,17,1,1,10,11,1,6,13,16,1,1,4,16,1,6,14,1,11,16,1,6,36,16,1,1,2,}, + {1,27,11,1,6,16,16,1,1,3,17,1,6,12,16,1,1,11,16,1,6,13,17,1,1,4,16,1,6,13,8,1,1,12,11,1,8,1,6,35,16,1,1,1,}, + {1,27,16,1,6,16,1,5,6,11,16,1,1,12,6,14,11,1,1,4,16,1,6,13,1,15,17,1,6,34,16,1,1,1,}, + {1,27,11,1,6,15,16,1,1,6,11,2,17,1,16,3,11,3,1,14,8,1,6,12,8,1,1,6,16,1,6,10,16,1,1,18,16,1,8,1,6,31,16,1,1,1,}, + {1,28,11,1,16,1,6,10,8,1,16,1,1,32,16,1,6,10,16,1,1,9,11,1,16,5,11,2,1,22,11,1,16,1,6,28,8,1,1,2,}, + {1,34,11,1,17,1,1,41,11,6,1,45,11,1,16,1,8,1,6,23,16,1,1,3,}, + {1,131,11,2,16,1,8,1,6,16,8,1,16,1,11,1,1,4,}, + {1,137,11,2,16,3,8,1,7,1,6,2,16,3,11,1,1,8,}, + {1,158,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino21.lua b/map_gen/data/presets/dino21.lua new file mode 100644 index 00000000..3bd3f1db --- /dev/null +++ b/map_gen/data/presets/dino21.lua @@ -0,0 +1,105 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 98, +width = 160, +data = { + {1,160,}, + {1,160,}, + {1,130,17,1,1,29,}, + {1,116,11,1,16,1,8,2,16,1,11,1,1,4,11,1,16,1,7,1,6,4,16,1,1,26,}, + {1,114,11,1,6,20,11,1,1,24,}, + {1,113,11,1,6,21,8,1,1,24,}, + {1,61,11,2,16,3,7,1,8,3,7,1,16,3,11,2,1,33,11,3,16,1,6,23,1,24,}, + {1,55,11,1,16,3,6,18,16,2,11,1,1,26,11,1,6,29,1,24,}, + {1,51,11,1,16,1,8,1,6,27,16,1,11,1,1,22,11,1,6,29,8,1,1,24,}, + {1,48,16,2,6,34,17,1,1,20,6,30,16,1,1,24,}, + {1,45,17,1,8,1,6,39,16,1,1,17,16,1,6,30,1,25,}, + {1,43,16,1,6,44,16,1,1,14,16,1,6,30,8,1,1,25,}, + {1,41,16,1,6,47,8,1,11,1,1,8,11,1,16,2,6,32,11,1,1,25,}, + {1,39,17,1,6,51,8,1,1,6,6,35,8,1,1,26,}, + {1,38,16,1,6,54,16,1,1,3,6,36,17,1,1,26,}, + {1,36,11,1,8,1,6,56,16,1,1,1,16,1,6,36,1,27,}, + {1,35,11,1,6,59,8,2,6,35,16,1,1,27,}, + {1,34,11,1,6,97,11,1,1,27,}, + {1,33,11,1,6,98,1,28,}, + {1,32,11,1,6,98,16,1,1,28,}, + {1,32,6,99,16,1,1,28,}, + {1,31,16,1,6,99,1,29,}, + {1,30,11,1,6,99,8,1,1,29,}, + {1,30,8,1,6,99,16,1,1,29,}, + {1,29,11,1,6,100,16,1,1,29,}, + {1,29,8,1,6,100,11,1,1,29,}, + {1,28,11,1,6,101,1,30,}, + {1,28,8,1,6,100,7,1,1,30,}, + {1,27,11,1,6,101,8,1,1,30,}, + {1,27,16,1,6,101,16,1,1,30,}, + {1,27,6,102,16,1,1,30,}, + {1,26,11,1,6,102,16,1,1,30,}, + {1,26,16,1,6,102,11,1,1,30,}, + {1,26,6,103,11,1,1,30,}, + {1,25,11,1,6,103,11,1,1,30,}, + {1,25,16,1,6,103,16,1,1,30,}, + {1,25,16,1,6,103,16,1,1,30,}, + {1,25,8,1,6,103,16,1,1,30,}, + {1,25,6,105,1,30,}, + {1,24,11,1,6,105,16,1,7,1,6,3,16,2,11,1,1,13,11,1,16,1,11,2,1,5,}, + {1,24,11,1,6,115,16,3,11,1,1,1,11,2,1,1,16,2,6,5,16,1,1,4,}, + {1,24,16,1,6,131,1,4,}, + {1,24,16,1,6,131,1,4,}, + {1,24,6,131,16,1,1,4,}, + {1,24,6,131,1,5,}, + {1,24,6,130,11,1,1,5,}, + {1,23,11,1,6,128,8,1,11,1,1,6,}, + {1,23,11,1,6,126,8,1,17,1,1,8,}, + {1,23,16,1,6,119,8,1,6,1,16,3,11,1,1,11,}, + {1,23,16,1,6,113,17,1,11,1,1,21,}, + {1,23,16,1,6,112,16,1,1,23,}, + {1,23,8,1,6,112,8,1,1,20,17,1,11,1,1,1,}, + {1,23,6,115,8,1,11,1,16,1,1,12,11,1,16,1,8,1,6,3,17,1,}, + {1,23,6,120,8,2,6,14,16,1,}, + {1,22,11,1,6,137,}, + {1,22,17,1,6,136,16,1,}, + {1,22,16,1,6,136,11,1,}, + {1,22,8,1,6,135,16,1,1,1,}, + {1,22,6,136,1,2,}, + {1,21,11,1,6,135,8,1,1,2,}, + {1,21,16,1,6,135,16,1,1,2,}, + {1,21,8,1,6,135,16,1,1,2,}, + {1,21,6,136,11,1,1,2,}, + {1,20,16,1,6,136,11,1,1,2,}, + {1,20,6,137,11,1,1,2,}, + {1,19,17,1,6,137,1,3,}, + {1,19,6,138,1,3,}, + {1,18,17,1,6,137,8,1,1,3,}, + {1,18,6,138,16,1,1,3,}, + {1,17,16,1,6,138,17,1,1,3,}, + {1,16,11,1,6,139,11,1,1,3,}, + {1,16,8,1,6,98,16,2,6,39,1,4,}, + {1,15,6,99,16,1,1,2,11,1,6,37,16,1,1,4,}, + {1,14,16,1,6,99,8,1,1,4,6,36,17,1,1,4,}, + {1,13,8,1,6,82,8,1,6,19,1,4,16,1,8,1,6,33,1,5,}, + {1,11,11,1,8,1,6,51,16,1,1,1,11,1,16,3,6,24,16,1,1,2,6,19,8,1,1,5,11,1,16,1,6,30,16,1,1,5,}, + {1,9,11,1,8,1,6,53,1,8,11,2,6,18,16,1,1,4,11,1,6,19,16,1,1,8,16,3,6,16,7,1,6,7,7,1,1,6,}, + {1,7,11,1,16,1,6,55,1,11,6,16,8,1,1,6,7,1,6,18,7,1,1,15,11,2,1,4,8,1,6,5,11,1,6,7,11,1,1,6,}, + {1,5,11,1,7,1,6,22,16,1,6,34,1,11,8,1,6,15,14,1,1,7,6,19,11,1,1,21,6,4,7,1,1,1,6,6,11,1,1,7,}, + {1,3,11,1,8,1,6,23,16,2,6,34,1,11,16,1,6,15,11,1,1,7,16,1,6,18,16,1,1,21,11,1,16,3,1,2,6,5,11,1,1,8,}, + {1,2,16,1,6,24,16,1,1,1,6,16,16,1,1,2,16,1,6,15,1,11,11,1,6,15,16,1,1,7,11,1,6,18,8,1,1,27,16,1,6,2,16,1,11,1,1,9,}, + {1,1,16,1,6,24,16,1,1,2,6,15,8,1,1,3,16,1,6,15,1,11,11,1,6,15,16,1,1,8,6,19,1,41,}, + {1,1,6,24,11,1,1,2,11,1,6,15,11,1,1,3,16,1,6,15,1,12,6,16,1,8,16,1,6,18,11,1,1,40,}, + {1,1,6,22,16,1,1,4,11,1,6,15,1,4,16,1,6,15,1,12,6,15,8,1,1,8,16,1,6,18,11,1,1,40,}, + {1,1,16,1,6,19,16,1,1,6,16,1,6,14,8,1,1,4,16,1,6,14,8,1,1,12,6,16,11,1,1,8,6,18,11,1,1,40,}, + {1,2,8,1,6,15,8,1,17,1,1,8,16,1,6,15,1,4,16,1,6,15,1,12,6,16,11,1,1,8,6,18,11,1,1,40,}, + {1,3,11,1,16,2,6,8,16,2,11,1,1,11,16,1,6,15,11,1,1,3,16,1,6,15,16,1,1,11,6,16,16,1,1,8,16,1,6,17,11,1,1,40,}, + {1,9,11,1,1,18,11,1,6,15,16,1,1,3,16,1,6,15,16,1,1,11,16,1,6,15,8,1,1,8,16,1,6,17,11,1,1,40,}, + {1,28,11,1,6,15,16,1,1,3,16,1,6,16,11,1,1,10,16,1,6,16,1,8,11,1,6,17,16,1,1,40,}, + {1,29,6,15,16,1,1,3,16,1,6,16,8,1,1,10,16,1,6,16,1,9,16,1,6,16,1,41,}, + {1,29,16,1,6,14,11,1,1,3,11,1,6,17,16,1,1,10,6,16,1,10,11,1,8,1,6,13,16,1,1,41,}, + {1,30,11,1,16,1,6,9,16,2,11,1,1,5,6,17,8,1,1,10,6,16,1,12,11,1,16,2,6,5,16,3,17,1,1,43,}, + {1,35,11,3,1,11,7,1,6,16,8,1,1,10,16,1,6,14,16,1,1,67,}, + {1,50,6,17,1,11,8,1,6,13,11,1,1,67,}, + {1,50,11,1,6,15,16,1,1,12,11,1,16,2,6,7,16,2,11,1,1,68,}, + {1,51,11,1,16,1,6,12,16,1,1,94,}, + {1,54,11,2,16,7,11,1,1,96,}, + {1,160,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino22.lua b/map_gen/data/presets/dino22.lua new file mode 100644 index 00000000..02a6fd26 --- /dev/null +++ b/map_gen/data/presets/dino22.lua @@ -0,0 +1,152 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 145, +width = 150, +data = { + {1,150,}, + {1,150,}, + {1,111,11,3,1,4,11,1,16,1,8,1,16,2,8,1,16,1,11,1,1,24,}, + {1,110,8,1,6,16,17,1,1,22,}, + {1,109,7,1,6,19,1,21,}, + {1,108,11,1,6,21,11,1,1,19,}, + {1,107,16,1,6,23,11,1,1,18,}, + {1,105,16,1,6,26,11,1,1,17,}, + {1,102,11,1,16,1,8,1,6,28,16,1,1,16,}, + {1,101,8,1,6,32,11,1,1,15,}, + {1,100,16,1,6,33,8,1,1,15,}, + {1,99,11,1,6,35,16,1,1,14,}, + {1,99,11,1,6,36,11,1,1,13,}, + {1,99,16,1,6,36,8,1,1,13,}, + {1,99,16,1,6,37,11,1,1,12,}, + {1,99,6,38,8,1,1,12,}, + {1,99,8,1,6,38,11,1,1,11,}, + {1,99,6,40,1,11,}, + {1,99,6,40,16,1,1,10,}, + {1,99,8,1,6,40,1,10,}, + {1,99,6,41,17,1,1,9,}, + {1,99,16,1,6,40,16,1,1,9,}, + {1,99,11,1,6,41,1,9,}, + {1,100,8,1,6,40,11,1,1,8,}, + {1,101,8,1,6,39,16,1,1,8,}, + {1,102,16,1,6,38,16,1,1,8,}, + {1,104,11,1,16,3,6,33,16,1,1,8,}, + {1,109,11,1,17,1,8,1,6,30,1,8,}, + {1,112,11,1,6,29,1,8,}, + {1,114,8,1,6,27,1,8,}, + {1,114,16,1,6,27,11,1,1,7,}, + {1,114,11,1,6,27,11,1,1,7,}, + {1,114,16,1,6,27,11,1,1,7,}, + {1,114,16,1,6,27,11,1,1,7,}, + {1,114,6,28,11,1,1,7,}, + {1,113,11,1,6,28,11,1,1,7,}, + {1,113,6,29,11,1,1,7,}, + {1,95,11,2,17,1,16,5,11,1,1,5,11,1,16,2,6,30,1,8,}, + {1,89,11,1,16,3,6,49,1,8,}, + {1,84,11,1,16,2,6,55,1,8,}, + {1,81,11,1,16,1,6,58,16,1,1,8,}, + {1,78,11,1,16,1,6,61,16,1,1,8,}, + {1,75,11,1,16,1,6,64,16,1,1,8,}, + {1,73,16,1,8,1,6,66,11,1,1,8,}, + {1,71,16,1,6,69,1,9,}, + {1,69,11,1,16,1,6,69,16,1,1,9,}, + {1,68,16,1,6,71,16,1,1,9,}, + {1,66,16,1,6,73,1,10,}, + {1,65,16,1,6,74,1,10,}, + {1,63,11,1,6,75,16,1,1,10,}, + {1,62,16,1,6,76,11,1,1,10,}, + {1,61,16,1,6,76,8,1,1,11,}, + {1,60,8,1,6,77,16,1,1,11,}, + {1,59,16,1,6,78,1,12,}, + {1,57,11,1,6,79,8,1,1,12,}, + {1,56,11,1,6,80,11,1,1,12,}, + {1,55,16,1,6,81,1,13,}, + {1,54,8,1,6,81,16,1,1,13,}, + {1,53,6,83,11,1,1,13,}, + {1,51,11,1,6,84,1,14,}, + {1,50,16,1,6,85,1,14,}, + {1,49,16,1,6,86,1,14,}, + {1,48,8,1,6,87,11,1,1,13,}, + {1,46,16,1,6,89,11,1,1,13,}, + {1,45,8,1,6,90,16,1,1,13,}, + {1,43,11,1,16,1,6,92,1,13,}, + {1,42,16,1,8,1,6,93,16,1,1,12,}, + {1,41,16,1,6,96,8,1,11,1,1,10,}, + {1,39,11,1,6,100,16,1,1,9,}, + {1,38,16,1,6,102,8,1,1,8,}, + {1,36,11,1,6,106,16,1,1,6,}, + {1,34,11,1,8,1,6,108,8,1,11,1,1,4,}, + {1,33,16,1,6,112,17,1,1,3,}, + {1,30,11,1,16,1,6,115,11,1,1,2,}, + {1,28,11,1,8,1,6,118,11,1,1,1,}, + {1,26,11,1,16,1,6,101,8,1,11,1,1,2,11,1,16,1,6,13,7,1,1,1,}, + {1,24,11,1,16,1,6,104,11,1,1,5,16,1,6,12,16,1,}, + {1,22,11,1,8,1,6,106,8,1,1,6,16,1,6,12,}, + {1,21,16,1,6,109,8,1,1,6,17,1,6,11,}, + {1,19,16,1,6,113,11,1,1,5,16,1,6,10,}, + {1,17,11,1,6,98,16,1,7,2,8,1,6,14,1,6,11,1,6,9,}, + {1,16,8,1,6,95,16,1,11,1,1,7,11,1,8,1,6,11,16,1,1,6,11,1,6,7,16,1,}, + {1,14,16,1,6,95,16,1,1,12,8,1,6,11,11,1,1,6,11,1,8,1,6,4,7,1,1,1,}, + {1,13,8,1,6,94,16,1,1,15,16,1,6,10,8,1,1,8,16,2,6,1,16,1,1,2,}, + {1,11,11,1,6,95,16,1,1,17,8,1,6,10,1,14,}, + {1,10,16,1,6,96,1,19,8,1,6,9,1,14,}, + {1,9,16,1,6,97,1,20,8,1,6,8,1,14,}, + {1,8,6,99,1,20,11,1,6,7,16,1,1,14,}, + {1,7,8,1,6,99,16,1,1,20,11,1,6,5,8,1,1,15,}, + {1,6,8,1,6,100,16,1,1,21,11,1,6,3,11,1,1,16,}, + {1,5,8,1,6,48,16,1,8,2,16,1,8,1,6,49,1,23,11,1,1,18,}, + {1,4,16,1,6,45,16,1,11,1,1,8,11,1,17,1,16,1,6,45,1,42,}, + {1,3,16,1,6,43,16,1,11,1,1,15,17,1,6,43,1,42,}, + {1,2,11,1,6,41,16,1,11,1,1,20,17,1,6,41,1,42,}, + {1,2,16,1,6,38,16,1,17,1,1,25,16,1,6,39,11,1,1,41,}, + {1,1,11,1,6,36,16,1,17,1,1,29,16,1,6,38,1,42,}, + {1,1,8,1,6,33,16,1,11,1,1,33,11,1,6,36,8,1,1,42,}, + {1,1,6,30,16,2,11,1,1,38,7,1,6,34,17,1,1,42,}, + {11,1,6,25,8,1,16,2,11,1,1,43,6,33,8,1,1,43,}, + {16,1,6,20,8,1,16,2,11,1,1,49,6,32,16,1,1,43,}, + {16,1,6,17,16,1,11,1,1,55,8,1,6,30,1,44,}, + {16,1,6,15,16,1,1,58,11,1,6,29,16,1,1,44,}, + {11,1,6,14,16,1,1,60,16,1,6,27,7,1,1,45,}, + {1,1,6,14,11,1,1,61,7,1,6,26,11,1,1,45,}, + {1,1,8,1,6,13,11,1,1,61,17,1,6,25,16,1,1,46,}, + {1,1,11,1,6,13,16,1,1,62,6,25,1,47,}, + {1,2,16,1,6,13,1,62,6,24,1,48,}, + {1,2,11,1,6,13,8,1,1,61,16,1,6,22,16,1,1,48,}, + {1,4,6,13,11,1,1,60,16,1,6,22,1,49,}, + {1,4,11,1,6,13,1,60,11,1,6,21,1,50,}, + {1,5,17,1,6,12,16,1,1,59,17,1,6,20,16,1,1,50,}, + {1,6,11,1,6,12,11,1,1,58,16,1,6,20,1,51,}, + {1,8,16,1,6,10,16,1,1,58,16,1,6,19,11,1,1,51,}, + {1,10,16,1,6,8,1,59,11,1,6,18,16,1,1,52,}, + {1,12,11,1,16,5,1,60,11,1,6,17,8,1,1,53,}, + {1,78,8,1,6,17,17,1,1,53,}, + {1,78,16,1,6,16,8,1,1,54,}, + {1,78,6,17,11,1,1,54,}, + {1,78,6,16,16,1,1,55,}, + {1,77,11,1,6,16,11,1,1,55,}, + {1,77,8,1,6,15,7,1,1,56,}, + {1,76,16,1,6,16,11,1,1,56,}, + {1,76,6,17,1,57,}, + {1,75,6,17,8,1,1,57,}, + {1,74,17,1,6,17,16,1,1,57,}, + {1,74,6,18,16,1,1,57,}, + {1,73,11,1,6,18,11,1,1,57,}, + {1,73,17,1,6,18,16,1,1,57,}, + {1,73,11,1,6,18,8,1,1,57,}, + {1,74,6,19,8,1,1,56,}, + {1,74,11,1,6,19,16,1,1,55,}, + {1,75,11,1,6,19,16,1,1,54,}, + {1,77,8,1,6,18,8,1,17,1,11,7,1,45,}, + {1,78,16,1,6,27,16,1,1,43,}, + {1,80,16,1,6,27,1,42,}, + {1,81,11,1,8,1,6,25,11,1,1,41,}, + {1,83,16,1,6,24,14,1,1,41,}, + {1,84,8,1,6,23,16,1,1,41,}, + {1,84,11,1,6,23,16,1,1,41,}, + {1,85,16,1,6,22,16,1,1,41,}, + {1,86,8,1,6,21,11,1,1,41,}, + {1,87,16,1,6,19,16,1,1,42,}, + {1,88,16,1,6,17,16,1,1,43,}, + {1,89,16,1,6,12,16,1,11,2,1,45,}, + {1,91,16,1,8,4,16,3,6,2,16,1,1,48,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino4.lua b/map_gen/data/presets/dino4.lua new file mode 100644 index 00000000..ae823c88 --- /dev/null +++ b/map_gen/data/presets/dino4.lua @@ -0,0 +1,722 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 715, +width = 1679, +data = { + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,640,11,4,17,1,1,1034,}, + {1,638,12,1,17,7,11,1,17,1,1,1031,}, + {1,637,16,1,12,11,15,1,12,1,1,1028,}, + {1,637,11,1,12,3,15,1,12,13,1,1024,}, + {1,637,12,1,15,1,12,19,1,1021,}, + {1,638,12,9,16,14,1,1018,}, + {1,638,15,1,12,1,16,2,12,5,16,4,9,11,16,3,1,1014,}, + {1,638,15,1,16,1,9,2,16,1,12,5,16,5,9,16,1,1010,}, + {1,638,12,1,16,1,9,3,16,14,9,16,1,1006,}, + {1,639,12,1,9,11,16,9,9,13,16,1,9,2,1,1003,}, + {1,639,15,1,9,8,16,7,12,8,16,1,9,8,16,1,12,2,16,4,1,1000,}, + {1,640,12,1,9,10,16,4,12,8,16,3,9,4,16,1,12,8,16,1,12,1,16,1,1,997,}, + {1,640,15,1,9,8,16,4,12,9,16,3,9,7,16,1,12,7,9,2,16,3,9,1,1,993,}, + {1,640,12,1,16,1,9,5,16,9,12,7,16,1,9,10,16,1,12,4,16,1,9,9,1,990,}, + {1,641,16,1,9,6,16,10,12,7,16,6,9,1,16,4,12,2,16,1,9,13,1,987,}, + {1,641,16,1,9,6,16,4,12,2,16,3,12,4,16,3,9,6,16,2,9,24,1,983,}, + {1,641,9,9,16,12,9,36,1,981,}, + {1,642,9,10,16,7,9,42,1,978,}, + {1,643,9,61,1,975,}, + {1,643,9,47,25,6,9,11,1,972,}, + {1,644,9,3,10,4,9,35,25,3,27,1,26,3,29,1,30,1,26,1,27,1,25,1,9,11,1,970,}, + {1,645,16,1,9,1,10,4,9,32,25,3,27,1,26,3,29,3,28,1,29,2,26,1,27,1,10,1,9,13,1,967,}, + {1,646,9,3,25,2,10,3,9,27,25,2,26,2,29,12,26,2,27,1,25,1,10,1,9,12,1,965,}, + {1,646,9,3,25,4,10,1,9,18,10,1,25,4,27,2,26,4,29,2,28,4,29,5,28,3,29,3,26,2,25,3,10,1,9,11,1,962,}, + {1,647,9,2,25,2,10,2,9,14,10,1,25,2,26,3,29,23,28,5,29,2,26,2,25,2,10,1,9,11,1,960,}, + {1,647,16,1,9,1,25,1,9,2,10,2,25,5,10,2,9,3,10,1,27,1,26,2,29,14,26,1,29,15,28,8,29,1,26,1,27,1,25,1,9,12,1,957,}, + {1,648,9,4,25,2,27,1,26,1,30,1,29,1,30,4,26,2,30,1,29,6,26,5,29,19,28,16,26,1,25,1,10,1,9,10,1,955,}, + {1,648,9,4,25,1,30,1,29,1,28,2,29,1,26,18,29,18,28,20,29,1,26,2,25,1,10,1,9,8,1,952,}, + {1,649,15,1,9,2,26,1,29,3,30,1,26,4,13,2,27,2,26,11,29,1,26,5,29,17,28,19,29,1,26,2,25,1,10,1,9,6,1,950,}, + {1,650,16,1,10,1,26,1,29,1,30,1,26,11,27,2,26,16,29,21,28,2,29,5,28,8,29,2,30,1,26,1,27,1,25,1,9,5,1,948,}, + {1,651,9,1,26,1,29,1,26,2,30,2,26,29,29,27,28,5,29,7,26,2,25,1,9,4,1,946,}, + {1,651,9,1,26,3,30,1,13,2,26,5,30,2,26,2,25,2,27,1,26,19,29,26,28,1,29,13,26,1,27,1,25,1,9,3,1,944,}, + {1,652,25,2,13,1,26,1,30,3,26,8,13,1,25,1,27,1,26,20,29,11,26,3,29,24,30,2,26,3,27,1,10,1,9,3,1,941,}, + {1,653,9,1,26,1,30,1,29,1,30,2,26,8,13,1,25,2,27,2,26,18,29,10,26,7,29,16,26,13,25,1,9,2,1,940,}, + {1,653,9,1,26,1,29,2,30,2,26,10,27,1,25,2,27,1,26,17,29,5,28,3,29,3,26,6,29,11,30,1,26,19,27,1,25,1,9,2,1,937,}, + {1,654,26,1,29,2,30,7,26,1,30,2,26,22,29,6,28,2,29,4,26,5,29,11,26,24,27,1,10,1,9,1,1,935,}, + {1,654,26,2,30,2,26,1,30,10,26,18,29,8,28,2,29,19,26,27,25,1,10,1,9,1,1,933,}, + {1,655,13,1,26,3,30,6,29,1,30,1,29,1,30,1,26,17,29,30,26,27,25,3,9,2,1,931,}, + {1,656,26,3,30,7,29,3,30,2,26,14,29,31,26,27,27,1,25,3,10,1,9,2,1,929,}, + {1,657,13,2,26,2,30,4,29,5,30,1,26,9,29,8,28,2,29,27,26,21,30,1,29,3,26,2,25,2,10,1,9,5,1,927,}, + {1,657,9,1,13,2,26,2,30,3,29,1,30,2,29,3,30,2,26,7,29,13,26,2,29,22,26,22,30,6,26,2,25,2,9,5,1,925,}, + {1,658,9,1,13,2,26,1,30,5,29,2,30,4,26,9,29,12,26,1,29,14,26,4,29,2,26,35,25,1,10,1,9,4,1,923,}, + {1,659,9,1,13,2,26,1,30,6,29,2,30,3,26,14,29,4,26,9,29,1,26,29,29,2,26,20,25,1,9,3,16,1,1,921,}, + {1,660,9,1,13,2,26,2,30,4,29,2,30,4,26,15,29,1,26,65,25,1,9,2,16,1,1,919,}, + {1,661,9,1,13,2,26,2,30,2,29,2,30,6,26,3,25,4,26,75,25,1,9,2,16,1,1,917,}, + {1,662,25,1,13,2,26,2,30,1,29,1,30,6,26,3,13,1,25,4,26,77,27,1,25,1,9,1,1,916,}, + {1,663,8,1,13,2,26,1,30,8,26,4,13,1,25,3,27,1,26,8,29,2,26,5,29,4,26,57,29,1,30,1,26,1,25,1,9,1,1,914,}, + {1,663,9,1,8,1,13,1,26,1,30,1,26,2,30,6,26,4,13,1,25,4,26,6,29,16,26,56,29,1,30,1,26,1,9,1,1,912,}, + {1,664,9,1,13,2,26,1,13,1,26,2,30,3,29,2,30,1,26,4,25,5,26,5,29,10,26,1,29,5,26,45,29,7,30,1,26,5,29,2,26,1,10,1,1,910,}, + {1,665,8,1,13,3,26,3,30,2,29,2,30,2,26,3,13,1,25,4,26,5,29,7,26,55,29,10,26,7,9,1,1,908,}, + {1,666,8,1,13,4,26,2,30,5,26,4,13,1,25,3,26,5,29,6,26,56,29,18,26,1,9,1,1,906,}, + {1,666,9,1,13,4,26,3,30,5,26,14,29,3,26,57,29,20,26,1,9,1,1,904,}, + {1,667,8,2,13,3,26,3,30,3,29,1,30,2,26,33,27,1,26,16,27,1,26,22,29,6,26,1,29,14,26,1,9,1,1,902,}, + {1,668,9,1,25,1,13,2,26,4,30,2,29,3,30,2,26,39,25,1,27,1,26,6,25,4,26,28,29,13,28,1,29,1,27,1,9,1,1,900,}, + {1,669,25,1,13,3,26,5,30,1,29,4,30,1,26,46,25,4,26,11,25,1,26,18,29,12,28,2,29,1,25,1,1,899,}, + {1,669,9,1,25,1,13,2,26,6,30,1,29,4,30,1,26,3,13,1,25,2,27,1,26,20,27,2,26,16,25,4,26,5,25,4,26,25,29,10,28,2,26,1,10,1,1,897,}, + {1,670,10,1,25,1,13,1,26,3,13,1,26,3,30,2,29,2,30,1,26,3,13,1,25,4,26,17,27,3,26,17,25,5,26,5,25,3,26,27,29,6,28,5,29,1,26,1,9,1,1,895,}, + {1,671,25,1,13,1,26,2,13,2,26,5,30,2,26,4,13,1,25,5,26,16,27,1,26,12,25,1,27,1,26,5,27,1,25,4,26,3,25,6,26,27,29,7,28,5,29,1,25,1,9,1,1,893,}, + {1,672,13,1,26,2,13,2,26,14,25,4,26,28,27,2,26,3,27,1,25,2,26,7,25,6,26,28,29,10,28,2,29,1,26,1,10,1,9,1,1,891,}, + {1,672,10,1,26,2,13,1,26,16,25,4,26,11,27,3,26,12,25,2,26,4,25,5,26,1,25,8,26,31,29,14,27,1,9,2,1,889,}, + {1,673,25,1,26,1,25,1,26,12,29,1,26,6,25,2,26,11,25,2,26,12,27,2,26,4,25,3,27,1,25,2,26,1,25,7,26,34,29,12,26,1,25,1,9,2,1,887,}, + {1,674,26,1,25,1,26,12,29,2,30,1,26,17,27,1,26,12,27,2,26,4,27,2,26,5,25,8,26,39,29,9,26,1,10,1,9,1,16,1,1,885,}, + {1,674,10,1,13,2,26,4,13,1,26,8,30,1,29,2,30,1,26,26,25,4,27,3,25,2,26,5,25,9,26,45,29,4,26,1,9,2,1,884,}, + {1,675,16,1,11,2,15,1,17,1,9,1,25,1,13,1,26,8,29,2,30,1,26,21,27,1,26,3,25,5,26,1,25,5,26,2,25,9,26,49,29,3,26,1,25,1,9,2,1,882,}, + {1,669,12,1,11,3,17,3,11,3,15,1,9,3,13,2,26,7,30,2,29,2,26,18,27,2,26,3,25,3,26,3,25,17,26,15,25,2,26,33,29,2,26,2,25,1,9,2,1,880,}, + {1,670,12,1,17,1,11,4,15,4,9,4,25,1,26,8,30,1,26,20,27,1,25,1,26,3,25,3,26,2,27,1,25,17,26,16,25,2,26,32,30,1,29,3,26,2,9,2,16,1,1,878,}, + {1,674,11,1,15,3,16,1,15,2,9,4,25,4,26,12,25,2,26,11,27,2,26,2,27,1,25,3,26,2,25,12,9,3,25,4,26,52,29,3,30,1,27,1,9,1,16,1,1,877,}, + {1,675,15,3,16,1,9,1,16,1,15,2,9,5,25,3,26,11,25,1,26,11,27,1,26,3,27,1,25,2,26,3,25,12,9,3,25,6,26,23,25,4,26,24,30,1,29,2,26,2,25,1,9,1,16,1,1,875,}, + {1,676,17,1,15,2,16,2,9,9,25,1,26,5,29,3,26,19,27,1,25,1,27,1,26,2,27,1,25,12,9,1,25,8,26,6,25,2,27,3,26,10,25,11,26,20,29,1,30,1,26,3,27,1,10,1,9,1,12,1,1,873,}, + {1,678,11,1,15,3,9,8,25,1,26,10,25,3,26,14,25,4,26,2,27,1,25,20,26,3,25,11,26,6,25,12,26,20,29,2,30,1,26,3,27,1,25,1,9,2,1,872,}, + {1,672,12,1,15,1,17,4,12,1,15,1,17,1,15,2,9,5,25,2,9,2,25,1,26,26,25,4,27,1,26,6,25,14,26,2,25,15,26,3,25,14,26,22,29,2,26,2,25,1,10,1,9,2,16,1,1,870,}, + {1,674,12,1,17,1,11,1,15,1,9,2,15,2,11,1,15,2,25,1,9,5,25,2,9,3,25,1,26,22,27,1,25,2,27,1,26,2,27,2,26,6,25,9,27,1,26,3,25,33,26,10,29,4,26,11,25,2,9,4,16,1,1,868,}, + {1,677,9,1,25,2,9,2,15,2,11,1,15,1,9,2,25,1,26,5,25,3,26,4,29,3,26,16,25,2,27,1,26,2,27,1,25,2,26,3,25,11,26,5,25,11,26,2,27,1,25,7,26,1,25,8,26,16,27,1,25,3,27,2,25,6,9,5,10,1,9,1,16,1,1,866,}, + {1,678,9,6,15,2,17,1,9,1,26,1,29,2,26,10,29,4,26,6,29,2,26,7,25,2,27,1,26,2,27,1,25,3,26,3,27,1,25,7,27,1,26,10,25,5,27,1,26,4,27,1,25,5,26,3,25,2,26,10,29,4,26,2,25,2,9,24,12,1,1,864,}, + {1,680,12,1,9,8,25,1,26,1,29,1,26,10,29,3,26,6,29,2,26,7,27,2,26,4,25,2,27,1,26,4,25,6,27,1,26,10,25,5,27,1,26,6,27,1,25,4,27,2,26,7,29,4,26,3,29,3,26,1,25,1,9,3,16,1,9,2,16,2,9,13,16,1,15,1,16,1,9,4,1,863,}, + {1,682,12,1,15,1,9,3,25,2,26,13,29,3,26,7,29,2,26,4,29,1,26,14,27,1,25,5,26,10,27,1,25,3,27,1,26,4,27,1,25,1,26,11,29,2,26,2,27,1,25,4,9,5,10,1,25,1,26,1,25,2,9,8,25,3,9,11,16,1,9,5,1,861,}, + {1,684,12,1,15,1,9,1,26,2,29,2,26,5,29,1,26,6,29,3,26,3,25,1,26,3,29,2,26,18,27,5,26,11,27,1,25,2,26,12,29,5,26,2,27,1,25,1,10,1,9,7,16,1,15,1,9,6,25,1,26,9,30,1,29,2,26,4,25,3,9,11,1,859,}, + {1,687,25,1,29,2,28,1,29,1,26,3,29,4,26,4,29,4,26,2,25,3,26,2,29,2,26,17,27,1,26,13,27,2,25,2,27,1,26,10,29,6,30,1,27,1,10,1,9,8,16,4,9,5,25,3,26,2,29,1,26,18,25,1,9,8,16,1,1,857,}, + {1,687,9,1,26,1,29,1,28,1,29,1,28,1,26,2,29,6,26,3,29,4,26,2,25,3,26,35,27,1,25,1,27,2,26,9,29,2,28,2,29,2,30,1,26,1,10,1,9,9,16,2,9,5,25,2,26,11,25,3,26,11,29,1,26,1,25,1,9,7,16,1,1,855,}, + {1,688,9,1,30,1,29,2,28,1,29,2,26,1,29,5,26,3,29,4,26,3,25,2,26,20,27,1,26,14,25,3,26,9,29,2,28,2,29,3,26,1,10,1,9,15,25,2,26,3,29,1,26,28,25,1,9,6,1,854,}, + {1,689,9,1,26,1,29,2,28,1,29,8,26,3,29,4,26,24,27,1,26,9,27,1,26,3,27,1,25,3,27,1,26,7,29,1,28,3,29,1,26,1,27,1,25,1,9,9,10,1,25,4,27,1,26,39,27,1,25,1,10,1,9,3,1,852,}, + {1,689,9,1,10,1,26,1,29,3,28,1,29,1,26,1,29,5,26,4,29,3,26,3,25,2,26,2,29,1,26,29,25,2,27,2,26,8,29,1,28,2,29,1,27,1,25,1,9,6,10,1,25,3,26,2,29,3,28,1,29,5,26,39,25,1,9,3,1,850,}, + {1,690,9,1,25,1,26,1,29,2,28,1,29,2,26,1,29,5,26,3,29,3,26,3,25,2,26,32,25,2,27,1,26,8,29,1,28,3,26,1,10,1,9,4,25,2,26,2,29,11,26,44,10,1,9,2,16,1,1,848,}, + {1,691,10,1,13,1,30,1,29,1,28,2,29,8,26,2,29,4,26,21,27,1,26,9,27,3,26,1,27,1,25,1,27,1,26,8,29,1,28,2,29,2,27,1,9,4,25,1,26,1,29,1,28,5,29,3,26,51,25,1,9,2,1,847,}, + {1,691,9,2,26,1,30,1,29,1,28,2,29,2,26,1,29,5,26,3,29,3,26,3,27,1,25,1,26,7,29,1,26,6,27,1,25,1,27,1,26,8,25,1,27,1,26,2,27,1,25,1,27,1,26,7,29,2,28,2,29,1,26,1,25,1,9,4,27,1,29,1,28,4,29,3,26,8,29,2,26,45,25,1,9,2,1,845,}, + {1,692,9,2,26,1,30,1,29,1,28,1,29,2,30,1,29,6,26,3,29,2,26,3,25,2,26,14,27,3,26,7,25,2,27,1,26,2,27,1,25,1,27,1,26,7,29,1,28,3,26,1,27,1,25,1,9,3,10,1,26,1,29,1,28,1,29,6,26,14,29,1,26,42,10,1,9,1,16,1,1,843,}, + {1,693,16,1,25,1,26,1,29,1,28,1,29,9,26,24,27,4,26,5,27,1,25,2,26,3,27,1,25,1,26,8,29,1,28,2,29,1,27,1,9,4,10,1,25,1,26,1,28,4,29,5,26,12,29,1,26,44,27,1,10,1,9,1,16,1,1,841,}, + {1,694,9,1,13,1,26,1,29,11,26,10,25,2,27,1,26,9,27,1,25,3,26,5,27,1,25,3,26,3,27,2,26,6,29,2,28,3,29,1,25,1,9,3,10,2,25,1,26,1,28,4,29,5,26,56,30,2,26,1,25,1,9,2,1,840,}, + {1,695,9,1,26,2,29,11,26,9,25,4,26,7,27,2,25,3,26,5,25,3,27,1,26,3,27,1,26,7,29,1,28,3,29,1,27,1,9,4,10,1,25,1,26,1,29,1,28,3,29,6,26,54,30,6,26,1,25,1,9,1,16,1,1,838,}, + {1,696,10,1,26,1,30,1,29,11,26,10,25,2,27,1,26,6,27,4,25,1,27,1,26,4,27,1,25,2,26,12,29,1,28,3,29,1,27,1,9,4,25,1,26,1,29,1,28,4,29,8,26,2,29,4,26,45,30,4,26,1,30,2,29,1,30,1,26,1,25,1,9,1,16,1,1,836,}, + {1,697,25,1,26,2,29,10,26,11,25,2,26,11,27,1,26,4,27,2,25,1,26,11,29,2,28,3,29,1,26,1,9,2,10,1,25,1,26,1,29,1,28,3,29,7,26,6,29,2,26,47,30,6,29,4,26,1,25,1,9,1,1,835,}, + {1,698,26,2,29,4,26,2,30,1,29,2,26,1,29,1,26,10,27,1,26,19,27,1,26,10,29,1,28,5,29,1,27,1,9,2,10,1,25,1,29,1,28,3,29,3,26,1,29,3,26,5,29,4,26,50,30,3,29,6,26,1,25,1,9,1,1,833,}, + {1,698,10,1,26,1,30,1,29,3,26,45,29,2,26,1,29,1,28,4,29,1,26,1,25,1,9,1,10,1,25,1,26,1,29,1,28,3,29,1,26,2,29,5,26,20,27,2,26,38,29,9,26,1,25,1,9,1,1,831,}, + {1,699,13,1,26,1,30,1,29,2,30,1,26,5,29,2,26,37,29,4,28,2,29,1,26,1,27,1,25,1,9,2,25,1,26,1,29,1,28,4,26,2,29,9,26,58,29,10,26,1,10,1,16,1,1,829,}, + {1,700,13,1,26,1,30,1,29,1,30,1,26,4,29,3,26,37,29,3,28,3,29,1,26,1,25,2,10,2,26,1,29,2,28,3,29,1,26,3,29,10,26,57,29,11,26,1,10,1,1,828,}, + {1,700,10,1,13,1,30,1,29,1,30,2,26,3,29,4,26,36,29,2,28,4,29,1,26,1,25,1,10,1,9,1,25,1,26,1,29,1,28,3,29,1,26,4,29,4,26,3,29,4,26,11,25,1,27,1,26,44,29,12,26,1,9,1,1,826,}, + {1,701,25,1,26,1,30,3,26,3,30,1,29,6,26,5,29,2,26,26,29,2,28,4,29,1,27,1,25,1,9,2,25,1,26,1,29,4,26,13,29,1,26,13,27,2,26,44,29,7,28,1,29,5,30,1,26,1,9,1,1,824,}, + {1,702,25,1,26,1,30,2,26,2,30,1,29,8,26,4,29,3,26,5,25,1,26,19,29,2,28,3,29,1,26,1,25,1,10,1,9,2,25,1,26,1,29,4,26,27,27,1,26,46,29,14,26,1,25,1,9,1,1,822,}, + {1,702,9,1,13,1,26,1,30,1,26,2,30,1,29,11,26,2,29,4,26,24,29,1,28,3,29,1,26,1,25,1,10,1,9,2,25,1,26,2,29,3,26,27,27,1,26,29,29,4,26,2,29,1,26,1,29,3,26,3,29,19,26,1,25,1,9,1,1,820,}, + {1,703,8,1,13,1,26,3,30,1,29,5,28,1,29,5,26,1,29,7,26,21,29,1,28,3,29,2,26,1,25,1,10,1,9,2,25,1,27,1,26,1,29,3,26,56,29,36,26,1,10,1,1,819,}, + {1,704,13,1,26,3,29,5,28,3,29,3,26,2,29,4,28,2,29,2,26,20,29,1,28,4,29,1,26,1,25,1,10,1,9,3,10,1,26,1,29,1,28,1,29,2,26,57,29,15,26,2,29,12,28,3,29,3,30,1,26,1,10,1,1,817,}, + {1,704,9,1,13,1,26,2,29,6,28,3,29,13,26,19,29,1,28,3,29,1,30,1,26,1,25,1,9,4,10,1,26,1,29,1,28,1,29,2,26,61,29,27,28,4,29,2,26,1,25,1,9,1,1,815,}, + {1,705,10,1,13,1,26,1,29,6,28,5,29,9,28,1,29,1,26,19,29,1,28,2,29,2,26,1,27,1,25,1,10,1,9,3,25,1,26,1,29,1,28,1,29,2,26,53,29,2,26,7,29,25,28,7,29,2,26,1,25,1,9,1,1,813,}, + {1,706,8,1,26,1,30,1,29,5,28,5,29,3,26,2,29,7,26,18,29,1,28,2,29,1,26,1,27,1,25,2,9,3,10,1,25,1,30,1,28,1,29,2,26,54,29,34,28,9,29,2,26,1,10,1,1,812,}, + {1,707,13,1,26,1,30,1,29,4,28,5,29,4,26,1,29,8,26,15,29,3,28,1,29,1,26,1,25,3,10,1,9,2,25,1,27,1,26,1,29,1,28,1,29,1,26,59,29,26,28,14,29,3,26,1,10,1,1,810,}, + {1,707,9,1,26,2,30,1,29,3,28,7,29,8,28,2,29,3,26,11,29,5,26,2,25,4,10,3,27,1,26,1,29,3,26,64,29,21,28,16,29,4,26,1,10,1,1,808,}, + {1,708,8,1,26,1,30,1,29,2,28,8,29,4,26,1,29,4,28,3,29,2,26,9,29,2,28,2,29,1,26,1,25,7,27,1,26,1,29,3,26,18,27,2,26,22,27,1,26,26,29,16,28,18,29,6,26,1,9,1,1,806,}, + {1,709,25,1,26,1,29,3,28,4,29,1,28,4,29,7,28,3,29,2,26,9,29,2,28,2,30,1,27,1,25,6,26,1,29,1,28,1,29,1,26,21,27,1,26,22,27,1,25,1,27,1,26,26,29,13,28,20,29,3,28,1,29,3,27,1,9,1,1,804,}, + {1,710,26,1,30,1,29,2,28,2,29,4,28,4,29,10,28,1,29,2,26,5,29,2,28,1,29,1,30,1,27,1,25,1,10,4,25,1,27,1,30,1,29,3,26,21,27,2,26,22,25,7,26,24,29,12,28,18,29,4,28,4,29,1,30,1,25,1,1,803,}, + {1,710,9,1,26,1,29,7,28,6,29,7,28,4,29,5,28,3,29,1,26,1,25,1,9,4,10,1,25,1,26,1,29,1,28,2,29,2,26,10,29,1,26,10,27,2,26,22,25,8,26,25,29,11,28,17,29,5,28,4,29,2,26,1,25,1,1,801,}, + {1,711,25,1,26,1,29,6,28,7,29,6,28,9,29,1,30,1,27,1,10,1,9,6,27,1,26,1,29,1,28,3,29,1,30,1,26,21,27,2,26,22,27,1,25,7,26,27,29,9,28,3,29,1,28,8,29,2,28,4,29,6,28,4,29,2,26,1,10,1,1,799,}, + {1,712,26,1,30,1,29,6,28,6,29,4,28,9,30,1,7,1,10,1,9,8,25,1,26,1,29,7,26,20,25,3,26,24,25,6,26,28,29,9,28,9,29,7,28,2,29,12,30,1,26,1,9,1,1,797,}, + {1,712,9,1,26,1,30,1,29,5,28,7,29,2,28,7,29,1,30,1,26,1,25,1,10,1,9,8,10,1,27,1,29,3,26,2,29,3,26,21,27,2,26,12,27,1,25,3,26,8,25,5,27,1,26,30,29,10,28,6,29,8,28,3,29,12,26,2,1,796,}, + {1,713,8,1,26,1,29,6,28,9,30,1,26,2,13,1,25,6,10,1,9,6,10,1,25,1,26,7,30,1,29,1,26,36,27,1,25,4,26,7,25,4,26,34,29,39,26,1,25,1,1,794,}, + {1,714,25,1,29,8,28,7,10,1,9,3,10,2,8,1,25,3,10,1,9,3,10,1,7,1,6,2,30,2,26,7,29,1,26,28,27,1,26,3,27,1,25,1,27,1,26,4,27,2,26,4,27,3,25,3,26,35,29,14,28,2,29,1,28,3,29,21,26,1,25,1,1,792,}, + {1,715,26,2,30,1,29,5,28,6,30,1,9,5,10,4,25,3,7,1,6,1,29,3,30,1,26,1,27,1,26,36,25,1,26,8,25,1,26,6,25,5,26,37,29,8,28,3,29,4,28,6,29,22,26,1,10,1,1,790,}, + {1,715,10,1,26,2,29,4,28,2,29,1,28,4,13,1,10,1,9,5,10,2,8,1,25,1,7,1,26,1,29,1,28,3,29,1,26,1,27,2,26,20,29,1,26,14,27,2,26,8,25,2,26,4,27,1,25,2,26,1,27,1,25,2,26,36,29,9,28,12,29,23,30,1,26,1,9,1,1,788,}, + {1,716,10,1,26,1,30,1,29,3,28,1,29,2,28,3,29,1,25,1,10,1,9,5,10,1,25,1,7,1,26,1,30,1,29,1,28,3,29,1,30,1,26,23,29,1,26,14,27,1,26,15,25,2,27,1,26,40,29,9,28,12,29,25,26,1,27,1,9,1,1,786,}, + {1,717,27,1,26,1,29,4,28,1,29,1,28,3,26,1,25,2,10,1,9,4,10,1,7,1,29,2,28,5,29,2,26,3,27,2,26,18,29,1,26,23,27,1,26,8,25,1,26,29,29,1,26,10,29,6,28,3,29,4,28,7,29,7,26,3,29,18,26,1,25,1,1,785,}, + {1,718,27,1,30,1,29,5,28,2,29,1,13,1,25,2,8,1,10,2,9,2,10,1,26,1,28,7,29,3,26,2,27,1,26,81,29,2,26,11,29,5,28,2,29,6,28,3,29,9,26,5,29,19,26,1,10,1,1,783,}, + {1,718,9,1,26,2,29,4,28,2,26,1,10,2,8,4,10,1,9,2,30,1,28,2,29,4,28,2,29,3,26,8,29,4,26,40,25,1,26,30,29,2,26,12,29,9,28,2,29,14,26,3,29,8,28,2,29,12,26,1,9,1,1,781,}, + {1,719,25,1,26,1,30,1,29,3,28,2,13,1,10,1,9,1,10,2,8,2,10,1,9,2,29,1,28,1,29,1,30,1,29,3,28,5,29,2,30,1,26,5,29,8,26,12,27,3,26,52,29,2,26,7,29,2,26,3,29,9,28,3,29,23,28,1,29,11,26,3,29,1,30,1,27,1,9,1,1,779,}, + {1,720,27,1,26,1,30,1,29,1,28,2,29,1,8,1,9,3,10,2,8,1,10,1,9,1,8,1,29,1,28,1,29,1,26,1,29,4,28,5,29,2,30,1,26,4,29,7,26,9,27,1,26,9,27,1,26,8,27,1,26,36,29,5,26,6,29,4,26,1,29,10,28,2,29,23,28,4,29,8,26,8,25,1,9,1,1,777,}, + {1,721,26,2,29,1,28,2,13,1,9,6,10,2,9,1,13,1,29,1,28,1,29,1,26,1,30,1,29,4,28,5,29,2,30,1,26,3,29,6,26,10,27,1,26,49,29,2,26,3,29,6,26,4,29,17,28,1,29,10,26,1,29,14,28,4,29,6,26,11,25,1,9,1,1,775,}, + {1,721,9,1,27,1,26,1,29,2,8,1,9,7,8,1,25,1,13,1,28,2,30,1,26,3,30,1,29,3,28,5,29,2,30,1,26,1,30,1,29,7,26,8,27,1,25,1,26,49,29,2,26,2,29,6,26,6,29,23,26,4,29,19,28,2,29,5,26,11,25,1,10,1,9,1,1,773,}, + {1,722,10,1,26,1,30,1,29,1,10,1,9,6,10,1,13,1,30,1,29,1,28,2,29,1,26,3,30,2,29,2,28,6,29,6,30,1,29,4,26,8,25,2,27,1,26,7,27,1,25,1,26,37,29,12,26,6,29,25,26,4,29,26,26,11,25,1,9,2,1,771,}, + {1,723,25,1,26,1,29,1,25,1,9,6,10,1,30,1,28,3,29,2,30,2,26,3,29,4,28,7,29,3,30,1,26,3,29,2,26,7,25,3,27,1,26,5,27,3,26,37,29,12,26,8,29,13,28,1,29,41,26,11,10,1,9,1,1,770,}, + {1,724,13,1,26,1,13,1,9,6,25,1,29,7,30,1,26,3,29,5,28,7,29,2,26,5,29,3,26,5,27,2,25,1,27,1,26,6,27,1,26,30,29,2,26,5,29,12,26,5,29,2,26,3,29,17,28,2,29,18,26,9,29,5,26,2,29,10,26,4,9,2,1,768,}, + {1,724,10,1,13,1,26,1,9,6,6,1,29,7,30,2,26,3,29,5,28,6,29,2,30,1,26,6,29,2,26,4,27,2,26,8,27,1,26,30,29,2,26,4,29,9,28,1,29,4,26,3,29,10,28,5,29,30,26,16,29,9,30,1,26,3,25,1,9,2,1,766,}, + {1,725,10,1,25,1,10,1,9,4,8,1,29,2,30,2,29,6,30,1,26,2,29,5,28,7,29,2,30,1,26,6,29,1,26,50,29,10,28,1,29,19,28,4,29,12,28,2,29,18,26,14,29,10,26,4,25,1,9,2,1,764,}, + {1,726,25,1,10,1,9,4,6,1,29,1,30,3,29,7,30,2,29,3,30,1,29,1,28,2,29,9,26,35,25,1,27,1,26,14,29,1,26,4,29,30,28,3,29,13,28,4,29,7,26,6,29,5,26,12,29,11,30,1,26,4,25,1,9,2,1,762,}, + {1,726,9,1,25,1,9,3,8,1,30,1,26,3,30,1,29,27,26,33,27,1,25,1,27,1,26,18,29,13,26,2,29,5,26,3,29,7,28,3,29,11,28,1,29,13,26,21,29,3,30,1,26,1,30,1,29,7,30,2,26,4,9,2,1,761,}, + {1,727,9,4,13,1,26,4,30,1,29,10,30,2,29,10,28,4,29,3,26,5,29,1,26,46,29,12,26,4,29,2,26,4,29,8,28,3,29,11,28,1,29,14,26,24,30,1,26,3,29,4,30,2,29,1,30,2,26,4,9,2,1,759,}, + {1,728,10,1,9,2,25,1,26,1,13,1,26,3,30,1,29,4,28,2,29,6,30,1,29,2,30,3,29,4,28,5,29,2,26,3,29,4,26,38,29,2,26,4,29,12,26,10,29,2,26,1,29,4,28,4,29,8,28,5,29,13,26,31,29,2,26,3,30,3,26,3,25,1,9,2,1,757,}, + {1,729,9,2,8,1,13,1,26,4,30,1,29,4,28,3,29,3,30,1,26,8,29,5,28,3,29,2,30,1,26,3,29,3,26,39,29,1,26,4,29,11,26,11,29,3,26,3,29,7,28,1,29,5,28,5,29,13,26,33,29,1,26,5,30,1,26,4,25,1,9,1,16,1,1,755,}, + {1,730,9,1,10,1,13,2,26,3,30,2,29,2,28,1,29,6,26,9,29,10,30,1,26,4,30,1,26,7,29,2,26,31,29,1,26,4,29,3,26,2,29,6,26,3,29,5,26,9,29,5,26,2,29,6,28,4,29,2,26,1,29,10,26,15,29,1,26,4,29,1,26,12,29,5,26,3,30,2,26,4,25,1,9,1,16,1,1,753,}, + {1,730,9,2,25,1,13,1,26,4,30,1,29,2,28,1,29,5,30,1,26,11,29,2,26,1,29,7,30,1,26,5,29,8,26,5,27,1,26,8,29,1,26,20,29,3,26,2,29,6,26,4,29,4,26,1,29,4,26,4,29,28,26,1,29,2,26,15,29,2,26,2,29,1,26,11,29,9,30,4,26,3,25,1,9,1,16,1,1,752,}, + {1,731,9,1,25,2,13,1,26,2,30,2,29,9,30,1,26,9,29,1,26,3,29,1,28,5,29,2,26,4,29,7,26,15,29,3,26,19,29,3,26,1,29,8,26,2,29,2,26,5,29,2,26,4,29,8,28,2,29,8,26,3,29,7,26,20,29,4,26,12,29,16,30,1,25,1,9,1,16,1,1,750,}, + {1,732,10,2,13,1,26,2,30,1,26,1,30,2,29,8,30,1,26,7,29,2,26,2,29,1,28,2,29,2,26,8,30,1,26,10,29,4,26,3,29,1,26,2,29,3,26,25,29,11,26,5,29,22,26,6,29,6,26,20,29,2,26,13,29,19,26,1,9,2,16,1,1,748,}, + {1,733,9,1,25,1,13,1,26,4,30,1,29,3,28,2,29,3,30,1,26,9,29,5,26,2,25,1,26,4,25,1,26,1,29,3,26,8,29,9,26,2,29,3,26,25,29,11,26,4,29,7,28,3,29,14,26,2,29,2,26,3,29,3,26,38,30,1,29,2,26,5,30,1,29,8,26,2,25,1,9,1,15,1,12,1,1,746,}, + {1,733,9,2,25,1,26,3,30,2,29,4,28,1,29,2,30,1,26,9,29,2,28,1,29,1,26,1,29,2,26,1,9,1,26,1,29,2,26,2,29,1,28,1,29,4,30,3,29,23,26,3,29,1,26,10,29,1,26,4,29,3,26,5,29,3,26,3,29,6,28,4,29,21,26,38,29,2,26,14,30,1,29,6,26,2,9,2,15,1,12,1,1,744,}, + {1,734,9,2,13,1,26,2,30,3,29,3,28,1,29,2,30,1,29,4,26,5,29,5,26,2,25,2,29,2,26,2,30,1,28,7,29,6,30,2,26,1,29,26,26,4,29,1,26,5,29,1,26,12,29,6,28,4,29,23,26,33,29,7,26,17,29,4,26,1,25,1,9,2,16,1,1,743,}, + {1,735,9,1,25,1,13,1,26,1,30,4,29,9,26,5,29,4,28,2,25,2,26,6,29,1,28,9,29,4,30,1,26,9,29,16,28,3,29,6,26,3,29,1,26,14,29,5,28,5,29,21,26,35,29,5,26,20,30,1,29,3,26,1,9,2,15,2,1,741,}, + {1,736,9,1,25,1,13,1,26,1,29,2,30,1,29,7,30,4,29,6,28,2,26,1,25,1,26,1,28,1,26,1,25,1,26,2,29,7,28,10,29,2,26,8,29,14,28,2,29,13,26,15,29,2,28,4,29,6,26,1,29,15,26,38,29,2,26,23,29,1,26,2,9,3,15,2,1,739,}, + {1,736,9,2,25,1,26,1,30,3,29,2,28,3,29,13,26,1,9,1,25,1,28,2,26,1,25,1,26,1,29,4,26,3,29,2,28,11,29,2,30,1,26,9,29,13,26,2,29,17,26,10,29,26,26,17,29,2,28,1,29,5,26,42,25,1,9,3,15,1,12,1,1,737,}, + {1,737,9,1,10,1,13,1,30,3,29,13,26,1,30,1,29,2,26,1,9,1,25,1,29,1,28,1,29,1,26,3,29,2,26,5,29,2,28,16,29,3,26,8,29,10,26,2,29,18,26,1,29,9,26,2,29,9,26,5,29,8,26,19,29,3,26,2,29,2,26,35,25,1,26,6,25,1,9,4,16,1,1,736,}, + {1,738,9,1,25,1,26,1,30,2,29,3,30,1,29,8,30,2,29,2,26,1,9,2,26,1,28,2,26,1,25,1,26,2,29,3,26,5,28,20,29,3,26,8,29,7,26,2,29,4,26,2,29,19,28,1,29,14,26,5,29,7,26,63,25,1,26,5,25,1,9,2,15,1,9,2,16,1,1,734,}, + {1,739,9,1,13,1,26,2,30,1,26,1,30,2,29,7,30,1,29,3,26,1,9,2,26,1,29,2,26,1,25,2,26,1,29,4,26,4,29,1,28,1,29,1,28,21,29,4,26,8,29,9,26,4,29,2,26,4,29,10,28,2,29,17,26,5,29,4,26,61,25,4,26,4,25,1,9,5,10,1,9,1,16,1,1,732,}, + {1,739,9,1,10,1,13,1,26,3,30,1,26,2,30,1,29,8,26,1,25,1,9,1,25,1,29,2,26,1,9,1,25,1,26,2,29,4,26,2,29,1,28,17,29,2,28,8,29,4,26,11,29,4,26,11,29,1,26,3,29,5,28,2,29,20,26,2,29,5,26,62,25,2,26,3,29,1,26,1,27,1,10,1,9,4,25,1,27,1,9,1,16,1,1,730,}, + {1,740,9,1,10,1,13,2,26,1,30,2,26,1,29,7,30,1,26,1,25,3,26,1,29,2,26,1,25,2,26,3,29,3,26,1,29,2,28,1,29,1,28,15,29,3,28,10,29,4,26,11,29,3,26,13,29,8,26,1,29,13,26,2,29,6,26,1,29,3,26,41,25,3,27,1,26,23,29,3,26,1,25,7,9,1,1,729,}, + {1,741,9,1,10,1,25,1,13,1,30,1,29,1,30,1,29,6,30,1,26,1,25,3,26,1,29,2,26,10,29,5,28,10,29,2,28,2,29,7,28,3,29,1,28,7,29,2,26,12,29,4,26,10,29,7,26,1,29,21,26,47,25,2,27,1,26,25,29,2,26,1,25,7,9,1,1,727,}, + {1,741,9,3,25,1,30,1,29,2,28,2,29,1,30,2,29,1,26,1,25,3,26,2,29,2,26,10,29,2,26,2,28,12,29,1,28,1,29,13,28,8,29,4,26,6,25,3,26,5,29,4,26,5,29,5,26,2,29,21,26,48,25,3,26,24,25,2,26,1,29,1,30,1,26,2,25,5,9,1,1,725,}, + {1,742,9,3,26,1,29,5,30,3,26,1,25,3,26,17,29,1,28,4,29,1,28,1,29,5,28,3,29,14,28,11,29,3,26,5,25,5,26,3,29,4,26,3,29,3,28,1,29,24,26,47,27,1,25,5,26,4,25,1,26,6,27,1,26,10,25,1,9,3,25,1,29,2,26,3,25,4,9,1,1,723,}, + {1,743,9,2,25,1,30,1,29,5,26,4,25,3,26,15,29,23,28,1,29,6,28,14,29,3,26,5,25,4,26,7,29,28,26,47,25,9,26,3,25,1,26,17,25,1,9,4,26,2,29,1,26,6,25,1,9,1,1,721,}, + {1,744,9,2,26,1,30,1,26,1,30,1,29,6,26,1,25,2,26,14,29,22,28,4,29,5,26,1,29,5,28,12,29,2,26,6,25,6,26,3,29,20,26,53,27,1,25,8,9,1,25,1,26,20,25,1,9,4,25,1,26,1,29,2,26,6,9,1,1,720,}, + {1,744,16,1,9,1,25,1,26,2,29,3,28,4,29,1,26,1,25,4,26,9,29,3,28,1,29,2,26,1,29,2,26,7,29,1,26,2,29,1,26,1,29,2,28,5,29,1,28,2,29,6,26,2,29,3,28,8,29,6,26,7,25,3,26,7,29,12,26,56,25,10,9,2,25,1,26,15,30,1,26,2,25,1,9,5,25,1,26,3,29,4,26,3,9,1,1,718,}, + {1,745,9,2,25,1,26,2,29,1,28,4,29,1,26,1,25,3,10,1,9,2,25,5,26,3,29,4,26,2,29,2,26,13,29,2,28,1,29,1,28,2,29,1,28,4,29,10,26,1,29,5,28,2,29,9,26,11,25,2,26,5,29,10,26,50,27,1,25,17,26,14,29,2,26,1,27,1,25,1,9,3,10,1,25,3,26,4,29,3,26,3,9,1,1,716,}, + {1,746,9,1,10,1,25,1,26,1,28,4,29,1,26,1,29,1,28,1,29,2,25,1,9,3,25,4,26,3,29,2,26,3,29,4,26,12,29,7,28,4,29,2,28,4,29,6,26,4,29,17,26,5,25,7,26,2,29,6,26,13,29,2,26,37,25,19,26,14,29,1,30,1,26,1,25,1,9,4,25,5,26,6,29,1,26,2,25,1,9,1,1,714,}, + {1,747,9,1,10,1,25,1,29,1,28,1,29,1,26,1,30,1,28,5,29,1,13,1,10,1,9,1,25,5,26,6,29,3,26,2,29,1,26,15,29,4,28,2,29,2,28,5,29,2,28,4,29,4,26,1,29,4,26,1,29,7,28,3,29,4,26,3,25,4,10,1,25,4,26,11,29,9,26,39,27,1,25,1,26,3,25,13,27,1,26,3,27,2,26,7,29,2,26,1,25,1,9,5,25,1,26,1,27,1,25,2,27,1,26,9,9,1,1,713,}, + {1,748,9,1,10,1,26,1,29,1,26,1,29,1,28,6,29,1,26,1,9,3,25,2,10,1,25,3,26,4,29,3,26,22,29,5,28,10,29,9,26,5,29,3,28,2,29,2,28,1,29,5,30,1,26,3,25,10,26,9,29,6,26,33,27,4,25,2,27,1,26,10,25,3,27,1,26,1,27,1,25,4,27,1,26,9,29,2,26,1,25,1,9,3,15,1,9,2,25,1,26,3,25,3,26,9,9,1,1,711,}, + {1,748,9,2,25,1,29,2,28,5,29,1,26,2,27,1,25,1,9,6,25,4,26,3,29,2,26,8,29,1,26,17,29,6,28,3,29,25,28,3,29,5,30,1,26,4,25,4,9,4,25,2,26,9,29,2,26,33,25,8,27,2,26,8,25,1,27,1,26,2,25,6,26,9,30,1,26,1,25,1,9,3,15,2,9,2,26,4,27,1,25,4,26,8,16,1,1,709,}, + {1,749,9,1,10,1,26,1,29,1,28,4,29,1,26,1,29,3,26,1,25,1,9,4,10,1,25,4,26,10,29,2,26,22,29,12,28,1,29,13,26,1,29,18,26,3,25,3,9,3,10,1,25,4,26,13,29,3,26,16,27,1,26,4,27,1,25,14,27,1,25,1,27,1,26,4,25,1,26,1,25,8,26,5,27,1,26,4,25,1,9,2,15,2,9,2,25,1,26,5,25,4,26,8,25,1,1,708,}, + {1,750,9,1,25,1,26,1,28,4,29,6,26,1,25,1,9,4,25,5,26,9,29,2,26,2,29,1,26,2,29,1,26,12,29,8,26,2,29,5,28,2,29,2,28,7,29,26,30,1,26,2,25,3,9,7,25,2,26,9,29,2,26,22,25,18,27,1,26,3,25,2,27,1,26,6,25,3,27,1,26,2,25,1,26,4,27,1,9,2,15,1,9,4,25,1,26,6,25,4,26,8,9,1,1,706,}, + {1,751,9,1,26,1,29,5,28,2,29,2,26,2,25,1,9,4,25,3,26,12,29,1,26,5,29,1,26,1,29,1,26,7,29,13,26,3,29,11,28,2,29,1,28,1,29,4,28,1,29,7,30,1,26,1,30,1,29,12,30,2,26,4,25,2,9,5,25,3,26,28,27,1,25,19,27,5,25,1,27,1,26,7,27,1,25,1,27,1,26,5,29,1,26,1,10,1,9,6,25,1,26,20,9,1,1,704,}, + {1,752,10,1,26,1,29,2,26,1,28,7,29,2,26,1,9,2,25,2,26,4,25,4,26,13,29,4,26,3,29,14,26,3,29,2,26,3,29,6,28,2,29,5,28,3,29,7,26,1,29,1,30,1,26,5,29,7,30,5,26,3,25,3,9,6,25,3,26,19,25,32,26,12,29,3,26,1,25,1,9,2,15,1,9,3,25,1,26,22,1,703,}, + {1,753,25,1,26,2,29,2,28,8,29,1,26,1,25,1,9,1,25,2,26,4,25,4,27,1,26,13,29,7,26,1,29,6,28,3,29,1,26,4,29,3,26,7,29,8,28,2,29,2,28,3,29,3,26,1,29,4,30,1,29,17,30,2,26,3,25,4,9,3,25,5,26,17,27,1,25,30,26,11,29,3,27,1,9,6,25,1,27,1,26,22,10,1,1,701,}, + {1,754,10,1,26,2,29,1,28,7,29,2,26,2,25,1,9,2,25,2,26,3,25,3,26,18,29,3,26,2,29,5,28,1,29,2,26,4,29,4,26,12,29,8,28,3,29,30,30,1,26,4,25,2,9,6,10,1,25,3,26,6,29,1,26,11,27,1,25,25,26,13,27,1,9,7,25,1,26,5,27,1,26,18,9,1,1,699,}, + {1,755,9,1,25,1,29,1,28,7,29,4,26,1,25,1,9,3,25,1,26,29,29,7,26,3,29,4,26,3,29,6,26,5,29,2,26,1,29,5,28,2,29,6,28,3,29,27,26,2,13,1,25,2,9,6,25,3,26,18,25,3,9,2,25,9,9,1,25,7,27,1,26,4,27,1,25,3,26,6,25,1,9,7,25,1,26,5,25,1,26,18,25,1,1,698,}, + {1,757,25,1,29,3,28,4,29,1,28,1,29,3,26,2,9,3,25,2,26,28,29,5,26,4,29,3,26,3,29,6,26,3,29,4,26,3,29,22,28,1,29,16,30,1,29,6,26,3,25,2,9,5,25,3,26,16,25,4,9,3,25,8,9,5,25,2,27,1,26,2,25,6,27,1,26,1,29,1,26,2,25,1,9,7,25,1,26,1,29,1,26,24,25,1,1,696,}, + {1,758,10,1,26,1,29,1,28,3,29,1,28,3,29,3,26,2,25,1,9,3,25,1,26,36,29,2,26,4,29,5,26,3,29,12,26,3,29,43,30,1,26,2,25,3,10,1,25,1,10,1,25,3,26,14,25,8,9,2,25,5,9,3,25,13,26,5,10,1,9,6,25,1,29,3,26,25,9,1,1,694,}, + {1,759,9,1,25,1,26,1,29,2,28,4,29,2,26,5,25,1,9,3,25,1,26,39,29,5,26,3,29,3,26,4,29,7,26,6,29,17,28,8,29,16,28,1,29,2,26,2,25,2,9,4,25,2,26,13,25,13,9,1,25,8,9,2,25,7,26,3,25,1,9,3,16,1,9,2,25,1,29,1,28,1,29,1,26,27,9,1,1,692,}, + {1,760,9,1,25,1,26,2,29,1,28,4,29,2,26,2,29,2,26,2,9,4,25,1,26,12,29,2,26,11,25,2,26,9,29,5,26,3,29,3,26,6,29,7,28,1,29,3,26,9,29,9,28,10,29,6,30,3,29,11,26,2,25,2,9,3,25,2,26,14,25,29,27,1,26,2,10,1,9,2,16,1,9,2,10,1,26,1,28,1,29,1,26,28,25,1,1,691,}, + {1,762,10,1,25,2,26,1,28,5,29,6,26,2,9,4,25,2,26,9,29,3,26,11,27,1,25,6,26,12,29,4,26,3,29,7,28,1,29,3,28,1,29,2,26,9,29,1,26,4,29,3,28,6,29,1,28,3,29,7,30,1,26,4,30,2,29,5,28,1,29,2,26,2,25,2,9,3,25,3,26,11,25,3,27,1,26,3,27,1,25,18,9,2,10,1,25,2,26,1,27,1,9,1,16,2,9,2,26,1,28,1,29,2,26,29,25,1,1,689,}, + {1,764,9,2,25,1,29,1,28,10,29,2,26,1,9,4,25,1,26,5,29,1,26,2,29,5,26,4,29,3,26,6,25,3,26,1,25,1,26,10,29,2,26,4,29,21,26,1,29,2,26,7,29,14,26,12,29,1,26,1,29,8,26,2,25,2,10,1,9,3,25,3,27,1,26,7,25,26,9,1,25,1,27,2,26,1,30,1,25,1,9,1,16,2,9,1,25,1,29,2,26,32,9,1,1,687,}, + {1,766,9,1,25,1,26,1,29,2,28,9,29,1,26,1,25,1,9,3,25,1,26,2,29,4,26,2,29,4,26,4,29,2,28,1,29,2,26,2,29,1,26,16,29,2,26,6,29,23,26,14,29,6,26,13,29,1,26,6,29,3,30,1,26,3,25,3,10,2,25,6,27,1,26,4,27,1,25,7,27,1,26,1,25,16,27,1,26,1,29,2,26,1,9,1,16,1,15,1,16,1,10,1,26,25,29,1,26,10,1,686,}, + {1,768,9,1,25,1,26,1,29,2,28,7,29,3,26,1,25,1,9,3,25,1,26,2,29,3,26,1,29,4,26,4,29,2,28,2,29,1,26,1,29,2,28,1,29,2,26,20,29,12,26,1,29,7,28,3,29,11,26,6,29,2,26,1,29,1,26,30,25,41,26,1,29,2,25,1,9,1,12,1,15,1,9,1,25,1,26,3,27,2,26,21,29,1,26,9,25,1,1,684,}, + {1,770,9,1,26,2,29,2,28,5,29,1,28,1,29,2,26,2,9,4,25,1,26,1,29,2,26,3,29,2,26,5,29,1,28,2,29,4,28,4,29,2,26,22,29,5,26,2,29,1,26,1,29,6,28,10,29,5,26,20,25,1,26,10,25,2,9,3,25,45,26,1,29,1,26,1,10,1,9,1,15,1,16,1,9,1,25,1,26,2,25,4,26,21,29,2,26,8,10,1,1,682,}, + {1,772,9,1,25,1,26,1,29,2,28,6,29,1,26,4,25,1,9,3,25,1,26,11,29,2,28,2,29,2,26,1,28,6,29,2,26,20,29,6,26,4,29,5,26,1,29,1,28,12,29,4,26,13,25,3,26,1,25,5,26,7,25,2,9,7,25,6,10,1,25,3,26,3,25,14,27,1,26,1,27,1,25,11,26,3,9,2,16,1,9,2,25,1,26,1,25,4,26,23,29,2,26,8,9,1,1,680,}, + {1,774,9,2,26,1,29,3,28,4,29,3,26,3,25,1,9,2,10,1,25,1,27,2,26,8,29,2,28,2,29,1,26,1,29,2,28,6,29,1,26,30,29,1,26,2,29,7,28,2,29,2,28,7,29,3,26,6,25,1,26,2,25,6,26,1,25,2,9,1,25,1,26,4,25,2,26,3,25,1,9,7,25,7,9,1,25,3,26,3,25,10,27,3,26,1,27,1,25,12,26,1,30,1,25,1,9,1,16,1,9,2,25,1,26,1,27,1,25,1,9,1,25,3,26,23,29,2,26,8,1,679,}, + {1,777,9,1,26,1,29,5,28,3,29,1,26,4,25,1,9,4,25,1,27,1,26,7,29,3,26,4,29,1,28,2,29,5,26,12,25,3,26,18,29,3,26,1,29,2,28,1,29,2,28,4,29,1,28,4,29,3,26,9,25,10,26,2,25,1,9,3,25,5,9,8,25,10,27,1,26,5,25,4,9,1,25,2,27,1,25,2,27,2,25,11,26,3,9,1,16,2,9,1,25,1,26,2,25,1,9,3,25,3,26,23,29,5,26,4,25,1,1,677,}, + {1,779,9,1,26,4,29,1,28,3,29,2,26,4,25,2,9,2,10,1,25,1,27,1,26,12,29,12,26,10,25,5,26,4,25,1,26,13,29,4,28,2,29,12,26,3,25,2,26,7,25,11,9,5,25,2,9,9,25,8,26,8,25,22,26,2,25,1,9,2,15,1,9,1,27,1,26,1,25,1,9,5,25,2,26,24,29,5,26,4,10,1,1,675,}, + {1,781,9,1,25,1,26,2,29,1,26,1,29,5,26,5,25,1,9,1,10,1,25,2,26,12,29,6,26,3,29,6,26,3,29,1,26,5,25,7,26,14,29,5,26,1,29,8,26,8,25,4,26,5,25,11,9,11,15,1,9,5,25,1,9,3,25,2,26,11,25,6,9,1,25,12,27,1,26,1,27,1,9,4,25,3,9,5,25,2,27,1,26,23,29,6,26,4,9,1,1,673,}, + {1,784,9,1,26,5,29,1,28,1,29,2,26,5,25,2,9,1,25,1,27,1,26,11,29,4,26,4,29,6,26,1,29,2,26,10,25,6,26,2,25,1,26,6,29,5,26,4,29,5,26,12,25,7,26,2,25,6,9,1,25,4,9,9,15,1,9,6,25,1,9,3,25,3,26,1,27,1,26,10,25,14,9,3,25,1,26,1,27,1,9,1,16,1,15,1,9,1,10,1,27,1,25,1,10,1,9,3,25,4,26,24,29,2,26,1,29,3,26,4,9,1,1,671,}, + {1,785,9,2,25,1,26,5,29,4,26,4,25,3,27,1,26,8,25,1,26,2,29,4,26,2,29,2,28,1,29,2,26,3,29,3,26,12,25,7,26,6,29,3,26,6,29,10,26,7,25,5,26,3,25,1,26,1,25,3,9,4,25,3,9,21,25,1,26,1,25,2,27,1,26,5,25,2,26,8,25,5,9,6,25,1,26,2,10,1,9,1,16,1,9,2,27,2,25,8,27,1,26,9,30,1,29,1,26,10,29,4,26,2,29,2,26,4,25,1,1,670,}, + {1,788,9,2,25,1,26,4,29,6,26,5,27,1,26,7,27,1,26,2,29,1,28,2,29,4,28,1,29,2,26,3,29,3,26,13,25,7,27,1,26,13,29,3,28,1,29,5,26,10,25,4,26,5,9,4,25,1,9,1,25,2,26,2,25,2,9,1,25,2,9,11,15,1,9,4,25,5,26,4,27,1,25,2,27,1,26,7,27,1,25,4,9,6,25,1,26,1,29,1,25,1,9,4,26,3,25,6,27,1,26,12,30,1,26,9,29,4,26,4,29,1,26,4,9,1,1,668,}, + {1,791,9,2,25,1,26,5,29,3,26,18,29,4,28,1,29,4,26,1,29,3,26,11,29,1,26,3,25,6,27,1,26,11,29,5,28,1,29,3,26,6,25,4,26,9,25,4,9,1,26,7,25,5,9,17,25,1,9,1,25,2,26,4,27,2,25,2,26,2,27,1,25,2,26,5,25,4,10,1,9,3,25,1,26,2,27,1,9,2,16,1,9,1,27,1,26,3,27,1,25,4,27,1,26,24,29,3,26,5,30,2,26,1,25,1,9,1,1,666,}, + {1,793,12,1,9,2,25,2,26,4,29,2,26,13,29,1,26,5,29,10,26,7,29,1,26,10,27,1,25,3,26,11,29,8,28,1,29,3,26,6,25,5,26,6,25,1,26,2,25,1,26,9,25,5,9,18,25,1,26,9,27,1,25,4,26,4,27,1,25,6,9,3,27,1,26,2,9,1,15,2,9,1,10,1,26,1,29,1,26,2,27,1,25,2,27,1,26,25,29,4,26,5,30,1,26,2,25,1,9,1,1,664,}, + {1,796,12,1,9,1,25,4,26,8,29,2,26,11,29,4,26,3,29,3,26,6,29,2,26,11,27,2,26,1,25,2,27,1,26,8,29,4,26,1,29,3,28,3,29,1,26,2,25,4,26,2,25,3,9,1,25,1,26,13,25,1,26,3,25,5,9,19,25,2,26,8,25,4,27,2,25,7,9,4,25,2,26,2,27,1,9,1,15,2,9,1,10,1,26,1,29,1,26,3,27,2,26,24,29,8,26,7,25,1,1,663,}, + {1,799,12,1,9,2,25,2,27,2,26,5,29,2,26,5,29,1,26,4,29,4,26,3,29,4,26,5,29,2,26,16,27,1,25,1,26,6,29,3,26,3,29,7,26,2,25,4,26,2,25,1,9,3,25,2,26,5,25,2,26,9,25,5,9,20,25,2,27,3,26,4,25,12,9,2,25,1,9,3,25,1,26,1,29,1,26,1,25,1,9,2,15,1,9,1,25,1,26,5,27,1,26,22,29,12,26,1,25,2,9,2,25,1,26,1,9,1,1,661,}, + {1,802,16,1,9,1,25,3,26,4,29,3,26,2,29,1,28,2,29,1,26,3,29,1,28,2,29,1,26,3,29,4,26,5,29,2,26,4,29,1,26,23,29,9,26,3,25,1,9,1,25,4,9,1,25,1,26,1,25,2,26,4,25,2,26,11,25,1,26,1,25,1,9,21,10,1,25,3,26,4,27,1,25,1,27,2,25,9,9,7,25,1,26,3,25,1,9,1,15,1,9,2,25,1,26,3,25,3,26,21,29,9,28,3,29,1,26,1,25,1,9,5,25,1,9,1,1,659,}, + {1,804,12,1,9,1,25,1,27,1,26,4,29,3,26,2,29,1,28,2,29,1,26,4,29,1,26,4,29,4,26,5,29,2,26,3,29,2,26,4,29,2,26,21,29,7,26,1,25,7,26,3,25,6,26,9,25,6,9,7,15,1,9,14,25,3,27,1,26,2,27,1,25,1,27,1,26,1,25,11,9,7,25,1,26,1,30,1,26,1,9,1,15,2,9,2,26,1,29,1,26,1,27,1,25,3,27,1,26,20,29,8,28,4,29,1,26,1,25,1,9,6,25,1,9,1,1,657,}, + {1,807,12,1,25,1,26,3,29,1,28,1,29,1,26,2,29,1,28,2,29,1,26,1,29,1,28,2,29,1,26,4,28,2,29,1,26,6,29,2,26,3,29,2,26,3,29,1,28,1,29,1,26,8,29,2,26,1,29,2,26,8,29,7,26,1,25,4,9,1,25,1,26,9,25,3,26,6,25,8,9,20,25,23,9,7,27,1,30,1,26,1,10,1,16,2,9,2,25,1,29,1,26,2,25,7,27,1,26,18,29,7,28,3,29,2,26,1,25,1,9,6,25,2,9,1,1,655,}, + {1,809,12,1,9,1,26,3,29,1,26,2,28,4,29,2,28,3,29,1,26,4,29,2,26,6,29,3,26,3,29,2,26,3,29,2,26,7,29,3,26,3,29,3,28,4,29,6,26,3,25,7,26,10,25,2,26,3,25,1,9,4,25,6,9,19,25,23,9,7,25,1,26,1,29,1,27,1,9,5,25,1,26,3,27,1,25,7,27,1,26,18,29,6,28,1,29,1,26,3,25,1,9,7,25,1,26,1,25,1,1,654,}, + {1,811,12,1,9,2,26,3,29,1,28,3,29,2,28,3,29,1,26,2,29,4,26,7,29,2,26,3,29,2,26,3,29,2,26,15,29,2,28,3,29,7,26,4,25,5,26,11,25,2,26,1,25,1,9,6,25,5,9,9,25,2,9,12,25,19,9,7,10,1,27,1,26,1,30,1,26,1,9,2,16,1,9,2,27,1,29,2,26,1,27,6,26,21,29,5,28,1,29,1,26,1,27,1,25,1,9,8,10,1,25,1,26,2,10,1,1,652,}, + {1,813,16,2,9,1,26,2,29,1,28,3,29,1,28,4,26,2,29,1,28,3,29,1,26,9,27,1,26,2,29,1,26,4,29,1,26,16,29,1,28,2,29,10,26,2,25,4,26,13,25,3,9,2,25,4,26,3,25,2,9,25,25,9,9,1,25,7,9,9,26,1,29,2,25,1,9,1,12,1,16,1,9,1,25,1,26,1,29,1,26,1,27,1,26,26,29,7,26,1,25,2,9,7,10,1,25,2,26,2,29,1,26,1,9,1,1,650,}, + {1,816,12,1,9,1,25,1,26,1,29,1,28,1,29,1,28,4,29,1,26,2,29,1,28,3,29,1,26,5,29,2,26,1,27,1,25,1,26,3,27,1,26,2,29,1,26,8,29,2,26,6,29,1,28,2,29,10,26,3,25,1,9,1,25,1,26,4,25,4,26,5,25,1,9,3,25,3,26,1,25,3,26,1,25,2,9,16,15,3,9,7,10,2,25,1,9,1,10,1,25,2,9,2,25,6,9,10,27,1,26,1,30,1,25,1,9,1,12,2,9,2,25,1,26,30,29,6,26,1,25,2,9,7,25,1,26,4,30,1,29,1,30,1,26,1,9,1,1,648,}, + {1,818,16,1,9,1,25,1,26,2,29,1,28,4,26,1,29,1,28,4,29,2,26,4,29,1,28,1,26,2,25,1,26,4,25,1,26,1,29,1,26,7,29,1,26,8,29,3,26,3,29,5,28,1,29,1,26,3,25,10,26,4,25,3,9,1,25,1,26,2,25,3,9,2,25,1,26,1,25,2,9,10,15,5,9,10,25,5,10,1,9,1,25,9,9,9,10,1,25,1,26,2,25,1,9,2,12,2,9,1,25,1,26,1,29,2,26,27,29,6,26,1,25,1,9,7,10,1,25,1,26,2,29,2,26,2,29,2,26,1,25,1,1,647,}, + {1,821,12,1,25,1,26,2,29,1,28,3,29,1,28,4,29,3,26,3,29,1,28,1,29,1,26,6,25,1,26,1,29,2,26,17,29,11,26,2,25,9,26,6,25,1,9,2,25,3,26,1,25,8,9,12,15,5,9,9,25,18,9,4,10,1,9,2,25,1,27,1,26,2,25,1,9,6,26,1,29,1,28,1,29,1,26,27,29,3,30,1,26,2,25,1,9,6,25,3,26,2,29,1,28,1,29,2,26,5,10,1,1,645,}, + {1,823,12,1,9,1,26,2,29,1,28,1,29,1,28,4,29,3,26,3,29,1,28,2,26,3,29,2,26,21,29,2,26,2,29,3,26,1,29,3,26,2,25,10,26,7,25,1,9,1,25,5,26,1,25,2,26,1,25,1,9,9,25,3,9,2,15,6,9,4,15,3,9,2,25,1,27,1,26,2,25,15,10,1,25,3,10,1,27,1,26,3,27,1,25,1,9,4,10,1,26,1,29,1,28,1,29,1,26,26,29,5,26,2,25,1,9,6,25,1,26,4,29,1,28,2,29,2,26,6,9,1,1,643,}, + {1,825,12,1,9,1,25,1,26,3,28,4,29,2,26,3,29,2,28,1,29,1,26,3,29,2,26,33,25,1,9,3,25,1,9,3,25,2,26,6,25,5,9,2,25,3,26,2,25,1,9,2,25,3,9,1,25,4,9,4,15,7,9,2,15,4,9,2,25,2,27,1,26,2,25,1,26,3,25,6,10,2,25,7,26,1,29,2,26,1,27,1,10,1,9,5,26,1,28,3,29,1,26,26,29,3,26,3,25,1,9,6,25,1,26,2,30,1,29,3,28,1,29,2,26,8,9,1,1,641,}, + {1,828,9,1,25,1,26,2,29,1,28,3,29,1,26,4,29,1,28,1,29,1,26,3,29,1,26,4,29,1,26,25,29,1,26,2,25,1,9,8,25,3,26,5,25,4,9,3,25,5,9,4,25,2,9,1,25,4,9,5,15,9,9,5,25,3,27,1,26,2,27,1,26,1,27,1,25,7,10,1,9,4,25,3,26,2,29,2,26,1,25,1,9,4,10,1,26,1,28,2,29,1,26,26,29,2,28,1,29,2,26,1,25,2,9,5,25,1,26,1,30,1,29,8,26,6,25,1,26,2,25,1,1,640,}, + {1,830,12,1,9,1,26,2,29,1,28,1,29,1,26,4,29,1,28,1,29,1,26,4,29,1,26,31,27,1,25,1,9,10,25,2,26,6,25,2,9,3,25,6,9,4,25,1,9,2,25,3,9,6,15,7,9,7,25,3,27,2,25,11,9,6,25,2,27,1,26,3,25,1,9,5,26,1,29,1,28,1,29,1,26,24,29,4,28,1,29,2,30,1,25,1,9,7,26,1,29,4,26,2,29,3,26,7,25,3,26,1,25,1,1,638,}, + {1,832,12,1,9,1,26,7,29,1,28,1,29,1,26,4,29,2,26,29,27,1,25,2,9,9,25,6,26,3,25,1,9,1,25,4,9,1,25,4,9,7,25,5,9,5,15,6,9,8,25,20,10,1,25,3,26,3,25,1,9,5,27,1,26,1,29,3,26,24,30,1,29,1,28,2,29,1,26,1,25,1,10,1,9,7,25,1,26,1,29,2,26,15,25,3,26,1,10,1,1,636,}, + {1,834,12,1,9,1,26,5,29,3,26,9,29,1,26,24,27,1,25,2,9,7,25,6,9,2,25,15,9,5,25,9,9,4,15,5,9,9,25,23,26,1,29,2,25,1,9,5,25,1,26,1,29,1,28,1,29,1,26,23,29,3,28,2,30,1,25,1,10,1,9,2,16,1,15,2,9,4,27,1,26,18,25,5,9,1,1,634,}, + {1,836,12,1,9,1,25,1,26,3,29,2,26,4,29,1,26,15,27,2,26,12,25,3,9,7,25,4,9,2,25,2,9,1,25,9,9,3,25,2,9,5,25,5,9,2,25,4,9,4,15,6,9,6,25,22,27,1,26,1,29,2,25,1,9,5,25,1,27,1,26,1,29,3,26,22,29,5,27,1,9,3,15,6,9,2,25,1,26,20,25,5,9,1,1,632,}, + {1,838,16,1,9,1,25,1,26,3,29,1,26,3,29,2,26,16,27,1,26,10,27,1,25,2,9,8,25,3,9,3,25,2,9,3,25,3,9,6,25,3,9,12,25,3,9,7,15,4,9,7,10,1,25,6,10,3,9,1,10,1,25,9,27,1,26,1,29,1,26,1,25,1,9,5,25,1,27,1,26,1,29,2,26,24,29,3,26,1,25,1,9,2,15,7,9,1,10,1,27,1,26,21,25,6,9,1,1,630,}, + {1,840,16,1,9,1,25,1,26,5,29,1,26,7,25,1,26,19,27,1,25,2,9,9,25,3,9,2,25,1,9,1,25,1,9,4,25,3,9,5,25,2,9,18,25,2,9,15,10,1,25,6,10,1,25,4,10,2,25,6,26,3,27,1,10,1,9,5,25,1,26,2,29,2,26,4,27,1,25,2,27,1,26,16,29,2,28,1,30,1,25,1,9,2,15,7,9,1,25,1,26,5,25,1,26,18,25,6,9,1,1,628,}, + {1,842,12,1,9,1,25,1,26,3,28,1,29,1,26,6,25,3,26,6,27,1,26,10,25,2,9,11,25,2,9,10,25,2,9,13,25,4,9,25,10,1,25,15,27,1,25,2,27,1,26,1,30,2,26,1,25,1,9,5,25,1,26,1,29,2,26,4,27,4,25,2,27,1,26,14,29,2,28,1,30,1,25,1,9,2,15,6,9,2,27,1,26,5,25,2,26,12,25,1,26,1,25,3,26,1,25,6,10,1,1,627,}, + {1,844,12,1,9,1,26,2,28,2,26,14,27,1,25,2,26,8,25,2,9,9,25,1,9,12,25,1,26,1,25,2,9,17,25,2,9,10,15,6,9,8,25,2,10,2,9,2,10,1,25,7,27,1,26,1,27,1,25,1,26,2,29,1,26,2,25,1,10,1,9,5,26,1,29,1,28,1,29,1,26,3,27,5,25,4,27,1,26,11,29,2,28,1,29,1,25,1,9,2,15,5,9,2,25,1,26,5,27,1,25,2,26,14,25,12,9,1,1,625,}, + {1,846,16,1,25,1,26,1,29,1,26,3,29,1,26,11,25,2,27,1,26,3,25,1,27,1,25,1,27,1,25,3,9,22,25,3,9,6,25,1,9,1,25,13,9,5,15,2,9,1,15,7,9,7,25,2,10,1,9,5,10,1,25,4,27,2,26,1,27,1,25,1,26,1,29,1,28,1,29,1,26,1,25,1,9,6,26,1,29,1,28,1,29,1,26,3,27,5,25,6,27,1,26,9,29,3,26,1,25,1,9,2,15,4,9,2,10,1,26,1,29,1,26,4,25,2,27,1,26,14,25,7,26,1,25,6,9,1,1,623,}, + {1,847,12,1,9,1,26,4,28,1,29,1,26,9,25,2,9,1,25,1,26,2,27,1,25,5,9,1,25,1,9,6,25,1,9,10,15,1,9,10,25,4,9,1,25,14,9,25,25,5,10,2,25,2,27,1,26,2,27,1,25,1,26,1,29,1,28,1,29,1,26,1,27,1,10,1,9,4,25,1,26,1,28,2,29,1,26,5,27,4,25,9,27,2,26,4,29,2,26,2,25,1,9,3,15,3,9,2,25,1,26,1,29,1,26,4,27,2,26,15,25,9,26,2,25,5,9,1,1,621,}, + {1,849,12,1,9,1,26,2,29,2,26,9,25,4,26,3,25,4,9,23,25,4,9,2,25,2,9,3,25,7,9,8,25,4,9,23,10,2,25,2,10,2,25,7,26,2,29,2,26,1,27,1,25,1,9,4,25,1,26,1,29,1,28,2,29,1,26,5,27,3,25,12,26,3,29,1,30,1,26,2,25,1,9,4,15,1,9,3,27,1,29,2,26,2,27,1,26,18,25,11,26,1,25,6,9,1,1,619,}, + {1,851,12,1,25,1,26,9,29,1,26,1,27,1,25,1,9,1,25,1,27,1,26,2,25,4,9,22,25,10,9,2,25,7,9,8,25,2,26,1,25,3,9,18,10,1,25,3,9,5,25,7,27,1,26,4,25,1,10,1,9,4,27,1,29,2,28,3,29,1,26,4,27,3,25,13,26,2,29,1,26,2,25,1,9,8,10,1,27,1,29,2,26,9,25,3,26,1,25,1,27,1,25,3,26,5,25,18,1,618,}, + {1,852,12,1,9,1,26,11,25,4,26,1,27,1,25,4,9,16,25,1,9,8,25,7,9,2,25,1,26,2,25,4,9,5,15,1,9,3,25,6,9,3,15,4,9,11,25,5,10,1,9,5,10,2,25,2,26,2,30,1,26,2,25,1,9,5,27,1,29,1,28,1,29,4,26,4,27,1,25,15,26,2,29,1,26,1,25,1,10,1,9,1,15,2,9,4,25,2,26,1,29,1,26,3,27,1,25,17,26,5,25,17,10,1,1,616,}, + {1,854,12,1,9,1,26,9,25,3,26,2,25,5,9,20,15,1,9,4,25,2,9,1,25,4,9,2,25,1,26,2,25,4,9,9,25,3,9,1,25,3,9,3,15,6,9,9,25,9,9,3,10,1,25,1,26,1,29,2,26,1,27,1,10,1,9,5,26,1,29,1,28,1,29,3,26,4,27,2,25,13,27,1,26,3,29,1,27,1,9,4,15,2,9,3,25,1,26,5,25,17,26,2,25,1,26,5,25,18,9,1,1,614,}, + {1,855,12,1,9,1,26,3,29,3,26,3,25,2,26,3,25,1,9,1,25,3,9,19,15,1,9,3,25,2,9,4,25,4,26,1,25,6,9,4,15,1,9,6,25,7,9,3,15,5,9,9,25,9,10,2,25,2,26,1,29,1,30,1,27,1,10,1,9,6,26,1,29,1,28,1,29,2,26,5,25,4,27,3,25,7,26,2,29,1,26,3,25,1,9,3,15,2,9,4,27,1,26,4,27,1,25,18,26,1,25,26,9,1,1,612,}, + {1,857,9,1,25,1,26,1,29,2,26,5,25,1,26,3,25,2,27,1,25,2,9,16,25,1,9,6,25,1,9,5,25,6,9,1,25,1,26,1,25,1,9,15,25,4,9,6,15,3,9,8,25,8,10,2,25,2,26,1,29,2,26,1,10,1,9,7,26,1,29,1,28,1,29,1,26,6,27,1,26,3,27,1,26,3,25,5,26,3,29,1,26,2,25,2,9,3,15,2,9,3,10,1,26,1,29,1,26,3,25,48,9,1,1,610,}, + {1,858,16,1,9,1,26,1,29,2,26,8,25,5,9,1,25,3,9,11,25,2,9,5,25,1,9,6,25,4,9,3,25,1,26,1,25,1,9,6,25,8,9,5,25,1,9,15,25,8,10,3,25,1,26,1,29,3,27,1,9,6,25,1,26,2,29,1,28,1,29,1,26,24,9,7,15,1,9,3,25,1,26,1,29,1,26,2,27,1,25,50,9,1,1,608,}, + {1,860,9,1,26,10,25,4,9,2,25,4,9,10,25,1,9,10,15,1,9,2,25,2,9,4,25,1,26,1,25,1,9,5,25,1,9,1,25,6,9,1,25,1,9,15,15,2,9,3,10,1,25,2,27,1,26,3,25,6,26,1,29,2,30,1,25,1,9,5,25,1,26,2,29,3,26,1,27,2,26,19,29,1,30,1,25,1,9,11,25,1,26,1,29,1,26,1,27,1,25,53,9,1,1,606,}, + {1,861,12,1,25,1,26,8,25,4,9,27,15,1,9,8,25,2,9,8,25,2,9,1,25,4,9,16,15,2,9,3,25,3,27,1,26,4,25,5,27,1,26,1,30,1,26,1,10,1,9,5,26,1,29,2,26,4,27,2,26,17,29,1,26,3,25,1,9,2,15,3,9,5,25,1,27,1,26,1,29,1,26,1,25,56,9,1,1,604,}, + {1,862,12,1,9,1,26,7,25,1,26,1,25,1,9,26,15,2,9,3,15,1,9,21,25,1,9,16,15,1,9,4,25,2,27,1,26,4,27,1,25,5,27,1,26,2,27,1,10,1,9,4,25,1,26,1,29,2,26,10,27,1,26,11,29,2,26,1,27,1,25,1,9,2,16,2,15,2,9,5,25,1,26,2,29,1,26,1,25,28,9,1,25,3,9,1,25,3,9,1,25,21,9,1,1,602,}, + {1,864,9,1,25,1,26,2,29,2,26,3,25,1,9,26,15,1,9,4,15,1,9,5,15,1,9,7,15,5,9,12,25,3,9,1,25,1,9,8,25,4,27,2,26,1,27,2,25,4,27,1,26,1,27,1,25,1,9,4,10,1,27,1,26,1,29,1,26,2,27,1,26,20,29,2,26,1,10,1,9,6,16,1,9,4,25,1,26,2,29,2,26,2,25,25,9,5,25,2,9,11,25,16,9,1,1,600,}, + {1,865,9,1,25,1,26,1,29,1,26,4,25,1,9,6,15,1,9,28,15,4,9,2,15,5,9,16,25,4,9,9,25,2,27,1,25,5,27,4,25,1,27,2,25,1,10,1,9,3,10,1,25,1,26,2,29,1,26,23,29,1,28,1,26,1,9,8,12,1,9,1,10,1,25,1,27,1,30,1,29,1,30,1,26,6,25,4,9,2,25,15,9,1,25,2,9,19,25,5,26,1,25,8,10,1,9,1,1,598,}, + {1,866,9,1,25,1,26,1,29,1,26,3,25,1,9,3,25,1,9,1,15,3,9,19,15,1,9,25,15,7,9,15,10,1,25,15,10,1,9,3,25,1,27,2,26,21,27,1,26,1,29,4,26,1,9,5,16,1,9,4,27,1,30,1,26,2,30,1,26,9,25,3,10,1,9,1,25,7,9,34,25,11,9,2,1,596,}, + {1,867,16,1,25,1,26,4,25,1,9,1,25,2,26,1,25,1,9,8,25,1,9,5,25,1,9,35,15,1,9,21,25,1,10,1,9,3,25,2,10,2,25,2,10,3,9,4,25,1,27,3,26,22,29,4,27,1,9,9,25,1,26,1,30,1,26,1,27,3,25,6,27,2,25,6,10,1,25,5,9,49,1,594,}, + {1,868,16,1,25,1,26,3,25,4,26,2,9,4,15,1,9,3,25,2,9,4,25,1,9,35,15,1,9,40,10,1,25,2,27,1,26,13,29,2,26,10,27,1,9,7,10,1,25,1,27,1,30,1,29,1,26,1,25,19,9,2,25,3,9,31,15,3,9,17,1,591,}, + {1,869,16,1,25,1,26,3,25,3,26,2,25,1,9,3,15,1,9,3,25,2,9,16,15,1,9,23,15,6,9,21,15,1,9,7,16,1,15,3,16,2,9,3,25,3,27,2,26,1,27,2,26,16,27,1,25,2,10,1,9,2,16,1,9,3,27,1,30,1,26,2,30,1,26,1,25,3,10,1,25,16,9,25,15,5,9,27,1,589,}, + {1,870,12,1,25,1,26,2,25,3,26,2,25,1,9,7,25,2,9,29,15,1,9,10,15,10,9,1,15,31,9,2,25,15,26,9,25,1,10,1,9,7,10,1,26,1,29,1,30,1,26,2,27,1,25,21,9,12,15,5,9,3,15,8,9,3,15,1,9,1,15,3,9,29,16,1,1,579,}, + {1,872,9,1,27,1,25,4,26,1,25,1,9,1,25,1,9,4,15,1,9,3,15,1,9,18,25,2,9,23,15,3,9,3,15,22,9,1,15,15,9,12,25,8,10,1,9,7,10,1,26,1,29,2,26,1,27,1,25,4,10,2,25,9,9,19,15,22,9,32,15,3,12,1,1,575,}, + {1,873,9,1,25,4,26,1,25,1,9,5,15,1,9,2,15,3,9,5,25,1,9,26,25,5,9,20,15,4,11,5,15,12,9,10,15,18,9,2,15,5,9,4,25,1,26,3,25,15,9,17,15,18,9,41,15,3,16,1,1,572,}, + {1,874,9,3,25,5,9,1,25,1,9,1,15,1,9,2,15,3,9,23,25,1,9,7,25,5,9,3,15,4,9,13,15,4,14,1,11,10,15,10,9,14,15,6,14,2,15,13,9,3,10,1,25,17,9,18,15,6,9,47,25,2,9,5,15,3,9,2,1,568,}, + {1,874,12,1,9,3,25,1,9,6,15,1,9,1,15,3,9,20,25,4,9,3,25,1,9,5,25,3,9,3,15,5,9,12,15,9,11,9,15,9,9,15,15,26,9,5,10,1,9,1,10,4,9,1,25,2,9,10,15,4,9,58,25,2,9,6,15,3,9,6,1,562,}, + {1,875,16,1,9,5,15,2,9,1,15,5,9,20,25,4,9,9,25,2,9,4,15,5,9,17,15,7,11,7,14,2,15,4,14,2,15,51,9,8,15,3,9,3,15,10,9,13,15,2,9,36,25,1,9,3,25,1,9,13,25,5,10,1,9,1,1,124,9,1,25,1,1,1,12,1,1,428,}, + {1,876,9,5,15,7,9,7,15,1,9,13,25,6,9,6,25,2,9,16,25,2,9,13,15,3,14,1,11,3,14,6,15,9,9,2,15,6,14,2,15,8,14,3,15,2,9,9,15,13,14,1,15,44,9,32,25,4,9,1,25,2,9,4,25,2,9,2,25,1,26,1,25,3,26,10,25,1,10,1,9,1,1,114,16,1,9,1,25,1,26,2,9,1,11,1,1,427,}, + {1,877,9,4,15,6,9,8,15,1,9,12,25,1,26,1,25,1,9,11,25,2,9,11,25,4,9,14,15,16,9,3,25,2,26,4,25,1,9,2,15,3,14,1,11,3,15,6,14,1,11,2,15,3,9,12,15,3,11,3,14,1,15,5,14,3,15,16,9,7,15,1,9,8,15,13,9,28,25,7,9,2,25,5,26,4,27,1,26,6,29,6,26,2,25,1,9,5,1,103,9,5,25,3,12,1,1,428,}, + {1,877,12,1,9,3,15,5,9,8,15,4,9,10,25,1,9,23,25,3,9,14,15,18,9,3,25,1,26,7,25,1,9,2,15,20,9,12,15,3,11,5,15,10,11,2,14,1,15,12,9,18,15,11,9,27,25,12,26,1,25,1,26,2,27,1,25,1,27,1,26,5,29,9,30,1,26,1,10,1,9,8,1,93,9,1,25,3,9,5,16,2,1,429,}, + {1,878,16,1,9,2,15,4,9,8,15,3,9,1,15,1,9,9,25,1,9,38,15,22,9,2,25,1,26,6,25,1,9,3,15,18,14,1,11,1,15,2,9,10,15,3,14,1,11,4,15,12,11,3,14,1,15,14,9,11,25,1,9,5,15,11,9,27,25,8,26,2,27,1,29,1,26,10,29,2,26,2,29,7,26,1,25,1,9,8,16,3,9,2,1,81,9,3,25,6,9,1,15,2,1,432,}, + {1,879,9,3,15,2,9,1,15,1,9,6,15,1,9,9,25,5,9,42,15,12,9,1,15,7,9,3,25,7,9,1,15,11,9,6,15,26,9,1,15,9,11,5,14,1,15,15,9,8,15,3,9,8,15,9,9,3,15,4,9,4,15,1,9,14,25,6,27,1,26,3,29,1,26,1,27,2,26,11,29,1,26,1,29,4,28,4,26,1,9,11,16,1,15,1,16,3,9,1,1,66,11,1,12,1,1,3,16,1,9,6,25,4,9,1,15,1,1,434,}, + {1,879,12,1,9,2,15,4,9,4,15,1,9,13,25,2,9,7,25,1,9,10,15,2,9,21,15,6,9,9,15,10,9,3,25,1,9,3,15,9,9,10,15,7,14,1,11,1,14,1,15,19,11,6,15,1,11,6,14,1,15,14,9,10,15,4,9,6,15,16,9,4,15,3,9,11,25,5,27,2,26,4,25,3,27,3,26,7,29,1,26,2,29,1,26,1,28,6,29,1,25,1,9,13,16,4,15,3,16,2,1,58,11,2,17,1,11,1,15,2,9,5,25,5,9,1,15,1,16,1,1,434,}, + {1,880,12,1,9,1,15,4,9,3,15,1,9,22,25,2,9,9,15,2,9,19,15,6,9,5,25,5,9,3,15,10,9,2,15,5,11,4,15,2,9,18,15,2,14,1,11,4,15,6,9,4,15,2,9,3,15,3,11,8,15,19,9,9,15,31,9,1,15,3,9,10,25,4,27,3,26,4,25,1,27,2,25,5,26,8,29,1,28,6,30,1,9,2,16,1,9,3,25,1,9,11,16,1,15,11,16,2,9,2,1,46,11,3,15,1,17,1,11,1,17,1,15,1,9,1,25,3,9,6,15,1,16,1,1,3,9,1,25,1,9,2,17,1,12,1,1,425,}, + {1,881,16,1,15,4,9,3,15,1,9,1,15,1,9,19,25,2,9,3,15,3,9,1,15,3,9,19,15,6,9,4,25,4,26,2,25,1,9,1,25,3,9,1,15,15,14,1,11,3,15,5,9,15,15,3,14,2,11,2,14,1,15,8,9,9,15,3,14,1,11,4,15,5,9,5,15,14,9,6,15,37,9,8,25,4,27,1,26,6,27,3,25,7,27,1,26,5,29,1,28,5,26,1,9,1,10,1,9,4,13,1,26,1,9,6,16,1,9,6,16,6,15,6,9,3,15,3,16,1,9,3,1,35,11,5,15,6,25,1,26,2,25,1,9,2,25,3,9,5,25,3,26,1,15,1,11,1,1,425,}, + {1,882,14,1,15,1,9,26,25,2,9,1,15,3,9,1,15,1,9,2,15,1,9,21,15,4,9,4,25,5,26,1,25,1,9,1,25,1,26,2,25,1,9,2,15,2,14,1,15,6,14,1,15,14,9,6,15,2,9,8,15,4,14,3,15,7,9,13,15,2,14,1,11,3,15,1,9,6,25,3,9,2,15,13,9,5,15,9,14,3,15,27,9,5,25,5,27,1,26,7,27,2,25,2,10,3,25,3,27,1,26,3,29,1,28,5,29,1,26,1,25,1,9,2,25,1,9,1,26,2,9,6,16,1,9,1,16,1,15,1,9,7,16,2,9,1,16,1,15,4,16,1,15,1,16,3,15,3,9,3,16,1,15,5,16,3,1,23,12,1,11,6,15,2,9,3,15,1,9,1,26,2,25,1,9,2,26,3,25,3,26,2,25,2,9,2,12,1,1,426,}, + {1,882,11,1,15,2,9,19,25,1,9,3,25,1,26,2,9,1,15,3,9,2,15,2,9,20,15,4,9,5,25,6,26,1,25,2,26,1,25,2,9,1,25,1,9,3,15,8,9,1,15,5,14,1,15,6,9,20,15,11,9,1,25,4,26,1,25,1,9,8,15,1,14,3,15,2,9,7,25,4,26,1,9,2,15,12,9,4,15,10,14,1,11,3,14,2,15,8,9,1,15,14,9,5,25,5,26,8,27,2,25,2,10,5,25,2,26,2,29,1,28,6,29,1,10,1,9,2,25,1,9,2,26,1,9,6,16,1,9,1,15,2,9,2,15,1,9,4,16,3,9,1,15,4,16,4,9,1,16,1,15,2,16,2,9,2,16,1,15,6,16,7,15,6,16,7,15,1,17,1,11,8,15,2,9,4,15,1,9,1,26,2,25,1,9,1,25,1,26,6,25,1,9,1,15,1,16,1,1,429,}, + {1,882,14,1,15,2,9,18,25,1,9,3,25,1,26,2,25,1,9,1,15,2,9,3,15,1,9,17,25,1,9,2,15,5,9,4,25,1,9,6,25,6,26,1,9,2,15,9,9,3,15,4,14,1,15,8,9,19,15,9,9,1,25,1,9,1,25,6,9,8,15,1,14,1,11,2,14,1,15,3,9,2,25,9,9,3,15,4,9,8,25,3,9,1,15,11,11,1,14,4,15,1,14,1,15,18,9,6,25,4,27,2,26,9,25,4,10,3,25,1,27,1,26,2,29,1,28,5,30,1,9,6,25,1,9,6,16,1,9,1,15,1,16,1,9,3,25,1,9,7,15,4,9,8,16,1,9,4,16,1,15,5,16,9,15,7,16,4,15,4,17,1,11,4,17,1,15,1,9,4,25,1,9,2,26,2,25,1,9,1,25,1,13,1,26,2,25,2,9,1,16,1,1,432,}, + {1,882,14,1,15,2,9,19,25,2,26,4,9,26,15,5,9,4,25,2,9,6,25,2,26,3,25,1,9,1,15,23,14,1,15,6,9,21,15,6,9,4,25,1,9,1,25,1,9,10,15,1,14,1,11,3,15,2,9,6,25,6,9,4,15,2,9,8,25,1,9,2,25,2,9,4,15,32,9,5,25,3,27,2,26,12,25,7,26,3,29,1,28,4,30,1,25,1,9,4,16,1,9,3,16,1,9,2,16,3,15,1,16,1,9,2,25,1,26,2,16,1,9,6,15,2,16,1,9,10,16,1,9,2,16,1,15,6,16,1,9,2,16,1,9,1,16,1,9,3,16,7,9,3,16,2,15,4,17,1,11,2,17,1,15,1,9,4,25,2,9,1,26,2,25,1,9,2,25,3,9,2,15,1,1,433,}, + {1,882,14,1,15,2,9,17,25,3,26,3,25,1,9,3,25,4,9,8,15,1,9,4,15,1,9,4,15,7,9,2,25,2,9,6,25,2,26,2,25,1,9,2,15,6,9,1,15,10,14,1,15,3,11,7,15,3,9,24,15,6,9,1,25,3,26,1,25,2,9,4,15,1,9,4,15,2,11,3,15,2,9,3,25,1,9,3,25,6,9,6,25,3,9,3,25,3,9,5,15,1,9,1,15,29,9,5,25,6,27,2,26,12,27,2,25,4,26,3,29,2,28,3,29,1,25,1,9,4,16,1,9,3,16,3,15,2,9,1,15,1,16,1,9,2,25,1,26,1,25,1,9,7,16,1,9,10,16,3,9,2,16,1,15,7,16,3,9,2,16,2,9,1,16,1,15,2,16,1,9,2,16,2,9,3,16,2,15,4,17,3,15,2,25,1,9,2,25,2,9,1,26,1,13,1,25,1,9,7,15,1,1,433,}, + {1,882,15,2,9,1,15,1,9,16,25,2,26,2,25,3,9,4,25,1,9,7,15,3,9,5,25,1,9,1,15,4,14,1,15,4,9,2,15,4,9,2,25,1,26,1,25,1,9,3,15,6,9,4,15,8,9,1,15,4,14,1,11,7,14,1,15,6,9,17,25,2,9,1,15,7,9,1,25,1,26,4,25,1,26,1,25,1,9,7,15,2,14,1,11,3,14,1,15,2,9,2,25,1,9,6,25,4,9,6,25,3,9,2,25,4,9,3,15,6,9,4,15,22,9,4,25,4,27,2,26,1,27,1,26,7,27,1,26,7,27,4,26,3,29,2,28,3,13,1,9,4,16,4,15,3,16,2,9,1,15,1,16,1,9,5,16,1,9,2,16,2,9,2,16,1,9,4,16,1,9,3,16,5,9,2,15,5,16,1,15,1,16,1,15,1,16,5,15,1,16,2,15,2,16,3,9,7,15,5,17,1,11,1,15,2,26,1,25,1,9,4,26,1,13,1,25,1,9,3,25,3,9,2,16,1,1,432,}, + {1,882,15,2,9,1,15,1,9,5,25,1,9,11,26,2,25,2,9,7,15,8,9,2,15,2,9,2,15,4,14,2,15,1,11,1,14,1,15,4,9,3,15,1,9,2,25,1,9,1,15,5,14,2,15,3,9,4,15,6,9,2,15,7,11,13,14,1,15,2,9,12,25,2,26,4,25,1,9,1,15,7,25,1,26,8,25,3,9,4,15,2,11,3,15,1,9,9,25,11,9,1,25,1,26,8,25,1,9,4,15,3,9,8,15,17,14,1,15,3,9,2,25,3,27,1,26,11,25,2,26,5,27,2,26,1,25,3,26,2,29,1,28,3,26,1,9,4,16,1,15,1,16,2,15,4,16,1,9,1,15,1,16,4,9,4,16,2,15,1,16,1,9,1,16,3,9,2,16,2,9,1,16,5,9,2,16,1,15,8,16,4,15,6,16,4,9,6,16,1,15,4,17,3,15,2,26,1,25,1,9,4,26,2,25,2,9,1,26,5,25,1,9,8,1,425,}, + {1,882,15,2,9,1,15,1,9,17,26,2,25,1,9,1,15,1,9,4,15,11,14,1,15,9,11,1,14,2,11,4,15,4,9,1,25,1,9,1,15,8,11,1,15,9,9,5,15,2,9,2,15,2,9,1,15,4,14,3,11,6,15,2,9,16,25,2,26,1,25,4,9,1,15,3,14,1,15,2,9,1,25,2,26,4,25,2,9,2,25,3,9,2,15,2,11,2,15,2,9,2,25,4,9,3,25,3,9,5,25,4,26,5,25,5,9,16,15,22,9,2,25,1,26,12,25,3,26,4,27,1,25,2,9,3,10,1,26,2,28,2,13,1,9,4,16,1,15,14,16,1,9,3,16,1,15,7,16,6,15,2,16,3,9,1,16,1,15,13,16,2,15,5,16,3,9,3,16,3,15,4,17,1,15,3,17,1,25,2,9,4,26,2,25,3,26,7,25,3,9,1,25,4,11,2,17,1,1,421,}, + {1,881,12,1,15,3,9,12,25,2,9,3,25,3,9,1,15,1,9,3,15,6,14,1,11,1,14,5,15,8,11,8,15,5,9,2,15,4,9,6,15,5,9,3,25,1,26,2,25,1,9,2,15,3,9,1,25,1,9,5,15,3,14,1,11,6,15,2,9,16,25,6,9,3,15,2,14,1,11,2,15,2,9,3,25,1,26,2,25,1,9,4,25,2,9,2,15,2,11,1,14,1,15,2,9,2,25,3,9,14,25,12,9,4,25,7,9,7,15,18,9,1,15,4,9,2,25,2,26,9,27,1,9,2,25,1,26,1,27,1,25,1,10,1,9,1,16,2,9,2,10,1,26,1,29,1,9,5,16,1,15,16,9,1,15,20,9,1,16,1,15,14,16,1,15,6,16,6,15,4,17,4,15,3,9,1,25,1,9,4,25,5,26,6,25,1,9,7,12,1,1,424,}, + {1,881,11,1,15,3,9,11,25,3,9,3,25,3,9,3,15,1,14,1,11,1,15,3,14,1,11,6,14,2,15,6,14,2,11,5,14,1,15,11,9,4,25,1,26,2,25,1,9,2,15,2,9,2,25,4,9,4,15,1,9,2,15,2,9,6,15,4,14,1,11,6,15,2,9,2,25,2,9,11,25,7,9,2,15,2,14,1,11,4,15,2,9,2,25,3,9,9,15,5,9,1,25,2,9,20,25,8,9,6,25,2,26,3,25,1,9,9,15,6,9,2,15,6,9,7,15,2,9,2,25,1,26,9,9,5,15,6,16,6,15,70,11,1,17,4,11,2,15,3,9,1,15,1,9,2,15,1,9,1,25,5,26,2,25,2,9,2,16,2,1,2,9,1,16,1,1,426,}, + {1,881,11,1,15,3,9,11,25,2,9,2,15,1,9,4,15,3,11,4,14,2,11,6,14,1,15,9,11,3,14,1,15,6,11,2,15,4,9,5,26,2,25,2,9,7,25,4,9,4,15,2,9,6,25,4,9,2,15,2,11,6,15,2,9,2,25,4,9,7,25,6,9,6,15,2,14,1,11,4,14,1,15,2,9,11,15,3,11,1,14,1,15,2,9,1,25,1,26,1,25,1,9,4,25,2,9,8,25,1,9,4,25,1,26,2,25,1,26,1,25,2,9,7,25,2,26,3,25,1,9,12,15,2,9,5,15,4,9,8,15,2,9,3,15,1,9,1,25,1,26,7,9,1,16,3,15,2,16,8,15,22,17,3,15,18,17,1,15,12,17,12,11,9,17,1,11,1,15,6,9,1,25,1,9,2,25,1,9,1,25,2,9,2,15,1,16,1,1,432,}, + {1,881,11,1,15,3,9,10,25,1,26,1,9,1,15,4,9,1,15,4,11,12,15,11,11,2,15,7,11,1,14,1,15,2,9,4,25,2,26,3,25,4,9,5,25,1,26,3,25,1,9,8,15,1,9,1,26,2,25,1,9,5,15,4,14,3,15,4,9,4,25,3,9,7,25,8,9,2,15,3,11,5,15,3,9,4,25,4,9,3,15,2,11,3,15,3,9,1,25,2,9,5,25,3,9,7,25,1,26,8,25,6,9,4,25,5,9,21,15,2,9,10,15,1,9,3,15,3,9,3,25,1,26,3,25,1,9,1,16,10,15,18,17,21,11,25,17,1,11,14,15,7,9,3,25,1,9,1,25,1,9,4,16,1,1,432,}, + {1,881,14,1,15,3,9,8,25,1,9,1,25,1,9,1,15,2,14,1,15,5,11,5,15,2,14,1,11,5,15,14,9,3,15,7,9,3,25,3,26,4,25,3,9,4,25,3,26,1,25,1,9,2,15,1,9,8,25,4,9,7,15,3,14,4,15,7,9,4,15,1,9,5,25,6,26,2,25,1,9,2,15,2,11,5,14,1,15,1,9,3,25,2,26,4,25,2,9,1,15,2,11,4,15,3,9,17,25,2,26,5,25,4,9,2,25,3,9,29,15,2,9,6,25,1,9,6,25,1,9,2,15,7,9,2,25,1,9,1,16,6,15,6,17,1,15,2,17,1,15,1,17,8,11,22,17,4,12,2,1,27,16,1,12,1,17,1,11,5,17,1,15,5,9,1,15,1,9,3,25,5,9,2,1,431,}, + {1,881,14,1,15,3,9,7,25,2,9,2,15,1,11,1,14,1,15,4,14,1,11,3,14,1,15,4,14,1,11,3,15,2,14,1,11,1,15,11,9,3,15,9,9,2,25,1,26,4,25,1,9,1,25,3,9,5,25,3,9,5,25,1,9,4,25,1,9,2,25,5,9,3,15,4,14,1,11,8,14,1,15,4,9,9,25,4,9,7,15,2,11,5,15,2,9,3,25,1,26,2,25,4,9,3,15,2,11,2,15,5,9,15,25,1,26,3,25,3,9,9,25,1,9,21,15,3,9,1,15,1,9,2,15,4,9,5,26,1,25,9,9,3,15,16,17,2,11,1,17,6,11,12,17,3,12,1,1,55,15,7,9,3,25,6,9,3,16,2,15,1,1,426,}, + {1,881,15,4,9,6,25,2,9,2,15,1,11,2,15,23,11,1,15,21,9,1,25,1,26,3,25,1,9,4,25,1,9,5,25,1,9,15,25,3,9,3,15,1,9,3,15,5,14,1,11,7,14,1,15,5,9,19,15,2,11,4,15,3,9,2,25,2,26,2,25,3,9,3,15,4,14,1,15,2,9,7,15,1,9,3,25,3,9,5,25,9,9,8,25,2,9,4,15,1,9,11,15,13,9,5,25,1,26,5,25,4,9,4,15,8,14,1,15,2,14,1,15,3,11,3,17,2,11,1,17,1,12,1,17,1,12,2,1,71,16,1,15,3,9,7,25,1,9,8,17,1,1,424,}, + {1,881,15,4,9,2,15,1,9,5,15,1,14,1,11,2,15,22,11,2,15,21,9,1,26,3,25,1,9,4,25,3,9,4,25,5,9,2,15,2,9,9,25,1,9,4,25,2,9,4,15,4,14,1,11,4,14,1,15,7,9,6,25,3,9,10,15,3,14,1,15,4,9,5,25,1,26,2,25,2,9,3,15,7,9,5,15,4,9,4,25,2,9,7,25,2,26,2,25,1,9,1,25,1,9,7,25,2,26,3,25,1,9,2,15,4,9,3,15,1,9,4,15,3,9,1,15,8,9,5,25,2,26,8,25,1,9,2,15,2,9,4,15,6,14,1,11,1,15,4,1,82,9,1,16,1,9,1,16,1,15,2,9,3,15,4,9,3,15,1,11,2,1,423,}, + {1,881,17,1,15,3,9,1,15,2,9,2,15,3,14,2,11,1,14,1,15,2,9,13,15,2,9,3,15,24,9,1,26,3,9,5,25,2,9,9,25,1,9,4,25,1,9,8,25,2,9,2,26,1,25,4,9,7,15,3,14,1,11,2,15,6,9,3,15,2,9,4,25,2,9,10,15,6,9,1,25,2,26,2,25,4,26,1,25,2,9,3,15,7,9,6,15,3,9,9,25,4,26,1,25,1,26,2,25,3,9,2,15,2,9,3,25,4,26,1,25,1,9,10,15,2,9,3,15,3,9,1,15,8,9,4,25,2,26,7,25,3,9,2,15,2,9,2,15,10,14,4,15,2,1,91,12,1,16,2,1,426,}, + {1,881,16,1,15,3,9,1,15,2,9,2,15,2,11,1,14,1,11,2,15,1,9,5,25,2,9,2,25,4,9,2,25,2,9,4,15,6,14,1,11,2,15,13,9,2,25,2,9,1,15,1,9,2,25,3,9,7,25,2,9,4,25,3,9,7,25,1,9,1,26,3,25,2,9,3,25,6,26,1,25,2,9,1,15,5,14,1,15,2,9,18,25,2,9,4,15,1,11,1,14,1,15,2,9,1,25,1,26,3,25,2,9,2,25,1,9,6,15,6,9,18,25,1,26,3,25,1,26,1,25,5,9,12,25,2,9,10,15,17,9,4,25,3,26,4,25,2,9,1,25,1,9,3,15,1,9,2,15,5,9,1,15,11,14,1,17,1,12,1,1,515,}, + {1,881,12,1,15,6,9,1,15,2,11,1,15,1,11,1,14,1,9,2,25,2,26,1,25,4,26,1,25,6,26,2,25,3,26,1,25,1,9,1,15,2,9,1,15,1,11,2,15,4,9,2,15,9,9,2,15,3,9,1,25,3,9,4,25,4,26,1,9,4,25,2,26,2,25,3,9,4,25,2,26,2,25,2,26,3,25,3,9,1,25,2,26,5,25,1,9,1,15,7,9,2,25,2,9,2,15,1,9,11,25,1,26,2,25,1,9,2,15,2,11,3,15,1,9,1,25,4,9,3,25,2,9,7,15,5,9,13,25,1,9,4,25,8,9,28,15,2,9,1,15,11,9,1,15,1,9,3,25,6,26,2,25,3,9,8,15,4,9,3,15,11,14,1,11,1,15,1,17,1,12,1,1,510,}, + {1,882,15,5,9,2,15,1,14,1,15,3,9,1,25,2,26,1,25,8,26,2,25,2,26,8,25,1,9,1,15,6,9,3,15,15,9,1,25,4,9,4,25,4,9,3,25,7,9,5,25,4,26,4,25,1,9,1,25,4,9,1,25,6,9,3,15,5,9,4,25,3,9,1,15,3,9,3,15,2,9,4,25,1,26,1,25,1,9,2,15,3,11,2,15,2,9,1,25,4,9,3,25,2,9,8,15,5,9,1,25,2,9,10,25,8,9,19,25,1,9,13,15,2,9,8,15,3,9,2,15,1,9,2,25,5,26,4,25,4,9,6,15,3,9,6,15,17,16,1,1,505,}, + {1,882,15,5,9,1,15,1,14,1,15,3,9,1,25,3,9,3,25,1,9,3,25,2,9,1,25,3,26,4,29,2,26,1,25,2,9,1,15,8,11,3,15,7,14,3,15,3,9,1,26,2,9,5,25,3,9,3,25,3,9,8,25,5,26,4,9,3,25,1,9,5,25,4,26,1,25,2,9,12,25,3,9,2,15,5,9,5,25,2,26,1,25,1,15,2,11,4,14,1,15,2,9,2,25,7,9,6,15,1,9,3,15,4,9,1,25,3,9,20,15,1,9,15,25,3,9,12,15,1,9,10,15,3,9,1,15,1,9,1,25,1,27,1,26,11,25,6,9,5,25,1,9,4,15,1,9,3,15,2,9,11,15,2,16,1,1,501,}, + {1,882,15,9,9,2,25,1,9,8,25,6,9,2,25,1,26,8,9,1,15,1,9,3,15,3,11,2,15,6,14,1,11,2,14,1,15,4,9,1,25,1,9,2,15,2,9,3,25,3,9,16,25,2,26,3,25,1,9,6,25,5,26,5,25,1,9,16,15,6,9,5,25,1,26,3,25,1,9,1,15,1,11,4,14,1,15,1,9,3,25,6,9,8,15,1,9,4,15,1,9,4,25,1,9,11,15,1,9,19,15,1,9,4,25,1,26,2,25,3,9,21,15,5,9,1,25,1,26,2,29,6,26,17,25,2,9,18,15,3,1,499,}, + {1,882,15,8,9,10,25,3,9,1,25,5,9,1,25,2,26,6,9,2,25,2,9,1,15,6,11,4,14,2,15,1,14,1,15,2,14,1,15,2,9,2,15,4,9,2,25,1,9,21,25,4,9,5,25,6,26,1,25,6,9,4,15,3,9,3,15,12,9,5,25,1,26,4,25,1,9,1,15,6,9,2,25,1,9,1,25,7,9,1,25,5,9,8,25,1,9,15,15,1,9,10,25,2,9,6,15,2,9,3,25,4,9,2,25,1,9,6,15,2,9,14,15,3,9,2,25,1,26,4,29,6,26,12,29,1,26,4,25,1,26,2,25,4,9,10,15,2,1,499,}, + {1,882,15,6,9,7,25,1,9,3,25,4,26,5,25,2,26,2,25,1,26,7,25,1,9,4,15,3,14,1,11,2,15,3,14,2,15,1,14,1,11,2,15,1,9,1,15,5,9,1,25,2,9,10,25,2,9,9,25,2,26,2,25,1,9,8,25,1,9,9,25,3,9,3,15,9,9,1,15,4,9,8,25,1,26,5,25,1,9,1,15,5,9,1,25,1,26,1,25,10,26,4,25,1,9,8,25,1,9,5,15,1,9,8,15,1,9,17,15,3,9,5,25,3,9,6,15,3,9,16,15,3,9,2,27,1,26,4,29,3,26,13,29,4,26,6,25,2,9,7,1,504,}, + {1,882,15,5,9,6,25,4,9,1,25,2,26,8,25,2,26,5,29,2,26,2,25,1,9,2,25,2,9,1,15,9,14,1,11,4,14,3,15,3,9,14,25,2,9,1,15,2,9,5,25,2,26,3,25,1,9,7,15,2,9,13,25,3,9,5,15,6,9,2,15,2,9,9,25,5,9,1,15,4,9,2,25,2,26,7,25,3,9,1,25,1,26,3,25,1,9,18,15,1,9,1,15,2,9,1,15,1,9,18,15,3,9,20,25,3,9,11,15,3,9,1,27,1,26,3,29,7,26,4,29,11,26,4,9,2,1,510,}, + {1,882,15,4,9,6,25,6,26,6,25,2,26,2,25,1,9,1,25,1,26,2,29,2,26,1,25,1,9,1,25,1,26,4,25,1,9,3,15,7,14,1,11,5,14,1,15,6,9,11,25,2,9,1,15,2,9,5,25,6,9,1,25,3,9,4,15,4,9,2,25,1,9,5,15,1,9,8,15,3,9,2,15,11,9,6,25,1,9,1,25,2,9,2,15,2,14,1,11,1,15,1,9,2,25,2,9,1,25,8,9,2,26,1,25,3,9,7,15,1,9,6,15,1,9,6,15,1,9,9,25,1,9,11,15,3,9,2,25,2,9,12,25,7,9,15,25,1,26,3,29,13,28,1,29,2,28,3,29,4,26,1,25,1,9,1,1,510,}, + {1,882,17,1,15,2,9,5,25,1,26,2,25,3,26,6,25,3,26,3,25,1,26,5,25,1,9,1,25,1,26,5,25,2,26,1,9,1,15,1,11,1,14,1,15,4,11,2,15,10,9,1,15,1,9,5,25,2,9,5,15,3,9,8,25,4,26,4,25,1,9,9,15,2,9,3,25,2,9,10,15,16,9,4,25,5,9,2,15,1,14,1,11,1,15,1,9,12,25,1,9,5,25,1,9,3,15,2,9,4,15,1,9,22,15,1,9,35,25,2,9,6,25,2,9,9,25,1,26,3,29,21,26,1,9,1,1,510,}, + {1,882,15,1,9,3,15,1,9,2,25,5,26,16,25,4,26,5,25,1,26,4,15,4,9,2,15,13,9,3,15,1,9,2,25,4,9,13,25,1,9,2,25,3,26,4,25,1,9,12,15,5,9,1,25,3,9,7,15,3,11,1,14,1,15,5,9,1,15,7,9,4,25,2,9,3,15,3,14,1,15,1,9,13,25,2,9,7,15,2,9,11,25,5,9,21,25,2,9,24,25,2,9,16,15,1,9,1,25,2,26,9,29,13,26,1,1,510,}, + {1,881,12,1,9,2,15,2,9,3,25,3,26,8,25,2,26,5,25,1,26,4,25,2,26,3,25,1,26,1,29,1,28,1,29,1,25,1,9,1,15,2,25,2,9,1,15,13,9,2,15,2,9,4,25,5,9,1,15,2,9,6,25,1,9,7,25,3,26,3,25,2,9,11,15,4,9,2,25,4,9,5,15,10,9,4,15,2,9,1,15,2,9,5,15,4,14,1,15,5,9,12,25,3,9,5,15,7,9,2,25,1,9,7,25,5,9,35,25,1,9,7,25,3,9,6,25,1,9,8,15,2,9,2,27,1,26,9,29,12,26,1,1,509,}, + {1,880,15,1,9,1,15,2,9,5,25,3,26,13,25,1,26,5,25,3,9,2,25,1,26,1,29,2,26,2,25,2,26,3,25,1,9,1,15,18,9,3,26,3,25,1,9,20,25,3,26,9,25,5,9,2,15,2,9,3,25,5,9,3,15,11,9,5,15,1,9,2,15,1,9,5,15,4,14,2,15,4,9,24,15,4,9,11,25,4,9,1,25,1,9,22,25,1,9,5,25,3,9,1,25,1,9,7,25,4,9,5,25,3,9,7,15,3,9,1,27,1,26,2,29,17,26,1,27,1,1,508,}, + {1,879,9,1,15,6,9,4,25,3,26,15,25,4,9,3,25,1,26,2,29,1,26,8,9,1,15,3,9,3,15,7,11,3,15,2,9,2,26,5,25,1,9,10,25,2,9,4,25,9,26,3,25,7,26,3,25,2,9,2,25,1,9,1,25,1,26,2,25,3,9,3,15,7,9,19,15,9,9,16,25,7,9,19,25,2,9,3,15,1,9,9,15,2,9,5,25,3,9,1,25,3,9,2,25,3,9,9,25,6,9,3,25,8,9,4,15,2,9,1,26,2,29,16,26,2,25,1,1,507,}, + {1,878,15,3,9,7,25,1,9,1,25,2,26,15,25,8,26,11,25,1,9,1,15,1,9,1,25,2,9,1,15,3,11,6,15,3,9,1,25,3,9,2,25,7,9,7,15,1,9,1,25,2,26,1,25,1,9,6,25,10,26,4,25,5,9,3,25,6,9,4,15,5,9,15,25,1,9,5,15,4,9,1,15,1,9,2,25,4,9,2,25,1,9,4,25,6,26,7,25,2,9,5,10,1,9,15,15,3,9,15,25,12,9,1,25,10,9,6,25,2,9,3,25,5,9,3,15,2,9,1,25,1,26,1,29,3,26,2,29,11,26,1,25,1,1,506,}, + {1,877,14,1,15,1,9,9,25,4,26,25,25,1,26,1,25,2,26,4,25,2,9,1,25,3,9,1,15,1,14,1,11,6,15,4,9,1,25,2,26,2,25,4,26,3,25,2,9,6,25,1,26,2,25,3,9,2,25,17,9,16,25,1,9,4,15,5,9,9,15,2,9,1,15,2,9,1,25,2,9,5,15,3,9,3,25,13,26,15,10,1,9,4,25,3,10,2,25,1,9,5,25,1,9,3,15,3,9,5,15,2,9,18,25,2,9,2,25,1,26,2,25,4,9,8,25,3,9,3,25,5,9,4,15,2,9,1,26,6,29,3,26,1,29,6,26,1,27,1,1,505,}, + {1,876,15,1,9,7,25,8,26,1,25,2,26,15,25,1,26,4,25,2,26,2,25,1,26,8,25,1,9,1,15,6,11,2,14,1,11,2,15,2,9,1,25,1,26,2,25,2,9,1,25,1,26,4,9,1,15,1,9,6,25,4,26,1,25,15,9,20,15,3,9,5,15,6,9,5,15,9,9,1,25,1,9,4,15,3,9,3,25,9,27,3,26,18,27,1,9,4,27,1,26,2,27,1,25,3,9,8,15,2,9,25,25,2,9,2,25,2,26,1,25,8,9,5,25,4,9,3,25,3,9,8,26,10,29,5,26,2,1,504,}, + {1,874,12,1,9,8,25,1,26,1,25,3,26,3,25,3,26,10,29,1,26,6,25,2,9,2,26,11,29,1,26,1,9,2,25,2,9,1,15,4,14,2,15,3,9,3,25,2,9,2,15,1,9,1,25,1,9,4,25,2,26,2,25,2,26,2,25,1,26,1,25,6,26,1,25,13,9,8,25,2,9,8,15,3,9,14,25,2,9,2,15,8,9,13,10,1,25,1,26,5,27,1,25,2,27,1,26,19,25,1,9,3,25,1,26,3,25,3,9,5,25,1,9,26,25,4,9,4,25,2,9,6,25,1,9,2,25,2,9,1,25,5,9,2,25,4,9,8,25,1,26,9,29,4,26,2,25,1,1,502,}, + {1,873,9,4,25,1,9,3,15,1,9,2,25,2,26,3,25,4,26,3,25,1,9,1,25,1,26,11,25,3,26,5,25,4,26,2,28,2,26,1,25,1,26,3,9,1,15,1,9,1,15,1,14,1,11,2,14,1,15,1,9,2,15,2,9,4,15,2,9,1,25,2,26,7,29,2,26,1,25,2,9,6,25,2,9,2,25,3,26,7,25,1,9,10,25,6,9,4,15,4,9,19,15,6,9,14,25,1,27,1,26,27,25,1,10,1,9,3,10,1,25,1,27,1,25,4,9,5,25,2,9,12,15,1,9,2,15,2,9,7,25,4,9,2,25,1,9,14,25,4,9,4,25,5,9,7,25,1,26,8,29,4,26,2,27,1,1,501,}, + {1,871,9,4,25,1,9,6,25,2,26,3,25,1,9,2,25,5,9,2,25,1,26,18,25,1,26,2,25,1,26,2,29,1,28,1,26,2,29,1,26,1,9,3,25,2,15,2,14,1,11,3,15,4,9,3,15,1,9,2,25,1,26,11,25,2,9,3,25,3,9,5,25,3,26,3,25,4,9,13,25,6,9,5,15,2,9,11,25,4,9,14,10,1,9,11,10,1,27,1,26,29,27,1,25,1,10,1,9,3,10,1,25,4,10,4,9,12,15,9,9,14,15,1,9,14,25,1,9,3,25,6,9,7,25,1,26,3,29,9,26,2,1,500,}, + {1,870,9,7,26,1,25,1,9,1,25,3,26,2,25,3,9,5,25,1,9,1,25,2,26,5,25,1,26,6,25,3,26,1,25,3,26,7,29,1,28,1,29,1,26,1,9,1,25,1,26,2,9,1,15,5,11,1,15,6,9,3,25,1,26,5,25,1,26,3,29,2,26,1,25,2,9,5,25,1,9,4,25,4,26,6,25,8,9,7,25,9,9,20,25,1,9,16,10,5,9,6,10,1,25,1,27,3,25,2,27,1,26,11,27,2,25,3,27,8,25,2,10,1,9,4,25,4,10,1,9,1,10,1,9,11,15,8,9,11,15,2,9,2,15,2,9,16,25,4,9,1,25,2,9,8,27,1,26,2,29,8,26,2,25,1,1,498,}, + {1,868,9,1,15,5,9,1,25,1,26,1,9,1,15,1,9,2,25,1,26,1,25,6,9,5,25,3,26,1,25,2,26,1,25,1,26,4,25,9,26,5,25,1,26,9,9,1,15,12,9,2,26,10,29,1,28,1,26,2,25,4,26,1,25,2,9,4,25,1,9,3,25,2,26,9,25,5,9,8,25,6,26,1,25,1,9,13,25,1,9,13,10,1,25,8,10,5,25,2,27,2,25,1,9,6,25,1,27,1,26,10,27,2,25,2,27,3,26,2,27,3,25,5,27,2,25,3,10,1,9,4,25,3,10,1,9,12,15,6,9,3,15,1,9,2,25,1,9,1,15,3,9,4,15,3,9,10,15,1,9,6,25,7,9,8,25,1,26,11,27,1,1,497,}, + {1,867,15,8,9,2,15,1,9,2,25,1,26,1,25,3,26,3,25,5,26,1,25,4,26,4,25,3,9,3,25,6,26,4,25,3,26,3,29,1,26,3,25,1,9,4,15,5,11,2,15,2,9,3,25,1,26,3,29,1,28,5,26,2,25,3,26,2,25,3,9,3,25,3,9,1,25,3,26,2,25,1,9,2,25,6,9,3,25,6,9,3,25,10,9,6,15,4,9,17,10,6,25,7,10,4,25,1,10,2,9,10,10,1,25,2,27,1,26,11,27,1,26,4,27,1,25,10,10,1,9,4,10,1,25,2,10,1,9,17,25,1,9,2,15,1,9,4,15,2,9,23,25,6,9,11,26,11,10,1,1,495,}, + {1,865,12,1,15,8,9,6,26,2,25,1,26,6,25,6,26,2,25,1,26,3,25,1,9,5,25,1,26,2,25,5,26,2,9,1,25,1,26,7,25,2,26,4,25,1,9,1,15,3,11,3,15,4,9,3,25,1,26,1,29,1,28,2,29,1,26,3,9,1,25,1,26,2,25,1,9,3,25,2,26,3,25,2,26,4,25,2,9,7,25,4,9,1,25,5,9,2,25,11,9,15,15,2,9,14,10,1,25,14,10,4,25,4,10,2,9,10,10,1,25,2,27,1,26,10,27,1,25,12,9,5,10,1,25,2,10,1,9,14,25,3,9,2,25,1,9,2,15,3,9,10,15,3,9,7,25,6,9,14,27,1,26,9,27,1,1,494,}, + {1,864,15,6,9,3,25,1,9,1,15,1,9,4,25,2,26,6,25,1,9,3,25,9,9,5,25,1,26,1,25,2,26,2,25,2,26,2,25,1,26,8,25,1,26,5,9,1,15,5,14,1,11,1,14,1,15,5,9,1,25,1,26,2,25,1,9,1,25,2,26,1,25,2,26,4,25,1,26,5,25,2,26,6,25,1,9,9,25,5,26,2,25,14,9,39,10,1,25,11,10,1,9,2,10,2,25,2,27,2,25,2,10,2,9,12,25,1,26,1,29,4,26,4,25,12,10,1,9,5,10,1,25,2,10,3,9,11,25,1,9,5,15,7,9,4,15,5,9,3,25,1,9,4,25,5,9,15,27,1,29,3,26,6,25,1,1,492,}, + {1,862,14,1,15,7,9,3,15,2,9,1,15,2,9,2,25,1,26,6,25,3,9,2,25,9,9,3,25,6,26,1,25,2,26,1,25,3,26,1,25,1,26,3,9,2,25,1,26,6,25,1,9,3,15,2,14,3,15,4,9,5,25,1,26,4,25,2,26,2,25,4,26,3,25,3,9,1,25,1,26,4,25,1,9,3,25,2,9,5,25,8,9,4,25,3,9,9,15,3,9,4,15,3,9,8,25,2,9,22,25,9,10,6,25,3,27,1,26,6,27,1,25,1,10,1,9,7,25,1,26,2,29,2,26,3,27,1,25,9,9,1,10,1,25,1,10,1,9,5,10,1,25,5,9,9,25,1,9,4,15,8,9,6,15,3,9,3,25,2,26,2,25,3,9,18,25,1,26,8,27,1,1,491,}, + {1,860,15,14,9,1,15,4,9,1,26,9,25,8,26,4,25,1,9,1,25,7,26,2,25,1,9,2,25,1,26,1,25,2,26,1,25,1,9,2,25,2,26,4,25,3,9,3,15,13,9,2,25,5,26,2,9,2,25,5,9,5,25,4,26,2,25,2,9,14,25,3,26,1,25,1,9,4,25,1,9,59,10,1,25,4,10,1,9,6,10,1,25,4,27,1,26,4,27,1,25,1,9,6,25,1,26,6,27,1,25,10,9,1,10,1,25,1,10,1,9,5,25,5,9,7,25,2,9,4,15,9,9,4,15,6,9,3,25,2,9,22,26,8,25,1,1,489,}, + {1,858,15,21,9,1,25,2,9,2,25,1,26,3,25,3,26,2,25,3,26,6,25,2,26,1,25,1,26,4,25,1,9,2,25,1,26,4,25,1,9,2,25,1,26,6,25,2,26,2,25,1,9,2,15,1,9,3,15,9,9,4,25,5,9,1,26,1,25,2,9,5,25,3,9,3,25,2,26,4,25,4,9,3,25,2,26,3,25,5,9,3,25,3,9,23,25,2,9,18,15,6,9,12,10,2,25,1,10,1,9,8,10,3,25,5,27,2,26,2,27,1,25,1,10,1,9,5,25,1,27,1,26,5,25,12,9,1,10,2,9,4,10,1,25,3,10,1,9,15,15,15,9,1,15,2,9,25,25,1,26,7,1,488,}, + {1,856,12,1,15,3,9,2,15,4,9,2,15,11,9,2,15,1,9,1,25,1,26,3,25,4,26,1,25,1,9,2,25,2,26,4,25,5,26,2,25,3,9,1,25,1,26,4,25,1,9,1,25,1,26,16,25,1,9,2,15,9,9,2,25,1,26,2,9,4,25,1,26,1,25,1,9,1,25,2,9,2,25,3,26,2,25,5,26,2,25,4,9,3,25,4,9,4,25,3,9,8,25,2,9,10,25,2,9,19,25,2,9,1,25,4,9,4,15,7,9,21,10,3,25,9,27,3,25,1,10,1,9,7,25,2,26,3,25,13,9,1,10,1,9,5,10,1,25,3,10,1,9,12,15,6,14,1,15,13,9,11,25,2,9,11,25,1,26,5,25,1,10,1,1,486,}, + {1,854,9,1,15,3,9,1,25,1,9,2,15,1,9,1,25,1,26,2,9,3,15,11,9,1,26,2,25,1,9,1,25,1,26,5,25,4,26,4,25,1,26,2,25,4,26,3,25,1,26,4,25,1,9,1,25,1,26,15,9,4,15,9,9,2,25,2,9,4,25,1,26,3,25,1,9,2,25,3,9,2,25,1,26,3,25,2,9,6,25,3,9,4,25,5,26,1,25,1,9,40,15,5,9,11,15,10,9,27,10,3,25,5,27,2,25,1,10,1,9,6,25,2,27,2,25,16,9,5,10,1,25,2,10,1,9,12,15,1,9,3,15,15,9,6,25,9,9,3,25,1,9,5,25,1,27,1,26,4,25,1,1,485,}, + {1,852,9,1,15,2,9,2,25,1,9,1,25,2,26,1,25,3,9,1,15,5,9,4,15,4,9,2,25,1,9,3,25,1,26,8,25,2,26,3,25,4,26,3,25,5,26,13,25,1,9,2,25,1,26,3,25,1,9,2,15,9,9,4,15,2,9,3,26,5,25,1,9,3,25,3,9,1,25,4,9,2,25,1,9,4,25,3,9,3,25,1,26,2,25,2,9,5,25,1,26,2,25,4,9,20,25,2,9,37,15,5,9,29,10,3,25,3,27,2,25,1,9,6,25,1,26,3,27,1,25,8,26,2,25,5,9,6,25,2,9,16,15,14,9,3,15,1,9,2,25,3,26,3,25,2,9,4,25,3,9,4,25,1,26,4,9,1,1,483,}, + {1,850,9,5,25,1,26,5,25,1,9,2,15,6,9,2,15,1,9,1,15,4,9,2,15,2,9,1,25,1,26,8,25,3,26,1,25,3,26,6,25,2,9,3,25,2,26,11,25,2,26,3,25,2,26,1,25,1,9,2,15,15,9,2,26,2,29,1,26,4,25,1,9,1,26,2,25,2,26,3,25,1,9,2,25,1,9,13,15,2,9,5,25,1,26,6,25,8,9,8,25,2,26,6,25,5,9,33,15,6,9,33,10,1,25,5,9,5,25,1,27,1,26,4,27,1,25,4,27,1,26,4,27,3,25,2,9,6,10,1,9,15,15,18,9,3,25,1,26,3,25,2,9,4,25,1,9,2,25,2,9,3,25,1,26,4,16,1,1,481,}, + {1,848,9,5,25,1,9,1,25,1,26,3,25,1,9,2,15,1,9,3,15,7,9,1,15,2,9,1,15,4,25,1,26,2,25,3,26,1,28,1,26,2,25,2,26,1,25,1,9,1,25,2,26,4,25,2,9,7,26,19,25,2,9,3,15,4,9,2,15,2,9,1,15,4,9,2,25,1,26,6,25,2,9,1,25,4,26,5,25,1,9,2,25,1,9,2,25,3,9,2,25,2,26,3,25,2,9,3,25,4,9,4,25,4,26,3,25,4,9,17,25,7,9,5,25,2,9,23,15,9,9,11,10,8,9,12,25,2,27,1,26,1,27,1,25,1,9,5,25,1,26,5,27,2,25,2,27,3,26,3,27,1,26,2,25,2,9,21,15,4,14,2,15,7,9,6,25,3,26,2,25,2,9,1,25,7,9,4,25,1,26,3,25,1,16,1,1,479,}, + {1,846,9,9,26,4,9,6,15,7,9,1,15,6,9,1,25,2,9,1,15,2,9,1,26,1,29,1,26,6,25,2,26,3,25,2,26,3,25,2,26,1,25,1,9,1,25,1,26,21,25,1,9,5,25,1,26,2,25,1,9,1,15,5,9,1,25,3,26,7,9,2,25,1,26,1,25,9,9,2,25,1,9,7,25,5,9,2,25,1,9,3,25,3,9,8,25,2,26,1,25,2,26,1,25,4,9,8,25,4,26,6,25,7,9,7,25,2,9,5,25,1,9,11,15,14,9,6,10,1,25,8,10,2,9,12,25,2,27,2,25,3,9,3,25,2,26,6,27,10,26,3,25,2,9,18,15,4,11,1,15,7,9,6,25,2,9,1,25,1,26,3,25,1,9,1,25,5,9,6,25,1,27,1,26,2,25,1,1,478,}, + {1,844,9,1,15,1,9,4,25,1,9,3,26,4,25,1,9,4,25,1,9,1,15,6,9,1,15,6,9,1,15,5,9,1,26,9,25,1,26,3,25,2,26,2,25,1,26,1,25,1,26,1,25,1,26,8,29,1,26,11,29,1,28,1,26,1,25,1,26,3,25,1,9,4,15,9,9,2,26,7,25,1,9,1,25,4,9,2,25,1,9,3,25,2,26,2,25,4,9,8,25,5,9,3,25,3,9,6,25,5,9,2,25,1,9,8,25,2,26,2,25,4,9,3,25,3,26,2,25,6,9,17,25,2,9,10,15,13,9,5,10,1,25,9,9,25,25,2,26,6,27,3,25,5,27,1,26,4,25,1,10,1,9,15,15,3,14,1,15,7,9,5,25,4,9,2,25,1,26,1,25,2,9,2,25,2,9,9,25,1,26,2,9,1,1,476,}, + {1,842,9,1,15,1,9,4,25,3,9,2,25,1,26,3,25,1,26,1,9,1,25,2,26,1,25,1,9,1,15,3,9,4,15,12,9,1,25,1,26,2,25,2,26,13,25,4,26,2,25,1,26,16,28,1,26,4,28,1,29,1,26,1,25,5,9,2,15,7,9,1,25,1,26,1,25,2,26,3,25,3,9,1,25,4,9,1,26,3,25,4,26,4,25,2,9,6,25,4,9,6,25,1,26,1,25,1,9,6,26,2,25,1,9,11,25,2,9,2,25,16,9,21,25,1,9,14,15,3,9,2,15,8,9,4,10,4,9,25,10,1,25,1,10,1,9,6,10,1,25,1,27,1,26,1,27,1,25,2,27,3,25,2,27,1,25,1,27,1,26,4,25,2,9,14,15,2,14,1,15,7,9,6,25,4,9,2,25,1,9,3,25,2,9,10,25,1,26,2,9,1,1,474,}, + {1,840,9,1,15,1,9,6,25,1,26,1,9,3,26,2,25,2,26,4,25,1,9,1,25,1,9,3,25,2,9,3,15,11,9,2,25,2,9,2,26,11,25,1,26,3,25,1,26,4,25,2,26,1,25,1,26,2,25,1,26,14,29,1,26,2,25,2,26,4,25,1,9,3,15,2,9,2,25,3,26,2,29,1,26,15,25,2,9,3,25,3,26,2,25,2,9,10,25,1,9,1,25,1,26,1,25,1,9,9,25,2,9,19,25,2,26,3,25,2,9,1,25,3,26,1,25,1,9,3,25,9,9,11,25,1,9,70,25,1,27,2,25,3,27,4,26,3,27,1,26,4,27,1,25,2,9,13,15,6,9,2,15,1,9,6,25,3,9,6,25,1,26,1,25,4,9,8,26,2,9,1,1,472,}, + {1,838,9,1,15,2,9,3,25,5,9,2,25,1,26,2,25,3,26,1,25,4,26,2,25,1,9,2,25,1,9,4,15,12,9,1,25,1,9,1,25,1,26,10,25,1,26,3,25,2,26,1,25,1,26,2,25,1,26,1,25,3,26,19,25,1,26,2,29,1,28,2,29,1,26,1,9,4,15,1,9,3,25,1,26,10,25,1,26,4,25,3,26,1,25,2,9,3,25,1,26,1,25,2,26,2,25,1,9,8,25,3,9,2,25,4,9,7,25,4,9,6,15,2,9,5,25,14,9,7,25,13,9,72,25,2,10,1,9,5,10,1,25,6,27,3,26,8,27,1,25,2,10,1,9,13,15,4,9,6,15,2,9,1,25,2,9,7,25,2,26,1,25,3,9,8,25,2,9,1,1,470,}, + {1,836,9,1,15,1,9,4,25,6,9,2,25,2,26,1,25,2,26,2,25,4,26,3,25,2,26,1,25,1,9,2,15,1,9,1,15,1,9,2,15,8,9,3,25,1,26,2,25,1,26,2,25,1,26,4,25,1,26,3,25,2,26,7,25,1,26,1,25,3,26,16,29,1,28,3,29,1,26,2,9,6,15,1,9,5,25,2,26,1,29,2,26,1,25,1,26,2,9,1,25,8,9,1,26,1,25,1,9,2,25,1,26,1,25,3,26,3,9,3,25,1,9,11,25,5,9,3,25,4,9,11,25,3,9,7,25,1,26,1,25,2,9,12,25,2,9,3,25,2,26,1,25,7,9,2,25,8,9,13,15,6,9,12,10,2,25,9,9,4,10,1,9,14,10,3,9,4,10,1,25,10,27,1,26,7,27,1,25,2,10,1,9,12,15,3,9,1,25,1,9,4,15,2,9,1,25,1,26,1,25,1,9,7,25,3,9,11,10,1,1,469,}, + {1,834,9,5,25,3,26,1,25,2,9,1,25,1,9,2,25,1,26,5,25,1,9,2,25,3,26,5,25,1,9,7,15,4,9,2,15,5,9,1,25,1,9,2,25,1,9,3,25,4,26,2,25,1,9,3,25,1,9,1,26,3,25,1,26,3,25,1,9,1,25,1,26,8,25,1,26,5,29,2,28,1,29,1,26,2,25,2,9,8,25,1,26,1,25,1,15,2,9,1,25,1,26,3,25,1,26,3,25,2,9,5,25,1,26,1,25,1,26,2,25,2,26,4,25,2,26,1,25,1,9,5,25,2,9,9,25,1,26,3,25,5,9,2,25,2,9,14,25,3,26,4,25,1,9,5,25,6,9,3,25,9,26,17,25,4,9,14,15,3,9,11,10,1,25,21,10,1,9,6,25,3,10,1,9,4,10,1,25,1,27,1,25,10,27,1,26,6,25,3,10,1,9,3,10,1,9,8,15,1,9,1,25,3,9,5,25,1,26,1,25,2,9,1,25,2,9,18,1,467,}, + {1,831,9,6,25,6,9,2,25,2,9,1,25,1,26,2,25,2,26,1,25,1,9,2,25,3,26,5,9,5,25,2,9,2,15,2,9,4,15,8,9,3,25,1,26,4,25,2,9,6,25,1,26,2,25,2,26,2,25,2,26,8,25,1,9,1,25,1,26,4,25,2,26,2,25,1,26,2,25,3,26,1,25,2,9,6,15,3,25,1,26,9,25,1,9,4,25,2,26,3,25,1,26,1,25,2,26,2,25,3,26,1,25,1,9,23,25,3,9,3,25,4,9,7,25,1,26,6,25,3,26,3,9,3,25,8,9,2,25,1,26,2,25,7,26,7,25,4,26,4,25,3,9,2,25,1,9,30,10,1,25,21,9,6,25,2,27,1,25,1,9,5,25,11,27,1,26,8,27,1,25,2,10,3,25,2,9,9,25,4,9,3,25,1,9,25,1,464,}, + {1,829,9,6,25,2,26,2,25,1,26,2,25,9,26,3,25,1,9,2,25,3,26,4,9,4,25,2,26,1,9,2,25,1,9,4,15,10,9,1,26,9,25,3,9,2,25,1,26,3,25,1,26,2,25,2,26,5,25,1,26,3,25,2,26,5,25,1,26,3,25,1,26,2,25,3,9,3,15,1,9,3,15,4,9,1,26,11,9,3,25,4,26,6,25,3,9,7,25,2,9,5,25,5,9,3,25,7,26,1,25,1,26,3,25,3,26,1,25,2,9,3,25,2,9,9,25,6,26,4,25,1,26,2,25,1,26,1,25,1,9,1,25,11,26,4,25,1,26,4,25,2,26,1,25,13,9,26,25,22,10,1,9,6,25,4,9,4,25,1,27,2,25,7,27,3,26,9,27,1,25,1,10,1,9,1,10,1,25,3,10,1,9,7,25,4,9,1,25,2,9,25,1,462,}, + {1,827,9,5,25,2,26,1,25,5,26,1,25,3,26,1,25,9,9,1,25,1,9,1,25,3,26,5,25,1,26,2,25,1,26,1,9,2,26,1,9,1,15,2,9,1,15,10,9,1,26,3,25,1,26,6,25,2,9,2,25,2,26,1,25,1,9,1,25,3,26,1,25,1,26,3,9,2,25,2,26,15,25,1,9,7,15,7,9,1,26,4,25,4,26,3,25,1,9,1,25,1,26,4,25,2,26,7,25,1,9,3,25,1,9,2,25,5,26,2,25,2,9,6,25,19,9,10,25,16,26,4,25,5,9,7,25,1,26,2,25,4,26,3,25,2,9,2,25,6,26,1,25,8,9,22,10,1,25,21,9,8,25,3,10,1,9,1,16,1,9,2,25,1,26,3,27,1,25,5,27,3,26,10,27,1,25,1,10,1,9,2,25,4,9,12,25,2,9,1,25,2,9,17,25,1,9,4,1,459,}, + {1,825,9,5,25,8,26,5,25,2,9,2,26,2,25,2,9,1,25,3,9,3,25,3,26,3,25,1,26,2,25,1,26,1,9,2,26,1,25,1,9,4,15,9,9,1,26,1,25,1,9,1,25,3,26,6,25,5,9,4,25,2,26,2,25,1,26,1,25,1,9,1,25,3,26,1,25,1,26,6,29,2,26,5,25,1,9,4,26,3,25,1,9,3,15,3,25,1,26,3,25,7,26,3,25,2,9,2,25,3,26,1,25,2,26,3,25,3,9,7,26,1,25,2,9,12,25,3,26,5,25,2,9,2,25,1,9,2,25,2,9,4,25,2,9,7,25,1,26,2,9,1,25,7,9,3,25,1,26,2,25,2,26,2,25,1,9,2,25,6,9,1,25,1,26,7,25,2,9,3,25,1,9,3,25,1,26,1,25,2,9,1,25,7,9,20,25,25,10,1,9,6,10,1,25,3,9,4,25,1,26,3,25,5,27,3,26,13,25,1,10,1,9,2,25,4,10,1,9,24,25,4,9,10,1,456,}, + {1,822,9,5,25,4,26,4,25,2,26,5,25,2,9,2,25,1,26,1,25,1,9,2,25,1,9,4,25,4,26,3,25,2,26,6,25,1,9,5,15,9,9,5,25,1,9,1,25,1,26,4,25,3,9,6,25,4,26,2,25,1,9,3,25,1,26,14,25,1,26,1,25,1,26,2,25,1,9,3,25,1,9,3,15,4,25,5,26,3,25,3,26,2,25,1,9,5,25,1,26,5,25,1,9,11,25,2,9,1,25,4,9,1,25,2,26,2,25,10,26,4,25,1,9,9,25,2,9,9,25,1,9,4,25,1,9,2,25,1,9,5,25,11,9,1,25,1,26,5,25,1,9,8,25,5,26,4,25,1,26,2,25,4,9,14,25,13,26,3,25,10,9,3,25,8,9,4,10,1,25,3,9,5,25,9,26,16,25,1,10,1,9,2,25,2,27,1,25,2,9,9,15,3,9,2,15,1,9,8,25,7,9,6,10,1,1,454,}, + {1,820,9,5,25,2,26,4,25,2,26,1,25,3,26,1,25,2,26,2,25,2,9,2,25,2,9,4,25,1,9,2,25,1,26,1,25,2,26,2,25,1,9,1,25,1,26,6,25,1,9,6,15,2,11,1,15,6,9,4,25,5,26,3,25,3,9,10,26,1,25,1,9,4,26,13,25,1,26,3,25,2,26,3,9,3,15,6,9,3,25,1,26,2,29,1,26,2,25,1,9,2,25,1,26,2,9,5,25,1,26,5,25,8,9,2,25,2,9,3,25,1,26,9,25,1,9,1,25,3,9,3,25,4,26,2,25,1,9,6,25,3,9,12,15,3,9,5,25,1,9,5,25,2,26,4,25,4,9,6,25,1,9,4,25,6,26,7,25,2,26,3,25,3,9,14,25,3,26,4,25,5,27,1,26,4,27,1,25,28,9,1,16,1,15,1,9,2,25,3,9,1,10,1,25,5,26,16,27,1,10,1,9,2,10,1,25,1,26,1,25,2,9,10,15,1,9,1,15,1,9,2,15,4,9,7,25,4,9,5,10,3,1,450,}, + {1,818,9,7,25,2,26,2,25,9,9,1,26,3,25,2,9,2,25,1,9,3,25,2,9,2,25,4,26,3,25,1,26,8,25,2,9,3,15,11,9,4,25,4,26,6,25,1,9,2,25,1,9,6,25,1,9,5,25,1,26,12,25,1,26,10,25,1,26,1,25,1,9,2,15,2,9,5,26,5,25,1,9,2,25,1,26,3,9,2,15,1,9,1,25,1,26,4,25,3,26,3,25,2,9,4,25,6,26,2,25,2,9,7,25,4,9,11,25,4,9,1,25,1,26,2,25,1,9,4,25,2,9,12,25,3,9,4,25,1,26,4,25,6,9,3,25,8,26,3,25,1,26,8,25,2,26,4,25,1,9,7,25,2,9,5,25,2,26,6,13,1,25,4,26,3,25,21,9,2,10,1,25,7,9,4,10,1,25,1,10,1,9,4,10,1,25,4,27,1,26,16,25,1,9,2,10,1,25,1,26,1,25,2,9,5,25,2,9,6,15,5,9,8,25,2,9,7,25,2,10,1,9,2,1,445,}, + {1,815,9,10,25,7,26,2,25,3,26,5,25,3,9,1,25,1,26,2,25,2,9,1,25,5,26,2,25,2,26,9,9,4,15,12,9,1,15,1,9,2,25,1,26,5,25,5,9,1,25,2,9,5,25,3,9,2,15,1,9,1,25,1,26,4,29,2,26,9,25,2,9,2,25,1,26,3,25,1,9,5,15,1,9,3,25,1,26,2,25,3,9,5,25,1,26,9,25,1,26,3,25,2,26,3,25,1,9,5,25,3,9,2,25,1,9,10,15,1,9,2,25,2,9,10,25,2,9,3,25,2,9,1,25,2,9,3,25,4,9,10,25,5,9,4,25,1,26,9,25,8,9,1,25,1,9,1,25,1,26,17,25,2,9,4,25,5,9,5,25,2,26,4,25,5,27,1,26,3,25,22,10,1,9,4,10,1,25,4,10,1,9,5,10,1,9,6,25,4,27,1,26,13,29,2,26,1,25,1,9,2,10,1,25,1,26,1,25,3,9,1,25,7,9,2,15,6,9,9,25,1,9,4,15,1,9,3,25,11,27,2,25,2,27,1,25,2,10,3,1,426,}, + {1,813,9,8,25,7,26,1,25,1,26,3,25,2,26,3,25,2,26,4,25,1,9,1,25,3,9,3,25,5,26,1,25,2,26,6,25,1,26,1,9,6,15,2,9,6,15,5,9,2,25,1,9,4,25,1,9,10,25,2,9,1,25,2,9,1,25,1,26,2,9,2,26,4,29,1,26,14,25,3,26,2,25,1,9,4,15,3,9,4,25,6,9,4,25,1,9,1,25,1,26,3,25,1,9,1,15,1,9,2,25,1,9,4,25,1,26,3,25,4,9,3,25,2,26,5,25,4,9,2,15,1,9,3,25,2,9,2,25,1,9,8,25,4,9,3,25,3,9,1,25,3,9,7,25,1,9,8,25,6,26,4,29,1,26,13,25,3,26,13,25,3,26,2,25,1,9,4,25,2,26,1,25,1,9,6,25,3,26,6,25,1,27,1,26,2,27,1,25,6,10,2,25,18,10,2,9,3,10,1,25,3,27,1,25,1,9,10,25,6,27,1,26,12,30,1,29,1,26,2,10,1,9,1,25,2,26,2,25,1,9,1,25,4,26,2,25,2,9,1,15,5,9,6,25,1,9,2,25,2,9,3,15,4,9,2,25,3,27,1,26,11,29,2,30,4,7,1,8,1,1,421,}, + {1,810,9,1,15,2,9,4,15,2,9,2,25,1,26,1,25,3,26,2,25,1,26,3,25,6,26,7,25,3,9,3,25,5,26,1,25,1,9,1,25,2,26,3,25,2,26,1,25,1,9,3,25,1,9,9,15,10,9,2,26,3,25,1,26,1,25,3,9,3,25,3,9,4,25,1,26,1,25,1,9,1,25,2,9,1,26,1,29,1,26,19,25,3,9,2,15,8,9,1,25,3,26,1,25,1,9,2,15,1,9,2,25,1,26,2,25,1,9,3,25,7,9,3,26,6,25,1,9,9,25,1,9,10,25,1,26,1,25,5,9,6,25,3,9,5,25,3,9,10,25,3,9,6,25,5,26,19,25,2,26,4,25,4,26,1,25,1,26,4,9,3,25,2,9,4,25,3,26,2,25,2,9,1,25,4,26,11,27,1,25,21,9,6,25,5,10,1,9,2,25,3,27,1,25,1,9,5,10,1,9,2,10,1,25,7,27,1,26,13,29,1,26,2,25,1,9,1,25,2,26,2,25,2,9,1,25,3,26,1,25,2,9,2,15,4,9,13,15,5,9,4,25,2,26,2,29,13,30,1,26,1,25,1,9,2,15,1,16,2,9,1,1,414,}, + {1,807,9,1,15,5,9,2,15,4,9,1,26,3,25,1,26,7,25,5,26,9,25,4,9,1,25,3,9,2,25,2,9,1,25,5,9,1,25,1,26,2,9,2,25,1,26,2,25,2,9,2,25,1,9,2,15,12,9,1,25,4,26,3,25,3,9,8,25,1,26,4,25,1,9,2,26,1,25,1,9,2,25,1,26,7,25,9,9,3,15,10,9,1,25,2,9,7,26,9,25,9,26,4,25,1,9,11,25,1,9,7,25,2,26,8,25,1,9,8,25,2,26,1,25,1,9,5,25,2,9,6,25,1,9,1,25,14,26,22,25,4,26,5,25,2,26,1,9,8,25,3,26,16,25,3,27,3,25,24,9,4,25,7,9,4,10,1,25,1,10,2,9,5,25,10,27,1,26,13,29,2,26,2,25,3,26,2,25,2,9,2,25,6,9,4,15,1,9,8,15,1,9,3,15,7,9,4,25,1,26,3,29,10,30,1,26,1,25,1,10,1,9,5,16,6,1,408,}, + {1,805,15,6,9,4,15,3,9,1,25,1,26,8,25,2,26,14,25,4,9,2,25,2,9,2,25,1,26,1,25,2,9,6,25,1,9,2,25,1,26,6,25,1,26,1,25,1,9,2,15,12,9,2,25,6,9,10,25,1,26,5,25,1,9,2,25,2,9,1,25,1,26,9,25,1,9,3,25,2,9,4,15,2,9,2,15,1,9,2,15,3,9,2,26,1,25,1,9,1,25,4,9,4,25,1,26,4,25,2,9,3,15,3,9,14,25,5,26,2,25,1,9,4,26,3,25,2,9,1,25,4,26,2,25,1,9,6,25,4,9,13,25,2,9,2,25,5,26,1,25,3,9,1,25,5,26,1,25,1,26,17,25,1,26,10,9,6,25,1,9,2,25,2,26,10,29,2,30,3,26,2,25,6,27,1,26,9,25,22,9,12,10,1,25,2,9,6,25,8,26,15,29,3,26,1,27,1,25,2,26,2,25,2,9,2,25,6,9,9,15,14,9,4,25,1,26,4,29,6,26,1,13,1,25,2,10,1,9,12,16,1,15,3,16,1,12,1,1,401,}, + {1,802,15,10,9,3,15,2,9,5,26,10,25,2,26,1,25,2,26,2,25,1,26,3,25,4,9,6,25,1,26,1,25,2,9,4,25,3,26,13,9,1,15,5,9,1,15,7,9,6,25,6,9,5,25,2,26,3,25,1,9,6,26,3,25,1,26,6,9,8,15,14,9,1,15,2,9,2,25,2,9,5,25,1,26,3,9,3,15,3,9,8,25,2,26,1,25,1,9,5,25,4,26,4,25,1,9,3,25,1,9,2,15,4,9,5,25,5,9,1,25,1,9,18,25,3,9,3,25,8,9,1,25,2,9,1,25,3,26,15,25,2,26,9,25,1,26,1,9,2,25,1,9,3,25,6,26,6,29,7,26,2,25,7,26,11,25,13,9,3,10,1,25,4,10,1,9,11,10,1,25,1,27,2,10,1,9,6,10,1,25,5,27,1,26,15,29,3,26,3,25,2,26,2,25,2,9,2,25,5,9,5,15,5,9,1,15,10,9,5,25,1,26,5,29,4,28,1,26,1,9,20,16,1,15,6,16,1,15,1,1,393,}, + {1,799,12,1,15,16,9,2,15,2,9,1,25,2,26,6,25,1,9,3,25,1,26,2,25,1,9,1,25,1,26,6,25,1,9,6,25,3,9,5,26,7,25,1,9,1,25,1,26,3,25,3,9,2,15,4,9,1,15,10,9,2,25,1,26,5,25,1,26,1,25,1,9,1,25,5,26,2,25,1,9,1,25,1,9,5,25,3,26,4,25,1,26,1,25,2,9,3,25,1,9,3,15,3,14,1,15,4,11,2,15,6,9,2,15,1,9,1,25,1,9,4,25,5,9,7,25,6,9,4,25,6,9,6,25,1,9,4,15,6,9,11,25,5,9,17,25,3,9,3,25,1,9,1,25,2,9,8,25,5,26,1,25,1,26,10,25,1,9,1,25,1,26,9,25,10,9,1,25,2,26,6,30,1,29,6,26,2,25,8,26,9,27,1,25,9,9,3,25,3,9,19,10,1,25,2,26,2,25,1,10,1,9,1,16,3,9,2,10,1,25,4,27,1,26,22,25,1,26,2,25,3,9,1,25,1,10,1,25,4,9,3,15,6,9,1,15,10,9,2,25,3,26,5,29,3,28,1,30,1,9,8,25,3,10,1,9,12,16,4,15,7,12,1,15,1,16,1,1,384,}, + {1,795,9,2,15,17,9,2,25,1,9,1,25,1,26,8,25,1,9,4,25,1,26,2,25,2,26,7,25,1,9,2,25,1,26,1,25,1,9,3,25,2,9,3,25,1,26,6,25,1,9,3,25,3,26,2,25,1,9,2,15,4,9,1,15,12,9,2,25,1,26,2,25,4,9,1,25,2,9,2,25,1,26,1,25,3,26,2,9,4,25,4,9,1,25,1,26,5,25,3,9,2,25,3,9,1,15,2,14,1,11,6,14,1,15,2,9,5,15,3,9,1,25,1,9,8,15,1,9,12,25,2,9,1,25,4,9,4,25,4,9,4,15,5,9,14,25,1,9,1,25,4,9,5,25,2,9,5,25,1,9,2,25,2,9,9,25,2,9,3,25,4,26,2,25,2,26,14,25,3,26,4,25,9,9,2,25,4,26,7,29,6,26,2,25,7,26,13,25,9,9,2,25,2,9,12,10,1,25,4,10,1,9,3,25,4,26,3,25,1,9,2,16,1,15,2,9,3,25,3,27,1,26,20,25,2,27,1,26,2,25,3,9,1,10,1,25,5,9,3,15,15,9,2,25,1,26,4,29,5,28,2,13,1,9,7,10,1,13,2,25,3,9,11,16,1,9,7,15,10,12,1,15,1,12,1,1,376,}, + {1,793,9,1,15,7,9,3,15,2,9,2,15,6,9,7,25,3,26,2,25,1,9,1,25,2,26,4,25,2,26,3,25,2,26,3,25,3,26,1,25,1,9,2,25,3,9,3,26,2,25,5,9,4,25,1,26,5,25,1,9,6,15,14,9,1,25,1,26,2,25,1,26,1,25,1,9,2,25,1,9,2,26,2,25,1,9,1,25,1,26,2,25,1,9,7,25,1,26,4,25,1,9,1,25,1,26,1,25,2,9,7,15,1,11,7,14,1,15,2,9,5,15,4,9,13,15,1,9,2,25,1,9,4,15,3,9,1,25,2,9,7,25,2,26,1,25,1,9,1,15,6,9,7,15,2,9,7,25,1,9,9,25,1,26,1,25,1,9,3,25,1,26,2,25,2,9,10,25,1,26,1,25,1,9,2,25,4,26,4,25,1,26,14,25,1,9,2,25,12,9,1,25,5,26,7,30,1,29,5,26,3,25,3,10,1,9,1,25,2,26,12,25,7,9,4,25,5,9,12,25,13,27,4,25,1,9,7,25,4,26,19,25,3,26,2,25,8,27,1,25,1,9,3,15,1,9,1,15,13,9,1,25,1,26,4,29,1,28,3,29,2,30,1,25,1,9,6,10,1,25,1,13,1,25,1,13,2,10,1,9,22,16,1,15,1,16,1,9,2,16,1,9,4,16,6,15,2,16,3,12,1,1,363,}, + {1,790,9,9,15,6,9,1,15,4,9,2,15,3,9,1,15,5,9,1,25,3,9,2,25,1,26,6,25,6,26,3,25,2,26,1,25,1,9,1,25,3,26,1,25,1,9,3,25,4,9,1,25,2,9,3,25,3,26,4,25,5,9,4,15,13,9,1,26,4,25,1,9,4,25,1,26,2,25,1,9,1,25,1,26,3,25,2,9,3,25,2,26,9,25,1,9,1,15,4,9,1,15,4,14,3,15,1,14,1,11,3,14,1,15,2,9,6,15,2,9,3,25,1,9,4,25,2,9,4,25,2,9,5,15,3,9,7,25,3,26,4,25,1,9,1,15,3,9,4,25,1,26,1,25,1,9,3,15,1,9,7,25,1,9,6,25,2,9,2,25,1,26,1,25,1,9,3,25,3,9,13,25,8,26,4,25,2,26,4,25,2,26,5,25,1,9,4,25,3,9,2,25,6,9,1,25,5,26,7,30,1,29,4,30,1,26,3,25,4,9,2,25,2,26,12,25,5,9,2,25,5,9,18,25,12,27,1,26,4,27,1,25,1,9,5,10,1,25,1,27,1,25,1,27,1,26,18,25,3,26,2,25,8,26,1,25,2,9,4,15,5,9,1,15,6,9,2,26,3,29,1,28,4,30,1,26,1,25,1,9,8,25,1,13,1,25,1,13,1,25,1,9,39,16,4,9,1,15,17,12,1,16,4,15,2,17,1,11,8,12,1,1,2,12,2,1,325,}, + {1,787,9,1,15,1,9,4,25,1,26,4,25,1,9,1,15,3,9,5,25,1,9,2,15,3,9,2,15,3,9,1,25,2,26,1,25,1,9,1,25,1,26,7,25,6,26,1,25,10,9,1,25,2,9,8,25,1,9,3,25,3,26,9,25,1,9,2,15,6,9,3,15,6,9,1,26,3,25,1,9,3,26,4,25,1,9,2,25,3,26,2,9,4,25,1,26,9,9,6,15,10,14,1,11,2,14,2,15,2,9,4,15,11,9,3,15,2,9,21,25,2,26,1,25,1,26,1,25,2,9,1,15,2,9,4,25,6,9,4,15,1,9,3,25,1,9,2,25,1,9,4,25,2,9,2,25,2,9,5,25,2,9,4,25,3,9,7,25,4,9,1,25,4,26,2,25,1,9,1,25,2,26,1,25,4,26,2,25,1,9,3,25,10,26,1,25,7,26,9,29,5,26,2,13,1,25,9,26,11,27,1,25,10,9,12,25,21,27,1,26,6,25,1,9,2,15,1,9,2,25,4,27,1,26,17,25,1,9,1,25,1,26,2,25,8,26,1,25,2,9,12,15,3,9,1,25,1,26,1,29,3,28,3,29,1,26,1,25,2,9,9,10,1,25,1,13,1,10,1,9,42,16,7,9,5,16,2,15,1,16,1,15,1,16,3,9,5,15,4,11,3,17,1,15,5,11,3,15,1,1,322,}, + {1,784,9,1,15,1,9,5,25,2,26,5,25,2,9,5,15,1,9,3,15,4,9,2,15,3,9,2,25,1,26,13,25,6,9,1,25,2,26,1,25,3,26,1,25,2,9,8,25,1,9,5,25,2,9,1,25,2,9,1,25,1,26,1,25,2,26,1,25,4,9,1,15,3,9,1,25,1,9,3,15,6,9,1,26,4,25,3,26,3,25,1,9,1,25,6,9,5,15,3,9,2,26,2,25,1,9,1,25,4,9,3,15,6,11,2,15,2,14,1,11,4,14,2,15,2,9,3,15,9,9,2,15,1,9,11,15,2,9,1,15,9,9,7,15,1,9,4,15,1,9,4,25,2,9,1,25,2,9,5,15,1,9,5,25,5,9,6,25,1,9,5,25,1,9,2,15,1,9,12,25,1,9,2,25,6,26,1,25,2,9,3,25,5,9,4,25,5,26,2,25,3,26,2,25,7,26,9,29,4,30,1,26,2,25,4,9,2,25,3,26,12,25,13,9,13,25,24,27,1,26,3,25,1,9,2,15,1,9,1,10,1,27,1,26,1,25,3,26,16,9,2,25,1,26,3,25,10,9,15,25,1,26,1,29,2,28,3,30,1,13,1,25,2,10,1,9,3,25,1,9,7,10,1,9,42,16,1,9,3,16,2,9,7,16,1,9,1,16,2,9,8,15,5,17,1,11,1,15,9,17,1,11,2,17,1,1,319,}, + {1,781,9,9,25,3,26,6,25,1,9,2,15,1,9,5,15,5,9,1,15,6,9,3,25,2,26,8,25,1,9,1,25,1,26,2,25,3,26,1,25,2,9,1,25,1,26,2,9,15,25,2,9,2,25,1,9,3,25,1,26,4,25,2,26,1,25,1,9,1,25,1,26,1,25,1,9,1,15,1,9,3,15,5,9,1,26,6,25,2,9,5,25,4,26,1,25,2,9,3,15,2,9,3,25,1,9,2,25,3,9,1,15,14,9,1,15,1,11,5,14,1,15,13,9,2,25,1,9,19,15,4,9,6,15,3,9,7,25,1,26,5,25,1,26,1,25,1,9,7,25,7,9,7,25,1,9,3,25,4,9,9,25,9,26,7,25,1,9,2,25,3,9,6,25,3,26,4,25,3,26,1,25,4,26,11,30,1,29,4,30,1,26,2,25,3,9,4,25,3,26,11,25,3,27,1,26,2,27,3,25,8,9,8,25,29,27,1,26,1,27,1,25,1,9,4,10,1,27,1,26,2,25,2,26,15,9,2,25,1,26,4,25,11,9,11,25,1,26,1,28,2,29,1,28,1,29,1,26,1,13,1,25,1,10,1,9,2,25,1,9,1,25,2,9,4,10,1,9,42,16,3,9,1,16,1,9,2,15,1,16,1,9,2,16,1,9,7,16,6,9,2,16,1,15,5,11,1,17,1,15,1,9,1,15,12,9,2,15,1,16,2,1,28,9,2,11,2,1,280,}, + {1,777,9,15,25,1,26,5,25,1,9,8,15,5,9,2,15,4,9,6,25,1,26,11,25,2,9,1,25,6,26,2,25,1,9,14,25,2,9,1,15,1,9,3,25,1,26,5,9,3,25,1,26,5,25,1,26,1,25,2,9,1,15,5,25,1,26,1,29,1,26,2,25,3,9,5,25,9,9,2,15,1,9,3,25,2,9,6,15,3,9,8,15,3,9,2,14,1,11,6,15,3,14,4,15,6,9,2,25,1,9,2,15,3,9,5,25,1,9,11,15,1,9,1,15,2,9,2,15,3,9,2,15,1,9,4,25,2,27,1,26,8,25,2,9,5,25,5,9,10,25,3,9,5,25,7,27,1,26,17,25,1,9,5,25,5,26,17,30,3,26,4,30,1,29,4,30,1,26,2,13,1,25,2,9,4,25,3,26,13,27,2,25,17,9,2,25,33,26,3,25,1,10,1,9,4,10,1,25,1,26,2,27,1,26,15,25,1,9,1,25,1,26,4,25,12,9,8,25,1,26,1,29,1,28,2,29,2,13,2,10,1,9,3,25,1,10,1,26,1,13,1,9,4,10,1,9,6,10,2,9,1,25,2,9,21,16,1,9,3,16,1,9,4,15,1,16,2,9,2,16,2,15,2,9,1,16,1,15,3,16,1,9,3,16,2,15,3,16,3,9,2,16,1,15,5,11,2,15,1,9,2,15,4,17,2,15,3,9,3,15,3,1,27,9,2,25,1,9,1,15,1,1,281,}, + {1,774,9,20,25,4,9,1,25,1,26,1,25,5,9,1,15,4,9,1,15,9,9,3,25,1,26,10,25,3,9,2,25,1,26,6,9,5,25,2,9,7,26,2,25,1,9,1,15,1,9,2,25,1,26,3,25,1,9,5,25,1,26,3,25,2,26,5,9,1,15,4,9,1,26,3,29,1,26,6,25,3,9,1,25,1,9,1,25,4,9,3,25,1,9,1,15,4,9,7,15,3,9,12,15,1,14,1,11,2,14,1,15,6,14,1,11,1,14,1,15,1,14,1,15,3,14,1,15,1,9,4,15,1,9,9,15,7,9,12,25,2,9,5,25,4,27,2,25,2,26,2,25,2,9,6,25,6,9,8,25,11,27,1,26,1,27,2,26,8,29,7,26,5,25,6,26,6,25,1,26,12,30,1,29,4,30,1,26,3,29,5,30,1,26,2,13,1,25,2,10,1,9,3,25,2,26,15,27,2,25,53,26,4,25,1,9,5,25,2,26,17,25,1,9,1,10,1,26,4,25,14,9,1,10,1,9,2,25,2,26,1,28,3,29,1,26,1,25,1,26,1,9,4,25,1,26,1,25,1,9,1,25,1,9,2,10,1,9,1,10,1,9,3,25,2,10,1,9,1,25,1,9,31,16,3,9,2,15,3,16,1,9,1,16,1,15,5,16,2,15,5,16,4,15,7,11,2,15,1,9,2,15,4,17,2,15,1,16,2,15,3,9,1,15,3,12,1,9,1,1,18,9,1,10,1,25,5,26,2,25,1,16,1,1,281,}, + {1,771,9,16,25,4,9,8,25,5,9,3,15,4,9,1,15,9,9,6,25,1,26,4,25,1,9,1,25,1,26,2,9,1,25,2,26,6,25,1,9,4,25,1,26,1,9,1,15,1,9,5,25,1,26,1,25,1,9,4,25,1,26,1,25,1,9,6,25,2,26,3,9,2,25,1,26,1,25,2,9,2,15,5,9,1,25,1,26,2,29,1,26,3,25,7,26,1,25,1,26,1,25,2,9,1,25,3,9,13,15,3,9,2,25,5,9,6,15,11,14,1,11,1,14,1,15,2,14,2,15,1,14,2,9,2,15,2,9,3,15,3,9,2,15,1,9,1,15,5,9,1,15,4,9,1,25,4,9,2,25,2,9,5,25,11,9,7,25,12,9,2,25,9,27,1,26,10,29,2,26,1,29,4,28,3,29,4,26,27,30,1,29,6,30,1,29,6,30,1,26,3,25,2,9,4,25,2,26,20,25,16,27,1,26,2,25,15,9,2,25,4,9,1,25,12,26,4,27,1,9,4,10,1,25,2,26,17,9,2,26,1,30,1,26,2,25,12,26,2,25,2,26,2,30,1,28,3,30,1,25,1,9,1,13,2,25,1,9,1,10,1,9,1,13,1,25,3,9,2,10,1,9,5,25,6,9,12,16,1,9,14,16,1,15,3,16,2,15,20,16,1,15,10,11,2,15,1,9,1,15,3,9,1,15,14,9,12,16,1,9,4,25,1,26,6,25,1,9,4,1,282,}, + {1,768,9,14,25,4,26,1,25,10,26,3,25,3,26,2,25,1,9,1,15,2,9,1,15,9,9,2,25,2,9,3,25,1,26,4,25,2,26,3,25,3,26,2,25,1,9,1,26,3,25,1,9,2,25,2,26,1,25,1,9,7,25,2,9,7,15,2,9,5,26,2,25,1,9,1,25,2,26,4,25,1,9,2,15,6,25,1,26,4,25,1,9,7,25,1,9,8,25,1,9,3,25,4,9,8,15,2,9,2,25,1,26,1,25,5,9,3,15,8,9,2,15,8,14,2,11,1,14,1,15,3,9,1,15,1,9,2,15,12,9,2,15,1,9,5,15,1,9,7,25,3,27,1,25,16,26,1,25,7,27,2,25,6,27,1,26,21,29,10,26,17,29,2,26,3,25,2,26,3,29,14,30,1,26,3,25,3,9,2,10,1,25,2,26,24,27,1,25,8,27,1,26,11,27,1,25,24,27,1,25,5,26,5,25,1,9,3,25,1,27,1,26,17,25,1,9,1,25,1,26,3,25,7,26,8,29,2,28,3,30,1,9,3,10,4,9,1,10,2,25,2,9,8,25,5,9,12,16,2,9,11,16,1,15,33,11,1,15,2,17,1,15,2,17,1,11,1,15,1,9,1,15,1,9,1,15,1,9,1,15,14,9,4,25,3,9,1,25,2,26,1,25,2,26,5,29,1,26,4,25,1,9,2,1,285,}, + {1,765,9,6,25,4,9,7,25,2,26,1,25,2,9,2,25,13,26,3,9,3,25,1,9,1,15,9,9,1,25,1,9,1,15,3,9,1,26,10,9,1,25,1,26,1,25,1,9,2,25,1,26,2,25,3,9,2,25,2,9,6,25,1,9,1,25,1,9,6,15,3,9,5,25,1,9,1,25,4,9,1,25,1,26,2,25,4,15,5,9,1,26,3,25,1,9,8,25,2,9,3,25,2,26,3,25,1,9,1,25,9,9,5,15,4,9,2,25,2,9,6,15,5,9,4,15,5,9,6,15,3,14,1,15,2,9,5,15,5,14,1,15,1,14,2,15,1,9,5,15,2,9,6,25,1,9,2,25,2,27,1,25,3,9,2,25,5,27,1,26,6,25,2,9,1,25,5,9,1,25,9,26,15,29,1,26,6,29,5,26,7,25,1,26,11,29,3,26,7,29,7,30,2,29,6,26,4,25,3,9,2,25,2,26,17,25,12,27,1,26,18,27,5,25,20,27,4,25,1,27,1,26,5,27,1,10,1,9,3,25,1,26,17,25,1,9,1,25,1,26,3,25,7,26,3,30,1,29,2,30,1,29,1,28,3,29,1,10,1,9,9,10,1,9,12,25,1,10,1,9,12,16,1,9,6,16,2,9,4,15,33,17,4,15,3,17,1,15,2,16,1,9,2,15,5,17,2,15,9,9,4,25,2,26,1,25,2,26,3,25,1,26,1,29,3,26,4,25,1,9,2,1,5,12,1,17,1,1,280,}, + {1,762,9,6,25,2,9,2,25,4,9,6,25,5,26,3,25,7,9,4,25,2,26,1,25,1,9,2,25,2,9,1,15,1,9,2,15,10,9,2,25,1,26,5,29,1,26,2,25,1,9,2,25,1,9,3,26,3,25,2,9,3,25,3,9,15,25,1,9,2,15,2,9,8,25,1,26,1,25,2,26,3,25,1,9,2,15,3,9,1,25,2,9,2,25,5,9,7,25,1,26,3,25,1,9,1,25,3,9,4,25,3,9,6,15,4,9,5,25,1,9,5,15,6,9,1,25,1,9,1,15,5,9,3,25,1,26,1,25,1,9,2,15,2,9,1,15,2,9,2,25,3,9,2,15,6,9,10,25,5,10,1,9,1,25,5,9,4,25,2,26,10,27,1,26,6,25,3,27,4,25,1,27,1,26,1,25,1,27,1,26,19,29,7,26,5,25,4,26,9,29,4,26,5,30,1,29,7,30,1,29,7,30,1,26,3,25,3,9,2,25,2,26,21,25,9,26,22,27,1,25,23,26,11,25,1,9,3,25,4,26,15,10,1,25,1,26,3,25,4,9,2,25,1,13,1,26,1,30,1,29,2,30,1,29,1,28,3,30,1,9,13,25,1,9,21,16,1,15,1,9,5,15,3,9,3,15,32,17,5,15,16,17,1,11,1,17,1,15,8,9,5,25,3,26,9,9,3,15,1,9,1,1,2,15,1,9,2,15,1,11,1,12,1,1,280,}, + {1,759,9,5,25,4,9,1,15,1,9,1,26,4,25,3,9,3,25,2,9,1,25,2,26,2,25,7,9,10,25,1,26,3,25,1,26,1,25,1,9,2,15,8,9,1,25,1,26,9,25,1,9,2,25,2,9,3,26,1,25,2,9,4,25,1,26,2,25,1,9,13,25,2,9,2,15,2,9,8,25,1,26,6,25,1,9,1,25,1,9,2,15,2,9,2,25,1,26,7,9,5,25,1,26,2,25,1,9,5,25,2,9,3,25,3,9,2,15,10,9,2,15,2,9,2,25,1,9,3,15,7,9,1,25,1,9,23,25,1,9,2,15,4,9,7,25,1,26,4,25,2,26,5,25,3,9,4,25,2,27,1,26,18,25,4,27,1,26,26,29,2,26,1,29,4,26,3,25,5,26,7,29,6,26,7,30,2,29,12,30,1,26,2,13,1,25,3,9,2,25,2,26,60,27,1,25,18,26,2,25,3,27,1,26,4,25,1,9,3,10,1,25,8,26,10,25,1,10,1,26,2,25,4,10,1,9,2,10,1,25,1,26,1,30,2,26,2,29,3,26,1,9,12,25,1,9,14,16,2,9,4,16,1,15,1,9,5,15,12,12,1,15,3,12,1,15,6,17,4,11,4,17,8,12,6,15,1,11,2,15,5,17,1,15,17,9,6,25,4,26,1,25,4,9,1,15,4,9,7,16,1,11,1,1,281,}, + {1,755,9,2,15,1,9,4,25,1,26,1,25,1,26,10,25,3,9,6,25,8,26,3,25,5,9,3,25,1,26,3,25,2,26,1,25,1,9,5,15,6,9,2,25,2,26,8,25,4,9,3,25,2,9,3,25,1,26,3,9,13,25,4,9,5,25,2,9,4,25,3,26,7,9,2,15,2,9,2,25,2,26,6,25,1,9,17,25,2,26,4,25,1,9,5,15,5,9,10,15,7,9,1,25,1,9,5,25,5,9,7,25,1,9,5,25,1,9,5,25,3,9,2,15,2,9,2,25,1,26,4,13,1,26,9,25,2,9,2,25,1,26,7,29,1,26,7,25,5,9,2,25,6,27,1,26,23,29,6,26,2,25,8,26,5,29,5,26,8,29,13,30,1,26,2,13,1,25,2,10,1,9,1,10,1,25,2,26,65,27,1,25,22,26,4,25,1,9,3,25,1,26,1,25,6,26,10,25,2,26,1,25,5,9,4,25,1,13,1,26,4,30,1,29,1,26,1,9,11,25,1,9,4,16,1,9,5,16,1,15,6,16,2,15,3,16,1,9,2,15,19,17,5,12,3,1,23,17,1,11,2,17,5,15,14,9,8,25,3,9,2,15,2,17,1,15,3,9,2,25,2,9,6,1,282,}, + {1,752,9,1,15,2,9,4,25,2,26,9,25,2,26,3,25,1,9,5,25,10,9,1,25,2,26,5,25,1,9,3,26,1,25,1,9,2,25,3,9,5,15,5,9,3,25,4,26,9,25,6,9,3,26,3,25,1,9,9,25,2,9,1,25,1,9,1,25,1,26,2,25,1,9,4,25,3,9,4,25,1,26,8,9,2,15,4,9,2,25,1,26,5,25,1,9,9,15,1,9,5,25,1,9,3,25,7,9,6,15,4,9,10,15,4,14,1,9,10,25,1,9,1,25,3,9,11,25,1,26,1,25,1,26,3,25,1,9,8,25,1,26,10,13,7,25,3,9,2,25,1,26,3,29,1,26,5,27,1,25,8,9,1,25,9,26,2,25,1,26,16,29,7,26,1,27,1,25,8,26,5,29,4,26,8,29,14,30,2,26,2,25,2,10,1,9,1,10,1,25,1,26,21,27,1,25,5,27,3,26,41,25,6,27,1,26,4,25,8,26,6,25,1,9,3,25,7,26,10,25,7,9,6,25,4,26,2,30,1,9,4,16,1,9,7,16,4,9,2,16,1,15,1,9,1,16,1,15,6,16,2,15,5,16,1,15,9,17,8,12,2,1,34,11,5,17,1,15,9,9,7,25,1,9,1,25,4,9,3,15,3,9,3,26,4,25,1,9,1,16,1,1,286,}, + {1,749,12,1,15,7,9,1,25,1,26,6,25,1,9,1,15,1,9,1,25,1,26,1,29,2,26,1,25,1,9,2,25,2,26,6,25,17,26,1,25,1,9,5,25,4,9,1,15,5,9,2,15,1,9,6,25,1,26,9,25,2,9,2,15,1,9,1,25,1,26,2,25,1,9,4,25,1,9,8,25,2,26,2,25,1,9,2,25,1,9,2,25,4,9,3,25,1,26,4,29,1,26,2,9,3,15,4,9,2,25,3,26,1,25,3,9,14,25,3,9,13,25,1,9,2,15,4,9,6,25,2,9,3,15,4,9,5,25,2,9,3,15,2,9,2,25,1,9,10,25,2,26,4,25,4,9,2,25,3,26,11,13,1,25,8,13,2,25,4,26,14,27,2,25,4,27,2,25,2,27,1,25,6,26,22,27,1,25,7,26,6,29,3,26,8,30,1,29,13,30,2,26,3,25,3,9,1,25,2,26,8,29,1,26,75,25,7,26,8,25,1,9,3,25,6,26,10,25,6,9,2,15,1,9,7,25,1,13,1,26,1,9,3,16,3,9,4,16,1,15,2,16,4,15,2,9,1,15,19,17,5,12,2,1,44,11,4,15,10,9,6,25,2,26,4,25,2,9,2,25,1,26,3,29,2,26,2,25,1,9,1,1,288,}, + {1,746,11,2,14,2,15,10,9,2,25,2,26,2,25,1,26,6,25,3,26,8,25,3,9,1,25,4,9,3,25,2,26,1,25,2,26,2,25,1,9,4,15,1,9,1,25,1,26,2,25,2,9,1,15,12,9,1,25,1,26,2,25,2,26,5,25,1,9,5,25,2,9,14,25,1,26,2,25,1,9,2,25,1,26,1,25,1,9,1,25,3,26,2,9,2,25,1,26,8,25,2,9,1,15,4,9,2,25,3,9,17,25,1,9,1,25,2,9,15,25,1,9,1,15,6,9,2,15,2,9,4,15,5,9,11,15,1,9,1,25,3,9,7,25,1,9,2,25,4,9,7,25,2,26,4,13,5,25,5,10,2,25,5,13,3,25,5,26,24,27,3,25,1,27,2,25,2,27,1,26,17,25,3,9,2,25,2,26,7,29,2,26,11,30,1,29,8,28,1,29,3,30,1,26,2,13,1,25,5,26,38,27,2,26,48,25,7,26,7,25,1,9,3,25,6,26,10,25,6,9,1,16,1,15,1,9,7,10,2,9,3,15,3,16,3,15,3,12,1,15,1,16,1,15,18,17,4,12,2,1,53,11,2,17,2,15,9,9,5,25,1,26,11,25,1,9,3,15,1,9,4,12,1,1,285,}, + {1,742,12,1,11,1,14,2,15,11,14,1,15,2,9,1,25,1,26,5,25,3,26,1,25,1,9,2,26,5,29,3,26,1,25,2,9,1,25,1,9,1,25,5,9,1,25,2,26,3,25,3,9,2,25,1,9,2,25,1,26,3,25,1,26,1,25,1,9,1,15,7,9,3,25,1,26,11,25,1,9,2,25,2,9,4,15,3,9,3,25,2,9,6,25,4,9,1,26,2,25,1,9,1,25,2,26,3,25,1,9,1,26,3,25,1,26,5,25,1,9,1,25,1,9,2,15,3,9,5,25,4,9,3,25,3,9,8,15,1,9,2,15,1,9,4,15,7,9,5,15,3,9,2,15,4,9,5,15,3,14,1,15,2,9,4,15,2,9,7,26,2,25,1,9,6,25,6,9,7,25,2,26,5,13,1,25,5,10,3,9,3,10,1,25,1,10,8,25,1,9,1,10,1,9,1,25,2,26,2,29,2,26,42,27,1,25,1,9,4,25,3,26,12,25,1,26,4,30,1,29,3,30,3,26,1,29,7,30,1,26,3,25,2,9,1,25,3,26,44,27,4,26,45,25,8,26,3,25,1,9,2,25,6,26,9,25,6,9,2,15,1,9,1,16,3,15,1,16,1,9,5,15,23,17,5,12,2,1,61,12,1,17,2,15,3,9,11,25,8,9,1,15,4,9,7,17,1,11,1,1,284,}, + {1,739,15,8,9,2,15,10,9,1,25,1,26,4,25,3,26,2,25,1,9,1,25,1,26,8,9,2,26,1,25,1,9,4,25,6,26,3,25,1,9,2,25,4,9,3,25,3,26,1,25,1,9,3,15,6,9,2,25,4,26,4,25,7,26,3,9,6,15,1,9,1,25,1,26,1,25,1,9,6,25,3,9,2,25,1,26,1,25,1,9,1,25,1,26,4,9,2,26,3,25,2,26,4,25,4,9,2,15,4,9,1,25,1,26,3,25,1,9,1,25,1,9,10,15,2,9,7,25,2,9,1,15,2,9,1,15,8,9,3,15,3,9,5,15,1,9,3,15,3,14,1,15,3,9,8,25,2,26,1,25,1,9,2,25,1,26,12,25,6,13,1,26,6,13,2,25,2,10,1,9,1,10,3,25,2,10,2,25,3,9,5,25,1,26,1,10,1,1,4,9,1,25,1,26,2,29,1,26,6,25,1,27,1,26,3,27,1,25,2,26,28,27,1,25,1,9,4,25,5,26,14,30,1,29,3,26,4,30,1,29,8,30,1,26,2,25,5,26,48,27,1,25,1,27,1,26,50,25,4,26,2,25,1,9,2,25,1,26,14,25,6,9,1,16,2,9,1,16,2,15,2,16,2,9,2,16,1,15,21,12,2,1,70,15,5,9,4,25,1,9,3,25,6,9,1,15,4,9,3,25,1,9,6,12,1,1,285,}, + {1,734,9,2,15,19,14,3,15,2,9,1,25,1,26,1,25,1,9,4,25,6,9,2,26,4,25,2,26,2,9,4,25,7,26,1,25,10,9,2,25,1,26,3,25,2,9,3,15,7,9,4,25,7,9,3,25,1,26,4,25,1,9,4,25,4,9,11,26,2,25,1,9,1,25,1,26,3,9,3,26,3,25,1,9,1,25,7,9,3,15,3,9,2,25,4,9,6,15,4,9,1,15,7,9,2,15,1,9,10,15,8,9,4,15,2,9,4,15,1,9,3,15,4,9,1,15,4,9,6,25,5,9,1,25,2,9,2,25,1,26,16,13,3,25,1,8,3,10,1,9,2,10,1,25,4,9,2,25,3,9,3,25,1,26,1,25,1,1,8,9,1,26,9,25,2,26,3,25,2,27,1,26,27,25,1,9,6,25,4,26,15,30,1,26,6,30,1,29,8,30,1,26,2,25,5,26,103,25,5,26,2,25,1,9,2,26,13,25,2,10,1,25,3,9,5,16,1,15,4,16,2,15,3,16,1,12,1,15,6,17,3,15,1,12,1,16,1,1,78,16,1,15,4,9,3,25,3,26,4,25,1,9,5,25,5,9,1,1,291,}, + {1,435,9,8,1,8,9,7,1,273,9,1,15,2,9,4,15,16,14,1,11,1,14,1,15,3,9,4,25,1,9,1,15,2,9,3,25,2,26,1,25,1,26,3,25,1,9,1,25,1,26,2,9,3,25,2,9,3,25,5,26,1,25,1,9,1,25,6,26,4,25,1,26,3,25,1,9,2,15,8,9,5,25,1,26,3,25,5,26,4,25,2,9,3,25,7,9,7,25,1,26,2,25,1,9,2,25,1,26,2,9,3,25,1,26,3,9,4,25,1,9,2,25,3,9,11,25,4,9,2,15,2,9,3,15,9,9,3,25,1,9,10,15,7,9,4,15,1,9,2,15,2,9,4,15,3,9,3,15,5,9,5,25,1,26,3,25,2,9,5,26,3,30,1,29,1,30,4,26,2,13,7,25,1,10,1,9,4,25,5,9,1,25,6,26,2,1,12,9,1,25,1,26,9,25,7,26,23,27,1,25,2,9,8,25,3,26,21,30,1,29,2,28,1,29,5,30,1,26,9,29,3,26,7,29,1,26,93,25,4,26,2,25,3,26,13,25,1,9,2,25,3,9,5,16,1,15,4,17,1,15,2,12,1,15,5,12,2,1,87,15,3,9,3,25,2,26,5,25,6,9,2,16,1,1,293,}, + {1,430,16,1,9,3,15,3,9,22,15,4,9,1,25,1,9,7,1,255,9,2,15,1,9,6,15,8,9,4,15,2,14,4,11,1,14,1,15,2,9,4,25,1,26,2,25,4,9,2,25,1,26,2,25,1,9,3,25,1,26,3,25,1,9,1,25,2,9,4,25,3,9,1,25,3,9,2,25,4,26,6,25,2,26,3,25,1,15,12,9,1,25,1,26,6,25,2,26,4,25,1,9,4,25,7,26,3,25,2,9,3,26,2,9,3,25,1,26,2,25,1,9,2,25,1,26,2,25,1,9,4,25,8,9,2,15,2,9,3,15,3,9,8,15,5,14,5,15,3,9,9,15,3,9,1,15,4,14,3,15,2,9,4,15,1,9,1,15,2,9,3,15,15,9,5,25,1,26,3,25,2,26,3,29,3,30,3,26,1,7,1,13,7,10,1,9,6,25,3,9,1,25,6,27,1,26,1,10,1,1,14,16,1,9,1,26,37,27,1,25,3,9,8,25,3,26,5,29,1,26,9,30,1,26,5,29,8,30,1,26,5,25,1,26,3,29,11,26,28,29,3,26,66,25,3,26,5,29,1,26,11,25,1,9,3,10,1,25,1,10,1,9,5,16,1,17,1,11,1,15,4,12,1,1,94,9,6,25,6,9,4,15,1,16,1,15,5,12,1,1,290,}, + {1,424,9,2,25,1,9,1,15,3,9,4,15,1,9,24,15,4,25,1,9,14,1,244,9,2,15,1,9,6,15,6,9,7,15,6,14,4,15,4,9,3,25,3,9,4,25,2,26,2,25,1,9,1,25,1,26,5,25,3,9,2,25,2,9,10,25,1,26,1,25,3,26,5,25,2,26,4,25,1,9,2,15,9,9,1,25,1,26,4,25,1,26,2,25,1,26,4,9,7,25,5,26,3,25,1,9,5,25,1,9,4,25,1,26,2,25,1,9,2,26,2,25,1,9,7,25,4,9,3,15,7,9,4,15,5,14,1,11,4,14,1,15,8,9,2,25,2,9,6,15,9,14,2,15,2,9,11,15,4,9,11,25,2,26,8,29,5,30,2,6,1,7,1,13,2,25,1,13,4,10,1,9,11,25,5,27,1,26,1,10,1,1,18,9,1,25,1,26,3,29,2,26,31,27,1,25,2,9,9,25,1,26,13,30,1,29,3,30,1,26,1,30,2,29,3,28,2,29,3,30,1,26,4,25,4,26,3,29,9,26,2,29,10,26,89,25,2,26,3,30,2,26,11,25,2,9,3,10,2,9,3,10,1,9,1,15,1,17,1,1,102,9,8,15,5,9,2,16,2,15,1,16,1,15,1,11,2,1,289,}, + {1,420,9,3,15,1,9,2,25,1,9,1,15,3,9,5,15,1,9,22,25,1,9,1,15,2,9,1,25,1,9,18,1,236,9,2,15,1,9,4,25,1,9,3,15,2,9,9,25,1,26,1,25,1,9,2,15,6,14,1,15,9,9,2,15,2,9,1,25,2,9,2,26,2,9,1,25,1,26,3,25,1,9,2,25,2,9,2,25,2,9,4,25,1,9,2,25,6,9,1,25,3,26,5,25,1,26,5,25,1,9,2,15,6,9,1,25,1,26,1,25,1,9,2,25,2,26,7,25,1,9,6,25,1,26,2,25,5,9,5,25,4,9,2,26,3,25,1,9,2,26,2,25,1,9,6,25,3,9,2,15,8,9,1,15,5,9,3,15,2,14,2,11,2,15,2,9,4,15,4,9,2,25,2,9,5,15,1,9,3,15,12,9,2,25,1,9,9,15,3,9,2,25,2,9,6,25,2,26,6,29,4,30,3,26,1,7,2,13,1,25,4,10,1,9,12,25,5,26,2,27,1,1,21,12,1,9,1,25,1,26,1,29,2,26,13,27,1,25,1,26,17,27,1,25,2,9,7,25,2,26,13,29,3,30,3,29,11,26,5,25,3,26,4,29,6,26,8,29,6,26,15,29,7,26,13,29,2,26,55,25,2,26,1,29,1,26,13,25,1,9,9,16,1,1,106,9,12,15,2,16,2,12,1,1,291,}, + {1,413,9,8,15,1,9,4,25,1,9,1,15,4,9,1,25,1,9,4,25,1,9,18,25,2,26,1,9,1,15,2,9,1,25,2,9,3,25,2,9,11,15,2,9,1,16,1,9,1,1,228,9,2,15,1,9,3,25,3,9,1,25,1,26,4,25,8,9,1,25,1,26,4,25,1,9,1,15,19,9,1,26,2,25,2,26,2,25,1,9,1,25,2,9,4,25,3,9,5,25,2,26,1,25,1,9,1,25,3,26,1,25,7,26,3,25,2,26,6,25,1,9,2,15,5,9,4,15,2,9,1,25,1,26,6,25,2,9,12,25,2,9,1,25,1,26,6,25,2,26,3,25,1,9,3,25,3,9,3,25,1,9,4,15,7,9,8,15,7,14,2,11,2,14,1,15,2,9,3,15,6,9,3,25,2,9,6,15,16,9,1,25,5,9,1,15,5,9,2,25,9,26,11,13,3,25,3,8,2,10,2,9,14,25,2,27,1,26,3,1,26,25,1,26,3,29,2,26,16,25,4,26,7,27,1,26,1,25,3,9,7,25,2,26,14,29,4,30,1,29,11,30,1,26,5,25,1,26,20,29,4,26,2,29,6,26,12,29,5,26,13,29,11,26,47,25,1,26,3,25,2,27,1,26,8,25,2,9,7,16,1,1,414,}, + {1,409,9,12,15,2,9,3,25,2,15,5,9,1,25,1,9,2,25,4,9,4,25,3,9,2,25,1,9,4,25,2,26,3,9,1,15,1,9,2,25,3,9,1,25,4,9,10,15,7,1,222,9,1,15,2,9,7,25,1,26,8,25,5,26,7,25,1,9,2,15,6,9,2,15,8,11,1,14,1,15,1,9,2,25,1,9,2,25,1,26,1,25,1,9,5,15,2,9,1,25,1,26,1,25,1,9,2,25,1,26,4,25,1,9,2,25,9,26,5,25,2,9,1,25,1,26,5,9,2,15,5,9,3,15,3,9,1,26,7,25,1,9,7,25,3,9,1,25,3,9,2,25,1,26,1,25,8,9,6,25,3,9,4,15,8,9,7,15,17,9,4,15,5,9,3,15,1,9,6,15,2,9,2,15,10,9,3,15,3,9,1,25,2,9,4,15,4,9,1,25,1,26,10,30,3,26,1,7,1,13,2,25,1,8,6,9,1,10,1,9,3,10,1,9,6,10,1,9,5,25,2,26,3,1,28,12,1,9,1,26,36,25,2,9,4,25,2,26,21,30,1,29,11,26,26,29,1,26,4,29,6,26,9,29,19,26,12,29,4,26,49,25,1,9,1,10,1,25,1,26,7,25,2,9,7,12,1,1,413,}, + {1,405,9,3,25,2,9,2,25,1,9,9,15,1,9,3,25,2,9,1,15,5,9,1,25,1,9,1,25,2,26,1,25,2,9,1,25,8,26,1,25,3,26,4,25,1,9,1,15,1,9,2,15,1,25,2,26,2,25,5,9,9,15,6,11,1,15,1,1,215,9,2,15,2,9,7,25,2,26,7,25,7,26,3,25,2,9,2,25,2,9,7,15,1,9,1,15,3,14,2,15,2,9,1,15,6,9,4,25,1,9,5,15,2,9,2,26,3,25,2,26,5,25,1,9,5,25,4,26,1,25,1,26,5,25,3,9,2,25,1,26,3,25,1,9,3,15,9,9,1,25,1,26,6,25,1,9,2,25,1,9,5,25,2,9,2,25,6,9,2,25,3,9,7,25,6,9,5,15,6,9,2,15,11,14,1,15,8,9,4,15,1,9,1,15,4,14,1,15,2,9,3,15,2,9,4,15,5,9,7,15,3,9,2,25,1,9,2,15,2,9,4,25,1,9,2,15,2,9,1,25,1,26,2,30,3,26,5,7,1,13,3,8,8,10,1,9,3,10,1,9,1,10,2,9,4,10,1,25,3,10,1,25,4,26,2,7,1,1,31,16,1,25,1,26,7,27,2,26,4,27,1,26,2,27,1,25,4,26,12,25,2,9,5,25,3,26,15,29,1,26,3,30,1,29,10,26,21,29,9,26,3,29,5,28,2,29,4,26,7,29,24,26,4,29,9,26,46,25,1,9,2,10,1,25,1,26,6,25,2,9,6,1,413,}, + {1,402,9,6,25,2,9,2,25,1,9,11,25,1,26,3,25,1,15,6,9,1,25,3,26,1,25,2,9,1,25,2,26,3,25,3,26,1,25,2,26,3,9,2,15,3,9,1,15,3,9,1,26,3,25,9,9,5,15,5,14,1,11,1,15,3,1,208,9,2,15,4,9,3,25,1,9,4,25,1,26,1,25,1,9,2,25,1,26,2,25,3,9,5,25,1,26,1,25,3,9,2,25,7,9,2,15,9,9,1,15,5,9,10,25,2,9,3,25,1,26,2,9,2,26,5,25,1,9,7,25,2,26,1,25,2,26,4,25,1,9,4,25,3,26,2,25,2,9,2,15,8,9,2,25,1,26,1,25,1,26,4,25,1,9,7,25,1,9,2,25,13,9,6,26,1,25,7,9,6,15,1,9,1,15,21,9,2,25,1,9,1,25,1,9,3,15,8,9,11,15,2,9,5,25,2,9,4,15,2,9,3,25,2,15,2,9,4,26,1,9,1,15,2,9,1,26,3,7,1,6,2,13,1,7,2,13,2,25,1,8,8,9,2,10,1,9,2,10,1,9,1,10,7,25,7,27,1,26,1,7,1,1,35,9,1,26,12,29,1,26,4,27,1,25,1,26,4,27,1,25,3,27,1,26,2,27,1,25,4,9,4,25,3,26,13,29,6,30,1,26,2,30,4,29,4,26,6,25,1,26,19,29,3,26,4,29,16,26,4,29,9,26,2,29,28,26,34,30,1,26,10,10,1,9,2,25,3,26,3,25,2,9,6,1,412,}, + {1,398,9,10,25,1,26,1,25,1,9,1,25,1,9,12,25,2,26,1,25,1,15,7,25,5,9,3,25,4,26,1,25,3,26,2,25,1,9,1,15,11,9,2,26,1,25,1,26,1,25,2,26,1,25,2,9,1,25,2,9,7,15,3,14,2,15,3,14,1,15,1,1,201,16,1,9,1,15,9,9,7,25,2,9,2,25,6,9,4,25,16,26,1,25,1,26,1,25,1,9,1,15,5,9,2,15,9,9,1,25,1,9,3,25,1,26,2,25,2,26,3,25,2,26,3,25,2,9,9,25,1,26,2,25,1,26,1,25,4,9,5,25,1,26,4,25,2,9,4,15,6,9,3,25,1,26,4,25,1,9,10,25,6,9,10,15,2,9,1,15,3,9,9,15,1,9,1,15,7,9,1,15,1,9,2,15,12,9,4,25,4,9,3,15,6,9,15,25,5,9,6,15,2,9,7,25,1,9,1,25,2,9,1,15,1,9,1,25,1,26,2,7,3,13,1,8,1,10,1,9,3,10,3,8,1,10,1,8,1,10,2,13,1,8,1,9,1,10,1,9,3,10,1,8,1,25,1,13,4,25,6,30,1,7,1,1,38,9,1,25,1,26,9,29,2,26,19,25,3,9,5,25,3,26,12,29,5,26,18,25,1,26,18,29,1,26,8,29,7,26,6,29,3,26,1,29,7,26,7,29,4,26,1,29,23,26,35,29,2,26,9,25,1,9,3,25,3,26,1,25,3,9,1,16,1,15,1,16,2,1,411,}, + {1,396,16,1,15,1,9,8,25,3,26,1,9,2,25,2,9,1,25,1,9,1,25,10,26,1,9,1,15,7,9,4,25,1,9,3,25,7,26,1,25,1,9,1,15,15,9,1,25,2,9,2,25,3,9,2,25,3,9,6,15,10,17,1,1,195,12,2,15,13,9,10,25,1,26,5,25,5,9,2,15,1,9,1,25,1,9,2,25,2,26,3,25,2,26,4,25,1,9,4,15,6,14,3,15,5,9,1,25,1,9,2,26,3,25,2,26,2,25,5,9,8,25,1,9,4,25,7,9,7,25,3,26,1,25,1,26,3,25,1,9,1,15,9,9,1,25,1,26,4,25,2,9,11,25,2,9,5,25,3,9,7,15,1,9,5,15,13,9,2,15,4,11,1,14,1,11,1,14,1,15,1,14,1,15,5,9,3,25,1,9,3,15,1,9,4,15,2,9,3,10,2,25,7,10,4,25,4,7,4,25,4,9,9,25,6,26,1,25,4,13,2,8,4,9,8,8,2,13,1,8,1,9,2,8,1,9,3,10,1,8,1,13,3,26,4,27,1,25,2,26,1,7,1,1,41,12,1,25,1,26,28,27,1,25,3,9,5,25,3,26,12,29,5,26,67,29,13,26,4,29,25,26,33,29,3,30,1,26,7,25,1,9,3,25,6,9,2,15,2,16,1,1,410,}, + {1,389,9,3,15,1,11,1,14,1,15,3,9,4,25,1,9,1,25,4,26,2,25,1,9,1,25,3,26,3,25,4,9,1,25,5,9,1,15,1,14,1,15,4,9,1,15,4,9,4,25,1,26,1,25,2,26,3,25,1,9,1,15,11,9,2,15,2,11,1,15,1,9,3,25,3,9,12,15,10,14,1,15,1,1,189,12,1,15,6,14,3,15,7,9,5,25,1,9,6,25,1,26,4,25,5,9,4,26,3,25,1,26,5,25,1,9,1,25,1,26,2,25,3,9,5,15,5,14,3,15,4,9,2,25,2,26,3,25,1,9,1,25,4,9,5,25,1,9,6,25,1,9,12,25,2,9,2,25,3,26,1,25,3,26,3,9,3,15,8,9,3,25,1,26,4,9,1,25,2,26,1,25,1,9,3,25,2,26,1,25,5,26,6,25,3,9,4,25,3,9,1,15,13,9,2,15,6,9,6,15,2,9,4,25,5,9,5,10,1,7,1,6,2,7,1,6,3,30,2,29,3,30,2,29,5,30,2,6,3,7,4,26,3,25,5,9,2,25,1,26,6,13,4,8,2,9,9,8,9,9,2,10,1,8,1,13,3,7,1,26,2,30,1,26,2,27,2,6,1,1,44,12,1,9,1,26,28,27,1,25,3,9,4,25,2,26,8,25,1,26,7,29,2,26,7,30,3,26,7,25,2,26,23,27,1,25,1,26,29,29,11,26,3,29,25,26,1,29,6,26,25,29,5,30,1,26,3,30,1,26,1,25,1,9,3,25,6,9,1,16,1,15,1,12,1,1,409,}, + {1,386,9,3,25,2,9,1,15,2,11,1,15,3,9,3,25,2,9,1,25,3,26,3,25,1,9,1,25,2,26,4,25,9,9,1,15,4,9,5,15,4,9,2,25,5,26,2,9,4,25,2,9,1,15,4,14,1,15,2,25,1,9,2,15,1,14,1,15,2,9,1,25,3,9,2,25,1,9,9,15,8,9,2,15,6,9,1,1,179,12,1,15,9,14,7,15,9,9,8,25,2,9,7,25,3,9,2,25,6,26,2,25,1,9,3,26,2,25,3,9,3,15,1,9,1,15,13,9,1,25,2,26,3,25,1,9,2,25,2,9,4,25,2,26,1,25,2,26,1,25,5,9,10,25,9,9,1,25,1,26,3,25,3,26,2,25,1,9,1,15,8,9,1,26,8,25,1,9,4,26,2,25,1,9,3,25,3,9,10,25,3,9,10,15,9,9,4,25,1,9,5,15,4,9,10,25,1,6,2,7,2,6,1,7,5,6,6,30,1,29,7,30,3,7,5,6,1,30,2,26,9,30,3,6,1,7,2,13,3,8,2,9,5,10,1,8,1,13,1,25,1,13,2,8,9,13,2,7,1,6,1,30,1,29,2,30,1,26,3,1,48,9,1,26,29,25,3,9,3,25,3,26,1,25,1,26,5,25,1,26,4,29,5,26,5,29,6,26,5,25,3,26,56,29,38,26,4,29,3,26,28,29,4,30,2,29,2,26,1,25,1,9,3,25,5,9,2,15,1,12,1,1,408,}, + {1,382,9,8,25,2,9,1,15,4,9,1,25,1,9,2,25,1,9,2,25,2,26,3,29,1,25,1,9,1,25,7,9,1,25,3,26,2,25,2,9,2,15,3,9,1,25,3,9,1,15,6,9,2,26,1,25,3,9,3,25,4,9,2,15,3,14,1,15,1,9,1,25,2,9,1,15,1,14,1,15,2,9,1,25,2,9,13,15,6,9,3,25,1,26,1,9,1,15,4,9,3,16,1,1,168,9,2,16,1,15,1,9,5,25,1,9,2,15,5,14,2,11,1,14,3,11,5,14,1,15,3,9,1,25,2,9,3,25,1,26,3,25,4,9,3,25,4,9,2,25,4,26,4,25,1,9,1,15,1,9,1,25,1,26,1,25,1,9,6,25,1,9,1,15,13,9,2,25,1,26,3,25,1,26,3,25,1,9,3,25,1,26,2,25,2,26,2,25,1,26,2,25,2,9,2,15,2,9,6,25,7,9,3,25,1,26,3,25,1,26,4,25,1,9,6,15,3,25,1,26,6,25,2,9,4,26,2,25,1,9,14,25,2,9,2,15,1,9,9,15,9,9,6,15,6,14,3,15,4,9,1,15,3,9,1,10,1,7,6,8,1,10,1,25,1,8,1,10,2,8,2,10,2,25,1,7,1,8,1,7,9,6,2,7,1,8,1,7,2,6,2,30,8,29,3,30,1,6,1,7,2,13,1,8,3,10,1,9,4,10,1,8,2,13,4,8,3,13,2,7,2,13,1,7,1,26,1,7,1,6,1,30,1,29,3,30,2,26,1,1,51,9,1,26,1,29,2,26,25,25,3,9,2,25,4,26,12,29,1,26,1,29,3,26,4,29,7,26,5,25,3,26,56,29,34,26,10,29,4,26,28,30,1,29,2,30,1,29,3,26,1,25,1,9,4,25,4,9,1,15,1,12,1,1,407,}, + {1,379,9,11,25,2,9,1,15,4,9,1,25,8,26,4,9,2,25,3,9,2,25,1,26,1,25,3,26,2,25,3,9,2,15,3,9,1,25,3,9,1,15,8,9,2,15,3,9,3,25,1,26,1,25,2,9,1,15,5,9,1,25,1,9,2,15,1,14,1,15,3,9,14,15,7,9,2,25,3,26,1,9,1,15,3,9,4,15,2,9,1,1,159,9,6,25,2,26,3,25,5,9,1,15,7,14,3,15,1,14,1,11,7,15,2,9,7,25,1,9,1,15,1,9,6,25,2,9,3,25,6,26,3,25,1,9,3,25,1,26,2,25,1,9,4,25,3,9,1,15,4,9,2,25,1,9,1,15,7,9,1,26,1,25,1,9,1,25,1,26,15,25,2,9,12,25,6,9,4,25,4,9,1,25,1,26,7,9,1,15,4,9,1,25,1,26,5,25,1,26,1,25,3,26,3,25,1,9,5,25,2,9,6,25,1,9,2,15,5,9,10,15,13,9,2,15,2,9,1,15,9,9,3,8,1,7,5,8,2,25,1,7,1,25,10,8,1,10,2,8,2,10,2,8,2,10,1,8,1,7,5,6,2,30,1,29,4,30,1,29,4,30,1,6,1,7,1,13,1,8,3,7,2,8,2,10,2,9,1,10,1,8,1,13,1,7,2,13,1,7,7,13,1,6,2,30,3,29,3,30,1,8,1,1,54,25,1,26,1,29,8,26,18,25,2,9,3,25,3,26,3,25,2,26,9,29,4,26,4,29,7,26,21,29,1,26,43,29,4,26,2,29,25,26,19,29,5,26,16,30,2,26,5,30,1,29,1,30,1,26,1,29,2,30,1,25,1,9,3,25,4,9,2,12,1,1,406,}, + {1,376,10,1,26,2,25,2,9,1,25,1,9,8,25,1,26,1,9,1,15,2,9,2,25,2,26,1,25,2,26,1,25,1,26,4,9,1,15,2,25,2,9,4,25,3,26,1,25,6,9,1,15,3,25,3,9,1,15,14,9,3,26,1,25,1,26,1,25,1,9,1,15,5,9,1,15,9,9,12,15,8,9,5,25,1,9,1,15,4,9,1,25,1,9,3,15,1,9,2,1,147,9,7,25,6,9,1,25,2,26,7,25,1,9,3,15,2,9,3,15,5,14,1,11,4,14,2,15,2,9,5,15,3,9,3,26,3,25,1,9,1,25,6,9,2,25,8,9,4,25,2,9,3,25,2,26,3,25,1,9,3,25,2,9,1,26,2,9,1,15,7,9,2,25,1,26,5,25,1,26,10,25,1,9,3,25,1,9,3,25,1,9,6,25,1,9,1,25,3,9,11,26,6,9,1,15,5,9,1,25,1,26,6,25,2,26,3,9,3,25,4,26,1,25,1,9,7,15,9,9,1,15,1,9,1,15,2,9,1,15,1,9,2,15,2,9,1,15,11,14,1,15,1,14,1,11,1,14,1,15,5,9,3,10,2,8,1,7,2,6,1,7,5,30,1,26,2,27,2,26,10,7,3,13,2,25,1,10,2,25,2,7,2,6,2,30,1,29,6,28,3,29,1,30,1,7,1,8,3,7,4,8,8,13,1,7,3,6,7,30,3,29,4,7,1,1,56,12,1,26,3,29,3,26,21,25,3,9,1,25,4,26,13,29,4,26,5,29,8,26,22,29,1,26,41,29,3,26,8,29,9,26,1,29,11,26,21,29,6,26,3,29,2,26,9,30,2,26,6,30,2,26,4,25,1,9,3,25,3,9,2,15,1,1,405,}, + {1,375,25,2,26,2,25,2,9,1,25,2,9,8,26,2,9,4,25,1,26,5,25,1,26,3,9,1,15,3,9,1,26,1,25,1,9,2,25,1,26,1,25,6,26,2,9,1,15,4,9,3,15,15,9,1,25,2,26,1,25,2,9,1,15,16,9,1,25,4,9,3,15,12,9,1,25,1,9,4,15,5,9,1,25,2,9,3,15,1,9,1,15,2,1,135,9,11,25,5,26,1,25,6,9,1,25,10,9,6,15,5,14,2,11,3,14,4,15,2,9,4,15,3,9,3,25,2,9,6,25,1,26,1,25,1,9,1,25,5,9,3,25,1,26,2,25,1,9,3,25,2,26,2,25,1,26,9,25,1,26,2,25,1,9,1,15,6,9,1,25,1,26,4,25,2,9,1,25,2,26,1,25,3,26,1,25,2,26,1,25,1,9,3,25,2,9,2,25,1,9,4,25,3,9,2,25,3,9,12,25,1,26,3,25,1,9,1,15,5,9,1,25,1,26,5,25,1,9,1,25,8,9,1,25,2,9,3,15,6,9,5,15,17,9,6,15,12,9,3,8,1,7,4,6,5,30,2,29,2,26,4,30,1,29,6,30,2,26,3,6,1,30,1,26,2,7,2,25,1,7,1,6,2,30,1,29,4,28,7,29,1,6,2,7,2,6,4,7,3,13,1,8,4,13,1,7,2,6,3,30,4,29,7,10,1,1,59,9,1,26,26,25,5,9,1,25,3,26,4,25,2,26,5,29,5,26,4,29,9,26,35,29,9,26,46,29,12,26,11,29,3,26,3,29,13,26,7,30,3,29,1,26,5,30,1,26,2,30,1,26,1,25,1,9,3,25,3,9,1,16,1,1,404,}, + {1,373,10,1,13,2,25,2,26,3,25,6,9,1,25,4,26,2,9,5,25,2,26,2,25,2,26,2,25,1,15,5,25,10,26,4,15,11,9,7,15,5,9,5,15,11,9,1,25,1,9,1,25,1,15,4,9,1,25,6,9,1,15,9,14,1,15,1,9,1,25,1,9,2,25,1,9,1,15,1,14,1,15,3,25,4,9,5,15,3,16,1,9,1,1,121,9,2,12,2,15,8,9,8,25,17,26,10,25,1,9,3,15,3,14,1,11,2,14,1,11,4,14,2,15,1,9,3,15,3,9,1,25,1,26,7,25,1,9,1,25,1,26,2,25,5,9,2,25,5,9,3,25,1,26,15,25,1,26,3,9,1,15,7,9,1,25,2,26,4,25,1,9,2,25,1,26,4,25,3,9,4,25,2,9,2,25,1,9,4,25,7,9,10,25,5,26,3,25,1,9,1,15,6,9,2,26,3,25,1,9,1,25,11,9,2,15,6,9,12,15,2,14,2,15,6,9,8,15,7,9,5,10,1,7,1,6,5,29,2,30,1,29,3,30,1,7,1,30,3,29,5,28,1,29,8,30,1,6,1,7,1,25,2,7,2,6,3,30,1,29,2,28,9,29,2,6,3,30,1,29,1,30,2,6,3,7,3,13,3,7,1,6,2,30,3,29,9,10,1,1,62,9,1,25,1,26,5,29,2,26,3,29,1,26,13,27,1,25,4,9,2,25,5,26,8,29,5,26,5,29,8,26,40,29,14,26,37,29,16,26,12,29,3,26,1,29,14,26,5,29,3,30,1,26,9,25,1,9,2,25,3,9,2,16,1,1,402,}, + {1,371,9,1,25,2,13,3,9,1,25,1,26,3,25,9,26,3,25,1,15,1,9,2,15,1,9,1,25,3,26,1,25,2,26,1,9,1,15,5,9,1,25,1,26,1,25,6,26,4,9,1,15,10,9,1,25,4,9,3,15,8,9,1,15,11,9,1,26,1,25,3,9,1,15,4,9,3,25,1,9,2,15,13,9,3,25,1,15,6,25,2,9,7,15,4,9,6,1,107,12,3,15,9,9,6,15,5,9,2,25,1,26,4,25,12,26,1,25,6,26,5,25,1,9,6,15,2,14,1,11,1,14,1,15,12,11,1,15,1,9,1,26,7,25,1,9,1,25,8,9,2,25,4,9,4,26,3,25,2,26,5,25,2,26,6,29,1,26,1,9,1,15,2,14,1,15,5,9,1,25,1,26,3,29,1,26,1,9,2,25,1,26,2,25,3,26,1,25,1,9,5,25,1,9,3,25,1,9,4,25,3,26,1,25,3,9,1,15,1,9,7,25,1,9,1,25,2,26,5,25,2,9,2,15,4,9,1,25,1,26,3,9,1,25,2,9,1,25,2,9,9,15,9,9,9,15,7,9,2,25,4,9,3,15,7,9,2,10,1,8,1,7,2,6,1,29,3,6,1,29,6,6,1,7,4,6,1,7,5,8,3,10,2,1,3,7,2,6,2,7,2,25,2,7,3,6,1,29,3,28,10,29,2,30,1,6,1,30,2,29,2,30,2,6,4,7,2,6,2,30,3,29,4,28,4,29,2,1,66,16,1,25,1,26,1,29,4,26,1,29,1,26,18,25,3,9,2,25,3,26,10,29,5,26,4,29,9,26,19,29,2,26,25,29,16,26,20,29,1,26,16,29,16,26,1,29,2,26,10,29,12,26,4,29,2,30,1,29,1,30,1,26,8,9,3,25,3,9,1,16,1,1,401,}, + {1,370,9,2,25,2,26,2,13,1,25,1,9,1,25,1,28,1,26,4,25,1,26,1,25,4,26,3,25,1,9,1,15,1,9,2,15,1,25,1,26,3,9,2,26,2,9,1,15,5,9,1,26,6,25,1,26,3,25,1,9,1,15,9,9,1,25,7,15,5,9,1,15,2,9,2,15,11,9,1,26,1,25,1,9,1,25,1,9,1,15,23,9,1,25,2,9,1,15,3,11,1,15,2,25,2,9,1,25,1,9,3,15,3,9,3,15,2,9,12,1,89,16,1,12,2,15,5,14,1,15,4,11,6,14,2,15,1,9,6,15,6,9,1,25,1,26,2,25,1,9,7,25,2,26,7,25,2,26,4,25,2,9,1,25,5,9,1,15,4,14,7,15,4,14,1,15,2,9,1,25,1,26,7,25,1,9,1,25,1,9,2,25,4,9,4,25,2,9,3,25,1,26,4,25,2,26,5,25,3,26,3,25,1,26,3,9,1,15,1,14,1,15,3,14,1,15,2,9,1,25,1,26,2,25,1,26,2,9,1,15,1,9,1,25,2,26,4,25,1,9,5,25,6,9,3,25,6,9,14,26,5,25,4,9,1,15,4,9,1,26,9,25,2,9,8,15,12,9,2,15,19,14,1,15,5,9,2,7,1,6,3,29,7,28,1,29,2,6,1,1,23,10,1,7,1,30,1,29,2,30,1,6,3,29,3,28,10,29,1,30,1,6,2,30,1,29,4,30,2,6,3,30,5,29,4,28,3,29,1,30,1,7,1,8,1,1,69,9,1,26,9,25,4,26,12,27,1,25,1,9,3,25,2,26,11,29,5,26,4,29,9,26,15,29,6,26,29,29,18,26,32,29,19,26,12,29,10,26,6,29,3,30,1,26,3,30,2,29,1,30,1,25,1,9,2,10,1,25,3,9,1,16,1,1,399,}, + {1,369,9,2,25,2,13,1,26,1,29,1,30,1,13,1,9,2,26,4,25,2,26,1,25,4,26,3,9,6,25,1,26,3,25,2,26,2,25,1,15,6,9,1,25,1,26,4,25,2,26,1,25,1,9,1,15,10,9,1,25,3,9,1,25,2,9,1,15,11,14,1,15,9,25,2,9,1,25,1,26,1,25,1,15,11,9,4,15,8,9,3,15,7,9,6,15,3,9,3,15,5,9,13,15,3,9,4,1,67,9,18,15,2,11,2,14,1,15,3,14,1,11,2,14,4,15,4,9,3,15,3,9,3,25,2,9,3,25,2,9,2,25,5,26,12,25,1,9,2,25,2,9,2,15,1,9,3,15,3,14,4,11,3,14,2,11,2,15,2,9,1,26,5,25,2,26,4,25,1,9,1,25,4,9,5,25,2,9,1,25,1,26,12,25,1,9,1,26,6,29,1,26,1,9,1,15,8,9,1,25,2,9,2,29,1,26,1,9,2,25,1,26,2,25,3,9,7,25,1,9,8,25,1,9,1,25,3,9,2,15,2,9,11,25,1,26,2,25,1,9,1,25,2,26,3,9,1,15,4,25,4,26,7,25,5,9,5,15,15,14,1,15,16,9,6,7,1,6,1,29,10,6,1,7,1,1,29,7,1,6,1,29,4,28,11,29,11,30,1,29,8,28,3,29,1,6,1,7,1,1,76,9,1,26,25,25,1,9,3,25,2,26,11,29,4,30,1,26,6,29,7,26,17,29,3,26,43,29,3,26,38,29,12,28,1,29,8,26,9,29,9,26,6,29,3,30,1,26,4,29,2,26,1,9,3,25,3,9,1,16,1,1,398,}, + {1,369,9,2,25,1,26,1,28,3,30,1,25,1,9,1,15,2,25,1,26,2,25,5,9,1,25,1,26,2,9,7,26,6,25,1,26,1,9,1,15,6,9,1,25,2,26,1,25,1,26,2,25,1,26,1,9,1,15,11,9,1,25,6,9,1,15,13,9,2,15,6,25,3,26,2,9,3,15,8,9,1,25,4,9,1,15,17,9,1,15,8,9,3,15,7,9,1,25,2,9,14,15,5,9,1,1,52,9,5,15,1,9,4,25,2,26,4,25,1,9,3,15,2,9,3,15,4,14,1,15,12,14,2,15,3,9,2,15,1,9,4,15,4,9,2,26,3,25,2,26,2,25,4,26,4,25,1,9,1,25,4,9,1,25,1,26,2,25,2,9,2,25,1,9,2,15,4,14,6,11,2,14,1,15,2,9,1,25,1,26,8,25,1,26,2,25,5,9,5,25,3,9,3,25,1,26,2,25,2,26,6,9,2,25,2,26,5,25,1,9,3,15,7,9,1,15,3,25,1,26,1,25,2,26,4,25,1,9,4,25,1,9,3,26,1,25,1,9,7,25,5,9,13,25,2,26,1,25,1,26,2,25,2,26,4,9,3,15,2,9,4,26,6,25,2,9,10,15,2,9,1,15,12,14,1,15,5,9,1,15,3,14,1,11,2,14,2,15,3,9,3,7,1,30,1,29,9,6,1,1,36,7,2,6,1,29,1,28,6,29,16,28,5,29,2,7,2,1,82,9,1,26,11,27,2,26,7,29,1,26,3,25,1,9,2,25,2,26,13,29,3,26,7,29,7,26,16,29,4,26,91,29,8,28,3,29,6,26,9,29,8,26,6,29,3,30,1,26,4,30,1,26,1,25,1,9,3,25,1,26,1,25,1,9,1,1,397,}, + {1,369,9,1,25,1,26,2,30,1,26,3,25,1,9,1,15,2,9,1,26,2,25,1,9,1,25,4,26,2,25,1,9,1,15,1,9,2,15,1,9,2,26,6,25,2,9,1,15,2,9,2,15,3,9,1,25,1,26,1,25,2,26,1,25,1,26,1,9,1,15,10,9,5,25,1,9,2,15,7,9,1,25,4,9,1,25,2,26,1,9,2,15,4,9,1,25,4,9,1,15,3,25,1,9,1,15,1,9,1,15,1,9,2,25,4,26,1,25,1,15,17,9,1,15,16,17,1,15,1,9,1,25,1,9,4,25,1,9,6,15,5,9,1,15,7,12,1,1,39,9,2,16,1,12,1,15,13,9,2,25,1,26,1,25,4,9,4,15,16,14,2,15,5,14,2,15,7,9,1,15,4,9,1,25,1,26,4,25,4,9,3,25,4,9,7,25,1,26,5,25,3,9,3,15,4,14,1,11,2,14,2,11,2,15,2,9,7,25,1,26,1,25,3,9,2,25,2,9,7,25,3,9,3,25,5,26,5,25,4,26,1,25,1,9,9,15,9,9,1,25,1,26,1,25,5,26,1,9,3,25,1,26,1,25,1,9,3,26,1,9,9,25,4,9,4,25,3,9,8,25,2,9,1,25,3,26,2,25,2,26,2,9,2,15,3,9,1,25,8,9,14,15,19,11,6,14,1,15,3,9,3,25,1,30,1,29,1,28,2,29,2,28,2,6,1,7,1,1,44,8,1,7,1,6,1,29,1,6,1,29,12,28,2,29,2,6,1,7,1,8,1,1,88,12,1,25,1,26,2,27,2,26,1,27,1,25,4,9,1,25,3,26,8,25,2,9,2,25,2,26,5,25,3,26,5,29,4,30,1,26,5,29,7,26,16,29,3,26,96,29,18,26,7,29,7,26,6,29,3,26,7,25,1,9,2,10,1,25,2,9,1,16,1,1,395,}, + {1,368,9,2,25,1,13,2,25,2,13,2,9,2,15,3,9,1,26,2,25,1,26,2,25,2,26,2,25,1,15,1,9,3,15,1,9,1,25,1,26,7,25,1,15,1,9,5,15,3,9,2,25,1,26,1,25,1,9,2,15,12,9,5,15,8,9,1,25,1,26,1,25,4,26,3,9,1,15,6,9,4,15,2,14,1,15,1,9,1,15,2,9,2,25,6,26,2,15,11,9,7,15,16,11,2,15,1,9,4,25,2,15,3,9,2,15,5,9,5,15,6,1,31,12,2,11,3,14,1,15,19,9,1,25,4,9,2,25,1,26,6,9,1,15,3,9,3,15,11,14,1,11,1,14,3,15,9,9,3,26,6,25,3,9,1,25,2,26,1,25,8,9,2,25,1,26,4,25,1,9,2,15,1,9,4,15,2,14,2,11,1,14,4,15,2,9,2,15,2,9,2,25,4,9,2,26,4,9,5,25,1,9,2,25,1,9,3,25,3,9,2,25,1,26,3,25,1,9,8,15,1,9,7,15,7,14,2,15,1,9,1,25,3,9,3,25,1,9,4,25,1,9,1,15,2,9,1,26,1,25,1,9,4,25,11,26,3,25,1,9,3,25,1,9,5,25,3,9,1,25,1,26,2,25,4,9,3,15,1,14,1,15,2,9,3,25,5,9,4,15,8,9,2,15,8,14,1,15,8,14,3,15,4,9,4,25,2,26,1,29,1,28,4,29,1,6,1,29,1,1,61,8,2,7,2,1,96,9,1,25,1,27,1,26,3,27,2,25,8,27,1,26,6,27,1,25,1,9,2,25,4,26,2,25,4,26,3,29,5,30,1,26,5,29,8,26,15,29,1,26,102,29,19,26,5,29,8,26,6,29,1,26,8,9,3,25,2,9,2,1,394,}, + {1,368,9,1,25,4,9,2,25,1,13,2,9,2,15,2,9,1,25,1,26,8,9,1,15,6,9,1,26,7,25,1,9,6,15,3,9,2,25,2,9,1,15,20,9,1,15,4,9,2,25,6,26,3,9,1,15,3,9,1,15,1,9,1,15,4,9,2,15,8,9,1,25,5,26,1,25,1,15,9,9,1,25,8,9,1,15,5,9,1,15,10,17,1,15,1,9,1,25,1,9,2,25,1,9,1,15,2,9,1,25,1,9,1,15,6,9,1,15,1,9,4,15,5,1,21,12,2,11,3,14,4,15,5,11,4,14,1,15,15,9,1,25,1,9,5,25,1,26,1,25,3,9,2,15,2,9,1,25,1,26,2,9,2,15,9,14,2,15,8,9,3,15,4,25,1,26,3,25,1,26,6,25,4,9,1,26,6,25,3,26,1,25,1,26,2,9,1,15,1,9,2,25,2,9,2,15,2,14,2,15,2,14,1,11,1,15,6,9,1,25,3,9,4,25,1,26,3,25,1,9,3,25,1,9,2,25,2,9,5,25,1,9,2,25,1,26,3,25,2,9,9,25,1,9,4,15,7,14,5,15,2,9,2,25,1,26,2,9,5,15,3,9,1,26,1,25,1,9,4,25,2,26,1,25,2,9,3,25,1,26,6,9,2,25,5,9,2,25,8,26,1,25,1,26,1,25,3,9,1,15,5,9,7,15,1,9,1,15,10,9,4,15,10,9,4,15,6,16,1,9,2,7,1,6,1,30,2,29,1,28,4,29,1,7,1,1,165,9,1,25,1,26,5,25,3,27,2,25,1,27,1,26,9,25,1,9,2,25,10,26,14,30,1,29,6,30,1,26,44,27,2,26,73,29,23,26,3,29,7,26,14,25,1,9,6,16,1,1,392,}, + {1,369,9,2,25,1,9,3,25,1,13,2,25,1,9,1,15,3,9,1,26,8,9,1,15,3,9,4,25,1,26,6,9,1,15,2,9,5,15,2,9,2,26,1,25,1,9,1,15,24,9,2,25,9,9,1,15,3,14,1,15,7,9,2,15,7,9,1,25,1,26,3,25,3,9,1,15,8,9,1,26,5,25,2,26,2,25,1,15,4,9,1,15,2,9,1,15,10,9,2,25,2,9,1,15,2,9,1,26,1,9,2,15,9,9,4,15,5,1,7,9,2,16,2,12,2,11,8,14,1,15,8,14,1,11,5,15,13,9,3,25,2,26,1,25,1,15,2,9,2,25,2,26,2,25,1,9,4,25,1,26,3,25,1,9,1,15,20,9,7,26,3,25,1,26,5,25,2,26,2,25,1,26,3,25,2,26,2,25,2,26,1,25,2,26,2,9,1,25,5,9,1,15,2,14,1,15,1,14,3,11,2,15,2,14,1,11,1,14,1,15,8,9,1,25,1,26,1,25,1,26,2,25,1,26,4,25,3,9,8,25,1,26,2,25,2,9,10,25,3,9,5,15,8,14,2,15,3,9,1,25,5,9,4,15,1,9,1,26,2,9,4,25,2,26,1,25,1,9,4,25,2,26,4,25,1,9,1,25,2,26,3,25,1,9,2,25,3,26,1,25,2,9,1,25,6,26,3,25,1,9,2,15,2,9,3,25,3,9,2,15,6,14,1,15,3,9,8,15,4,9,1,15,1,9,1,15,1,9,1,15,4,9,4,7,1,6,2,29,2,28,5,29,1,1,168,12,1,9,1,26,3,25,8,26,9,27,1,9,3,25,10,26,14,30,1,29,9,26,12,29,1,26,26,27,1,25,17,27,4,26,37,27,3,26,17,29,25,26,3,29,8,26,12,25,1,9,6,1,391,}, + {1,369,9,3,25,1,9,2,25,1,13,3,9,1,15,3,9,1,25,1,26,7,9,1,15,1,9,4,15,2,9,1,25,2,26,2,25,1,9,1,15,3,9,6,15,1,9,5,15,18,9,1,15,2,9,1,15,2,9,1,25,3,9,1,25,3,9,1,25,1,9,1,15,21,9,2,25,1,26,3,25,1,9,1,15,8,9,1,25,1,26,6,25,1,26,2,25,1,15,7,9,4,15,6,9,3,25,1,9,1,15,1,9,2,26,1,25,1,9,1,15,13,9,1,15,14,14,1,15,1,14,2,15,14,14,5,15,10,9,1,15,4,14,2,15,1,9,2,25,3,9,5,25,1,26,3,25,2,9,5,25,2,9,1,15,1,9,3,15,2,14,1,15,14,9,6,25,1,9,2,15,1,9,1,25,1,26,1,25,2,26,4,25,2,26,2,25,2,9,3,25,1,26,3,25,3,26,3,9,1,25,1,9,5,15,1,14,2,11,1,14,1,15,2,14,1,15,1,14,1,11,2,14,1,15,4,9,1,25,1,26,15,25,2,9,5,25,1,9,10,25,2,9,1,25,1,26,2,25,2,26,2,25,1,9,5,15,4,14,3,15,2,9,1,26,2,25,1,9,7,25,1,26,1,15,3,9,1,25,2,26,1,25,2,9,4,25,1,26,4,25,6,9,5,25,9,9,2,25,1,26,2,25,1,9,3,15,4,9,8,15,24,9,1,15,1,9,3,10,1,25,1,26,2,6,2,29,3,28,3,29,1,1,172,12,1,25,5,9,2,25,4,27,2,26,7,25,1,9,3,25,12,26,7,30,2,29,13,26,11,29,5,26,9,27,4,26,1,27,1,25,3,27,2,26,2,25,36,26,47,29,26,26,2,29,8,26,11,9,6,12,1,1,389,}, + {1,369,9,6,25,2,13,1,26,1,9,1,15,3,9,2,25,1,26,6,9,1,15,6,11,1,15,1,9,1,26,4,9,1,15,4,9,7,15,18,9,3,15,1,9,1,15,1,9,2,15,3,9,1,25,4,9,1,25,1,9,1,25,1,9,1,15,5,9,1,15,3,9,5,15,6,9,3,15,1,9,1,26,1,25,1,9,1,15,9,9,1,26,7,25,1,26,3,9,1,15,6,9,6,15,1,9,5,25,2,9,3,25,2,9,1,15,7,9,2,15,2,9,2,15,1,9,3,15,1,9,5,15,7,9,1,15,4,9,6,15,4,14,3,15,5,9,1,15,8,9,1,15,10,9,2,15,2,9,2,25,6,9,3,15,2,9,2,25,2,26,2,9,1,15,3,11,2,14,1,15,6,14,2,15,4,9,6,25,1,9,2,25,3,9,2,25,1,26,4,25,1,26,1,25,1,9,5,26,4,25,3,26,2,25,7,9,3,15,5,14,1,11,1,14,1,15,1,14,1,15,6,9,1,25,2,9,2,26,10,25,5,9,1,25,3,9,4,25,3,9,1,25,5,26,2,25,1,9,1,25,1,26,1,25,3,9,3,15,5,14,3,15,2,9,1,26,2,25,1,9,5,25,1,9,1,25,1,26,1,9,1,15,1,9,1,25,3,26,1,25,2,9,4,25,1,26,3,25,3,26,3,25,1,9,6,25,4,9,12,15,6,9,6,15,5,9,3,15,16,14,1,15,2,9,2,10,1,30,1,6,2,29,3,28,4,29,1,8,1,1,175,9,3,25,2,9,2,25,4,27,1,26,1,27,4,26,2,25,2,9,2,25,12,26,6,30,2,29,15,30,1,26,6,29,3,26,16,27,2,25,17,27,1,26,6,27,3,26,1,27,1,25,27,27,1,26,7,27,1,26,31,29,26,26,1,29,8,30,1,26,7,30,1,26,1,25,1,9,2,15,2,16,1,15,1,1,388,}, + {1,369,9,1,25,1,9,4,25,2,13,3,9,1,15,2,9,1,15,1,9,1,25,1,26,5,15,8,9,2,25,1,26,2,25,1,15,5,9,5,15,5,9,1,15,9,9,1,15,4,9,2,15,2,9,3,15,4,9,1,25,3,9,2,25,3,9,3,15,1,14,1,15,1,9,2,15,2,9,1,25,3,9,1,15,6,9,3,15,2,9,2,15,10,9,1,26,11,9,3,15,1,9,3,25,1,9,2,25,1,9,3,25,3,9,1,25,1,26,1,25,1,9,3,25,1,9,2,15,7,9,1,25,2,9,1,15,1,9,2,15,1,9,10,15,4,9,7,25,3,9,7,15,31,9,5,25,1,9,5,15,2,9,1,25,1,26,1,25,2,9,2,15,4,14,1,11,1,14,1,15,14,9,1,25,2,9,2,25,1,26,1,25,1,9,2,25,1,26,2,25,2,26,1,25,3,9,1,25,4,26,3,25,1,9,1,25,1,26,1,25,3,26,3,25,1,9,4,15,1,9,4,15,4,14,2,15,8,9,1,25,3,9,1,25,1,26,3,25,2,9,1,25,4,9,10,25,5,26,5,25,1,9,2,25,1,26,3,25,1,9,2,15,6,14,3,15,1,9,1,25,2,9,5,25,1,26,1,25,1,9,1,25,1,15,2,9,3,25,1,26,1,25,2,9,4,25,1,26,1,25,1,9,3,25,4,9,18,15,2,9,6,15,4,9,5,15,6,9,3,25,1,9,2,15,15,9,1,7,1,6,2,29,4,28,4,6,1,1,179,9,2,25,2,9,3,25,3,26,8,25,16,26,5,29,8,28,9,29,2,26,5,29,4,26,19,27,1,25,3,9,3,25,18,27,1,26,3,27,1,25,7,27,1,25,6,26,1,25,13,26,41,29,10,28,2,29,13,26,1,29,8,26,7,30,1,26,1,10,1,9,2,15,3,1,387,}, + {1,370,26,2,25,2,9,2,25,1,13,1,26,1,13,1,9,1,15,2,9,1,15,2,9,1,26,4,25,1,15,8,9,4,26,1,25,1,15,6,9,5,15,14,9,1,15,1,9,1,15,12,9,1,25,1,26,1,25,7,15,1,9,2,15,7,9,1,25,3,9,1,15,3,9,2,15,6,9,2,15,2,9,1,15,5,9,3,26,11,9,4,25,4,9,1,25,1,9,3,25,1,26,1,25,3,26,1,25,1,9,6,15,6,9,4,25,1,26,1,9,3,25,1,9,6,25,1,9,4,15,3,9,5,25,4,26,1,25,4,9,4,15,6,14,1,11,4,14,1,15,12,9,12,25,1,9,6,25,1,26,2,25,1,9,5,15,14,9,1,15,3,9,1,25,1,9,2,25,1,26,1,25,3,9,3,25,1,9,1,25,4,26,1,25,6,26,2,25,1,9,4,25,1,26,2,25,1,26,2,9,2,25,3,26,2,9,1,15,1,9,3,15,2,14,1,15,6,9,1,25,2,26,1,25,1,9,4,25,1,26,2,25,3,9,7,25,1,26,1,25,1,9,1,25,1,26,7,25,3,26,1,25,1,9,4,25,2,9,2,15,1,9,2,15,4,14,4,15,1,9,2,25,3,9,2,25,1,26,1,25,1,9,1,25,1,9,2,25,1,9,2,25,3,9,1,15,2,9,1,25,1,26,3,25,1,26,2,25,1,9,20,15,1,9,2,25,1,9,7,15,3,9,1,15,13,9,3,15,3,14,3,15,7,9,1,7,1,6,2,29,3,28,3,29,1,6,1,1,182,9,2,25,2,9,5,25,1,26,9,25,9,26,2,25,4,26,4,29,8,28,10,29,2,26,4,29,4,26,24,27,1,25,57,27,1,26,32,29,3,26,4,29,9,28,6,29,19,26,7,25,1,9,2,15,4,1,385,}, + {1,370,10,1,26,1,29,1,26,1,25,1,9,2,25,1,13,1,26,1,25,1,15,2,9,1,15,2,9,1,25,1,26,3,9,1,15,8,9,4,25,2,9,1,15,5,9,5,15,10,9,1,15,3,9,4,15,4,9,2,15,6,9,4,25,2,26,2,9,1,15,1,9,2,15,1,14,1,15,5,9,2,25,1,9,2,15,3,9,4,15,4,9,1,26,1,25,1,9,9,25,2,26,9,25,1,9,2,25,2,26,1,25,5,9,2,25,3,9,2,25,2,9,2,15,3,9,2,15,2,9,2,15,1,9,6,25,1,26,1,25,4,9,9,15,1,9,7,25,6,26,2,25,3,9,6,15,7,9,2,15,8,9,7,25,1,9,5,25,6,26,6,25,2,9,5,15,19,9,2,25,5,9,7,25,1,26,3,25,3,9,2,25,1,9,1,25,2,9,2,25,2,26,4,25,1,9,2,25,5,9,2,25,3,15,1,14,3,15,2,14,1,15,2,9,9,25,1,26,2,25,4,9,5,25,5,26,2,25,1,9,2,26,1,25,3,26,3,25,1,9,2,25,1,26,1,25,1,9,3,25,1,26,1,25,1,9,1,15,5,14,4,15,1,9,1,26,1,25,1,9,1,25,1,26,2,25,1,9,2,25,1,26,2,9,14,25,2,9,3,25,3,9,1,25,3,9,9,15,4,9,8,15,2,9,1,15,1,9,1,25,1,9,1,15,1,9,1,15,14,14,4,15,2,9,4,10,1,27,1,29,4,28,4,6,1,1,185,9,1,25,4,9,4,25,2,27,1,26,6,25,4,9,1,25,4,26,2,25,4,26,6,29,6,28,10,29,3,26,2,30,1,29,7,26,3,27,4,26,8,27,1,25,2,27,2,26,8,27,1,25,54,27,1,26,33,29,10,28,14,29,16,26,5,27,1,9,3,15,3,1,384,}, + {1,371,25,1,26,1,29,1,26,1,25,2,9,1,25,1,13,2,15,2,9,2,15,3,9,1,25,1,9,2,15,1,9,1,15,5,9,4,15,1,9,1,25,1,9,1,15,5,9,5,15,1,9,3,15,1,9,1,15,4,9,1,15,3,9,4,15,2,9,7,15,3,9,2,25,6,15,11,9,3,15,1,9,5,25,4,9,4,25,1,26,3,25,3,9,9,25,5,9,5,25,1,9,2,25,1,9,10,25,1,9,1,15,1,9,1,15,3,9,10,25,2,9,3,25,5,9,2,25,1,9,9,25,4,9,2,25,2,26,1,25,1,9,10,15,19,9,11,25,1,26,2,25,4,26,1,29,1,26,2,9,3,25,1,26,2,25,1,9,1,15,21,25,1,26,1,25,1,9,3,25,1,26,3,9,3,26,3,25,1,9,8,25,2,26,6,25,1,9,2,25,5,26,2,25,1,9,1,15,2,14,2,15,1,14,1,15,6,9,4,25,3,9,1,25,4,26,3,25,1,9,3,25,1,26,5,25,2,9,2,25,1,9,4,26,4,25,2,26,1,25,1,9,2,25,1,26,1,29,1,26,1,9,1,15,11,9,3,25,1,26,2,9,4,26,2,9,3,15,2,9,11,25,2,26,2,25,1,9,11,15,1,9,2,15,4,9,6,15,4,9,1,15,4,9,3,15,7,14,2,15,10,9,2,25,1,7,1,6,1,29,1,28,3,29,1,28,2,6,2,1,187,16,1,9,1,25,3,9,4,25,2,26,5,25,5,9,2,25,4,26,1,25,4,26,5,29,20,30,6,29,4,26,4,27,1,25,6,27,2,26,2,27,2,25,9,27,1,26,12,27,1,25,50,26,31,29,11,28,12,29,17,26,4,25,1,9,2,15,3,1,383,}, + {1,371,9,1,26,1,29,1,26,3,9,2,13,1,25,1,9,1,15,1,9,2,15,4,9,1,15,1,9,3,15,2,9,2,25,3,9,6,15,7,9,2,26,5,9,1,15,5,9,3,15,2,9,3,15,2,9,1,15,1,9,2,15,1,9,2,15,4,9,7,15,11,9,3,25,2,26,21,25,3,9,4,15,1,9,7,15,1,9,7,15,3,9,1,15,3,9,2,15,5,9,17,25,1,9,11,25,1,9,5,25,1,9,1,25,7,9,3,15,3,9,2,15,8,9,4,15,10,9,5,25,1,26,5,25,4,26,1,29,1,26,2,9,2,25,5,9,1,25,4,9,2,15,5,14,2,15,5,14,1,15,2,9,1,25,2,15,1,9,1,25,2,26,3,25,2,26,2,25,3,9,5,25,1,9,2,25,2,26,5,25,1,9,6,25,1,26,1,25,1,9,2,15,7,14,1,15,3,9,7,25,2,9,5,25,3,9,3,25,2,26,3,25,4,26,3,25,1,9,3,26,7,25,1,9,2,25,1,26,3,9,1,15,11,9,3,25,3,9,1,25,1,9,2,26,1,25,1,9,1,25,1,9,5,15,2,9,7,25,1,26,3,25,2,9,13,15,12,14,1,15,2,9,4,15,1,9,2,15,5,14,3,11,1,14,2,15,3,9,6,10,1,6,1,29,1,28,4,29,3,6,1,1,190,12,1,9,1,25,3,9,5,25,1,26,4,27,1,25,4,9,3,25,5,26,8,29,1,26,1,29,4,26,4,25,1,26,4,30,1,29,6,30,1,26,17,27,2,25,3,27,1,26,3,27,1,25,21,26,13,27,1,25,44,27,1,26,24,29,13,28,10,29,17,26,3,25,1,9,2,16,1,15,2,12,1,1,381,}, + {1,371,9,1,26,1,29,2,26,2,25,1,9,2,13,1,9,1,15,1,9,2,15,6,9,5,25,1,26,1,25,3,26,1,9,4,15,8,9,1,26,4,25,2,9,1,15,4,9,3,15,3,9,2,25,2,9,3,15,4,9,1,15,6,9,1,15,13,9,3,25,2,26,11,25,4,26,2,25,4,26,5,25,1,9,3,15,2,9,7,15,1,9,1,15,1,9,4,15,6,9,1,25,1,9,1,15,5,9,10,15,1,9,4,25,1,9,13,25,10,9,9,15,1,9,2,15,2,9,2,15,3,9,4,15,7,14,1,15,5,9,2,25,2,26,5,25,3,26,4,9,1,15,1,9,1,25,1,26,1,9,3,25,1,26,3,25,1,9,3,15,6,14,3,15,1,14,4,15,1,9,4,26,8,25,1,9,7,25,1,26,3,25,3,9,2,25,4,26,2,25,5,9,1,15,12,14,1,15,5,9,1,25,1,26,3,25,2,9,8,25,3,26,2,25,1,9,3,25,1,26,2,25,1,9,3,25,2,26,7,25,1,26,1,29,1,26,2,25,1,9,2,15,9,9,4,25,1,26,2,25,1,9,2,26,2,25,1,26,1,9,12,15,1,9,1,25,1,26,3,25,7,9,8,15,12,14,2,15,4,9,5,15,5,14,5,15,3,9,3,25,2,26,1,6,1,29,1,28,4,29,2,6,1,1,194,9,1,25,4,9,5,25,1,27,3,25,5,9,3,25,4,26,10,29,2,26,2,25,6,26,4,30,1,29,5,30,2,26,12,29,2,26,4,27,1,25,2,27,1,25,2,27,1,26,2,25,47,27,2,26,1,27,2,25,19,26,8,25,3,26,25,29,14,28,8,29,17,26,2,25,1,9,3,15,3,1,380,}, + {1,371,9,1,25,1,26,1,28,1,26,3,9,2,25,1,9,1,15,2,9,2,15,1,9,3,15,4,9,1,26,3,25,3,26,1,25,1,9,6,15,4,9,1,25,1,26,5,25,1,9,1,15,2,9,2,15,1,9,4,15,1,9,1,25,1,26,3,25,1,9,2,15,3,9,1,15,15,9,1,15,2,9,5,26,4,25,1,9,1,25,2,26,2,25,5,26,5,25,5,26,3,25,1,9,3,15,2,9,14,15,4,9,2,25,1,9,1,15,2,9,1,15,2,9,15,25,4,9,9,15,1,9,2,25,4,26,4,25,2,26,2,25,1,9,7,15,2,9,1,15,12,9,1,15,6,9,5,25,1,26,5,25,4,26,4,25,1,9,2,25,3,26,2,25,2,9,2,15,13,14,1,15,6,9,2,25,1,26,6,25,1,9,2,25,3,9,2,25,2,26,2,25,1,9,5,25,3,9,1,25,1,9,1,25,2,26,4,25,1,15,5,9,1,15,10,9,1,26,2,25,1,9,1,25,4,9,9,25,2,9,2,25,2,26,5,25,1,9,1,25,6,26,2,25,3,26,2,25,2,26,2,9,1,15,9,9,3,25,1,26,4,9,2,26,2,25,1,26,1,25,1,15,1,9,11,25,8,9,11,15,22,9,3,15,11,9,2,25,1,26,1,29,2,28,5,29,3,6,1,1,196,9,1,25,4,9,7,25,7,9,3,25,3,26,21,29,4,28,4,29,3,30,1,26,6,29,4,26,10,25,57,27,1,26,9,27,1,25,9,27,2,26,33,29,4,26,3,29,5,26,1,29,7,28,7,29,16,26,2,25,1,9,3,15,2,1,379,}, + {1,371,9,2,26,1,29,1,26,3,25,1,9,1,25,1,9,1,15,2,9,2,15,1,9,3,15,4,25,1,26,4,25,2,26,1,25,1,9,7,15,4,26,6,25,1,9,1,15,3,9,7,25,1,26,6,25,1,9,1,15,21,9,2,25,1,26,6,25,5,26,3,25,5,26,5,25,1,9,2,26,1,25,2,9,4,15,3,9,8,25,1,9,5,15,2,9,2,15,1,9,2,15,2,9,12,25,3,9,1,25,1,9,3,15,1,9,10,15,1,9,1,15,1,9,1,25,3,26,1,25,4,26,1,25,6,9,1,15,1,9,1,15,7,9,1,25,6,9,2,25,1,9,1,15,4,9,2,25,3,9,2,25,1,26,6,25,6,9,4,25,3,9,7,15,6,14,2,15,11,9,4,26,2,25,2,26,6,25,3,9,11,25,2,9,2,25,2,26,4,25,1,9,3,25,1,9,1,15,5,14,4,15,1,9,1,25,1,26,1,25,2,26,4,25,3,26,2,9,4,25,2,9,1,25,1,26,4,25,5,9,4,25,3,26,2,25,3,26,1,25,1,9,1,25,1,26,1,25,1,15,3,9,1,15,8,9,1,26,3,9,3,26,2,25,1,9,15,25,1,9,2,25,6,9,7,15,20,9,4,15,7,9,7,25,1,7,1,29,3,28,6,29,1,6,1,1,199,16,1,25,2,26,1,25,2,9,8,25,4,9,4,25,6,26,3,25,1,26,1,25,1,26,14,29,2,28,7,29,3,26,1,30,1,29,6,26,14,27,1,25,53,27,1,26,13,25,6,27,1,26,2,27,1,26,1,27,1,26,31,29,4,26,4,29,12,28,6,29,5,28,2,29,9,26,1,27,1,9,4,15,2,1,377,}, + {1,372,9,1,26,1,29,1,26,2,29,1,26,1,9,3,15,3,9,6,15,2,9,1,26,6,25,1,26,1,9,1,15,1,9,6,15,1,9,1,15,2,26,6,9,3,15,1,9,8,25,3,26,4,9,2,15,6,9,1,15,2,9,1,15,1,9,3,15,3,9,5,25,2,26,1,25,1,26,1,25,1,9,2,25,2,26,1,25,2,26,1,25,4,26,3,25,1,26,3,25,1,26,2,25,3,26,1,9,2,15,2,9,6,15,1,9,2,15,2,9,2,15,7,9,6,15,1,9,5,25,1,9,1,25,1,9,10,15,2,9,11,15,1,9,3,25,4,9,1,25,4,9,1,25,2,26,1,25,1,9,3,15,7,9,3,25,2,9,3,15,4,9,4,25,1,9,5,25,1,26,1,29,1,26,9,9,4,25,1,9,11,15,1,14,3,11,3,14,1,15,10,9,1,15,2,25,1,9,2,25,1,26,4,25,2,9,1,25,2,9,2,25,3,9,2,25,2,9,3,25,2,26,1,25,1,26,3,29,1,26,5,25,1,9,1,15,1,14,1,11,2,14,1,11,2,14,1,15,2,9,4,25,2,26,1,25,1,9,2,25,1,26,4,25,2,9,1,25,3,26,3,25,7,9,1,15,2,9,3,25,1,26,1,25,1,26,1,25,1,9,2,25,2,26,2,25,2,9,4,15,7,9,1,25,3,9,3,25,1,9,8,15,1,9,6,15,1,9,5,25,3,9,4,15,3,9,1,15,23,9,3,15,6,9,1,15,4,9,2,7,1,29,1,28,8,29,1,6,1,1,201,12,1,9,1,25,1,26,4,25,1,9,5,25,4,9,5,25,2,9,1,25,1,26,15,25,1,9,5,10,1,25,1,27,1,26,2,29,2,26,9,30,2,26,13,27,3,26,1,27,2,25,2,27,1,25,40,27,3,25,3,27,2,26,19,25,7,27,1,26,32,29,22,28,7,29,3,28,3,29,7,30,1,26,1,25,1,9,4,15,1,1,376,}, + {1,372,9,1,25,1,26,3,29,1,26,2,25,1,9,2,15,2,9,8,25,1,26,3,25,1,26,3,25,1,9,8,15,1,9,1,15,2,25,1,26,4,25,1,9,11,25,4,26,1,25,1,9,3,15,7,9,6,25,2,9,4,25,4,26,1,25,1,26,1,25,2,9,3,25,1,26,7,25,1,9,1,25,2,26,5,9,1,26,3,25,5,9,3,25,3,9,2,15,2,9,2,15,1,9,7,15,3,9,10,15,3,9,16,15,1,9,7,15,2,9,2,25,6,9,2,25,3,26,2,9,4,15,5,9,2,25,1,9,2,15,6,9,6,15,2,9,4,25,1,29,1,28,1,29,1,26,2,25,2,26,5,25,1,9,3,25,3,9,1,25,1,9,6,15,2,14,1,11,5,14,2,15,12,9,2,26,1,29,2,26,2,25,1,9,1,25,8,9,2,25,1,9,2,25,1,26,14,9,5,15,1,14,1,15,1,14,1,15,6,25,1,26,3,25,1,9,2,25,2,26,6,25,2,26,2,25,1,9,4,25,2,9,6,15,1,9,1,25,1,26,3,25,1,9,2,26,1,25,2,9,2,25,2,9,3,15,7,25,2,9,3,15,1,9,9,15,2,9,5,15,1,9,1,25,1,26,1,25,1,9,2,25,2,9,5,15,24,9,3,15,14,9,1,7,1,29,1,28,6,29,3,6,1,1,204,9,1,25,1,26,4,25,2,9,6,25,1,9,9,25,3,26,2,25,3,26,4,25,1,9,1,25,2,26,9,25,9,27,6,26,8,27,2,26,5,27,3,25,12,27,1,26,2,27,2,25,24,27,2,26,3,27,2,26,28,27,1,25,3,27,1,26,4,25,2,26,26,29,13,26,1,29,9,28,7,29,3,28,3,29,6,26,2,25,1,9,4,12,1,1,374,}, + {1,372,9,1,25,1,26,7,25,1,9,2,15,1,9,8,26,8,9,10,15,1,9,1,15,2,25,1,26,3,9,2,25,1,9,11,25,1,9,3,15,7,9,5,25,1,9,1,25,3,26,4,25,4,26,2,25,1,26,12,25,2,26,1,25,2,26,4,25,1,26,1,25,1,9,1,25,1,26,2,25,2,9,2,25,1,9,1,25,2,26,3,25,1,9,4,15,1,9,29,25,5,9,3,15,1,9,2,15,1,9,11,25,2,26,2,25,4,26,2,25,2,9,9,25,3,9,1,15,7,9,6,15,1,9,2,25,1,26,2,28,2,29,1,26,1,25,3,26,2,25,3,26,1,25,1,9,8,25,1,26,4,25,1,9,1,15,3,14,2,11,1,14,1,15,14,9,1,26,4,25,2,9,1,25,1,26,2,25,2,9,1,15,2,9,2,25,3,9,2,25,4,26,8,25,3,9,1,25,1,9,1,15,2,14,3,11,1,14,1,15,2,9,1,26,2,25,1,9,4,25,2,26,9,25,1,26,1,25,3,26,1,25,2,9,6,15,2,9,1,25,3,26,1,25,2,26,3,9,4,25,1,9,3,15,3,14,2,15,1,9,2,15,1,9,7,25,4,9,8,25,1,26,2,25,1,9,10,15,3,14,1,15,6,9,2,15,1,9,1,15,11,9,1,15,1,9,2,15,3,9,10,7,1,29,1,28,5,29,2,6,1,8,1,1,206,16,1,25,1,26,5,25,2,9,16,25,2,26,4,25,4,10,1,25,1,26,2,29,3,26,2,27,1,25,2,27,2,25,2,27,1,26,11,27,1,26,8,27,5,25,30,27,2,26,6,27,2,25,10,27,2,25,1,27,1,26,37,25,1,27,1,26,30,29,7,26,5,29,10,28,5,29,3,28,4,29,5,26,1,25,1,10,1,9,3,16,1,1,373,}, + {1,372,9,1,25,1,26,1,29,1,26,6,9,2,15,2,9,7,25,1,26,7,9,10,15,1,9,1,15,2,9,1,25,2,9,3,25,1,9,10,15,1,9,2,15,1,16,1,15,4,9,2,25,3,9,2,15,1,9,1,25,1,26,1,25,1,9,2,25,2,26,3,25,3,26,1,25,3,26,3,25,2,9,9,26,4,29,1,26,1,25,2,9,2,25,1,26,4,25,2,26,3,25,2,9,7,25,1,9,1,25,3,9,3,25,2,9,2,25,1,9,16,25,1,9,4,25,1,9,4,25,1,26,3,25,2,9,4,15,1,9,3,25,1,26,5,25,3,9,3,25,7,9,5,15,6,9,7,25,3,26,1,28,3,29,1,26,10,25,5,26,9,25,2,9,1,15,3,14,2,11,7,14,1,15,7,25,1,26,2,25,1,26,6,25,1,9,7,25,2,9,6,25,3,26,8,25,2,15,2,14,1,15,6,9,2,25,3,9,4,25,1,26,5,25,2,26,4,25,2,9,2,25,2,26,4,25,2,9,7,25,1,26,5,25,1,9,10,15,2,14,1,15,5,9,2,25,6,9,8,25,1,26,2,25,1,9,1,15,2,9,1,25,3,9,3,15,4,14,3,15,17,9,3,15,1,14,1,15,3,9,1,15,3,9,6,10,1,25,1,6,1,29,1,28,4,29,2,6,1,1,210,9,1,26,6,25,1,9,16,25,8,9,1,25,1,26,3,25,1,9,1,10,1,25,1,26,10,30,8,26,5,27,1,26,1,27,1,26,9,25,5,9,1,25,34,26,5,27,7,25,2,27,5,26,59,29,1,26,7,29,7,26,4,29,3,26,2,29,5,28,5,29,3,28,4,29,4,30,1,26,1,25,1,9,4,1,372,}, + {1,372,9,1,25,1,26,4,29,2,26,2,9,2,15,2,9,4,25,1,9,2,25,1,26,7,9,10,15,1,9,16,25,1,9,2,15,10,9,3,25,1,26,4,25,1,9,2,25,2,9,5,25,2,9,2,25,5,26,3,25,1,9,5,15,1,9,2,25,5,26,1,29,1,26,3,9,1,25,3,26,7,25,3,26,1,25,2,9,4,25,1,9,7,25,2,26,1,25,3,9,14,25,1,9,9,25,4,9,9,25,1,26,3,9,14,15,4,9,1,25,1,9,1,15,3,9,2,15,3,9,7,25,1,26,1,29,2,26,1,25,4,26,2,25,1,9,1,25,1,26,2,25,1,9,4,25,2,26,2,25,1,26,1,25,1,9,3,15,4,14,3,11,5,15,5,14,2,15,2,9,1,25,1,9,2,25,1,26,5,25,7,9,2,25,1,9,9,25,1,26,6,25,2,9,4,15,1,9,2,15,3,9,4,15,3,9,1,25,2,26,2,25,1,9,4,25,1,26,2,25,1,9,4,25,1,9,3,25,3,9,7,25,1,26,4,25,1,9,8,25,4,9,1,15,1,14,5,15,1,9,1,25,1,26,3,9,3,15,2,9,5,15,1,9,1,25,1,9,1,15,3,9,2,25,2,9,4,15,7,14,2,15,3,9,6,15,2,9,4,15,2,9,2,15,5,9,1,15,3,9,3,25,1,27,1,26,1,29,1,28,4,29,2,6,1,7,1,1,212,16,1,26,5,25,4,9,7,15,3,9,4,25,6,26,5,25,1,9,1,25,1,26,2,29,10,26,5,30,1,29,6,30,1,26,4,27,1,25,1,27,1,26,11,27,1,25,14,27,9,26,9,27,2,25,1,27,2,25,2,27,2,26,75,29,1,26,10,29,8,26,4,29,4,28,6,29,2,28,4,29,4,26,1,25,2,9,3,1,371,}, + {1,372,25,1,26,6,29,2,26,1,9,13,26,5,9,30,15,11,9,3,25,1,9,1,25,1,9,1,26,3,9,2,15,1,9,2,15,1,9,7,25,10,9,5,25,1,26,3,25,2,26,1,29,2,26,3,25,1,26,5,25,3,26,3,25,6,9,2,25,2,26,1,25,4,9,2,25,6,9,9,15,3,9,1,25,6,9,5,25,3,9,6,25,1,9,1,26,4,25,2,9,3,25,1,9,8,15,3,9,4,15,1,9,6,15,1,9,1,25,1,9,4,25,1,26,4,29,1,26,1,25,2,26,4,25,1,9,4,25,1,9,2,15,2,9,6,25,3,9,2,15,5,11,4,14,1,15,9,9,1,25,1,9,1,15,1,9,1,25,1,26,2,25,4,9,1,25,4,9,5,25,4,9,4,25,1,26,5,25,1,26,3,25,1,9,1,15,15,9,2,25,1,9,5,26,2,25,1,9,3,25,1,26,5,25,3,9,11,25,2,9,2,25,2,9,1,15,1,9,1,25,1,26,4,9,1,15,1,14,5,15,2,9,1,25,1,26,1,25,1,9,1,25,1,9,11,15,4,9,3,15,3,9,9,15,4,9,2,25,1,9,2,25,4,9,6,15,3,9,5,15,1,9,3,10,1,25,1,26,1,29,2,28,5,29,1,6,1,8,1,1,215,25,1,26,7,25,2,9,4,16,1,15,6,9,2,25,3,26,5,25,1,9,2,25,1,26,1,29,11,26,8,30,1,29,7,30,1,26,5,25,1,27,1,26,10,27,2,25,3,27,1,26,5,27,1,25,4,27,6,26,15,25,6,27,1,26,90,29,2,26,5,29,5,28,5,29,3,28,2,29,4,26,2,25,1,10,1,9,3,1,369,}, + {1,372,26,6,29,1,28,2,26,1,9,7,15,1,9,5,25,2,26,1,25,1,9,30,15,10,16,2,9,2,15,1,9,1,15,1,9,2,25,1,9,9,25,3,26,6,25,7,26,1,25,2,9,1,25,1,26,2,25,1,26,5,29,1,26,3,25,3,26,3,25,3,26,4,25,1,9,3,25,1,26,1,9,1,25,5,9,4,25,1,26,1,25,5,9,12,25,1,26,1,25,2,26,2,25,2,9,10,25,1,9,4,25,2,26,2,25,1,9,20,25,1,9,5,26,2,25,2,9,1,15,2,9,1,26,2,29,2,26,6,25,3,9,9,25,1,9,8,15,6,14,1,11,6,14,3,15,3,9,3,15,3,25,1,26,3,25,2,9,2,25,1,26,1,25,1,9,6,25,1,26,2,25,1,9,7,25,1,26,2,25,2,26,1,25,1,9,1,15,14,14,1,15,2,9,6,25,8,9,4,25,1,26,3,25,4,9,8,25,1,26,1,25,3,9,2,25,1,26,4,25,1,9,1,15,8,9,1,25,1,26,1,9,3,25,2,9,1,15,2,9,5,15,16,9,4,15,6,25,8,9,6,15,6,9,4,25,1,6,2,7,1,28,6,29,1,6,1,1,218,16,1,26,9,25,2,9,2,16,1,15,5,9,3,25,2,26,4,25,1,9,1,10,1,25,1,26,5,29,7,26,2,29,2,30,1,26,7,29,7,30,1,26,4,13,1,25,2,26,10,27,3,25,1,27,2,26,30,27,1,25,7,27,3,26,94,29,6,28,5,29,9,26,1,25,1,9,4,1,368,}, + {1,371,9,1,25,1,26,1,29,1,26,3,29,1,28,2,26,1,9,15,25,1,9,12,25,1,26,2,9,10,15,13,16,2,9,7,15,3,9,5,15,1,9,1,25,2,26,2,25,3,26,1,25,2,26,2,25,10,26,8,29,1,26,1,29,2,26,3,9,2,26,1,25,1,26,1,25,1,26,1,25,2,26,3,25,2,9,2,26,1,25,1,9,1,25,3,26,1,25,5,26,6,25,1,9,11,25,1,26,2,25,2,9,1,25,1,9,6,25,1,9,1,25,3,9,1,25,5,26,4,25,3,9,9,25,1,9,2,25,1,9,2,25,1,26,2,9,1,15,2,9,2,26,4,25,1,9,1,15,1,9,1,26,2,29,2,26,3,9,1,25,1,26,4,25,1,9,4,25,2,26,5,9,3,25,1,26,2,25,1,9,2,15,2,14,1,11,12,15,1,9,3,15,3,9,1,25,1,26,3,25,2,26,4,9,5,25,1,26,1,25,2,9,7,25,1,26,4,25,2,15,13,9,11,25,3,9,2,25,3,9,9,25,3,9,2,15,1,9,6,25,1,26,1,25,1,9,3,25,1,26,2,25,1,26,3,25,1,26,2,25,1,15,2,14,1,11,1,15,1,9,3,15,2,9,3,15,2,9,5,15,7,9,2,15,9,9,1,15,8,9,3,25,4,9,3,15,1,9,7,15,2,9,4,25,1,29,1,28,7,6,1,7,1,1,221,25,1,26,9,25,1,9,12,25,4,9,2,25,2,26,5,29,5,26,4,29,2,26,9,30,2,29,6,30,2,26,4,25,3,27,1,26,36,27,1,26,14,27,2,25,4,27,1,26,90,30,1,29,8,28,5,29,7,26,2,10,1,9,4,1,366,}, + {1,371,9,2,25,1,26,1,29,6,26,1,9,14,25,2,9,3,25,1,9,7,26,5,9,1,15,4,9,2,15,9,16,5,9,4,25,2,26,5,25,1,9,2,25,1,26,3,25,1,9,4,25,2,26,1,25,2,9,3,26,2,9,1,25,2,26,7,25,1,26,13,25,2,26,5,25,3,9,1,25,1,9,3,25,1,26,3,25,3,26,3,25,4,26,5,9,1,25,4,9,7,25,2,26,2,25,7,9,3,25,5,9,3,25,1,9,1,25,2,26,4,9,8,25,1,9,1,25,1,9,4,25,1,26,2,9,4,26,11,25,2,26,3,9,3,25,2,26,2,25,2,9,2,25,2,26,5,25,1,9,3,25,1,26,3,9,2,15,3,11,6,14,2,15,5,9,1,15,4,9,1,25,1,26,2,25,2,26,6,25,1,9,2,25,12,26,6,25,1,9,2,25,1,9,1,15,2,9,1,15,8,9,3,15,1,9,1,25,1,26,3,29,2,26,1,25,3,26,2,9,9,25,3,9,5,25,2,9,2,25,2,9,3,25,1,26,9,25,1,9,1,15,3,11,2,15,2,9,1,25,5,9,6,15,7,9,1,25,1,9,7,15,2,9,4,15,6,9,5,15,1,9,3,15,2,9,8,25,2,7,1,6,3,28,7,29,1,7,1,1,224,26,4,29,1,26,1,29,2,26,1,25,3,9,1,25,1,26,2,25,1,9,2,25,2,9,6,25,2,26,4,30,1,29,4,26,2,25,1,26,16,30,2,29,6,30,2,26,5,27,1,26,37,27,2,26,19,27,4,26,87,30,1,29,9,28,5,29,7,26,1,25,1,9,4,1,365,}, + {1,370,9,3,26,3,29,2,28,1,29,2,26,1,9,15,25,2,9,2,25,1,9,6,25,1,26,5,9,1,15,4,16,1,15,2,16,5,9,15,25,2,26,4,25,1,9,1,26,2,29,2,26,2,9,1,25,1,26,1,25,2,9,3,15,2,9,1,25,1,9,6,25,1,26,1,25,3,26,24,25,6,26,5,25,1,9,2,25,2,26,9,25,5,9,7,25,1,9,1,25,6,9,5,25,4,26,3,25,1,26,2,25,1,26,4,25,2,9,4,25,1,9,3,25,1,9,2,25,4,15,2,9,1,25,1,26,2,25,1,26,2,25,1,26,4,25,1,9,1,25,1,26,3,9,5,25,5,9,2,25,4,26,2,25,1,9,9,15,4,14,1,11,2,14,1,15,9,9,4,15,1,9,1,25,1,9,2,25,1,26,3,25,4,9,5,25,1,26,5,25,3,26,7,25,2,9,3,25,2,15,3,14,1,11,1,14,3,15,5,25,1,26,3,29,1,26,3,25,11,9,1,25,2,9,7,25,5,9,2,25,1,26,4,25,1,26,5,25,1,9,5,15,1,11,2,15,1,25,2,9,2,25,1,26,2,25,2,9,4,15,4,9,2,25,2,9,8,26,3,9,1,15,8,9,2,25,1,9,1,15,4,9,1,15,1,9,4,25,2,26,1,29,1,28,10,29,2,6,1,1,227,16,1,26,2,29,2,26,1,29,2,26,3,25,1,26,4,9,1,25,1,26,2,25,2,9,3,10,1,25,1,26,6,30,1,29,1,26,22,30,2,29,10,30,1,26,64,27,1,25,2,27,6,26,21,27,3,26,57,30,1,29,9,28,5,29,7,26,1,10,1,9,3,1,364,}, + {1,369,9,3,26,2,9,1,25,1,26,3,29,1,26,1,25,1,9,15,25,2,9,8,15,1,9,1,26,5,9,1,15,4,16,2,9,24,25,1,9,1,25,1,26,1,9,1,25,1,9,1,26,5,9,1,26,5,25,1,9,1,15,1,9,1,25,3,9,3,25,2,9,1,25,4,26,1,25,3,26,1,25,1,26,1,25,2,26,4,25,2,9,1,25,3,26,2,9,3,25,4,26,1,25,5,26,2,25,1,9,2,25,2,26,7,25,2,9,1,25,3,9,2,25,6,9,3,25,1,9,1,25,1,9,5,25,1,9,1,25,5,9,3,25,1,26,3,25,2,9,3,25,2,9,4,25,1,9,2,26,1,25,2,15,2,9,2,25,2,26,2,25,1,9,3,25,4,26,1,29,2,25,1,9,3,25,3,9,1,25,3,9,4,26,4,25,1,9,3,25,2,9,2,25,1,9,1,15,5,14,1,11,3,15,10,9,3,15,2,9,1,15,2,9,1,25,1,26,3,25,2,9,6,25,3,26,12,9,4,25,1,26,1,25,1,9,2,15,1,14,4,11,3,14,2,15,1,25,1,26,5,25,4,9,4,25,2,26,2,25,4,9,7,25,1,9,6,25,3,26,6,25,2,26,3,25,1,9,2,15,1,11,3,15,3,9,3,15,1,9,2,25,3,9,2,15,2,9,16,15,10,9,5,15,6,9,1,7,1,30,1,29,1,28,10,29,1,28,1,29,1,6,1,1,230,16,1,26,1,29,1,26,1,29,3,26,3,25,1,26,2,29,1,9,2,26,4,25,1,9,1,25,3,26,30,30,1,29,15,30,1,26,68,27,4,26,21,27,2,25,1,27,4,26,53,29,10,28,5,29,6,30,1,25,1,9,4,1,362,}, + {1,369,9,2,25,1,29,1,25,1,9,3,25,5,9,28,26,2,25,1,9,1,15,3,16,1,9,19,10,3,9,5,25,2,26,4,25,5,26,1,25,2,9,1,25,1,26,3,25,1,9,1,15,1,9,1,25,1,26,10,25,3,26,2,25,2,9,1,25,1,9,2,25,2,9,2,25,1,9,5,25,2,9,2,25,9,26,4,25,2,26,8,25,1,9,1,25,2,26,2,25,3,26,4,25,1,26,1,9,8,25,1,9,2,25,1,9,6,25,2,26,5,9,1,25,2,9,1,25,2,9,1,25,1,9,3,25,1,9,1,25,2,9,1,15,4,9,1,26,5,25,1,26,2,29,2,26,8,25,2,9,1,25,3,9,6,25,7,26,1,25,1,9,2,26,1,25,1,15,5,14,2,11,2,14,1,15,9,9,3,25,4,9,2,25,1,26,5,25,2,9,1,25,8,26,4,25,5,26,1,25,1,9,7,25,1,9,1,15,1,14,1,15,1,14,2,11,4,14,1,15,1,25,2,26,1,9,1,25,2,26,3,25,1,9,3,26,2,25,1,26,1,25,1,26,3,25,5,9,2,25,1,9,11,25,3,9,3,25,1,26,4,25,1,15,2,11,3,15,2,9,5,26,2,25,1,9,1,25,1,9,4,25,2,9,2,15,7,9,3,15,17,9,4,8,1,6,1,29,1,28,12,29,1,6,1,7,1,1,234,25,1,26,1,29,3,26,3,25,1,26,1,29,2,25,2,26,1,29,1,26,2,25,6,26,28,30,1,29,16,26,9,29,3,26,88,27,1,25,3,27,1,26,51,29,10,28,5,29,6,26,1,25,1,9,3,1,361,}, + {1,368,9,2,25,1,29,1,26,1,25,1,9,14,25,1,9,6,15,2,9,26,10,1,9,2,10,3,9,2,10,1,9,2,10,3,25,4,9,9,25,1,9,2,25,1,9,2,15,1,9,6,25,2,9,6,25,1,26,3,25,1,26,3,25,1,26,10,25,4,9,3,25,2,9,5,25,1,26,23,25,2,26,1,25,2,26,1,25,1,9,1,25,1,26,5,25,1,9,3,25,1,26,1,9,3,25,4,26,1,25,2,9,1,25,1,26,1,25,2,26,2,25,2,26,2,25,1,9,1,26,1,25,1,9,1,25,1,9,1,25,1,9,1,26,1,25,2,9,1,15,3,9,2,26,4,25,1,26,1,29,5,26,6,25,3,9,2,25,2,9,12,25,1,26,5,9,1,15,2,9,1,15,6,14,2,11,7,15,4,9,1,25,1,26,9,25,1,9,2,25,1,26,1,25,5,9,1,25,5,26,7,9,8,15,7,14,2,15,3,9,3,25,1,26,3,25,2,9,1,25,2,9,2,25,1,26,5,25,9,9,2,25,1,26,1,25,2,9,3,15,1,9,2,25,1,9,5,15,1,25,4,9,1,15,1,11,2,14,1,15,1,9,1,25,1,26,7,25,1,9,2,25,2,26,2,25,1,9,1,15,3,14,1,15,1,14,1,15,1,9,2,25,2,9,3,15,8,9,3,15,3,9,1,10,1,7,1,29,2,28,13,29,1,6,1,1,238,9,1,29,3,26,4,29,2,26,1,25,2,29,3,26,1,25,5,26,29,29,4,30,1,26,2,30,1,29,10,30,1,26,4,27,1,25,2,27,1,26,29,27,2,26,19,27,2,26,40,27,1,25,4,27,1,26,50,29,10,28,2,29,9,26,1,9,3,1,360,}, + {1,367,10,1,25,2,26,1,29,1,9,11,25,1,9,3,25,1,9,2,25,1,9,4,15,2,9,26,10,1,25,5,10,3,9,1,10,1,25,3,13,2,25,4,10,1,25,1,10,1,9,13,25,1,26,4,25,6,9,7,25,1,26,1,25,1,9,2,25,2,26,18,25,2,9,1,25,2,26,2,29,1,26,11,25,1,26,5,25,2,26,3,25,2,9,2,25,1,26,6,25,1,9,3,25,3,9,4,25,1,9,1,25,4,9,1,25,2,26,7,25,3,26,1,25,2,26,1,25,1,26,1,9,2,15,1,9,3,25,1,26,1,29,1,26,1,25,1,26,12,25,3,9,14,25,5,26,1,9,1,25,2,9,4,15,3,14,1,15,4,11,3,14,1,11,5,14,1,15,2,9,1,25,5,26,1,25,1,9,1,25,3,26,7,25,10,26,5,25,1,9,2,26,2,25,1,9,1,15,1,9,2,15,7,9,4,15,3,9,4,25,3,9,1,15,2,9,1,25,4,9,3,25,1,9,2,25,2,9,3,25,2,9,7,25,3,9,2,25,3,26,2,25,2,9,1,15,2,11,4,15,1,9,1,26,6,9,1,15,2,9,4,15,4,14,4,15,2,9,5,15,3,9,1,15,6,9,4,10,1,6,1,29,2,28,13,29,1,6,1,1,242,9,1,26,1,29,1,26,4,29,2,26,1,25,1,26,1,29,2,26,3,25,3,26,29,29,3,26,4,30,2,29,12,26,4,27,3,25,1,27,1,26,18,27,1,26,33,27,6,26,35,27,2,25,1,27,1,26,7,27,2,26,43,29,19,30,1,25,1,9,3,1,358,}, + {1,366,10,1,26,1,25,1,26,1,28,1,26,1,9,27,25,1,9,17,25,1,9,6,10,1,25,9,27,1,26,3,27,4,25,2,26,2,9,1,10,1,9,1,25,2,9,2,25,3,26,1,25,1,9,1,26,12,25,4,9,11,25,2,9,2,25,1,26,4,25,1,26,3,29,1,26,1,25,1,26,5,29,1,26,7,25,1,26,11,25,1,9,2,25,1,26,2,25,1,9,3,26,3,25,5,9,4,25,2,9,1,25,1,9,6,25,1,9,1,25,2,26,3,25,2,26,2,25,1,9,3,25,4,9,6,26,1,29,1,26,3,25,4,26,2,25,2,26,4,9,3,25,2,26,1,25,1,9,12,25,1,26,3,25,1,9,3,25,2,9,1,15,4,9,2,15,2,14,2,11,1,14,1,15,1,14,5,15,3,9,6,26,4,29,1,28,1,29,1,26,13,25,3,26,5,25,2,26,2,25,1,26,2,25,1,9,1,15,1,14,1,15,8,9,5,25,1,26,4,9,8,25,2,26,1,25,2,9,13,15,1,9,8,25,1,26,3,9,6,15,1,11,3,14,1,15,1,9,2,25,1,26,2,9,2,15,2,9,6,15,2,14,2,15,8,14,1,15,2,9,4,15,6,10,1,6,1,29,1,28,14,29,1,7,1,1,245,9,1,26,4,29,3,26,1,25,1,26,1,29,2,26,3,25,1,26,3,25,5,26,22,30,2,26,5,30,5,29,13,26,3,27,1,25,4,27,1,26,17,27,3,26,33,27,4,26,44,25,3,26,44,29,7,28,1,29,11,26,1,9,3,1,357,}, + {1,366,26,3,28,1,26,1,27,1,9,7,25,1,9,7,25,2,9,3,25,1,9,6,25,2,9,5,25,1,9,4,25,1,9,4,10,1,25,9,13,1,26,18,29,1,25,1,26,1,25,1,26,1,29,1,25,1,9,1,26,5,9,3,25,2,27,1,25,1,9,1,25,1,26,4,27,1,26,1,29,1,26,7,27,1,25,3,9,3,25,3,9,1,25,2,26,1,9,2,25,1,26,1,29,2,26,3,29,2,26,3,29,2,26,6,29,2,26,9,9,1,15,1,9,1,25,1,26,2,25,2,9,1,25,1,26,3,25,3,26,2,25,3,9,1,26,2,9,1,25,10,26,6,25,3,9,9,25,1,9,2,25,1,26,1,25,1,26,2,25,2,26,2,25,1,9,4,25,2,9,3,25,1,26,2,25,1,9,4,25,2,9,2,15,4,9,1,26,3,25,1,9,2,25,3,9,2,15,2,9,1,25,2,9,1,15,13,9,5,25,1,9,2,26,2,29,2,26,2,25,3,26,10,25,1,9,2,25,5,26,4,25,1,26,1,25,1,9,4,25,1,9,1,15,2,11,2,14,1,15,1,9,4,25,1,26,2,25,7,9,1,25,4,26,2,25,1,9,2,15,1,9,8,25,1,9,11,26,3,25,1,9,2,25,1,26,3,15,1,14,1,11,3,15,1,9,3,25,1,26,1,25,2,9,6,15,10,9,1,15,8,9,3,15,1,9,1,15,2,10,1,30,1,28,14,29,1,6,1,1,249,9,1,26,3,29,3,26,2,29,2,26,3,25,2,26,1,25,9,26,19,29,2,26,8,30,1,26,3,29,13,26,3,27,1,25,7,27,1,26,17,27,2,25,1,27,1,26,50,29,4,26,23,25,2,27,1,26,45,29,5,28,3,29,10,30,1,25,1,9,2,1,356,}, + {1,364,25,1,26,3,28,2,26,1,25,1,9,19,25,2,9,5,10,1,25,1,10,2,25,1,8,2,25,1,26,1,13,1,9,4,25,2,10,1,25,1,13,1,26,14,30,1,26,1,29,1,26,7,25,2,26,1,9,7,16,1,9,12,16,1,15,1,9,1,25,4,9,1,25,1,26,20,27,1,25,1,9,2,25,2,26,5,25,1,26,1,29,1,26,3,29,2,26,5,29,1,26,2,29,2,26,6,25,1,9,1,25,3,26,2,25,5,26,2,9,1,25,1,26,4,25,5,9,2,25,2,26,1,25,1,26,7,25,7,9,7,25,2,9,1,25,3,26,6,25,2,9,4,25,5,9,2,15,2,9,5,15,3,9,5,25,1,9,4,25,1,26,3,25,1,9,1,15,1,9,5,15,9,11,1,14,1,15,2,9,3,15,2,9,4,26,3,25,1,9,3,25,1,26,8,25,2,9,4,25,3,26,6,25,3,26,2,25,1,9,1,15,1,11,2,14,4,15,4,9,1,25,1,26,3,25,2,9,4,25,5,9,3,15,1,9,5,15,3,9,2,15,2,9,7,25,1,26,3,9,1,15,1,9,1,26,2,9,2,25,1,15,1,11,4,15,1,9,1,25,5,9,5,15,12,9,3,15,4,14,2,15,2,9,3,25,2,29,1,28,13,6,1,1,253,25,1,26,3,29,2,26,2,28,1,29,1,26,2,25,13,26,18,30,1,29,2,26,18,29,7,30,1,26,3,27,1,25,8,27,1,26,13,29,3,30,1,26,54,29,5,26,70,29,18,26,1,10,1,9,2,1,354,}, + {1,363,26,4,29,1,28,2,26,1,25,1,9,25,25,7,8,1,25,1,13,1,25,1,10,1,9,1,10,1,9,1,10,3,26,9,29,1,30,2,29,1,26,7,25,2,9,5,15,1,16,1,15,2,9,1,15,7,9,1,15,1,9,9,15,1,9,3,25,2,9,2,25,2,9,1,25,1,27,1,25,1,9,1,25,2,26,4,29,3,26,1,29,4,26,2,25,1,26,7,25,1,9,1,25,1,26,1,29,1,26,2,29,2,26,3,25,1,26,1,29,1,26,3,29,1,26,6,25,5,26,1,25,1,26,1,25,4,26,1,25,1,9,1,25,2,26,4,25,4,9,10,25,6,9,3,25,1,9,4,25,5,26,6,25,1,9,3,25,2,9,2,25,1,26,3,9,3,15,2,9,3,25,1,9,12,25,1,26,2,25,3,9,3,15,1,9,5,15,5,14,3,11,3,15,2,9,1,15,6,9,2,26,11,25,2,26,3,25,2,9,3,25,5,26,1,25,7,9,2,15,2,14,1,15,2,14,1,11,2,14,1,15,3,9,2,25,1,26,2,9,2,25,1,9,2,25,2,26,1,25,2,9,6,15,1,9,2,15,6,9,6,25,1,9,3,25,1,26,1,25,1,15,2,9,1,25,1,9,2,25,2,15,1,14,1,11,3,14,1,15,1,9,12,15,3,9,6,15,7,14,3,15,1,9,1,7,1,30,1,29,3,30,1,28,12,6,1,1,255,12,1,25,2,26,5,29,2,26,1,25,6,27,1,26,1,13,1,25,5,26,19,29,1,30,1,29,2,30,1,26,18,29,6,30,1,26,3,25,8,27,2,26,13,29,6,30,1,26,6,29,3,26,2,29,7,26,3,29,1,26,27,29,5,26,3,29,1,26,68,29,16,30,1,26,1,25,1,9,2,1,353,}, + {1,361,25,1,26,4,29,4,26,1,25,1,9,14,25,1,9,4,25,6,13,1,25,2,10,1,25,1,13,1,25,2,13,2,25,4,10,3,25,1,26,8,29,1,26,2,25,3,9,8,15,2,16,1,9,2,16,1,15,3,9,1,15,5,9,8,25,1,9,1,25,1,9,7,25,1,9,2,25,1,9,1,25,1,9,1,25,1,9,1,25,4,9,3,25,2,9,2,25,2,26,1,29,1,26,2,9,1,26,1,29,1,26,6,25,3,26,1,29,1,26,22,25,3,9,1,26,4,25,2,26,1,25,4,26,1,25,1,26,2,25,2,9,4,15,2,9,7,25,2,26,1,25,2,9,2,25,1,26,1,25,2,26,2,25,1,26,2,29,1,26,3,25,1,26,2,25,1,9,1,25,2,9,3,25,1,26,2,25,1,9,3,15,2,9,2,26,1,25,1,9,3,25,6,9,3,26,4,25,2,26,3,9,4,15,5,14,1,11,1,14,6,11,1,15,5,9,1,15,1,9,1,25,6,26,1,25,4,26,7,25,1,9,1,25,2,9,5,25,6,9,4,25,3,9,2,15,3,14,2,15,6,9,1,25,5,9,2,26,1,25,2,9,7,15,9,9,6,25,2,9,1,25,2,26,1,25,1,9,1,15,1,9,1,25,3,26,1,25,2,9,2,15,6,9,3,25,2,9,4,15,3,9,1,25,1,26,1,25,2,9,3,15,5,14,1,11,1,14,1,15,1,9,1,6,1,29,1,28,15,6,1,1,259,9,2,25,1,26,3,25,1,26,1,29,1,26,1,25,1,10,2,25,3,26,3,13,1,25,3,13,1,26,7,13,1,26,15,30,1,29,1,30,1,26,16,30,3,29,6,26,3,27,1,25,9,27,1,26,4,29,7,28,7,29,8,30,1,26,1,30,1,29,4,28,2,29,1,28,7,29,1,26,22,29,6,26,8,29,2,26,63,30,1,29,13,30,3,26,1,25,1,9,1,1,352,}, + {1,359,25,1,26,5,29,1,26,3,25,2,9,8,16,1,9,6,25,1,9,4,25,3,26,3,13,1,25,7,26,1,13,2,25,5,13,1,26,3,29,1,26,2,25,2,9,4,15,2,16,2,9,7,15,2,9,4,15,3,16,1,15,5,16,1,9,7,25,1,9,1,25,2,9,2,25,4,26,1,25,2,26,1,25,5,26,3,27,1,9,1,25,3,27,1,25,1,9,4,27,2,9,4,10,1,25,1,26,1,25,2,26,1,29,2,26,2,29,6,28,1,29,7,26,3,25,2,26,6,25,3,26,7,25,1,9,1,25,4,26,1,25,1,9,4,15,1,9,9,25,6,9,3,25,1,26,3,25,1,26,2,25,1,9,2,25,2,9,3,25,2,9,4,26,2,25,1,9,4,15,1,9,2,25,1,9,1,25,8,9,5,26,4,25,1,26,5,25,1,9,2,15,5,14,3,11,2,14,1,11,2,14,1,15,2,9,1,15,1,9,5,25,1,26,2,25,2,9,2,25,2,26,8,9,1,25,3,9,12,25,4,9,2,15,3,14,2,15,6,9,1,25,1,26,1,9,8,25,4,9,6,15,3,9,1,15,5,9,3,25,5,9,1,25,2,9,3,25,5,9,1,25,2,9,16,15,2,9,3,25,1,26,2,25,2,9,4,15,4,9,1,6,1,28,15,29,1,8,1,1,263,9,1,25,1,26,4,29,1,26,1,25,1,10,1,9,2,25,2,26,5,25,2,13,1,26,1,25,2,13,2,25,3,26,37,30,1,29,10,30,1,26,10,27,5,26,3,30,4,26,7,27,4,25,1,10,1,9,7,10,1,25,1,27,1,26,2,29,4,28,1,29,3,26,15,29,4,26,1,29,4,26,10,29,4,26,27,27,2,26,34,29,13,30,2,26,1,25,1,9,1,1,351,}, + {1,357,10,1,26,5,29,2,26,1,25,3,10,1,9,2,25,1,9,6,15,1,16,1,9,2,25,1,9,7,25,1,13,1,25,1,13,3,25,3,13,2,25,3,26,1,13,5,26,4,25,1,13,2,9,5,15,4,9,9,15,18,16,1,9,4,25,2,9,1,25,1,9,3,25,1,26,1,25,1,26,6,25,3,26,5,25,1,27,1,25,2,27,1,25,2,9,10,25,2,9,1,25,1,26,2,29,1,26,1,29,1,28,7,29,5,28,1,29,3,26,10,25,2,26,8,25,5,9,1,25,1,9,6,25,7,9,1,25,2,26,1,25,1,9,1,25,2,9,2,25,1,26,4,25,2,9,6,15,4,9,3,26,1,25,1,9,1,25,3,9,1,15,2,9,3,15,1,9,13,26,2,25,4,9,1,25,2,26,3,9,3,15,2,14,1,11,8,14,1,15,1,9,1,15,4,9,4,25,1,26,2,25,2,9,4,26,9,25,3,9,10,25,3,9,1,15,2,9,3,15,3,11,3,14,1,15,1,9,3,15,1,9,2,26,2,25,1,9,3,25,6,9,7,15,5,9,2,25,2,9,6,25,2,9,1,25,2,26,3,9,2,26,2,9,7,25,8,9,8,25,3,9,2,15,4,9,2,25,1,29,1,28,14,6,1,1,268,9,1,25,1,26,4,25,1,9,3,10,1,25,1,26,5,13,2,26,2,25,4,26,31,13,4,26,7,29,1,28,6,29,7,30,2,6,1,7,1,10,1,9,14,10,3,25,7,10,3,9,11,10,1,25,2,26,2,29,5,26,7,27,1,26,8,29,10,26,11,29,3,26,19,29,4,26,34,30,1,26,4,29,12,26,3,25,1,9,1,1,349,}, + {1,356,26,4,29,2,28,1,26,2,25,1,9,13,15,1,9,11,25,4,13,1,25,1,13,2,26,1,13,2,25,4,26,7,25,1,26,1,25,1,9,6,16,1,9,1,16,1,9,3,15,9,11,1,15,4,17,1,15,1,17,2,15,9,16,1,9,7,25,1,9,2,25,2,26,1,25,2,26,1,25,1,26,1,25,1,27,1,26,11,25,2,9,1,25,5,9,1,25,2,9,4,25,3,26,2,29,1,28,3,29,5,26,4,29,6,26,5,25,3,26,5,25,2,26,2,25,1,26,2,25,4,9,2,25,1,9,3,25,6,9,4,25,7,9,1,25,2,26,3,25,1,9,2,15,1,9,4,15,5,9,1,25,2,9,6,15,3,9,1,15,2,9,5,15,2,9,9,25,1,26,1,25,1,9,8,25,1,9,1,15,3,11,7,14,1,15,1,9,11,25,1,26,2,9,5,25,3,9,1,25,3,26,2,25,2,9,1,15,1,9,5,25,3,26,5,9,3,15,5,14,4,15,5,9,1,25,2,26,1,25,2,9,5,25,1,26,2,25,2,9,2,15,7,9,3,15,2,9,1,15,3,9,9,15,5,9,17,15,1,9,2,25,2,9,5,15,4,10,1,30,1,29,2,28,12,29,1,1,272,16,1,9,1,25,1,26,2,25,1,9,4,25,2,26,2,13,1,25,3,13,1,26,11,25,2,26,25,13,1,26,7,30,1,29,1,28,2,29,1,26,1,25,5,10,2,9,22,10,3,25,11,10,3,9,11,25,1,26,3,29,2,28,2,29,2,26,14,29,17,26,19,29,1,26,43,30,2,26,4,29,10,30,1,26,2,25,1,9,1,1,348,}, + {1,354,26,1,29,2,26,1,29,3,28,1,26,1,25,2,9,13,16,1,15,1,9,12,10,1,26,2,13,1,26,3,29,1,26,2,13,1,26,4,29,1,26,2,25,3,9,2,25,1,9,8,15,10,9,1,15,21,16,1,9,3,15,2,9,3,25,5,26,1,25,2,26,10,29,1,26,1,27,1,26,3,25,1,9,1,25,8,9,1,25,3,9,1,27,1,26,2,29,1,28,2,29,7,26,2,25,1,26,5,29,2,26,4,25,3,26,7,25,1,26,5,25,1,26,1,25,1,9,2,25,2,9,1,25,1,26,2,25,4,9,3,25,3,9,1,25,2,9,2,25,2,26,3,9,17,15,1,9,8,15,3,9,6,15,3,9,2,15,1,9,3,25,4,9,1,15,6,9,2,15,2,11,9,14,1,15,3,9,3,25,1,26,2,25,1,9,4,25,1,26,1,25,2,9,1,25,2,26,1,25,4,26,3,25,1,9,7,25,3,26,4,25,6,9,2,15,9,9,6,15,3,9,1,25,1,26,4,25,3,9,2,15,4,9,7,15,4,9,8,15,3,14,3,15,1,14,2,15,2,9,3,15,1,9,1,15,4,9,2,15,4,9,10,25,1,26,1,29,1,28,12,29,1,8,1,1,276,9,1,10,1,25,1,9,5,10,1,25,2,13,1,25,5,26,11,25,4,26,21,30,4,29,7,28,2,29,1,26,1,10,2,9,1,10,4,9,6,16,4,9,11,10,3,25,19,10,1,9,9,10,1,25,2,26,2,29,4,28,6,29,5,26,10,29,12,26,68,30,1,29,9,30,1,26,2,25,1,1,347,}, + {1,352,25,1,29,5,28,2,29,1,25,1,9,17,15,1,9,6,25,1,9,6,29,2,26,1,29,3,30,3,26,1,29,1,26,2,25,2,9,8,15,15,9,5,15,2,9,1,15,9,9,1,15,1,9,5,15,3,9,2,15,5,9,9,26,4,29,1,26,4,29,1,26,2,25,5,9,1,25,6,26,1,25,1,9,1,25,3,26,3,29,1,28,1,29,2,28,2,29,4,26,11,29,1,26,2,25,5,26,13,25,1,26,1,9,1,25,1,26,4,25,2,26,1,25,2,9,1,25,1,9,1,25,6,9,1,25,4,26,1,25,1,9,1,25,1,9,5,25,2,9,1,15,4,9,4,15,2,9,15,15,1,9,7,25,1,26,1,25,1,9,2,15,2,9,3,25,1,9,2,15,2,14,1,11,3,14,2,15,1,14,3,11,1,14,1,15,3,9,1,25,2,9,11,25,6,26,4,25,1,9,11,26,2,25,1,9,2,25,1,26,2,25,1,9,1,15,2,14,2,15,3,9,13,25,1,26,1,25,1,9,13,15,3,9,13,15,12,9,3,25,1,26,1,25,1,9,5,25,2,26,1,9,2,15,4,9,2,25,1,26,1,30,2,6,1,29,1,28,10,29,1,6,1,1,281,16,1,9,6,10,2,25,1,10,4,25,2,26,8,13,1,25,5,26,5,25,1,26,13,29,5,30,3,29,3,30,4,26,1,9,6,10,5,9,12,10,2,25,3,27,1,26,17,30,3,26,3,27,1,25,3,10,1,9,8,10,1,25,2,27,1,26,1,29,2,28,15,29,17,26,16,29,2,26,51,30,1,29,9,26,3,10,1,1,345,}, + {1,350,10,1,26,1,29,2,28,5,25,2,9,7,15,2,16,1,9,7,16,1,9,4,25,1,9,9,25,1,29,1,26,1,29,6,30,1,26,1,25,2,9,10,15,15,9,1,15,1,9,1,15,11,9,10,15,1,9,8,15,2,9,5,15,1,9,4,26,3,29,2,26,2,29,1,26,3,25,4,9,1,25,7,9,2,27,1,25,2,26,1,25,1,26,1,29,3,28,2,29,3,26,1,29,1,28,2,29,1,26,11,25,5,26,12,25,3,26,1,25,1,26,3,25,3,9,8,25,2,9,2,25,1,26,1,25,7,26,4,25,1,9,3,25,2,26,4,25,1,9,1,25,3,9,6,15,1,9,2,15,6,9,3,15,2,9,1,25,2,9,1,15,3,9,2,25,3,9,4,15,11,14,1,15,3,9,1,25,2,9,2,25,5,9,7,25,2,9,1,25,5,9,10,25,1,26,2,25,1,9,3,25,1,9,2,15,9,9,2,25,3,26,2,25,1,9,4,25,2,9,2,15,3,9,3,25,3,9,3,15,2,9,3,15,3,9,2,25,1,9,8,15,2,9,3,25,1,9,3,25,4,26,1,9,6,25,3,9,5,10,1,7,1,29,1,28,14,29,1,6,1,1,287,12,1,16,1,9,4,10,1,9,4,10,1,25,1,13,1,26,6,13,1,25,3,13,1,26,4,25,1,26,2,25,1,26,11,30,1,29,1,30,1,26,1,25,1,9,21,10,6,9,2,10,4,25,1,27,1,30,1,29,2,28,11,29,4,28,2,29,3,28,7,29,2,26,3,27,1,25,3,10,1,9,9,10,1,25,2,27,2,26,2,29,2,28,15,29,12,26,14,29,4,26,50,30,2,29,7,26,3,27,1,9,1,1,343,}, + {1,348,10,1,26,1,29,2,28,6,9,1,25,1,9,9,15,3,16,1,9,12,10,1,25,4,26,1,25,2,9,1,25,1,29,2,26,2,30,1,26,1,25,2,10,1,9,10,15,18,9,2,15,11,9,8,25,1,9,7,26,2,25,1,9,14,25,1,26,2,25,1,26,1,29,2,26,4,25,1,9,3,25,1,26,1,25,1,26,1,25,4,26,1,25,4,26,1,29,2,28,2,29,5,28,5,29,2,26,3,25,2,26,4,25,3,26,4,29,3,26,6,25,3,26,5,25,6,9,5,25,4,26,1,25,3,26,1,25,2,9,1,25,1,26,10,25,1,9,2,25,3,9,9,15,1,9,3,15,7,9,2,15,2,9,9,25,2,9,5,15,3,14,1,11,2,15,6,9,1,25,1,26,2,25,2,9,4,25,3,9,4,15,1,9,7,25,2,9,5,25,1,9,4,25,2,9,9,25,2,9,1,15,3,25,1,26,3,25,1,26,1,25,5,9,4,15,3,9,1,25,2,9,8,25,4,9,20,15,4,9,5,25,1,9,1,25,1,9,9,25,1,30,1,29,1,28,14,29,1,6,1,1,293,16,1,9,9,25,3,26,4,13,5,26,5,25,2,26,2,25,7,13,1,26,2,30,1,26,1,10,1,9,24,10,1,25,1,26,1,30,1,29,2,28,6,29,8,26,1,29,8,26,2,29,2,30,1,29,6,28,9,29,3,30,1,26,2,27,1,25,2,10,1,9,11,10,2,25,2,26,2,29,3,28,16,29,6,26,66,30,2,26,1,30,1,29,5,26,4,25,1,1,342,}, + {1,347,26,2,29,2,28,4,29,1,26,1,9,2,25,2,9,8,15,4,9,12,25,4,26,4,9,1,15,1,25,1,26,1,25,3,9,9,16,1,15,21,9,4,15,10,9,8,25,2,9,1,25,2,9,2,30,1,29,2,26,1,9,2,25,1,9,7,25,4,9,3,25,2,26,1,29,1,26,4,25,2,9,2,25,2,26,2,25,4,26,1,25,1,27,1,25,1,26,2,29,1,28,2,29,4,26,1,29,1,26,2,29,3,28,3,29,1,26,2,25,1,26,4,25,4,26,4,29,2,26,4,29,2,26,3,25,3,26,6,25,2,9,5,25,2,26,2,25,3,26,3,25,1,9,2,25,2,9,1,25,1,9,3,15,2,9,2,25,2,26,2,25,2,9,1,15,3,9,4,25,4,9,2,15,7,9,3,15,3,9,7,15,7,14,1,15,1,14,5,15,3,9,6,15,2,9,2,15,1,9,1,25,2,9,4,25,2,9,4,25,1,26,1,25,1,9,17,25,5,9,2,15,3,9,4,25,1,26,7,9,2,15,3,9,3,15,1,9,6,25,1,26,1,25,2,9,2,15,4,9,9,25,1,9,7,15,1,9,2,15,2,9,2,15,2,9,8,10,1,7,1,29,1,28,14,29,1,7,1,1,299,16,1,9,7,10,1,25,3,13,4,25,2,13,1,26,9,25,8,26,1,30,1,26,1,10,1,9,25,10,2,30,1,28,8,29,1,30,1,26,13,29,1,26,14,29,4,28,11,29,3,26,1,27,1,25,1,10,2,9,11,10,2,25,4,27,2,26,3,29,4,28,7,29,7,26,66,30,3,29,4,30,1,26,4,1,341,}, + {1,344,10,1,26,3,29,4,28,2,26,1,25,1,9,19,25,1,9,4,25,2,9,3,25,4,26,3,25,1,15,2,9,1,25,3,9,7,16,1,15,24,9,6,15,1,9,1,15,1,9,1,15,3,9,16,26,1,29,1,26,1,25,1,9,2,25,4,9,4,25,5,9,5,25,1,26,4,25,3,9,3,25,3,26,1,25,1,27,1,26,1,25,3,26,1,29,1,28,2,26,2,29,1,26,9,29,1,28,2,29,2,26,6,25,3,9,2,26,1,25,2,29,1,28,1,26,5,29,2,26,3,25,1,26,9,9,4,25,4,26,8,25,2,9,4,15,2,9,4,25,1,9,9,15,1,9,10,15,2,9,2,15,3,9,1,15,4,9,2,25,3,9,5,15,3,14,1,15,8,14,2,15,5,9,12,15,1,9,2,25,1,26,6,25,1,9,33,25,5,9,6,25,1,9,3,25,1,9,2,15,2,9,2,25,3,9,2,15,1,9,1,15,6,9,7,25,1,9,1,25,1,9,5,25,4,9,3,15,5,10,1,6,1,28,15,29,1,6,1,1,305,16,1,9,6,10,2,25,7,13,1,26,2,13,1,26,5,25,6,13,1,26,1,30,1,26,1,10,1,9,27,25,1,29,1,28,7,29,3,26,33,29,6,28,11,29,3,26,3,27,1,25,1,10,1,9,13,10,1,25,5,26,1,29,2,28,8,29,5,26,9,29,6,26,30,25,2,26,18,30,1,29,1,30,1,29,4,26,2,25,2,10,1,1,339,}, + {1,342,25,1,26,4,29,2,28,1,29,3,25,1,9,13,25,2,9,12,25,7,9,2,25,1,9,2,15,2,9,9,15,5,9,2,15,17,9,32,25,2,9,4,25,4,9,5,25,1,9,1,25,3,9,6,27,1,29,1,26,1,25,3,9,5,25,2,26,2,25,3,26,1,29,1,28,2,26,1,29,2,26,2,29,2,28,2,29,2,26,1,25,1,26,1,29,1,28,1,29,3,26,4,25,4,9,2,26,1,25,2,26,1,29,1,26,5,29,2,26,9,25,2,26,1,25,5,26,1,25,3,26,8,25,3,9,10,15,4,9,5,15,3,9,3,25,4,9,3,15,9,9,1,25,3,9,2,15,1,9,2,15,4,14,1,11,2,15,8,14,1,15,2,9,1,15,1,9,3,25,2,9,8,15,2,9,3,25,2,9,4,15,1,9,3,15,4,9,8,15,2,9,6,15,3,9,2,25,2,9,3,25,5,9,8,25,1,9,6,25,8,9,1,15,4,9,8,25,4,9,2,15,1,9,1,26,1,25,2,9,3,15,3,9,1,6,1,28,15,6,2,1,311,12,1,9,6,10,1,25,5,13,1,26,2,13,1,26,4,25,7,26,2,25,1,9,3,16,2,9,24,26,1,28,4,29,1,28,4,29,4,26,37,29,6,28,15,29,1,30,1,26,1,25,1,9,16,10,2,25,3,27,1,26,1,29,1,28,12,29,6,28,6,29,7,26,44,30,1,29,3,26,2,25,3,1,338,}, + {1,340,25,1,26,4,29,3,28,2,26,2,25,1,9,20,15,1,9,2,25,2,9,2,25,3,9,2,25,1,9,7,15,2,9,4,15,1,9,1,15,4,9,6,15,8,9,2,15,6,9,20,25,3,9,2,25,2,9,1,25,3,9,2,25,3,9,3,25,3,9,6,25,1,9,2,25,1,26,1,25,2,9,5,26,2,25,4,9,3,25,5,9,1,25,2,26,1,29,1,28,1,29,3,26,3,33,6,28,1,29,1,25,1,26,1,28,2,29,2,26,5,25,4,9,1,25,5,9,1,25,1,26,4,29,1,26,3,25,2,26,3,25,6,26,3,25,1,26,9,25,1,9,2,25,1,26,1,25,1,26,2,25,1,26,1,25,2,9,1,15,7,9,2,15,6,9,7,15,10,9,2,25,2,9,3,15,7,14,1,15,2,14,1,15,3,14,1,15,1,14,2,15,5,9,2,25,1,26,2,25,1,9,3,15,5,9,13,15,5,9,13,25,2,9,1,15,4,9,1,25,2,9,1,15,2,9,16,25,1,26,1,25,4,9,4,15,2,9,1,15,3,9,9,25,4,9,3,25,2,9,3,15,2,9,1,6,1,28,7,29,1,28,5,29,1,28,1,29,2,1,318,16,1,9,3,25,6,13,4,26,2,13,1,25,5,13,1,26,1,13,1,25,1,9,2,16,2,9,26,26,1,28,3,29,5,28,4,29,3,26,38,29,12,28,11,29,1,26,1,25,2,9,18,10,1,25,1,26,1,29,2,28,10,29,2,28,2,29,4,26,3,27,5,26,3,29,5,26,39,30,1,29,2,30,1,26,1,25,1,10,3,1,336,}, + {1,338,25,1,26,5,29,2,28,3,26,1,9,26,25,2,9,9,15,2,9,4,15,2,9,2,15,3,9,7,15,1,9,2,15,3,9,3,15,1,9,5,15,2,9,20,10,1,25,1,9,9,10,1,25,1,9,3,25,2,9,4,25,3,9,6,25,5,26,1,25,2,9,5,26,2,25,3,9,3,25,2,26,1,25,1,9,2,25,1,26,2,28,1,29,1,26,1,29,2,26,1,9,1,6,1,33,1,11,3,33,2,29,1,26,3,28,2,29,2,26,5,9,1,25,3,9,3,25,1,9,2,25,1,26,5,29,1,26,3,25,3,26,4,25,2,26,5,25,1,26,2,25,9,26,3,25,4,9,4,15,1,9,4,15,9,9,3,15,1,9,3,15,11,9,8,25,3,9,1,15,3,9,1,15,4,14,4,15,2,9,2,25,2,9,1,25,3,9,6,15,6,9,2,15,3,9,3,15,6,9,3,25,3,9,3,15,3,25,3,9,1,15,6,9,2,25,2,9,7,25,1,9,4,25,3,9,4,25,6,9,1,15,9,9,3,25,2,9,2,25,6,9,2,15,3,9,1,10,1,6,1,28,7,29,1,28,1,29,2,28,2,29,1,28,2,6,1,1,324,9,2,25,9,13,3,25,4,13,3,10,1,9,19,10,7,25,2,13,1,26,2,29,1,28,2,29,8,28,4,29,3,26,19,27,4,26,17,29,6,26,3,29,7,28,7,29,1,26,1,30,2,26,1,27,1,25,1,10,1,9,14,25,10,9,3,25,6,9,13,25,1,26,1,29,6,26,7,25,3,26,26,30,1,29,2,30,1,26,1,25,1,9,2,1,335,}, + {1,336,25,1,26,4,29,3,28,2,29,1,26,1,25,1,15,1,9,2,15,1,9,7,16,1,15,5,9,4,25,1,26,2,25,1,15,2,9,2,15,1,9,1,15,3,9,2,15,1,9,1,15,1,9,5,15,1,9,3,15,2,9,5,15,1,9,1,15,2,9,45,25,5,9,3,25,1,9,1,25,1,9,12,25,2,9,1,25,3,26,1,25,3,9,2,25,1,26,1,25,2,9,5,25,1,26,2,25,4,26,1,28,1,29,1,26,1,28,1,26,1,25,2,33,2,11,1,1,1,11,1,33,1,6,1,28,1,26,3,29,1,28,3,26,5,9,1,25,2,9,6,25,1,26,1,29,1,26,4,29,1,26,13,25,2,26,3,25,1,26,4,25,3,26,6,25,4,9,2,25,5,9,5,15,9,9,2,15,15,9,3,25,1,26,4,25,1,9,4,15,11,9,7,15,4,9,3,15,7,9,7,15,2,9,2,15,1,9,11,25,1,26,3,25,1,9,4,15,2,9,3,25,1,26,1,25,3,26,3,25,2,9,3,25,3,9,5,25,5,9,2,15,11,9,2,25,3,9,4,15,5,10,1,6,1,28,4,29,3,28,2,29,4,28,3,6,1,1,329,16,1,9,2,25,3,9,2,10,1,25,6,13,3,25,1,9,20,25,1,26,4,30,1,29,2,28,6,29,2,26,1,30,1,29,6,28,6,29,2,26,3,25,4,26,28,27,3,26,6,29,1,26,12,29,2,28,9,29,4,26,2,25,1,9,44,10,1,27,1,26,1,29,3,26,6,25,8,26,22,30,1,29,1,30,1,26,2,10,1,9,1,1,334,}, + {1,334,25,1,26,5,29,2,28,3,26,1,9,3,15,1,9,1,15,1,9,5,15,7,9,3,25,2,26,2,25,3,15,2,9,2,16,1,15,6,9,2,15,1,9,5,15,1,9,1,25,1,9,1,15,1,9,37,25,10,27,1,25,19,9,1,25,3,9,11,25,2,26,1,25,2,9,1,25,2,9,1,25,1,26,1,25,2,9,3,25,2,26,2,25,2,26,2,29,1,28,1,26,1,29,1,28,1,26,3,25,1,33,5,16,1,9,1,26,3,28,1,29,3,26,1,25,2,26,2,25,2,9,4,25,4,26,6,29,1,26,11,25,2,9,2,25,3,26,5,25,1,26,5,25,2,26,6,25,1,9,7,25,1,9,4,15,11,9,2,15,11,9,2,25,3,9,3,15,6,14,3,11,1,15,8,9,6,15,3,9,7,15,1,9,5,25,2,9,3,25,2,9,2,15,5,9,7,25,1,9,8,15,1,9,5,25,4,26,2,25,2,9,15,15,1,9,4,15,11,9,1,25,2,9,3,15,3,9,1,6,1,29,1,28,3,29,2,28,2,29,7,6,2,1,335,16,1,9,5,25,7,13,2,8,1,9,18,10,2,26,1,28,12,29,3,26,2,29,7,28,6,29,2,26,5,25,3,26,52,29,5,28,10,29,2,26,2,27,1,25,1,10,1,9,25,16,8,9,6,16,1,9,1,10,1,27,1,30,1,29,4,26,6,25,1,26,26,29,1,30,1,26,1,25,1,9,1,1,333,}, + {1,332,26,6,29,3,28,1,29,1,26,1,25,1,9,1,15,1,9,1,15,3,9,4,16,1,15,7,9,1,10,1,25,1,26,2,25,2,9,2,15,1,9,1,15,1,16,1,9,3,15,5,9,10,15,1,9,2,15,1,9,31,10,1,9,3,25,8,26,8,25,1,26,1,25,8,9,1,25,5,9,1,25,4,9,2,25,2,9,6,25,1,26,3,25,1,9,1,25,1,26,1,9,2,25,1,26,1,25,1,9,2,25,4,26,1,25,2,26,2,28,1,29,1,26,1,29,2,27,1,26,2,29,2,26,1,25,1,9,1,25,1,26,1,29,1,26,3,29,1,28,1,29,2,26,1,25,2,26,2,9,4,25,6,26,6,29,2,26,9,25,2,9,1,25,1,9,3,25,1,26,8,25,1,26,1,25,2,26,5,25,1,9,4,15,2,9,3,25,2,9,4,15,9,9,1,15,12,9,1,15,1,9,4,25,1,9,1,15,7,14,3,15,3,9,2,15,2,9,1,25,2,9,1,15,1,9,3,15,2,9,23,15,5,9,4,15,3,9,6,25,2,9,1,15,2,9,1,25,1,9,10,25,1,9,2,25,2,9,2,15,8,9,2,15,4,14,1,15,7,9,5,15,3,9,1,8,1,6,1,29,5,28,2,29,5,28,1,29,1,6,1,7,1,1,341,16,1,9,2,10,1,25,9,10,1,9,16,10,1,13,1,30,1,28,14,29,15,28,3,29,3,26,4,25,4,26,57,29,7,28,9,29,2,26,4,27,1,25,2,10,1,9,17,16,3,15,6,16,1,9,3,16,1,9,2,10,1,26,1,29,2,28,3,29,2,26,30,29,1,26,1,27,1,10,1,9,1,1,331,}, + {1,329,27,1,26,7,29,4,26,1,25,1,15,4,16,1,9,4,15,9,9,1,25,2,26,1,25,2,9,2,15,4,9,1,15,1,9,4,15,5,9,22,25,1,9,19,25,3,26,1,25,1,9,5,25,9,26,4,25,1,26,1,25,14,9,1,25,8,9,6,25,1,26,4,9,5,25,1,26,1,25,1,9,2,25,4,26,1,25,1,27,1,26,2,29,2,26,1,29,1,26,2,29,4,28,4,29,1,26,4,28,3,29,1,26,2,25,3,9,4,25,7,26,4,29,4,26,8,25,2,9,1,25,3,26,5,25,1,26,1,25,1,9,2,25,1,26,6,25,6,9,3,15,1,9,3,15,2,9,3,15,7,9,2,15,5,9,1,15,8,9,3,25,2,9,3,15,1,9,2,15,4,14,2,15,5,9,3,25,4,9,14,15,3,9,4,15,2,9,4,26,1,9,2,15,3,9,1,25,1,9,2,15,1,9,6,15,2,9,6,25,2,26,3,25,1,9,8,25,1,9,6,15,19,9,3,15,3,9,1,8,1,6,1,29,4,28,2,29,6,6,2,1,349,9,2,25,3,10,3,25,2,9,15,25,1,26,1,29,1,28,5,29,1,28,12,29,14,28,3,29,3,26,5,25,2,27,1,26,21,27,2,26,16,25,1,27,1,26,24,29,4,28,7,29,7,26,2,25,2,9,20,15,5,16,1,9,3,25,1,26,6,29,2,26,3,30,1,29,5,30,1,26,22,25,1,9,1,1,330,}, + {1,326,9,1,27,1,26,1,29,4,26,3,29,3,26,1,25,1,9,1,15,4,9,3,16,1,15,9,9,2,26,1,25,2,9,3,15,5,9,2,15,1,9,5,15,3,9,11,16,1,9,11,25,1,9,18,25,1,26,4,25,1,9,5,25,10,26,3,25,1,26,2,25,7,9,1,25,5,9,1,25,9,9,4,25,2,27,1,26,3,9,5,25,1,26,2,25,1,9,2,25,3,26,2,27,1,26,2,29,2,26,5,29,4,28,2,29,1,26,5,28,2,29,2,26,4,25,1,9,3,25,1,9,2,25,2,26,6,29,5,26,9,25,3,26,9,25,2,26,6,25,8,9,2,15,4,9,7,15,14,14,1,15,5,9,2,25,2,9,2,15,3,9,2,15,5,14,3,15,3,9,2,25,1,9,9,25,1,9,24,25,2,9,2,15,1,9,7,25,2,26,2,9,3,25,1,9,4,25,1,26,4,25,2,9,18,15,19,9,1,8,1,6,1,29,9,28,1,29,1,6,1,1,354,9,7,10,1,8,1,25,3,9,7,10,3,9,1,25,1,26,1,28,7,29,2,28,16,29,2,30,1,26,2,29,7,28,2,29,4,26,6,27,1,26,22,27,1,25,2,27,1,26,11,25,8,27,2,26,23,29,6,28,8,29,3,30,1,26,1,27,1,25,2,9,9,10,1,25,3,9,10,27,1,26,2,25,1,9,1,15,2,16,1,9,5,10,1,25,1,26,3,30,1,29,1,30,1,29,1,26,10,29,3,26,6,25,1,9,2,1,328,}, + {1,325,26,3,29,10,25,1,15,6,9,1,16,2,15,9,9,1,26,1,25,2,9,3,15,8,9,2,15,1,9,5,15,3,9,42,25,1,26,2,25,2,9,2,25,1,9,3,25,10,26,7,25,5,26,1,25,6,9,1,25,9,9,4,25,3,26,2,25,1,9,6,25,3,9,1,25,3,26,1,25,2,9,1,26,3,29,1,26,2,29,1,26,3,29,1,28,1,29,5,26,3,28,3,29,2,26,4,25,1,9,5,25,2,26,7,29,1,28,2,29,2,26,6,25,1,26,1,25,5,26,4,25,1,26,1,25,3,26,3,25,6,26,2,25,4,9,2,15,2,9,1,15,1,9,5,15,12,9,2,15,7,9,6,15,10,14,2,11,1,15,4,9,7,15,3,9,8,15,1,9,23,15,1,9,1,15,3,9,2,25,5,9,2,15,1,9,2,25,1,9,1,25,2,26,5,9,3,15,8,9,7,15,14,14,2,15,1,9,1,7,1,6,1,29,4,6,3,29,2,6,1,7,1,1,360,9,5,10,1,25,1,13,1,26,1,25,1,9,6,25,3,13,1,30,1,28,5,29,1,28,21,29,2,30,1,26,3,29,7,28,2,29,4,26,6,25,1,26,22,27,1,25,1,27,2,25,4,27,1,26,8,27,1,25,7,27,1,26,28,29,9,28,3,29,2,30,1,29,9,26,2,29,4,26,2,25,4,26,1,30,1,29,2,26,1,10,1,9,1,15,7,16,2,9,5,25,2,26,2,29,1,30,2,29,4,26,5,30,1,26,5,25,1,10,1,9,1,1,327,}, + {1,322,10,1,26,1,29,11,26,2,25,1,15,5,16,1,9,1,15,4,16,1,15,5,9,1,25,1,26,1,25,1,9,2,15,9,9,4,15,1,9,1,25,1,9,4,15,2,9,8,15,1,9,34,25,1,9,5,25,10,26,1,25,3,26,7,25,6,9,1,25,15,9,1,25,1,9,2,27,1,25,5,9,6,26,2,25,1,9,1,26,2,25,1,26,2,25,2,26,3,29,1,26,6,29,1,28,6,29,1,26,2,28,2,29,3,26,3,25,1,9,5,26,6,29,4,28,2,29,2,26,7,25,4,9,2,25,1,26,10,25,1,9,1,25,2,26,7,25,2,9,2,15,2,9,7,15,4,14,2,15,17,9,5,15,5,9,3,15,2,14,1,11,2,15,3,9,9,25,4,9,6,15,5,9,10,25,3,9,6,15,1,9,4,25,1,26,2,25,4,9,2,15,1,9,2,25,9,9,2,15,11,9,3,25,1,9,2,15,1,9,2,15,1,9,1,15,5,14,1,15,2,9,2,7,1,6,1,29,3,6,2,29,3,6,1,1,367,9,4,13,1,26,2,13,1,25,6,26,1,30,1,29,1,28,29,29,5,26,5,29,3,28,4,29,3,26,4,25,4,26,24,25,9,27,2,26,4,27,2,25,10,26,31,29,2,26,16,29,5,28,2,29,3,28,4,29,1,26,1,25,1,9,3,15,7,16,1,9,8,25,1,26,2,30,1,29,1,26,1,27,1,25,1,9,4,25,1,26,4,25,1,10,1,9,2,1,325,}, + {1,320,26,1,29,9,28,2,29,2,26,1,9,2,15,3,16,1,9,1,16,1,15,5,16,1,15,4,9,2,25,3,9,1,15,11,9,4,15,1,9,1,25,1,9,2,15,3,9,1,15,1,9,1,15,1,9,1,15,1,9,2,15,1,9,16,25,2,9,19,25,14,26,7,25,3,26,3,25,20,9,1,25,1,9,2,25,6,9,3,25,3,26,2,25,1,9,1,25,1,26,4,25,1,9,1,26,4,29,1,26,6,28,6,26,2,28,3,29,2,26,1,25,1,26,2,25,1,9,4,25,1,26,1,25,2,26,1,29,5,28,3,29,1,26,2,25,1,26,5,25,1,9,1,25,1,9,3,25,2,26,6,25,2,9,3,25,9,9,3,15,3,9,3,15,20,9,2,15,6,9,7,15,5,11,4,14,1,11,2,15,5,9,4,25,4,9,2,15,1,9,1,25,2,9,2,15,2,9,2,15,3,9,1,15,3,9,3,25,2,26,4,25,1,9,1,25,7,9,4,25,2,9,3,15,1,9,10,15,14,9,2,25,1,9,9,15,1,9,3,25,1,7,1,6,1,29,7,6,1,7,1,1,372,9,2,10,1,25,1,26,2,13,4,26,2,30,1,29,1,28,4,29,2,28,27,29,4,26,5,29,4,28,3,29,3,26,4,25,5,26,23,27,1,25,13,27,2,26,2,27,1,25,11,27,4,26,7,27,1,26,3,27,4,25,3,27,2,26,10,25,11,26,3,25,1,26,7,29,2,28,3,29,1,26,2,25,1,9,4,16,1,15,4,9,10,25,4,9,6,25,1,26,3,25,1,10,1,9,2,1,324,}, + {1,317,10,1,26,1,29,11,28,1,26,1,25,2,15,2,9,1,15,1,9,3,15,4,16,3,15,3,9,1,25,4,9,2,15,12,9,4,15,1,9,3,15,8,9,21,25,3,9,5,25,6,9,3,25,10,26,2,25,6,26,4,25,1,26,2,25,2,27,1,26,1,25,5,26,1,25,5,26,1,25,12,9,2,25,5,9,4,25,3,26,2,25,1,9,2,25,2,26,2,25,1,9,1,26,4,29,1,26,6,29,3,28,3,29,1,28,3,29,3,26,4,25,1,9,3,25,2,26,3,29,1,28,8,29,1,26,7,25,2,9,1,25,1,9,2,25,1,9,1,26,5,25,1,9,1,25,1,26,5,25,3,9,2,25,2,9,1,25,1,9,2,15,3,9,1,25,1,9,1,15,3,9,5,15,5,14,2,15,4,9,1,15,7,9,2,25,3,9,2,15,2,11,2,14,2,15,1,14,1,15,10,9,3,25,1,26,3,25,1,9,1,15,2,9,6,15,1,9,6,15,2,9,4,25,1,26,3,25,1,9,7,25,1,9,3,15,2,9,4,15,4,9,8,15,6,9,5,15,3,9,6,15,1,9,7,7,1,6,1,29,7,6,2,1,379,9,1,25,2,13,1,26,3,30,2,29,2,28,2,29,5,28,28,29,4,26,4,29,4,28,2,29,4,26,4,25,7,26,22,27,1,25,15,27,1,25,1,27,5,25,12,27,1,26,14,25,17,26,4,25,13,26,6,29,2,28,2,29,1,26,2,27,1,25,2,9,2,15,2,16,1,9,19,25,1,26,1,27,1,25,2,9,2,16,1,1,322,}, + {1,315,10,1,26,1,29,13,26,1,9,2,15,4,9,2,16,1,15,3,9,2,15,3,9,2,25,2,26,1,25,1,9,2,15,15,9,3,15,1,9,4,15,9,9,9,25,1,9,7,25,1,26,1,25,3,9,5,25,18,26,3,25,1,26,2,25,2,26,5,25,1,27,1,26,1,27,1,25,1,26,2,25,5,26,1,25,18,9,2,25,6,9,3,25,2,9,1,25,1,26,1,25,1,9,1,25,7,26,1,29,1,26,2,29,2,26,5,29,2,28,3,29,1,28,4,29,3,26,1,25,1,26,1,25,1,9,4,25,2,26,2,29,3,28,6,29,1,26,8,25,6,26,5,25,1,9,2,25,2,26,5,25,2,26,2,25,2,9,3,15,1,14,1,15,3,9,1,26,1,25,1,9,3,15,14,9,2,15,2,14,1,15,3,9,2,25,2,26,1,25,2,9,3,15,7,14,1,15,2,9,15,25,2,9,3,25,1,9,1,15,4,9,11,25,1,26,5,25,1,9,5,15,5,9,4,15,2,9,4,25,1,9,1,15,11,9,6,15,1,9,1,15,7,9,3,7,1,6,1,29,8,6,1,7,1,1,384,9,2,25,2,26,1,29,1,30,2,29,2,30,1,29,6,28,28,29,4,26,4,29,1,26,1,29,2,28,1,29,6,26,4,25,9,26,12,27,2,26,19,27,2,25,7,27,2,25,12,27,4,26,13,27,1,25,1,27,3,25,11,26,1,25,16,26,7,29,6,26,2,25,1,9,22,25,1,27,1,25,2,9,2,16,1,1,321,}, + {1,313,10,1,29,2,28,1,29,11,26,1,25,1,15,6,9,2,15,3,16,1,15,4,9,2,25,5,9,1,15,18,9,7,15,7,9,19,25,2,9,1,25,3,9,1,25,5,9,1,25,14,26,7,25,1,26,4,27,2,25,2,26,3,25,2,26,1,25,4,26,1,25,3,26,4,25,11,9,2,25,6,9,3,25,1,9,2,25,1,26,1,25,1,9,1,25,1,26,1,25,5,26,5,29,1,26,5,29,3,28,1,29,1,28,3,29,4,26,2,25,3,9,3,25,3,26,2,29,3,28,6,26,9,25,1,9,1,25,4,26,3,25,8,9,1,25,5,26,3,25,2,9,2,15,6,9,1,26,1,25,2,9,1,15,2,14,2,15,7,9,2,15,9,9,8,15,1,9,7,15,1,11,2,15,1,9,6,25,1,9,2,15,8,9,3,25,2,9,6,15,1,9,2,25,2,9,4,25,1,26,1,25,4,9,8,15,9,9,1,25,1,9,3,15,1,14,2,15,6,9,2,15,2,9,3,15,9,16,1,9,1,7,1,6,1,29,7,6,2,1,391,9,1,10,1,25,1,26,7,30,1,29,6,28,28,29,6,26,6,29,5,26,6,27,1,25,3,27,1,26,15,27,1,25,2,27,1,26,24,27,2,26,1,27,2,26,5,25,11,27,5,26,12,25,13,26,1,25,14,26,10,29,7,30,1,27,1,9,19,25,3,10,1,9,1,16,1,1,320,}, + {1,311,30,1,28,4,29,9,28,1,26,2,9,1,15,10,9,1,15,3,16,1,9,2,10,1,25,2,10,1,9,2,15,1,17,1,15,3,9,1,15,15,25,1,9,1,15,1,9,1,10,1,9,1,15,5,9,2,15,1,9,22,25,2,9,1,25,10,26,1,25,9,26,7,25,2,26,4,25,2,26,3,25,2,26,2,25,1,26,2,25,1,26,2,25,2,26,4,27,1,26,1,25,10,9,1,25,7,9,1,25,6,9,1,25,8,26,6,29,1,26,5,29,1,28,6,29,3,26,4,25,2,9,2,25,4,26,2,29,1,28,1,29,1,28,6,26,10,25,1,26,7,25,1,26,5,25,5,9,1,25,2,26,5,25,1,9,2,15,4,14,1,15,1,9,5,15,11,14,2,15,3,14,3,15,4,9,5,25,2,9,6,15,2,14,1,15,4,14,1,15,1,9,4,15,2,9,1,15,1,9,1,15,3,9,5,25,2,9,3,15,1,9,4,25,4,9,4,25,3,9,5,25,1,9,4,15,22,9,2,15,10,16,1,9,1,10,1,6,1,29,8,6,1,7,1,1,397,9,1,25,3,26,4,30,3,29,6,28,16,29,1,28,12,29,4,26,8,29,3,26,16,25,3,27,2,26,3,27,1,25,7,27,1,26,24,27,1,25,2,27,1,26,5,25,23,26,5,25,25,26,13,29,3,28,3,29,1,26,1,25,2,9,8,16,1,9,7,10,1,25,2,9,2,16,1,1,318,}, + {1,308,10,1,26,1,28,6,29,9,25,1,9,2,15,13,16,1,9,1,10,1,25,3,9,2,16,1,15,2,11,1,17,1,15,19,9,2,15,1,9,1,25,1,9,2,15,2,9,11,10,1,9,14,25,16,26,1,25,7,26,5,25,1,26,11,25,3,26,9,25,1,26,4,27,1,26,2,25,9,9,2,25,4,9,5,25,4,9,1,25,8,26,7,29,1,26,4,29,2,28,5,29,1,26,4,25,3,9,2,25,5,26,2,29,2,28,6,30,1,26,5,25,8,26,13,25,2,9,3,26,2,25,5,9,2,15,1,9,1,15,4,14,1,11,1,15,19,14,2,15,10,9,2,15,5,11,4,14,1,15,6,9,3,15,5,9,2,25,2,9,8,15,4,9,1,25,1,9,9,25,4,9,7,15,9,14,3,15,11,9,2,15,6,16,1,9,1,10,1,7,1,6,1,29,2,6,2,29,4,6,1,1,403,9,1,10,1,25,3,26,4,30,1,29,6,28,29,29,4,26,10,29,1,26,8,25,2,26,8,25,1,27,4,25,8,27,3,25,1,27,1,26,31,27,1,25,1,27,1,26,4,27,1,25,24,26,2,25,20,26,15,29,5,26,2,25,1,9,5,15,4,16,1,9,5,10,1,25,1,9,2,16,1,1,317,}, + {1,306,10,1,29,1,28,6,29,9,26,1,9,1,15,14,9,1,10,1,25,2,26,1,25,1,9,2,15,4,11,2,15,21,9,1,15,1,9,28,25,20,26,1,25,7,26,4,25,2,26,23,25,1,26,7,25,11,9,1,25,3,9,4,25,7,26,4,25,3,26,13,29,2,28,3,29,2,26,4,25,4,9,1,25,1,26,5,29,1,28,7,29,2,26,4,9,1,25,8,26,7,25,2,26,4,25,2,9,2,25,1,26,2,25,3,9,1,15,17,14,2,15,25,9,2,15,2,11,8,15,4,9,2,25,4,9,6,25,2,9,7,15,4,9,5,25,1,26,2,25,1,9,10,15,5,9,2,15,6,14,3,15,14,9,1,10,1,7,1,6,5,29,4,6,1,7,1,1,409,9,1,25,3,26,3,30,3,29,5,28,4,29,1,28,24,29,5,26,16,25,5,26,10,27,1,25,2,27,6,26,2,27,2,25,3,27,1,26,30,27,2,25,1,27,2,26,5,27,1,25,19,26,4,25,19,26,17,29,4,26,3,27,1,25,2,9,2,15,4,16,1,9,5,10,1,9,2,16,1,1,315,}, + {1,304,8,1,29,1,28,7,29,8,26,1,25,1,15,13,16,2,9,1,25,1,26,2,13,1,10,1,16,1,15,2,11,3,15,15,9,1,15,7,9,3,15,1,9,26,25,21,26,4,25,1,26,1,25,2,26,9,25,2,26,18,27,1,26,6,27,1,25,1,27,1,25,5,27,1,25,3,9,2,25,2,9,4,25,4,9,2,25,2,26,1,25,5,26,4,25,2,26,8,29,3,26,7,25,6,26,4,29,1,28,7,29,4,26,3,25,2,26,1,25,2,26,1,25,2,26,6,25,3,26,6,25,2,9,1,26,4,25,1,26,1,9,2,15,15,11,3,14,1,15,23,14,1,15,1,14,1,11,7,15,3,9,12,25,2,9,4,15,1,9,7,15,3,9,5,25,3,9,9,15,5,9,4,25,1,9,4,15,11,14,1,15,3,9,1,8,1,6,3,29,5,28,2,6,1,1,415,9,1,10,1,25,2,26,3,30,1,29,13,28,24,29,4,26,17,25,5,26,20,27,3,25,2,27,3,26,37,27,1,25,19,26,8,25,8,26,3,25,6,26,17,29,2,26,3,29,2,26,1,25,1,9,3,15,3,16,1,9,8,1,314,}, + {1,302,10,1,28,7,29,1,28,2,29,5,28,1,29,1,25,1,9,1,15,1,17,1,15,10,9,3,10,2,13,1,25,1,9,1,16,1,15,2,17,1,11,2,17,1,15,4,9,2,15,6,9,1,16,1,15,9,9,6,25,1,9,2,15,1,9,4,15,1,9,5,25,1,9,2,25,4,9,3,25,22,26,2,29,1,26,3,25,1,9,1,26,7,25,3,26,5,27,1,26,13,25,1,26,7,27,1,26,2,27,1,25,9,9,2,25,2,9,1,25,2,26,2,25,4,27,1,25,1,26,2,25,3,26,4,25,3,26,6,29,1,26,10,25,5,26,4,29,1,28,7,30,1,29,1,28,2,29,1,26,6,25,1,26,2,25,1,26,13,25,1,26,4,25,2,26,5,9,4,15,6,14,3,15,1,14,2,15,7,14,2,15,19,14,1,11,8,15,4,9,3,25,3,9,4,25,2,9,8,15,8,9,10,15,1,9,5,15,2,9,1,15,6,9,3,26,2,25,2,9,2,15,3,14,2,11,2,14,1,15,1,9,1,10,1,7,1,6,3,29,4,28,1,29,1,6,2,1,421,9,1,25,1,26,1,25,1,26,1,30,1,29,12,28,25,29,6,26,15,25,7,26,13,27,1,26,12,27,4,26,32,27,1,25,21,26,10,25,8,26,4,25,4,26,17,29,1,26,3,29,2,30,1,25,1,9,5,15,1,9,8,16,1,1,312,}, + {1,300,29,1,28,7,29,3,28,1,29,3,26,1,29,1,28,1,26,1,15,10,9,1,15,2,9,3,10,1,25,2,9,1,16,1,15,3,17,2,11,2,15,6,9,2,15,17,9,15,25,1,9,4,25,3,9,1,25,3,9,3,25,20,26,1,25,1,26,3,25,2,26,1,25,2,26,28,25,2,27,1,26,10,25,9,9,2,25,5,26,2,25,2,27,1,26,12,25,6,26,5,29,3,25,1,26,2,25,2,26,3,25,2,26,5,29,1,28,5,29,2,28,6,26,5,25,4,26,3,29,1,26,9,25,1,26,2,25,6,26,1,25,1,9,3,15,3,14,1,11,3,14,1,11,4,14,2,15,7,14,3,15,15,9,2,15,2,14,1,11,6,15,2,9,1,15,3,9,5,25,1,9,1,25,2,26,3,25,1,9,2,15,1,9,1,15,11,9,5,15,5,9,2,15,6,9,3,15,8,9,4,15,4,16,1,9,2,7,2,6,2,29,5,28,2,6,1,1,428,9,1,26,1,25,1,26,2,29,10,28,20,29,1,28,4,29,7,26,16,25,7,27,1,26,28,27,5,26,13,27,1,25,2,27,2,26,11,25,21,26,14,25,6,26,6,25,1,26,12,29,1,26,6,29,4,26,1,25,1,9,12,16,1,1,311,}, + {1,298,29,1,28,5,29,12,26,1,9,1,17,1,15,7,9,3,15,1,9,3,25,1,13,1,25,1,10,1,9,1,15,1,17,1,11,1,14,1,17,1,15,2,17,1,15,8,9,3,15,3,9,1,15,2,16,1,15,3,9,1,15,2,9,5,25,1,9,11,25,1,9,8,25,4,9,1,25,12,26,1,25,4,26,1,25,4,26,36,25,2,27,1,26,10,25,10,9,1,25,5,27,1,25,1,27,1,25,2,27,1,26,1,25,2,26,3,25,1,26,5,25,7,26,4,29,2,26,1,25,6,26,8,29,2,28,12,29,1,26,2,25,1,26,16,25,1,9,3,25,2,9,1,25,1,26,5,25,1,9,2,15,8,14,1,11,1,14,1,15,6,14,5,11,3,14,4,15,6,14,1,15,10,11,7,15,9,9,3,25,1,26,1,29,2,26,1,25,1,9,2,15,29,9,2,25,1,9,2,15,1,9,1,15,2,14,4,15,3,9,2,10,1,7,3,6,2,29,4,28,1,29,1,6,2,1,433,9,1,10,1,25,1,26,3,29,9,28,15,29,4,28,4,29,7,26,18,25,3,10,1,25,4,26,28,27,1,26,2,27,2,25,3,27,2,26,2,27,1,25,3,26,6,27,1,25,3,27,1,26,5,25,1,26,2,25,8,27,1,25,3,26,8,25,3,26,13,25,5,26,6,25,2,26,17,29,5,26,1,10,1,9,6,10,1,9,3,16,2,1,309,}, + {1,295,10,1,29,1,28,5,29,9,26,1,29,2,26,1,25,1,9,1,17,1,15,8,9,2,16,1,9,3,25,2,9,2,15,2,17,1,11,1,17,1,15,8,16,1,15,5,9,2,15,2,9,1,16,1,15,9,9,5,25,2,9,4,25,1,9,4,25,2,9,8,25,12,26,1,25,3,26,4,25,5,26,37,25,1,27,3,26,11,27,1,25,5,9,1,25,1,9,2,25,10,27,1,26,1,25,2,26,2,25,2,26,2,25,4,9,1,25,9,26,2,25,7,26,8,29,2,28,12,29,1,26,7,25,1,26,4,25,2,26,5,25,1,9,7,25,1,26,1,25,2,26,2,25,2,9,2,15,3,14,2,15,8,14,2,11,9,14,4,15,3,14,4,15,5,9,1,15,4,14,1,11,4,15,2,9,1,15,10,9,1,25,2,26,1,29,1,26,1,25,1,9,2,15,2,9,2,15,20,9,1,15,2,9,1,15,1,9,2,25,1,9,2,15,4,14,1,15,2,9,1,10,1,7,1,6,4,29,5,28,2,6,1,7,1,1,439,9,1,25,1,26,3,29,8,28,17,29,7,28,1,29,6,26,18,27,1,25,6,26,29,27,1,26,1,27,5,25,27,26,22,25,2,26,15,25,4,26,6,25,1,26,9,29,2,26,6,29,3,28,1,29,1,26,1,25,1,9,5,10,1,25,1,10,1,9,2,12,1,1,308,}, + {1,293,8,1,29,1,28,6,29,6,26,4,29,1,26,1,9,1,15,12,16,1,9,5,25,1,9,1,16,1,15,1,11,1,17,3,15,15,9,1,15,4,16,1,15,1,9,2,15,3,9,1,15,2,9,6,25,1,9,9,25,1,26,1,9,5,25,15,26,7,25,7,26,8,29,1,26,23,27,4,26,12,29,3,26,1,27,1,25,4,9,3,25,2,26,4,27,1,25,4,26,2,25,3,26,1,25,1,9,1,25,3,9,4,25,3,9,2,25,14,26,1,29,2,26,2,29,4,28,13,26,11,25,5,26,4,25,1,26,1,25,2,9,2,25,3,9,2,25,2,26,2,25,1,9,2,15,1,14,1,11,3,15,5,14,1,11,1,15,1,14,1,11,10,14,3,15,2,14,7,15,8,11,3,15,2,9,2,15,3,9,2,15,7,9,3,25,1,26,1,25,2,9,1,15,4,9,2,15,5,9,1,15,10,9,11,15,5,16,1,9,1,7,1,6,2,29,5,28,4,29,1,1,445,9,2,26,4,30,1,29,8,28,11,29,19,26,6,25,3,26,9,25,6,26,21,27,5,26,10,27,1,26,1,27,2,25,15,27,1,25,10,26,19,25,2,27,1,26,24,25,2,26,9,29,1,26,6,29,4,28,1,29,1,27,1,9,5,25,2,10,1,9,1,16,2,1,306,}, + {1,291,8,1,29,1,28,7,29,3,26,9,15,12,9,5,25,1,9,2,16,1,15,1,11,2,17,1,15,25,9,3,15,1,9,10,25,2,9,16,25,14,26,5,25,8,26,8,29,3,26,15,27,1,26,2,25,1,26,1,27,1,26,17,29,1,28,2,26,1,27,1,25,5,9,1,25,2,26,6,27,1,26,9,25,1,9,6,25,1,9,8,25,3,9,1,25,8,26,2,29,2,26,1,29,4,28,8,29,1,28,4,30,1,26,10,25,4,26,6,25,1,9,2,25,5,9,9,15,10,14,1,15,3,14,1,11,10,14,2,15,2,14,3,15,1,14,3,15,4,11,7,15,7,9,3,15,3,9,7,25,2,9,3,15,8,9,1,15,10,9,6,15,7,16,1,9,2,10,1,7,1,6,1,29,5,28,4,6,1,7,1,1,451,9,1,25,2,26,3,29,8,28,7,29,22,26,20,25,7,26,22,27,3,26,13,25,16,27,1,25,11,26,18,25,3,26,41,29,6,30,1,25,1,9,3,10,1,25,2,10,1,9,1,16,1,1,305,}, + {1,289,8,1,28,9,29,3,26,8,25,1,15,9,16,1,9,5,10,2,25,1,9,2,15,1,17,2,11,1,15,14,9,1,15,7,9,2,15,4,9,1,15,2,9,2,15,1,9,8,25,1,9,13,25,1,9,2,25,9,26,2,25,1,26,4,25,1,26,4,25,4,26,23,25,2,26,1,27,1,25,1,26,20,27,1,25,1,26,4,27,1,25,2,27,4,25,1,27,3,26,5,27,1,26,3,29,1,26,5,25,2,9,4,25,2,9,1,25,1,9,10,25,4,26,6,29,7,28,6,29,1,26,1,28,5,26,12,25,1,26,4,25,5,9,2,26,2,25,2,9,4,15,3,9,1,15,9,14,1,11,3,14,4,11,1,14,5,11,4,14,1,15,3,14,4,15,10,11,2,14,2,15,9,9,1,15,3,9,2,25,2,9,2,25,3,9,4,15,12,9,3,15,2,9,3,25,1,9,2,15,5,9,2,8,1,6,2,29,5,28,5,6,1,1,458,9,1,25,1,26,3,30,1,29,9,28,2,29,16,30,2,29,3,26,24,25,7,26,22,27,3,26,7,27,2,26,4,25,28,26,19,25,4,26,32,29,1,26,7,29,6,26,1,9,3,25,3,10,1,9,1,16,1,1,303,}, + {1,286,10,1,29,1,28,10,29,3,26,2,29,1,26,3,29,1,26,1,9,1,15,3,16,1,15,3,16,1,15,1,9,5,25,4,9,1,15,2,17,1,15,26,9,3,15,2,9,25,25,1,9,4,25,11,26,1,25,2,26,4,29,1,26,59,27,2,25,3,27,2,25,3,27,1,25,2,27,1,25,1,27,1,26,7,27,1,25,4,9,8,25,2,9,13,25,2,26,1,29,1,26,4,29,5,28,7,10,1,29,1,28,4,29,2,26,3,25,3,26,2,25,2,9,2,25,1,9,1,25,1,9,5,25,2,9,1,26,2,25,3,9,3,15,2,9,2,15,4,14,2,15,3,14,1,11,6,14,11,15,3,14,5,15,4,9,5,15,2,14,1,15,2,9,4,15,11,9,4,25,3,9,2,15,13,9,2,25,1,9,12,10,1,7,1,6,1,29,6,28,4,6,2,1,463,9,1,10,1,26,4,29,24,30,3,26,4,30,2,26,4,29,4,26,11,29,1,26,3,25,6,26,28,27,2,25,3,27,1,26,4,25,5,27,1,25,10,9,1,25,11,27,1,26,19,25,5,26,40,29,3,28,1,29,1,26,1,10,1,9,2,25,3,9,2,16,1,1,301,}, + {1,284,8,1,29,1,28,12,29,3,26,5,29,1,25,1,15,7,9,2,16,1,9,3,25,2,26,1,30,1,26,1,9,2,15,15,9,1,15,14,9,3,15,2,9,15,25,1,9,12,25,1,9,1,25,15,26,16,30,1,26,46,27,1,26,1,27,1,25,1,26,2,27,1,25,2,27,1,26,1,25,7,26,3,29,1,26,2,25,2,9,10,25,3,9,3,25,2,9,7,25,1,9,1,25,1,26,1,29,2,26,2,29,4,28,7,25,1,26,1,28,5,29,1,26,7,25,4,9,2,25,2,26,1,25,2,9,2,25,4,26,2,25,1,26,1,25,3,9,3,15,6,14,1,15,5,11,5,14,1,11,3,14,5,15,7,14,3,15,9,11,3,15,1,9,5,15,1,14,1,15,13,9,2,15,12,9,9,15,1,9,2,15,2,16,1,9,2,7,1,6,1,29,7,28,4,6,1,7,1,1,469,9,1,25,1,26,4,29,14,28,1,29,5,30,4,26,9,29,8,26,9,29,2,26,4,25,6,26,25,27,1,25,8,26,4,27,1,26,2,27,2,25,8,9,2,25,9,26,24,25,4,26,41,29,3,28,1,30,1,25,1,9,2,25,2,10,1,9,1,16,1,1,300,}, + {1,282,8,1,28,14,29,3,26,2,25,2,26,1,29,1,9,1,15,7,9,6,26,5,9,1,15,1,17,1,15,6,9,5,15,16,9,1,15,3,9,3,15,2,9,14,25,1,9,13,25,15,26,10,25,1,26,42,27,1,26,1,27,1,26,10,27,2,26,1,27,1,25,2,27,1,26,1,27,1,25,6,26,4,29,1,27,2,25,2,9,13,25,6,9,8,25,1,26,1,29,2,26,2,29,4,28,7,27,1,28,5,29,2,26,5,29,1,26,3,25,1,26,1,25,1,9,1,25,2,26,1,25,1,26,1,25,4,26,2,25,6,9,5,15,3,14,1,15,9,14,5,11,1,14,1,11,2,14,2,15,16,9,1,15,2,11,3,15,1,9,6,15,2,14,2,15,10,9,2,15,2,9,2,15,9,9,5,15,2,9,1,15,2,16,2,9,1,10,1,7,1,6,1,29,6,28,5,6,1,1,475,9,2,25,1,26,3,30,1,29,19,30,3,26,9,29,9,26,11,29,2,26,2,25,8,26,26,25,6,26,3,27,1,26,2,27,1,25,13,9,3,25,5,26,24,25,3,26,42,30,1,29,2,28,1,29,1,25,1,9,2,25,2,9,2,16,1,1,298,}, + {1,279,8,1,29,1,28,17,29,1,26,1,25,3,26,1,29,1,25,1,17,1,15,6,9,5,25,2,26,1,29,1,30,1,25,1,16,1,15,1,17,1,15,2,9,4,15,3,9,6,15,13,9,2,15,2,9,4,15,1,9,14,25,2,9,5,25,2,9,1,25,1,9,3,25,7,26,1,25,1,26,4,25,2,26,3,28,2,29,1,26,4,25,1,26,19,27,1,25,2,26,33,25,6,27,1,25,2,9,5,25,4,26,2,25,1,26,3,25,1,9,14,25,2,26,2,25,2,9,2,25,1,9,3,25,2,26,1,29,2,26,1,29,4,28,1,29,2,28,3,30,1,26,1,28,4,29,1,26,1,29,2,26,5,29,1,26,2,25,1,26,1,25,3,9,3,25,4,26,5,25,1,9,9,15,6,9,1,15,9,11,5,14,3,15,8,14,3,15,3,9,1,15,4,11,1,14,1,15,1,9,2,25,1,26,2,25,1,9,1,15,13,9,1,25,2,9,5,15,2,9,1,15,9,16,2,9,2,10,1,7,1,6,1,29,7,28,4,6,1,7,1,1,481,9,1,10,1,26,4,30,1,29,15,30,5,26,10,29,10,26,7,29,2,26,1,29,1,26,4,25,7,26,15,27,1,25,6,27,1,26,4,27,1,25,4,26,1,27,2,26,2,25,16,9,3,25,5,26,68,29,2,28,2,29,1,25,1,9,2,25,1,10,1,9,1,16,1,1,297,}, + {1,277,8,1,29,1,28,18,29,1,26,1,25,1,26,4,25,1,15,7,16,1,9,4,13,1,26,2,30,1,13,1,9,1,15,1,17,1,15,3,9,5,15,4,9,6,15,10,9,1,15,1,16,1,25,1,9,1,15,1,9,4,15,1,9,14,25,2,9,3,25,4,9,4,25,8,26,1,25,2,26,3,25,2,26,2,29,1,28,2,29,1,26,12,29,1,26,10,25,4,26,2,25,3,27,1,26,24,25,3,9,19,25,1,9,2,25,8,9,11,25,3,9,1,25,3,9,3,25,1,26,2,29,2,26,2,29,1,26,1,29,1,28,6,29,1,28,5,29,1,26,3,29,1,26,1,29,1,26,7,25,1,26,1,25,1,9,3,25,4,26,2,25,1,26,1,25,2,9,7,15,4,9,1,15,3,9,3,15,2,9,3,15,3,14,6,15,6,9,2,15,3,14,2,15,7,14,1,15,2,9,15,15,5,9,3,25,1,26,1,25,1,9,3,15,4,14,2,15,3,9,3,8,1,7,1,6,1,29,6,28,5,6,1,1,488,9,1,25,1,26,4,30,3,29,5,30,6,29,7,30,2,26,1,30,1,26,4,29,10,26,17,25,6,26,16,25,10,27,1,26,2,25,1,27,1,26,1,25,29,26,28,25,2,26,32,29,3,26,3,29,2,28,2,26,1,9,3,25,1,10,1,9,1,16,1,1,295,}, + {1,275,8,1,28,20,29,1,26,5,9,2,15,4,9,1,15,1,16,3,9,3,25,1,26,3,9,1,15,1,17,1,15,1,16,1,9,5,16,1,9,1,15,2,9,1,15,1,9,7,15,9,9,21,25,2,9,8,25,2,9,1,25,1,9,3,25,2,9,1,25,10,26,1,25,1,26,2,25,1,26,2,29,2,26,12,29,2,26,6,25,1,27,3,25,1,26,1,25,3,26,1,25,1,26,20,25,7,9,1,25,1,9,1,25,2,9,1,25,1,9,1,25,2,9,1,25,1,9,2,25,4,9,1,25,4,9,1,25,2,9,22,25,3,9,2,25,1,26,4,29,1,26,4,29,1,28,1,29,1,28,10,30,3,26,3,29,2,26,4,25,1,26,3,25,1,9,2,25,1,26,8,25,3,9,5,15,9,9,4,15,8,14,3,15,7,9,3,15,20,9,6,25,7,15,4,9,7,15,2,14,3,15,1,16,1,9,1,8,1,6,2,29,7,28,4,29,1,6,1,1,493,9,1,10,1,26,2,27,1,13,1,26,1,30,11,29,16,30,1,26,4,29,8,26,9,29,3,26,3,25,3,9,2,25,3,26,15,27,1,25,10,26,4,25,7,27,1,25,25,26,57,29,5,26,2,29,2,28,1,29,1,27,1,9,2,10,1,25,1,9,1,16,1,1,294,}, + {1,272,10,1,29,1,28,21,26,5,25,1,9,1,15,5,9,1,15,2,9,5,25,4,15,4,9,10,15,1,9,2,15,1,9,4,15,1,9,1,15,7,9,5,15,1,9,1,10,1,9,15,25,1,9,10,25,5,26,1,25,12,26,5,25,2,26,14,27,1,26,1,29,1,26,2,27,1,26,3,25,1,26,5,25,1,26,1,25,2,26,10,27,1,26,2,27,3,25,2,26,1,25,1,27,1,25,2,27,1,25,1,27,1,25,1,26,5,29,6,26,1,29,1,26,2,29,1,26,14,25,2,9,17,25,1,9,1,25,1,9,2,25,1,30,1,26,3,29,1,26,4,29,1,28,1,29,2,28,8,29,4,26,11,25,1,26,3,25,1,26,9,25,4,9,1,25,2,9,3,15,5,9,1,15,1,9,4,15,10,14,2,15,6,9,8,15,6,9,3,15,5,14,1,15,1,9,5,25,1,9,2,25,1,26,2,25,2,9,2,15,11,16,1,9,1,7,1,6,1,29,4,6,2,29,2,28,4,6,1,1,500,9,1,25,2,26,1,25,1,13,1,26,1,30,9,29,17,26,6,29,6,26,12,29,2,26,4,25,6,27,1,26,16,27,1,25,8,26,3,27,1,25,35,26,56,29,4,26,2,29,4,25,1,9,2,10,2,9,1,16,1,1,292,}, + {1,270,8,1,29,1,28,22,26,2,29,1,26,3,9,1,15,5,9,1,15,2,9,4,25,2,26,1,9,2,15,1,17,1,15,3,9,5,25,2,9,7,15,1,9,3,15,4,9,1,15,1,9,2,15,2,9,4,15,1,9,19,25,6,9,4,25,5,26,1,25,8,26,1,25,3,26,1,25,1,26,2,25,7,26,2,25,1,26,6,25,1,26,1,29,1,26,22,27,1,26,1,27,1,25,2,26,1,25,1,27,2,26,3,29,13,26,2,25,1,9,2,15,11,17,3,15,3,9,5,25,2,26,1,25,1,26,1,9,2,15,1,9,5,25,2,9,8,26,4,30,1,29,1,26,2,29,1,26,1,29,3,28,9,29,7,26,9,25,2,26,7,25,7,9,2,26,3,25,1,9,2,15,11,14,2,15,16,9,1,25,4,26,1,25,1,9,13,15,3,9,5,25,3,9,2,25,1,9,2,15,3,14,2,15,5,9,1,10,1,7,1,6,1,29,8,28,4,6,1,1,506,9,1,25,4,13,1,26,3,30,4,29,12,28,1,29,6,30,1,26,6,29,6,26,19,25,5,27,1,26,17,25,8,26,2,25,17,26,1,25,19,26,36,29,2,26,19,29,3,30,1,29,3,26,1,9,3,10,1,9,2,1,291,}, + {1,268,8,1,28,24,26,2,29,3,26,1,9,1,15,8,9,3,25,1,26,1,13,1,26,1,9,1,15,1,17,1,15,3,9,2,25,1,26,1,13,1,9,2,25,3,9,6,15,1,9,4,15,3,9,3,15,1,9,1,15,1,9,16,25,1,9,7,25,19,26,1,25,4,26,7,25,8,26,5,25,2,26,2,25,1,26,1,29,1,26,13,27,1,25,7,26,7,29,7,26,1,29,1,26,3,25,1,9,2,15,7,17,1,15,9,17,3,11,1,17,6,11,7,17,1,15,1,9,1,25,1,9,7,25,1,9,4,15,1,9,2,25,1,27,1,26,3,29,2,26,2,29,1,26,1,29,3,28,11,29,2,28,3,29,1,26,1,25,2,26,5,25,2,26,4,29,1,26,2,25,3,9,6,25,1,26,2,25,1,9,5,15,5,14,2,15,6,9,5,15,2,9,3,15,3,9,1,26,2,25,3,26,2,25,1,9,6,25,1,26,4,9,2,15,2,9,2,15,2,9,2,15,1,9,3,15,6,16,1,9,2,8,1,7,1,6,1,29,6,28,7,6,1,1,511,9,2,25,4,26,2,30,4,29,11,28,2,29,9,26,6,29,3,26,7,25,1,26,17,25,1,26,18,25,7,26,6,25,13,27,1,26,5,25,1,26,8,27,1,25,4,27,1,26,59,29,4,26,1,25,1,9,5,16,1,1,289,}, + {1,266,30,1,28,25,29,2,28,2,29,2,9,1,15,6,9,5,25,1,26,2,9,2,15,2,16,1,9,3,25,1,26,4,25,1,9,1,25,4,9,5,15,1,9,4,15,3,9,3,15,1,9,13,25,2,9,2,25,3,9,3,25,2,9,3,25,6,9,2,25,9,26,1,25,2,26,5,25,5,26,1,25,3,26,1,25,2,26,4,25,2,26,3,25,1,26,1,29,1,26,9,27,1,25,3,9,1,25,2,26,5,29,2,28,4,29,4,26,2,25,1,9,1,15,24,17,2,15,1,17,3,15,1,17,2,11,14,17,1,9,1,25,1,9,6,25,1,9,1,15,1,9,2,25,2,26,3,29,2,26,1,29,2,26,1,29,1,26,1,29,1,28,11,29,2,28,3,29,1,26,2,25,1,26,6,25,1,26,4,29,2,26,2,9,2,25,3,9,4,25,1,26,1,25,2,9,2,15,12,9,1,15,2,9,10,15,3,9,2,26,3,25,5,9,4,25,2,26,4,25,1,9,1,15,6,14,1,15,7,16,1,9,1,8,1,7,2,6,1,29,7,28,6,6,1,7,1,1,517,9,2,25,2,13,2,26,2,30,6,29,6,28,1,29,12,30,1,26,6,29,2,26,24,25,5,26,17,25,5,27,2,26,5,25,13,26,14,25,8,26,44,29,5,26,8,29,4,26,1,9,6,1,288,}, + {1,263,8,1,29,1,28,21,29,1,28,5,29,1,28,3,29,1,9,1,11,1,15,5,9,4,25,4,9,1,15,3,9,1,25,1,26,2,9,4,30,1,25,2,9,1,25,1,13,1,25,2,9,1,15,1,9,1,25,1,9,1,15,1,9,2,15,5,9,6,15,1,9,9,25,2,9,3,25,3,9,2,25,5,9,1,25,7,9,1,25,6,26,3,25,4,26,3,25,5,26,8,27,1,26,8,25,1,26,1,29,1,26,6,25,6,26,4,29,5,28,3,29,2,26,2,9,2,15,2,11,7,15,27,17,2,11,17,15,1,25,1,9,3,25,1,9,1,25,1,9,4,25,1,26,3,29,2,26,1,29,6,28,10,29,2,28,4,29,1,26,6,25,2,26,2,25,1,26,1,29,2,26,4,25,2,26,3,25,1,9,3,25,3,9,6,15,2,14,2,15,4,9,15,15,2,9,3,25,3,9,15,15,6,9,4,7,5,6,1,29,3,28,2,29,1,28,9,6,1,1,524,9,2,25,3,13,1,26,2,30,4,29,15,28,1,29,5,30,1,26,1,25,1,26,3,29,1,26,26,25,3,26,19,27,1,25,8,26,4,27,1,25,10,27,1,26,14,25,3,26,1,27,1,25,2,27,1,26,39,29,11,26,6,29,2,28,1,29,1,25,1,9,5,1,287,}, + {1,261,8,1,29,1,28,32,29,1,25,1,15,5,9,5,25,1,26,1,25,1,9,1,15,3,9,1,25,1,26,2,25,1,15,4,9,1,28,1,26,1,9,1,25,1,26,2,13,1,25,1,9,2,25,2,9,3,15,6,9,16,25,3,9,2,25,3,9,2,25,10,9,1,25,5,9,1,25,2,26,6,25,2,26,25,25,1,26,4,25,4,26,1,25,1,26,4,29,7,26,3,25,1,9,10,11,6,17,1,11,1,17,1,15,23,17,2,11,12,15,1,9,2,25,2,27,1,25,1,26,1,25,2,9,2,25,3,9,3,27,1,26,2,29,8,30,1,29,2,28,9,29,1,28,5,29,1,26,3,29,1,26,3,25,1,26,1,29,1,26,3,29,1,26,5,25,2,26,2,25,1,26,1,25,1,9,3,25,1,9,8,15,6,9,6,15,1,9,14,25,2,9,9,15,5,9,3,8,1,7,2,6,4,29,6,28,13,6,1,1,530,16,1,10,1,25,2,13,1,26,2,30,9,29,2,30,1,29,3,28,1,29,1,28,3,29,5,26,32,25,2,26,22,27,1,25,9,26,4,25,10,27,1,25,1,26,19,25,2,26,37,29,14,26,3,29,4,26,1,9,5,16,1,1,285,}, + {1,259,8,1,28,34,26,1,9,1,15,5,9,5,25,2,9,1,15,3,9,1,25,1,26,3,9,1,17,1,15,2,16,1,25,1,29,2,26,1,25,1,26,4,25,1,9,2,25,2,9,4,15,2,9,2,15,1,9,16,25,3,9,2,25,3,9,1,25,17,9,1,25,2,26,33,25,3,26,1,25,3,26,2,29,8,26,2,25,1,9,14,25,1,9,1,15,31,17,2,11,9,15,1,9,3,25,2,26,1,29,2,26,5,9,3,25,3,9,2,26,2,29,3,26,1,29,5,30,1,29,1,28,17,29,5,26,2,25,2,29,2,26,1,29,1,26,6,25,7,9,2,15,1,9,9,15,7,9,2,15,9,9,4,15,3,9,2,10,1,25,1,9,3,10,1,25,1,27,1,13,1,25,4,7,1,6,1,30,2,29,1,28,3,29,1,28,4,29,1,28,14,29,1,6,1,1,535,16,1,9,2,25,2,13,1,26,2,30,6,26,4,30,1,29,3,28,3,29,8,26,2,25,2,26,9,25,3,26,10,29,2,26,3,25,1,26,16,27,3,26,7,27,1,25,13,27,1,26,3,25,5,26,19,25,3,26,35,29,15,26,2,29,3,28,1,29,1,25,1,9,4,16,1,1,284,}, + {1,257,7,1,28,34,29,1,26,1,15,6,9,6,25,1,15,3,9,2,25,1,26,1,30,1,26,1,9,1,15,4,25,1,26,1,29,1,26,1,25,2,26,1,30,1,26,2,9,2,25,2,9,2,25,1,9,3,15,1,9,2,15,1,9,16,25,3,9,2,29,1,26,1,25,1,9,3,25,9,26,1,25,1,9,2,25,1,9,1,25,3,26,5,25,3,26,11,29,2,26,12,25,1,26,6,29,1,28,3,29,2,26,1,25,1,9,12,25,4,9,1,25,3,9,2,15,2,9,1,15,2,9,1,27,1,26,4,25,1,9,3,15,13,17,1,11,8,15,1,9,2,25,1,26,7,29,2,26,3,29,1,25,1,9,3,25,1,26,1,25,1,9,1,25,1,26,1,29,3,26,2,29,2,28,1,29,1,30,2,28,24,29,1,26,1,13,1,26,1,29,1,26,1,29,2,26,2,25,4,9,1,25,1,9,1,25,3,9,1,15,4,9,7,15,3,14,2,15,10,16,1,9,4,10,1,25,1,10,1,9,2,10,1,6,1,29,3,28,1,29,3,28,3,29,2,28,26,6,1,1,542,16,1,9,3,25,1,26,4,30,3,26,5,30,2,29,2,28,1,29,1,28,1,29,8,26,2,25,1,26,5,25,1,26,4,25,5,26,3,29,3,28,1,29,2,26,1,25,4,26,18,27,4,26,6,27,1,25,9,27,1,26,6,25,10,26,13,25,5,26,34,29,20,26,1,9,3,16,3,1,282,}, + {1,255,29,1,28,35,26,1,25,1,15,5,9,8,15,3,9,2,25,2,30,2,9,1,15,1,16,1,9,2,13,1,29,2,26,1,9,1,10,1,26,1,30,1,26,2,9,2,25,1,26,1,9,2,25,1,9,4,15,1,9,2,15,1,9,13,25,1,9,3,25,1,9,3,26,1,29,1,25,1,9,3,25,9,26,1,25,1,9,2,25,9,26,3,27,1,26,11,29,3,26,2,27,1,25,1,26,6,29,4,28,1,29,4,26,2,9,15,25,3,26,1,25,3,26,2,25,9,26,2,28,4,29,1,26,1,25,1,9,8,15,3,17,1,11,6,15,2,9,1,25,1,26,3,29,5,26,4,25,1,9,7,25,2,26,1,25,2,26,2,29,3,26,1,29,2,28,2,29,1,30,1,29,1,28,25,29,1,6,1,7,2,27,1,26,4,25,1,10,2,25,3,9,1,25,2,9,2,15,6,9,6,15,2,14,4,15,5,9,2,10,1,7,1,6,2,29,4,6,1,29,2,28,37,6,1,1,548,16,1,9,2,10,1,25,1,26,3,30,4,26,7,30,1,29,10,26,3,25,1,26,6,25,1,26,3,10,1,9,2,25,2,26,2,29,1,28,1,29,1,26,2,25,2,26,6,25,1,26,4,29,1,26,13,27,3,26,9,27,1,25,5,27,1,26,8,27,1,25,7,26,13,25,1,26,39,29,12,26,1,29,6,27,1,9,3,16,1,15,1,1,281,}, + {1,252,8,1,28,36,29,1,26,1,9,1,15,5,9,7,15,4,9,3,25,1,26,1,30,1,25,1,9,1,26,2,30,2,29,1,26,1,25,1,9,1,25,1,30,1,26,3,9,2,25,1,13,1,9,2,25,2,9,4,15,1,9,24,25,3,9,3,25,9,26,1,25,18,26,9,29,1,26,4,25,1,26,4,28,5,29,3,26,1,25,1,9,16,25,5,26,16,29,1,28,4,29,1,26,1,27,1,25,1,9,7,15,4,11,3,17,1,15,1,9,2,25,1,26,2,29,5,28,3,26,1,25,1,9,1,15,2,9,5,25,6,9,1,26,2,29,3,26,1,29,3,28,1,29,1,26,1,30,1,29,1,28,25,29,1,6,6,30,2,6,1,7,2,26,1,30,1,25,1,9,6,15,3,9,1,15,5,9,3,15,6,9,2,25,2,26,1,6,1,29,1,28,1,29,1,28,42,29,1,1,554,16,2,9,2,13,1,26,2,30,5,26,6,30,1,29,4,30,1,29,5,26,3,25,2,26,4,9,1,25,1,26,1,25,1,9,4,26,2,28,1,29,1,26,1,25,1,26,2,29,6,26,1,25,4,26,19,27,3,26,9,25,5,26,9,25,7,26,53,29,19,25,1,9,2,16,1,15,1,12,1,1,279,}, + {1,250,8,1,28,28,29,1,28,4,29,1,28,3,26,1,25,1,9,1,15,5,9,6,15,5,9,3,25,1,26,2,25,1,9,1,25,2,26,3,9,1,25,1,26,5,25,1,9,2,26,2,25,1,9,2,25,2,9,23,25,3,9,4,25,2,9,2,25,26,26,1,25,1,26,16,29,1,28,5,29,1,26,2,9,20,25,5,26,16,28,5,29,1,26,1,25,2,9,3,15,6,11,2,17,1,15,2,9,2,25,1,26,5,29,5,26,1,25,1,9,1,15,2,9,4,25,2,27,1,26,3,25,3,26,1,29,4,28,1,26,2,29,2,28,2,29,1,30,1,29,1,28,26,29,1,6,1,29,1,28,6,29,1,6,1,29,1,28,2,13,1,25,2,9,5,15,1,9,4,15,1,9,5,25,1,9,5,13,1,30,1,29,2,28,43,29,2,1,560,16,2,9,1,25,1,26,1,30,6,26,1,13,1,26,1,13,1,26,2,30,1,29,1,30,4,29,3,26,3,25,1,10,1,26,4,9,1,15,1,9,1,25,2,9,1,16,1,9,1,26,2,29,1,26,4,29,2,28,6,29,1,26,2,25,2,26,21,27,3,26,10,27,1,25,6,27,1,26,5,25,7,26,2,27,1,25,1,26,48,29,18,26,1,9,2,16,1,15,2,1,278,}, + {1,248,8,1,29,1,28,32,29,5,26,1,9,1,15,6,9,6,15,1,11,1,15,4,9,3,25,1,26,1,25,2,26,12,25,1,9,1,25,1,30,1,26,1,9,3,25,2,9,24,25,3,9,5,25,1,9,2,25,9,9,3,25,9,26,2,25,3,26,2,25,3,27,2,26,4,29,2,28,1,29,1,28,5,29,2,25,1,9,20,10,2,25,5,26,6,29,1,26,2,30,1,29,1,26,7,28,3,29,1,26,2,25,1,9,5,15,4,17,1,15,2,9,3,25,3,26,5,29,2,26,1,25,1,9,1,15,1,9,6,10,1,25,1,27,1,26,5,25,2,27,1,26,2,30,1,29,2,28,1,29,1,26,1,29,2,28,3,26,1,30,1,29,1,28,25,29,3,28,13,29,1,26,1,25,1,9,6,25,3,26,1,25,2,7,1,6,3,30,1,6,1,26,2,30,1,28,44,29,1,8,1,1,566,16,2,9,1,25,1,26,2,30,2,29,1,30,1,26,8,30,1,26,1,30,1,29,2,30,1,26,3,9,1,25,1,26,1,25,2,26,1,25,1,16,1,9,1,25,2,9,1,15,1,9,1,25,1,26,4,29,2,26,1,29,1,28,3,29,3,26,3,25,3,26,23,27,2,26,12,25,5,26,8,25,5,27,1,25,5,26,46,29,16,26,1,25,1,9,2,15,2,12,1,1,276,}, + {1,246,8,1,28,34,29,1,26,4,25,1,9,1,15,5,9,7,15,1,17,1,15,5,9,3,25,1,9,2,26,1,13,1,26,8,25,3,9,1,25,1,26,2,9,2,25,2,9,38,25,4,9,4,25,13,27,1,25,7,26,4,29,1,28,8,29,1,25,2,9,1,10,1,25,2,10,2,9,12,10,1,25,10,26,4,25,1,26,1,29,1,26,3,29,2,26,7,29,2,26,2,25,2,9,5,15,1,17,1,15,2,9,4,25,4,26,6,25,1,9,2,15,1,9,4,25,1,9,1,10,1,25,2,27,1,26,1,27,1,26,2,25,3,26,2,29,6,26,2,29,2,28,3,29,2,28,27,29,2,28,14,29,2,30,1,26,1,7,1,26,2,27,1,26,4,30,1,29,2,28,49,6,2,1,573,16,2,10,1,26,3,30,1,26,3,13,1,26,1,13,1,25,1,13,1,26,10,9,4,25,2,9,3,25,2,9,3,25,1,26,1,30,1,29,1,26,4,29,2,26,9,25,3,26,38,25,4,27,1,25,1,26,9,25,9,26,37,29,1,26,8,29,15,26,1,10,1,9,1,16,1,15,1,12,1,1,275,}, + {1,244,8,1,28,35,29,1,26,5,9,1,15,4,9,7,15,10,9,4,25,3,26,6,25,5,13,1,25,1,9,3,25,1,9,33,25,5,9,8,25,6,9,2,25,12,26,2,29,2,28,8,29,1,26,1,25,15,10,1,9,2,10,1,25,8,26,1,25,5,26,3,25,1,26,6,30,1,29,1,26,11,25,2,9,2,15,5,9,2,25,6,26,5,25,1,9,2,15,3,9,5,25,4,27,1,25,7,26,2,29,3,28,2,29,1,26,2,29,2,28,54,29,3,28,54,6,1,1,581,9,1,25,1,13,1,26,5,13,1,25,3,13,1,26,1,13,1,26,1,25,3,26,1,25,1,9,1,16,1,9,1,16,1,9,5,25,2,9,2,16,1,9,1,25,1,26,1,29,3,30,1,26,6,29,6,26,19,27,3,26,23,25,5,27,1,26,8,25,8,26,26,29,1,26,10,29,2,26,5,29,11,28,2,29,3,26,1,25,1,9,2,15,2,12,1,1,273,}, + {1,242,7,1,28,36,29,1,26,5,9,1,15,3,9,7,15,9,9,1,15,2,9,6,25,2,26,1,25,2,9,1,25,5,9,1,25,1,9,2,25,3,9,31,25,2,9,9,25,10,9,2,25,3,9,1,25,1,9,1,25,1,26,5,29,1,28,5,29,3,26,1,25,2,26,3,25,3,26,2,25,14,26,9,25,3,26,23,25,2,15,4,9,2,25,1,26,11,25,1,9,2,15,1,9,5,25,5,27,2,25,5,9,2,27,1,26,2,29,2,28,2,29,2,26,2,30,1,29,1,28,109,6,1,1,588,9,1,25,1,13,1,26,3,13,1,25,2,9,1,10,1,25,2,9,1,16,1,9,4,15,3,17,1,15,1,9,4,25,1,9,3,15,1,9,2,25,1,26,2,29,1,26,5,29,8,26,22,27,2,26,23,25,4,27,1,26,10,25,10,26,27,29,3,26,3,29,14,28,8,29,1,26,1,10,1,9,1,16,1,15,1,12,1,1,272,}, + {1,240,29,1,28,6,29,1,28,30,29,1,26,5,9,1,15,2,9,8,15,9,9,2,15,2,9,6,25,2,9,3,25,2,9,4,25,5,9,32,25,2,9,6,25,13,9,2,25,1,9,3,25,1,9,1,25,1,26,2,29,3,28,2,29,4,26,1,25,2,26,7,25,2,26,4,25,10,26,13,25,3,26,19,25,1,9,2,15,3,9,2,25,1,26,3,25,1,26,7,25,1,9,2,15,1,9,5,10,1,25,4,27,1,26,2,27,1,25,5,27,1,26,2,29,2,28,2,29,2,30,1,26,2,29,1,28,108,6,2,1,594,9,1,25,1,13,1,26,2,13,1,25,1,9,5,17,1,15,1,9,3,15,2,11,2,15,1,16,3,15,1,9,7,25,1,26,8,29,2,26,1,29,6,26,21,27,1,25,2,27,1,26,23,25,3,26,14,25,7,26,27,29,20,28,8,26,1,25,1,9,2,16,1,15,1,12,1,1,270,}, + {1,238,30,1,28,39,29,4,26,1,9,1,15,2,9,7,15,16,9,5,25,1,9,5,25,1,9,1,25,7,9,38,25,16,9,2,25,1,9,1,25,2,26,3,29,1,28,3,29,3,26,1,25,3,26,9,25,1,26,7,25,1,26,12,30,2,26,5,25,1,26,11,30,2,26,7,25,1,9,1,15,3,9,2,25,3,26,7,29,2,26,1,25,1,9,7,25,1,9,1,10,1,25,6,27,1,26,1,27,1,25,3,27,1,26,2,29,6,30,1,26,3,29,1,28,107,6,1,1,600,9,1,10,1,25,1,13,2,25,1,10,1,9,3,16,1,11,1,15,1,9,3,15,1,11,4,17,1,15,8,16,1,9,1,25,1,26,11,29,7,30,1,26,3,25,2,26,15,27,1,25,3,27,1,26,26,27,3,26,11,25,5,26,25,29,11,26,1,29,11,28,7,29,1,26,1,25,1,9,2,15,1,12,1,1,269,}, + {1,236,8,1,28,22,29,1,28,17,29,4,26,1,9,1,15,2,9,5,15,16,9,2,15,3,9,7,25,6,9,4,25,1,9,39,25,12,9,2,25,5,26,2,29,3,28,3,29,1,26,2,25,1,26,7,29,1,26,25,29,1,30,1,26,25,9,1,15,2,9,3,25,1,26,5,25,1,26,7,9,8,10,1,9,2,10,1,27,2,25,5,27,4,26,2,29,6,30,1,27,1,25,1,26,1,29,2,28,105,6,1,8,1,1,605,16,1,9,1,10,1,25,4,10,1,9,8,15,1,17,1,11,3,17,1,15,8,16,1,9,1,26,10,29,8,30,1,26,4,25,1,26,19,25,1,27,1,26,26,25,3,26,14,27,1,25,4,27,1,26,21,29,25,28,5,30,1,27,1,9,2,16,1,15,1,12,1,1,267,}, + {1,234,8,1,29,1,28,41,29,1,28,1,29,1,26,1,9,1,15,1,9,6,15,18,9,2,15,4,9,6,25,1,9,31,15,2,9,1,15,1,9,13,25,7,9,3,25,1,9,1,25,4,26,2,29,2,28,1,29,4,25,1,9,1,25,1,29,1,26,59,9,1,15,2,9,3,25,2,26,12,25,1,9,3,15,1,9,3,10,1,9,5,25,1,27,1,26,1,27,3,25,1,27,2,26,3,29,5,30,1,26,1,25,2,26,1,29,1,28,10,29,2,28,92,29,1,6,1,1,611,16,1,9,2,10,1,25,5,9,1,15,1,9,2,15,1,17,1,12,1,15,1,11,3,17,1,15,10,9,1,25,1,26,8,29,9,30,1,26,3,13,1,25,1,26,3,29,1,26,14,27,2,26,28,25,2,27,1,26,18,25,2,26,21,29,25,28,4,26,1,25,1,9,2,16,2,1,266,}, + {1,233,29,1,28,21,29,1,28,20,29,1,26,1,28,1,26,1,9,1,15,2,9,5,15,1,17,1,15,14,9,1,15,1,9,7,15,1,9,29,15,2,9,6,15,3,9,24,25,2,26,2,29,2,28,1,29,4,26,1,9,3,25,1,26,1,29,1,26,4,29,4,26,28,30,1,29,2,26,1,30,1,26,16,25,1,9,1,15,1,9,3,25,1,26,13,25,1,9,2,15,2,9,5,25,1,9,4,10,1,25,1,26,8,29,7,26,1,27,1,25,1,27,1,26,1,29,2,28,102,29,1,1,618,9,2,10,1,25,4,9,3,17,1,11,1,17,1,16,1,12,1,11,2,15,3,11,4,15,3,9,3,25,2,26,8,29,9,30,1,26,3,25,1,26,3,29,2,26,25,27,2,26,17,25,3,27,1,26,16,25,3,26,22,29,7,26,1,29,17,28,2,29,1,27,1,25,1,9,2,16,1,1,265,}, + {1,230,29,4,28,42,29,1,25,1,26,1,25,1,9,1,15,1,9,4,15,20,9,1,15,7,9,6,25,1,9,1,25,1,9,9,25,1,9,7,15,6,9,6,15,1,9,20,25,2,26,3,29,1,28,2,29,1,28,1,29,3,25,1,9,4,25,1,26,1,29,2,26,4,30,1,29,7,26,12,30,1,26,2,30,2,26,5,30,2,29,1,26,1,29,2,30,2,26,13,13,1,9,1,17,1,15,1,9,2,25,1,26,2,29,4,26,7,25,1,9,2,15,2,9,10,10,1,25,2,27,1,26,3,29,5,28,1,29,4,26,2,27,1,25,1,26,1,29,2,28,101,29,1,8,1,1,622,16,1,9,1,10,2,25,2,13,1,15,1,11,4,9,2,16,1,11,1,15,2,11,3,15,1,11,3,15,1,16,1,17,2,9,1,25,3,26,6,29,1,26,2,29,3,28,2,29,2,30,1,26,4,25,1,26,53,27,3,26,14,25,3,26,21,29,8,26,1,29,16,28,2,26,1,25,1,9,2,16,2,1,263,}, + {1,227,8,1,29,1,28,5,29,2,28,40,29,1,26,1,9,2,15,1,9,4,15,31,9,6,15,5,9,3,25,2,9,5,15,8,9,24,25,1,9,1,26,2,29,2,28,3,29,3,26,2,25,1,9,1,1,3,9,2,26,1,29,4,26,2,29,1,26,1,29,5,30,2,26,12,30,1,29,1,26,1,30,3,26,4,30,2,29,3,30,2,26,1,30,1,26,10,13,1,9,1,15,2,9,2,25,1,26,2,29,5,26,4,29,1,26,1,25,1,9,1,15,4,16,1,9,8,10,1,25,2,27,3,26,2,30,1,29,3,28,4,29,1,26,3,27,1,26,2,29,2,28,99,29,1,8,1,1,629,9,1,10,1,25,1,27,1,26,1,9,1,11,3,9,4,17,1,15,1,11,3,16,2,15,1,11,5,15,1,9,1,25,2,26,5,29,2,26,3,29,8,30,1,26,3,25,3,26,71,25,4,26,20,29,22,28,3,26,1,10,1,9,2,16,2,1,261,}, + {1,225,10,1,28,49,29,3,9,1,15,2,9,2,15,42,9,10,15,10,9,22,25,2,26,2,29,3,28,1,29,4,26,1,9,2,1,4,9,2,25,1,29,13,30,2,26,21,30,1,29,6,30,2,26,1,30,2,26,4,30,1,26,3,25,1,16,1,15,1,9,2,25,2,26,1,29,10,26,1,25,1,9,1,15,5,16,2,9,6,10,1,25,4,27,3,26,2,29,3,28,4,29,1,26,3,27,1,26,1,29,3,28,76,29,10,28,12,6,1,1,634,9,2,25,1,13,2,16,1,11,2,9,5,15,1,11,3,15,1,9,3,11,4,15,1,9,2,25,3,26,10,29,8,26,3,25,4,26,63,27,2,26,9,25,3,26,18,29,22,28,2,29,1,25,1,9,3,16,1,1,260,}, + {1,223,8,1,28,51,29,2,26,1,15,2,9,3,15,26,9,1,15,14,9,7,15,4,9,6,15,3,9,20,25,2,26,1,29,6,28,1,29,2,26,1,10,1,9,1,1,5,9,2,25,1,26,1,29,10,30,1,29,5,30,1,26,7,30,1,26,8,30,1,29,10,30,2,26,3,30,3,26,3,9,1,15,1,9,2,25,2,26,1,29,7,28,1,29,2,26,1,25,1,9,1,15,5,16,1,9,8,10,1,25,1,27,1,26,8,29,2,28,4,29,1,26,5,29,2,28,51,29,5,28,7,29,1,28,1,29,1,28,2,29,4,6,3,29,3,6,1,29,2,28,16,6,1,1,641,12,1,9,1,15,1,1,1,16,1,9,3,10,1,9,1,10,2,17,1,11,1,15,1,9,4,15,2,17,2,15,1,9,1,25,4,26,4,29,2,26,6,29,2,28,2,29,2,30,1,26,2,25,5,26,94,29,23,28,1,29,1,26,1,10,1,9,3,16,1,1,258,}, + {1,221,6,1,28,51,29,4,26,1,15,2,9,2,15,29,9,1,15,11,9,3,15,6,9,29,25,1,26,2,29,2,28,1,29,2,28,1,29,2,26,1,25,1,9,1,1,8,9,2,26,1,29,17,30,1,26,6,30,1,29,2,30,1,26,4,29,14,30,2,26,1,30,2,29,2,26,1,9,1,15,1,9,2,25,2,26,1,29,1,28,3,29,6,26,1,25,1,9,2,15,3,12,1,16,1,9,7,10,2,25,2,26,6,29,8,26,5,29,2,28,33,29,1,28,21,29,1,6,1,29,1,28,8,29,4,28,1,29,6,28,20,8,1,1,649,16,1,9,2,10,1,25,2,13,1,26,1,11,2,9,1,25,1,10,1,9,5,15,2,9,2,10,1,25,2,26,12,29,3,28,3,29,2,26,2,13,1,25,5,26,4,29,1,26,87,29,6,26,1,29,18,28,1,29,1,27,1,9,4,1,257,}, + {1,219,29,1,28,54,29,3,9,1,11,1,9,3,15,47,9,27,25,2,26,2,29,2,28,3,29,4,26,1,9,1,1,10,9,2,26,1,28,2,29,16,26,6,30,1,29,3,26,4,30,1,29,14,30,1,26,1,30,3,26,1,9,1,15,2,9,1,25,2,26,1,29,2,28,3,29,6,26,1,25,1,9,1,15,4,16,1,9,5,10,1,25,5,27,1,26,2,30,1,29,9,26,2,27,2,26,3,29,2,28,57,29,1,28,36,6,1,1,656,9,1,10,1,25,3,9,1,17,1,10,1,25,3,9,11,25,1,26,14,29,7,26,3,25,6,26,93,29,4,26,2,29,7,26,2,29,8,28,2,30,1,25,1,9,4,1,255,}, + {1,216,8,1,28,57,29,1,28,1,26,1,15,2,9,2,15,45,9,26,25,2,26,2,29,2,28,4,29,3,26,1,9,2,1,11,9,2,25,1,29,1,28,2,29,27,26,1,30,1,26,2,30,1,29,12,30,3,26,2,25,1,9,1,15,1,9,1,25,2,26,2,28,5,29,1,28,2,29,2,26,2,9,1,15,5,16,1,9,5,10,1,25,1,26,3,27,3,26,1,29,8,26,3,27,2,26,2,29,2,28,93,29,1,10,1,1,661,9,2,25,3,27,1,26,1,27,1,13,1,25,2,9,9,25,2,26,10,29,3,26,5,30,1,29,3,30,1,26,2,25,7,26,3,29,3,26,94,29,5,30,1,26,5,29,4,28,2,29,1,26,1,10,1,9,3,1,254,}, + {1,214,8,1,28,59,29,1,28,1,26,1,15,2,9,4,15,37,9,1,15,6,9,22,25,1,26,2,29,2,28,5,29,3,26,1,9,2,1,13,9,1,25,1,26,1,28,3,29,28,30,5,29,10,30,1,26,3,13,1,9,1,15,1,9,2,25,1,26,1,29,1,28,9,29,2,26,2,9,2,15,2,12,1,16,1,9,5,10,2,25,2,27,1,26,5,30,1,29,1,28,3,29,2,26,2,27,2,26,3,29,2,28,91,29,1,6,1,1,669,9,2,25,1,27,2,26,1,13,1,25,2,10,2,9,3,10,3,25,3,26,10,29,3,30,1,26,5,29,4,26,3,25,2,9,3,25,2,26,4,29,1,26,94,29,4,26,8,29,4,28,2,29,1,26,1,9,4,1,252,}, + {1,212,8,1,28,61,29,1,28,1,25,1,11,1,15,1,9,4,15,39,9,1,15,1,9,21,25,1,26,2,29,3,28,6,29,1,26,1,25,1,9,1,1,15,9,2,26,1,28,3,29,12,28,1,29,19,30,4,29,7,30,1,26,3,25,1,15,2,9,1,25,2,26,1,29,1,28,7,29,3,26,2,9,2,15,1,9,9,25,6,27,1,26,1,29,2,28,1,29,2,28,2,29,1,30,1,26,1,25,1,27,1,26,1,29,4,28,90,29,1,7,1,1,676,9,1,25,1,13,2,25,15,26,11,30,1,29,1,26,5,29,4,30,1,26,2,25,2,10,2,9,1,25,3,26,4,29,2,26,94,29,3,26,9,29,3,28,1,29,1,26,1,25,1,9,2,16,1,1,251,}, + {1,210,7,1,28,40,29,1,28,22,29,2,9,1,17,1,15,1,9,2,15,1,9,1,15,37,9,19,25,2,26,3,29,2,28,8,29,1,26,1,25,1,9,1,1,16,9,2,26,1,28,3,29,14,28,1,29,27,30,2,26,2,13,1,9,1,15,1,9,1,25,3,26,1,29,1,28,6,29,4,26,1,25,1,9,12,10,1,25,5,27,1,26,1,29,2,28,3,29,3,26,1,27,1,25,1,27,1,26,1,29,1,28,83,6,1,29,1,28,6,29,1,8,1,1,682,9,1,10,1,25,14,13,1,26,1,13,1,25,1,26,9,30,1,26,7,29,4,26,3,25,2,10,2,25,3,26,29,29,2,26,72,30,2,26,6,29,6,26,1,27,1,9,2,16,2,1,249,}, + {1,208,7,1,28,67,9,1,17,1,15,1,9,2,15,1,9,1,15,35,9,10,15,1,9,1,15,1,9,3,25,2,26,1,29,1,28,6,29,1,28,6,29,1,13,1,25,1,9,1,1,17,9,2,25,1,29,1,28,3,29,25,28,3,29,13,30,2,26,2,25,1,9,1,16,1,9,1,25,2,26,1,29,1,28,8,29,4,26,1,9,10,25,6,27,2,26,1,29,3,28,3,29,1,30,1,26,5,29,1,28,82,29,1,6,1,7,1,29,2,28,2,29,1,6,1,8,1,1,689,9,1,25,4,27,1,25,2,27,2,25,1,13,1,26,3,25,3,26,10,29,3,30,1,26,2,30,1,29,5,30,1,26,2,13,1,25,6,26,5,29,3,26,21,29,2,26,38,29,3,26,34,29,1,26,2,29,8,27,1,25,1,9,2,16,1,1,248,}, + {1,206,7,1,28,67,29,2,25,1,15,2,9,5,15,29,9,1,15,5,9,5,15,4,9,2,25,1,26,1,29,1,28,15,26,1,25,1,9,2,1,19,9,1,25,1,30,1,28,3,29,25,28,4,29,12,30,1,26,3,25,1,9,1,15,1,9,1,25,1,26,2,29,1,28,4,29,3,28,3,29,1,26,1,9,1,15,2,9,7,10,1,25,1,27,1,26,2,27,1,25,1,27,1,26,3,29,3,28,1,29,2,26,3,29,2,28,81,29,3,6,1,7,1,8,1,29,3,7,1,10,1,1,695,9,1,10,1,25,2,27,2,26,8,25,1,13,1,26,9,30,3,29,13,26,3,25,6,26,6,29,4,26,20,29,5,26,36,29,1,26,34,29,2,26,2,29,6,26,1,25,1,9,3,16,1,1,246,}, + {1,204,29,1,28,68,29,1,26,3,15,3,9,4,15,26,9,4,15,4,9,9,25,1,26,1,29,1,28,14,29,1,26,1,25,1,9,1,1,21,9,1,25,1,30,1,28,4,29,37,28,1,29,3,26,2,13,1,25,1,9,1,15,1,9,2,25,1,26,1,29,1,28,4,29,6,26,2,25,1,9,8,10,1,25,1,27,1,26,2,30,1,26,5,29,5,30,1,26,3,30,1,28,84,29,3,6,1,8,1,6,1,10,1,1,702,9,1,10,1,25,2,27,1,13,1,27,1,26,19,29,15,30,1,26,2,13,1,25,5,26,6,29,5,26,19,29,7,26,34,29,3,26,32,29,2,26,1,29,6,26,1,25,1,9,3,16,1,1,245,}, + {1,202,28,60,29,1,28,11,29,1,26,2,9,1,15,2,9,4,15,26,9,2,15,2,9,2,15,1,9,3,25,1,26,2,29,1,26,3,29,2,28,11,29,1,30,1,13,1,10,1,9,1,1,22,9,2,26,1,28,4,29,23,28,4,29,14,30,1,26,1,13,1,25,1,9,1,15,1,9,1,25,2,26,1,28,5,29,6,26,1,9,8,10,1,25,2,27,1,26,5,30,1,29,5,28,1,29,2,26,1,27,2,26,1,30,1,28,85,29,2,7,1,1,710,10,1,25,1,27,2,26,19,29,7,30,1,29,5,28,2,29,2,30,1,26,2,25,5,26,7,29,6,26,16,29,4,28,3,29,2,26,37,29,6,26,26,29,9,27,1,9,3,16,2,1,243,}, + {1,200,28,77,26,1,9,1,15,2,9,5,15,3,9,2,15,19,9,6,25,1,26,1,29,2,28,4,29,5,28,8,29,1,13,1,25,1,9,1,1,24,9,2,13,1,28,5,29,22,28,5,29,13,30,1,26,1,13,1,25,1,9,1,15,1,9,1,25,1,26,2,28,6,29,4,26,1,9,9,25,4,26,4,29,10,26,4,29,2,28,82,29,1,7,2,1,716,9,1,27,1,26,19,30,1,26,2,29,11,28,2,29,3,26,3,13,1,25,3,26,9,29,8,26,6,29,16,26,5,29,3,26,1,29,2,26,27,29,8,26,19,30,1,26,3,29,5,28,1,29,2,26,1,9,4,12,1,1,242,}, + {1,197,7,1,28,80,26,1,9,1,15,3,9,5,15,1,9,1,15,20,9,2,25,2,29,2,28,7,29,5,28,5,30,1,26,1,25,1,9,1,1,26,9,2,25,1,29,1,28,4,29,22,28,6,29,7,28,2,29,3,30,1,26,2,25,1,9,3,25,2,26,1,28,7,29,3,26,1,9,2,15,1,9,6,25,3,26,5,29,8,26,4,29,2,28,81,29,1,8,1,1,724,9,1,26,17,29,1,30,1,26,4,30,1,29,9,28,3,29,3,26,4,25,3,26,10,29,3,28,2,29,19,26,3,29,2,26,6,29,7,26,27,29,8,26,22,29,6,26,1,10,1,9,3,12,1,16,1,1,240,}, + {1,195,7,1,28,56,29,2,28,25,29,1,25,1,9,1,15,22,9,2,25,3,26,1,29,2,28,3,29,10,28,3,29,1,30,1,13,1,10,1,9,1,1,29,9,1,25,1,30,1,28,5,29,12,28,1,29,8,28,1,29,1,28,4,29,8,28,1,29,3,30,1,26,2,13,1,9,3,25,2,26,1,28,6,29,4,26,1,9,1,15,3,9,2,10,1,25,5,26,6,29,1,28,3,29,2,30,1,26,3,30,1,28,79,29,2,7,1,1,731,9,1,26,14,29,2,30,1,26,8,30,1,29,7,28,3,29,3,26,4,25,2,27,1,26,5,29,1,26,3,29,3,28,4,29,17,26,10,29,1,26,4,29,5,26,2,29,4,26,29,30,1,26,21,29,4,26,1,25,1,9,2,16,1,12,2,1,239,}, + {1,193,7,1,28,87,26,1,25,2,9,3,15,1,9,1,15,6,9,1,15,2,9,1,15,1,9,2,13,1,26,3,29,14,28,5,30,1,26,1,9,2,1,31,9,2,30,1,28,7,29,1,28,9,29,8,28,10,29,4,28,2,29,3,30,1,26,3,9,3,25,2,26,1,28,6,29,2,26,3,9,1,15,2,9,4,25,3,27,2,26,4,29,8,26,3,29,1,28,1,29,1,28,75,29,1,6,1,1,739,9,1,26,10,30,1,29,3,26,1,30,2,26,7,30,1,29,7,28,3,29,3,30,1,26,3,13,1,25,2,27,1,26,5,29,2,26,2,29,5,28,2,29,17,26,9,29,4,26,2,29,7,26,3,29,2,26,38,29,1,30,1,26,8,29,4,26,1,27,1,25,1,9,3,12,3,1,237,}, + {1,191,7,1,28,92,29,7,26,2,29,1,26,4,29,1,26,1,29,3,26,8,29,7,28,3,29,1,26,1,13,1,9,1,1,33,9,2,26,1,28,19,29,6,28,12,29,2,28,2,29,3,30,1,26,3,9,1,15,1,9,1,25,2,26,1,29,1,28,4,29,5,26,1,25,1,9,1,15,1,9,3,10,1,9,1,10,1,27,1,26,5,30,1,29,5,30,1,26,4,30,1,29,1,28,75,29,1,1,746,9,1,25,1,26,7,30,1,29,3,30,1,29,1,30,3,26,7,29,14,30,1,26,3,13,1,25,3,27,1,26,9,29,5,28,2,29,7,26,1,29,7,26,11,29,3,26,3,29,16,26,25,30,4,26,4,30,1,26,8,29,4,26,1,25,1,10,1,9,3,16,1,12,2,1,236,}, + {1,189,7,1,28,91,29,2,28,8,29,9,26,8,29,1,26,1,29,2,28,6,30,1,26,1,25,1,9,2,1,33,9,2,13,1,28,23,29,1,28,17,29,3,30,1,26,3,9,1,15,1,9,2,25,1,26,1,29,1,28,5,29,1,26,2,29,1,26,1,25,1,9,6,25,1,27,2,25,1,26,1,30,1,26,3,29,4,28,1,29,1,30,1,27,2,26,1,30,1,28,73,29,1,6,1,1,752,9,1,25,1,26,5,29,8,30,1,26,8,30,1,29,8,28,2,29,3,30,1,26,3,13,1,25,6,26,10,29,3,28,2,29,6,26,4,29,2,26,15,29,2,26,7,29,14,26,23,29,4,26,2,30,1,29,3,26,1,30,1,29,8,26,1,25,1,9,4,16,1,12,3,1,234,}, + {1,187,7,1,28,94,29,13,26,12,29,2,28,5,29,1,26,1,13,1,9,1,1,36,9,2,25,1,29,1,28,41,29,2,30,1,26,3,9,1,15,1,9,1,25,2,26,2,28,4,29,3,26,3,25,1,9,6,10,1,25,1,26,4,29,2,30,1,29,5,26,2,25,2,26,1,30,1,29,1,28,65,29,1,6,1,1,763,9,1,25,1,26,3,30,1,29,9,30,1,26,9,30,1,29,12,30,1,26,3,25,8,26,9,29,11,26,5,29,1,26,1,29,6,26,9,29,5,26,7,29,13,26,21,29,18,26,1,25,1,9,5,16,1,12,2,1,233,}, + {1,185,7,1,28,98,29,3,28,3,29,6,26,8,29,2,28,4,29,1,30,1,26,1,25,1,9,1,1,38,9,1,25,1,29,1,28,41,29,3,26,3,9,1,15,1,9,1,25,2,26,1,29,1,28,1,29,1,28,3,29,1,26,4,25,1,9,6,25,2,27,1,26,4,29,1,28,3,29,1,30,1,26,2,25,1,27,1,26,2,29,1,28,61,6,2,1,772,9,1,25,1,26,2,30,3,29,8,30,1,26,9,30,1,29,12,30,1,26,3,13,1,25,8,26,9,29,7,26,11,29,7,26,6,29,7,26,7,29,12,26,22,29,1,28,4,29,2,30,2,26,2,30,1,29,2,30,1,26,1,25,1,10,1,9,2,16,1,9,2,16,1,12,2,1,232,}, + {1,183,7,1,28,99,29,2,28,4,29,1,26,3,29,4,26,3,29,2,28,4,29,2,26,1,25,1,9,2,1,39,9,1,25,1,29,1,28,42,29,2,26,3,9,4,25,1,26,1,29,1,28,4,29,2,26,4,25,1,9,1,15,1,9,3,25,4,26,3,29,3,28,2,29,1,26,2,27,2,26,2,29,2,28,53,29,1,7,1,6,1,1,783,9,1,25,1,26,3,30,2,29,8,30,2,26,7,30,2,29,5,28,1,29,6,30,1,26,3,13,1,25,8,26,9,29,7,26,9,29,10,26,4,29,5,28,1,29,1,28,1,29,6,26,1,29,12,26,22,30,1,29,1,28,3,29,1,26,1,25,1,9,2,10,1,25,4,10,1,9,7,16,1,12,2,1,230,}, + {1,181,7,1,28,100,29,1,28,2,29,1,28,3,29,10,28,4,29,1,26,1,25,1,9,2,1,41,9,1,25,1,13,1,28,42,29,2,26,3,9,4,25,1,26,1,29,1,28,5,29,2,26,3,25,1,9,5,25,3,27,1,26,4,29,3,26,1,29,1,30,1,26,1,27,2,26,2,29,1,28,53,7,1,1,790,9,1,25,1,26,2,30,3,29,8,30,1,26,3,13,3,26,2,30,1,29,13,30,1,26,4,25,8,26,11,29,5,26,9,29,12,26,2,29,6,28,5,29,3,26,2,29,15,26,18,30,1,29,1,28,1,29,2,26,1,27,1,9,10,16,1,15,1,16,1,9,1,16,2,12,1,16,1,1,229,}, + {1,179,7,1,28,109,29,2,28,8,29,2,13,1,25,1,9,1,1,43,9,1,25,1,13,1,29,1,28,41,29,2,30,1,26,2,10,1,16,1,9,2,25,2,30,1,28,6,29,2,26,2,25,1,9,4,25,4,27,1,26,4,29,3,26,4,27,1,25,1,26,2,29,1,28,51,6,1,1,796,9,1,10,1,26,2,30,3,29,8,30,1,26,2,13,2,26,3,30,1,29,14,30,2,26,2,13,1,25,8,26,3,29,3,26,7,29,4,26,9,29,1,26,1,29,15,28,8,29,19,26,19,29,5,26,1,10,1,9,9,16,1,15,1,12,1,16,1,12,4,1,227,}, + {1,177,7,1,28,118,29,1,26,1,25,2,9,1,1,44,9,1,25,1,13,1,29,1,28,41,29,2,30,1,26,2,25,1,9,3,25,1,26,1,29,1,28,6,29,3,26,1,25,1,9,5,25,2,26,6,30,1,29,1,30,1,26,3,27,1,26,1,30,1,29,2,28,50,29,1,8,1,1,801,9,1,10,1,26,2,30,3,29,8,30,1,26,6,30,2,29,15,30,1,26,3,25,5,10,1,25,2,26,4,29,1,26,8,29,4,26,8,29,19,28,9,29,6,26,1,29,8,26,22,29,1,28,2,29,1,26,1,25,1,10,1,9,8,12,1,15,1,12,5,1,226,}, + {1,175,29,1,28,115,29,1,30,1,26,1,13,1,25,1,9,1,1,47,25,1,13,1,29,1,28,42,29,1,30,1,26,2,25,1,9,2,25,2,13,1,26,1,28,7,29,3,26,1,25,1,9,5,25,2,26,5,29,3,26,5,30,1,29,1,28,49,29,1,7,1,1,807,9,1,10,1,26,2,30,2,29,8,30,3,26,5,30,3,29,14,30,1,26,3,25,3,10,3,25,2,26,11,29,6,26,7,29,15,28,1,29,5,28,2,29,4,28,3,29,10,26,26,29,2,28,2,29,1,26,1,25,1,9,8,16,1,12,1,15,3,12,1,1,225,}, + {1,173,29,1,28,85,29,2,28,27,29,1,26,1,25,1,9,3,1,48,25,1,13,1,30,1,28,42,29,1,30,1,26,2,9,4,25,2,26,1,29,1,28,6,29,3,26,1,9,6,25,2,26,5,29,3,26,6,29,2,28,47,6,1,1,813,9,1,10,1,26,2,30,3,29,7,30,4,26,5,30,1,29,15,30,1,26,3,13,1,25,7,26,11,29,8,26,5,29,2,28,4,29,8,28,3,29,13,28,2,29,11,26,24,29,5,25,1,9,8,16,1,15,1,12,4,1,223,}, + {1,171,28,89,29,1,28,10,29,1,28,13,29,1,26,1,25,2,9,2,1,49,10,1,13,1,26,1,28,42,29,2,26,2,9,2,25,1,9,1,25,2,26,1,28,7,29,3,26,1,25,1,9,5,25,2,27,1,26,2,29,6,26,5,29,1,28,46,6,1,7,1,1,818,16,1,10,1,13,1,26,2,30,2,29,10,30,1,26,4,30,2,29,4,28,4,29,8,30,1,26,2,13,1,25,8,26,3,29,3,26,4,29,3,28,4,29,3,26,3,29,4,28,2,29,8,28,3,29,14,28,1,29,12,26,11,29,1,26,13,29,3,27,1,9,8,16,1,15,1,12,3,1,222,}, + {1,169,28,101,29,4,28,7,29,2,26,1,13,1,10,1,9,1,1,51,9,1,13,1,26,1,29,1,28,41,29,2,30,1,26,1,9,3,25,2,13,1,26,1,29,1,28,4,29,5,26,1,25,1,9,5,10,1,25,2,26,3,29,6,26,2,30,1,29,2,28,44,29,1,7,1,1,824,16,1,9,1,25,1,26,2,30,2,29,9,30,2,26,4,30,2,29,3,28,6,29,7,30,1,26,3,13,1,25,7,26,6,29,2,26,1,29,5,28,4,29,3,26,4,29,9,26,1,29,2,28,3,29,14,28,2,29,12,26,10,29,2,26,16,25,1,10,1,9,6,16,1,15,3,1,221,}, + {1,167,28,83,29,1,28,9,29,2,28,1,29,6,28,5,29,1,28,3,29,1,26,2,25,1,9,2,1,52,10,1,13,1,26,1,28,42,29,2,30,1,26,1,9,3,25,3,26,1,28,6,29,4,30,1,25,1,9,6,25,2,26,3,29,7,26,1,30,1,29,1,28,44,6,1,1,830,16,1,9,1,26,2,30,4,29,8,30,2,26,4,30,1,29,6,28,2,29,10,30,1,26,3,13,1,25,6,26,5,29,9,28,4,29,5,26,2,29,9,26,1,29,2,28,4,29,7,28,1,29,5,28,3,29,12,26,10,29,2,26,13,30,1,29,1,26,1,25,1,9,6,15,3,12,1,1,219,}, + {1,165,28,95,29,1,26,2,29,5,28,6,29,2,26,1,13,1,25,1,9,2,1,54,25,1,26,1,30,1,28,42,29,2,26,1,9,3,25,2,13,1,30,1,28,7,29,4,26,1,9,7,25,2,26,2,29,5,26,3,29,2,28,43,8,1,1,835,16,1,10,1,13,1,26,1,30,3,29,8,30,4,26,1,30,3,29,4,28,1,29,13,30,1,26,4,25,5,26,4,29,11,28,5,29,9,28,4,29,2,26,1,29,2,28,2,29,9,28,4,29,3,28,4,29,11,26,9,29,3,26,12,30,1,29,1,26,1,25,1,9,5,16,1,15,2,12,1,1,218,}, + {1,163,28,96,29,2,26,2,29,1,28,1,29,1,28,6,29,1,26,1,25,2,9,1,1,56,25,1,26,1,30,1,28,42,29,2,26,1,25,1,9,2,25,2,13,1,26,1,28,8,29,3,26,1,9,1,15,2,9,4,10,1,25,1,27,1,26,2,29,4,26,3,30,1,29,1,28,41,7,1,1,841,16,1,25,1,26,2,30,2,29,8,30,9,29,20,26,3,13,1,25,3,26,5,29,6,26,1,29,3,28,7,29,8,28,6,29,13,26,2,29,6,28,5,29,11,26,10,29,2,26,12,29,2,27,1,9,5,12,1,15,2,12,1,1,216,}, + {1,161,28,90,29,1,28,2,29,8,26,1,28,6,30,1,26,1,25,1,9,2,1,57,10,1,26,1,30,1,28,42,29,2,13,1,25,1,9,1,25,3,13,1,30,1,28,5,29,5,30,1,26,1,9,1,15,2,9,4,10,1,25,2,26,2,29,4,26,3,30,1,29,2,28,39,8,1,1,846,16,1,25,1,26,2,30,1,29,8,30,6,26,1,30,4,29,19,30,1,26,2,13,1,25,3,26,4,29,10,28,9,29,7,28,7,29,12,26,4,29,4,28,7,29,10,26,3,29,1,26,6,29,4,30,1,26,8,29,2,26,1,9,4,16,1,15,2,12,1,1,215,}, + {1,158,7,1,28,92,29,7,28,3,29,2,28,2,29,1,26,1,25,2,9,1,1,59,10,1,26,2,29,1,28,42,29,1,26,1,13,1,9,2,10,1,25,1,26,1,29,1,28,5,29,6,26,1,25,1,15,3,9,4,25,2,27,1,26,2,29,2,26,5,29,2,28,37,7,1,1,852,9,1,25,1,26,2,29,6,30,8,26,2,30,4,29,19,30,1,26,2,25,3,26,5,29,10,28,9,29,7,28,8,29,11,26,5,29,1,28,10,29,13,26,5,29,6,26,8,29,2,26,1,9,4,12,1,15,2,1,214,}, + {1,156,7,1,28,92,29,5,28,2,29,1,28,4,29,1,26,2,13,1,25,1,9,1,1,61,13,1,26,1,29,1,28,42,29,1,26,1,13,1,9,2,25,2,13,1,30,1,28,4,29,8,26,1,25,1,9,1,15,2,9,3,25,2,27,1,26,2,29,3,26,4,29,2,28,36,8,1,1,857,9,1,25,1,26,3,30,18,29,20,26,4,25,2,26,5,29,11,28,9,29,4,28,10,29,14,26,1,29,2,28,10,29,13,26,5,29,5,30,1,26,8,29,1,26,1,25,1,9,2,16,2,12,1,15,1,12,1,1,212,}, + {1,154,7,1,28,92,29,3,28,1,29,2,28,5,29,1,30,1,26,1,25,1,9,2,1,62,25,1,26,1,29,1,28,42,29,1,26,1,13,1,9,2,25,2,26,1,29,1,28,5,29,6,26,2,25,1,9,1,15,2,9,4,25,1,27,1,26,2,29,3,26,3,30,1,29,2,28,34,6,1,1,863,9,1,25,1,26,3,30,18,29,20,30,1,26,2,13,1,25,1,26,3,29,11,26,1,29,4,28,1,29,1,28,6,29,2,28,13,29,12,26,2,29,3,28,10,29,11,26,5,29,6,30,1,26,6,29,2,26,1,10,1,9,2,16,1,12,1,15,1,12,1,1,211,}, + {1,152,7,1,28,92,29,3,28,7,29,1,30,1,13,1,25,1,10,1,1,64,10,1,26,1,30,1,28,43,30,1,13,1,9,1,25,1,13,1,26,2,29,1,28,5,29,6,26,3,9,1,15,3,9,3,10,1,25,2,26,1,29,3,26,3,30,1,29,3,28,31,29,1,8,1,1,868,9,1,25,1,26,1,25,1,26,1,30,18,29,19,30,1,26,4,27,1,26,2,29,6,28,1,29,5,26,2,29,6,28,4,29,5,28,12,29,5,26,2,29,4,26,3,29,3,28,10,29,9,26,3,29,4,26,2,29,5,26,5,29,1,26,1,25,1,9,2,16,2,12,1,15,1,12,1,1,209,}, + {1,150,7,1,28,101,29,1,26,1,13,1,25,1,9,1,1,65,10,1,26,1,30,1,28,42,29,1,30,1,25,1,9,1,25,3,26,1,28,6,29,3,30,1,26,1,30,1,26,3,25,1,9,1,15,2,9,4,25,2,26,2,29,2,30,1,26,2,30,1,29,2,28,31,6,1,1,874,9,2,26,3,30,17,29,3,28,4,29,8,28,1,29,4,30,1,26,7,29,11,26,5,29,14,28,11,29,4,26,3,29,5,26,1,29,8,28,7,29,22,26,5,30,1,26,1,9,4,12,3,1,208,}, + {1,148,7,1,28,100,29,1,26,1,13,1,10,1,9,1,1,67,13,1,30,1,29,1,28,41,29,1,30,1,25,1,9,1,25,2,13,1,26,1,13,1,30,1,28,3,29,4,26,7,9,1,15,3,9,3,10,1,25,1,27,1,26,1,30,1,29,2,30,1,26,1,30,1,29,3,28,28,6,1,8,1,1,879,16,1,9,1,25,1,26,1,13,1,26,3,30,4,26,1,30,8,29,4,28,7,29,11,26,7,29,11,26,7,29,12,28,11,29,5,26,1,29,7,26,1,29,6,28,8,29,22,30,1,26,5,27,1,9,1,16,1,12,1,16,1,12,1,15,1,12,1,1,206,}, + {1,146,7,1,28,99,30,1,13,1,25,1,10,1,1,69,10,1,26,1,29,1,28,42,30,1,25,1,9,1,25,3,26,1,29,3,26,1,30,1,28,1,29,3,26,8,9,1,15,2,9,4,25,1,27,1,26,1,30,1,29,2,30,1,26,2,29,3,28,27,7,1,1,885,16,1,9,1,25,1,26,1,25,1,13,1,26,2,30,2,26,2,30,5,29,1,30,3,29,3,28,7,29,11,30,1,26,2,13,1,25,3,26,2,29,11,26,8,29,13,28,10,29,13,26,1,29,4,28,9,29,12,26,1,29,9,26,2,30,1,29,1,26,1,9,2,16,2,12,3,1,205,}, + {1,144,7,1,28,97,29,1,30,1,13,1,10,1,9,1,1,70,10,1,26,1,30,1,29,1,28,40,29,1,30,1,25,1,9,1,10,1,25,2,26,1,30,1,28,3,29,1,30,1,29,3,26,8,25,1,9,1,15,2,9,3,10,1,25,1,26,2,30,2,26,2,30,1,29,2,28,26,6,1,1,891,16,1,9,1,25,3,13,1,26,6,30,4,29,1,30,3,29,2,28,9,29,5,28,3,29,3,30,1,26,1,13,1,25,4,26,2,29,2,26,3,29,5,26,9,29,14,28,10,29,17,28,10,29,5,28,3,29,3,26,1,29,11,30,1,26,1,9,3,16,2,12,3,1,203,}, + {1,142,7,1,28,89,29,1,28,6,29,1,26,1,13,1,9,2,1,71,10,1,13,1,30,1,29,1,28,40,29,1,30,1,25,1,9,1,13,3,26,1,29,1,28,5,29,3,26,8,25,1,9,1,15,3,9,3,25,1,26,2,30,2,26,3,29,3,28,24,7,1,1,896,16,1,9,1,25,4,26,6,30,3,29,1,30,2,29,6,28,4,29,6,28,5,29,2,30,1,26,2,13,1,25,4,26,2,29,1,26,4,29,6,26,7,29,1,26,3,29,12,28,8,29,19,28,10,29,5,28,2,29,4,26,1,29,10,26,1,25,1,9,2,16,2,12,3,1,202,}, + {1,140,7,1,28,92,29,1,28,1,29,1,30,1,26,1,25,1,9,2,1,73,25,1,26,1,29,1,28,41,30,1,25,1,10,1,13,1,26,3,29,1,28,5,29,3,26,9,25,1,9,1,15,1,16,1,9,3,25,1,27,1,26,2,29,2,26,2,30,1,29,2,28,22,6,1,1,902,16,1,9,2,25,2,13,1,26,6,30,4,29,12,28,5,29,2,28,2,29,5,30,1,26,2,13,1,25,3,26,7,29,7,26,6,29,2,26,3,29,10,28,9,29,9,28,2,29,9,28,10,29,4,28,2,29,8,30,1,26,1,29,2,28,1,29,2,25,1,9,1,12,7,1,200,}, + {1,138,7,1,28,92,29,2,13,1,25,2,9,1,1,75,10,1,26,1,30,1,29,1,28,40,30,1,25,1,9,1,13,2,26,2,29,1,28,5,29,3,26,9,25,1,9,2,15,1,9,3,10,1,25,1,26,2,30,2,26,2,30,1,29,2,28,21,29,1,1,907,16,1,9,2,25,2,13,3,26,3,30,4,29,6,30,1,29,5,28,7,29,3,28,2,29,4,30,1,26,2,25,3,27,1,26,8,29,5,26,12,29,9,28,9,29,9,28,3,29,8,28,11,29,3,28,2,29,6,30,2,26,2,29,1,28,2,29,1,25,1,9,1,16,1,12,6,1,199,}, + {1,136,7,1,28,91,29,1,26,1,13,1,25,1,9,1,1,77,10,1,26,1,30,1,29,1,28,40,30,1,9,2,13,1,26,2,29,1,28,7,29,2,26,10,25,1,9,1,15,2,9,3,25,1,26,7,29,1,28,21,29,1,7,1,1,911,16,1,9,2,25,4,13,1,26,3,30,3,29,4,30,3,29,4,28,7,29,3,28,5,29,3,26,1,13,1,25,4,26,2,29,2,26,5,29,6,26,12,29,8,28,9,29,8,28,5,29,3,28,2,29,1,28,12,29,4,28,3,29,4,26,2,30,1,29,1,28,2,29,1,27,1,9,2,12,7,1,197,}, + {1,134,7,1,28,90,29,1,26,1,13,1,25,1,9,1,1,78,9,1,13,1,26,1,29,1,28,40,29,1,9,1,10,1,13,1,26,2,29,1,28,7,29,2,26,3,13,1,26,7,25,1,9,5,25,1,26,7,29,2,28,20,29,1,1,916,16,1,9,2,25,2,9,1,25,1,13,1,26,2,30,3,29,3,30,3,29,6,28,3,29,4,28,1,29,2,28,3,29,4,30,1,26,1,13,1,25,4,26,9,29,6,26,12,29,8,28,9,29,8,28,24,29,3,28,3,29,10,26,1,10,1,9,2,16,1,12,5,1,196,}, + {1,132,7,1,28,89,29,1,26,2,10,1,9,1,1,80,25,1,26,1,29,1,28,40,29,1,9,1,25,1,26,3,29,1,28,7,29,2,26,3,13,1,26,8,9,5,25,1,27,1,26,6,30,1,29,1,28,19,29,1,7,1,1,920,16,1,9,2,25,4,13,1,26,2,30,7,29,11,28,4,29,1,28,3,29,6,30,1,26,2,25,4,26,27,29,9,28,10,29,6,28,25,29,14,26,1,25,1,9,4,12,5,1,194,}, + {1,130,7,1,28,88,29,1,26,2,10,1,1,82,10,1,26,1,30,1,29,1,28,39,29,1,25,1,30,1,29,3,28,9,29,1,30,1,26,11,25,1,9,1,15,1,9,3,25,1,26,7,29,2,28,18,6,1,1,925,16,1,9,3,25,3,13,1,26,2,30,1,26,1,30,6,29,7,28,9,29,8,30,1,26,2,25,4,27,1,26,13,29,1,26,11,29,9,28,11,29,6,28,26,29,3,28,6,29,2,30,1,27,1,25,1,9,5,12,4,1,193,}, + {1,128,7,1,28,87,30,1,26,1,8,1,9,1,1,83,10,1,13,1,26,1,29,1,28,39,30,1,10,1,30,1,29,3,28,9,29,1,26,13,9,5,25,1,27,1,26,2,27,2,26,2,29,2,28,17,6,1,8,1,1,930,9,3,25,3,13,1,26,5,30,4,29,2,30,2,29,4,28,5,29,12,26,3,25,4,27,1,26,12,29,2,26,11,29,9,28,12,29,5,28,9,29,1,28,17,29,3,28,5,29,1,26,1,9,7,12,4,1,192,}, + {1,126,29,1,28,85,29,1,26,2,10,1,1,86,25,1,26,1,29,1,28,39,30,1,9,1,26,2,29,2,28,9,29,2,26,12,25,1,9,4,10,1,25,1,26,2,27,2,26,2,30,1,29,1,28,17,6,1,1,935,9,3,25,3,13,3,26,2,30,4,29,1,30,3,29,3,28,4,29,14,30,1,26,2,13,1,25,3,27,1,26,20,29,1,26,4,29,11,28,12,29,3,28,34,29,1,30,1,27,1,9,8,12,4,1,190,}, + {1,124,29,1,28,83,29,1,26,2,8,1,9,1,1,87,8,1,26,1,29,2,28,38,26,1,9,1,26,2,29,2,28,10,29,1,26,13,25,1,9,3,10,1,25,1,27,1,26,2,25,1,26,3,30,1,29,1,28,15,29,1,1,940,16,1,9,2,25,4,13,1,26,2,30,7,29,22,30,1,26,3,25,5,26,19,29,2,26,4,29,10,28,46,29,3,26,2,10,1,9,8,12,4,1,189,}, + {1,122,28,83,29,1,26,1,13,1,10,1,1,89,10,1,26,2,29,1,28,38,26,1,10,1,30,1,29,3,28,10,29,2,26,13,9,4,25,1,27,1,26,1,27,1,25,2,26,2,30,2,29,3,28,12,10,1,1,944,16,1,9,2,25,3,8,1,13,1,26,3,30,7,29,20,30,2,26,3,13,1,25,4,26,16,29,5,26,3,29,2,28,2,29,8,28,3,29,2,28,38,29,1,26,1,27,1,25,3,9,10,12,4,1,187,}, + {1,120,28,81,26,3,10,1,9,1,1,90,10,1,13,1,26,1,29,1,28,38,26,1,25,1,29,4,28,10,29,7,26,7,29,1,25,1,9,3,25,1,27,1,26,1,27,1,25,2,27,1,26,1,30,1,29,5,28,1,29,2,28,7,6,1,1,949,9,3,25,3,13,2,26,4,30,4,29,9,28,2,29,6,30,1,29,2,30,3,26,4,13,1,25,4,26,12,29,1,26,1,29,7,26,2,29,3,28,2,29,8,28,41,29,1,26,2,25,2,10,1,9,11,16,1,12,3,1,186,}, + {1,118,28,80,29,1,30,1,25,1,10,1,1,93,13,1,26,1,29,1,28,38,26,1,25,1,30,1,29,1,26,1,29,1,28,10,29,7,26,7,29,1,26,1,25,1,9,2,10,1,26,1,27,2,25,2,27,1,26,1,30,1,29,8,28,7,1,954,16,1,9,2,25,3,13,2,26,4,30,3,29,4,28,1,29,4,28,1,29,7,30,8,26,4,27,1,25,2,27,1,26,11,29,11,26,1,29,2,28,4,29,7,28,40,29,1,26,1,27,1,25,2,10,1,9,12,16,1,12,2,1,185,}, + {1,116,28,79,29,1,26,1,25,1,10,1,1,94,25,1,26,1,29,1,28,38,26,1,25,1,26,1,29,3,28,10,29,8,26,8,25,1,9,3,25,1,27,2,25,3,26,2,29,9,28,4,29,1,6,1,1,958,16,1,9,2,25,2,13,1,25,1,13,3,26,2,30,1,29,1,30,2,29,15,30,9,26,5,25,2,26,12,29,11,26,1,29,2,28,5,29,9,28,36,30,1,26,2,27,1,25,2,9,13,12,3,1,183,}, + {1,114,28,77,29,1,26,2,25,1,1,96,10,1,26,1,29,2,28,37,26,1,25,1,26,1,29,3,28,10,29,3,28,3,29,3,26,8,9,3,10,1,27,1,26,1,27,1,25,2,26,2,29,9,28,4,29,1,1,964,9,2,25,4,13,1,26,2,30,5,29,15,30,2,29,1,30,5,29,2,30,1,26,3,25,3,27,1,26,12,29,12,28,6,29,8,28,35,29,1,26,3,27,1,25,2,10,1,9,12,16,1,12,2,1,182,}, + {1,112,28,75,29,2,26,1,25,1,10,1,1,97,10,1,26,1,30,1,29,1,28,37,26,1,13,1,29,3,28,10,29,4,28,4,29,4,26,2,29,2,26,2,25,2,9,1,25,2,26,1,27,1,25,1,27,2,26,1,30,1,29,9,28,2,29,1,6,1,1,968,9,2,25,4,13,1,26,3,30,4,29,13,30,1,29,2,30,6,29,1,30,3,26,2,13,1,25,3,27,1,26,11,29,13,28,8,29,5,28,35,26,2,25,1,27,1,26,2,25,2,10,1,9,12,16,1,12,1,1,181,}, + {1,110,28,74,29,1,26,2,8,1,1,100,26,1,30,1,29,1,28,36,29,1,26,2,29,4,28,10,29,3,28,5,29,8,26,3,25,3,27,1,26,1,27,3,26,2,29,12,1,973,9,2,25,3,13,1,25,1,26,1,30,6,29,14,30,5,29,3,30,3,29,1,30,1,26,2,13,1,25,2,27,1,26,11,29,5,28,1,29,7,28,8,29,2,28,36,29,1,26,1,25,3,27,2,25,3,9,13,16,2,1,179,}, + {1,108,28,72,29,2,26,1,25,1,10,1,1,101,25,1,29,2,28,36,29,1,13,1,26,1,30,1,29,2,28,11,29,3,28,8,29,3,28,1,29,1,26,2,29,1,26,1,25,1,9,1,25,1,26,2,27,2,26,3,29,10,6,1,1,977,9,3,25,2,26,1,13,1,26,2,30,3,29,15,30,10,29,4,30,1,26,2,27,2,26,12,29,4,28,3,29,7,28,16,29,2,28,6,29,2,28,16,29,2,26,1,25,10,10,1,9,2,10,1,9,8,16,2,1,178,}, + {1,106,28,70,29,2,26,1,13,1,25,1,1,103,8,1,29,2,28,36,29,1,25,1,26,2,30,1,29,1,28,11,29,3,28,11,29,5,26,1,25,1,9,1,25,1,27,4,26,3,30,1,29,8,30,1,1,982,16,1,9,2,25,3,13,1,26,2,30,5,29,5,30,2,29,1,30,6,29,1,30,7,29,5,30,1,26,1,27,1,26,13,29,16,28,16,29,2,28,5,29,3,28,13,26,2,27,1,25,1,10,1,25,11,10,3,9,8,16,1,1,177,}, + {1,104,28,69,29,1,30,1,26,1,25,1,10,1,1,104,10,1,30,1,29,1,28,36,29,1,25,1,26,2,29,1,26,1,29,1,28,9,29,4,28,13,29,4,26,1,25,4,27,1,26,4,30,1,29,7,30,1,6,1,1,986,16,1,9,2,25,2,26,2,13,1,30,5,29,7,30,10,26,3,30,1,29,7,26,15,29,17,28,15,29,3,28,4,29,4,28,11,29,1,26,1,25,2,9,2,10,1,25,4,10,1,9,2,10,1,25,4,10,1,9,9,16,1,1,175,}, + {1,102,28,68,29,1,30,1,7,1,8,1,1,107,26,1,29,1,28,36,29,1,25,1,26,1,29,3,28,10,29,2,26,1,29,2,28,11,29,2,28,2,29,2,26,1,25,3,27,3,26,3,30,1,29,6,6,1,1,992,9,2,25,1,26,3,13,1,26,1,30,3,29,2,30,7,29,1,30,12,29,2,28,2,29,2,26,2,25,2,26,11,29,17,28,12,29,6,28,5,29,4,28,8,29,2,26,2,25,2,9,6,10,1,9,4,25,5,10,1,9,9,1,174,}, + {1,100,28,66,29,1,30,1,26,1,7,1,1,109,25,1,29,2,28,35,29,1,13,1,26,1,30,1,26,2,29,1,28,10,29,3,28,17,29,2,26,1,25,5,27,1,26,3,29,6,7,1,1,996,9,2,25,1,26,4,30,11,29,2,30,2,29,6,30,1,26,1,30,1,29,1,28,2,29,1,26,14,29,23,28,10,29,6,28,7,29,3,28,6,29,1,26,1,27,1,25,4,10,1,9,10,10,2,25,4,10,1,9,8,1,173,}, + {1,98,28,65,29,1,30,1,7,1,10,1,1,110,7,1,29,2,28,35,30,1,25,1,26,3,29,1,28,11,29,4,28,15,29,2,28,1,29,1,26,1,25,4,27,1,26,4,30,1,29,1,30,1,29,1,6,1,1,1001,9,2,25,2,26,3,30,2,26,1,30,9,29,2,28,1,29,3,30,4,29,3,26,1,25,1,26,2,29,3,30,1,26,5,29,11,28,3,29,13,28,10,29,4,28,11,29,1,28,5,29,1,26,1,25,6,9,9,10,1,9,3,10,1,25,3,10,1,9,7,16,1,1,171,}, + {1,96,28,63,29,1,30,1,7,1,13,1,1,112,8,1,29,2,28,35,30,1,9,1,26,3,30,1,28,11,29,3,28,16,29,2,28,1,26,1,25,1,9,1,10,1,25,3,26,5,30,1,29,1,30,1,7,1,1,1005,9,2,25,2,26,3,30,7,29,1,30,1,29,1,28,4,29,1,30,2,29,3,28,1,29,1,30,1,25,2,26,1,30,1,29,2,28,2,29,1,26,2,25,2,26,1,29,7,26,1,29,5,28,2,29,14,28,10,29,1,28,18,29,1,26,1,27,2,25,4,10,1,9,15,10,4,9,6,1,170,}, + {1,94,28,61,29,2,30,1,7,1,10,1,1,114,26,1,29,1,28,35,26,1,25,1,26,3,30,1,28,11,29,4,28,15,29,5,26,1,25,5,26,5,30,1,7,1,1,1010,16,1,9,1,25,1,26,4,30,4,29,4,28,3,29,6,28,1,29,1,30,1,13,1,10,1,26,3,29,3,28,1,29,2,26,1,13,1,25,2,26,2,29,6,26,2,29,4,28,4,29,13,28,5,29,2,28,22,29,1,26,1,27,1,25,5,10,1,9,16,10,3,9,5,1,169,}, + {1,92,28,60,29,2,13,1,10,1,1,116,7,1,28,36,13,2,30,1,26,2,29,1,28,11,29,4,28,15,29,6,26,1,25,4,27,1,26,5,8,1,1,1014,16,1,9,1,25,1,26,5,30,2,29,3,28,3,29,3,28,4,30,1,8,1,13,1,26,3,30,2,29,3,28,1,29,2,26,1,13,1,25,3,26,1,29,6,26,3,29,5,28,2,29,3,28,1,29,3,28,1,29,3,26,2,29,2,28,28,26,1,27,1,25,6,10,1,9,17,10,1,9,4,16,1,1,168,}, + {1,90,28,59,29,1,30,1,7,1,1,118,10,1,29,1,28,35,13,1,26,1,30,1,26,2,29,1,28,11,29,4,28,17,29,3,28,2,26,1,25,4,27,1,26,4,7,1,1,1018,9,1,25,1,26,5,30,2,29,2,28,2,29,3,28,5,26,1,10,1,26,1,29,2,30,1,29,3,30,1,29,1,28,2,29,2,30,1,26,1,25,1,10,1,25,1,26,1,29,7,26,3,29,6,28,7,29,4,26,3,29,3,28,25,29,1,26,1,25,2,27,1,25,4,10,1,9,22,16,2,1,166,}, + {1,88,28,57,29,1,30,1,7,1,10,1,1,119,10,1,26,1,29,1,28,33,29,1,13,1,26,1,30,1,26,2,29,1,28,11,29,4,28,18,29,2,28,2,29,1,25,1,9,2,25,2,27,1,26,3,7,1,1,1022,9,1,25,2,26,4,30,1,29,4,30,1,29,1,28,5,9,1,25,1,29,2,28,2,29,10,30,1,26,1,25,1,10,1,9,1,25,1,26,1,29,5,26,5,29,8,28,3,29,7,26,3,29,2,28,24,29,1,26,2,27,1,25,6,10,2,9,20,16,2,1,165,}, + {1,86,28,56,29,1,26,1,13,1,1,122,26,1,29,1,28,33,29,1,25,1,26,1,30,3,29,1,28,10,29,5,28,17,29,4,28,2,26,1,25,1,9,2,25,2,26,2,27,1,10,1,1,1026,9,1,25,3,26,3,30,5,29,1,28,4,13,1,30,1,29,2,28,3,29,10,30,1,26,1,13,1,25,1,10,2,27,1,29,6,26,4,29,9,28,3,29,10,28,26,29,1,27,1,25,7,10,1,9,1,10,1,25,2,10,1,9,17,16,1,1,164,}, + {1,83,7,1,28,54,29,1,30,1,13,1,10,1,1,123,7,1,28,34,29,1,25,1,30,1,29,1,30,2,28,11,29,2,26,1,29,3,28,19,29,4,26,1,25,1,9,2,25,2,26,1,25,1,1,1031,9,1,25,3,26,4,30,2,29,1,28,4,30,1,29,1,28,6,29,4,30,2,29,5,26,2,25,2,10,1,25,1,26,1,29,6,26,4,29,7,28,4,29,5,28,12,29,1,28,18,29,1,26,1,25,6,9,5,25,2,9,17,16,1,1,163,}, + {1,81,7,1,28,53,30,1,7,1,25,1,1,125,7,1,29,1,28,33,29,1,25,1,29,4,28,11,29,1,26,3,29,2,28,19,29,5,26,1,9,2,25,2,26,1,10,1,1,1035,9,2,25,2,26,2,30,1,29,2,28,2,29,1,30,1,29,1,28,7,29,3,30,2,26,1,30,1,29,6,30,1,26,1,25,3,26,1,29,7,26,3,29,1,28,1,29,8,28,3,29,2,28,32,29,1,26,1,25,1,10,1,9,1,10,2,9,25,16,2,1,161,}, + {1,79,7,1,28,51,29,1,26,1,7,1,10,1,1,126,8,1,29,1,28,33,30,1,26,1,29,4,28,11,29,2,26,2,29,2,28,19,29,6,26,1,9,2,25,2,8,1,1,1038,9,3,25,1,26,2,29,4,26,2,29,1,28,8,29,2,30,6,29,6,26,2,25,2,26,1,29,2,28,4,29,2,26,4,29,7,28,39,29,1,27,1,10,1,9,29,16,1,1,160,}, + {1,77,7,1,28,50,30,1,7,1,8,1,1,129,26,1,28,33,26,2,29,3,28,12,29,1,26,3,29,3,28,19,29,6,25,1,9,2,10,2,1,1042,9,2,25,1,26,2,29,2,26,2,30,1,29,1,28,9,29,3,30,3,29,3,28,2,29,3,26,1,27,1,25,3,26,1,29,1,28,7,29,4,28,16,29,3,26,1,27,1,25,1,26,3,29,1,28,20,26,1,25,1,9,21,16,2,9,6,16,1,1,159,}, + {1,75,7,1,28,48,29,1,26,1,13,1,1,131,7,1,29,1,28,32,13,1,26,1,29,3,28,12,29,1,26,2,29,4,28,21,29,1,28,3,29,1,25,1,9,3,1,1046,9,1,25,2,26,5,29,6,28,7,29,5,28,4,29,3,30,1,26,1,13,1,25,2,26,1,29,1,28,25,29,1,26,1,27,2,26,1,25,1,9,3,10,1,25,1,26,8,29,2,28,12,26,1,25,1,9,28,16,1,1,158,}, + {1,73,7,1,28,46,29,1,26,1,25,1,10,1,1,132,7,1,29,1,28,32,13,1,26,1,29,4,28,11,29,1,26,2,29,4,28,26,26,1,25,1,9,1,1,1051,9,2,25,2,26,4,30,4,29,2,28,6,29,4,28,9,29,5,28,23,29,3,26,1,27,1,25,4,10,1,9,4,25,2,26,3,25,2,10,1,25,2,27,1,26,1,29,1,28,10,26,1,25,1,9,28,16,1,1,156,}, + {1,71,8,1,28,45,30,1,26,1,25,1,1,134,8,1,29,1,28,1,29,1,28,29,29,1,13,1,29,1,28,1,29,2,28,12,29,6,28,28,29,1,9,1,1,1055,16,1,9,2,25,1,26,5,30,2,29,3,28,6,29,2,28,25,29,2,30,2,29,1,28,1,29,3,26,3,25,2,26,3,25,1,9,3,25,2,9,5,25,2,27,1,25,4,9,3,25,2,27,1,26,1,29,1,28,8,26,1,25,1,9,13,10,1,9,1,10,3,9,9,16,1,1,155,}, + {1,69,7,1,28,43,29,1,26,1,13,1,10,1,1,136,30,1,28,31,29,1,13,1,29,1,28,1,29,2,28,11,29,7,28,29,26,1,1,1060,9,2,25,1,26,4,30,1,29,5,28,20,29,1,26,1,25,1,10,2,27,1,26,1,27,3,26,3,25,1,9,2,10,1,25,5,9,4,25,2,27,2,25,1,10,1,9,2,25,2,10,1,9,5,25,2,26,1,27,2,25,2,10,1,9,2,25,3,27,1,29,1,28,7,26,1,27,1,10,1,9,13,10,4,9,8,16,1,1,154,}, + {1,67,8,1,28,42,29,1,26,1,25,1,1,137,10,1,26,1,28,31,30,1,13,1,29,4,28,11,29,6,28,30,25,1,1,1064,9,1,25,2,26,3,30,2,29,2,28,19,29,2,30,1,26,1,25,1,9,8,10,1,25,1,9,7,25,3,9,5,25,5,9,3,25,3,9,5,25,8,9,3,10,1,25,2,27,1,26,1,29,1,28,6,29,1,26,1,10,1,9,12,10,2,9,9,16,1,1,153,}, + {1,65,7,1,28,41,30,1,13,1,8,1,1,139,26,1,28,31,30,1,25,1,29,1,28,14,29,6,28,26,29,1,28,2,29,1,9,1,1,1068,9,2,25,1,26,3,29,2,28,19,29,2,26,1,25,3,9,3,16,1,9,13,10,3,9,7,25,4,9,4,10,1,9,8,25,6,10,1,9,2,10,1,25,3,27,1,26,1,30,1,29,1,28,5,26,1,25,1,9,14,10,2,9,5,16,3,1,151,}, + {1,63,8,1,28,39,29,1,30,1,13,1,1,141,10,1,29,1,28,30,30,1,25,1,29,2,28,13,29,4,28,26,29,3,28,2,26,1,9,1,1,1073,9,1,25,1,26,2,29,1,28,19,29,1,30,1,26,4,25,1,9,4,16,1,9,12,10,1,25,2,10,1,9,7,25,2,27,1,25,1,9,4,25,2,9,8,25,6,10,1,9,1,10,1,25,5,27,1,26,1,29,2,28,2,29,1,27,1,9,12,10,3,9,5,16,4,1,150,}, + {1,61,7,1,28,38,30,1,7,1,13,1,1,142,10,1,30,1,28,30,30,1,13,1,28,1,29,3,28,12,29,4,28,5,29,1,28,19,29,3,28,1,29,1,26,1,9,1,1,1076,16,1,9,1,26,2,29,1,28,17,29,1,30,1,26,3,29,2,26,1,25,2,10,1,9,2,16,2,9,13,25,3,9,6,10,1,25,4,9,15,10,1,25,3,10,1,9,3,25,3,10,1,25,3,26,1,29,3,26,1,10,1,9,19,16,2,12,1,16,1,1,149,}, + {1,59,7,1,28,37,29,1,7,1,10,1,1,144,30,1,28,30,30,1,26,1,29,1,28,1,29,4,28,10,29,2,28,2,29,2,28,11,29,1,28,4,29,3,28,3,29,3,28,2,29,1,26,1,9,1,1,1080,16,1,9,1,26,2,29,1,28,13,29,3,26,1,13,1,26,1,30,1,29,3,26,1,27,1,25,1,10,1,9,3,16,1,9,13,25,3,10,1,9,6,10,1,25,4,9,18,25,1,9,3,10,1,25,3,10,2,25,4,26,3,25,1,9,19,16,1,12,2,1,148,}, + {1,57,7,1,28,35,29,1,7,2,1,146,7,1,28,30,26,2,29,1,28,14,29,2,28,8,29,1,28,11,29,10,28,2,26,2,9,1,1,1085,9,1,26,2,29,1,28,9,29,3,30,2,26,1,13,1,26,2,29,2,30,2,26,1,25,1,9,4,16,3,9,12,10,1,25,3,9,8,25,5,9,5,25,2,9,10,10,1,9,4,10,2,9,6,25,2,26,2,27,1,25,1,9,17,16,2,12,1,16,1,1,146,}, + {1,55,26,1,28,33,29,2,7,1,8,1,1,147,10,1,30,1,28,29,26,1,13,1,29,1,28,14,29,2,28,19,29,10,28,2,29,1,26,1,25,1,9,1,1,1089,9,1,26,1,29,2,28,3,29,1,28,2,29,6,30,1,26,7,29,1,26,1,25,1,10,1,9,5,16,2,9,12,25,3,10,1,9,8,25,6,9,6,10,2,9,8,25,1,9,3,25,2,10,1,9,7,10,1,27,1,26,2,25,1,9,17,16,1,12,1,16,1,1,145,}, + {1,53,26,1,28,32,29,1,26,1,7,1,1,150,30,1,28,29,26,2,29,1,28,13,29,1,28,20,29,13,26,2,25,1,9,1,1,1093,9,1,26,1,29,2,28,1,29,11,30,1,13,3,25,5,27,1,26,1,27,1,10,1,9,4,16,2,9,13,25,1,10,1,9,9,25,2,27,2,25,2,10,1,9,14,10,1,25,1,10,1,9,3,10,2,9,2,10,1,9,4,10,1,25,3,9,17,16,3,1,144,}, + {1,51,29,1,28,31,29,1,7,1,8,1,1,151,10,1,29,1,28,28,26,1,13,1,28,15,29,3,28,13,29,1,28,2,29,9,30,2,29,2,26,2,25,1,9,2,1,1097,9,1,26,1,29,8,26,1,30,1,29,3,13,1,26,3,25,1,10,3,26,3,25,1,10,1,9,5,16,2,9,12,10,1,25,2,9,9,25,3,27,1,26,1,25,2,9,14,25,3,9,3,10,1,25,4,9,4,10,1,25,3,9,17,16,2,1,143,}, + {1,49,28,30,29,1,30,1,7,1,1,154,30,1,28,28,26,1,30,1,29,2,28,29,29,1,28,3,29,7,26,3,30,1,29,1,26,1,25,1,9,2,1,1102,9,1,26,1,29,6,26,3,30,2,26,2,30,1,26,1,13,3,25,2,13,1,25,4,10,1,9,5,16,2,9,12,10,1,25,1,10,1,9,10,25,2,26,1,27,1,25,1,10,1,9,14,25,1,27,1,25,1,9,3,25,4,10,1,9,4,10,1,25,3,10,1,9,16,16,2,1,141,}, + {1,47,28,29,29,1,7,1,8,1,1,155,7,1,28,28,13,1,30,1,28,15,29,2,28,14,29,2,28,2,29,7,26,6,25,1,9,2,1,1106,9,1,26,1,29,5,26,6,30,1,26,5,13,1,25,1,26,1,13,1,25,6,9,4,16,1,9,13,25,2,10,1,9,10,25,1,26,1,27,1,25,2,10,1,9,6,10,1,9,7,25,3,9,3,25,2,10,1,9,7,10,1,25,2,10,1,9,15,16,2,1,140,}, + {1,44,8,1,28,28,30,1,13,1,1,157,10,1,28,28,13,1,30,1,28,1,29,1,28,14,29,1,28,15,29,1,28,2,29,7,26,5,25,2,9,1,1,1111,9,1,26,3,29,2,26,10,13,2,25,1,13,2,25,3,26,3,27,1,10,1,9,3,16,2,9,12,10,1,25,5,9,9,25,5,9,6,10,1,9,8,25,2,9,8,10,3,25,1,10,2,25,1,10,1,9,16,16,1,1,139,}, + {1,42,8,1,28,26,29,1,7,1,8,1,1,159,29,1,28,27,9,1,29,1,28,15,29,1,28,15,29,11,26,4,13,1,25,1,9,2,1,1115,9,1,26,2,29,3,26,4,13,2,26,2,13,3,26,2,13,1,25,1,26,3,30,1,26,2,27,1,25,1,9,3,16,2,9,13,10,1,25,1,27,1,25,1,10,1,9,10,25,4,9,15,25,1,9,9,25,1,27,2,25,2,10,1,25,1,10,1,9,16,1,138,}, + {1,40,7,1,28,25,30,1,7,1,10,1,1,160,8,1,28,27,25,1,29,1,28,31,29,12,26,3,25,2,9,1,1,1120,9,1,26,2,29,2,26,3,13,1,26,6,13,4,26,1,30,1,26,6,25,1,9,4,16,3,9,12,10,1,25,2,10,1,9,11,10,1,25,3,9,6,10,1,9,15,10,2,25,1,27,3,25,2,10,1,25,1,10,1,9,15,16,1,1,136,}, + {1,38,7,1,28,23,29,1,7,1,10,1,1,162,8,1,29,1,28,26,25,1,28,17,29,1,28,14,29,1,28,3,29,8,30,1,26,1,13,1,25,2,9,1,1,1124,9,1,26,2,29,1,26,9,7,1,26,11,25,2,10,1,9,9,10,1,9,9,25,5,9,11,10,1,25,2,9,21,10,4,25,3,9,2,10,3,9,15,1,135,}, + {1,36,8,1,28,22,26,1,7,1,1,165,29,1,28,26,25,1,28,15,29,2,28,20,29,7,26,2,25,2,10,1,1,1129,9,1,26,3,29,1,26,3,13,3,26,3,30,2,26,10,25,1,10,1,9,4,16,2,9,12,10,1,25,1,27,3,25,2,9,10,10,1,25,2,10,1,9,21,10,1,9,9,10,1,9,14,1,134,}, + {1,34,10,1,28,20,29,1,7,1,10,1,1,166,8,1,28,26,25,1,28,15,29,2,28,19,29,7,30,1,26,1,13,1,25,2,9,1,1,1133,9,1,26,2,29,1,26,18,30,1,26,2,25,2,10,1,9,18,10,1,27,3,25,2,10,1,9,12,10,2,9,45,1,133,}, + {1,33,29,1,28,18,26,1,7,1,1,169,29,1,28,25,13,1,28,14,29,2,28,21,29,6,26,2,13,2,25,1,9,1,1,1137,9,1,26,7,13,1,26,4,30,3,26,1,13,2,26,1,30,1,26,2,27,2,25,1,10,1,9,5,16,1,9,13,10,1,25,1,27,1,25,2,10,1,9,59,1,132,}, + {1,31,29,1,28,16,29,1,7,1,8,1,1,170,26,1,28,25,26,1,28,14,29,3,28,20,29,6,26,3,13,1,9,1,1,1142,10,1,26,10,30,1,29,2,26,2,13,1,26,4,13,1,26,3,13,1,25,1,9,4,16,2,9,13,25,6,10,2,9,56,1,131,}, + {1,29,7,1,28,15,7,1,8,1,1,172,8,1,28,25,26,1,29,1,28,13,29,3,28,21,29,5,26,3,25,1,9,1,1,1146,10,1,26,9,30,3,26,11,25,2,10,1,9,4,16,2,9,13,10,1,25,6,9,13,10,1,9,32,10,1,9,10,1,129,}, + {1,27,8,1,28,13,26,1,7,1,1,175,29,1,28,24,26,1,29,1,28,13,29,3,28,22,29,3,30,1,26,2,13,1,25,1,1,1151,9,1,26,12,30,2,26,3,13,3,26,3,25,2,10,1,9,4,16,2,9,14,25,4,10,1,9,47,10,2,9,3,16,5,1,128,}, + {1,26,29,1,28,10,7,1,13,1,1,177,8,1,28,24,26,1,29,1,28,13,29,2,28,25,29,1,26,3,13,1,9,1,1,1155,25,1,26,11,30,1,26,3,13,1,25,2,13,1,26,3,25,3,10,1,9,3,16,3,9,16,10,4,9,50,16,5,1,127,}, + {1,25,28,8,7,2,1,179,8,1,29,1,28,23,30,1,29,1,28,13,29,2,28,24,29,2,26,3,25,1,9,1,1,1159,25,1,26,15,13,2,26,4,13,2,25,1,10,1,9,4,16,2,9,16,10,2,25,1,10,1,9,51,16,4,1,126,}, + {1,25,29,1,28,2,7,1,8,2,1,182,29,1,28,23,26,1,29,1,28,39,29,1,26,4,10,1,1,1164,25,1,26,23,25,1,10,1,9,4,16,1,9,17,10,3,9,35,10,1,9,4,10,1,9,10,16,1,12,1,16,1,12,1,1,125,}, + {1,211,8,1,28,23,29,2,28,13,29,1,28,24,29,2,26,4,9,1,1,1167,9,1,25,1,26,13,13,1,26,6,13,1,25,1,10,1,9,5,16,4,9,52,10,1,9,4,10,2,9,10,16,1,12,2,1,124,}, + {1,209,8,1,29,1,28,22,29,2,28,13,29,1,28,24,29,1,30,1,26,3,8,1,1,1172,9,1,25,1,26,18,13,1,25,2,10,2,9,4,16,3,12,1,16,2,9,37,12,1,9,12,10,1,25,1,10,1,9,14,16,1,12,2,16,1,1,122,}, + {1,208,30,1,28,22,29,1,28,39,29,1,30,2,26,2,1,1177,9,1,25,1,26,9,13,2,26,4,13,2,26,1,13,1,25,2,10,2,9,3,16,3,12,3,16,1,9,37,12,1,9,12,25,2,9,14,16,1,12,2,16,1,1,121,}, + {1,206,8,1,28,23,29,1,28,13,29,1,28,23,29,4,30,1,10,1,1,1181,9,1,25,1,26,7,13,2,26,7,27,1,25,4,10,1,9,4,16,1,12,4,16,1,9,10,16,1,9,27,12,2,9,10,10,1,25,1,10,1,9,14,16,1,12,1,16,1,1,120,}, + {1,205,29,1,28,22,29,1,28,37,29,4,13,1,1,1186,9,1,25,1,26,15,13,2,25,3,10,2,9,4,16,1,12,4,16,2,9,36,16,1,12,2,9,11,10,2,9,13,16,1,12,2,1,119,}, + {1,203,26,1,28,22,29,1,28,37,29,4,9,1,1,1190,9,1,10,1,26,15,25,6,10,1,9,4,16,3,12,3,16,2,9,5,16,4,9,27,12,2,9,25,16,1,12,2,1,118,}, + {1,201,8,1,28,22,29,1,28,36,29,4,8,1,1,1195,16,1,9,1,25,1,26,14,25,2,13,1,26,1,25,2,10,1,9,4,16,2,12,4,16,2,9,5,16,4,9,26,12,3,9,25,16,1,12,1,1,117,}, + {1,200,29,1,28,21,29,1,28,36,29,3,26,1,1,1201,9,1,25,2,26,9,30,2,26,1,13,1,25,1,13,2,25,4,9,4,16,2,12,4,16,1,9,6,16,1,9,29,16,1,12,2,9,7,10,1,9,16,16,1,12,1,1,116,}, + {1,198,26,1,28,21,29,1,28,36,29,3,9,1,1,1205,9,1,25,2,26,3,25,1,26,1,13,1,26,2,30,1,26,3,13,1,25,6,10,1,9,5,16,2,12,3,16,2,9,6,16,2,9,3,16,2,9,22,12,3,9,23,16,1,12,2,1,114,}, + {1,196,8,1,28,21,29,1,28,35,29,3,26,1,1,1210,9,1,25,2,26,3,25,1,13,2,26,3,30,2,26,2,13,1,25,4,10,1,9,6,16,1,12,3,16,2,9,6,16,2,9,3,16,2,9,24,12,3,9,22,16,1,12,1,1,113,}, + {1,195,29,1,28,20,29,1,28,35,29,2,30,1,9,1,1,1214,9,1,25,2,26,3,25,2,13,1,26,3,30,2,26,1,13,1,25,4,10,1,9,6,16,2,12,2,16,3,9,6,16,1,9,1,16,4,9,25,12,3,9,21,16,2,1,112,}, + {1,193,26,1,28,20,29,1,28,34,29,3,26,1,1,1219,9,1,25,2,26,2,25,3,13,1,25,1,26,4,13,1,25,2,10,3,9,8,16,1,12,2,16,3,9,7,16,1,9,29,12,2,9,22,16,1,1,111,}, + {1,191,8,1,28,21,29,1,28,33,29,3,10,1,1,1223,9,1,25,9,13,2,26,3,25,2,10,2,9,9,16,5,9,5,16,2,12,1,16,1,9,2,16,3,9,24,16,1,12,4,16,1,9,16,16,2,1,110,}, + {1,190,29,1,28,20,30,1,28,27,29,1,28,4,29,3,26,1,1,1228,9,2,25,9,26,2,13,1,25,3,10,1,9,9,16,5,9,6,16,1,12,1,16,7,9,25,12,2,9,6,10,1,9,11,16,2,1,109,}, + {1,188,8,1,28,20,26,1,28,32,29,3,25,1,1,1232,9,3,25,7,13,1,25,1,13,3,25,1,10,1,9,10,16,5,9,6,16,2,12,1,16,2,9,2,16,1,9,26,12,2,9,16,16,3,1,108,}, + {1,186,8,1,28,20,26,1,28,31,29,1,30,1,29,1,26,1,9,1,1,1236,16,1,9,2,25,9,13,2,25,1,10,1,9,12,16,4,9,8,16,1,12,2,16,2,12,1,16,1,9,25,12,2,9,13,16,5,1,107,}, + {1,185,29,1,28,19,26,1,28,31,29,1,30,2,13,1,1,1241,16,1,9,2,25,1,26,2,25,9,10,1,9,12,16,4,9,7,16,1,12,2,16,1,9,24,16,1,9,4,12,2,16,1,9,12,16,4,12,1,1,105,}, + {1,183,26,1,28,19,29,1,28,31,29,1,26,2,10,1,1,1245,16,1,9,1,25,1,26,2,25,11,10,1,9,12,16,2,9,7,16,1,12,3,9,30,12,2,9,13,16,4,1,104,}, + {1,181,8,1,28,19,29,1,28,26,29,2,28,2,29,1,30,1,26,1,13,1,9,1,1,1250,9,1,25,1,26,2,25,7,13,2,25,1,9,8,25,2,9,2,16,4,9,6,16,1,12,4,16,1,9,29,16,1,12,1,16,1,9,11,16,4,1,103,}, + {1,179,8,1,29,1,28,18,29,1,28,26,29,1,28,3,29,1,30,1,26,1,25,1,1,1255,9,1,25,1,26,1,25,7,13,2,25,1,10,2,9,4,10,1,13,1,25,1,10,1,9,3,16,1,12,1,16,2,9,7,16,1,12,2,16,5,9,25,16,1,12,3,9,10,16,3,1,103,}, + {1,178,29,1,28,18,29,1,28,26,29,1,28,2,29,2,26,2,10,1,1,1259,9,1,25,1,26,1,25,3,10,1,25,2,13,3,25,2,10,2,25,4,9,7,16,2,9,7,16,2,12,5,16,1,9,22,16,5,12,3,9,10,16,1,12,1,1,102,}, + {1,176,6,1,28,18,29,1,28,26,29,3,30,1,26,3,10,1,1,1262,9,2,26,2,25,1,9,3,25,5,13,2,25,3,9,4,25,3,10,1,9,1,16,3,9,7,16,2,15,1,12,3,16,2,9,24,16,1,9,1,16,2,12,2,9,9,16,1,12,1,1,101,}, + {1,174,8,1,28,47,29,1,26,4,1,1267,9,2,25,2,9,5,10,1,25,1,26,4,25,1,9,4,25,1,13,1,26,1,25,2,10,1,9,1,16,2,9,9,12,4,16,1,9,2,16,1,9,25,16,1,12,3,16,1,9,8,16,1,1,100,}, + {1,172,8,1,28,19,29,1,28,25,29,2,26,4,8,1,1,1271,9,8,25,1,13,1,30,1,28,1,29,1,10,1,9,2,25,1,10,1,9,1,25,6,9,2,16,2,9,9,16,2,12,2,16,4,9,26,16,1,12,2,16,1,9,8,16,1,1,98,}, + {1,171,29,1,28,18,29,1,28,25,29,2,26,4,8,1,1,1275,9,6,25,2,26,1,30,1,28,1,29,1,25,1,13,1,26,2,25,8,10,1,9,1,16,2,9,10,16,2,12,6,9,26,16,1,12,2,16,1,9,8,1,97,}, + {1,169,8,1,28,18,30,1,28,24,29,2,26,2,30,2,26,1,9,1,1,1279,9,5,25,1,13,1,26,1,13,3,30,1,28,1,29,1,26,2,25,8,9,3,16,2,9,10,16,1,12,5,9,3,12,2,9,23,12,2,16,1,9,7,1,96,}, + {1,167,8,1,28,18,30,1,28,24,29,1,30,1,26,2,30,1,29,1,7,1,1,1284,9,2,25,3,26,1,25,1,9,1,25,1,26,1,28,3,29,1,26,1,25,9,9,2,16,1,9,12,16,1,15,1,12,3,16,1,9,1,16,1,12,1,16,1,9,24,12,2,16,1,9,6,1,95,}, + {1,166,29,1,28,17,30,1,28,23,29,2,26,3,30,2,8,1,1,1287,16,1,9,1,25,2,9,3,25,2,26,2,29,1,28,2,30,1,13,1,25,8,10,1,9,1,16,1,9,13,16,2,12,2,9,2,16,2,9,25,16,1,12,2,9,6,1,94,}, + {1,164,26,1,28,17,26,1,28,23,29,2,26,3,30,1,26,1,9,1,1,1292,9,5,25,4,26,1,29,1,28,1,29,1,30,1,13,1,25,4,13,2,25,2,9,2,16,1,9,13,16,1,12,1,16,5,9,26,16,1,12,1,16,1,9,5,1,93,}, + {1,162,8,1,28,17,29,1,28,23,29,1,26,4,30,1,8,1,1,1297,16,1,9,1,25,1,10,1,9,2,10,1,25,2,13,1,29,1,28,1,29,1,26,1,13,1,26,3,13,1,25,3,9,18,16,1,9,30,16,1,12,2,16,1,9,5,1,91,}, + {1,161,29,1,28,16,29,1,28,22,29,2,26,3,30,1,26,1,10,1,1,1301,16,1,9,1,25,1,10,1,9,3,10,1,25,1,26,1,29,2,26,6,25,4,9,19,16,3,9,27,16,1,12,1,16,1,9,5,1,90,}, + {1,159,26,1,28,17,29,1,28,21,29,2,26,5,1,1307,9,2,25,1,9,2,25,3,26,1,30,1,29,1,30,1,26,3,25,1,26,3,25,2,9,2,16,1,9,16,16,2,9,28,16,2,9,5,1,89,}, + {1,157,8,1,28,17,29,1,28,21,29,2,26,2,30,1,26,1,10,1,1,1311,16,1,9,1,25,2,10,1,25,3,13,1,29,2,26,2,25,1,26,4,25,2,10,1,9,2,16,2,9,15,16,1,9,35,1,88,}, + {1,155,8,1,28,17,29,1,28,21,29,2,26,2,30,1,26,1,9,1,1,1315,16,1,9,1,25,2,9,1,10,2,25,1,26,1,29,1,30,1,26,1,25,1,10,1,25,6,10,1,9,2,16,2,9,50,1,87,}, + {1,154,29,1,28,16,29,1,28,21,29,2,26,4,9,1,1,1319,16,1,9,1,25,1,9,2,25,3,26,1,30,1,26,2,10,2,25,6,9,2,16,2,9,48,10,1,9,1,1,86,}, + {1,152,7,1,28,16,29,1,28,21,29,1,30,1,26,3,25,1,1,1324,16,1,9,1,25,1,9,2,25,3,26,1,29,1,26,1,25,4,10,2,25,1,10,1,9,3,16,1,9,48,10,1,9,1,1,85,}, + {1,150,7,1,28,16,29,1,28,21,29,1,30,1,26,3,8,1,1,1329,9,3,10,1,25,2,26,2,29,1,26,2,25,1,10,4,25,1,10,2,9,21,16,1,9,12,10,1,9,16,25,1,1,84,}, + {1,149,28,37,29,2,26,4,10,1,1,1333,9,1,25,1,9,1,25,2,26,2,30,1,29,1,26,1,25,9,9,2,16,1,9,17,16,1,9,29,10,1,1,83,}, + {1,147,7,1,28,35,29,3,26,4,1,1338,9,3,25,2,27,1,26,1,30,1,29,1,26,1,25,8,10,1,9,50,1,82,}, + {1,145,7,1,28,34,29,4,26,3,8,1,1,1342,9,3,25,3,26,1,29,2,26,1,25,8,9,50,1,81,}, + {1,144,28,16,29,1,28,19,29,2,26,3,10,1,1,1345,12,1,9,3,25,2,26,2,29,2,26,1,27,1,25,7,9,49,1,80,}, + {1,142,29,1,28,15,29,1,28,18,29,2,26,4,9,1,1,1349,16,1,9,3,25,1,27,1,26,1,30,1,29,2,26,1,25,7,10,1,9,48,1,79,}, + {1,140,7,1,28,15,30,1,28,19,29,1,26,3,13,1,1,1354,16,1,9,2,10,1,25,1,26,1,30,1,29,2,30,1,26,1,25,2,10,1,25,4,10,1,9,35,10,1,9,11,1,78,}, + {1,139,28,15,29,1,28,11,29,2,28,5,29,2,26,1,30,1,26,1,25,1,1,1358,16,1,9,2,10,1,26,3,29,2,26,1,25,1,10,1,25,1,26,2,27,1,25,2,9,3,16,1,9,31,10,2,9,10,1,77,}, + {1,137,29,1,28,14,29,1,28,11,29,2,28,4,29,2,26,2,30,2,10,1,1,1362,16,1,9,2,25,1,26,2,29,3,26,1,25,7,10,1,9,3,16,2,9,42,1,75,}, + {1,135,7,1,28,14,29,1,28,16,29,3,26,2,29,1,13,1,1,1367,16,1,9,1,25,1,26,4,29,2,26,1,25,2,10,2,25,3,9,3,16,4,9,39,1,75,}, + {1,134,28,14,29,1,28,17,29,2,26,2,30,1,13,1,1,1371,16,1,9,1,25,1,26,1,25,1,26,2,29,2,26,1,25,1,9,2,10,1,25,2,10,1,9,2,16,1,12,1,16,3,9,39,1,73,}, + {1,132,28,33,29,3,26,1,10,1,1,1375,16,1,9,1,25,3,26,1,29,2,26,1,27,1,25,2,10,1,25,3,9,3,16,4,9,39,1,72,}, + {1,130,7,1,28,13,29,1,28,18,29,3,26,1,1,1380,9,2,25,2,26,3,29,2,26,1,25,2,9,1,25,2,10,1,9,3,16,4,9,32,16,1,9,5,1,71,}, + {1,128,7,1,28,32,29,2,30,1,8,1,1,1385,9,1,25,2,27,1,26,1,29,3,27,1,25,2,10,3,9,4,16,5,9,30,16,2,9,4,1,70,}, + {1,127,28,14,29,1,28,17,29,2,26,1,10,1,1,1389,9,1,25,2,26,2,30,1,29,1,30,1,27,1,25,1,9,7,16,6,9,29,16,3,9,3,1,69,}, + {1,125,6,1,28,13,30,1,28,17,29,1,26,2,10,1,1,1393,9,1,25,2,26,2,30,1,29,1,26,1,25,1,9,8,16,6,9,29,16,3,9,2,1,68,}, + {1,123,6,1,28,13,29,1,28,17,29,1,26,1,13,1,1,1397,9,2,25,3,26,3,27,1,10,1,9,7,16,6,9,29,16,3,9,2,1,67,}, + {1,122,28,13,29,1,28,17,29,1,26,1,13,1,1,1401,9,2,25,4,26,1,30,1,27,1,10,1,9,7,16,1,12,2,16,2,9,30,16,3,9,1,1,66,}, + {1,120,7,1,28,12,29,2,28,16,29,1,26,1,8,1,1,1406,9,1,25,1,9,1,25,2,26,2,25,1,9,8,16,1,12,2,16,3,9,16,16,1,9,11,16,3,9,1,1,65,}, + {1,118,6,1,28,29,29,1,26,2,9,1,1,1410,9,1,25,4,27,1,26,1,25,1,9,3,10,1,9,3,16,2,12,2,16,3,9,27,16,3,9,1,1,64,}, + {1,117,28,13,29,1,28,15,29,1,26,1,8,1,1,1415,9,1,25,5,26,1,25,1,9,3,25,1,9,3,16,2,12,2,16,2,9,16,16,3,9,8,16,4,1,63,}, + {1,115,30,1,28,12,29,1,28,15,29,1,26,1,8,1,1,1419,9,1,25,5,26,1,25,1,9,2,10,1,9,4,16,1,12,3,16,2,9,16,16,4,9,10,1,62,}, + {1,113,7,1,28,12,29,1,28,15,29,1,26,1,8,1,1,1423,9,1,25,2,9,2,25,1,26,1,25,1,9,7,16,1,12,3,16,3,9,14,16,7,9,7,1,61,}, + {1,112,28,12,29,1,28,15,29,1,30,1,9,1,1,1428,9,4,25,1,26,1,25,1,9,6,16,2,12,4,16,2,9,13,16,8,9,6,1,60,}, + {1,110,30,1,28,11,29,1,28,15,29,2,1,1433,9,4,10,1,26,1,25,1,9,1,10,1,9,4,16,1,12,5,16,1,9,6,16,5,9,2,16,9,9,3,16,1,9,1,1,59,}, + {1,108,7,1,28,27,29,1,13,1,1,1437,16,1,9,3,25,1,26,1,25,1,9,6,16,1,12,3,16,2,9,5,16,6,9,4,16,8,9,1,16,2,9,1,1,58,}, + {1,107,28,26,29,1,30,1,8,1,1,1441,15,1,9,3,27,1,26,1,25,1,9,5,16,2,12,3,16,2,9,1,16,4,9,2,16,4,9,6,16,1,12,2,16,6,1,57,}, + {1,105,29,1,28,25,29,1,30,1,9,1,1,1445,16,1,9,2,10,1,26,2,25,1,9,5,16,2,12,3,16,4,9,3,16,5,9,6,16,9,1,56,}, + {1,103,7,1,28,25,29,1,26,1,1,1450,16,1,9,2,10,1,26,2,25,1,9,5,16,2,12,2,16,13,9,4,16,7,12,1,16,2,1,55,}, + {1,102,28,25,29,1,25,1,1,1454,16,1,9,2,25,1,26,2,25,1,9,6,16,1,12,3,16,6,12,3,16,8,12,2,16,2,12,4,1,54,}, + {1,100,29,1,28,24,29,1,10,1,1,1458,16,1,9,2,10,1,26,2,25,1,9,5,16,2,12,2,16,6,12,3,16,2,9,1,16,5,12,8,1,53,}, + {1,98,6,1,28,24,29,1,10,1,1,1462,16,1,9,2,10,1,26,2,25,1,9,5,16,2,12,1,16,2,12,1,16,2,12,3,16,3,9,2,16,4,12,2,16,1,12,5,1,52,}, + {1,97,28,24,26,1,9,1,1,1467,9,2,10,1,26,2,25,1,9,5,16,2,12,7,16,5,9,2,16,6,12,5,1,51,}, + {1,95,29,1,28,23,26,1,9,1,1,1471,9,2,10,1,26,1,30,1,25,1,9,6,16,1,12,6,16,6,9,1,16,6,12,5,1,50,}, + {1,93,6,1,28,20,29,1,28,1,29,1,26,1,9,1,1,1474,16,1,9,2,10,1,26,1,30,1,25,1,9,6,16,1,15,1,12,5,16,11,12,6,1,49,}, + {1,91,6,1,28,22,29,1,26,1,1,1479,9,4,25,1,30,1,25,1,9,5,16,2,12,10,16,5,12,7,1,48,}, + {1,90,28,22,29,1,26,1,1,1483,9,4,25,1,26,1,25,1,9,6,16,1,12,5,16,2,12,2,16,2,12,10,1,47,}, + {1,88,6,1,28,21,29,1,26,1,1,1488,9,3,25,1,26,1,25,1,9,6,16,1,12,4,16,2,12,3,16,1,12,10,1,46,}, + {1,86,7,1,28,21,29,1,26,1,1,1492,9,3,25,1,30,1,25,1,9,5,16,1,12,1,15,1,12,7,16,1,12,10,1,45,}, + {1,85,28,22,26,1,1,1496,9,3,26,1,30,1,10,1,9,1,16,2,9,1,16,2,15,1,12,18,1,44,}, + {1,83,7,1,28,20,29,1,7,1,1,1500,16,1,9,2,25,2,9,2,16,1,9,3,16,1,12,7,15,2,12,8,17,1,1,43,}, + {1,82,28,20,29,1,25,1,1,1504,16,1,9,9,16,2,12,6,15,1,12,10,1,42,}, + {1,80,30,1,28,19,29,1,10,1,1,1507,12,1,16,1,9,3,27,1,25,1,9,4,16,2,12,4,15,1,12,11,1,41,}, + {1,78,7,1,28,19,30,1,9,1,1,1511,16,1,9,3,7,1,29,1,25,1,9,3,16,3,12,14,17,1,1,40,}, + {1,77,28,19,26,1,1,1516,16,2,9,2,7,1,6,1,8,1,9,2,16,4,12,14,1,39,}, + {1,75,7,1,28,18,26,1,1,1520,15,1,16,1,9,2,10,1,7,2,9,4,16,1,12,14,1,38,}, + {1,74,28,18,25,1,1,1524,9,1,16,2,9,2,30,1,26,1,10,1,9,3,16,1,12,13,1,37,}, + {1,72,30,1,28,16,29,1,10,1,1,1529,9,4,27,1,29,1,25,1,9,3,16,1,12,12,1,36,}, + {1,70,7,1,28,14,29,1,28,1,30,1,9,1,1,1534,9,3,25,1,29,1,26,1,25,1,9,2,16,1,12,11,1,35,}, + {1,69,29,1,28,13,29,2,26,1,1,1540,9,2,27,1,29,1,30,1,10,1,9,2,16,1,15,1,12,7,17,1,12,1,1,34,}, + {1,67,8,1,28,13,29,2,26,1,1,1545,9,1,25,1,30,1,29,1,25,1,9,2,16,1,12,6,17,3,1,33,}, + {1,66,29,1,28,11,29,3,13,1,1,1549,9,1,10,1,25,1,29,1,26,1,9,2,16,1,12,5,17,2,1,33,}, + {1,64,8,1,28,11,29,3,13,1,1,1554,9,1,10,1,30,2,10,1,9,1,16,1,12,4,17,2,1,32,}, + {1,63,29,1,28,10,29,3,25,1,1,1559,10,1,27,1,29,1,25,1,9,1,16,1,12,3,17,1,11,1,1,31,}, + {1,61,10,1,28,10,29,3,25,1,1,1563,9,1,10,1,26,1,29,1,10,1,9,1,16,1,12,1,11,1,17,1,1,30,}, + {1,60,30,1,28,9,29,2,30,1,10,1,1,1568,10,1,25,1,27,1,25,1,9,1,12,1,17,1,11,1,1,29,}, + {1,58,10,1,28,9,29,2,26,1,1,1575,9,2,16,1,12,1,1,29,}, + {1,57,7,1,28,8,29,2,26,1,1,1610,}, + {1,56,7,1,28,7,29,2,8,1,1,1612,}, + {1,56,28,5,29,1,26,1,10,1,9,1,1,1614,}, + {1,57,8,1,10,1,1,1620,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, + {1,1679,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino5.lua b/map_gen/data/presets/dino5.lua new file mode 100644 index 00000000..05d687d6 --- /dev/null +++ b/map_gen/data/presets/dino5.lua @@ -0,0 +1,607 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 600, +width = 664, +data = { + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,181,28,3,1,480,}, + {1,180,28,4,1,480,}, + {1,179,28,5,1,480,}, + {1,241,28,2,1,421,}, + {1,241,28,2,1,421,}, + {1,241,28,2,1,12,28,1,1,408,}, + {1,241,28,2,1,3,28,6,1,2,28,5,1,405,}, + {1,241,28,2,1,1,28,3,29,1,10,1,9,2,7,1,28,9,1,30,28,2,1,371,}, + {1,243,28,2,8,1,11,1,1,6,11,1,7,1,28,5,1,31,28,2,1,371,}, + {1,242,28,2,17,1,1,10,11,1,7,1,28,4,1,28,28,6,1,369,}, + {1,240,28,3,11,1,1,13,11,1,29,1,28,2,1,4,28,2,1,19,28,9,1,1,28,2,1,366,}, + {1,240,28,2,11,1,1,16,9,1,28,3,1,2,28,2,1,18,28,9,1,2,28,2,1,366,}, + {1,239,28,2,9,1,1,18,11,1,28,2,1,1,28,5,1,14,28,8,29,2,28,6,1,365,}, + {1,239,28,2,1,7,14,1,16,1,14,2,1,9,11,1,6,1,28,6,1,8,28,1,1,1,28,2,1,1,28,6,9,1,11,1,1,4,11,1,27,1,28,4,1,364,}, + {1,236,28,1,1,2,28,1,16,1,1,6,13,1,30,4,13,1,14,1,1,9,9,1,28,7,1,6,28,1,1,1,28,7,30,1,11,1,1,6,11,2,12,1,28,3,1,364,}, + {1,208,28,2,1,1,28,2,1,2,28,3,1,16,28,3,1,1,28,2,1,6,14,1,30,7,13,1,14,1,1,8,16,1,28,6,1,3,28,2,1,4,28,5,6,1,1,8,11,1,1,2,11,1,6,1,28,4,1,361,}, + {1,207,28,3,1,1,28,2,1,1,28,4,1,16,28,2,1,1,28,2,8,1,1,5,11,1,30,6,13,1,30,1,28,1,30,1,15,1,1,8,17,1,28,5,1,3,28,2,1,4,28,5,1,14,29,1,28,1,1,1,28,1,1,361,}, + {1,207,28,11,1,19,28,2,11,1,1,5,16,1,30,8,28,1,30,2,13,1,1,8,11,1,28,3,1,3,28,3,1,3,28,2,1,1,28,2,11,1,1,14,11,1,28,2,1,362,}, + {1,202,28,1,1,3,28,3,29,1,8,1,9,2,7,1,28,4,1,5,28,3,1,9,28,4,1,6,13,1,30,8,28,1,30,3,13,1,14,1,1,7,11,1,28,8,1,4,28,1,1,1,28,1,10,1,1,6,14,1,15,1,14,1,1,7,11,1,28,2,1,1,28,2,1,358,}, + {1,202,28,5,16,1,1,7,11,1,9,1,28,4,1,2,28,2,1,10,28,3,29,1,1,5,14,1,30,9,28,1,30,5,15,1,1,7,11,1,28,7,1,4,28,3,11,1,1,5,14,1,30,1,28,2,30,1,14,1,1,6,9,1,28,1,1,1,28,2,1,358,}, + {1,201,28,4,9,1,1,11,11,1,8,1,28,3,1,8,28,2,1,3,28,3,9,1,1,5,14,1,30,9,28,1,30,1,13,2,30,3,14,1,1,7,11,1,28,5,1,6,28,1,10,1,1,5,11,1,30,1,28,5,14,1,1,6,29,1,28,1,1,360,}, + {1,199,28,1,1,2,28,2,12,1,1,14,11,1,7,1,28,2,1,7,28,3,1,3,28,2,12,1,1,5,14,1,9,2,14,15,1,8,11,1,29,1,28,7,1,2,28,1,11,2,1,4,13,1,28,6,30,1,1,6,11,1,28,2,1,359,}, + {1,198,28,5,17,1,1,17,16,1,28,14,29,1,8,1,1,34,11,1,17,1,9,1,7,1,29,1,28,4,8,1,1,5,14,1,28,8,15,1,1,6,10,1,28,4,1,356,}, + {1,198,28,4,16,1,1,19,11,1,28,6,29,1,8,1,16,1,17,1,11,1,1,44,11,1,9,2,11,1,1,1,11,1,1,3,13,1,28,8,30,1,14,1,1,5,11,1,28,4,1,356,}, + {1,198,28,3,10,1,1,7,14,1,13,1,29,1,30,1,13,1,14,1,1,2,11,1,1,5,11,1,10,1,9,1,11,2,1,51,17,1,11,1,1,2,12,1,11,1,1,2,13,1,28,9,13,1,11,1,1,5,9,1,28,3,1,356,}, + {1,197,28,3,29,1,1,7,13,1,28,5,29,1,13,1,11,1,1,61,11,2,1,3,11,1,1,4,14,1,15,1,30,1,29,1,28,4,30,1,28,1,15,1,1,6,28,4,1,355,}, + {1,197,28,3,11,1,1,6,9,1,28,5,30,1,13,1,9,1,11,1,1,7,11,2,1,9,11,2,1,41,11,1,1,12,11,1,15,1,30,2,28,1,30,1,28,1,30,1,1,6,9,1,28,3,1,355,}, + {1,196,28,3,8,1,1,6,15,1,28,3,13,2,14,1,1,4,11,1,1,6,11,1,1,10,11,1,12,1,1,43,11,2,1,12,11,1,14,1,13,2,28,1,16,1,1,5,11,1,28,3,1,355,}, + {1,195,28,4,11,1,1,6,9,2,14,1,11,1,1,13,11,2,1,54,11,1,15,2,1,16,14,1,16,1,1,6,7,1,28,3,1,1,28,1,1,352,}, + {1,194,28,4,9,1,1,25,11,1,1,55,9,2,1,24,11,1,28,8,1,349,}, + {1,193,28,5,11,1,1,25,11,1,1,9,11,1,1,20,11,11,1,14,15,1,9,1,1,25,29,1,28,7,1,349,}, + {1,192,28,5,16,1,1,36,11,1,1,1,11,1,14,25,33,1,14,2,33,1,14,1,33,1,14,7,11,1,1,31,12,1,28,6,1,1,28,2,1,347,}, + {1,190,28,4,7,1,11,1,1,19,11,1,1,7,11,2,1,5,14,3,13,2,16,1,30,1,13,2,14,1,13,1,33,1,14,3,33,1,14,12,5,1,14,3,33,3,14,1,33,1,13,1,14,4,33,2,13,3,30,2,9,1,15,1,14,1,1,26,9,1,28,8,1,20,28,3,1,324,}, + {1,182,28,4,1,1,28,4,6,1,12,1,1,22,11,1,1,7,11,2,14,1,13,1,14,2,13,1,30,3,28,2,13,1,30,1,13,2,14,1,13,1,33,1,14,16,5,1,14,3,33,3,14,1,5,2,14,6,30,4,28,3,30,1,14,3,11,1,1,2,11,1,1,21,9,1,28,8,1,17,28,13,1,315,}, + {1,182,28,7,16,1,11,1,1,29,11,1,14,2,13,2,30,1,28,1,13,1,30,3,13,1,30,1,28,2,13,1,30,1,13,3,33,1,14,4,5,1,14,16,33,1,14,10,13,1,30,1,13,1,30,1,28,4,30,2,28,3,30,1,13,1,14,1,1,23,9,1,28,7,1,14,28,5,29,1,6,1,8,1,9,2,6,1,28,4,1,315,}, + {1,182,28,4,7,1,11,1,1,28,14,4,13,2,30,4,28,1,13,1,30,1,13,1,30,4,28,1,30,1,13,3,33,1,14,2,5,1,14,1,5,2,14,15,33,2,14,2,33,1,14,3,33,1,14,1,5,2,33,1,13,2,28,3,30,1,28,1,30,2,28,5,30,1,9,1,14,1,11,1,1,22,16,1,28,5,1,11,28,5,8,1,17,1,1,8,11,1,6,1,28,3,1,313,}, + {1,169,28,2,1,10,28,3,16,1,1,27,11,1,14,1,13,2,14,1,33,1,13,2,30,1,13,1,30,2,28,1,13,1,30,1,13,3,30,1,28,1,30,1,13,1,30,2,13,3,14,1,33,2,14,20,33,1,14,2,33,1,14,5,5,1,14,3,13,1,28,2,30,1,13,1,28,1,30,2,28,5,30,1,13,2,14,3,1,22,16,1,28,3,1,11,28,3,16,1,1,13,17,1,28,4,1,311,}, + {1,168,28,6,1,3,28,4,6,1,11,1,1,26,14,4,13,1,30,2,14,1,33,1,13,2,30,3,28,2,30,3,13,1,30,1,28,2,30,2,13,1,30,1,13,1,30,2,14,1,33,2,14,20,33,1,14,10,13,1,33,1,14,1,30,1,28,1,30,1,13,1,28,2,30,1,28,5,30,2,13,1,33,1,13,1,33,1,14,3,1,21,9,1,28,4,1,1,28,8,9,1,1,16,11,1,28,5,1,309,}, + {1,168,28,2,1,1,28,3,1,1,28,4,8,1,11,1,1,24,14,6,33,2,14,1,13,1,30,1,13,1,33,1,13,2,30,2,28,2,30,2,13,1,30,1,13,1,30,1,28,2,30,1,13,2,30,2,13,2,14,1,33,1,14,7,5,1,14,16,33,1,14,5,5,1,14,1,13,3,30,1,28,2,30,1,28,3,30,1,28,4,30,1,28,1,13,1,14,1,13,2,14,2,5,2,14,1,11,1,1,19,11,1,10,1,28,2,1,1,28,6,8,1,11,1,1,18,11,1,28,3,1,1,28,2,1,307,}, + {1,167,28,4,1,3,28,3,9,1,1,24,14,2,33,4,14,3,33,2,14,1,13,1,30,1,33,1,14,1,13,2,30,2,28,2,30,2,13,1,30,1,13,1,28,1,30,3,13,1,30,1,28,2,13,1,14,10,5,1,14,13,33,2,14,1,33,1,14,9,13,1,28,4,30,2,28,6,30,1,13,2,30,1,13,4,33,1,5,1,33,1,14,3,1,19,11,1,6,1,28,6,17,1,1,21,17,1,28,2,1,1,28,3,1,306,}, + {1,167,28,8,16,1,1,23,14,3,13,1,6,1,14,4,33,1,14,5,13,1,30,1,33,1,13,2,30,2,13,2,30,3,13,1,30,1,13,1,30,1,13,1,30,1,13,2,28,2,30,1,14,1,13,1,33,1,14,21,33,2,13,1,14,1,33,1,14,1,5,1,14,7,30,1,28,2,30,1,28,1,30,1,28,2,30,1,28,4,30,1,13,5,14,1,33,1,14,1,13,1,14,2,33,1,14,3,1,19,16,1,28,3,7,1,1,11,14,1,16,1,9,1,13,1,9,1,15,1,1,7,8,1,28,1,1,1,28,3,1,306,}, + {1,168,28,5,12,1,1,22,11,1,14,1,5,1,14,3,13,1,6,1,14,3,33,2,14,1,33,2,14,1,33,1,13,4,30,1,28,1,30,8,13,1,30,2,28,1,13,2,30,1,28,1,30,1,14,1,6,1,13,1,14,21,33,1,14,1,13,2,14,1,33,1,14,1,5,1,14,3,13,2,14,1,30,1,28,1,30,2,28,4,30,1,28,3,30,1,13,2,30,1,13,2,33,1,14,3,30,1,13,1,14,7,1,19,9,1,16,1,1,10,14,1,13,1,30,1,28,5,13,1,11,1,1,5,11,1,28,1,1,2,28,1,1,307,}, + {1,163,28,1,1,3,28,3,29,1,12,1,1,22,14,3,33,2,14,1,33,1,14,1,33,2,14,1,5,1,14,6,33,1,6,1,13,1,30,1,13,1,30,1,28,2,13,1,30,1,28,2,30,6,28,1,30,1,13,1,30,2,28,1,13,2,30,1,13,1,14,23,13,1,30,1,13,1,33,1,14,1,5,1,14,3,6,2,14,1,30,1,28,1,30,2,28,2,30,1,28,5,30,1,13,2,30,3,13,1,14,2,13,1,28,1,13,1,14,5,33,1,5,2,14,2,1,26,14,1,13,1,30,1,28,8,13,1,1,6,8,1,28,1,1,309,}, + {1,162,28,6,29,1,12,1,1,20,14,4,5,1,14,10,5,2,14,5,13,2,30,1,28,1,13,1,30,1,28,2,13,1,30,2,28,1,13,4,30,1,28,2,13,3,30,1,28,1,30,1,13,1,6,1,13,2,14,20,33,1,14,1,13,1,30,1,14,5,5,1,14,4,13,1,28,2,30,1,28,2,30,1,28,2,30,3,13,2,30,1,28,1,30,1,13,2,33,1,14,2,30,1,13,1,14,8,33,1,5,1,14,1,11,1,1,22,14,1,30,1,28,1,30,2,28,9,9,1,1,5,11,1,28,1,1,309,}, + {1,160,28,7,12,1,1,20,11,1,14,1,6,1,13,1,14,5,33,1,14,14,13,2,30,4,28,2,30,1,28,1,13,1,28,1,13,1,14,1,13,3,30,5,28,1,30,3,13,3,14,17,33,2,14,1,33,1,14,2,30,1,14,5,5,2,14,1,33,1,14,1,13,1,28,2,30,1,28,2,30,1,28,1,30,3,13,2,30,1,28,2,30,1,13,2,6,1,13,2,30,1,13,1,14,10,5,2,14,1,1,20,9,1,30,1,28,2,30,2,28,9,30,1,1,6,29,1,28,1,1,308,}, + {1,158,28,7,16,1,1,20,14,1,13,1,14,2,33,1,14,4,13,1,33,1,14,2,33,2,14,5,33,1,14,4,33,1,13,1,30,1,13,1,30,7,13,2,30,1,13,1,30,2,13,2,30,3,28,2,13,1,30,1,28,1,30,1,13,2,14,2,5,1,14,14,33,4,14,2,13,1,33,1,14,4,5,1,14,1,13,4,30,1,28,1,30,1,28,2,30,1,28,2,30,2,13,2,30,1,28,1,30,2,13,1,30,2,13,2,28,1,30,1,14,8,5,1,14,3,5,1,14,2,1,17,11,1,13,1,30,1,28,3,30,2,28,6,30,1,28,2,14,1,1,5,10,1,28,1,1,308,}, + {1,156,28,7,10,1,11,1,1,19,14,2,33,2,14,6,33,2,14,3,33,1,14,6,33,1,14,1,33,1,14,2,33,1,13,1,30,1,13,1,30,1,28,4,30,1,13,1,30,1,13,1,30,1,28,2,30,1,13,2,30,2,28,3,30,1,13,1,30,1,28,1,13,3,14,19,33,1,14,4,33,2,5,1,14,3,13,2,14,1,13,2,28,7,13,1,14,1,13,3,28,1,30,1,13,2,30,1,13,1,30,1,13,1,30,1,13,1,14,7,5,1,14,5,5,2,14,2,1,16,11,1,13,1,28,3,30,2,28,3,30,1,28,3,30,2,13,1,1,5,12,1,28,1,1,308,}, + {1,152,28,2,1,1,28,7,15,1,1,19,14,4,33,2,14,4,33,1,14,1,33,1,14,4,5,1,14,4,33,1,14,1,33,1,14,1,33,1,14,1,33,1,14,2,13,2,30,1,28,5,30,1,28,1,30,6,14,1,13,1,30,2,28,3,30,1,13,1,30,1,13,3,14,17,33,4,14,2,33,3,14,4,33,2,13,2,30,1,28,2,30,2,28,3,13,1,33,1,13,3,28,1,30,4,13,4,14,2,5,1,14,2,33,1,14,2,5,1,14,6,5,1,14,1,5,1,14,2,1,16,14,1,30,4,28,3,30,1,28,2,30,4,1,5,11,1,28,1,1,308,}, + {1,152,28,8,9,1,15,1,11,1,1,16,14,5,33,1,14,1,33,2,14,3,6,2,14,8,5,1,14,2,33,1,14,5,33,1,13,1,14,1,13,2,30,1,28,5,13,1,28,1,30,1,13,3,30,2,14,1,13,1,30,1,28,5,13,4,14,25,33,1,14,2,5,1,14,2,33,2,13,1,30,1,28,1,30,1,28,2,30,1,28,1,30,1,28,1,13,5,28,1,30,2,13,1,30,1,13,1,14,1,30,2,13,2,14,14,5,3,14,3,1,15,14,1,13,1,28,1,30,1,28,3,30,1,28,3,30,1,28,1,30,1,11,1,1,4,11,1,28,1,1,1,28,1,1,306,}, + {1,153,28,5,27,1,11,1,13,1,28,1,15,1,1,14,14,2,5,1,33,1,5,1,14,2,33,4,14,3,6,1,14,9,5,1,33,1,14,1,33,1,14,6,13,3,30,1,28,6,13,1,28,1,30,1,13,3,30,1,13,3,30,1,28,5,30,1,13,1,14,1,13,1,14,16,5,2,14,1,33,1,13,1,5,1,33,1,14,10,13,1,30,1,13,3,30,1,28,2,13,1,30,2,13,1,30,1,13,1,14,1,30,5,13,2,30,3,13,1,14,3,33,2,14,9,5,1,14,6,1,15,11,1,13,1,30,1,28,1,30,1,28,6,30,2,14,1,1,5,28,1,1,308,}, + {1,153,28,3,6,1,11,1,14,1,33,1,30,1,28,1,9,1,1,12,14,2,5,1,14,1,5,1,33,2,14,2,13,2,14,5,13,1,33,1,14,8,5,2,14,2,13,2,33,1,14,3,33,1,13,1,30,1,13,1,28,5,30,1,13,1,30,2,13,1,30,1,13,1,30,1,13,1,30,1,13,1,30,1,28,5,30,2,13,1,14,20,13,2,5,2,14,1,5,1,33,1,5,1,33,1,14,13,11,1,14,7,13,2,30,1,13,1,30,4,13,1,30,1,13,2,14,2,33,1,14,2,5,1,14,11,33,1,5,1,14,2,1,15,14,1,30,2,28,3,30,3,28,1,30,1,11,1,1,4,11,1,28,1,1,308,}, + {1,149,28,3,1,1,28,2,12,1,1,3,14,1,16,1,26,1,11,1,1,10,14,3,33,1,14,4,13,1,14,2,33,2,14,6,33,1,14,1,5,1,14,10,6,1,13,2,14,1,33,2,14,1,13,1,28,1,13,1,30,1,28,3,30,1,13,2,30,2,13,1,30,1,13,3,30,1,13,1,30,1,28,5,30,2,13,1,14,20,13,1,14,2,33,1,14,4,11,1,1,8,11,1,1,12,11,1,14,3,13,2,30,2,13,1,28,1,30,1,13,1,5,1,14,4,5,1,14,11,33,3,14,2,1,15,14,1,30,1,28,4,30,2,28,1,30,1,1,5,11,1,28,1,1,308,}, + {1,146,28,7,7,1,1,5,11,1,15,2,1,9,11,1,14,2,5,1,14,6,33,1,14,1,33,1,14,1,13,1,14,5,33,2,14,12,30,1,13,1,14,2,13,1,14,1,13,2,30,1,13,2,30,1,28,3,13,1,30,3,13,1,6,1,13,5,30,1,28,1,30,1,28,1,30,2,28,1,30,1,13,1,33,1,13,1,14,16,33,1,14,4,33,1,14,1,1,12,11,1,1,13,11,1,1,2,11,1,14,1,13,2,30,3,13,1,33,1,14,3,5,1,14,8,33,1,14,3,13,2,14,1,33,1,5,1,14,2,1,14,11,1,13,1,28,4,30,1,28,1,13,1,1,5,12,1,28,1,1,308,}, + {1,144,28,8,17,1,1,5,11,2,9,2,1,8,14,1,5,1,14,4,33,1,14,2,13,1,14,3,13,1,14,1,13,1,33,1,14,4,33,1,14,13,13,3,14,1,6,1,13,4,30,1,13,1,30,1,28,2,30,1,13,1,30,1,28,1,30,1,13,2,33,1,13,2,33,1,30,1,28,4,30,2,28,2,13,3,14,16,33,1,14,4,1,33,14,2,13,5,14,15,13,2,30,1,13,1,33,1,14,2,33,1,14,1,1,15,13,1,28,3,30,2,14,1,1,5,10,1,28,1,1,308,}, + {1,142,28,4,1,1,28,3,10,1,1,7,11,1,1,1,9,1,27,1,1,6,14,2,5,1,14,5,33,1,14,2,13,2,6,1,13,2,14,1,13,1,33,1,14,16,33,1,14,2,33,1,13,1,14,1,30,1,13,3,14,1,30,2,13,1,28,3,13,1,30,1,13,1,28,1,13,1,14,1,33,2,13,2,30,1,28,3,30,1,28,5,30,1,14,16,5,2,14,1,11,1,1,14,11,1,1,21,11,2,14,2,30,2,14,1,5,2,14,7,5,1,14,3,33,1,13,1,30,2,13,1,33,1,14,3,5,1,14,2,1,14,15,1,29,1,28,1,30,1,13,1,1,6,28,2,1,308,}, + {1,141,28,8,17,1,1,6,11,2,1,1,11,1,26,1,9,1,1,4,14,1,5,1,14,10,13,1,30,3,13,4,14,11,5,1,14,5,33,1,14,2,33,1,14,2,30,1,13,1,30,1,13,2,30,1,13,1,14,1,30,1,28,2,13,3,28,1,13,1,33,1,14,2,13,2,30,1,28,3,30,1,28,5,30,1,14,17,11,1,1,38,11,1,1,2,14,1,13,1,30,1,14,1,5,1,14,5,5,1,14,2,33,1,13,1,14,2,33,1,30,1,28,1,13,2,14,5,5,1,14,2,1,14,14,1,13,1,30,1,14,1,1,5,11,1,28,1,1,309,}, + {1,141,28,6,7,1,1,11,12,1,25,1,15,1,1,2,11,1,14,1,5,2,14,10,13,1,30,3,13,4,14,3,5,1,14,7,5,1,14,8,33,1,14,2,30,1,13,1,30,1,13,2,30,1,33,1,14,1,28,3,13,2,30,1,13,1,14,1,33,1,14,1,33,1,14,1,30,2,28,3,30,1,28,5,30,1,13,1,14,14,11,1,1,13,14,8,1,23,14,1,13,1,14,10,33,1,13,1,33,1,14,1,13,1,30,1,28,1,30,1,13,1,33,1,14,5,5,1,14,2,1,14,11,1,14,1,1,6,7,1,28,1,1,9,28,2,1,298,}, + {1,139,28,7,16,1,1,12,11,1,15,2,11,1,14,2,5,1,14,10,33,1,14,1,13,1,30,1,13,6,14,3,33,1,14,16,33,2,13,1,30,1,13,1,30,1,13,3,33,1,13,1,28,1,30,1,28,1,13,1,14,1,30,1,13,1,14,1,33,2,13,1,14,1,30,3,28,1,30,2,28,5,30,2,14,13,1,13,14,3,13,2,14,3,13,1,14,3,1,11,11,1,1,10,14,1,16,1,13,1,14,9,13,1,14,2,13,1,30,1,28,1,30,1,13,2,14,7,5,1,14,2,1,19,11,1,28,1,1,1,28,2,1,1,28,2,1,3,28,3,1,298,}, + {1,139,28,6,11,1,1,14,13,1,28,1,33,1,14,13,33,2,13,1,30,1,13,1,14,1,13,4,33,1,14,6,5,1,14,10,33,1,14,3,30,4,13,3,14,2,30,1,13,1,30,1,13,1,33,1,30,1,13,1,33,1,14,1,13,2,14,1,30,4,13,1,28,6,30,1,13,1,14,11,1,14,14,4,13,2,14,1,13,1,30,1,13,4,14,1,1,22,14,1,30,1,13,1,14,5,33,3,13,1,14,1,33,1,14,1,13,1,30,1,13,1,33,1,14,9,5,1,14,2,1,18,29,1,28,1,1,1,28,2,1,1,28,4,1,2,28,3,1,297,}, + {1,137,28,6,7,1,1,14,11,1,13,1,28,2,33,1,14,5,5,1,14,9,13,1,28,1,30,1,13,1,30,1,6,1,13,2,14,18,5,1,33,1,14,2,30,3,13,1,14,3,13,2,30,1,13,4,30,1,13,1,14,1,33,1,13,3,30,1,13,1,30,3,28,7,14,10,1,16,14,4,33,2,14,1,13,1,30,1,13,3,30,1,14,1,1,18,11,1,1,4,13,1,30,1,14,6,33,1,13,1,33,1,14,2,13,1,30,1,13,2,14,14,1,16,9,1,28,1,1,1,28,2,1,2,28,2,1,3,28,1,1,1,28,2,1,1,28,2,1,294,}, + {1,137,28,5,16,1,1,14,14,1,30,1,28,2,30,1,14,1,5,1,14,14,30,1,28,2,13,2,33,1,14,1,13,1,33,1,14,17,5,1,33,1,14,2,30,1,13,1,30,1,13,4,28,1,13,1,30,1,13,2,14,1,13,1,30,1,13,1,14,1,33,1,13,3,6,1,13,1,30,1,13,1,30,1,28,4,30,1,28,2,13,1,14,8,1,16,14,6,5,1,14,1,13,1,30,1,13,2,30,2,14,1,1,24,13,2,14,6,13,5,30,1,13,1,14,17,1,13,11,1,28,1,1,16,28,2,1,294,}, + {1,137,28,4,11,1,1,14,14,1,30,1,28,3,30,1,14,16,13,1,30,3,14,2,33,1,14,1,33,1,14,7,5,1,14,9,5,1,14,1,13,1,14,1,13,1,30,2,13,1,30,2,13,1,30,1,13,1,28,1,30,2,13,1,30,1,28,1,13,4,30,2,14,1,13,1,14,1,13,1,30,1,28,7,13,1,14,7,1,17,14,6,5,1,14,2,13,3,30,2,14,1,1,24,14,1,13,1,14,1,5,1,14,4,30,1,13,1,28,1,30,1,13,2,30,1,14,15,33,1,5,1,14,1,1,13,6,1,28,1,1,15,28,2,1,10,28,2,1,282,}, + {1,135,28,1,1,1,28,2,29,1,11,1,1,14,14,1,13,1,28,4,13,1,14,16,13,1,30,1,13,2,33,1,14,1,33,1,14,21,30,1,33,1,13,1,30,1,13,1,14,1,30,1,13,1,33,1,13,2,30,2,28,1,30,2,28,1,13,5,30,1,13,1,33,1,14,1,33,1,13,3,28,5,13,1,14,6,1,18,14,5,33,1,5,1,14,3,13,2,30,2,14,2,1,14,11,1,1,10,14,6,30,1,13,1,30,1,13,1,30,1,13,2,14,15,5,3,14,1,1,13,6,1,28,1,1,11,28,2,1,1,28,3,1,293,}, + {1,135,28,3,8,1,1,14,14,1,13,1,30,1,13,1,30,1,28,3,14,16,33,1,13,3,30,1,14,1,33,3,14,2,5,1,14,14,33,1,14,1,13,1,30,1,33,1,13,2,33,1,13,1,30,1,13,1,33,1,14,1,13,1,30,1,28,2,13,1,30,1,28,1,13,6,30,1,14,2,33,2,14,1,13,1,28,5,13,1,14,5,1,19,14,4,33,2,14,1,33,1,14,2,13,2,30,2,14,2,1,14,11,1,1,11,14,3,33,1,14,1,30,3,13,2,14,20,5,1,14,1,1,13,6,1,28,2,1,9,28,9,1,1,28,3,1,286,}, + {1,134,28,3,9,1,1,14,14,1,13,1,30,1,28,1,13,1,30,1,28,3,14,12,33,1,14,2,33,2,13,1,30,3,14,1,33,3,14,11,33,1,14,5,33,1,14,1,13,2,14,1,13,1,33,1,14,1,13,1,28,1,13,2,14,2,30,1,28,2,13,2,30,4,13,2,14,1,13,1,14,2,33,2,14,1,13,1,30,1,28,4,13,1,14,4,1,20,14,4,33,2,14,1,33,1,14,2,13,1,30,2,13,1,14,1,1,14,11,2,1,11,14,2,13,3,30,3,13,3,14,20,33,1,14,1,1,13,6,1,28,1,1,9,28,15,1,284,}, + {1,134,28,2,16,1,1,13,11,1,14,1,13,2,30,1,28,1,30,1,28,4,14,8,33,1,14,3,13,1,14,3,33,1,13,1,30,2,13,2,14,7,33,1,14,3,33,1,14,2,33,1,14,7,13,2,14,4,13,1,30,2,13,1,14,2,13,1,30,1,13,5,30,1,28,1,13,4,14,3,33,2,13,2,30,1,28,3,13,1,14,3,1,21,14,4,33,1,14,1,13,1,14,3,13,1,30,2,13,1,14,1,1,14,11,2,1,8,11,1,1,3,14,1,30,1,13,1,30,2,6,1,30,1,13,1,14,3,5,1,14,19,33,1,14,1,1,13,6,1,28,1,1,8,28,5,6,1,8,1,25,1,26,1,9,1,10,1,6,1,28,5,1,2,28,2,1,278,}, + {1,131,28,4,12,1,1,13,14,1,13,4,30,2,28,1,30,1,28,3,14,7,33,2,14,3,13,1,33,1,14,2,33,1,30,2,13,1,30,1,13,1,14,3,33,1,14,10,33,1,14,5,33,2,13,2,14,1,33,1,13,2,14,1,33,1,13,1,14,2,33,1,13,3,30,3,13,2,30,1,13,4,14,1,33,1,14,2,33,1,13,3,30,1,28,2,13,1,14,2,1,23,14,1,5,1,14,1,33,1,14,1,13,5,30,1,13,2,14,1,1,14,11,2,1,12,14,1,6,1,13,2,14,1,33,1,13,1,14,4,5,1,14,22,1,13,6,1,28,1,1,5,28,3,6,1,16,1,11,2,1,3,11,1,1,3,11,2,8,1,28,2,1,1,28,3,1,1,28,1,1,276,}, + {1,131,28,3,11,1,1,13,14,1,13,6,30,3,28,2,30,1,14,7,33,2,14,3,13,1,33,1,14,1,33,2,13,5,14,1,33,2,14,1,5,1,14,7,13,1,14,1,13,1,14,5,33,3,13,1,14,1,13,4,33,1,5,1,33,1,14,1,33,1,14,1,13,3,30,3,13,1,30,1,13,1,14,1,13,2,14,1,33,3,13,1,30,2,13,2,28,2,13,1,14,2,1,23,14,1,33,1,14,1,33,2,14,1,33,1,28,1,30,1,13,1,30,1,13,2,1,15,11,1,1,13,11,1,13,2,14,2,33,2,14,28,1,13,29,1,28,1,1,1,28,3,7,1,17,1,1,4,11,1,1,10,11,1,28,7,1,276,}, + {1,129,28,1,1,1,28,2,11,1,1,13,14,2,6,1,14,1,30,1,13,2,30,1,28,1,13,1,30,1,28,2,30,1,14,8,33,1,14,3,13,1,33,1,14,2,13,2,14,2,6,1,30,1,14,1,33,2,14,8,13,3,6,1,14,5,13,1,33,1,14,2,30,1,13,5,33,2,14,1,33,1,14,1,13,1,30,1,14,1,13,1,28,1,30,1,13,3,14,1,13,1,33,1,14,2,33,2,14,1,13,3,28,3,13,1,14,1,1,25,14,2,33,1,14,3,28,2,13,1,28,1,13,1,11,1,1,15,11,1,1,14,14,1,33,1,14,1,13,1,33,1,13,1,33,3,14,9,5,1,14,16,11,1,1,11,11,1,28,3,9,1,11,1,1,6,11,1,1,12,6,1,28,4,1,277,}, + {1,129,28,3,11,1,1,12,11,1,14,1,33,1,14,1,13,1,14,1,13,1,30,1,28,1,30,3,28,3,30,1,14,12,33,2,14,2,13,2,33,1,14,1,13,1,30,1,33,1,14,5,13,1,14,4,6,1,30,1,13,2,14,5,33,1,14,3,13,2,14,2,13,2,14,1,5,1,14,1,33,2,13,3,30,1,28,1,30,1,13,1,14,1,33,1,14,1,33,3,14,1,33,2,14,3,13,1,28,3,13,1,14,1,1,26,14,3,13,3,28,1,13,1,30,1,14,1,11,1,1,31,14,1,33,1,13,1,14,1,13,1,33,3,14,28,1,11,11,1,12,1,1,16,11,2,1,1,11,1,1,3,28,4,1,277,}, + {1,129,28,1,29,1,11,1,1,12,14,2,33,1,14,2,33,1,14,1,13,1,28,2,13,1,30,1,13,1,28,3,13,1,14,13,5,1,14,1,13,2,14,2,33,1,14,1,13,1,14,5,13,1,30,1,14,3,13,1,30,2,13,1,14,2,5,1,14,3,33,1,14,2,33,1,14,1,13,1,14,2,13,1,30,1,13,1,14,2,33,2,14,2,13,1,30,3,13,1,14,1,33,2,14,2,33,4,13,2,33,1,13,1,28,3,13,1,1,30,14,5,1,1,11,1,12,1,1,21,11,2,1,8,14,1,33,2,14,1,6,1,13,1,14,30,11,1,1,25,11,5,1,1,11,1,1,3,11,1,28,2,1,278,}, + {1,128,28,1,29,1,11,1,1,12,14,6,13,1,14,1,13,1,30,2,13,1,30,1,13,1,28,3,30,1,14,15,6,1,30,1,13,1,14,1,33,1,14,3,33,2,14,2,13,1,28,1,13,2,14,1,13,1,30,1,13,2,14,2,33,2,14,3,33,1,14,2,33,1,13,2,14,1,13,1,30,1,13,1,14,2,33,4,13,1,30,3,13,1,33,2,13,1,14,2,13,1,33,1,14,1,33,1,13,3,30,1,28,3,13,1,1,37,11,1,1,21,11,1,1,9,14,2,33,1,13,2,33,1,14,22,33,2,14,6,5,1,14,1,1,19,11,1,15,1,13,1,30,2,28,3,30,1,9,1,1,6,6,1,28,1,1,278,}, + {1,127,28,1,29,1,11,1,1,12,14,1,5,1,33,2,14,2,13,3,30,1,13,2,30,1,28,1,13,1,28,3,13,1,14,4,33,1,14,2,5,1,14,7,13,2,30,1,33,1,14,2,5,1,14,2,13,1,33,1,14,1,13,1,30,3,14,2,13,2,14,1,33,1,14,1,5,1,14,4,13,3,14,1,13,1,30,1,33,1,14,1,13,1,30,1,14,1,33,1,14,1,33,1,14,3,13,1,30,2,13,1,14,2,13,2,14,1,33,4,13,1,30,1,13,1,28,4,14,1,1,70,14,1,33,1,13,2,33,1,14,22,33,1,14,4,5,1,14,2,33,1,14,1,11,1,1,15,11,1,14,1,13,1,28,10,14,1,1,5,17,1,28,1,1,278,}, + {1,126,28,1,29,1,11,1,1,12,14,1,33,1,14,1,33,1,13,1,14,2,13,2,30,3,13,2,30,1,13,1,28,1,30,1,28,1,14,2,5,1,14,2,13,1,14,2,33,1,14,8,13,2,14,2,5,1,33,1,14,2,13,1,33,1,5,1,14,1,30,1,28,1,13,1,33,3,14,2,33,1,14,5,33,1,13,1,30,1,13,1,14,1,13,1,6,1,33,1,14,2,30,1,13,1,33,1,14,1,13,1,33,1,13,1,33,1,14,1,30,2,13,1,14,2,33,1,13,1,14,2,33,3,14,1,13,2,28,3,30,1,14,1,1,34,11,1,1,1,11,1,1,33,14,1,13,3,33,1,14,22,5,1,14,5,5,1,14,2,33,1,14,1,1,14,9,1,28,13,30,1,11,1,1,5,28,4,1,1,28,1,1,273,}, + {1,125,28,2,11,1,1,12,14,4,13,2,14,2,13,1,14,1,30,1,13,5,30,3,28,1,14,2,33,1,14,5,5,1,14,8,13,2,14,2,5,2,14,1,13,3,5,1,13,1,28,1,30,1,13,1,33,2,14,2,13,2,14,6,13,1,30,1,13,1,14,6,13,1,14,1,33,1,14,1,13,1,14,1,33,2,14,1,13,1,30,1,13,1,14,2,33,1,13,1,14,4,5,1,14,1,13,2,30,2,28,2,14,1,1,34,11,2,1,34,14,1,13,3,14,29,5,1,14,5,1,12,11,1,28,15,9,1,1,5,6,1,28,3,1,1,28,2,1,272,}, + {1,124,28,2,11,1,1,11,14,2,33,1,5,2,14,1,30,1,13,1,14,2,33,1,14,1,30,1,13,1,14,1,13,1,30,4,28,2,14,3,5,1,14,12,13,1,33,1,14,6,30,2,13,1,14,1,30,1,28,2,13,1,33,1,14,1,33,1,14,1,6,1,13,1,14,1,5,2,14,2,33,1,13,2,6,1,14,2,5,1,14,3,13,2,33,1,14,1,13,1,14,1,13,4,30,1,13,1,14,1,13,1,33,2,14,2,33,1,14,3,33,1,13,1,30,1,28,3,1,35,11,2,1,18,11,2,1,15,14,1,13,2,33,2,14,24,33,1,14,4,33,1,14,4,1,12,13,1,28,14,13,1,1,5,9,1,28,1,1,277,}, + {1,123,28,2,11,1,1,12,13,2,14,1,5,1,14,2,30,1,13,1,33,3,13,5,28,2,30,2,28,1,30,1,14,3,33,1,14,12,13,1,14,4,33,1,13,1,14,1,30,3,13,1,30,1,13,1,30,1,13,1,33,1,14,1,33,1,14,1,13,2,14,1,5,2,14,2,33,1,13,4,14,1,5,1,14,3,13,1,33,1,14,1,13,2,14,1,13,2,6,1,13,1,30,1,13,2,30,1,13,1,14,3,33,1,14,4,13,1,30,1,28,2,30,1,1,37,11,1,1,17,11,2,1,15,16,1,13,1,14,2,5,1,14,8,5,1,14,14,33,3,14,1,5,1,14,3,13,1,33,2,14,1,1,11,11,1,28,14,13,1,1,5,16,1,28,1,1,2,28,2,1,273,}, + {1,120,28,1,1,1,28,2,17,1,1,11,14,1,5,1,33,2,14,2,33,2,13,3,33,1,13,4,30,2,28,1,30,1,13,1,28,2,30,1,14,3,33,2,14,8,5,1,14,7,6,1,13,2,28,2,30,3,13,4,14,1,33,2,14,1,13,1,14,1,5,1,14,4,33,1,13,3,14,1,5,1,14,3,33,1,14,2,13,2,14,1,13,2,33,1,13,4,6,1,14,4,33,1,14,4,30,2,28,2,30,1,1,35,11,1,1,1,11,1,1,17,11,1,1,16,14,1,13,3,14,24,33,3,14,3,33,1,14,1,13,1,33,1,14,3,1,11,14,1,30,1,28,12,30,1,1,5,12,1,28,1,1,2,28,2,1,273,}, + {1,120,28,3,16,1,1,12,14,1,33,2,14,1,33,1,14,1,30,1,13,1,33,1,6,1,13,1,33,2,14,1,13,1,33,1,13,1,30,1,28,1,30,1,13,1,28,2,30,1,14,1,33,1,14,1,33,2,14,7,5,2,14,6,33,1,13,3,28,3,30,1,13,5,14,4,13,1,14,9,33,1,14,5,33,2,14,1,30,1,13,4,33,1,14,1,13,1,33,1,14,6,33,1,14,2,33,1,13,3,28,2,30,1,1,35,11,2,1,15,11,1,1,1,11,1,1,17,11,1,30,2,13,1,14,1,5,3,33,1,14,4,5,1,14,16,13,1,14,3,13,1,14,1,33,1,14,3,5,1,14,1,1,11,14,1,28,12,13,1,1,5,12,1,28,7,1,271,}, + {1,119,28,3,9,1,1,12,14,1,33,1,14,1,33,1,14,1,13,1,14,1,13,1,30,1,13,2,14,2,33,1,14,1,13,1,14,1,33,1,30,1,28,1,30,3,28,1,13,1,14,1,33,1,14,2,33,1,14,16,13,1,30,3,28,1,30,2,13,2,6,1,14,1,13,2,14,3,33,1,14,15,33,2,14,1,13,1,6,1,30,1,14,1,30,1,13,1,14,1,33,2,14,2,33,1,14,2,5,1,14,3,13,1,14,1,13,2,30,2,13,1,1,35,11,1,1,37,13,2,33,1,14,1,33,1,14,1,33,2,14,4,5,1,14,10,33,1,14,9,13,1,14,6,5,1,14,1,1,11,30,1,28,11,13,1,1,5,16,1,28,3,1,2,28,2,1,271,}, + {1,119,28,2,8,1,1,12,14,3,33,2,14,1,6,1,13,1,14,1,13,1,30,1,13,2,14,1,13,3,14,1,13,1,30,1,28,1,30,1,13,1,30,1,28,1,13,1,14,21,30,1,28,1,30,3,13,7,14,4,33,2,14,1,33,1,14,3,5,2,14,2,33,2,14,3,33,2,14,2,13,3,30,2,14,1,33,1,14,3,5,1,14,2,5,1,14,2,13,1,30,1,14,1,30,1,13,2,14,2,11,1,1,36,11,1,1,2,11,3,1,30,14,2,13,1,33,1,13,2,14,1,33,1,14,22,33,1,14,2,13,1,14,7,5,1,14,1,1,10,14,1,29,1,28,10,9,1,1,5,9,1,28,3,1,2,28,2,1,29,28,2,1,240,}, + {1,119,28,1,6,1,1,12,14,1,33,1,14,3,33,2,13,2,14,1,13,1,30,1,13,5,30,1,13,2,28,1,30,1,13,2,28,2,13,1,14,3,33,1,14,5,5,2,14,8,13,2,30,1,28,1,30,2,13,4,14,2,13,2,14,1,33,2,14,2,33,1,14,2,33,1,14,2,5,2,14,2,33,2,14,4,33,3,14,2,6,1,13,2,33,2,14,8,5,1,13,1,30,1,14,1,30,1,13,2,14,1,11,1,1,41,11,1,9,1,11,1,1,6,11,1,1,21,14,1,13,1,14,3,13,2,14,25,33,1,14,3,33,1,5,1,14,4,33,1,14,1,1,6,11,1,1,3,11,1,15,1,28,10,14,1,1,5,6,1,28,1,1,35,28,3,1,239,}, + {1,115,28,2,1,1,28,2,11,1,1,11,14,1,33,1,14,4,33,2,13,2,14,1,13,1,30,1,13,2,33,1,14,2,13,3,30,1,13,2,30,1,28,2,13,1,14,3,13,1,14,1,5,1,14,3,5,1,33,1,14,8,30,1,13,1,30,1,28,2,30,1,13,3,14,4,13,1,33,1,14,1,33,1,14,3,13,1,14,1,5,1,14,12,33,2,14,2,13,1,30,1,13,2,33,4,14,3,5,1,14,3,13,3,30,1,13,2,14,1,15,1,11,1,1,41,12,1,11,1,1,8,11,1,1,19,14,1,13,1,14,3,13,1,33,1,14,25,33,1,14,3,5,1,14,3,5,1,14,2,5,1,14,1,1,5,11,1,1,3,11,1,1,1,15,1,28,8,30,1,11,1,1,5,28,2,1,2,28,2,1,31,28,3,1,239,}, + {1,114,28,5,11,1,1,11,14,1,5,1,14,1,5,1,14,5,13,2,14,1,13,1,30,1,13,2,14,4,13,1,14,1,13,4,28,2,14,4,13,1,14,14,13,1,30,1,13,1,30,1,28,2,30,1,13,3,33,1,14,1,33,1,14,1,13,2,14,1,13,1,14,5,33,1,5,2,33,1,14,3,33,1,14,5,33,2,14,1,13,1,30,1,6,1,13,2,14,1,33,1,14,9,13,3,30,1,13,2,14,1,11,1,1,55,11,1,1,15,11,1,14,1,13,1,33,1,5,1,14,1,13,1,14,26,33,2,14,10,33,1,14,1,1,5,11,3,1,3,13,1,28,7,9,1,1,5,11,1,28,1,1,2,28,3,1,273,}, + {1,114,28,4,16,1,1,11,14,1,33,1,14,2,5,1,33,1,14,3,30,3,13,2,30,1,13,1,14,3,33,1,14,1,13,1,14,1,13,1,14,1,13,2,28,2,14,4,13,1,14,2,5,1,14,2,6,1,33,1,14,6,13,1,30,6,13,1,14,4,33,1,13,1,14,1,13,2,30,2,14,2,5,1,14,2,33,1,14,2,33,2,14,9,33,1,14,1,13,6,33,1,14,8,33,1,30,1,14,1,13,2,30,1,13,1,33,1,1,72,14,1,33,1,14,1,33,2,14,1,13,2,14,26,33,1,14,2,33,1,14,6,33,1,5,1,33,1,14,1,1,1,11,1,1,8,11,1,30,1,28,5,29,1,11,1,1,5,7,1,28,1,1,2,28,3,1,273,}, + {1,113,28,4,7,1,1,11,14,1,5,1,33,1,14,3,33,1,14,2,13,1,30,2,28,1,13,2,30,2,14,3,33,2,13,1,14,1,13,2,33,1,13,1,28,2,14,4,13,1,14,2,5,2,33,1,30,1,13,1,14,1,5,3,14,2,13,1,30,2,13,2,30,2,13,1,14,5,13,1,33,1,13,2,30,1,13,1,14,1,33,1,14,1,13,1,33,1,14,15,33,1,6,1,13,5,33,2,14,8,30,1,14,1,13,1,14,1,13,2,33,1,1,1,11,1,1,49,11,1,1,19,11,1,14,1,33,1,14,1,13,1,33,1,14,1,13,2,14,4,5,1,14,20,33,2,14,2,5,1,14,6,33,2,14,3,1,4,11,1,1,5,14,1,28,5,9,1,1,5,11,1,28,2,1,2,28,3,1,273,}, + {1,112,28,4,29,1,1,11,14,1,33,1,5,1,14,1,33,1,14,4,33,1,14,1,13,6,28,1,14,3,33,1,13,2,14,1,30,1,13,1,14,1,30,1,28,2,14,1,5,1,14,2,33,1,14,1,33,1,5,2,14,1,30,1,13,1,14,1,5,3,14,2,13,1,30,2,13,2,30,3,13,1,14,1,33,1,14,1,33,3,13,2,6,1,14,2,13,1,14,1,13,1,14,2,33,1,14,1,33,1,14,1,5,1,14,6,33,2,14,1,13,6,14,2,33,1,14,8,30,1,13,2,14,2,30,1,14,1,1,1,11,1,1,43,11,1,1,5,9,1,11,1,1,18,14,4,13,2,14,1,33,1,13,1,14,25,33,2,14,11,13,3,1,4,11,1,1,6,13,1,28,3,29,1,1,6,10,1,28,7,1,273,}, + {1,113,28,3,11,1,1,11,14,1,33,1,14,2,33,1,14,3,33,3,13,3,30,1,13,2,28,1,14,2,5,1,14,1,13,2,14,1,33,1,13,1,14,1,30,1,28,1,30,1,14,1,5,1,14,3,33,1,13,1,14,2,33,1,13,1,14,3,33,1,14,3,13,1,30,2,13,2,28,1,30,1,28,1,13,1,14,3,33,2,14,1,13,2,30,1,13,1,33,1,14,1,13,2,14,1,33,1,13,1,14,1,33,1,14,3,33,2,14,3,33,2,14,3,13,1,30,1,14,1,33,1,14,11,13,1,30,1,13,1,14,2,30,1,13,2,15,1,1,38,11,2,1,9,9,1,11,1,1,17,14,3,30,1,13,3,33,1,14,1,30,1,13,1,33,1,14,21,33,1,13,1,14,13,30,3,14,1,1,10,11,1,30,1,28,1,30,1,9,1,1,5,11,1,28,2,1,1,28,4,1,274,}, + {1,112,28,3,9,1,1,11,14,7,33,2,13,1,14,2,33,1,13,1,30,1,28,1,13,1,30,2,13,1,33,1,14,3,33,2,14,3,30,1,28,1,30,1,14,6,33,1,13,1,33,3,14,6,33,1,13,2,30,7,14,1,33,1,14,2,13,2,14,1,13,1,30,1,13,1,33,2,13,2,14,1,13,2,14,5,13,1,33,1,14,3,13,1,33,1,14,3,33,2,13,2,14,12,13,1,14,2,13,1,28,2,30,1,14,1,1,39,11,1,1,2,11,2,1,2,11,2,1,1,11,2,1,17,14,3,30,1,13,2,30,1,14,2,30,1,13,1,33,2,14,20,13,2,14,11,33,1,14,1,30,1,28,3,14,1,1,1,11,1,1,8,14,1,13,1,14,1,15,1,1,5,29,1,28,2,1,1,28,1,1,277,}, + {1,112,28,2,6,1,1,11,14,1,33,1,14,2,5,1,14,4,13,1,6,1,14,3,13,1,30,4,13,3,14,4,33,2,13,1,14,1,30,1,28,1,30,1,14,1,5,1,14,1,33,1,14,3,13,2,14,1,33,1,5,1,14,5,33,1,13,1,30,2,28,1,30,2,13,3,5,1,14,3,13,2,14,1,13,1,30,1,13,1,14,1,33,3,13,1,30,1,33,2,5,1,14,3,13,1,33,1,14,2,13,2,14,3,33,2,14,1,33,1,13,1,14,10,33,1,5,1,14,2,13,1,30,2,28,1,30,1,14,1,1,46,11,1,12,1,1,19,14,1,33,1,14,1,13,1,30,1,13,2,30,1,14,2,13,2,33,1,13,1,14,2,33,1,14,13,5,1,14,3,13,1,30,1,14,7,5,1,14,3,33,1,14,1,13,1,28,3,13,1,11,1,17,1,1,11,11,1,1,4,9,1,28,5,1,277,}, + {1,112,28,2,11,1,1,10,14,6,33,1,14,4,33,1,14,1,5,1,33,1,13,2,30,1,13,5,14,1,5,1,14,1,13,1,5,1,14,1,6,1,13,1,30,1,28,1,13,1,14,1,33,1,14,1,13,1,14,1,33,1,13,1,30,1,13,2,33,1,5,1,14,3,5,1,14,2,30,2,28,1,30,1,13,1,30,2,13,1,33,2,14,2,13,1,14,1,13,3,30,1,13,1,14,2,33,1,14,2,33,1,14,2,5,1,33,1,13,1,33,1,14,4,30,1,13,1,14,3,33,1,13,1,33,1,14,1,33,1,14,10,33,1,5,1,33,1,14,1,30,3,28,1,30,1,14,1,1,43,11,3,1,1,11,1,1,19,14,1,13,1,33,1,13,1,30,1,14,1,13,1,30,1,14,2,13,4,30,1,14,1,33,1,14,17,13,1,30,1,14,8,33,2,13,1,14,2,13,1,28,4,13,1,11,2,1,14,17,1,28,5,1,278,}, + {1,112,28,1,16,1,1,11,14,1,33,2,14,6,5,1,33,1,14,4,30,1,13,1,30,1,13,5,14,1,5,1,14,1,13,1,5,1,14,1,30,1,13,1,28,2,13,1,14,1,33,1,5,1,14,2,13,1,30,2,13,1,6,1,14,1,5,1,14,1,13,1,14,1,33,1,14,2,30,4,13,2,30,1,13,2,14,3,13,4,14,1,30,1,13,1,14,2,5,1,14,5,5,1,33,1,13,4,33,1,13,1,30,1,14,4,33,1,13,1,33,1,14,13,5,1,14,1,13,1,30,3,28,2,9,1,1,43,11,3,1,1,11,1,1,1,11,1,1,16,14,1,30,1,13,1,14,2,13,1,14,1,13,1,30,1,13,1,14,1,13,3,30,2,14,19,13,2,14,8,13,1,6,1,13,1,14,1,33,1,14,1,30,1,28,4,16,1,1,14,11,1,28,4,1,280,}, + {1,110,28,2,6,1,1,11,14,2,33,1,14,3,33,1,14,4,33,1,14,4,13,1,30,1,13,6,14,3,13,1,5,1,33,1,30,1,13,1,30,1,28,1,30,1,14,3,13,2,14,1,13,4,14,1,33,1,14,1,13,1,33,2,14,2,30,2,13,1,30,1,13,1,14,1,13,1,30,1,13,1,33,1,14,2,6,1,13,3,14,1,13,2,14,2,5,2,14,5,33,1,13,2,30,1,13,1,6,1,13,1,33,1,14,4,33,2,14,2,5,1,14,11,33,1,13,1,6,1,13,2,30,1,28,2,14,1,1,44,12,1,11,1,1,1,11,1,1,17,14,1,13,1,30,1,13,1,5,1,14,1,13,3,30,2,13,5,14,2,33,1,14,17,33,1,14,6,33,1,14,2,13,1,30,1,13,3,14,1,30,1,28,1,30,2,28,1,30,1,11,1,1,12,11,1,28,3,1,4,28,2,1,276,}, + {1,110,28,2,11,1,1,10,14,6,33,2,14,4,5,1,33,1,14,1,33,2,13,1,30,1,13,1,14,1,30,1,13,3,14,1,33,1,14,2,5,1,13,1,30,2,28,2,13,1,14,2,13,3,33,3,13,1,33,1,13,1,33,2,13,1,33,1,14,3,13,1,6,1,13,1,30,1,13,1,14,1,13,1,30,1,13,1,33,3,13,1,14,3,33,1,14,1,33,2,14,9,13,1,30,2,13,1,30,1,13,1,14,5,33,1,14,7,5,2,14,6,13,4,14,1,13,1,30,1,28,1,13,1,1,52,11,1,1,12,14,1,30,2,14,1,33,2,13,1,28,1,13,4,30,1,13,1,33,1,14,3,33,1,14,17,33,1,14,8,5,1,13,4,6,1,14,1,13,1,28,1,30,2,28,2,14,1,1,11,11,1,28,4,1,3,28,3,1,276,}, + {1,110,28,1,9,1,1,11,14,6,33,2,14,5,33,3,13,5,28,1,13,2,28,1,13,1,5,1,14,4,13,1,30,1,28,2,13,1,33,1,14,1,30,1,13,3,14,4,13,2,33,1,13,1,14,2,33,2,13,3,30,1,13,1,14,1,13,1,30,1,33,3,14,1,13,2,14,1,13,1,33,4,14,2,5,1,14,2,5,1,14,3,13,2,30,2,6,1,13,1,14,5,33,1,14,8,5,2,14,5,30,1,13,3,33,1,14,1,13,1,28,1,30,1,14,1,1,43,11,1,1,7,11,1,1,11,14,2,30,1,28,1,14,1,5,1,13,1,30,1,28,1,30,1,13,2,30,1,13,1,14,1,33,1,14,20,33,1,13,1,14,8,33,1,13,4,6,1,13,1,30,2,28,4,13,1,14,1,1,10,7,1,28,1,1,1,28,2,1,3,28,1,1,278,}, + {1,109,28,1,29,1,1,11,14,13,33,1,14,1,33,1,14,2,13,1,30,1,13,2,30,1,13,1,30,1,13,2,14,6,13,1,30,1,28,1,13,2,14,1,13,1,30,1,14,2,33,1,14,3,13,2,14,4,33,3,14,1,13,2,33,1,13,3,14,1,13,2,14,1,13,2,14,1,13,1,33,1,14,5,5,1,14,7,13,1,30,2,13,1,14,1,5,1,14,4,33,1,14,15,13,1,33,1,14,1,33,1,13,1,14,1,13,1,28,2,14,1,1,63,14,2,13,1,30,1,13,1,14,1,30,4,13,2,30,1,13,1,14,1,5,1,14,2,5,1,14,18,33,1,14,8,33,1,13,4,30,1,13,3,30,1,28,3,30,1,13,1,11,1,1,9,12,1,28,1,1,1,28,2,1,3,28,2,1,277,}, + {1,104,28,2,1,3,28,1,17,1,1,10,14,14,13,1,14,2,33,1,6,1,13,1,28,1,13,1,33,2,30,2,14,1,33,1,14,2,33,1,14,3,30,5,13,1,14,1,6,1,14,2,33,1,14,3,13,1,33,3,13,2,14,1,33,2,13,2,14,1,33,1,13,2,33,1,14,1,13,2,14,1,13,1,30,1,13,1,14,3,33,1,14,3,33,1,14,2,5,1,14,4,13,1,30,2,13,1,14,2,5,1,14,1,33,1,13,1,33,1,14,15,33,1,14,3,30,1,13,1,14,1,28,2,9,1,1,62,14,3,13,2,14,1,13,1,28,2,13,1,30,3,13,2,14,23,13,1,14,8,13,2,30,1,13,2,30,1,13,3,28,4,30,1,28,1,9,1,1,10,29,1,28,3,1,4,28,2,1,276,}, + {1,104,28,2,1,1,28,2,7,1,1,10,14,10,5,1,14,4,13,1,14,2,13,1,28,1,30,1,28,1,13,1,33,1,14,1,28,1,30,1,33,1,13,1,33,4,14,2,13,1,28,1,30,2,28,1,13,1,33,1,14,8,13,2,33,1,13,2,33,2,14,1,13,2,14,1,13,5,30,1,13,1,14,1,30,2,13,1,14,2,5,1,14,3,5,1,14,2,5,1,14,6,6,1,30,1,14,6,13,2,14,1,5,1,14,1,13,2,33,1,5,2,14,7,33,3,13,1,30,1,13,1,14,1,28,2,13,1,1,25,11,2,1,10,11,1,1,12,11,1,1,10,14,4,13,1,14,2,13,1,30,2,13,1,30,1,28,1,30,1,13,2,14,23,33,1,14,7,5,1,13,2,30,1,14,1,30,1,13,4,28,4,13,3,14,1,1,9,11,1,28,5,1,1,28,4,1,275,}, + {1,106,28,3,11,1,1,10,14,15,13,1,14,2,13,1,30,1,13,2,33,2,13,1,30,1,13,1,14,8,13,1,28,2,13,2,33,1,5,1,14,1,13,1,14,6,13,2,33,1,14,1,13,2,14,2,13,1,33,1,14,1,13,2,33,1,30,3,13,1,14,1,13,1,30,1,13,1,14,2,33,1,14,3,5,1,14,2,5,1,14,7,13,2,14,1,33,1,14,3,33,2,14,1,5,1,14,1,30,1,13,1,14,1,33,1,14,8,33,2,13,2,30,1,13,2,30,1,28,1,13,1,14,1,1,25,11,2,1,1,11,1,1,30,14,7,33,2,13,2,30,2,28,1,13,3,14,1,5,1,14,29,5,1,14,1,13,1,6,1,14,1,30,2,13,3,28,4,13,1,14,1,13,1,14,1,1,10,6,1,28,4,1,1,28,4,1,275,}, + {1,106,28,2,9,1,1,10,14,14,6,1,33,2,14,2,13,2,14,2,5,1,33,1,13,1,30,1,14,4,33,1,13,2,14,2,13,1,28,2,13,2,33,2,14,1,13,1,14,3,33,1,14,2,13,2,6,1,13,3,14,5,13,1,14,2,13,4,14,2,13,2,14,3,33,1,14,5,5,1,14,7,33,2,14,1,33,2,14,2,33,1,14,1,33,2,14,1,33,1,14,1,30,1,13,1,14,10,13,2,30,4,28,1,13,1,14,1,1,25,11,2,1,1,11,1,1,22,11,2,1,5,14,8,33,1,14,1,30,4,28,1,13,1,30,1,13,1,14,31,5,1,14,1,13,2,14,1,30,2,13,2,30,2,28,2,13,5,14,1,1,9,11,1,28,2,1,1,28,1,1,1,28,4,1,275,}, + {1,104,28,4,1,11,14,14,13,1,33,1,14,3,13,2,14,1,5,2,33,2,30,1,14,3,33,1,14,1,30,2,14,2,13,1,28,1,30,3,13,1,33,1,14,1,33,1,14,6,13,2,30,1,13,1,14,1,13,1,14,2,33,2,14,1,13,1,33,1,14,1,13,4,14,2,13,2,14,1,5,1,14,1,33,1,14,10,33,1,14,2,33,1,14,1,33,1,14,1,33,1,14,2,5,1,14,1,33,2,14,1,33,1,14,1,30,2,13,1,14,7,5,1,14,1,13,4,28,1,30,1,28,1,13,1,14,2,1,24,11,2,1,1,11,1,1,22,11,3,1,3,14,1,33,1,14,7,33,1,14,1,30,4,28,2,13,1,14,1,5,1,14,3,33,1,14,22,33,1,14,3,5,1,14,1,13,2,14,1,13,1,14,1,33,2,13,2,30,1,28,1,13,4,30,1,13,1,1,3,11,1,1,6,8,1,28,1,1,1,28,7,1,274,}, + {1,104,28,3,16,1,1,10,14,10,5,1,33,1,14,8,13,2,14,2,33,1,13,1,33,1,30,1,33,3,13,2,28,1,13,1,5,2,13,1,28,1,13,1,28,2,30,1,14,1,33,2,14,4,13,4,30,2,14,1,30,1,14,1,5,1,33,2,14,1,13,1,33,1,14,2,13,3,14,1,6,1,30,1,14,4,33,1,14,10,5,1,14,1,5,2,14,2,33,1,14,4,13,1,14,3,6,1,14,1,13,1,30,1,13,1,14,9,13,4,30,2,28,1,13,1,14,2,1,25,11,1,1,24,11,1,1,3,11,1,14,1,5,2,14,9,30,1,28,1,30,1,13,1,30,1,28,1,13,1,14,5,33,1,14,9,5,1,14,18,13,2,14,3,33,1,14,1,13,2,30,2,14,1,13,1,30,1,13,1,30,2,14,1,1,1,11,2,1,6,11,1,28,6,1,1,28,2,1,274,}, + {1,105,28,2,1,10,14,12,33,1,14,8,13,1,6,1,14,2,33,1,30,1,13,4,14,1,13,1,30,2,14,1,33,1,14,1,30,1,28,1,13,1,30,1,28,1,30,1,14,1,33,2,14,4,30,1,13,1,30,4,13,1,30,1,33,1,14,1,5,1,14,1,33,1,13,1,14,1,33,2,13,3,14,1,6,1,30,1,14,15,5,1,14,10,13,1,14,2,33,1,13,3,30,1,13,2,14,8,30,1,13,1,30,4,28,1,13,1,14,3,1,24,11,1,1,8,11,1,1,14,11,2,1,1,14,1,16,1,13,1,14,5,5,1,14,5,13,2,28,3,13,1,28,1,13,1,14,10,33,1,14,15,33,1,14,8,30,1,33,1,14,6,30,1,13,1,14,1,13,1,30,2,28,1,13,2,11,2,1,8,9,1,28,5,1,1,28,2,1,274,}, + {1,100,28,2,1,3,28,1,12,1,1,10,14,13,33,1,5,2,14,6,33,1,14,2,13,2,30,1,14,1,33,1,13,1,14,1,30,2,13,1,14,1,5,1,14,1,13,1,28,1,13,1,30,2,13,1,14,1,5,1,33,1,14,4,13,2,28,1,30,1,13,3,33,1,14,5,13,1,14,2,33,1,13,5,14,4,33,1,14,17,5,2,14,1,13,2,33,1,14,1,5,1,14,1,13,4,14,2,5,1,14,7,30,1,13,1,30,2,13,1,28,2,13,1,14,4,1,24,11,1,1,7,11,1,1,13,11,1,12,1,1,2,13,1,30,2,14,8,5,1,14,2,33,1,14,1,28,5,14,27,33,1,14,8,30,1,13,1,14,1,33,2,14,2,13,2,14,2,13,1,28,1,13,1,30,2,28,1,9,1,1,10,28,4,1,2,28,2,1,274,}, + {1,100,28,1,1,3,28,1,29,1,1,10,14,1,5,1,14,13,5,1,33,1,14,4,5,1,14,1,33,1,6,1,13,5,33,2,14,1,30,1,13,2,14,1,5,1,14,1,13,1,28,1,13,2,30,1,13,1,14,2,33,1,14,4,13,2,28,2,14,2,30,1,33,1,14,4,13,2,14,3,13,5,14,4,33,1,14,17,5,1,14,2,13,2,14,1,5,2,14,1,13,1,30,1,13,1,14,2,5,2,14,5,33,1,14,1,13,3,30,1,13,1,28,2,13,1,14,5,1,23,11,1,1,23,14,1,13,1,28,1,30,2,13,1,33,1,5,1,14,8,33,2,30,2,28,3,14,1,13,1,14,1,33,1,14,23,33,1,14,6,33,1,13,2,14,2,33,1,14,3,33,1,13,1,14,2,13,1,30,1,13,2,30,1,28,1,30,1,14,1,1,9,9,1,28,3,1,2,28,2,1,274,}, + {1,104,28,1,12,1,1,10,14,1,5,1,14,13,5,1,14,2,5,1,14,1,33,1,14,3,30,1,13,2,30,1,13,2,33,2,14,1,33,1,14,1,13,1,14,3,30,1,28,1,13,2,28,2,13,1,14,5,33,1,30,1,13,1,30,1,28,1,14,2,13,1,33,2,14,3,13,3,14,2,30,1,13,2,33,1,14,4,33,3,14,19,33,3,5,2,13,1,30,1,13,2,14,2,5,2,14,5,33,2,14,2,13,1,30,1,13,1,28,2,13,1,14,6,1,45,14,1,28,4,13,2,33,1,5,1,14,8,33,1,13,1,30,1,13,1,30,2,28,1,13,1,30,1,14,1,13,1,14,16,33,2,14,13,13,1,14,8,13,1,33,1,13,2,14,1,13,3,30,2,9,1,1,2,11,2,1,6,28,7,1,274,}, + {1,103,28,1,29,1,1,10,14,1,5,1,14,17,33,1,14,6,13,1,30,4,14,5,13,1,14,2,30,1,28,2,14,1,30,1,28,2,13,1,14,5,33,1,13,1,30,1,13,1,28,1,13,1,14,1,33,1,13,1,14,2,13,5,33,1,14,1,30,1,13,5,14,2,33,1,13,1,33,1,14,15,5,2,33,1,14,1,33,5,13,4,14,9,33,1,5,1,14,1,13,2,30,2,28,2,13,1,14,7,1,43,14,1,30,1,28,4,13,2,14,12,28,1,13,1,30,1,28,2,13,1,30,1,13,2,14,32,33,2,14,5,33,2,13,2,33,1,13,5,14,2,1,2,11,1,1,7,9,1,28,4,1,1,28,2,1,273,}, + {1,103,28,1,12,1,1,9,14,17,33,1,5,1,14,1,33,1,14,7,13,4,14,4,13,2,14,2,30,1,28,1,30,1,13,1,28,1,30,1,13,1,14,5,33,1,14,2,30,1,13,1,30,1,13,4,14,2,30,1,13,1,30,1,13,3,14,1,30,1,13,2,30,2,13,1,14,17,33,2,14,1,5,1,33,2,13,2,14,2,13,3,33,1,14,2,13,1,14,11,13,2,28,1,30,1,28,2,14,9,1,20,11,2,1,18,14,1,16,1,30,2,28,3,30,3,14,11,13,1,30,1,13,1,28,3,13,1,30,1,13,1,14,1,33,2,14,19,33,1,14,10,33,2,14,5,33,1,14,3,33,1,13,3,14,3,33,1,14,1,1,1,11,1,1,8,28,7,1,273,}, + {1,102,28,2,1,10,14,17,33,1,5,1,14,1,13,1,14,1,33,1,14,6,33,1,14,1,33,1,5,1,14,7,30,1,28,1,30,1,13,1,28,1,13,3,33,1,14,1,33,3,14,1,13,7,14,2,13,1,30,1,13,1,30,1,13,1,30,1,14,2,13,3,30,2,13,1,14,17,33,2,14,3,33,1,13,2,14,2,13,1,30,1,14,1,5,1,33,1,14,1,6,1,13,1,33,1,14,7,33,1,13,2,28,2,30,1,28,2,14,11,1,18,11,1,27,1,11,1,1,2,11,1,1,12,14,2,13,1,30,1,28,1,30,1,28,3,30,2,28,1,13,1,14,10,13,1,30,2,28,2,30,3,13,1,14,1,33,2,14,19,33,2,14,7,33,1,14,11,13,1,33,1,14,1,13,2,14,2,33,1,13,1,33,1,14,1,1,9,9,1,28,1,1,1,28,3,1,274,}, + {1,96,28,3,1,3,28,1,16,1,1,9,14,1,33,1,14,18,13,1,30,1,13,1,33,1,5,1,14,3,13,2,30,1,13,1,14,1,33,1,5,1,14,3,5,1,14,2,28,2,14,2,30,1,13,1,30,2,33,2,14,2,33,1,13,1,30,1,13,6,14,2,13,1,30,1,13,2,30,1,6,1,14,2,13,4,30,1,13,1,33,1,14,1,33,1,14,15,33,1,14,4,6,1,14,1,13,1,14,1,13,2,14,2,5,1,14,1,13,3,14,7,13,3,28,5,13,1,14,9,5,1,14,2,1,17,11,1,1,14,14,2,33,1,14,1,13,1,28,2,30,1,28,4,30,1,28,1,13,1,14,10,13,1,30,1,28,5,30,1,33,1,14,4,33,1,14,17,33,2,14,7,33,1,14,3,33,2,14,5,33,1,6,1,33,1,14,1,33,1,14,1,33,2,13,1,30,1,33,1,14,1,1,10,28,5,1,274,}, + {1,96,28,3,1,2,28,2,1,10,8,1,33,1,14,18,13,1,28,1,13,1,14,1,5,1,14,1,13,2,6,1,13,2,14,10,28,2,14,2,13,1,14,1,13,2,14,1,13,2,14,1,5,1,13,1,30,1,13,1,33,1,13,3,14,2,33,1,14,1,13,3,30,1,13,1,33,1,14,1,13,4,30,1,13,2,33,2,14,5,5,1,14,14,6,1,13,1,33,1,14,5,33,1,14,3,33,1,14,6,33,1,13,3,28,4,30,2,14,11,33,1,14,2,11,1,1,26,14,4,33,2,14,1,13,1,28,7,30,2,13,1,14,10,13,2,28,5,13,2,33,2,14,2,33,1,14,31,33,2,14,4,33,1,13,1,14,2,5,1,14,1,13,1,14,2,30,1,13,1,33,1,14,1,1,9,9,1,28,1,1,1,28,2,1,274,}, + {1,96,28,3,1,2,28,1,9,1,1,9,14,1,13,1,14,1,5,2,14,16,13,1,28,1,13,1,14,2,13,1,28,1,13,1,14,1,5,2,14,2,5,2,14,6,30,1,28,1,13,1,14,1,13,1,14,4,13,2,33,1,5,1,14,1,13,1,14,5,1,1,14,5,13,3,33,1,13,8,33,1,14,6,33,1,14,14,13,2,14,2,33,1,5,1,14,2,33,1,14,10,33,2,6,1,30,2,28,4,13,1,14,19,11,1,1,8,11,1,1,2,14,3,15,1,9,1,14,1,1,2,14,2,13,1,30,2,13,3,30,3,28,6,30,2,13,1,14,10,13,2,30,2,28,2,30,1,13,1,30,1,13,2,14,5,33,1,14,12,5,1,14,15,13,1,33,1,14,3,33,1,14,5,13,2,14,1,33,1,30,1,13,2,14,1,1,9,11,1,28,4,1,274,}, + {1,96,28,3,1,1,28,2,11,1,1,9,14,1,33,1,14,3,33,1,14,15,30,1,28,1,13,2,28,1,30,1,13,1,14,3,33,1,14,2,5,1,14,4,5,1,14,2,30,1,28,1,13,1,14,1,13,1,14,2,33,2,14,1,13,1,14,3,1,13,14,2,13,2,6,1,13,2,30,1,13,4,14,6,33,1,14,15,33,1,14,1,5,1,14,2,33,1,14,1,33,1,14,10,5,1,14,1,33,1,13,1,30,2,28,1,30,1,28,1,13,1,14,16,5,1,14,2,33,1,5,1,14,6,13,1,30,1,13,2,28,1,13,1,28,3,14,6,30,1,28,1,13,1,33,1,13,1,30,2,28,8,30,1,13,1,14,11,13,1,30,2,28,3,13,1,30,1,33,1,13,1,14,2,33,1,14,2,5,1,14,6,5,1,14,12,5,1,14,8,13,1,33,1,14,2,5,1,33,3,14,3,13,2,14,2,6,1,13,3,11,1,1,9,10,1,28,1,1,276,}, + {1,96,28,2,1,2,28,1,6,1,1,9,11,1,5,1,14,20,13,1,30,2,13,1,28,1,13,1,33,2,14,5,33,1,14,4,5,1,14,2,13,1,28,1,13,1,14,4,33,1,14,3,1,18,14,2,13,2,14,1,30,4,13,1,14,6,5,1,14,7,13,1,14,7,33,1,14,1,33,1,14,1,33,1,14,1,33,1,14,11,5,1,14,2,13,1,28,1,30,2,28,2,30,1,14,15,33,1,14,3,33,2,14,1,13,4,30,1,28,3,13,1,30,2,28,2,30,1,33,1,14,2,5,1,14,2,13,1,30,1,13,1,33,1,14,1,30,2,28,8,30,1,13,1,14,11,13,1,30,1,28,3,30,2,28,1,13,2,14,3,13,1,14,1,5,1,14,2,33,2,14,8,33,1,14,1,33,1,14,4,5,1,14,4,13,1,14,2,13,2,33,1,14,2,5,1,14,1,33,5,14,1,13,1,14,1,33,1,13,1,14,2,13,1,14,1,1,9,11,1,28,2,1,7,28,2,1,2,28,3,1,261,}, + {1,96,28,3,1,1,28,1,17,1,1,9,14,1,5,1,14,21,30,1,13,2,30,1,13,1,14,7,33,1,14,7,13,1,28,1,13,1,33,2,14,4,1,22,14,3,13,4,14,7,5,1,14,7,13,1,14,6,33,1,14,4,13,2,14,12,5,1,14,2,13,1,30,1,13,1,30,1,28,3,14,14,33,2,14,1,33,1,14,4,13,2,30,3,28,3,13,2,28,1,30,3,13,2,14,6,33,1,14,2,30,1,28,9,30,1,13,1,14,10,33,1,14,1,13,1,30,1,28,3,30,1,28,1,30,1,13,1,14,3,6,1,33,1,14,3,33,2,14,10,5,1,14,9,13,1,33,1,14,1,6,1,13,1,14,2,33,1,14,3,33,2,13,1,33,1,14,1,13,1,33,1,14,2,13,1,33,2,13,1,14,1,1,9,7,1,28,1,1,2,28,1,1,4,28,9,1,259,}, + {1,96,28,5,1,10,14,7,33,1,14,13,6,1,13,2,14,2,30,2,14,7,33,1,14,7,13,1,28,1,14,1,33,1,13,1,14,2,1,14,11,1,1,10,14,2,13,1,14,11,5,1,14,18,6,1,13,1,14,1,13,1,33,1,14,1,5,1,14,10,13,3,30,1,28,2,30,1,14,12,33,1,14,1,33,2,14,1,33,1,14,4,30,5,28,3,30,1,13,1,28,1,30,3,13,2,14,5,33,1,14,3,30,1,28,9,30,1,13,1,14,10,33,1,14,1,13,1,30,1,28,4,30,3,33,1,14,2,6,1,13,1,14,1,13,1,33,1,14,22,13,2,33,1,13,2,14,2,33,1,14,2,13,2,14,1,13,1,33,1,14,1,33,2,14,1,13,2,33,1,13,2,14,1,1,9,11,1,28,5,1,3,28,1,1,1,28,7,1,259,}, + {1,96,28,4,9,1,1,9,14,1,5,1,14,4,33,3,14,12,30,1,13,3,14,2,13,2,14,15,30,1,28,1,14,1,13,2,14,1,1,3,11,1,1,8,14,1,13,4,14,1,1,9,14,1,33,2,14,19,33,1,14,7,33,1,14,1,30,1,13,1,14,1,13,1,33,1,14,1,5,1,14,4,33,2,14,1,33,2,14,1,13,1,30,1,13,1,28,3,30,1,14,12,33,1,14,2,33,1,14,4,13,1,14,1,13,1,30,2,13,1,30,1,28,1,30,2,13,2,28,2,30,1,28,1,30,2,14,2,5,3,14,4,30,2,28,8,30,1,13,1,14,13,30,2,28,3,13,1,30,1,13,2,14,2,13,1,14,2,13,2,14,23,13,1,33,1,13,1,14,2,33,1,14,3,30,1,13,1,33,1,14,3,33,2,14,1,13,3,30,1,13,2,14,1,1,9,29,1,28,8,1,1,28,3,1,263,}, + {1,96,28,2,1,1,28,1,11,1,1,9,14,6,33,1,14,14,30,1,14,1,13,2,33,3,14,4,33,1,14,1,13,1,33,1,14,8,28,2,14,1,13,1,14,1,1,12,14,1,33,1,30,2,13,2,33,1,14,1,1,9,14,1,33,1,14,2,5,1,14,16,13,1,14,9,30,1,13,3,14,7,33,2,14,1,33,2,14,1,13,2,30,1,28,3,30,1,14,20,13,1,33,1,14,1,13,3,28,1,30,2,28,1,30,2,28,2,30,1,28,2,13,3,5,3,14,4,13,2,30,1,28,8,13,1,14,12,33,1,13,1,30,2,28,2,13,1,30,1,13,2,14,1,33,1,13,1,14,3,13,1,14,18,33,2,14,3,13,1,14,1,13,2,14,1,33,1,14,3,28,1,13,1,14,5,13,1,14,1,13,3,30,2,13,1,14,1,1,9,12,1,28,5,29,3,28,5,1,262,}, + {1,95,28,4,29,1,1,9,11,1,5,1,14,19,13,2,14,1,13,2,33,4,14,5,13,1,33,1,14,3,5,2,14,3,28,1,30,1,14,1,33,1,14,1,1,11,14,1,33,2,30,2,13,1,30,1,13,1,16,1,1,9,14,2,33,1,5,2,14,16,13,1,14,8,13,2,14,1,13,2,14,7,5,1,14,5,33,2,13,1,28,3,30,1,14,18,33,1,14,2,13,1,33,1,13,1,6,1,13,1,30,2,28,2,30,2,28,1,30,2,28,2,13,1,30,1,13,1,14,9,13,1,28,8,13,1,14,13,13,2,28,2,30,3,13,2,14,2,13,1,14,2,13,2,14,17,33,2,14,4,33,1,14,1,13,2,14,1,33,1,14,2,13,1,30,2,14,1,33,2,14,2,13,1,14,1,13,3,28,1,30,2,13,1,1,10,12,1,16,1,11,1,1,6,11,2,10,1,28,3,1,260,}, + {1,95,28,4,9,1,1,9,14,10,5,1,14,10,30,1,13,1,14,1,13,1,30,1,14,1,33,2,14,11,5,1,14,4,28,1,30,1,33,1,14,1,1,12,14,1,13,2,30,1,13,2,30,1,33,1,14,2,1,9,14,1,5,1,14,1,5,1,14,16,33,1,14,8,33,1,13,1,14,1,30,1,33,1,14,1,33,1,5,1,14,7,33,1,5,1,14,1,33,1,14,1,13,1,28,3,30,1,14,16,33,2,14,2,33,1,13,1,30,1,13,1,30,1,13,1,30,1,28,2,13,2,28,2,30,1,28,3,13,1,30,1,13,1,14,1,33,1,14,5,5,1,14,2,13,1,28,7,13,1,14,13,13,1,30,2,28,2,30,1,28,1,30,1,13,1,14,1,13,6,14,19,33,1,14,4,33,1,14,2,33,1,14,3,13,2,30,1,14,1,33,1,14,2,13,3,30,1,13,2,30,1,28,2,13,1,14,1,1,22,16,1,28,3,1,258,}, + {1,95,28,2,1,1,28,1,11,1,1,9,14,10,5,2,14,9,30,1,14,1,13,1,30,2,14,2,5,1,14,13,5,2,14,1,28,1,30,1,14,2,1,12,14,1,13,1,30,2,14,2,13,1,33,1,14,2,1,9,14,1,33,1,14,1,5,1,14,16,33,1,14,8,33,2,14,1,6,1,33,1,14,1,33,1,14,1,5,1,14,6,33,2,14,3,13,1,28,3,30,1,14,16,33,2,14,2,13,2,30,1,13,1,30,4,28,1,13,1,30,1,28,2,30,1,28,3,13,1,30,1,14,1,33,2,13,2,14,3,33,1,14,2,13,1,28,7,30,1,14,5,5,2,14,5,33,1,13,1,30,1,28,3,30,1,28,1,30,1,13,5,6,1,13,1,33,1,14,21,13,2,14,1,13,1,14,1,13,2,14,3,33,1,14,1,13,1,14,6,33,1,30,1,13,2,30,2,28,1,30,1,14,1,1,14,11,1,1,1,11,1,1,6,11,1,28,3,1,257,}, + {1,95,28,3,29,1,1,9,11,1,14,11,5,1,14,1,33,1,14,7,13,1,14,1,30,1,13,2,14,9,5,1,14,3,33,2,14,4,28,1,30,1,14,1,1,13,14,1,6,1,30,2,14,1,13,1,30,1,13,1,14,1,1,10,14,5,33,1,14,13,33,1,14,9,33,1,14,1,13,2,14,1,33,1,14,7,5,1,14,5,13,2,28,1,30,1,28,1,30,1,14,16,33,2,14,2,33,1,13,1,30,1,13,1,30,1,28,1,30,1,13,1,28,1,30,2,28,2,30,1,28,2,30,1,13,1,30,1,13,3,30,1,13,1,14,2,5,1,33,1,5,1,33,1,14,1,30,1,28,5,13,1,14,4,1,8,14,2,13,1,30,1,28,3,30,2,28,1,30,1,13,5,14,2,33,1,14,15,33,1,14,4,13,2,14,1,33,1,14,1,13,2,14,3,5,1,14,9,13,3,30,2,28,1,30,1,13,1,14,1,1,8,11,1,1,4,11,1,1,9,11,1,28,3,1,256,}, + {1,92,28,2,1,1,28,3,9,1,1,9,14,14,33,1,13,1,14,6,13,1,14,1,30,1,13,1,14,3,33,1,14,6,5,1,33,1,14,2,33,1,5,1,14,3,13,1,28,1,13,1,14,1,1,14,14,1,13,2,14,1,13,1,30,1,14,2,1,11,14,1,13,1,14,2,33,1,14,16,33,2,14,1,5,1,33,1,14,4,30,1,13,1,14,1,33,1,14,3,33,2,14,4,33,1,14,2,13,1,30,1,13,1,30,1,28,2,30,1,14,15,33,1,14,3,33,2,13,1,28,1,13,1,28,2,13,1,30,8,28,1,13,4,30,2,28,1,13,1,14,2,5,2,14,1,5,1,14,3,13,2,14,2,11,1,1,14,11,1,14,1,28,4,13,1,28,1,30,2,13,4,33,1,14,22,33,2,14,2,13,4,33,1,14,3,5,1,14,2,13,1,33,1,5,2,33,1,13,2,30,1,28,1,30,4,13,1,1,13,11,1,9,1,11,1,1,8,16,1,28,1,1,257,}, + {1,92,28,2,1,1,28,3,11,1,1,9,14,15,13,2,14,5,13,1,14,1,13,4,14,1,13,1,14,2,33,1,14,7,33,1,14,4,13,1,28,1,13,1,1,2,11,2,1,12,14,1,5,2,14,1,16,1,14,1,1,12,14,1,13,1,33,1,13,1,14,4,33,1,14,12,33,2,14,2,5,1,14,4,13,2,14,1,5,1,14,2,5,1,33,1,14,1,1,4,14,1,33,1,14,1,13,1,28,1,13,1,30,1,28,3,14,15,33,3,14,1,13,1,14,1,13,1,28,1,13,1,28,1,30,1,13,1,30,7,28,1,30,1,13,1,30,1,13,2,30,2,28,1,13,1,14,5,1,4,11,2,1,1,11,2,1,16,26,1,28,3,30,4,13,1,33,1,30,1,13,2,14,21,33,1,14,1,33,1,14,2,13,3,33,1,14,1,13,2,33,1,14,3,13,1,14,1,5,2,14,1,13,1,30,1,28,2,13,1,30,2,13,2,14,1,1,10,15,1,13,1,26,1,28,1,30,1,9,1,14,1,1,7,28,2,1,256,}, + {1,92,28,2,1,1,28,3,1,9,14,16,33,1,13,1,14,5,13,1,33,1,14,1,13,1,30,1,13,1,14,1,13,1,14,1,33,1,14,6,33,2,14,5,13,1,28,1,14,1,1,2,11,2,1,30,14,1,13,1,33,1,13,1,14,8,33,2,14,16,13,1,30,1,14,4,33,1,14,1,1,5,14,3,13,1,30,1,13,1,30,1,28,2,30,1,13,1,14,10,5,1,14,3,33,1,14,1,33,1,14,1,13,1,14,1,13,1,30,1,13,1,30,1,13,2,30,7,28,1,13,1,30,2,14,1,13,4,14,1,1,13,11,1,1,16,11,1,14,1,28,3,30,3,13,2,30,1,13,1,30,1,14,21,33,1,14,1,33,1,14,2,13,3,14,2,13,1,30,1,13,1,14,5,5,1,14,2,13,1,28,3,13,2,30,1,13,2,14,1,1,9,11,1,28,7,9,1,1,6,9,1,28,1,1,256,}, + {1,95,28,2,7,1,1,9,14,17,33,1,14,5,13,2,14,2,30,1,13,1,14,1,33,3,14,2,33,1,14,3,33,1,14,6,13,1,28,1,14,1,1,1,11,1,1,1,11,1,1,31,14,1,13,1,14,1,33,1,14,7,33,2,14,1,5,1,14,14,13,2,14,4,5,1,14,1,1,6,13,1,33,2,13,1,30,1,28,3,13,1,30,1,14,10,33,1,14,5,33,1,13,1,6,1,33,1,30,6,28,3,30,2,13,2,30,1,13,2,16,1,14,2,1,2,12,1,1,12,11,2,1,18,11,1,9,1,13,1,28,1,30,2,13,2,14,1,13,1,14,1,13,1,14,2,5,2,14,18,33,1,6,1,14,2,13,3,14,2,13,1,30,1,13,1,14,7,13,1,30,3,28,1,13,4,14,1,33,1,11,1,1,9,30,1,28,7,13,1,1,5,11,1,28,3,1,254,}, + {1,96,28,1,12,1,1,9,14,3,5,1,14,12,33,2,14,6,13,3,30,1,13,1,14,1,33,2,14,1,5,2,33,1,14,2,33,1,14,1,33,1,14,5,30,1,28,1,14,1,1,1,11,1,1,33,14,1,33,1,14,1,5,1,14,10,33,1,14,10,33,2,5,1,14,1,13,2,14,1,13,2,14,4,1,4,14,1,5,1,14,1,13,2,30,1,28,3,13,2,14,10,5,1,14,9,30,2,28,1,30,3,28,1,30,1,28,2,13,1,14,1,13,1,14,1,11,1,1,6,11,1,1,12,11,1,9,1,1,18,11,3,29,1,28,1,30,1,13,2,33,1,13,1,14,4,5,2,14,19,13,1,14,1,13,4,14,1,30,1,13,2,33,1,14,3,5,1,14,2,13,2,30,3,28,1,30,1,13,1,30,2,13,1,30,1,14,1,1,9,14,1,28,7,29,1,11,1,1,4,11,1,28,3,1,1,28,1,1,252,}, + {1,94,28,3,11,1,1,8,14,17,33,2,13,1,30,1,13,1,14,3,13,1,14,2,13,1,33,1,14,1,33,2,14,2,5,2,14,1,5,1,33,1,14,1,33,1,14,5,30,1,28,1,14,1,1,35,14,1,33,1,14,1,33,1,14,23,33,1,14,2,13,1,33,3,14,3,5,1,14,6,13,1,30,1,13,1,30,1,28,3,30,1,33,1,14,13,5,1,14,2,33,3,14,1,13,1,30,4,13,1,28,1,13,1,9,1,15,1,1,2,11,1,1,8,11,1,1,11,11,1,25,1,9,1,11,1,9,1,7,1,28,9,6,1,16,1,1,4,12,1,1,2,9,1,30,1,6,1,13,2,14,4,33,2,14,15,5,1,14,3,33,1,14,1,13,3,14,4,13,2,14,1,33,2,14,2,5,2,13,1,30,1,13,2,30,1,13,1,28,1,30,1,13,1,30,1,13,1,14,1,30,1,14,1,1,10,29,1,28,7,14,1,1,5,28,2,1,2,28,2,1,251,}, + {1,94,28,3,1,9,14,18,33,1,13,1,28,1,30,1,14,1,33,1,14,2,33,1,14,2,33,1,14,1,33,1,14,15,30,2,1,36,14,1,33,1,14,1,5,1,14,9,5,1,33,1,13,1,14,4,5,1,14,4,33,1,14,1,33,2,14,1,13,2,14,8,5,1,33,1,14,2,30,2,13,1,28,4,30,1,14,11,33,1,14,1,5,2,14,2,13,1,14,2,13,5,14,3,1,13,11,2,1,6,11,1,12,1,6,1,29,1,28,3,26,1,15,1,28,13,29,1,11,1,1,2,11,4,14,1,13,2,14,1,33,3,14,1,33,2,14,19,33,1,13,1,30,1,13,1,30,1,13,1,14,1,33,2,14,3,33,2,14,4,13,1,28,1,30,1,13,3,30,1,13,2,30,1,13,1,14,1,13,1,33,1,14,1,1,9,9,1,28,6,30,1,14,1,1,5,28,2,1,2,28,3,1,250,}, + {1,92,28,4,7,1,1,9,14,19,13,1,28,2,30,1,13,1,14,2,13,1,33,1,14,3,33,1,14,15,30,2,11,1,1,35,14,1,33,1,14,13,13,1,14,7,33,1,14,1,33,1,14,1,33,1,14,2,13,1,6,1,14,10,13,2,30,1,13,2,28,4,30,1,14,11,33,1,14,4,13,1,6,1,14,2,33,1,14,2,11,1,1,17,11,2,1,1,11,2,9,1,29,1,28,8,26,1,9,1,25,1,28,14,11,1,1,1,11,2,1,3,14,1,30,1,13,1,33,2,14,23,33,1,13,4,33,1,14,1,13,2,14,3,13,1,33,1,14,4,13,1,28,1,30,1,13,7,14,2,33,2,14,1,1,9,11,1,28,6,30,1,14,1,1,5,28,2,1,3,28,2,1,250,}, + {1,92,28,4,16,1,1,9,14,19,13,2,30,1,28,1,13,1,14,2,13,1,14,20,30,1,28,1,14,1,1,34,14,1,33,1,14,11,5,1,14,2,33,1,14,7,33,1,14,6,13,1,28,1,13,1,14,8,13,2,30,1,13,1,33,1,13,1,28,4,13,1,14,14,33,1,5,1,14,3,11,1,1,20,11,1,15,2,11,1,27,1,28,10,26,2,9,1,15,1,28,15,11,3,1,3,11,1,30,1,13,2,33,1,14,24,13,3,33,1,14,1,13,1,30,1,13,1,14,1,33,1,14,1,13,1,33,1,14,1,33,1,14,2,30,1,28,1,30,1,13,1,33,1,13,4,33,3,14,1,13,2,1,10,13,1,28,5,30,1,11,1,1,5,28,2,1,4,28,1,1,250,}, + {1,92,28,2,1,1,28,1,11,1,1,8,14,20,30,3,28,1,13,1,14,2,13,1,14,12,33,1,14,7,28,1,30,1,14,1,1,34,14,1,33,1,14,14,33,1,5,1,14,3,5,1,14,2,33,1,14,2,13,1,33,1,14,1,33,1,14,1,13,1,33,1,14,8,13,3,30,1,14,1,30,1,28,4,30,1,14,11,33,1,14,4,1,10,11,1,1,4,11,1,1,3,11,1,12,1,25,1,6,1,11,1,27,1,26,1,27,1,9,2,28,10,26,2,27,1,15,1,29,1,28,15,11,1,1,5,15,1,14,1,13,2,33,1,14,17,33,2,14,4,30,1,13,1,14,1,13,1,14,1,13,2,14,1,13,1,6,1,13,1,14,3,33,1,14,1,13,1,30,1,28,1,13,1,14,2,13,1,30,1,13,1,30,1,33,2,14,1,13,1,30,1,13,1,14,1,1,9,14,1,28,5,13,1,1,5,11,1,28,1,1,2,28,2,1,252,}, + {1,93,28,1,1,1,28,1,1,9,14,20,13,2,30,1,28,1,30,1,14,2,13,1,33,1,14,10,33,1,14,8,28,1,30,1,16,1,1,4,11,1,1,29,14,2,5,1,14,14,11,2,14,2,33,1,5,1,14,3,13,1,30,1,14,16,13,1,6,1,13,1,30,1,28,5,14,6,5,3,14,3,1,14,11,1,1,4,12,1,16,1,6,1,28,5,15,1,26,4,9,1,15,1,28,8,26,4,15,1,9,1,28,15,26,1,11,1,1,5,14,1,13,2,33,1,14,21,33,2,13,3,30,1,13,1,33,2,14,1,13,1,30,1,13,2,14,2,33,1,13,3,30,1,13,2,14,1,30,2,13,2,33,1,13,1,14,1,13,1,30,1,13,1,14,1,1,10,13,1,28,4,15,1,1,5,17,1,28,1,1,2,28,2,1,252,}, + {1,94,28,2,1,9,14,18,5,1,14,1,13,1,33,1,13,1,30,1,28,1,13,1,14,1,33,2,14,3,5,1,14,5,33,2,14,5,5,2,13,1,28,1,13,2,14,1,11,1,1,1,11,2,1,28,14,3,5,1,14,14,1,4,14,5,33,1,13,1,14,3,33,1,14,8,33,3,13,1,33,1,13,2,30,3,28,3,13,1,14,5,5,1,14,1,11,1,1,18,11,1,12,1,25,1,28,8,25,1,27,1,26,4,27,1,15,2,28,7,9,1,26,3,9,1,15,1,28,16,26,1,11,1,1,5,14,1,33,2,14,12,33,1,14,6,33,1,14,1,33,2,13,3,30,1,14,1,13,1,6,1,13,4,30,1,13,1,14,1,33,1,30,2,13,1,30,1,13,1,30,1,14,1,28,1,30,1,13,1,33,2,13,1,14,1,13,1,30,1,13,1,5,1,14,1,1,9,14,1,28,3,30,1,11,1,1,5,8,1,28,1,1,1,28,2,1,253,}, + {1,94,28,2,1,9,14,18,5,1,14,3,13,1,30,1,28,1,30,1,13,1,14,11,33,1,14,6,5,1,14,1,30,1,28,1,13,2,14,1,11,1,1,1,11,1,1,29,13,1,14,18,1,3,14,1,33,1,14,3,5,1,14,4,33,1,14,2,5,2,14,4,13,2,14,1,13,1,33,1,14,1,13,3,30,1,28,2,30,1,33,1,14,3,11,1,1,19,11,1,10,1,28,12,9,1,26,5,27,1,9,1,15,2,28,5,29,1,9,1,26,3,27,1,15,1,26,1,28,16,9,1,1,5,14,1,33,1,14,1,33,1,14,11,33,2,14,5,33,1,14,2,13,5,33,1,14,1,13,1,30,1,13,1,14,2,13,1,14,3,30,2,13,2,30,2,14,1,28,1,30,2,33,1,13,1,14,2,13,3,5,1,14,1,1,10,29,1,28,2,14,1,1,6,28,2,1,1,28,2,1,253,}, + {1,93,28,3,1,9,11,1,14,11,5,1,14,8,13,2,30,1,28,2,13,1,14,1,33,1,14,16,5,1,14,1,30,1,28,1,30,1,13,1,14,1,11,1,1,1,17,1,11,1,1,27,14,1,28,1,14,3,5,2,14,12,5,1,14,3,33,1,13,1,14,1,13,1,14,1,33,2,14,2,33,1,14,7,33,1,13,2,30,1,14,4,13,2,30,2,28,2,6,1,14,1,1,19,11,1,9,1,28,15,27,1,9,1,26,4,27,3,9,1,15,1,9,1,28,4,9,2,26,3,27,1,15,1,12,1,28,16,12,1,11,2,1,4,14,1,33,2,14,11,13,1,33,1,14,5,33,2,14,1,13,4,33,1,14,2,13,2,30,1,33,2,13,1,14,2,13,1,28,1,13,3,30,1,13,1,14,1,30,3,14,1,13,1,14,2,13,2,33,2,14,1,1,10,9,1,13,1,11,1,1,6,16,1,28,2,1,1,28,2,1,253,}, + {1,94,28,2,11,1,1,9,14,11,5,1,14,7,33,1,13,1,30,1,28,2,30,1,13,3,14,18,30,1,28,1,13,1,6,1,13,1,14,1,1,1,17,1,1,28,14,1,13,1,14,18,33,1,5,1,33,2,13,2,28,1,13,3,14,1,33,2,14,7,33,1,13,2,6,1,5,1,33,1,14,2,30,1,13,2,30,1,13,2,14,1,1,16,11,1,15,1,6,1,28,18,9,1,26,4,27,5,9,1,15,1,9,1,28,3,9,1,26,4,9,2,11,1,28,16,11,1,15,1,11,1,1,1,11,1,1,2,14,1,5,1,14,12,33,2,14,5,33,1,14,2,13,2,14,1,33,2,14,1,13,3,28,1,14,2,13,1,33,1,14,1,13,1,28,1,13,2,30,1,13,5,30,1,14,1,33,2,14,3,33,2,14,2,1,7,11,2,1,9,28,3,1,3,28,2,1,251,}, + {1,93,28,3,8,1,1,9,14,11,5,1,14,9,30,3,13,1,30,3,13,1,14,4,33,1,14,12,30,1,28,1,13,2,28,1,13,1,14,1,15,1,1,27,14,4,5,2,14,9,5,1,14,6,5,1,33,1,14,1,30,1,13,1,28,1,13,2,33,1,14,1,13,1,14,4,5,2,33,2,14,2,6,1,13,1,14,1,33,1,14,2,8,1,9,1,14,1,1,3,11,1,1,13,11,1,9,1,29,1,28,20,26,1,27,1,26,4,27,5,26,1,9,1,11,1,29,1,28,1,27,2,26,4,27,1,9,1,11,1,29,1,28,14,15,2,27,1,11,2,15,1,1,3,14,1,5,1,14,3,5,1,14,8,33,2,14,5,13,3,33,1,14,2,33,1,14,1,13,3,30,1,14,2,33,2,5,1,13,1,30,1,13,2,30,1,13,1,6,1,13,1,33,1,13,1,30,1,14,1,33,2,14,1,13,1,33,3,13,1,16,1,1,7,11,1,9,1,1,8,6,1,28,3,1,3,28,2,1,251,}, + {1,93,28,4,1,9,14,1,5,1,14,9,5,1,14,8,13,1,30,1,13,3,30,1,28,2,13,1,14,3,5,1,14,13,30,1,28,1,13,2,30,1,13,2,15,1,1,27,14,1,33,1,14,2,5,2,14,9,5,1,14,6,33,2,14,1,30,3,13,1,33,3,13,1,14,7,33,1,14,2,13,2,14,3,1,6,11,1,9,1,1,10,12,1,7,1,28,24,26,6,27,7,9,1,15,1,25,1,9,1,26,5,27,1,9,1,15,1,9,1,28,13,29,1,11,1,9,1,26,1,15,1,12,2,1,3,14,1,33,3,14,1,5,2,14,7,33,2,14,5,13,2,33,1,14,5,13,6,33,1,14,3,13,1,14,1,13,1,30,1,13,1,14,2,33,1,13,1,30,1,14,1,33,2,14,1,13,2,33,1,14,1,13,2,1,8,12,1,1,7,8,1,28,4,1,256,}, + {1,95,28,2,11,1,1,9,14,19,33,1,13,1,14,1,13,2,28,2,30,1,13,2,14,2,5,1,14,13,30,1,28,1,14,1,30,1,28,3,9,1,1,22,11,1,1,3,5,1,33,2,14,1,5,2,14,19,33,1,13,1,30,1,13,1,30,1,33,1,13,2,33,3,14,10,1,8,11,2,1,8,16,1,29,1,28,27,26,8,27,1,9,2,27,3,9,3,26,5,27,1,9,2,11,1,28,13,16,1,11,1,9,1,26,1,9,1,11,2,1,4,5,1,33,2,14,1,5,1,14,8,33,2,14,4,33,1,13,2,14,2,5,1,14,3,13,1,33,1,14,2,6,1,30,1,14,4,13,1,33,1,13,2,33,1,14,3,13,1,30,1,14,1,13,3,30,1,13,4,30,1,14,1,1,6,11,2,1,5,11,1,6,1,28,2,1,259,}, + {1,95,28,2,9,1,1,9,14,22,13,2,30,1,28,1,13,2,28,1,13,1,14,15,30,2,14,1,30,1,28,3,13,1,14,2,1,23,14,1,33,1,5,1,14,2,5,2,14,17,33,1,14,1,33,1,13,3,30,1,13,3,33,2,14,2,33,1,5,1,14,3,11,1,1,11,11,2,1,5,11,3,28,17,26,1,28,10,26,9,27,1,9,3,27,3,26,7,27,1,9,2,11,1,29,1,28,12,11,1,15,1,9,1,26,2,15,1,11,1,1,4,14,1,33,1,14,2,5,1,14,14,33,1,13,2,14,1,5,1,33,2,14,4,33,2,13,2,14,2,13,2,33,1,14,3,33,1,14,1,33,1,14,2,13,1,14,1,13,1,30,1,13,1,30,1,13,6,1,7,12,1,1,3,11,1,9,1,28,4,1,259,}, + {1,96,28,1,29,1,1,9,14,20,33,1,14,1,13,1,30,2,28,1,30,1,13,4,14,14,28,1,30,1,14,1,30,1,28,3,30,2,13,1,16,1,14,1,1,19,14,1,5,1,33,2,5,1,14,2,5,1,14,3,5,1,14,11,5,1,14,2,13,1,33,1,14,1,13,2,30,2,13,3,33,2,14,4,1,17,9,3,11,1,15,1,9,1,15,1,11,2,15,3,11,3,15,1,28,8,9,1,11,1,9,1,26,1,28,8,27,1,26,7,27,2,9,1,27,5,26,7,27,1,9,2,15,1,12,1,28,11,9,1,11,1,9,2,27,1,26,1,27,1,15,1,1,5,16,1,33,1,14,1,5,2,14,5,5,1,14,4,5,1,14,1,33,1,14,1,33,1,13,1,14,1,33,2,5,1,33,1,14,1,33,1,14,1,33,1,14,1,13,2,30,1,14,1,13,1,33,1,14,3,33,2,14,1,33,1,5,1,14,2,13,1,30,1,28,1,30,3,13,5,11,1,1,5,11,1,12,1,1,2,9,1,28,5,1,260,}, + {1,97,28,1,11,1,1,8,14,22,33,1,13,1,30,1,28,2,30,1,13,2,28,1,13,1,14,13,28,1,30,1,13,1,28,3,30,2,28,1,13,1,33,1,14,3,1,15,14,2,33,1,13,2,33,1,14,17,5,1,14,4,13,2,14,1,33,1,13,1,30,2,13,2,30,1,13,1,14,2,1,17,17,1,27,1,28,4,11,1,9,5,15,1,9,3,27,2,15,1,26,1,28,7,15,1,27,2,9,2,26,1,28,5,27,1,26,8,27,4,9,2,27,2,26,7,27,1,9,3,11,1,28,11,11,1,15,1,9,3,26,2,15,1,1,5,14,1,33,2,14,1,5,1,14,3,5,1,14,5,33,2,14,1,33,1,13,4,14,1,5,1,33,2,14,3,33,1,13,3,30,1,13,2,14,4,33,2,14,1,33,1,14,1,33,1,14,1,13,1,30,1,13,2,30,1,13,4,30,1,28,1,14,1,1,5,11,2,1,2,6,1,28,5,1,260,}, + {1,97,28,1,12,1,1,9,14,20,33,2,13,1,30,2,28,1,30,1,6,1,30,1,28,1,13,1,14,13,28,1,30,1,13,1,28,4,30,2,13,1,33,1,14,1,33,1,14,7,1,5,14,1,16,1,9,1,14,1,30,1,13,4,14,23,33,2,14,1,13,2,30,1,13,1,14,4,1,15,11,1,9,1,28,7,26,1,11,1,9,9,27,2,9,1,15,1,28,6,27,1,9,1,26,2,27,2,9,3,28,2,26,1,9,1,26,8,27,4,9,2,27,2,26,7,27,1,9,3,11,1,25,1,28,9,27,1,11,1,9,2,15,1,9,1,26,2,9,1,1,6,5,1,14,6,33,1,14,3,33,4,14,2,13,1,33,1,13,2,14,2,5,1,14,3,33,1,13,2,33,1,14,1,13,1,30,2,14,5,33,1,14,2,33,1,13,3,30,1,13,2,30,1,14,1,13,3,30,1,28,1,13,1,1,5,11,2,1,2,16,1,28,3,1,262,}, + {1,97,28,1,7,1,1,9,14,18,5,1,14,1,13,5,30,1,13,2,30,1,28,1,13,1,14,13,28,1,13,2,28,1,30,1,28,2,30,2,13,1,14,2,5,1,14,12,13,1,30,2,13,1,30,1,13,1,14,1,13,2,14,1,13,1,33,1,14,2,5,2,14,3,5,1,14,10,6,1,14,2,33,2,13,2,14,2,1,16,11,1,16,1,29,1,28,9,12,1,15,1,9,12,15,1,26,1,28,5,9,1,27,1,26,6,9,1,11,1,15,2,27,1,26,8,27,4,9,2,27,2,26,7,27,2,9,2,15,2,28,9,11,1,15,1,9,2,15,1,9,1,27,1,26,1,27,1,11,1,1,5,14,1,33,1,14,9,33,2,14,3,13,1,33,2,13,2,14,7,33,1,14,3,13,1,30,2,14,9,13,6,30,1,14,1,13,1,33,1,13,1,28,1,30,1,14,1,11,1,1,3,11,2,1,3,11,1,28,3,1,262,}, + {1,97,28,2,1,9,14,1,5,1,14,18,13,6,30,1,13,2,30,1,13,1,14,12,13,1,28,1,13,2,30,2,28,1,30,3,13,1,14,1,5,1,33,1,14,3,5,2,14,8,30,2,13,1,30,1,13,2,30,1,33,2,13,2,14,2,5,2,14,9,5,3,14,2,30,1,13,1,14,4,1,16,11,1,9,1,29,1,28,12,11,1,15,1,9,11,27,1,9,1,15,1,28,4,26,1,9,1,26,1,27,1,26,1,27,1,26,3,27,1,9,3,26,9,27,4,9,2,27,2,26,7,27,2,9,3,11,1,28,8,6,1,11,1,9,6,27,2,11,1,1,5,14,1,33,1,14,4,33,2,14,2,33,1,14,2,13,1,33,2,13,1,14,2,13,1,33,1,14,5,5,2,14,4,13,3,14,3,33,2,14,3,13,1,30,1,13,6,33,1,13,3,30,2,13,1,14,1,1,4,11,1,1,4,6,1,28,2,1,262,}, + {1,98,28,1,11,1,1,9,14,19,13,2,33,1,13,3,30,1,13,4,33,1,14,1,5,1,14,7,5,1,14,1,13,1,28,1,13,2,30,1,28,1,30,1,13,1,30,3,33,2,14,14,30,2,13,1,30,1,13,1,28,2,13,1,5,1,33,1,13,2,14,14,5,1,14,2,6,1,14,1,11,1,1,16,11,1,16,1,29,1,28,15,11,1,15,1,9,11,27,2,15,1,28,4,15,1,9,1,26,1,27,4,26,2,27,4,26,9,27,7,26,8,27,2,9,3,11,1,10,1,28,7,17,1,15,1,27,1,9,3,15,1,9,1,27,1,26,1,15,1,1,6,14,1,33,1,5,1,14,2,33,2,14,2,13,1,14,2,13,2,33,1,13,1,14,2,13,2,14,5,5,1,14,2,33,1,14,2,33,1,13,2,14,3,13,1,33,1,14,2,13,1,30,2,13,1,33,1,14,1,33,2,14,4,13,1,30,3,13,1,1,9,16,1,28,2,1,262,}, + {1,98,28,1,9,1,1,9,14,15,33,1,14,3,13,1,33,1,14,1,13,1,30,1,33,1,13,4,33,3,14,10,13,1,28,1,13,2,30,1,28,1,13,1,30,1,13,1,30,2,33,1,14,1,33,1,14,13,30,2,13,3,30,1,28,1,30,1,14,3,13,1,14,17,1,16,11,1,9,1,28,10,26,1,28,8,11,1,15,1,9,7,27,1,9,3,27,2,9,1,25,1,28,2,29,1,15,1,27,6,26,2,27,4,26,10,27,7,26,6,27,2,9,4,15,2,28,7,11,1,9,4,15,2,9,1,27,2,9,1,11,1,1,5,14,1,33,1,5,1,14,1,13,1,14,3,33,1,13,1,6,1,14,1,13,1,33,1,14,2,13,1,14,1,13,2,14,8,33,1,14,1,5,1,33,1,13,1,14,1,33,1,5,1,14,1,13,1,14,2,13,1,30,1,28,1,30,2,13,1,14,1,33,3,14,3,13,1,30,3,13,1,14,1,1,8,11,1,28,2,1,262,}, + {1,98,28,1,29,1,1,9,14,2,5,1,14,12,33,1,14,6,13,2,33,1,14,2,13,2,14,1,33,1,14,11,13,1,28,1,13,2,30,1,28,1,13,1,30,2,13,2,14,2,33,1,14,8,5,1,14,2,5,1,14,1,30,6,28,1,30,1,14,3,13,2,14,12,11,1,1,16,11,1,10,1,28,6,30,1,9,1,12,1,15,2,11,1,15,1,9,2,28,6,7,1,11,1,9,8,27,1,9,3,27,2,26,1,9,1,28,2,9,2,27,1,26,3,27,2,26,3,27,1,9,1,27,1,26,1,27,1,26,8,27,7,26,5,27,3,9,4,15,1,11,1,28,6,9,1,15,1,27,1,9,3,15,2,9,1,27,3,15,1,1,6,33,1,14,2,13,1,14,3,13,5,14,2,33,1,6,1,14,1,13,2,14,10,5,1,33,1,13,1,14,1,5,1,14,3,13,1,14,1,13,1,30,1,28,1,30,2,13,1,33,2,14,2,33,3,13,1,30,3,13,1,14,1,1,4,11,1,1,4,6,1,28,3,1,12,28,2,1,246,}, + {1,96,28,4,1,9,14,2,5,1,14,16,33,1,14,1,33,1,13,3,14,2,33,1,13,1,14,13,30,1,28,1,13,2,30,3,28,1,13,3,14,1,5,3,14,1,5,2,14,7,5,1,14,1,30,4,28,3,30,1,14,1,5,1,14,1,30,1,13,1,14,9,11,1,1,16,12,1,7,1,28,8,29,1,11,1,15,1,9,2,27,2,26,4,28,5,12,1,15,1,9,12,27,2,26,1,9,1,25,1,26,1,15,1,27,1,26,4,27,2,26,3,27,1,9,1,27,1,26,1,27,1,26,9,27,6,26,3,27,1,26,1,27,3,9,5,11,1,27,1,28,5,11,1,9,1,27,1,9,3,15,2,9,2,27,1,26,1,9,1,1,6,14,2,13,2,14,2,13,3,14,1,13,2,14,2,33,1,13,1,14,1,13,2,14,12,33,1,14,5,6,1,13,1,30,4,13,1,14,1,13,1,33,1,14,4,33,1,13,1,28,2,30,2,14,1,1,4,11,1,1,4,16,1,28,3,1,12,28,2,1,246,}, + {1,96,28,2,1,1,28,1,17,1,1,9,14,17,13,1,33,1,14,1,33,1,13,3,14,2,33,2,14,3,13,2,33,1,14,7,30,1,28,1,13,1,14,1,13,1,30,3,13,1,30,1,13,1,5,1,14,1,5,2,14,2,5,1,14,6,5,1,14,1,13,4,30,1,28,3,13,1,14,3,30,1,13,1,14,2,5,2,14,2,11,1,1,16,12,1,6,1,28,11,12,1,15,1,27,6,26,3,27,1,28,4,12,1,9,10,27,1,9,2,27,2,26,1,27,1,15,1,11,1,9,1,26,3,27,4,26,3,27,1,9,1,27,2,26,9,27,7,26,6,27,1,9,6,15,2,28,4,9,1,15,1,9,5,15,3,9,1,27,1,26,2,11,1,1,5,14,1,33,1,13,2,33,1,13,2,14,1,13,1,14,1,13,2,14,2,33,2,14,1,13,2,14,2,33,1,14,9,33,1,14,2,33,1,14,2,13,2,30,2,13,6,5,1,14,4,13,1,28,2,30,1,28,1,30,1,11,1,1,8,11,1,28,3,1,12,28,4,1,244,}, + {1,96,28,2,1,1,28,1,9,1,1,9,14,21,13,1,33,3,14,1,33,2,14,2,13,4,14,7,30,1,28,1,13,1,14,1,13,1,30,1,13,1,30,1,13,1,28,1,13,1,14,12,5,2,14,1,13,1,30,4,28,3,13,1,14,1,30,1,13,2,33,1,5,1,14,2,11,1,1,15,11,1,17,1,30,1,28,14,11,1,9,2,27,5,26,5,28,3,11,1,9,13,27,1,26,2,27,1,9,2,27,1,26,3,27,4,26,3,27,4,26,9,27,2,26,1,27,4,26,6,27,1,9,4,15,1,9,2,11,1,28,4,11,1,9,1,27,1,9,4,15,4,9,1,26,2,9,1,1,6,14,1,33,1,13,1,33,2,13,6,33,2,14,3,13,1,14,14,33,2,14,1,13,2,30,1,13,1,30,3,13,1,30,1,13,3,14,6,30,3,28,2,14,1,1,9,28,2,1,7,28,6,1,1,28,3,1,244,}, + {1,96,28,2,1,1,28,1,29,1,1,9,14,21,13,2,14,1,33,1,14,3,33,3,14,2,13,2,14,6,30,1,28,1,13,1,5,1,13,3,30,1,13,1,30,1,13,1,14,12,5,2,14,1,13,1,30,1,13,1,30,6,13,1,28,1,13,1,14,2,11,1,1,16,12,1,29,1,28,16,9,1,15,1,9,2,27,2,26,1,27,3,26,4,27,1,26,1,29,1,15,1,27,2,9,11,27,1,26,2,27,1,9,1,27,1,26,3,27,5,26,3,27,4,26,10,27,6,26,6,27,1,9,4,15,1,9,2,11,1,27,1,28,2,25,1,15,1,9,1,27,1,9,5,15,3,9,1,26,2,27,1,11,1,1,5,14,2,33,1,14,2,13,1,14,1,13,2,30,1,13,2,33,1,14,2,33,1,13,1,14,14,33,2,13,1,30,1,13,1,30,1,13,2,28,1,30,1,13,3,14,1,13,1,14,3,5,2,14,1,13,2,30,1,28,2,14,1,1,9,10,1,28,2,1,6,28,5,1,2,28,3,1,244,}, + {1,97,28,1,1,2,28,1,1,9,14,12,5,1,14,4,5,1,14,2,13,3,14,1,33,2,14,2,33,1,13,1,14,3,13,1,6,1,14,6,30,1,28,1,13,1,5,1,14,2,33,1,13,3,14,1,33,2,14,10,5,2,14,1,13,3,28,1,30,2,13,1,30,1,28,1,13,1,16,1,14,1,1,16,16,1,29,1,28,19,11,1,9,1,27,1,9,1,27,2,26,1,27,3,26,5,15,2,9,1,26,1,27,1,9,10,27,7,26,2,27,6,26,2,27,5,26,9,27,7,26,3,27,1,26,2,27,1,9,3,15,1,9,3,15,1,9,1,28,2,11,1,9,1,27,2,9,5,15,3,9,1,27,2,26,1,15,1,1,5,14,2,33,2,13,1,30,1,14,1,13,2,30,1,13,2,14,1,13,1,14,1,33,1,13,1,14,15,13,2,28,1,13,1,30,1,14,1,30,1,28,1,30,2,13,2,14,1,33,2,14,2,5,2,14,1,13,2,30,1,28,2,13,1,11,1,1,8,11,1,28,2,1,3,28,2,1,1,28,6,1,1,28,3,1,244,}, + {1,97,28,4,17,1,1,9,14,20,13,1,30,1,14,2,33,2,14,1,33,2,14,2,33,1,14,1,13,1,33,1,14,5,28,2,13,1,14,1,33,2,14,2,13,2,14,1,33,1,5,1,14,12,33,2,30,1,13,1,30,1,28,1,30,1,13,1,9,1,14,1,1,16,16,1,7,1,28,21,25,1,11,1,9,1,27,8,26,5,27,1,26,3,9,1,15,1,9,9,27,3,26,1,27,4,26,2,27,3,26,4,27,5,26,9,27,7,26,3,27,1,26,2,27,1,9,3,15,1,9,4,15,1,28,1,27,1,15,1,27,4,9,4,15,3,9,1,27,4,11,1,1,5,14,1,33,1,13,2,30,1,13,1,30,1,13,1,30,3,13,1,30,1,13,1,6,1,13,2,33,1,14,12,33,2,13,1,28,1,13,1,30,1,13,1,30,1,28,1,13,1,28,1,13,2,14,6,33,1,14,1,13,1,28,1,30,1,28,2,13,1,14,1,1,9,28,14,1,1,28,3,1,244,}, + {1,97,28,4,9,1,1,9,14,20,13,2,14,3,33,3,14,6,33,1,14,5,28,1,30,1,13,4,14,2,13,2,14,3,33,1,14,12,33,1,13,1,30,2,9,2,11,1,1,5,11,1,1,9,11,1,6,1,28,24,17,1,9,1,27,9,26,9,9,11,27,8,26,2,27,3,26,4,27,5,26,9,27,7,26,3,27,4,9,2,15,2,9,4,15,3,9,4,27,1,9,5,15,2,9,1,27,4,11,1,1,5,14,2,33,1,13,1,30,6,13,1,30,2,13,2,14,1,33,2,14,12,33,1,13,2,30,2,28,1,13,1,30,3,28,1,30,2,14,6,33,1,14,1,30,1,28,1,30,2,28,1,13,1,14,1,1,9,9,1,29,1,6,1,8,1,9,2,16,2,9,2,7,1,29,1,28,6,1,244,}, + {1,97,28,4,6,1,1,9,14,16,13,2,14,1,33,1,14,2,33,1,14,3,13,1,33,1,14,3,33,1,14,7,13,1,28,1,13,1,30,1,13,3,14,2,13,2,14,3,33,1,14,9,33,1,14,1,5,1,14,3,11,1,1,1,11,1,1,14,11,3,28,15,9,1,26,1,28,7,6,1,11,1,9,2,27,5,9,1,27,2,26,7,27,2,9,11,27,6,26,1,27,1,26,3,27,3,26,3,27,5,26,10,27,6,26,3,27,1,26,1,27,2,9,2,15,1,9,6,11,1,15,1,9,11,15,2,9,1,26,1,27,2,15,1,1,5,14,3,13,1,30,3,28,2,13,4,14,2,33,1,14,4,5,1,14,10,13,1,30,1,13,1,30,1,28,1,30,1,13,2,28,2,30,2,33,1,14,5,5,1,14,1,13,1,28,1,30,1,13,4,1,22,11,1,9,1,28,3,1,244,}, + {1,97,28,5,1,9,14,1,5,1,14,14,13,1,6,1,14,2,5,1,14,1,33,1,14,3,30,1,13,1,14,11,13,1,28,1,13,3,14,1,13,2,33,3,14,3,5,1,14,8,33,2,14,2,1,11,11,1,1,5,11,1,15,1,9,3,15,2,28,11,9,1,15,2,9,1,15,1,11,1,15,1,9,1,26,1,28,3,12,1,15,1,9,2,27,3,26,1,27,2,9,1,27,2,26,6,27,2,9,11,27,8,26,3,27,1,26,1,27,1,26,3,27,4,26,11,27,4,26,8,27,1,9,2,15,1,9,1,15,1,9,6,27,2,9,9,15,1,9,2,27,2,26,1,9,1,1,6,14,2,13,1,14,1,13,2,28,2,13,2,33,1,13,1,33,1,14,1,13,2,14,5,33,1,14,4,5,1,14,2,33,1,13,1,30,5,13,1,14,1,30,1,28,1,30,1,13,1,33,1,14,4,5,1,14,2,30,2,13,1,14,2,13,2,14,1,1,24,16,1,28,3,1,242,}, + {1,97,28,3,1,1,28,1,11,1,1,9,5,1,14,13,33,1,14,1,13,1,14,4,33,1,14,3,13,2,14,11,13,1,28,1,13,2,30,1,33,1,13,2,14,1,5,2,33,1,14,1,5,1,14,4,5,1,33,1,5,2,14,2,1,14,11,2,16,1,11,1,15,1,9,7,15,2,28,9,11,1,9,1,27,6,9,1,15,3,9,1,11,1,15,1,9,1,27,4,26,1,27,2,9,1,27,2,26,6,27,1,9,12,27,7,26,4,27,1,26,1,27,7,26,1,27,3,26,8,27,5,26,4,27,1,26,2,27,1,9,2,15,1,9,4,27,1,9,2,27,2,9,10,15,1,9,2,27,1,26,1,27,1,9,1,11,1,1,5,14,1,33,1,13,1,14,1,13,1,30,1,28,2,13,1,33,1,14,1,33,2,14,1,13,2,14,5,33,1,14,7,13,1,30,1,28,1,30,1,28,1,30,1,28,1,13,5,14,6,5,2,13,1,30,1,13,1,14,3,13,2,16,1,1,25,11,1,28,3,1,241,}, + {1,97,28,1,1,3,28,1,9,1,1,9,14,14,33,3,14,7,33,2,13,1,33,1,14,10,30,1,28,1,13,1,30,2,13,3,14,2,5,4,14,3,5,2,14,2,1,15,12,1,8,1,28,3,9,1,15,1,27,3,9,5,15,2,28,7,9,1,15,1,26,3,27,6,9,2,15,2,9,2,27,10,26,6,27,1,9,12,27,7,26,4,27,1,26,1,27,11,26,9,27,5,26,3,27,1,26,2,27,1,9,3,15,1,9,3,27,1,9,2,27,2,9,10,15,1,9,2,27,4,15,1,1,5,14,1,33,1,13,1,33,1,30,2,28,2,13,1,14,2,13,1,33,1,14,1,13,2,14,7,5,2,14,5,30,1,28,1,13,1,30,3,13,1,30,1,13,2,6,1,13,1,33,1,14,4,5,2,13,1,30,1,14,3,13,1,30,1,13,2,1,26,11,1,28,2,1,241,}, + {1,101,28,1,6,1,1,9,14,1,5,1,14,12,33,1,14,7,13,1,14,1,13,3,14,1,5,1,14,9,30,1,28,1,13,2,30,1,13,3,14,6,5,2,14,2,1,15,11,1,13,1,28,6,9,2,27,3,9,6,15,2,28,5,29,1,11,1,27,1,26,4,27,1,9,1,27,3,9,3,15,1,9,2,27,10,26,6,27,2,9,11,27,4,26,2,27,2,26,2,27,2,26,1,27,11,26,9,27,5,26,6,27,1,9,7,27,6,9,2,27,1,9,7,15,2,9,1,27,3,9,1,1,6,13,3,30,3,28,1,30,1,14,2,33,1,14,1,33,1,13,1,14,7,5,2,14,6,30,1,28,1,13,1,14,1,13,8,14,1,33,1,14,3,5,1,14,1,13,2,14,2,33,1,13,1,28,1,30,2,11,1,1,26,11,1,28,1,1,241,}, + {1,101,28,2,1,9,14,1,5,1,14,9,33,1,14,10,13,1,14,1,13,1,30,1,13,1,14,1,33,1,14,9,28,1,30,1,13,4,33,2,14,7,1,15,11,1,16,1,30,1,28,8,9,2,27,3,9,7,15,2,28,4,15,1,9,1,27,1,26,1,27,2,26,1,27,1,9,1,27,3,9,6,27,11,26,5,27,2,9,11,27,4,26,1,27,3,26,2,27,2,26,1,27,8,26,1,27,2,26,9,27,3,26,7,27,1,9,3,15,5,9,16,15,2,9,2,26,1,27,2,11,1,1,5,14,1,13,2,30,3,28,1,30,1,13,1,33,1,5,1,14,1,33,1,13,1,14,11,33,1,14,3,13,1,30,1,33,1,14,1,30,1,13,1,30,3,13,1,14,1,33,1,14,8,13,1,14,1,33,2,13,1,28,1,30,1,28,1,14,1,1,10,14,3,9,3,14,3,1,8,7,1,28,4,1,237,}, + {1,99,28,1,1,1,28,2,11,1,1,8,14,1,5,1,14,3,5,1,14,5,6,1,14,4,5,1,33,1,14,4,13,1,14,1,13,1,28,1,13,1,14,11,28,1,30,1,13,2,33,1,13,1,33,2,14,4,11,1,1,15,12,1,29,1,28,11,9,2,27,3,9,8,15,2,28,2,25,1,15,1,27,2,26,2,27,1,26,2,27,4,9,6,27,13,26,4,27,1,9,11,27,1,9,2,27,4,26,3,27,1,26,2,27,8,26,1,27,2,26,9,27,4,26,3,27,3,9,1,15,2,11,7,15,5,11,2,15,6,9,3,15,1,9,1,27,1,26,2,9,1,11,1,1,5,14,1,13,2,30,2,28,3,13,1,33,2,14,1,33,2,14,9,33,1,14,1,33,1,14,1,33,1,14,1,13,2,14,1,13,1,28,1,13,1,30,3,13,3,14,8,13,1,14,1,13,4,28,2,14,1,1,10,9,1,13,2,30,7,9,1,1,6,12,1,28,4,1,237,}, + {1,99,28,1,1,1,28,2,9,1,1,9,5,1,14,2,5,1,14,6,33,1,14,5,33,1,14,5,13,3,14,3,33,1,14,8,28,1,30,1,13,2,33,1,14,1,5,1,33,1,14,2,1,15,11,2,15,1,28,13,9,3,27,2,9,9,15,2,10,1,11,1,9,1,27,11,9,7,27,4,9,1,27,6,26,6,9,14,27,4,26,11,27,6,26,9,27,6,9,6,27,3,26,2,29,2,28,5,29,1,26,3,9,1,12,1,15,1,11,4,15,1,11,1,15,1,9,1,26,2,27,1,15,1,1,6,13,2,30,2,28,3,30,1,14,1,5,1,14,1,33,1,14,6,33,1,14,3,33,1,14,1,33,1,14,1,13,1,33,1,13,1,33,3,13,2,30,2,13,2,33,1,14,8,33,2,14,1,13,1,30,1,13,2,30,1,28,1,14,1,1,10,14,1,13,2,30,7,28,1,13,1,1,5,17,1,28,8,1,233,}, + {1,101,28,2,6,1,1,9,14,3,5,1,14,18,33,1,14,1,33,2,14,2,33,1,14,8,28,1,30,1,13,2,5,1,14,1,33,2,14,1,1,14,11,1,9,1,27,2,9,2,28,12,9,2,27,3,9,8,27,1,9,1,15,1,11,1,9,1,27,7,9,1,27,3,9,8,27,4,9,1,27,4,26,1,27,1,26,6,9,10,27,1,9,4,27,3,26,9,27,7,26,10,27,1,9,2,15,2,9,1,26,1,28,25,26,1,9,1,12,1,11,4,27,3,9,1,11,1,1,5,13,2,30,2,28,3,13,1,14,1,5,1,14,12,13,1,14,2,33,1,13,1,14,1,33,1,5,1,33,2,14,2,6,1,30,1,13,2,14,9,13,2,14,1,30,2,13,2,30,1,28,1,14,1,11,1,1,9,14,1,13,2,30,9,14,1,1,5,28,12,1,229,}, + {1,100,28,4,1,9,14,24,13,2,14,11,28,1,30,1,13,1,14,1,5,1,14,2,33,1,11,1,1,11,14,3,11,1,9,1,26,4,27,1,9,1,28,10,15,1,27,4,9,14,27,6,9,1,27,3,9,8,27,11,26,6,27,1,9,1,15,1,9,7,27,1,9,3,27,3,26,8,27,9,26,10,9,1,15,1,9,1,27,1,28,32,27,1,12,1,11,1,15,1,9,3,11,1,1,5,14,1,13,1,30,2,28,2,30,1,13,1,14,1,5,2,14,11,13,1,14,2,13,1,30,1,13,1,33,1,14,1,33,2,14,4,13,2,14,7,5,1,14,1,13,2,14,1,30,1,28,1,30,1,13,1,30,1,28,1,14,2,1,10,13,2,30,9,9,1,1,5,28,8,1,1,28,3,1,229,}, + {1,99,28,5,11,1,1,8,14,25,13,1,14,10,13,1,28,2,13,1,14,4,33,1,14,1,1,8,11,1,14,2,5,1,33,2,14,1,11,1,27,1,26,4,9,2,26,1,28,8,15,1,27,3,9,15,27,2,26,2,27,2,9,2,27,1,9,7,27,1,9,2,27,10,26,7,9,1,15,2,9,10,27,2,26,9,27,9,26,7,27,1,9,1,27,1,26,1,28,36,29,1,26,1,28,1,26,1,27,1,15,1,11,1,1,5,11,1,28,4,30,2,14,2,5,2,33,1,14,6,33,2,14,3,5,1,14,1,13,1,28,1,30,1,14,1,33,2,14,2,13,2,14,12,13,3,30,1,13,1,30,1,13,1,28,1,30,1,14,2,1,10,14,1,13,2,30,8,9,1,1,5,28,8,1,2,28,3,1,228,}, + {1,99,28,5,16,1,1,9,14,20,5,1,14,7,33,1,14,6,13,1,28,2,13,1,14,4,33,1,14,1,1,6,14,3,33,2,5,1,14,3,11,1,9,1,26,9,28,6,11,1,27,3,9,16,27,1,26,2,27,1,9,11,27,1,9,1,27,5,9,1,27,5,26,7,9,1,15,2,9,9,27,3,26,9,27,7,9,1,27,2,26,7,28,45,10,1,1,6,30,1,28,3,30,1,28,1,13,1,14,1,5,2,33,1,14,6,33,2,14,1,33,1,14,3,13,1,28,1,30,1,14,1,33,2,14,2,13,2,14,4,5,1,14,6,13,2,6,1,13,1,30,2,28,1,13,1,30,2,33,1,14,1,1,10,14,1,13,3,30,3,28,1,30,3,14,1,1,5,28,6,1,3,28,6,1,226,}, + {1,99,28,5,8,1,1,9,5,1,14,19,5,2,14,6,33,1,14,6,30,1,28,2,13,1,14,7,1,2,14,9,5,2,14,2,11,1,26,8,9,1,26,1,28,5,11,1,27,1,26,1,27,1,9,15,27,2,26,2,27,1,9,11,27,3,9,1,27,3,9,2,27,4,26,7,9,1,15,2,9,9,27,3,26,5,27,1,26,1,27,1,26,1,27,11,26,1,27,1,26,1,28,43,29,1,28,5,12,1,1,5,13,1,28,3,30,2,13,1,14,1,5,1,14,3,33,2,14,4,33,1,14,1,33,1,14,3,33,1,13,1,30,1,14,2,33,1,14,2,13,2,14,2,5,2,14,7,13,4,30,1,13,1,28,1,13,1,30,2,33,1,14,1,1,10,14,1,13,4,30,2,28,1,30,1,28,1,30,1,14,1,1,5,28,10,6,1,12,1,11,2,9,1,28,4,1,222,}, + {1,102,28,2,29,1,1,9,14,1,5,1,14,18,5,2,14,6,33,1,14,6,30,1,28,1,30,1,14,1,33,1,5,1,14,16,33,2,14,1,13,1,15,1,9,1,26,9,9,2,28,3,11,1,27,3,9,1,27,1,9,11,27,1,9,1,27,2,26,2,27,3,9,8,27,3,9,2,27,3,9,2,27,1,9,1,27,3,26,6,9,12,27,3,26,4,27,1,26,2,27,6,9,2,27,4,9,2,27,1,28,50,29,1,1,5,14,1,28,4,30,1,13,1,33,2,14,9,33,1,14,1,33,1,14,1,13,4,6,1,33,1,14,1,5,1,33,1,14,2,33,1,14,2,5,2,14,4,5,2,14,1,30,1,14,1,13,2,30,1,13,1,30,1,13,3,33,1,14,2,1,10,13,5,30,3,28,1,13,1,1,5,11,1,28,2,1,1,28,6,9,1,1,5,11,1,28,2,1,223,}, + {1,102,28,3,1,9,14,1,5,1,14,14,33,1,14,18,28,2,13,1,14,1,5,1,14,3,5,1,14,3,5,1,14,5,5,2,14,2,33,2,13,1,30,1,13,1,11,1,27,1,26,9,27,1,15,1,25,1,26,1,15,1,27,2,9,1,27,1,9,12,27,9,9,8,27,3,9,2,27,3,9,2,27,1,9,1,27,3,26,6,9,10,27,5,26,3,27,10,9,2,27,2,9,1,15,1,9,1,29,1,28,46,26,1,28,5,11,1,1,4,11,1,28,5,30,1,13,2,33,2,14,7,33,1,14,1,5,1,14,1,13,5,33,1,14,2,5,1,14,5,5,1,14,5,5,1,14,1,13,1,30,1,14,1,13,2,30,3,13,1,33,1,13,1,14,3,1,10,9,1,13,4,30,3,28,1,16,1,1,5,12,1,28,8,8,1,1,7,17,1,28,3,1,221,}, + {1,102,28,3,11,1,1,8,11,1,5,1,14,28,5,1,14,4,28,1,30,1,14,1,33,1,5,1,14,3,33,2,14,2,5,1,14,9,33,1,14,2,13,2,14,1,9,1,26,10,9,1,15,2,9,1,27,2,9,14,27,10,9,7,27,3,9,2,27,3,9,4,27,3,26,6,9,10,27,5,26,1,27,9,9,1,27,2,9,3,15,2,9,1,28,48,26,2,28,4,12,1,1,5,30,1,28,2,30,2,28,1,13,2,14,1,5,1,14,1,5,1,14,5,33,1,14,3,13,2,30,1,13,2,33,2,14,4,5,2,14,6,5,2,14,1,13,4,30,3,13,2,14,1,13,1,14,3,1,10,14,1,13,5,30,2,9,1,1,6,6,1,28,7,6,1,1,9,7,1,28,2,1,4,28,3,1,214,}, + {1,102,28,3,16,1,1,9,14,8,5,1,14,25,28,1,30,1,14,1,33,2,14,4,33,1,14,10,5,1,14,1,13,4,30,1,13,1,9,1,26,10,27,7,9,2,27,1,9,6,27,1,9,2,27,7,9,2,27,2,9,6,27,8,9,3,27,4,26,7,27,1,9,2,15,1,9,6,27,13,9,4,27,2,9,3,28,51,26,1,28,4,27,1,1,5,14,1,28,3,30,1,28,1,13,2,5,1,14,3,33,3,14,4,13,1,30,3,28,1,13,2,33,2,14,12,5,1,14,1,33,1,13,2,30,2,13,2,30,1,13,1,33,1,14,1,13,1,14,3,1,10,11,1,13,5,30,1,13,1,1,6,11,1,28,3,1,1,28,4,1,10,11,1,28,2,1,4,28,3,1,214,}, + {1,104,28,1,7,1,1,9,14,8,5,1,14,15,33,1,14,9,28,2,33,1,13,1,33,1,14,4,33,1,14,3,33,1,14,6,5,1,14,1,30,1,13,1,30,1,14,1,13,1,30,2,15,1,26,9,27,1,26,1,27,5,9,9,27,1,9,2,27,7,9,1,27,3,9,7,27,7,9,2,27,5,26,6,27,2,9,3,15,1,9,5,27,3,9,1,27,1,26,1,27,7,9,4,27,1,9,1,15,1,26,1,28,52,26,1,28,5,11,1,1,4,14,1,30,1,28,2,30,1,28,1,13,2,5,1,33,1,14,3,33,2,14,4,13,1,30,2,13,1,30,1,33,1,13,2,33,1,14,14,33,1,13,2,28,1,30,1,13,2,28,1,30,1,13,3,14,4,1,10,16,1,13,4,14,1,1,7,7,1,28,3,1,1,28,3,11,1,1,11,28,2,1,4,28,4,1,213,}, + {1,104,28,2,1,9,14,8,5,1,14,15,33,2,14,8,28,2,13,3,14,4,33,1,14,3,33,1,14,3,5,1,14,4,30,3,14,1,30,3,14,1,9,1,26,8,27,1,26,1,27,5,9,2,27,1,9,6,27,1,9,1,27,8,9,10,27,8,9,2,27,6,26,5,27,1,9,4,15,1,9,4,27,16,9,2,15,1,25,1,28,60,12,1,1,5,13,1,28,2,30,2,13,1,14,3,33,5,14,2,13,1,33,1,13,2,30,1,13,2,14,19,13,3,30,3,28,1,30,1,13,2,33,1,14,2,5,1,14,1,1,10,14,1,13,1,30,2,14,1,1,7,16,1,28,4,1,1,28,2,12,1,1,12,29,1,28,1,1,4,28,4,1,213,}, + {1,105,28,1,11,1,1,8,14,1,5,1,14,7,33,2,14,7,33,1,14,15,28,2,13,3,14,8,33,1,14,3,5,2,14,3,30,3,13,1,28,1,30,1,13,2,15,1,26,5,27,1,26,2,27,6,9,3,27,1,9,8,27,7,9,12,27,10,9,1,27,4,26,5,27,1,9,4,15,1,9,5,27,14,9,2,11,1,27,1,28,54,29,2,26,1,28,4,25,1,11,1,1,3,11,1,13,1,28,2,30,1,13,4,14,1,33,2,13,1,14,3,33,1,13,1,33,2,13,1,30,1,13,1,14,20,30,1,6,1,14,1,30,1,28,3,13,1,14,5,5,1,14,1,1,10,14,1,13,2,14,1,1,7,11,1,28,7,9,1,1,13,8,1,28,1,1,3,28,2,1,216,}, + {1,105,28,1,11,1,1,8,11,1,33,1,14,8,33,1,14,7,33,1,14,14,13,1,28,1,30,1,13,3,33,1,14,12,5,1,14,3,28,1,30,1,28,1,30,1,28,1,30,1,13,1,28,1,15,1,9,1,26,4,27,9,9,1,27,3,9,7,27,7,9,13,27,9,9,2,27,4,26,5,27,1,9,2,27,1,9,1,15,1,9,5,27,13,9,1,15,2,26,1,28,56,29,2,28,4,29,1,1,5,14,1,30,1,28,1,30,1,13,2,6,1,13,1,33,1,14,1,33,1,6,1,14,3,13,2,14,1,33,1,13,1,30,2,14,2,33,1,14,17,30,2,14,1,13,2,30,3,13,1,14,4,5,1,14,1,1,10,11,1,14,1,1,8,11,1,28,2,1,1,28,4,8,1,1,2,11,1,1,11,16,1,28,1,1,2,28,2,1,217,}, + {1,105,28,1,16,1,1,9,5,2,14,15,33,1,14,4,5,1,14,9,13,1,28,1,13,5,33,1,14,11,5,1,14,3,30,1,13,1,28,4,13,1,28,1,13,1,11,1,27,1,26,3,27,4,26,1,27,8,9,7,27,6,9,14,27,9,9,2,27,4,26,5,27,1,9,2,27,1,9,1,15,1,9,5,27,11,9,2,15,1,9,1,28,59,29,2,28,4,11,1,1,5,30,1,28,2,13,4,14,1,13,3,14,3,13,2,14,1,33,2,30,2,13,1,14,17,33,1,14,1,30,1,13,3,33,1,13,2,30,1,13,1,14,7,1,18,11,1,28,2,1,3,28,2,6,1,1,2,11,1,12,1,1,11,11,1,28,1,1,6,28,2,1,213,}, + {1,105,28,1,7,1,1,9,14,21,33,2,14,5,5,2,14,2,30,1,28,1,14,1,13,5,33,2,14,9,33,1,14,1,5,2,13,3,28,3,30,2,28,1,14,1,15,1,26,4,27,8,9,1,27,3,9,7,27,6,9,14,27,1,26,2,27,5,9,3,27,4,26,6,27,1,9,1,27,1,9,1,15,1,9,6,27,9,9,1,15,1,11,1,26,1,28,60,29,1,26,1,28,4,12,1,1,5,30,1,28,2,13,9,14,2,13,2,14,3,13,3,14,6,33,1,14,10,13,4,30,1,13,1,33,1,13,2,28,1,30,1,14,7,1,17,11,1,28,3,1,3,28,1,6,1,1,2,11,2,1,12,11,1,28,1,1,6,28,2,1,213,}, + {1,105,28,2,1,9,14,3,5,1,14,24,5,2,14,2,30,1,28,1,14,1,30,2,13,1,33,1,13,2,33,1,14,9,33,1,14,1,5,1,14,1,13,2,30,1,28,3,30,2,28,1,16,1,14,1,26,3,27,9,9,11,27,6,9,14,27,1,26,2,27,1,26,1,27,3,9,2,27,6,26,5,27,3,9,8,27,8,9,1,15,2,26,1,28,62,26,1,28,4,26,1,1,5,30,1,28,2,30,1,13,7,30,1,13,1,14,1,13,2,14,1,33,1,14,2,13,1,33,1,14,6,33,1,14,10,13,7,28,1,13,1,28,1,30,1,14,7,1,16,12,1,28,4,1,1,28,3,11,1,1,1,11,3,1,13,28,2,1,5,28,2,1,213,}, + {1,106,28,1,1,9,14,23,5,1,14,2,5,1,14,1,5,2,14,2,30,1,28,1,14,1,30,2,13,1,33,1,13,2,14,15,13,1,28,1,30,2,28,2,30,2,13,1,14,1,9,1,26,1,27,12,9,9,27,6,9,14,27,3,9,1,26,1,27,4,9,1,27,6,26,7,27,1,9,8,27,7,9,1,15,1,9,1,29,1,28,63,26,1,28,5,1,5,13,1,28,1,30,1,13,3,30,1,13,4,28,1,30,1,33,2,13,1,14,1,33,1,14,2,13,1,14,7,33,1,14,11,13,6,28,1,13,1,30,2,14,7,1,15,10,1,28,2,1,4,28,2,11,1,1,3,11,2,1,13,28,2,1,5,28,2,1,213,}, + {1,106,28,1,11,1,1,8,14,26,33,1,14,1,5,2,14,2,28,2,14,1,13,3,14,1,13,2,14,2,33,1,5,1,14,11,13,1,30,3,28,1,30,1,13,1,30,1,13,1,14,1,11,1,27,3,26,1,27,9,9,4,27,1,9,6,27,4,9,14,27,4,26,1,27,4,9,1,27,6,26,7,27,1,9,1,27,1,9,2,15,1,9,4,27,3,9,3,11,1,9,1,28,65,26,1,28,5,11,1,1,3,11,1,14,1,30,2,13,1,14,1,30,2,13,2,30,1,13,1,30,2,14,2,30,1,13,1,14,1,13,1,14,1,6,1,14,1,33,1,14,14,33,2,14,1,13,1,30,1,13,1,30,2,13,1,28,1,13,1,30,1,13,1,14,7,1,13,12,1,28,4,1,3,28,2,17,1,1,4,11,1,9,1,1,13,6,1,28,1,1,5,28,2,1,213,}, + {1,106,28,1,16,1,1,9,14,27,33,1,14,2,13,1,28,1,30,1,14,1,13,1,30,2,13,3,33,1,14,1,33,1,5,1,14,7,33,2,14,2,13,1,30,2,13,1,30,3,13,2,33,1,14,1,15,1,27,2,26,1,27,8,9,5,27,1,9,7,27,3,9,14,27,2,26,1,27,1,26,2,27,11,26,3,27,5,9,3,15,1,9,1,27,1,9,2,27,3,9,1,15,1,11,1,9,1,28,66,26,1,29,1,28,4,9,1,1,5,13,1,28,1,13,1,14,1,13,1,30,1,13,1,30,1,13,2,30,1,13,1,14,1,13,2,30,1,33,1,13,1,14,1,6,1,14,1,33,1,14,15,33,1,14,1,13,1,30,1,14,1,13,1,30,1,13,1,28,1,30,2,13,1,14,8,1,10,11,1,6,1,28,3,1,2,28,4,16,1,1,5,11,1,9,1,1,13,8,1,28,1,1,5,28,2,1,213,}, + {1,106,28,1,8,1,1,9,14,25,33,2,14,3,13,1,28,1,30,1,14,2,30,2,13,1,30,1,13,1,14,2,33,2,14,7,13,4,14,1,13,3,30,3,13,1,33,2,14,1,11,1,9,1,27,10,9,13,27,3,9,14,27,2,26,1,27,1,26,2,27,7,26,2,27,1,26,4,27,3,26,1,27,1,9,1,27,1,9,1,15,2,27,2,9,2,27,2,9,1,11,1,27,1,28,67,26,2,28,4,26,1,1,3,11,1,1,1,16,1,30,1,13,3,30,1,13,1,30,1,13,1,33,1,30,2,13,1,30,1,13,2,14,1,33,1,14,1,13,1,33,2,14,17,13,2,14,1,13,1,28,3,30,2,13,1,14,8,1,9,9,1,28,3,1,1,28,1,1,1,28,4,9,1,1,7,17,1,1,3,11,1,1,9,9,1,28,2,1,2,28,4,1,213,}, + {1,106,28,1,6,1,1,9,14,25,33,1,14,4,13,1,28,1,30,1,13,2,30,4,28,1,13,1,14,1,13,1,33,1,14,5,5,1,14,1,13,1,6,1,13,2,14,3,6,1,13,1,30,2,13,1,14,2,33,1,14,1,15,1,9,1,27,4,9,1,27,4,9,2,27,1,9,10,27,3,9,3,27,1,9,10,27,2,26,1,27,1,26,2,27,2,26,1,27,4,26,2,27,1,26,4,27,5,9,1,27,1,9,2,15,1,9,6,15,1,27,1,28,69,26,1,28,5,1,3,11,1,1,1,14,1,30,2,13,3,30,2,13,2,30,3,13,3,14,3,33,3,14,12,33,2,14,2,33,1,13,2,14,1,13,1,28,4,30,1,13,1,14,8,1,9,6,1,28,3,1,3,28,3,7,1,1,11,14,1,16,1,14,1,1,8,16,1,28,2,1,1,28,4,1,214,}, + {1,106,28,2,1,9,14,30,13,1,28,1,30,1,6,1,13,1,30,3,28,2,13,2,6,1,14,6,33,1,14,5,33,1,14,1,33,2,13,3,14,3,33,1,14,1,11,1,9,1,27,3,9,4,27,1,9,3,27,1,9,10,27,3,9,3,27,1,9,2,27,1,9,8,27,1,26,1,27,1,26,2,27,2,26,1,27,4,26,2,27,1,26,4,27,7,9,5,27,1,9,1,15,1,11,1,26,1,28,69,29,1,28,6,11,1,1,4,11,1,13,1,6,1,13,3,28,1,30,1,13,1,30,4,13,2,30,1,33,1,14,4,33,1,14,9,5,1,14,2,13,2,14,2,33,1,14,1,13,3,30,1,28,2,30,1,13,2,14,4,5,1,14,2,5,1,1,9,9,1,28,3,1,3,28,2,7,1,1,11,14,2,13,1,14,1,1,8,12,1,28,7,1,214,}, + {1,59,28,2,1,46,28,1,11,1,1,8,14,1,5,1,14,2,33,2,14,18,33,1,14,5,30,1,28,1,13,4,30,2,28,2,30,1,13,2,33,1,14,2,33,1,14,7,13,2,33,1,13,1,33,2,14,1,13,2,14,2,13,1,33,1,14,1,12,1,27,3,9,4,27,1,9,12,27,5,9,3,27,1,9,2,27,1,9,8,27,1,26,4,27,7,26,8,27,2,9,2,27,2,9,5,27,1,9,1,11,1,27,1,28,69,29,2,28,6,11,1,1,5,13,4,30,1,28,2,30,2,28,1,30,1,28,1,30,1,14,1,13,1,33,1,14,1,33,2,14,11,5,1,14,2,33,2,14,4,13,3,30,1,28,2,13,2,14,5,5,1,14,2,5,1,11,1,1,8,17,1,28,3,1,1,28,3,29,1,1,12,13,1,30,1,13,1,14,1,1,8,11,1,28,3,1,2,28,2,1,214,}, + {1,60,28,3,1,44,28,1,17,1,1,8,14,1,5,1,14,3,5,1,14,6,5,1,14,10,33,2,14,5,30,2,14,2,30,1,13,1,30,2,28,3,13,1,33,2,14,2,33,1,5,1,14,5,13,5,33,1,14,2,13,2,14,1,5,1,33,2,14,1,11,1,9,2,27,1,9,4,27,2,9,11,27,4,9,4,27,3,9,8,27,2,26,4,27,3,26,2,27,2,26,8,9,1,27,1,9,3,27,2,9,5,11,1,9,1,28,78,9,1,1,3,11,1,1,1,14,1,13,3,28,4,30,1,28,3,30,1,14,1,33,1,13,1,14,1,13,1,33,1,5,2,14,1,5,1,14,12,33,2,14,1,33,1,13,1,30,3,28,2,30,1,13,1,14,10,1,8,11,1,28,7,11,1,1,11,14,1,13,1,30,1,13,1,14,1,1,8,11,1,28,2,1,4,28,1,1,214,}, + {1,60,28,4,1,43,28,1,9,1,1,9,5,1,14,4,33,1,14,1,33,1,14,17,5,1,14,3,28,1,30,1,14,2,30,1,13,1,30,2,28,1,30,1,28,1,30,1,13,1,14,3,33,2,14,4,13,1,30,1,13,3,6,1,33,1,14,2,13,2,14,4,33,1,14,1,15,1,9,1,27,1,9,5,27,1,9,14,27,1,9,4,27,3,9,8,27,2,26,4,27,5,26,1,27,1,26,3,27,1,26,4,9,1,27,1,9,3,27,2,9,3,15,1,11,1,27,1,28,79,26,1,1,3,11,1,1,1,14,1,13,1,30,1,13,1,28,4,30,1,28,2,30,2,13,1,14,1,13,1,14,1,13,1,14,2,5,1,14,1,5,1,14,12,33,1,14,2,33,1,13,1,30,2,28,3,30,1,13,1,14,10,1,9,28,6,11,1,1,11,14,1,5,1,13,1,30,1,13,2,1,8,11,1,28,2,1,219,}, + {1,60,28,4,1,43,28,1,7,1,1,9,14,5,5,1,33,2,14,21,28,1,13,1,14,2,13,1,14,1,13,1,30,1,28,1,13,1,28,3,13,3,33,1,14,2,33,1,5,1,14,1,33,1,13,1,14,1,13,1,33,2,14,1,33,1,6,1,13,2,33,1,14,2,5,1,33,1,14,1,11,1,9,2,27,1,9,4,27,2,9,13,27,1,9,5,27,1,9,10,27,1,26,4,27,4,26,6,27,1,26,3,27,1,9,1,27,2,9,2,27,2,9,3,11,1,9,1,28,81,11,1,1,5,14,1,30,1,13,1,28,4,13,1,30,1,28,1,30,2,13,1,14,4,13,1,14,3,5,1,14,5,33,1,13,1,14,5,13,1,33,1,14,1,33,1,13,1,30,3,28,3,13,1,14,10,1,9,6,1,28,4,11,1,1,11,14,4,33,2,14,1,1,8,11,1,28,1,1,220,}, + {1,56,28,2,1,2,28,2,1,45,28,1,29,1,1,9,14,1,5,1,14,5,33,1,14,8,5,1,14,7,13,2,14,2,13,1,28,1,13,1,14,2,33,1,14,2,13,1,30,1,13,1,30,2,28,1,30,2,13,1,14,3,33,1,5,1,14,1,33,1,13,1,14,2,33,2,14,1,13,1,30,2,13,1,33,1,14,2,33,2,14,2,11,1,9,1,27,2,9,3,27,4,9,11,27,1,9,16,27,2,26,2,27,5,26,1,27,1,26,4,27,2,26,1,27,2,9,1,27,1,9,4,27,2,9,1,11,1,9,1,28,82,17,1,1,5,13,1,28,1,30,1,28,1,30,1,28,2,13,1,28,2,30,1,13,1,14,3,5,1,13,1,30,1,13,1,14,2,5,1,14,5,33,1,13,1,14,4,33,2,14,1,13,3,30,3,28,2,30,1,13,1,14,10,1,9,10,1,28,3,12,1,1,11,14,1,5,1,14,2,5,2,14,2,1,9,28,2,1,3,28,2,1,214,}, + {1,60,28,2,1,42,28,2,1,2,28,1,1,9,14,1,33,1,14,5,33,1,14,1,33,1,14,14,13,3,14,1,13,1,28,1,13,1,14,2,5,1,14,2,13,4,30,2,28,2,13,1,33,1,13,1,14,2,33,1,14,1,33,1,13,1,14,1,33,2,14,1,13,3,30,1,13,1,14,3,5,2,33,1,14,1,11,1,9,1,27,1,9,4,27,4,9,7,27,1,9,3,27,1,9,17,27,1,26,3,27,4,26,6,27,2,26,1,27,2,9,1,27,1,9,5,27,1,15,1,12,1,28,83,9,1,1,4,15,1,30,3,28,1,30,1,28,2,30,1,28,2,30,1,33,2,14,2,33,1,13,1,28,1,13,1,14,15,13,1,14,1,13,2,33,1,30,2,28,3,30,1,13,1,14,10,11,1,1,8,16,1,28,2,16,1,1,11,11,1,14,4,5,1,14,3,1,9,28,2,1,3,28,1,1,215,}, + {1,59,28,2,1,43,28,5,11,1,1,8,14,1,5,1,14,3,5,1,14,1,5,1,14,1,33,1,14,18,13,1,28,1,13,1,14,2,5,2,33,1,14,1,33,1,13,2,30,2,28,2,30,1,13,3,14,1,33,1,13,1,14,1,13,1,14,1,33,1,14,1,13,1,30,2,13,4,33,1,14,1,33,1,14,1,5,1,14,1,11,2,9,5,27,4,9,11,27,1,9,17,26,4,27,5,26,5,27,7,9,6,15,1,26,1,28,83,26,1,1,5,14,1,30,1,28,5,30,1,28,2,30,1,33,1,14,3,13,2,28,1,13,2,14,10,33,2,14,2,33,1,14,1,13,2,33,1,13,1,30,2,28,2,30,1,14,8,5,1,14,3,1,8,11,1,28,1,9,1,1,12,14,1,5,1,14,7,1,9,28,2,1,3,28,1,1,215,}, + {1,59,28,3,1,2,28,2,1,38,28,5,17,1,1,8,14,8,5,1,33,1,14,8,33,1,14,5,33,1,14,2,5,1,13,1,28,1,13,1,14,3,5,3,14,1,13,2,28,1,30,1,28,3,13,2,30,1,14,2,13,2,33,1,5,1,33,1,13,1,30,3,13,4,33,1,14,1,33,1,14,1,5,1,14,2,11,1,9,4,27,5,9,15,27,1,9,13,27,1,26,13,27,8,9,3,15,1,9,1,26,1,28,85,1,5,14,1,13,1,28,5,30,1,28,2,13,2,14,3,13,2,30,1,13,2,14,4,5,1,14,5,33,1,14,1,33,1,14,3,30,1,13,2,30,1,28,1,30,1,28,2,30,1,14,8,5,1,14,1,5,1,14,1,1,9,12,1,1,12,14,1,33,1,14,1,5,1,14,6,1,9,28,2,1,219,}, + {1,54,28,2,1,4,28,2,1,2,28,4,1,36,28,2,1,2,28,1,16,1,1,9,14,1,5,1,14,6,33,1,14,8,13,1,14,7,5,1,14,1,30,1,28,1,14,5,33,1,5,1,14,1,13,2,30,1,13,1,28,3,30,1,13,4,30,1,13,1,14,1,33,2,30,4,13,5,33,1,14,2,5,1,14,2,1,1,15,1,9,3,27,3,26,1,27,1,9,15,27,1,9,6,27,3,9,4,27,1,26,6,27,1,26,6,27,1,9,1,27,6,9,3,11,1,29,1,28,86,11,1,1,5,30,2,28,6,30,1,13,1,30,1,13,2,14,1,13,2,30,1,13,1,30,1,13,1,14,7,5,1,14,1,33,1,14,1,33,1,14,1,33,2,13,4,30,2,28,2,30,1,14,8,5,1,14,1,5,1,14,1,1,21,14,2,5,1,14,5,5,1,14,2,1,9,28,2,1,219,}, + {1,54,28,3,1,3,28,8,1,40,28,1,8,1,1,9,14,5,33,1,14,11,33,1,14,6,33,1,14,1,13,1,28,2,14,7,13,1,30,1,13,1,30,1,13,1,30,1,28,3,13,2,30,1,13,3,14,1,33,1,13,1,30,4,13,4,30,1,14,7,11,1,9,2,27,4,26,1,27,2,9,5,27,1,9,15,27,4,9,1,27,3,26,6,27,1,26,3,27,1,26,2,27,1,9,1,27,3,9,1,27,2,9,2,15,2,28,82,29,1,28,4,17,1,1,3,11,2,30,2,28,2,30,2,28,1,30,1,13,2,28,1,13,3,14,1,13,1,30,1,13,1,30,1,13,1,14,14,33,1,13,5,28,3,30,1,14,12,1,20,14,12,1,9,28,2,1,3,28,2,1,214,}, + {1,54,28,2,1,2,28,3,8,1,12,1,11,1,16,1,6,1,28,3,1,37,28,3,30,1,1,9,14,5,5,1,14,20,13,1,28,2,14,7,30,1,28,1,13,3,30,1,28,3,13,1,30,2,13,3,14,3,30,1,13,1,30,1,28,1,13,2,30,1,13,1,30,1,14,7,1,1,15,1,27,2,26,2,27,1,26,1,27,2,9,15,27,2,9,3,27,9,26,6,27,5,26,2,27,1,9,1,27,1,26,1,27,1,9,1,27,1,9,2,15,1,11,1,26,1,28,81,29,2,28,4,9,1,1,5,13,2,28,2,30,1,28,2,13,2,30,3,13,1,33,1,14,1,30,1,28,1,30,1,28,1,13,1,33,1,14,13,33,1,13,1,30,4,28,3,13,1,14,12,1,19,14,13,1,9,28,3,1,218,}, + {1,56,28,4,11,1,1,5,17,1,29,1,28,1,1,3,28,1,1,1,28,1,1,31,28,4,1,9,14,1,13,2,14,1,5,1,14,21,13,1,28,2,14,6,13,2,28,1,13,3,30,1,28,4,30,1,13,2,14,1,33,2,14,1,33,1,30,1,13,1,30,1,28,1,13,1,30,2,13,3,14,5,5,1,11,1,15,1,27,2,26,2,27,5,9,13,27,3,9,1,27,10,26,8,27,6,9,2,27,1,26,1,27,3,9,2,11,1,9,1,28,82,29,1,28,5,26,1,1,5,14,1,13,1,28,4,30,1,13,1,14,1,13,1,28,1,30,1,13,1,14,2,28,2,30,1,28,1,13,2,14,13,5,1,13,1,30,2,28,4,13,2,33,1,14,11,1,18,14,14,1,9,28,3,1,218,}, + {1,55,28,4,17,1,1,8,6,1,28,6,1,33,28,2,11,1,1,8,14,1,13,1,33,1,14,3,5,1,14,19,13,1,28,2,14,7,13,1,30,1,13,2,30,2,28,5,30,1,13,1,14,1,33,2,14,1,33,1,30,1,13,1,30,1,28,1,30,3,13,3,14,7,11,1,9,1,27,2,26,1,27,6,9,11,27,1,9,1,27,5,26,3,27,2,26,10,27,7,9,2,27,1,26,1,27,1,9,1,27,1,9,1,15,2,29,1,28,85,29,1,28,2,29,1,1,5,14,1,13,1,30,1,28,4,13,2,30,1,28,2,13,3,30,1,28,1,30,1,13,3,14,8,33,1,14,5,13,1,30,1,28,5,13,2,33,1,14,10,5,1,14,1,1,16,14,15,1,9,28,2,1,219,}, + {1,57,28,2,1,10,6,1,28,7,1,29,28,4,11,1,1,8,14,24,5,2,13,1,28,2,14,7,13,2,30,3,13,1,28,5,30,1,13,1,33,1,14,2,33,1,14,1,13,1,30,1,13,1,28,1,30,3,13,1,14,1,13,1,14,7,1,1,15,1,27,9,9,3,27,1,9,6,27,2,9,2,27,7,26,1,27,2,26,9,27,7,9,2,27,1,26,1,27,1,9,1,27,1,9,1,11,1,26,1,28,86,26,1,28,2,26,1,1,5,14,1,33,1,13,1,28,1,30,1,28,2,13,2,28,3,30,1,28,1,30,2,28,1,30,1,13,3,14,8,33,1,14,2,5,1,14,3,13,1,30,1,28,1,30,1,28,2,13,1,14,1,33,1,14,10,5,1,14,1,1,15,14,16,1,8,11,1,28,2,1,219,}, + {1,56,28,2,9,1,1,11,7,1,28,6,1,28,28,3,1,1,28,1,12,1,1,8,11,1,14,1,33,2,14,7,5,1,14,14,13,1,28,2,14,5,5,2,33,1,14,1,13,4,30,1,28,5,13,1,33,1,14,1,33,2,14,1,13,1,30,1,13,1,30,1,13,3,14,2,13,1,14,8,11,1,9,1,27,8,9,3,27,1,9,6,27,2,9,1,27,4,26,2,27,5,26,1,27,2,26,6,27,6,9,3,27,1,26,1,27,1,9,1,27,1,9,2,28,87,29,1,28,2,26,1,11,1,1,5,14,1,13,1,30,4,14,1,13,1,28,3,30,2,13,1,30,1,28,1,30,1,33,1,13,1,33,1,14,8,33,1,14,6,13,2,30,1,13,1,30,1,28,1,30,1,14,2,5,1,14,9,33,1,14,1,1,14,14,15,5,1,14,1,1,8,11,1,28,2,1,3,28,1,1,215,}, + {1,56,28,2,11,1,1,12,8,1,28,4,1,30,28,2,1,1,28,1,9,1,1,9,5,1,33,3,13,1,14,20,13,1,28,1,30,1,14,6,33,5,14,1,13,1,28,1,30,1,28,4,30,1,13,2,33,2,13,2,30,1,13,2,14,1,13,1,33,2,14,10,1,1,9,1,27,12,9,6,27,5,26,1,27,1,26,2,27,5,26,8,27,7,9,3,27,1,26,2,27,1,9,1,11,1,26,1,28,73,26,2,28,15,26,1,11,1,1,3,11,1,1,1,13,1,14,1,13,1,30,4,13,1,28,3,30,3,28,3,13,3,14,14,13,4,30,2,28,1,30,1,33,1,14,11,5,1,14,1,1,13,11,1,5,2,14,2,5,1,14,10,33,1,14,1,1,8,11,1,28,1,1,4,28,2,1,214,}, + {1,56,28,2,1,14,9,1,28,3,1,1,28,3,1,25,28,5,7,1,1,9,14,3,13,2,14,18,5,1,14,2,28,1,30,1,14,7,33,2,14,1,13,1,14,1,13,1,30,2,28,4,30,1,13,7,14,3,13,2,14,1,33,1,14,9,11,1,15,1,9,3,27,3,9,2,27,4,9,3,27,1,9,2,27,5,26,1,27,1,26,2,27,1,26,2,27,1,26,3,27,2,26,4,27,4,9,1,27,2,9,3,27,1,26,2,27,1,15,1,9,1,28,74,9,1,15,1,26,1,28,15,11,1,1,3,11,1,1,1,13,1,14,1,13,3,30,2,13,1,30,1,28,2,30,3,28,3,30,1,13,2,14,11,5,1,14,2,6,1,13,3,30,2,28,1,30,1,14,9,5,1,14,4,1,12,14,3,5,1,14,10,5,1,14,2,33,1,14,1,1,8,11,1,28,1,1,4,28,2,1,214,}, + {1,54,28,4,1,15,9,1,28,6,1,25,28,5,29,1,1,9,14,1,33,1,14,1,6,1,13,1,14,18,5,1,14,2,28,1,30,1,14,10,13,3,30,2,28,6,30,1,13,3,14,3,33,1,14,2,13,1,14,1,33,1,14,10,11,1,9,3,27,4,9,1,27,4,9,3,27,1,9,3,27,3,26,8,27,1,26,3,27,2,26,4,27,4,9,1,27,2,9,3,27,1,26,1,27,1,9,1,15,1,29,1,28,74,9,1,28,1,25,1,26,1,28,14,11,1,1,2,11,1,1,2,13,1,14,2,33,1,14,1,13,1,28,1,30,1,13,2,30,1,13,1,30,1,28,4,30,1,13,1,30,1,13,1,14,13,13,4,30,1,28,2,30,1,14,11,5,1,14,1,1,13,14,3,5,2,14,12,5,1,14,1,1,8,17,1,28,1,1,2,28,2,1,216,}, + {1,56,28,1,6,1,1,16,16,1,28,4,1,26,28,3,1,2,28,1,1,9,14,2,33,1,13,1,14,7,5,1,14,7,33,1,14,3,5,2,13,1,28,1,13,1,14,10,13,3,30,2,28,1,30,1,28,5,13,2,14,4,33,1,14,2,33,1,14,10,5,2,11,1,9,1,27,12,9,6,27,3,26,6,27,3,26,3,27,2,26,5,27,3,9,1,27,1,9,4,27,1,26,1,27,1,15,1,27,1,28,75,9,1,28,2,10,1,9,1,28,13,11,1,1,5,14,4,33,1,13,1,30,1,28,1,13,1,30,1,13,3,28,5,13,1,6,1,13,1,14,10,5,1,14,1,13,5,30,1,28,2,30,1,14,10,5,1,14,1,1,12,11,1,5,1,14,17,5,1,14,1,1,8,16,1,28,1,1,2,28,2,1,216,}, + {1,56,28,1,7,1,1,17,12,1,28,3,1,1,28,1,1,4,28,1,1,8,28,2,1,1,28,1,1,7,28,2,1,3,28,1,11,1,1,8,14,2,33,1,14,3,5,1,14,4,5,1,14,13,13,1,28,1,13,1,14,11,13,4,30,1,13,1,28,5,30,1,13,1,33,1,5,1,33,1,14,15,5,2,14,1,15,1,27,13,9,5,27,4,26,5,27,3,26,3,27,2,26,5,27,3,9,2,27,1,9,3,27,2,9,1,15,1,28,13,29,1,28,62,9,1,28,3,27,1,9,1,28,12,11,1,1,5,14,4,33,1,13,1,28,2,30,3,33,1,13,1,28,4,30,1,13,3,14,12,13,4,30,1,28,2,30,1,13,1,14,11,1,13,14,1,33,1,14,1,5,2,14,15,1,9,9,1,28,2,1,1,28,2,1,216,}, + {1,56,28,1,8,1,1,18,17,1,28,3,1,4,28,4,1,6,28,2,1,1,28,1,1,10,28,3,11,1,1,8,14,1,33,1,5,1,14,3,5,1,14,4,33,1,14,13,13,1,28,1,13,1,14,10,13,1,30,1,13,3,28,1,30,1,28,5,30,1,13,1,14,1,5,1,14,16,5,1,14,2,11,1,9,3,27,10,9,5,27,3,26,6,27,3,26,2,27,2,26,6,27,1,26,1,27,1,9,2,27,1,9,3,27,2,9,1,27,1,28,14,29,1,28,61,9,1,28,4,26,1,9,1,28,11,11,1,1,5,13,2,14,2,33,1,14,1,30,5,14,1,13,1,28,4,30,1,13,2,14,13,13,2,14,1,13,1,28,3,13,1,14,9,5,1,14,1,1,13,14,7,13,2,14,12,1,9,7,1,28,3,1,2,28,2,1,214,}, + {1,56,28,1,10,1,1,19,11,1,28,3,1,3,28,4,1,1,28,2,1,17,28,3,12,1,1,8,14,1,33,1,14,9,33,1,14,13,13,1,28,1,14,12,30,1,13,2,30,1,28,8,13,1,14,7,33,1,14,13,11,1,15,1,9,2,27,2,26,1,27,7,9,5,27,3,26,6,27,3,26,2,27,1,26,9,27,1,9,2,27,1,9,6,28,15,29,1,28,61,25,1,28,6,9,1,29,1,28,9,12,1,1,5,30,1,28,1,14,1,33,3,13,1,30,3,13,1,14,2,28,4,30,2,14,2,5,1,14,5,5,1,14,3,5,1,14,2,33,1,14,1,13,1,30,4,33,1,14,9,1,13,14,8,30,2,14,8,5,1,14,3,1,8,11,1,29,1,28,3,1,2,28,2,1,214,}, + {1,56,28,1,10,1,1,20,11,1,28,2,1,3,28,4,1,1,28,2,1,9,28,2,1,1,28,1,1,4,28,3,9,1,1,8,14,3,13,1,33,1,14,16,33,1,14,3,30,1,28,1,14,10,5,1,14,1,13,1,14,1,13,1,28,1,30,1,28,7,13,2,33,1,14,1,33,1,14,3,33,1,14,14,11,1,9,3,27,3,9,1,27,6,9,3,27,5,26,4,27,4,26,12,27,1,9,8,27,1,28,77,27,1,28,7,15,1,29,1,28,8,12,1,1,5,13,1,30,1,14,1,33,1,14,1,13,3,30,2,14,1,5,1,14,1,30,1,28,3,30,2,14,8,5,1,14,6,13,1,33,1,13,2,30,3,13,1,14,8,1,13,14,3,5,1,14,4,13,1,28,1,13,1,14,8,5,1,14,3,1,9,28,4,1,218,}, + {1,54,28,1,1,1,28,1,8,1,1,22,6,1,28,2,1,1,28,7,1,1,28,2,1,6,28,4,1,4,28,3,8,1,1,8,11,1,14,2,13,2,14,10,33,1,14,9,30,1,28,1,14,9,5,1,33,1,14,4,28,1,13,1,28,7,13,3,14,2,5,2,14,1,13,1,33,1,14,13,11,1,9,3,27,3,9,2,27,7,9,1,27,4,26,5,27,4,26,12,27,1,9,7,15,1,26,1,28,77,27,1,28,8,12,1,26,1,28,7,12,1,1,5,13,1,30,1,14,1,33,1,14,1,13,3,30,1,13,1,14,1,5,1,14,1,30,2,28,1,30,2,13,1,14,12,5,1,14,1,33,1,13,4,30,1,13,1,30,1,13,1,14,5,33,1,14,1,1,13,14,1,5,1,14,4,33,1,14,1,13,1,28,2,14,11,5,1,14,1,1,9,28,4,1,218,}, + {1,56,28,1,6,1,1,14,11,1,1,8,6,1,28,1,1,1,28,3,1,1,28,3,1,2,28,1,1,14,28,3,6,1,1,9,14,3,33,1,5,1,14,6,33,1,14,12,30,1,28,1,14,10,5,1,33,1,14,1,33,1,14,1,30,1,13,1,30,1,28,6,30,1,13,1,14,1,33,1,14,1,33,1,5,1,14,1,13,1,14,14,11,1,15,1,9,1,27,4,9,3,27,10,26,8,27,2,26,4,27,2,26,6,27,1,9,7,15,1,28,78,25,1,28,9,12,1,26,1,28,6,12,1,1,5,8,1,13,1,14,2,13,4,30,1,13,1,14,3,13,1,30,3,13,2,14,4,33,1,14,5,13,1,14,1,33,3,14,1,13,7,14,4,5,1,14,1,1,13,14,1,33,4,14,1,13,1,30,1,13,1,30,1,28,1,30,1,14,11,5,1,14,1,1,8,11,1,28,2,1,1,28,1,1,218,}, + {1,56,28,2,1,9,14,2,1,3,11,1,1,9,8,1,28,4,1,1,28,3,1,17,28,4,1,9,5,1,33,1,14,2,5,2,14,5,33,1,14,3,33,1,14,8,28,1,30,1,14,11,33,1,14,3,13,2,30,1,28,4,30,2,28,1,30,1,14,1,33,1,14,1,13,1,33,1,14,1,13,1,14,3,5,1,14,11,15,1,9,1,27,2,9,1,27,1,9,2,27,11,26,14,27,3,26,5,27,1,9,6,15,1,9,1,28,78,25,1,28,10,15,1,27,1,28,5,9,1,1,5,9,1,13,1,14,2,13,4,30,1,13,1,14,3,13,1,30,5,14,4,33,1,14,1,5,1,14,3,13,1,14,1,33,1,14,1,33,1,13,1,30,1,13,1,14,3,13,2,14,3,5,1,14,1,1,13,14,1,33,2,13,2,33,2,13,1,28,2,30,2,13,1,14,11,5,1,1,9,12,1,28,1,1,221,}, + {1,55,28,3,1,9,14,1,5,1,14,1,1,13,9,1,28,5,1,17,28,2,1,1,28,3,1,9,33,2,14,1,33,1,5,1,14,19,28,1,30,1,14,11,33,1,14,1,33,1,14,1,13,2,30,1,28,2,30,1,28,1,30,2,28,2,13,3,30,1,13,1,14,1,33,1,14,2,5,1,14,12,11,1,9,1,27,1,9,2,27,1,9,2,27,12,26,13,27,3,26,5,27,1,9,6,15,1,26,1,28,77,29,1,27,1,28,11,12,1,9,1,28,4,25,1,1,5,13,1,14,4,13,3,30,1,14,5,30,3,28,1,30,1,13,1,14,1,33,1,14,1,33,1,14,1,5,2,14,1,33,2,14,1,33,1,14,1,13,2,30,1,13,1,14,3,33,2,14,4,1,13,14,2,5,2,13,3,33,1,13,1,28,2,30,1,13,1,14,12,5,1,1,9,9,1,28,3,1,219,}, + {1,55,28,3,11,1,1,8,14,2,5,1,14,1,1,13,16,1,28,4,1,16,28,3,1,2,28,2,11,1,1,8,33,2,14,16,33,1,13,1,14,3,13,1,28,1,30,1,14,11,33,1,14,1,13,1,14,1,13,2,30,4,28,1,13,1,28,2,30,1,28,2,13,2,33,1,14,17,1,1,15,1,27,1,9,5,27,3,9,1,27,3,9,1,27,1,9,1,27,2,26,14,27,2,26,5,27,2,9,5,15,1,28,78,26,1,27,1,28,12,9,2,28,3,27,1,1,5,16,1,14,4,13,3,30,1,33,1,14,4,30,1,28,2,30,1,28,1,30,1,13,1,33,1,13,2,14,1,5,1,14,2,5,1,14,3,13,5,14,1,5,2,14,2,33,1,5,1,14,1,1,13,14,5,33,1,13,2,14,1,13,1,28,2,30,1,13,1,14,1,5,1,14,7,33,3,14,1,1,9,7,1,28,3,1,219,}, + {1,56,28,2,17,1,1,8,14,3,5,1,14,1,11,1,1,12,12,1,28,3,1,8,28,2,1,7,28,2,1,2,28,2,11,1,1,8,14,1,33,1,14,14,5,1,14,2,6,1,13,1,14,2,13,1,28,1,30,1,14,13,13,3,14,1,13,3,28,3,30,1,28,4,13,1,14,19,1,1,15,1,9,7,27,2,9,1,27,5,9,1,27,3,26,13,27,2,26,6,27,1,9,5,15,1,28,78,26,1,25,1,28,13,9,1,15,1,28,2,27,1,1,5,16,1,14,4,13,1,14,1,13,1,30,1,14,5,13,1,28,1,30,1,28,1,30,1,28,1,30,1,13,4,33,1,14,2,33,1,14,2,13,5,14,6,33,1,14,1,1,13,14,1,33,1,14,1,13,1,14,1,33,1,13,2,14,2,13,1,28,2,13,2,14,9,13,2,33,1,14,1,1,9,28,2,1,221,}, + {1,57,28,1,9,1,1,9,14,3,13,1,33,1,14,1,1,12,11,1,28,2,1,2,28,2,1,4,28,2,1,12,28,1,17,1,1,8,14,2,33,1,14,13,5,1,14,2,13,2,33,1,14,1,13,1,28,1,30,1,14,13,13,7,28,3,30,2,28,3,30,1,13,3,14,17,11,1,9,7,27,2,9,1,27,9,26,3,27,1,26,1,27,1,26,6,27,3,26,7,9,2,15,1,9,1,15,1,9,1,28,78,26,1,25,1,28,14,9,2,28,1,26,1,1,5,14,2,5,1,14,3,13,1,30,2,13,1,14,5,30,2,28,3,30,1,13,2,30,1,13,1,14,3,13,1,14,2,30,1,13,1,14,1,6,1,33,1,14,5,5,1,14,1,1,13,14,1,33,2,14,1,6,1,13,2,30,1,13,1,14,2,13,1,30,1,28,1,30,1,13,1,14,9,33,3,14,1,1,8,11,1,28,3,1,1,28,4,1,215,}, + {1,54,28,4,6,1,1,9,14,1,33,1,14,1,13,1,33,1,5,1,14,1,1,12,11,1,28,5,1,17,28,2,16,1,1,8,14,2,33,1,14,13,5,1,14,3,13,1,33,1,14,1,13,1,28,1,30,1,14,12,13,2,14,1,13,1,30,1,13,2,30,2,28,8,30,2,13,1,14,2,33,1,14,14,11,1,9,2,27,1,9,4,27,2,9,1,27,3,26,2,27,4,26,12,27,3,26,7,27,1,9,1,15,1,9,1,15,1,27,1,28,78,26,2,28,15,29,1,26,1,9,1,1,5,14,6,13,1,28,2,13,1,14,5,13,1,30,1,28,4,13,1,30,2,13,1,14,2,13,1,6,1,14,2,13,1,14,2,33,1,14,5,5,1,14,1,1,13,14,3,33,1,14,1,30,1,13,2,30,2,13,1,33,1,14,1,13,1,28,1,13,2,14,10,33,1,14,1,1,9,16,1,28,1,1,3,28,2,1,217,}, + {1,54,28,5,1,9,11,1,14,4,5,2,14,1,1,12,11,1,29,1,28,3,1,17,28,2,9,1,1,9,5,1,33,1,14,17,13,2,14,1,13,1,28,1,30,1,14,10,5,1,14,1,30,2,33,1,13,3,30,2,28,9,30,2,13,1,14,17,1,1,9,4,27,1,9,2,27,2,9,2,27,3,26,1,27,4,26,11,27,4,26,7,27,1,9,1,15,2,11,1,26,1,28,69,27,1,26,1,28,7,27,1,29,1,28,17,11,1,1,5,14,6,13,1,30,1,28,1,13,1,14,6,30,1,28,4,30,2,13,1,30,1,13,1,14,1,13,2,14,1,5,1,14,2,5,1,14,1,5,2,14,4,1,13,14,1,33,1,13,1,14,1,33,1,14,1,30,1,13,2,30,2,13,1,33,1,13,5,14,1,5,1,14,8,33,1,14,1,1,9,8,1,28,1,1,222,}, + {1,54,28,5,17,1,1,9,14,1,5,1,14,2,5,2,33,1,14,1,1,13,7,1,28,2,1,18,28,1,7,1,1,9,14,1,13,1,14,17,13,2,14,1,30,1,28,1,13,1,14,11,13,1,28,1,30,2,13,1,30,4,28,2,30,1,28,6,30,2,13,1,14,17,1,1,15,1,9,3,27,1,9,2,27,3,9,1,27,3,26,1,27,3,26,10,27,6,26,7,27,1,9,1,15,1,11,2,29,1,28,69,11,2,27,1,28,6,27,1,29,1,28,17,12,1,1,5,14,5,33,1,14,1,13,1,28,1,13,1,14,6,30,1,28,2,30,1,28,1,30,4,13,1,14,1,13,2,14,1,5,1,14,7,5,1,14,1,1,13,14,2,13,1,30,1,14,1,13,1,14,1,13,6,33,1,13,2,14,2,13,1,14,10,5,1,14,1,1,9,28,2,1,222,}, + {1,54,28,1,1,1,28,3,8,1,1,9,14,1,5,1,14,2,33,1,14,4,1,13,10,1,28,2,1,17,28,1,6,1,1,9,14,1,6,1,13,1,14,12,33,1,14,1,33,1,14,1,13,3,28,2,14,12,13,1,28,1,30,2,13,1,30,7,28,7,13,4,14,14,5,1,14,1,11,1,9,3,27,1,9,1,27,2,26,1,27,1,9,1,27,3,26,1,27,3,26,10,27,7,26,7,9,1,15,1,11,2,28,70,11,1,29,1,12,1,27,1,28,5,27,1,28,16,10,1,17,1,1,6,14,5,33,1,14,2,30,2,14,1,5,1,14,4,30,1,28,1,30,1,28,2,30,1,28,3,13,2,30,1,13,1,14,1,5,1,14,8,1,13,14,1,5,1,14,1,13,1,28,1,13,1,33,1,14,1,33,1,13,4,14,1,5,1,14,1,30,1,13,1,14,12,33,1,14,1,1,8,11,1,28,1,1,223,}, + {1,56,28,4,1,5,11,1,1,4,14,1,13,2,14,1,30,1,14,1,33,1,14,2,1,13,9,1,28,2,1,1,28,2,1,9,28,2,1,2,28,2,1,9,14,1,6,1,13,1,14,7,5,1,14,4,33,1,14,1,5,1,14,1,13,1,14,1,13,1,28,2,14,12,33,1,13,1,30,2,13,1,30,5,13,1,28,8,30,1,13,4,14,13,5,1,14,1,11,1,9,2,27,2,9,1,27,4,9,1,27,2,26,1,27,2,26,1,27,1,26,10,27,7,26,6,27,2,9,1,11,2,28,60,12,2,28,7,29,1,12,1,28,2,9,2,28,4,26,1,28,12,29,1,9,1,11,1,1,9,5,1,14,7,30,1,28,1,13,1,14,2,5,2,14,1,13,1,28,1,30,1,28,2,30,1,28,4,13,1,30,1,13,1,14,1,5,1,14,7,1,13,14,4,13,1,28,1,13,3,14,1,13,5,5,1,33,1,30,1,13,1,14,2,13,1,33,1,14,8,33,1,1,9,16,1,28,1,1,223,}, + {1,56,28,2,1,1,28,1,17,1,1,9,14,1,13,3,30,1,14,1,33,1,14,3,1,13,16,1,28,4,1,8,28,3,1,1,28,3,1,9,14,1,13,3,14,7,5,1,14,8,13,1,30,1,28,1,30,1,14,11,33,1,13,1,14,1,30,2,13,1,30,5,13,1,28,1,30,3,28,5,30,2,13,2,33,1,14,14,11,1,9,1,27,3,9,1,27,10,26,1,27,1,26,10,27,7,26,7,27,1,9,1,11,1,12,1,28,45,25,1,9,1,26,1,28,11,27,1,12,2,9,1,28,6,26,1,12,1,28,3,9,2,28,3,27,1,28,9,7,1,17,1,1,8,11,1,1,3,11,1,33,2,14,3,33,1,14,2,13,1,28,1,13,1,14,2,5,2,14,2,13,1,30,1,28,4,30,1,28,2,30,2,13,1,14,1,5,1,14,6,1,13,14,4,13,1,28,1,30,1,14,1,33,2,14,1,33,1,13,2,30,1,13,1,33,1,14,1,30,1,13,4,14,10,1,9,7,1,28,1,1,223,}, + {1,59,28,1,6,1,1,9,11,1,14,1,30,1,13,1,30,1,14,2,5,1,14,1,5,1,14,1,1,13,11,1,28,2,1,9,28,2,1,1,28,4,1,9,14,1,33,1,14,1,13,1,14,7,5,2,14,7,30,1,28,2,30,1,14,1,5,1,14,8,33,2,13,1,14,1,30,1,13,2,30,1,28,1,30,1,28,1,30,1,13,1,30,2,28,1,30,1,28,5,30,2,13,3,14,14,11,1,9,1,27,3,9,1,27,5,9,1,27,6,26,10,27,1,26,1,27,5,26,7,27,1,15,1,11,1,12,1,28,44,12,1,29,1,28,1,29,1,25,1,28,10,12,1,28,2,12,1,9,1,28,5,9,2,28,4,25,1,12,1,28,2,9,1,28,6,8,1,11,1,1,15,14,2,33,1,14,3,33,1,14,2,13,1,28,1,30,1,14,2,5,2,14,3,13,1,28,4,30,1,28,3,30,1,14,1,5,1,14,6,1,13,14,1,5,1,13,2,14,1,13,1,28,1,30,1,14,7,30,1,13,2,14,1,30,1,13,2,30,1,13,1,14,8,33,1,14,1,1,9,28,1,1,224,}, + {1,60,28,1,11,1,1,9,14,1,30,1,13,1,30,1,14,2,5,1,14,4,1,13,11,1,29,1,28,4,1,4,28,2,1,1,28,5,11,1,1,8,14,1,33,1,13,3,14,8,5,1,14,6,13,1,30,1,28,1,13,1,14,10,33,2,13,2,30,1,13,1,14,1,30,1,28,2,30,1,13,1,30,1,13,1,30,3,28,5,13,1,30,1,14,2,13,2,14,13,11,1,12,1,9,1,27,1,9,2,27,2,26,1,27,2,9,1,27,1,26,1,27,4,26,10,27,7,26,6,27,2,15,1,11,1,9,1,29,1,28,41,29,1,9,1,29,1,28,4,9,1,28,8,27,2,28,3,11,1,27,1,28,4,12,1,30,1,28,5,30,1,12,1,26,1,9,1,28,2,29,1,9,1,11,1,1,16,14,2,33,1,14,1,33,1,14,1,5,1,14,1,33,1,14,3,28,2,14,2,5,2,14,3,13,1,28,4,30,1,28,3,30,1,14,1,5,2,14,4,1,12,14,4,6,1,13,1,5,1,14,1,30,2,14,1,33,1,14,2,13,1,14,2,13,2,30,1,13,4,30,1,28,1,13,1,14,8,1,9,17,1,28,1,1,224,}, + {1,60,28,1,26,1,12,1,1,8,14,1,30,1,13,2,14,2,33,1,14,6,1,13,6,1,28,5,1,2,28,8,11,1,1,8,14,2,13,3,14,15,33,1,13,1,28,1,13,1,14,6,5,1,14,4,33,1,13,3,30,1,33,1,13,1,28,2,30,1,13,1,30,2,28,3,30,1,28,2,30,4,14,3,33,1,14,13,11,2,9,1,27,3,26,3,27,2,9,1,27,4,26,11,27,8,26,6,27,1,9,2,11,1,9,1,26,1,29,1,28,39,26,1,9,1,28,7,26,1,29,1,28,6,9,1,28,4,29,1,11,1,26,1,28,3,12,1,28,7,25,1,11,1,1,19,14,1,16,2,33,1,13,2,33,1,30,1,13,1,5,1,14,5,30,1,28,1,14,7,33,1,30,1,28,3,30,1,28,2,30,2,14,6,1,12,14,1,30,1,14,3,13,2,5,1,14,1,13,2,33,2,13,2,6,1,14,1,13,3,30,1,13,3,30,1,28,2,13,1,14,6,33,1,14,1,1,9,8,1,28,1,1,224,}, + {1,60,28,2,11,1,1,9,14,5,33,2,14,3,33,1,14,2,1,13,8,1,28,4,1,3,28,3,1,3,28,1,17,1,1,8,14,2,30,1,13,1,14,1,33,1,14,15,13,1,28,1,13,1,14,3,5,1,14,2,5,1,14,3,33,2,13,1,14,1,13,1,30,1,13,2,28,2,30,1,13,3,30,1,28,2,30,1,28,2,13,1,30,2,13,2,33,1,14,1,33,1,14,12,5,1,14,1,11,1,9,1,27,3,26,2,27,6,9,1,27,1,26,11,27,6,26,1,27,1,26,6,27,1,9,2,11,1,9,1,26,2,28,38,27,1,9,1,28,10,26,1,28,4,25,1,29,1,28,5,6,1,11,1,26,1,28,2,15,1,28,5,29,1,9,1,11,1,1,17,14,2,5,2,13,1,30,1,13,2,30,1,13,1,30,1,13,1,14,4,5,1,14,1,13,1,30,1,14,8,13,1,30,1,28,5,30,1,13,1,14,5,1,12,14,1,30,1,28,1,13,1,14,2,33,3,14,2,13,1,33,1,14,1,13,1,14,1,13,9,28,3,13,1,14,6,33,1,14,1,1,2,11,1,1,6,28,2,1,2,28,2,1,220,}, + {1,60,28,2,9,1,1,4,11,1,1,5,14,4,33,1,14,4,13,1,33,1,14,2,1,13,9,1,28,4,1,8,28,1,16,1,1,8,14,2,6,1,14,3,33,2,14,10,33,1,14,2,13,1,28,1,13,1,14,6,5,1,14,3,33,1,14,2,30,1,13,1,30,2,13,1,28,1,30,2,13,4,28,2,30,1,28,1,30,1,13,1,28,1,30,1,13,2,33,1,14,1,33,2,14,11,5,1,14,1,11,1,9,1,27,9,9,1,27,1,26,3,27,1,26,7,27,1,26,1,27,2,26,3,27,1,26,8,27,1,9,2,11,1,9,1,26,1,29,1,28,37,12,1,25,1,28,12,26,1,28,2,29,1,9,1,28,7,26,1,15,1,28,2,11,1,28,2,7,1,15,1,1,18,14,2,13,1,14,1,33,2,14,2,13,2,30,4,13,1,14,2,13,1,14,4,13,1,14,9,30,1,28,5,13,1,14,2,33,1,14,2,1,12,9,1,30,3,13,1,14,3,33,1,13,1,14,2,13,2,14,1,13,1,33,3,14,1,13,6,28,1,30,3,14,7,1,9,11,1,28,2,1,2,28,2,1,220,}, + {1,60,28,3,1,4,11,1,1,5,14,1,5,1,14,2,13,2,14,3,13,1,14,2,5,1,14,1,1,13,12,1,28,3,1,2,28,3,1,3,28,1,9,1,1,8,14,1,33,1,14,4,13,2,14,10,5,1,14,2,13,1,28,1,13,1,14,13,13,1,33,1,13,1,30,1,13,1,30,1,28,2,13,1,30,2,13,1,28,2,30,1,28,1,30,5,13,1,33,3,14,12,5,2,11,1,9,1,27,9,9,1,27,1,26,3,27,1,26,3,27,1,26,2,27,3,26,8,27,1,26,5,27,2,9,1,11,1,9,1,29,3,28,35,12,1,26,1,28,14,26,1,9,1,15,1,28,9,9,1,11,1,12,1,1,1,11,1,1,18,14,2,5,2,33,1,13,1,14,5,13,1,30,2,28,1,30,3,14,2,13,1,14,5,5,2,14,3,33,1,14,2,33,1,13,1,30,1,28,4,13,1,14,1,5,1,14,1,11,1,1,12,9,1,28,2,30,1,13,2,14,4,13,1,33,1,14,4,13,1,33,4,14,1,13,5,30,4,13,1,14,4,5,1,14,1,1,9,9,1,28,2,1,2,28,4,1,218,}, + {1,59,28,2,1,1,28,1,9,1,1,3,17,1,1,6,14,1,5,1,14,1,33,1,13,1,14,1,5,1,14,1,13,1,14,2,5,2,14,1,1,13,11,1,28,2,1,1,28,8,8,1,1,8,11,1,33,1,14,1,33,1,14,2,13,2,14,8,33,1,14,4,30,1,28,1,14,12,5,1,14,1,13,1,14,1,13,1,30,2,28,3,30,2,28,1,30,2,28,3,30,2,13,1,30,4,13,1,14,1,13,1,33,1,14,12,11,1,9,1,27,8,26,1,27,1,9,2,27,1,26,1,27,2,26,1,27,7,26,8,27,2,26,4,27,2,9,1,11,1,9,1,28,1,29,2,28,34,9,1,29,1,28,16,29,1,26,1,28,7,29,1,8,1,11,1,1,18,11,1,14,2,5,2,33,2,5,1,14,1,13,1,14,2,5,2,14,1,30,1,28,1,30,1,28,2,30,1,28,1,13,1,14,7,5,2,14,3,33,1,5,1,33,2,13,2,30,1,28,2,30,1,14,3,1,13,14,1,30,1,28,2,30,1,13,1,14,11,13,1,14,1,33,1,14,1,33,1,14,1,13,1,30,1,13,3,6,1,13,1,30,2,13,1,14,4,5,1,14,1,1,9,28,2,1,5,28,2,1,218,}, + {1,61,28,3,11,1,1,2,12,1,1,7,5,1,14,2,13,1,33,2,14,1,13,1,14,1,5,1,14,4,1,13,11,1,29,1,28,2,1,1,28,6,7,1,1,9,33,2,5,1,14,2,13,1,33,1,14,8,33,1,14,4,30,1,28,1,14,12,33,1,14,1,33,1,14,1,13,1,30,1,28,7,30,1,28,5,30,2,13,1,30,3,13,1,14,1,13,2,14,11,5,1,11,1,15,1,27,4,26,1,27,3,26,1,27,1,9,1,15,2,27,8,26,1,27,2,26,8,27,2,26,4,27,1,26,1,9,1,11,1,9,1,26,2,28,33,27,1,12,1,28,24,6,1,16,1,11,1,1,18,14,2,33,2,5,2,14,6,13,1,14,3,33,1,13,1,30,1,28,1,30,3,28,2,30,1,14,10,13,1,14,1,33,1,5,1,14,3,13,1,28,3,13,1,14,2,1,13,14,2,13,1,28,2,30,1,33,1,14,9,5,2,14,1,33,2,14,3,13,1,28,1,13,1,30,1,13,1,14,1,13,1,30,2,13,1,14,4,5,1,1,9,11,1,28,2,1,4,28,1,1,220,}, + {1,60,28,4,7,1,1,2,11,1,1,7,14,1,5,1,33,1,14,1,5,1,33,1,14,3,5,1,14,3,33,1,14,1,1,14,7,1,28,5,1,2,28,1,29,1,1,9,14,1,33,1,5,1,14,2,33,2,14,13,30,1,28,1,14,17,30,1,28,4,30,1,28,1,30,1,13,1,28,5,13,4,28,1,30,1,14,1,33,1,14,1,33,2,14,11,11,1,15,1,27,3,26,1,27,6,9,1,28,1,10,1,15,1,9,1,27,9,26,9,27,2,26,5,27,1,11,1,9,1,28,1,29,1,28,21,29,1,9,1,12,1,9,2,27,1,28,5,25,1,9,1,28,22,8,1,17,1,1,18,11,1,14,3,33,1,14,1,33,1,14,14,30,1,28,2,30,2,28,4,14,9,13,3,33,1,5,1,14,3,13,1,28,2,30,1,33,1,14,1,1,13,14,2,33,1,13,1,28,1,30,1,13,2,14,4,5,1,14,3,33,3,13,1,14,1,33,1,14,1,33,3,30,1,13,1,30,1,13,1,14,1,30,1,28,2,30,1,14,5,1,9,9,1,28,2,1,3,28,2,1,220,}, + {1,61,28,2,1,1,28,1,9,1,1,2,11,1,1,7,14,1,33,1,14,1,5,1,14,1,33,1,14,1,5,1,14,5,5,1,14,1,11,1,1,13,9,1,28,4,1,2,28,2,1,9,14,1,5,1,14,3,33,2,14,13,30,2,14,12,33,1,14,4,30,1,28,4,30,2,28,2,30,1,28,3,30,1,13,1,30,1,13,2,30,1,13,1,14,1,33,1,14,1,33,2,14,12,15,1,27,2,26,2,27,5,9,1,27,1,28,2,9,1,15,1,9,1,27,4,26,1,27,3,26,5,27,5,26,6,27,1,15,1,9,1,28,1,29,1,28,2,26,1,12,1,27,1,28,16,12,1,29,1,28,1,29,1,26,1,25,1,9,1,12,1,9,2,15,1,10,1,28,19,6,1,16,1,11,1,1,18,14,3,5,1,33,4,14,9,5,1,33,1,14,1,5,1,14,2,13,1,28,3,30,1,28,5,14,9,13,1,30,1,13,1,33,1,5,1,14,1,13,2,14,1,13,2,14,3,1,12,14,1,13,1,33,1,13,1,14,1,30,2,13,2,14,4,5,2,14,3,13,2,30,1,14,3,5,1,14,2,13,3,14,1,13,1,30,1,28,3,13,1,14,3,1,10,28,4,1,2,28,2,1,220,}, + {1,60,28,6,17,1,1,1,12,1,11,1,1,7,14,2,33,1,14,1,33,1,14,2,5,1,14,6,5,1,14,1,1,13,16,1,28,3,1,1,28,3,1,9,14,5,33,1,14,14,30,2,14,13,33,1,14,2,13,1,30,1,28,1,30,1,28,2,30,2,28,7,30,2,13,2,30,1,14,1,33,2,14,1,13,1,33,1,14,3,5,1,14,6,5,1,14,1,15,1,27,2,26,3,27,4,15,1,29,1,28,3,25,1,15,1,9,1,27,3,26,1,27,3,26,5,27,5,26,6,27,1,15,1,9,1,26,1,29,1,28,1,29,1,12,1,27,1,9,1,27,1,28,14,12,1,29,1,28,27,25,1,12,1,1,19,14,4,33,1,14,4,33,2,14,9,33,2,14,2,5,1,14,1,13,1,28,1,30,1,28,1,30,2,28,3,13,1,14,8,5,1,14,1,30,1,13,2,14,2,28,1,30,1,14,2,13,1,14,2,1,12,14,1,13,1,30,1,13,2,14,1,13,1,30,1,14,11,13,3,14,3,5,1,14,2,33,1,5,1,14,3,13,1,28,3,13,1,14,3,1,9,11,1,28,1,1,1,28,2,1,2,28,2,1,220,}, + {1,60,28,6,9,1,1,10,14,2,33,1,14,1,33,1,14,2,5,1,14,9,1,13,11,1,28,6,11,2,1,7,14,2,33,2,14,1,33,2,14,13,28,2,14,14,33,2,30,1,13,2,30,1,28,2,30,1,28,9,13,1,14,1,13,2,14,2,33,1,13,2,33,1,14,10,33,1,14,1,15,1,9,1,27,3,26,1,27,2,26,1,27,1,11,1,28,5,9,1,15,1,27,3,26,1,27,2,26,7,27,1,26,2,27,4,26,2,27,2,15,1,9,1,26,1,29,2,27,1,12,1,28,3,29,1,9,1,29,1,28,10,12,1,26,1,28,24,9,1,17,1,1,20,14,2,5,1,33,2,14,2,5,1,14,2,33,1,14,2,33,5,14,6,33,1,13,1,14,3,28,2,30,5,28,1,13,1,33,1,14,8,5,1,14,1,13,3,14,1,13,1,28,1,13,1,14,2,6,1,33,1,14,1,1,11,14,1,13,5,14,2,13,1,14,3,33,1,14,7,13,1,33,1,13,4,14,3,33,1,5,1,14,3,13,1,28,3,13,1,14,3,1,9,8,1,28,1,1,4,28,2,1,221,}, + {1,60,28,7,11,1,1,10,14,1,33,1,14,1,33,2,14,10,33,1,14,1,1,13,11,1,29,1,28,4,11,1,17,1,1,7,14,3,33,1,14,1,33,2,14,13,28,2,14,14,33,1,14,1,30,1,13,1,33,1,30,1,28,2,30,1,28,1,30,1,28,7,13,1,14,1,13,1,33,1,14,2,33,1,6,1,13,1,14,11,33,1,14,1,11,1,9,1,27,3,26,1,27,3,9,1,15,1,28,6,9,1,15,1,27,1,26,1,27,2,26,8,27,2,9,2,27,3,26,2,27,2,9,1,15,1,26,1,28,1,26,1,12,1,27,1,28,5,9,1,25,1,28,8,9,1,25,1,28,21,6,1,17,1,1,20,14,4,5,2,14,8,33,1,14,3,33,2,14,8,13,2,14,3,28,2,30,2,28,1,30,2,28,1,13,1,33,2,14,6,5,2,14,2,13,1,6,1,13,1,30,2,14,2,13,2,33,1,14,1,1,10,14,1,33,1,13,4,14,1,33,1,13,2,14,1,5,1,14,4,33,2,14,3,13,1,33,1,13,1,30,1,13,2,14,3,5,3,14,3,30,1,28,2,13,1,14,2,1,10,28,3,1,3,28,2,1,221,}, + {1,61,28,2,1,1,28,3,29,1,1,10,11,1,33,2,14,1,13,2,14,10,13,2,11,1,1,13,6,1,28,3,11,2,1,7,14,6,33,1,14,12,13,1,28,1,30,1,14,14,33,1,14,2,13,3,28,2,13,1,28,1,30,1,28,5,30,1,28,1,13,1,14,1,5,1,14,1,33,2,14,1,13,1,30,1,14,1,33,1,14,9,5,1,14,1,11,1,9,1,27,4,26,1,27,2,9,2,28,7,9,1,15,1,27,1,26,1,27,2,26,3,27,1,26,3,9,1,15,1,9,1,15,1,9,1,27,3,26,1,27,2,9,1,11,1,26,1,28,1,27,1,11,1,28,8,26,1,27,1,28,5,27,1,10,1,28,18,10,1,11,1,1,21,14,3,5,2,33,1,14,2,5,2,14,7,33,1,14,2,33,3,14,12,13,1,28,2,30,1,13,1,28,1,30,1,28,2,13,3,14,7,5,1,14,3,13,1,14,1,28,1,13,1,14,1,5,1,13,1,14,2,33,1,14,1,1,8,14,1,33,1,14,1,33,1,13,3,14,1,5,1,33,1,13,1,14,1,5,1,14,4,33,1,13,1,14,1,33,1,13,7,33,1,14,3,5,2,14,4,13,1,28,1,30,1,13,1,14,1,1,9,12,1,28,3,1,2,28,3,1,221,}, + {1,62,28,1,1,3,28,2,26,1,11,2,1,8,14,1,33,1,14,1,13,2,14,4,5,1,14,3,5,1,14,1,13,1,6,1,14,2,1,13,9,1,28,2,11,1,1,8,14,19,13,1,28,1,13,1,14,8,33,1,14,5,5,1,14,2,6,1,13,2,28,1,30,2,28,7,30,3,13,1,5,1,14,2,33,2,13,2,33,1,14,1,33,1,14,3,33,1,14,2,13,1,14,1,5,1,14,1,11,1,9,1,27,4,26,1,27,2,15,1,26,1,28,8,12,1,15,1,27,3,26,2,27,1,26,3,27,1,15,1,29,1,28,2,9,1,15,1,9,1,27,4,9,1,11,1,26,1,29,1,12,1,10,1,28,10,27,1,26,1,28,2,26,1,9,1,28,15,7,1,17,1,11,1,1,20,14,10,33,1,14,2,33,2,14,1,33,2,14,17,33,1,14,1,5,1,14,1,30,1,28,2,30,1,13,1,30,1,28,2,30,2,13,1,14,14,30,1,14,2,33,1,13,1,14,1,33,2,14,1,1,6,11,1,14,1,13,2,14,1,13,4,14,13,13,4,30,1,13,3,5,2,14,2,5,1,14,1,5,2,14,2,33,1,6,1,30,2,14,1,1,9,6,1,28,3,1,226,}, + {1,62,28,2,1,1,28,4,12,1,11,1,1,9,14,1,33,2,14,11,13,2,14,3,1,13,16,1,28,1,11,1,1,8,14,2,33,1,14,16,13,1,28,1,13,1,14,4,5,1,14,9,5,1,14,2,13,1,14,1,13,1,30,2,28,8,30,2,28,1,30,1,14,4,33,2,13,2,14,1,33,2,14,2,33,2,14,1,30,1,13,1,33,1,14,1,11,1,9,1,27,4,26,2,27,1,15,1,28,10,12,1,15,1,27,2,26,2,27,1,26,2,27,1,15,1,25,1,28,5,25,1,15,1,9,3,27,1,11,1,27,1,26,1,11,1,28,12,29,1,9,1,25,1,9,1,28,11,29,1,9,1,11,2,1,19,14,4,5,1,33,1,5,1,14,8,33,1,14,3,33,1,14,1,33,2,14,3,33,2,14,6,33,1,14,5,33,1,14,2,13,1,28,4,30,2,28,1,30,2,13,2,14,17,13,1,33,1,14,1,13,3,14,2,1,3,14,1,30,1,13,2,33,1,14,2,33,2,14,13,13,3,14,1,30,1,28,1,30,1,13,2,14,9,5,1,33,1,13,2,30,1,11,1,1,8,11,1,28,2,1,228,}, + {1,62,28,7,29,1,1,10,11,1,14,1,33,1,14,4,33,1,14,3,5,1,14,2,13,1,14,1,33,1,13,1,30,1,14,1,1,13,11,2,1,8,14,2,33,2,14,1,33,1,14,13,13,1,28,1,13,1,14,8,33,1,14,5,5,1,14,4,13,1,28,1,30,1,28,11,30,1,13,2,14,2,5,1,14,1,13,2,14,1,33,2,14,2,33,1,14,2,13,1,14,1,5,1,14,1,11,1,9,1,27,4,26,2,9,2,28,11,12,1,15,1,27,1,26,4,27,1,9,1,25,1,28,8,15,2,9,1,27,1,15,1,27,1,9,1,16,1,28,23,7,1,9,1,11,1,1,20,11,1,14,1,16,1,14,1,13,2,14,3,5,1,14,10,5,2,14,4,33,1,14,1,5,1,14,1,13,2,14,6,5,1,14,5,33,2,14,1,13,1,28,5,30,1,28,2,30,1,13,1,33,2,14,13,5,1,13,3,14,2,30,1,13,1,30,1,33,1,13,1,33,1,5,1,14,1,30,1,28,1,13,1,14,4,5,1,14,5,5,1,14,6,33,1,14,1,13,1,30,1,13,1,14,1,13,1,28,2,30,2,13,1,33,1,14,8,13,2,14,2,1,9,9,1,28,1,1,229,}, + {1,62,28,8,25,1,1,10,14,1,33,3,14,1,5,1,33,1,14,6,33,1,14,1,13,4,14,1,1,22,14,5,33,1,14,13,13,1,28,1,13,1,14,14,5,2,14,3,13,1,30,2,28,2,30,2,28,2,30,1,28,4,30,2,13,1,14,2,5,1,14,2,33,1,14,3,13,2,14,2,33,1,14,3,5,1,11,1,9,1,27,6,9,1,25,1,28,12,12,1,15,1,27,1,26,3,9,2,28,10,29,1,9,1,15,3,11,1,29,1,28,19,8,1,12,1,1,22,14,3,13,2,30,2,13,1,33,1,14,18,13,1,33,1,14,2,5,1,14,2,33,1,14,6,5,1,14,5,33,1,14,2,13,1,28,5,30,1,28,1,30,2,13,1,14,1,33,2,14,13,13,1,30,1,33,1,14,2,30,1,13,2,14,1,13,1,33,2,13,1,28,1,30,2,33,1,14,3,33,3,14,3,5,1,14,5,33,2,13,2,30,2,13,2,28,1,30,1,28,1,30,1,13,2,14,1,5,2,14,2,13,4,6,1,14,1,1,10,28,2,1,229,}, + {1,62,28,9,11,1,1,10,14,1,33,1,14,2,5,2,14,8,13,4,33,1,14,1,1,21,14,5,33,1,14,13,30,1,28,1,14,16,33,1,14,3,13,3,30,1,28,1,30,2,28,1,30,1,13,1,30,1,28,3,30,2,13,1,14,1,5,2,14,3,33,2,13,5,33,1,14,1,33,1,14,1,33,1,11,1,9,1,27,3,9,1,27,2,15,1,29,1,28,13,9,2,27,1,26,1,9,1,15,1,28,13,29,1,15,1,1,1,12,1,28,16,9,1,12,1,1,22,14,4,33,2,13,2,30,3,13,1,5,1,33,1,14,20,33,1,5,1,14,18,28,2,30,1,28,3,30,1,28,1,30,1,28,2,13,1,14,2,5,1,14,12,13,1,30,1,13,1,33,1,14,1,13,5,33,1,14,1,13,1,30,1,13,1,30,1,14,4,33,2,13,1,14,11,6,1,13,2,30,1,33,1,13,1,28,1,30,3,13,2,14,1,5,1,14,1,13,1,14,1,33,3,13,1,14,2,1,1,11,2,1,6,17,1,28,1,1,1,28,2,1,227,}, + {1,64,28,5,1,1,28,1,29,1,1,11,14,6,33,1,14,4,33,1,13,4,14,1,5,1,33,1,5,1,11,1,1,19,11,1,14,4,33,1,14,13,30,1,28,1,14,1,5,1,14,14,13,1,14,3,13,3,28,6,30,1,28,4,30,2,13,2,14,6,13,2,30,1,13,1,14,1,33,1,14,3,13,2,14,1,9,1,27,6,15,1,28,15,9,1,15,1,9,1,15,1,29,1,28,15,25,1,28,13,29,1,9,1,11,1,1,21,14,10,13,2,30,1,13,1,30,2,14,1,33,1,14,17,13,2,14,2,33,1,14,17,13,1,28,2,30,1,28,3,30,1,28,1,30,1,28,2,30,1,14,16,30,1,28,1,13,2,14,1,13,2,30,1,14,2,13,1,30,1,13,1,30,1,13,1,14,4,33,3,14,10,33,1,13,1,14,1,13,2,33,1,13,1,28,1,30,3,13,3,14,2,30,1,13,1,14,2,33,1,14,2,1,2,11,1,15,1,1,6,6,1,28,4,1,227,}, + {1,64,28,4,1,3,28,1,9,1,1,10,14,1,5,2,14,3,33,1,5,1,14,4,13,1,30,1,13,1,30,1,14,2,33,2,14,2,1,19,5,1,14,4,5,1,33,1,14,11,28,1,30,1,14,13,5,1,14,2,13,1,14,4,13,1,30,2,28,5,30,1,28,5,30,1,13,1,33,2,14,1,13,1,33,1,14,2,13,2,30,2,14,3,33,1,13,1,6,1,13,1,14,1,15,1,27,6,15,1,28,16,15,1,11,1,25,1,28,23,29,2,16,1,11,2,1,2,11,1,12,1,1,18,14,4,5,1,14,4,5,2,14,3,13,2,28,1,30,3,14,2,33,1,14,16,13,1,33,1,14,2,33,1,14,5,33,1,14,2,33,1,14,8,13,1,28,1,30,2,28,1,30,1,28,1,13,1,28,2,30,2,28,1,14,16,30,1,28,1,30,1,13,1,14,1,13,3,14,2,13,1,30,1,13,2,14,6,33,3,14,9,13,2,14,2,33,1,13,2,30,2,13,1,30,1,13,1,30,1,6,1,14,2,30,2,33,3,5,1,14,1,1,2,15,1,9,1,1,5,11,1,28,2,1,230,}, + {1,66,28,3,1,2,28,2,11,2,1,9,14,5,5,2,14,4,13,1,30,1,13,2,14,4,5,1,14,2,1,18,5,1,14,5,33,1,14,10,13,1,28,1,30,1,14,13,5,1,14,4,5,1,14,2,13,1,30,1,13,1,30,1,28,3,30,1,28,7,13,1,33,1,14,1,13,2,14,3,33,1,13,1,14,1,13,1,14,1,33,1,5,1,14,1,33,1,13,1,14,2,15,1,27,4,26,1,9,1,25,1,28,17,26,1,28,19,6,1,9,1,11,2,1,24,14,6,33,1,14,6,5,3,14,2,13,2,28,1,30,1,28,2,13,1,14,3,5,1,14,14,33,1,14,3,33,2,14,7,33,1,14,8,13,1,28,5,30,1,13,1,30,1,28,1,30,2,28,1,14,16,30,1,28,1,13,3,14,1,30,1,13,4,30,1,13,1,14,2,5,1,14,4,33,2,14,10,13,2,14,2,33,1,13,2,30,2,13,1,30,1,13,1,30,1,13,4,28,1,13,1,14,4,1,2,11,1,9,1,1,5,9,1,28,1,1,231,}, + {1,66,28,3,1,3,28,2,1,11,14,5,5,1,14,4,13,1,30,1,13,2,33,1,5,1,14,2,33,2,14,2,1,17,14,6,33,1,14,10,13,1,28,1,30,1,14,13,5,1,14,4,33,1,14,2,30,1,28,1,13,1,30,1,28,2,30,2,28,7,13,1,33,1,14,1,13,2,14,5,13,2,14,1,33,1,5,1,14,5,9,1,27,5,9,1,29,1,28,31,29,1,27,1,10,1,17,1,11,1,1,15,11,1,1,9,14,4,5,1,33,2,14,11,5,1,14,3,33,1,13,1,28,1,30,1,28,1,30,1,13,1,14,13,5,1,14,8,33,2,14,5,33,3,14,8,30,1,28,3,30,1,28,1,30,1,13,1,30,1,28,2,30,1,28,1,14,16,30,1,28,1,13,4,28,1,13,1,30,2,14,1,30,1,13,1,14,1,33,1,5,1,14,4,13,2,14,8,33,1,14,1,33,5,13,1,30,1,28,1,30,1,13,1,30,2,13,1,33,1,30,1,13,2,28,1,13,1,14,3,1,10,28,2,1,231,}, + {1,67,28,2,1,3,28,2,10,1,1,11,14,1,5,1,14,2,5,1,14,4,33,1,6,1,13,2,14,2,5,1,14,1,33,2,14,1,33,1,14,1,1,16,14,17,13,1,28,1,30,1,14,13,33,1,14,3,33,2,13,3,28,1,13,1,30,1,28,1,30,2,28,3,30,1,28,4,30,1,33,1,14,8,13,2,33,1,13,1,5,2,14,4,15,1,26,1,27,4,9,1,28,26,29,1,8,1,9,1,11,2,1,27,14,15,5,2,14,10,13,1,28,3,30,1,13,1,14,13,33,1,14,5,5,1,14,5,33,1,14,3,33,2,14,2,33,1,14,5,33,1,30,1,28,5,13,1,28,1,13,1,30,1,28,1,30,2,14,17,28,2,30,1,33,1,30,1,28,1,13,1,28,1,30,1,33,1,13,2,14,5,13,4,33,1,14,7,33,2,14,1,5,1,33,1,14,1,13,1,30,2,28,1,30,4,13,1,30,1,13,3,30,1,13,1,5,2,14,1,1,3,11,2,1,4,12,1,28,3,1,230,}, + {1,72,28,3,17,1,1,10,14,5,33,1,14,4,13,2,14,3,5,1,14,2,13,1,14,2,13,1,14,2,1,14,5,1,14,3,5,1,14,12,30,1,28,1,13,1,14,17,33,2,13,2,30,1,28,1,13,1,30,2,28,5,30,1,28,5,33,1,14,8,33,3,13,1,14,1,5,1,14,2,5,1,14,1,15,1,26,1,27,3,9,2,28,19,29,1,9,2,12,1,11,1,1,28,14,1,30,2,13,1,14,6,33,1,14,21,5,1,14,1,30,1,28,3,13,1,33,2,14,18,5,2,14,3,33,1,14,3,33,3,14,7,13,1,28,5,30,1,13,1,30,1,13,1,30,1,28,1,6,1,13,2,14,16,30,1,28,1,30,1,33,1,13,1,28,1,30,2,13,2,14,1,13,1,14,5,13,4,33,1,14,5,5,1,14,4,5,1,14,1,13,1,30,1,13,2,30,1,13,1,30,3,13,1,28,1,30,1,13,3,14,1,5,2,1,4,11,1,15,1,1,4,29,1,28,3,1,230,}, + {1,72,28,4,1,11,14,1,33,1,14,2,33,1,14,4,13,2,33,2,14,4,13,1,14,2,13,3,14,1,1,13,14,17,30,1,28,1,13,1,14,15,33,1,14,1,33,2,14,1,33,1,13,2,30,1,28,1,30,1,28,3,30,1,28,7,13,1,14,1,5,1,14,2,33,1,14,3,5,1,14,1,33,2,14,4,33,1,14,1,15,1,26,1,27,3,9,1,27,1,28,12,6,1,9,1,16,1,12,1,11,1,1,31,11,1,14,1,9,1,13,1,30,1,28,2,30,1,14,6,5,1,14,21,5,1,14,1,13,1,28,3,30,1,13,1,33,1,14,1,5,1,14,5,5,1,14,10,5,1,14,4,33,1,14,3,33,1,5,1,33,1,5,1,14,5,33,1,13,1,28,4,30,2,33,1,30,1,13,1,30,1,28,1,13,2,30,1,13,1,14,2,5,1,14,12,13,1,28,1,30,1,13,2,28,1,30,1,13,1,33,1,14,2,13,2,14,2,5,1,14,1,13,4,5,1,14,6,5,1,14,3,33,1,14,1,13,1,30,1,13,3,14,1,13,1,30,1,13,1,30,1,28,1,30,1,13,3,14,3,1,5,9,1,1,3,11,1,28,1,1,233,}, + {1,75,28,1,7,1,1,11,14,1,33,1,14,6,13,2,33,2,14,4,13,1,14,1,33,1,13,1,30,2,13,1,14,1,1,12,14,17,30,1,28,1,13,1,14,5,5,1,14,9,33,1,14,1,33,2,14,1,13,2,30,1,28,2,30,2,28,1,30,2,28,6,30,1,13,1,33,1,5,1,14,10,5,1,33,4,14,1,11,1,27,4,15,1,25,1,28,3,29,1,9,1,16,1,12,1,17,1,11,1,1,34,11,1,14,5,33,1,13,2,28,2,30,1,13,1,14,2,5,1,14,27,13,1,30,1,28,3,13,1,14,18,5,2,14,17,30,2,28,4,30,1,13,1,14,1,30,1,14,1,30,1,28,1,13,2,30,1,14,3,5,1,14,13,28,1,13,1,30,2,28,1,13,2,30,1,14,1,13,1,33,2,14,2,5,1,14,1,30,2,13,1,14,11,13,2,14,2,13,7,30,2,28,2,13,1,14,4,1,6,11,1,1,3,7,1,28,1,1,233,}, + {1,75,28,2,16,1,1,11,14,3,33,1,14,3,33,1,14,9,33,1,13,3,33,2,14,1,1,11,14,17,28,2,13,1,14,15,33,1,14,4,13,2,30,1,28,2,30,2,28,10,13,2,33,1,14,1,33,1,14,13,1,2,11,4,1,39,14,7,5,2,14,5,13,1,28,2,30,2,13,1,14,1,5,2,14,27,13,1,28,3,13,1,14,37,28,1,30,1,28,4,30,1,13,3,14,1,13,4,30,1,14,17,30,2,28,1,30,2,13,1,30,1,13,2,14,1,33,2,14,4,30,1,13,2,14,9,33,1,14,1,13,1,6,1,14,2,33,1,13,6,30,2,28,2,13,1,5,1,14,3,1,5,11,2,1,2,11,1,28,3,1,232,}, + {1,75,28,3,11,1,1,10,14,3,13,1,14,2,5,1,14,6,5,1,14,4,13,3,33,2,14,2,1,10,14,17,28,2,14,11,5,1,14,4,33,1,14,3,33,1,13,1,30,1,28,4,30,2,28,2,30,1,28,6,13,2,14,3,33,1,14,6,1,46,14,3,13,2,14,2,33,1,14,7,33,1,14,3,13,1,28,4,30,1,13,1,14,1,5,1,14,28,13,1,28,2,30,1,14,1,6,1,14,21,5,1,33,1,14,10,5,1,14,1,28,6,30,1,14,1,13,3,33,1,14,1,33,1,13,1,30,1,13,1,14,16,30,1,28,3,30,1,13,1,30,1,13,1,30,1,14,2,33,1,14,1,33,1,14,2,13,3,14,8,5,1,33,1,14,1,13,2,33,1,14,2,13,3,33,1,13,2,30,2,28,2,13,1,5,1,14,1,5,1,11,1,1,5,12,2,1,2,9,1,28,6,1,229,}, + {1,72,28,1,1,2,28,4,1,11,14,1,33,1,13,1,14,2,5,1,14,6,5,1,14,2,33,1,14,2,13,1,30,1,13,2,14,1,33,1,14,1,1,9,14,17,28,2,14,16,33,1,14,3,33,1,13,1,30,1,28,4,30,1,13,1,28,9,30,1,13,1,33,2,14,7,1,40,14,7,33,1,14,2,6,1,13,1,14,1,5,1,33,1,14,6,33,2,14,3,13,1,28,5,30,1,14,1,5,2,14,14,5,1,33,2,14,10,33,1,28,2,30,1,13,1,30,1,33,1,14,7,5,1,14,4,5,1,14,7,5,1,14,12,13,1,28,2,30,1,28,4,13,4,14,2,5,1,13,1,28,2,13,1,14,15,13,1,28,3,30,1,13,1,30,1,13,1,30,1,14,3,33,2,13,4,14,10,33,1,14,3,33,2,14,1,30,2,13,1,33,1,13,2,30,1,28,1,13,2,14,4,1,6,11,2,1,2,28,7,1,229,}, + {1,72,28,2,1,1,28,4,7,1,1,11,14,1,6,1,33,1,14,11,33,2,14,1,13,3,33,1,14,1,33,1,14,1,1,9,14,17,28,2,14,11,33,1,14,2,33,1,14,5,33,1,13,2,28,2,30,4,28,9,30,1,13,1,33,2,14,6,11,1,1,32,11,1,14,6,5,2,33,2,14,4,33,1,14,1,13,3,14,14,13,1,30,2,28,2,30,2,14,2,5,1,14,12,5,1,14,2,33,2,14,10,5,1,30,1,28,2,30,1,13,1,14,2,33,1,14,14,33,2,14,4,33,1,14,10,13,1,28,1,30,2,28,3,30,1,13,2,33,1,13,1,14,1,33,2,13,1,30,2,13,1,14,1,5,2,14,13,30,1,28,4,30,1,13,3,14,2,33,1,14,1,13,4,14,10,33,1,14,1,33,1,14,1,33,2,14,1,30,1,13,5,28,1,30,1,14,6,1,7,11,1,1,1,9,1,28,5,1,231,}, + {1,74,28,6,16,1,1,11,14,10,5,1,14,3,33,1,14,1,13,2,14,3,33,1,5,1,1,9,14,17,28,2,14,8,33,1,14,2,33,2,14,1,33,1,14,5,33,2,14,1,30,1,28,1,13,1,30,2,28,2,30,2,28,6,30,1,13,1,33,2,14,7,1,23,11,2,14,6,33,5,5,1,14,2,5,1,14,6,5,2,14,1,33,1,13,3,14,10,13,1,33,1,14,1,13,1,28,1,30,1,28,1,30,3,13,1,14,28,5,1,14,1,13,1,30,1,28,2,14,3,33,2,13,1,14,13,33,1,14,14,13,1,28,2,30,2,28,2,30,2,13,2,33,1,13,1,14,1,33,2,13,2,30,1,33,1,14,16,30,1,28,5,13,3,33,1,14,3,13,1,30,1,13,2,14,11,33,2,14,4,30,1,13,5,30,1,13,1,14,2,5,1,14,2,1,10,28,5,1,232,}, + {1,76,28,5,11,1,1,11,14,9,33,1,14,3,33,1,14,2,13,1,14,3,5,1,14,1,1,9,14,17,28,2,14,8,33,1,14,2,33,1,14,11,30,2,14,1,30,3,28,2,30,1,28,6,30,1,13,1,33,2,14,7,1,13,11,1,14,9,33,1,5,1,33,1,13,1,30,1,33,3,13,1,14,1,33,1,14,9,33,1,14,7,30,1,6,1,14,10,13,2,14,1,13,1,28,1,30,2,13,1,30,1,13,2,14,2,5,1,14,10,5,1,14,14,5,2,14,1,13,1,30,1,28,1,13,1,14,1,13,1,14,2,33,1,14,26,5,1,14,1,13,1,28,6,13,1,30,3,13,1,14,1,33,2,14,1,13,3,33,1,14,8,5,1,14,7,13,1,28,2,30,2,28,1,13,1,30,1,13,2,14,1,13,1,30,1,13,1,28,1,13,1,14,14,13,1,14,1,33,1,14,1,13,1,30,1,28,2,13,1,33,1,14,4,33,1,14,2,1,9,16,1,28,5,1,232,}, + {1,76,28,6,1,11,11,1,14,5,5,1,14,4,5,1,33,2,14,2,33,1,14,3,5,1,14,1,1,9,14,17,28,1,30,1,14,12,33,2,14,3,33,2,14,2,13,3,14,2,30,4,28,9,13,1,33,1,5,1,14,6,5,1,14,2,11,1,14,10,13,1,28,1,30,1,14,10,13,1,30,1,14,1,33,1,13,2,14,1,33,1,14,9,33,1,14,7,30,2,14,10,13,2,14,1,13,1,28,1,30,4,13,3,14,27,5,2,14,3,28,2,14,1,13,1,14,28,5,2,14,1,13,1,28,5,30,1,13,1,30,3,13,1,14,1,33,2,14,1,13,3,33,1,14,17,28,3,30,4,13,2,14,1,13,1,30,2,28,1,13,1,14,14,6,1,33,2,14,1,13,1,28,3,13,1,14,5,33,1,14,1,1,10,28,2,1,1,28,4,1,231,}, + {1,76,28,6,6,1,1,11,14,1,33,1,14,4,5,1,14,3,33,3,14,1,33,1,14,4,5,1,14,1,1,9,14,3,5,1,14,3,33,2,14,8,28,1,13,1,14,5,33,1,14,11,33,2,14,2,13,1,33,1,14,3,30,1,28,1,30,2,28,2,30,2,28,5,13,1,33,2,14,1,5,1,14,5,5,1,14,2,5,1,14,3,5,1,33,2,14,1,13,2,6,1,14,1,13,1,33,1,13,2,14,1,33,1,14,2,33,1,14,3,13,1,14,1,33,2,14,20,13,2,14,3,13,1,14,1,5,1,14,4,13,2,14,1,13,1,28,1,30,2,28,1,13,2,30,2,33,1,14,15,33,1,14,10,5,2,13,2,14,1,13,1,30,1,13,1,30,1,13,1,14,28,5,1,14,1,13,1,28,4,30,1,13,1,14,1,30,1,13,2,14,1,5,1,33,2,14,1,13,2,33,1,14,18,28,3,30,2,28,1,30,1,13,2,14,1,13,3,30,2,13,1,14,13,13,1,33,1,14,1,13,1,30,4,14,6,33,1,14,1,1,9,11,1,28,2,1,1,28,4,1,231,}, + {1,76,28,7,9,1,1,11,14,7,33,1,14,1,5,1,14,8,5,1,14,1,1,9,14,7,33,2,14,3,5,1,14,4,28,1,13,1,14,11,33,1,14,2,33,1,14,8,33,1,14,2,30,1,28,3,30,4,28,5,30,1,14,1,33,1,14,1,33,1,14,1,33,1,14,2,5,1,14,8,33,1,14,1,33,1,13,2,6,1,33,2,13,1,30,1,13,1,33,1,13,1,14,2,33,1,14,3,33,3,14,21,13,1,14,4,13,1,14,1,5,1,14,4,13,1,33,1,5,1,14,1,30,1,28,2,30,1,13,2,30,2,13,1,14,4,5,1,14,9,33,2,14,6,33,1,14,3,5,2,13,1,30,1,14,2,13,1,30,1,28,1,13,1,14,23,33,1,14,6,30,1,28,4,30,1,14,1,13,1,30,1,13,1,14,3,5,1,33,1,14,1,13,2,14,19,30,1,28,2,30,1,28,3,13,2,14,1,30,1,13,2,30,2,13,1,14,13,13,2,14,1,13,1,28,1,13,3,14,3,5,1,14,3,1,10,11,1,10,1,28,5,1,232,}, + {1,76,28,5,1,1,28,2,17,1,1,11,14,1,5,1,14,12,5,1,14,2,5,1,14,1,1,9,14,16,13,1,28,1,13,1,14,11,5,1,33,1,14,1,33,1,14,3,5,1,14,4,13,1,14,1,33,1,13,1,30,1,28,2,30,1,28,1,30,2,28,5,30,1,13,1,14,4,33,1,14,2,5,2,14,7,33,4,14,1,13,2,33,1,13,1,30,1,13,1,14,1,33,1,14,2,33,1,14,4,33,2,14,2,33,2,14,13,33,1,14,2,13,1,14,5,13,1,30,1,33,1,5,1,14,3,13,1,33,1,14,2,13,1,28,2,30,2,13,2,30,1,13,1,33,1,14,2,5,1,33,1,14,8,33,1,14,1,33,1,14,6,33,2,14,2,5,2,13,5,30,1,28,1,13,1,14,13,5,1,14,5,33,1,14,3,33,1,14,6,28,5,30,1,13,3,30,1,13,1,14,1,13,1,33,1,14,3,33,3,14,17,13,1,28,6,13,3,30,2,14,1,13,3,14,12,13,1,30,2,13,3,14,3,5,1,14,6,1,10,11,1,1,1,9,1,28,3,1,233,}, + {1,77,28,8,11,1,1,11,14,1,33,1,14,14,5,1,14,1,1,9,14,7,33,1,14,8,30,1,28,1,13,1,14,12,33,1,14,9,13,3,6,1,13,2,28,2,30,1,28,1,30,1,28,7,13,1,14,2,13,1,14,1,33,2,14,10,33,1,14,1,33,2,14,2,13,1,33,1,13,3,14,4,33,2,14,2,13,1,33,3,14,1,13,1,33,1,14,13,33,1,14,1,33,1,13,1,14,3,33,1,14,1,13,1,30,1,13,1,5,1,14,3,33,2,14,3,30,1,28,1,13,1,30,1,13,1,33,1,13,1,30,1,13,1,14,12,33,1,14,2,33,1,14,2,33,1,14,3,5,1,14,2,5,2,13,1,30,1,13,2,14,1,30,2,13,1,14,13,5,1,14,5,33,1,14,2,33,1,14,6,13,1,28,5,13,1,30,1,13,1,14,1,13,3,6,1,33,1,14,3,33,4,14,17,30,1,28,4,30,1,33,1,14,1,13,1,30,2,14,1,30,1,13,1,14,12,13,1,30,3,13,1,14,5,33,1,14,3,5,1,14,1,1,11,11,1,1,2,28,3,1,233,}, + {1,78,28,8,11,1,1,11,14,15,5,1,14,1,1,9,14,1,33,1,14,6,33,1,14,7,28,2,14,14,33,1,14,8,33,1,13,1,30,2,13,1,14,1,30,1,28,2,30,2,28,6,30,1,14,2,33,1,13,1,14,1,33,1,13,2,14,9,33,1,14,1,13,2,14,2,13,2,30,1,13,1,33,1,14,3,13,1,6,1,14,1,33,1,13,1,30,1,33,3,14,1,13,1,14,15,5,1,14,5,13,1,33,1,13,1,28,1,13,1,14,5,33,1,14,3,30,1,28,1,13,1,28,1,13,1,33,1,13,1,30,2,14,12,33,4,14,2,33,1,14,6,5,1,14,1,13,1,28,1,13,1,30,1,13,4,14,13,5,1,14,15,30,1,28,4,30,2,13,1,14,1,13,5,14,1,33,1,13,1,14,1,33,1,14,20,13,1,28,4,13,2,33,1,13,1,30,2,13,1,30,1,13,1,14,9,33,1,13,1,33,1,13,1,30,1,13,3,14,5,5,1,14,3,33,1,14,1,1,14,8,1,28,2,1,233,}, + {1,78,28,8,6,1,1,12,14,5,5,1,14,8,33,1,14,1,1,9,14,1,33,2,14,13,28,2,14,24,13,1,30,2,13,1,33,1,28,4,30,1,28,6,30,1,14,2,13,1,14,2,13,3,14,9,5,1,14,1,13,2,14,2,13,2,30,1,13,1,33,1,14,3,13,2,14,2,13,1,30,1,33,1,14,5,33,1,14,20,33,1,14,1,30,1,13,1,14,1,5,1,14,2,5,1,14,3,5,1,13,1,28,1,13,1,30,1,13,4,28,1,13,1,14,4,5,1,14,8,33,1,14,12,13,1,30,1,13,1,28,1,30,2,13,1,14,14,5,1,14,11,5,1,14,3,30,1,28,3,30,1,13,1,30,1,13,1,14,1,33,1,30,1,13,2,14,1,33,1,13,2,14,1,33,1,13,2,33,1,14,18,30,1,28,3,30,1,13,6,30,1,14,6,5,1,14,3,33,2,14,1,13,4,14,11,1,11,11,1,1,3,12,1,28,3,1,232,}, + {1,79,28,5,1,1,28,2,8,1,1,12,14,4,5,1,14,2,33,2,14,2,5,1,14,3,1,9,14,1,33,1,14,14,28,2,14,8,5,1,14,1,5,1,14,12,33,1,13,2,30,1,13,1,33,1,30,2,28,2,30,2,28,6,13,1,33,2,14,2,13,3,14,12,13,1,14,2,13,2,30,1,13,1,5,2,14,2,13,1,30,1,13,3,30,1,13,1,14,3,5,1,14,22,33,1,14,1,13,2,14,1,33,1,14,2,5,1,33,1,14,2,5,1,13,1,28,1,13,2,30,1,13,3,30,1,33,1,14,3,5,1,33,1,14,9,5,1,14,8,33,1,14,2,13,3,30,2,14,24,5,1,14,3,33,1,14,1,5,1,14,1,30,1,28,4,30,4,13,3,33,2,14,1,13,2,14,1,33,1,13,3,14,18,30,1,28,4,30,1,13,5,30,1,14,1,5,1,14,6,13,2,14,1,33,2,13,4,14,7,5,1,14,1,5,1,14,1,1,11,9,1,15,1,1,2,11,1,28,3,1,232,}, + {1,79,28,4,1,3,28,2,9,1,1,11,14,2,33,1,14,2,33,1,14,3,33,1,14,1,5,1,14,3,1,9,14,15,13,1,28,2,14,4,33,1,14,1,33,1,14,7,33,1,14,8,33,1,13,5,28,1,30,2,28,9,13,1,33,2,14,2,13,2,14,13,33,2,14,2,13,3,14,1,5,1,14,1,33,1,13,1,28,1,13,1,30,1,13,3,14,19,5,1,14,3,33,2,14,4,33,1,14,5,33,1,14,2,5,1,14,1,28,1,30,2,6,1,13,4,14,1,13,2,14,1,5,1,33,1,14,6,33,1,14,2,5,1,14,7,33,3,13,2,30,1,13,1,30,1,28,1,14,1,13,1,14,22,33,1,14,5,5,1,13,1,30,1,28,7,30,1,13,2,14,2,33,1,14,2,33,1,14,2,13,3,14,18,13,1,28,5,30,1,6,1,13,1,30,2,13,1,14,8,13,1,30,1,13,1,33,2,14,1,30,1,13,1,14,8,5,1,14,2,1,12,9,2,1,3,28,3,1,232,}, + {1,80,28,2,1,3,28,4,12,1,1,11,14,1,5,2,14,1,33,1,14,3,33,1,14,5,1,9,14,15,13,1,28,2,14,5,33,1,14,8,33,1,14,9,30,2,14,1,13,2,30,2,28,10,13,1,5,1,14,3,6,1,13,1,14,13,33,2,14,1,33,2,14,1,13,1,14,2,5,1,33,1,13,1,28,1,13,1,30,1,13,3,14,23,33,2,14,2,33,1,14,2,33,1,14,4,33,2,14,3,28,2,30,1,13,4,33,1,14,1,30,2,14,1,33,2,14,5,33,1,13,1,33,2,14,10,33,1,13,4,30,2,13,1,33,1,14,18,33,2,14,2,33,1,14,6,13,1,30,2,28,4,30,2,13,2,33,1,14,1,33,1,14,6,13,1,30,2,14,18,13,1,28,1,30,1,28,4,30,4,13,1,14,2,5,1,14,5,13,2,14,4,13,2,14,11,1,10,11,1,1,1,11,2,1,3,29,1,28,3,1,231,}, + {1,85,28,5,11,1,1,11,14,2,33,2,14,1,13,2,14,6,1,9,14,15,13,1,28,1,30,1,14,10,13,1,33,1,14,12,30,2,14,1,33,2,30,2,28,1,13,2,30,2,28,5,13,1,14,4,13,1,33,1,14,13,33,2,14,1,33,1,14,2,30,1,13,1,14,1,33,1,13,2,28,1,13,1,30,1,13,1,14,1,13,1,14,1,33,1,14,20,33,4,14,1,33,1,14,2,33,2,14,3,33,1,13,1,14,3,30,2,13,2,33,1,14,1,13,4,30,1,14,1,33,1,5,1,14,5,33,1,13,1,14,13,13,7,14,20,33,1,14,8,13,1,30,1,28,1,30,1,28,1,30,1,28,1,30,3,13,2,14,2,33,1,5,3,14,2,13,2,28,2,14,15,5,1,14,3,30,1,28,5,30,1,13,1,30,1,13,1,14,3,5,1,14,3,33,1,14,1,13,1,33,1,14,1,33,1,14,1,33,1,30,1,13,1,14,10,1,6,11,1,1,4,11,2,1,1,11,1,1,3,8,1,28,4,1,230,}, + {1,88,28,3,11,1,1,11,14,1,5,1,33,1,14,1,33,1,13,1,33,1,14,5,11,1,1,8,14,15,13,1,28,1,13,1,14,8,33,1,13,1,30,1,13,1,14,7,33,1,14,1,33,1,14,2,30,1,13,2,14,2,28,1,30,5,28,6,13,1,14,20,33,2,6,1,14,2,30,1,13,1,14,1,33,1,13,2,30,3,13,3,33,2,14,18,33,1,14,3,33,2,14,5,33,3,14,2,13,1,14,3,13,1,28,1,13,1,33,1,14,2,13,1,30,1,13,1,14,3,33,2,5,2,14,4,33,1,14,10,33,1,14,2,13,3,30,1,13,3,14,29,13,1,28,4,13,1,30,2,13,3,33,1,14,4,5,2,14,1,13,2,30,1,28,2,13,1,14,15,5,1,14,2,13,1,28,6,30,1,13,2,5,1,14,2,5,1,14,4,13,2,14,2,33,1,14,2,13,1,14,3,5,1,14,7,1,14,11,1,1,3,16,1,28,4,1,230,}, + {1,86,28,2,1,1,28,3,11,1,1,11,14,1,33,1,14,1,13,2,33,1,5,1,14,5,1,8,14,15,30,1,28,1,13,1,14,8,33,1,30,3,14,7,33,1,14,1,33,1,14,2,30,1,13,1,30,1,13,2,30,3,13,1,28,2,30,2,28,4,30,1,13,1,14,20,33,1,30,1,14,2,13,2,14,2,13,1,30,1,13,1,30,1,13,2,30,1,13,1,33,2,14,18,5,1,14,2,33,1,13,1,33,1,14,1,33,2,14,2,33,3,14,2,13,2,14,2,13,1,28,1,13,1,14,2,13,2,30,1,13,1,14,1,33,1,14,1,13,2,33,1,14,6,33,1,14,1,33,1,14,7,33,1,14,2,13,5,30,1,13,2,14,21,33,2,14,3,5,1,14,1,13,1,28,1,30,1,28,2,13,1,30,2,13,1,14,10,13,1,30,1,28,3,13,1,14,15,5,1,14,2,13,1,30,1,28,5,30,1,13,1,14,1,5,1,14,4,33,2,14,1,13,2,14,1,13,1,30,1,13,1,14,12,1,5,17,1,1,4,11,1,1,8,11,1,28,3,1,231,}, + {1,87,28,1,1,1,28,3,29,1,1,12,14,2,13,2,14,7,1,8,14,12,5,1,14,2,13,1,28,1,13,1,14,7,5,1,14,1,13,1,28,1,30,1,14,12,13,1,30,1,28,1,30,1,33,1,13,1,30,1,28,1,13,1,28,3,30,1,28,5,13,1,14,3,5,1,33,1,14,12,33,1,14,3,30,1,14,2,33,1,14,2,33,1,13,3,30,1,13,1,30,1,28,1,13,1,14,2,33,1,14,18,33,1,14,1,33,1,13,1,14,3,33,2,14,3,5,2,14,2,13,1,14,2,13,1,28,1,13,1,14,1,33,1,13,3,30,1,14,1,33,1,14,1,13,1,30,1,13,1,14,1,33,2,14,3,33,1,5,1,33,1,14,1,33,1,14,5,33,1,14,1,13,2,30,1,13,3,30,1,13,1,33,1,14,26,5,1,14,1,13,1,28,1,30,1,28,2,30,1,13,2,14,4,33,1,5,1,14,5,13,1,30,1,28,2,30,1,13,1,14,18,13,2,30,1,28,4,30,1,13,1,14,6,33,2,14,2,33,1,13,2,30,1,13,1,14,11,1,6,11,1,1,3,14,1,13,1,11,2,1,7,28,3,1,231,}, + {1,89,28,4,6,1,1,12,14,1,6,1,13,1,14,3,5,1,14,1,33,1,14,1,1,8,14,12,5,1,14,2,13,1,30,1,14,5,5,1,14,3,13,1,30,1,28,1,30,1,14,10,33,1,14,1,30,1,28,1,30,1,13,1,14,1,13,2,30,4,28,6,30,1,13,1,14,3,33,2,14,12,33,2,14,2,13,1,14,2,33,1,14,2,13,6,30,2,14,2,33,1,13,1,14,18,33,1,14,2,33,1,14,4,33,1,14,2,13,1,14,4,33,1,14,3,13,2,14,1,33,1,13,3,30,1,13,1,14,3,30,1,13,3,33,2,14,3,5,2,14,1,33,1,14,6,33,1,13,2,30,1,13,1,33,1,14,1,13,1,14,25,33,1,14,1,33,1,5,1,14,1,13,1,28,1,30,1,28,2,30,1,14,2,33,1,13,1,33,1,13,1,33,1,14,6,13,2,28,2,30,1,14,19,13,2,28,5,30,1,13,1,14,1,5,1,14,7,13,1,14,1,13,1,30,1,13,1,14,8,5,1,14,3,1,10,30,2,1,1,11,2,1,6,29,1,28,1,1,232,}, + {1,92,28,2,8,1,1,12,14,1,33,1,14,2,5,2,14,3,1,8,11,1,14,14,30,2,14,5,5,1,14,2,13,1,30,2,28,1,30,1,14,12,13,1,28,1,13,1,14,1,13,1,6,1,13,2,28,1,30,1,28,8,13,1,14,3,33,2,14,13,33,1,14,2,30,1,13,1,14,1,33,1,14,2,13,5,30,2,13,1,14,1,33,1,14,1,13,1,14,18,33,4,14,7,13,1,14,8,13,1,30,1,13,1,33,1,14,2,13,1,30,1,13,1,14,3,6,1,13,1,30,1,13,1,14,1,33,1,14,1,33,1,14,1,5,2,14,2,33,2,14,1,33,1,14,1,33,2,13,1,30,1,6,1,33,2,14,26,33,2,14,1,33,1,14,1,13,1,30,1,28,1,30,1,28,2,30,1,14,1,33,1,14,3,33,2,14,6,33,1,13,1,28,2,30,1,14,2,5,1,14,17,13,1,28,5,13,1,14,1,5,2,14,3,5,1,14,5,13,1,30,1,14,12,1,5,11,2,1,3,14,1,28,2,14,1,11,2,1,6,8,1,28,1,1,232,}, + {1,94,28,1,10,1,1,12,14,1,33,1,14,4,33,1,14,1,1,9,14,14,30,1,28,1,14,7,13,2,30,2,28,1,13,1,14,11,33,1,13,1,28,1,13,1,14,1,13,4,28,6,30,1,28,3,30,1,14,21,30,1,13,1,33,1,14,2,33,1,30,1,13,4,30,1,13,1,30,1,13,1,5,1,14,1,33,1,14,19,33,2,14,5,33,1,14,2,33,1,14,5,33,1,14,2,13,1,30,1,13,1,14,3,13,1,30,1,13,1,14,2,33,1,13,1,30,2,13,1,14,1,33,1,14,4,5,1,14,2,33,2,14,2,13,2,14,2,13,2,33,1,14,2,33,1,14,2,5,1,14,24,33,1,14,1,13,1,28,6,13,2,33,1,14,5,5,1,14,4,13,2,30,1,28,1,30,1,13,1,14,1,5,1,14,18,28,5,13,1,33,2,5,1,14,7,13,1,33,1,13,2,14,10,5,1,14,1,1,5,11,1,1,4,13,1,28,2,14,1,1,8,16,1,28,1,1,232,}, + {1,94,28,2,9,1,1,12,14,1,5,1,14,3,33,1,14,1,1,9,14,9,5,1,14,4,28,2,14,7,13,3,30,1,28,1,14,2,5,1,14,9,13,2,30,1,13,2,30,1,13,1,30,1,13,1,28,11,13,1,5,1,14,19,6,1,30,1,33,1,14,2,33,1,13,1,14,2,33,1,13,1,30,1,13,1,30,1,13,1,14,2,33,1,5,2,14,18,33,1,14,18,13,3,14,1,33,4,14,2,13,2,30,2,13,2,14,5,33,1,14,5,33,1,14,1,13,1,14,2,13,2,33,1,14,2,13,1,14,2,5,1,14,25,13,2,28,5,30,1,13,1,33,1,14,1,5,2,14,2,5,2,14,4,13,2,30,3,13,1,14,1,5,1,14,18,30,1,28,4,30,1,13,1,14,9,13,1,33,2,14,12,1,10,14,1,30,1,28,2,13,1,1,8,11,1,28,1,1,1,28,2,1,229,}, + {1,95,28,2,9,1,1,12,14,2,33,3,14,1,1,9,14,9,5,1,14,4,28,2,14,5,13,1,14,1,13,3,30,2,14,12,6,1,13,2,33,1,13,1,30,5,28,9,30,1,13,1,14,18,5,1,14,1,13,2,14,1,33,1,13,1,14,1,13,1,14,2,33,1,13,1,30,1,13,1,30,1,13,1,33,1,14,1,33,1,5,2,14,15,33,1,14,22,30,1,13,3,33,1,14,1,33,1,5,1,14,1,30,5,13,2,14,4,33,3,14,4,33,1,13,1,14,1,13,1,30,2,33,1,14,2,33,1,14,28,30,2,28,4,30,1,13,2,14,2,5,1,33,3,14,6,33,1,13,1,30,4,13,1,14,19,30,1,28,4,30,1,13,1,14,16,33,1,14,7,1,4,11,2,1,1,11,1,1,2,13,1,28,1,30,1,28,1,30,1,1,3,11,1,1,5,28,1,1,1,28,2,1,229,}, + {1,92,28,2,1,2,28,2,16,1,1,12,14,1,6,1,33,2,14,1,1,9,14,13,13,1,28,1,30,1,14,4,13,4,14,1,13,3,14,1,33,2,14,9,33,1,14,1,33,1,14,2,30,4,13,1,28,9,13,2,14,18,5,1,14,2,13,1,14,1,13,1,30,1,13,1,30,1,13,3,30,2,13,1,28,1,13,2,14,2,5,1,14,8,33,1,14,7,33,1,14,4,33,2,14,3,33,1,14,12,6,1,13,3,14,3,5,1,14,1,13,1,28,1,30,1,13,4,33,1,14,2,33,1,13,1,14,1,33,1,14,2,33,1,14,1,33,1,13,1,14,1,13,1,30,1,13,1,14,1,5,1,33,2,14,2,33,1,14,21,5,2,14,2,30,1,28,3,30,3,13,2,14,1,33,1,14,1,33,2,14,6,33,1,14,2,13,2,28,1,13,2,33,1,14,18,30,1,28,4,30,2,14,16,33,1,14,6,1,5,11,1,1,4,14,1,30,1,28,1,30,1,28,2,1,9,28,1,1,1,28,2,1,229,}, + {1,97,28,2,16,1,1,12,14,2,33,1,14,1,1,9,14,11,5,1,14,1,30,1,28,1,30,1,14,4,13,4,14,1,6,1,13,2,14,1,13,1,33,1,14,7,33,1,14,4,33,1,14,1,30,1,28,3,30,1,13,1,28,1,30,1,28,6,13,1,33,1,14,21,13,2,30,2,13,1,30,2,13,2,30,2,13,1,30,1,13,2,14,2,5,1,14,8,33,1,14,12,5,1,14,1,5,2,14,1,33,2,14,12,13,4,14,2,5,1,14,2,30,1,28,1,13,2,28,1,13,1,14,1,5,2,14,1,33,1,14,1,33,1,14,2,33,1,14,2,13,1,33,1,13,1,30,1,13,1,14,1,5,1,33,1,14,3,33,1,14,24,13,1,28,4,30,1,28,2,13,1,33,2,13,1,14,1,33,2,14,2,33,1,14,3,33,1,14,2,13,1,30,1,28,1,30,1,13,2,14,17,5,1,13,1,28,4,30,1,13,1,14,11,5,1,14,11,1,10,13,1,30,1,28,1,30,2,28,1,11,1,1,8,7,1,28,1,1,231,}, + {1,98,28,2,16,1,1,12,14,1,33,1,14,1,1,9,14,9,33,2,14,2,30,1,28,1,30,1,14,3,13,4,33,1,14,1,13,3,14,1,13,1,33,1,14,7,5,1,14,1,5,1,14,2,33,1,14,1,30,1,28,1,30,2,13,1,14,1,28,3,30,1,28,4,13,2,33,1,14,19,13,6,30,1,13,3,30,2,13,4,14,2,5,1,14,23,5,1,14,2,33,2,14,12,13,1,30,1,13,1,30,1,14,5,13,1,28,3,30,1,14,5,13,3,14,5,13,2,14,1,30,1,13,1,14,2,13,1,14,1,33,2,14,25,6,1,28,3,30,1,13,4,33,1,14,1,33,1,14,3,33,1,14,1,13,1,14,3,33,1,14,3,30,1,28,1,30,2,13,1,14,17,5,1,14,1,30,1,28,3,30,1,14,23,1,5,11,1,1,4,14,1,13,1,30,1,28,2,13,2,14,1,1,8,16,1,28,1,1,231,}, + {1,96,28,2,1,1,28,2,12,1,1,12,14,2,1,9,14,9,33,1,14,3,28,2,30,1,14,3,13,1,28,1,13,2,33,1,14,1,13,1,14,4,33,1,14,11,13,1,33,1,13,1,30,1,28,1,13,4,30,1,28,1,30,1,28,5,30,1,13,2,14,20,13,2,14,1,13,1,30,2,13,3,30,1,28,1,30,1,13,3,14,4,33,1,14,24,33,2,14,13,30,3,33,1,14,2,13,3,30,1,28,2,13,1,14,1,13,1,14,2,13,1,30,1,13,2,14,1,13,1,14,3,33,1,30,1,13,1,30,1,13,1,30,3,13,1,33,1,14,1,13,2,14,22,33,1,13,1,28,3,30,1,13,1,30,2,14,3,33,1,14,4,33,1,14,3,5,2,14,3,30,1,28,1,30,3,14,17,5,1,33,1,30,1,28,3,30,1,14,2,5,1,14,19,1,6,11,3,1,1,11,1,13,1,28,1,30,1,28,2,13,2,14,1,1,8,11,1,28,1,1,231,}, + {1,96,28,1,1,3,28,2,12,1,1,22,14,12,13,1,28,2,13,1,14,2,13,2,30,1,13,4,33,1,14,10,33,1,14,5,33,1,13,1,30,4,13,3,28,2,30,1,28,5,30,1,13,1,14,21,13,4,30,4,13,2,30,2,13,3,14,4,33,2,14,36,5,1,14,1,30,1,13,2,14,1,33,2,6,2,13,1,30,3,13,1,14,1,13,2,14,1,13,2,14,1,33,1,14,1,33,1,14,1,33,1,14,1,33,1,13,4,30,3,13,1,33,1,14,1,13,1,14,23,13,2,28,3,30,4,14,3,5,1,14,4,33,1,14,3,5,1,14,2,33,1,13,1,30,5,14,17,33,1,13,1,30,1,28,3,30,1,14,19,5,2,14,1,1,10,14,1,30,1,28,4,30,2,13,1,1,9,28,1,1,231,}, + {1,101,28,2,12,1,1,21,14,8,33,1,14,3,13,1,28,2,13,1,33,2,13,1,14,1,6,1,13,4,14,7,33,1,14,5,33,1,14,2,33,3,13,2,30,2,13,3,28,2,13,1,28,5,30,1,13,1,14,21,13,5,30,2,28,1,30,1,13,1,30,2,13,2,14,6,33,2,14,35,5,1,14,1,6,1,13,1,14,2,13,1,33,1,13,2,30,1,28,2,13,2,33,1,13,2,14,1,33,1,14,1,33,2,14,3,13,1,14,1,13,3,14,2,30,3,13,2,33,1,6,1,14,23,30,2,28,5,13,2,14,3,5,1,14,4,33,1,14,6,6,1,13,1,30,1,13,1,30,1,13,2,14,17,13,2,28,4,30,1,14,19,33,1,14,1,1,9,11,1,16,1,13,1,28,5,30,2,13,1,1,9,29,1,28,1,1,230,}, + {1,100,28,4,12,1,1,20,14,7,33,2,14,3,30,1,28,2,14,1,33,2,6,1,33,1,13,5,14,17,33,1,14,3,30,1,28,1,30,1,33,1,14,1,28,1,30,2,28,5,30,1,14,23,13,1,30,1,13,1,30,3,28,1,30,1,13,5,14,4,5,1,14,3,33,1,13,1,33,1,14,34,33,1,13,1,14,2,13,2,14,1,13,1,28,2,30,1,13,3,14,2,33,1,14,2,33,3,14,1,13,2,14,1,13,4,30,5,13,1,14,1,33,1,14,23,30,1,28,4,30,2,13,1,14,1,33,1,14,10,33,1,14,3,13,1,30,3,28,1,13,2,14,17,13,1,30,1,28,3,30,1,13,1,14,19,5,1,14,1,1,6,11,2,1,1,11,1,13,1,30,1,28,3,30,2,13,1,30,1,13,1,11,1,1,8,10,1,28,2,1,15,28,2,1,212,}, + {1,101,28,4,16,1,1,19,14,8,33,1,14,3,30,1,28,2,14,1,33,1,14,1,33,1,13,1,30,1,13,3,14,1,33,1,14,2,5,1,14,2,33,1,14,7,33,1,14,1,5,1,13,1,14,3,28,2,30,1,13,2,30,1,28,7,30,1,14,6,5,1,14,16,13,3,28,2,30,1,28,1,30,2,13,1,30,1,13,1,14,2,5,1,14,2,33,1,14,3,13,2,14,23,5,1,14,12,33,1,14,2,30,1,13,1,33,1,13,1,28,3,13,4,14,1,33,1,5,1,14,4,13,2,30,1,13,3,6,1,13,1,30,4,13,2,14,25,13,1,28,4,13,2,14,1,5,1,33,1,14,10,33,1,14,3,13,1,30,3,28,1,30,1,13,1,14,17,13,1,30,1,28,3,14,1,13,1,6,1,14,6,5,1,14,13,1,6,11,2,1,1,14,1,13,1,30,1,28,4,30,1,13,3,14,1,1,8,16,1,28,2,1,15,28,2,1,212,}, + {1,104,28,2,16,1,1,18,14,8,33,2,14,2,13,1,28,2,14,2,33,1,14,2,13,1,30,2,14,1,33,2,14,5,33,2,14,6,33,1,14,1,5,1,13,1,14,1,5,1,14,1,30,1,28,1,30,1,13,2,30,1,28,8,13,1,14,5,5,1,14,16,13,1,14,1,13,1,28,5,30,1,13,1,30,1,13,1,14,2,5,1,14,2,5,1,14,3,33,1,13,1,14,18,5,1,14,18,13,2,30,2,13,1,30,1,28,1,30,1,28,1,13,3,6,1,13,2,14,1,5,1,33,1,14,2,30,1,13,1,28,1,13,1,14,1,13,2,33,1,13,1,30,2,13,4,14,1,5,1,14,22,13,1,28,4,13,1,14,2,5,2,14,10,33,1,14,3,13,1,30,2,28,2,30,1,13,1,33,2,14,15,13,1,30,1,28,2,30,1,14,4,5,1,14,16,5,1,14,1,1,9,13,1,30,2,28,4,13,1,30,2,13,1,14,1,1,8,11,1,28,4,1,13,28,3,1,211,}, + {1,100,28,2,1,3,28,2,12,1,1,17,14,9,33,1,14,2,13,1,28,2,14,2,13,2,14,1,13,1,30,1,13,1,14,2,33,1,14,4,5,1,14,1,33,2,14,2,33,1,14,3,33,1,5,1,14,1,13,1,33,2,30,2,13,2,30,2,28,3,30,1,28,4,13,2,14,18,5,1,14,2,13,1,14,1,30,1,28,5,30,1,13,1,30,1,13,1,14,1,5,2,14,2,5,1,14,1,33,1,14,1,33,1,13,1,14,2,33,1,14,2,33,1,14,31,13,3,30,2,13,1,30,3,13,1,30,2,13,1,14,1,13,1,14,1,5,2,14,2,13,2,30,1,13,2,14,2,33,1,13,1,30,2,13,2,30,1,13,1,33,2,14,21,13,1,30,1,28,2,30,2,13,1,14,1,33,1,14,5,5,1,14,9,13,2,30,2,28,3,30,1,14,1,33,1,14,14,33,1,13,1,28,3,13,1,14,21,33,1,14,1,1,8,14,1,13,1,28,5,30,1,13,1,30,1,28,1,13,1,14,1,1,9,28,4,1,3,28,1,1,8,28,4,1,211,}, + {1,100,28,2,1,4,28,2,16,1,1,16,14,9,13,1,14,2,30,1,28,1,30,1,13,3,33,1,13,4,14,3,33,1,14,5,33,1,14,3,33,1,14,3,13,1,33,1,14,1,13,1,14,2,13,3,30,3,28,1,30,3,28,4,30,1,13,1,14,22,13,1,30,1,28,5,30,1,13,2,33,1,14,9,13,2,14,3,33,1,14,1,33,1,14,30,33,1,13,7,30,1,28,1,30,1,28,2,13,1,14,1,13,2,14,1,5,1,14,2,13,5,14,2,33,1,13,5,30,1,14,1,33,1,14,20,5,1,14,1,30,1,28,3,30,1,13,2,14,1,13,2,14,14,13,3,30,1,28,3,30,1,14,1,33,1,14,14,13,1,30,1,28,3,14,23,5,1,14,1,1,6,14,1,33,1,13,1,30,1,28,4,30,1,13,1,30,2,13,1,14,1,1,9,29,1,28,14,1,1,28,5,1,210,}, + {1,106,28,3,16,1,1,15,14,8,13,1,30,1,14,1,13,1,28,2,30,1,13,2,33,1,14,1,30,2,33,1,13,1,14,1,33,1,14,8,13,2,14,7,33,1,6,1,14,1,13,2,14,1,13,1,28,2,30,2,28,1,30,1,28,6,13,1,14,22,30,1,13,1,28,5,30,1,13,1,33,1,14,10,13,2,14,1,33,3,14,8,5,1,14,25,13,3,14,1,33,1,13,1,30,1,28,4,13,1,14,1,13,2,14,4,33,1,14,2,13,2,14,4,13,3,30,2,14,1,33,1,14,11,5,1,14,8,5,1,14,1,30,1,28,3,30,2,13,1,14,1,13,2,14,11,5,1,14,2,33,1,13,2,30,1,28,3,13,1,14,1,33,1,14,14,30,1,28,3,30,1,14,11,33,1,14,11,33,1,13,1,14,1,1,4,14,2,13,1,30,2,28,3,30,4,14,1,13,2,1,9,9,1,28,4,6,1,7,1,8,1,10,1,8,2,7,1,6,1,28,9,1,209,}, + {1,106,28,4,16,1,1,14,14,6,5,1,14,1,13,2,33,1,30,1,28,2,30,1,14,4,30,2,14,3,5,1,14,4,33,2,14,2,13,2,14,4,33,1,13,1,14,1,33,1,13,1,14,1,13,3,30,1,28,3,13,1,28,8,30,1,14,18,33,2,14,2,6,1,13,1,30,1,28,2,30,1,28,1,30,1,13,1,33,1,14,2,5,1,14,7,13,2,33,1,13,1,14,2,33,1,14,32,33,1,30,3,13,3,30,2,28,3,30,1,14,1,33,1,30,1,14,1,5,1,14,3,33,2,13,2,14,3,33,1,13,3,30,2,13,1,14,12,5,1,14,9,30,1,28,6,30,1,14,1,13,2,14,1,5,1,14,10,5,1,14,3,6,1,13,1,30,1,28,2,30,1,13,1,33,1,14,6,5,1,14,7,28,4,13,1,14,11,33,1,14,11,13,1,30,1,13,1,14,4,5,1,33,1,30,1,28,1,30,1,28,3,30,1,13,4,33,1,13,1,11,1,1,9,11,1,1,13,17,1,10,1,28,4,1,210,}, + {1,106,28,5,9,1,1,13,14,6,5,1,14,1,13,2,14,1,30,1,28,2,30,1,33,2,13,1,33,1,13,2,14,2,33,1,14,5,33,2,14,2,13,3,14,3,13,2,14,4,13,4,30,1,28,2,13,1,28,5,30,2,28,1,30,1,14,18,33,1,13,1,14,1,33,1,13,1,30,2,28,2,30,2,28,1,13,2,14,2,33,1,14,7,33,2,14,38,13,1,30,2,13,2,14,1,13,1,30,1,28,4,13,1,14,1,30,1,13,1,33,1,14,8,5,2,33,1,13,3,30,1,28,1,30,1,14,17,5,1,14,4,30,1,28,4,30,2,13,1,14,1,33,2,14,2,5,1,14,9,5,1,14,2,13,3,30,1,28,2,30,1,13,1,14,1,33,1,14,5,5,1,14,7,30,1,28,3,14,21,5,1,14,2,13,2,14,1,13,1,30,1,13,2,5,1,33,1,13,1,28,1,30,1,28,4,13,4,14,3,1,24,11,1,1,1,11,1,6,1,28,2,1,209,}, + {1,104,28,3,1,2,28,3,9,1,1,12,14,8,13,2,14,1,30,1,28,2,13,1,33,1,13,2,33,1,13,3,14,1,33,1,14,9,6,1,33,1,13,1,14,6,33,1,14,2,33,1,13,2,30,1,13,1,30,2,13,1,30,2,28,2,30,3,28,1,30,1,14,19,13,1,33,1,13,2,30,1,13,1,28,2,13,1,30,1,28,1,30,1,13,1,14,6,5,1,14,3,33,3,14,1,33,1,14,1,33,2,14,32,13,2,6,1,14,3,33,1,13,1,28,1,30,1,28,2,13,1,14,1,13,2,14,1,5,1,14,6,33,1,5,1,14,1,33,1,13,4,28,2,14,22,13,1,28,3,30,1,13,2,33,1,14,1,5,2,14,14,13,1,30,1,13,1,30,1,28,3,30,1,13,1,14,15,30,1,28,2,30,1,14,20,5,2,14,1,13,3,14,1,33,1,13,1,14,1,13,1,14,1,13,2,28,6,30,1,13,2,6,1,14,3,1,24,11,1,1,3,16,1,28,3,1,207,}, + {1,104,28,2,1,3,28,4,8,1,1,11,14,8,13,1,14,1,33,1,30,1,28,2,13,1,14,1,13,2,33,2,13,1,30,1,33,2,14,9,13,2,14,4,13,1,14,2,13,1,33,1,14,3,13,1,30,1,13,1,30,2,13,1,30,2,28,1,30,1,28,1,30,2,28,2,14,17,33,2,14,1,13,4,30,2,13,2,30,4,13,1,14,5,5,1,14,2,33,4,14,3,13,1,33,1,14,32,13,2,30,1,14,1,13,1,14,1,13,1,30,1,28,4,30,1,13,1,30,1,13,1,33,1,5,2,14,1,13,1,14,1,5,1,14,4,13,1,33,1,13,1,30,1,13,1,30,2,14,1,5,1,14,20,30,1,28,2,30,3,13,1,14,3,5,1,14,12,33,1,14,1,30,2,13,1,30,1,28,3,30,1,14,1,13,1,33,1,14,5,33,1,14,7,30,1,28,2,13,1,14,22,13,1,6,1,30,1,13,1,14,2,13,1,14,1,13,2,30,1,13,1,28,7,30,1,13,1,14,4,1,29,11,1,28,3,1,206,}, + {1,110,28,4,7,1,1,10,14,8,30,1,33,2,30,1,28,2,13,4,14,2,13,1,28,1,13,1,14,8,33,1,14,1,33,2,14,4,13,1,14,1,33,1,14,1,33,2,14,2,13,1,30,1,13,1,30,1,28,1,13,2,30,1,28,1,30,1,28,5,14,17,33,2,14,1,13,1,30,3,28,1,30,1,13,1,14,1,30,4,13,1,14,5,5,1,14,2,33,2,14,1,13,1,33,1,14,2,13,1,33,1,14,8,33,1,14,23,13,1,30,1,13,1,14,1,13,3,30,1,28,2,30,1,28,3,30,1,13,1,14,1,33,2,14,1,13,1,14,1,5,1,14,1,13,6,30,1,13,1,30,2,14,1,33,1,14,20,30,1,28,2,30,1,28,1,30,1,14,2,5,3,14,12,33,1,14,1,30,2,13,1,30,1,28,2,30,2,14,1,13,1,14,6,33,1,14,3,33,1,14,3,28,3,13,1,5,2,14,20,30,1,13,1,30,1,13,1,33,1,14,1,33,2,13,2,30,3,28,6,30,1,13,1,14,4,1,30,11,1,28,2,1,206,}, + {1,114,28,1,7,1,1,9,14,7,13,1,30,1,13,2,30,1,28,2,13,1,30,2,13,1,33,2,6,1,28,1,14,9,33,2,14,2,5,1,33,1,14,2,13,1,33,1,13,1,14,4,33,1,13,1,30,1,13,2,28,1,30,1,13,1,30,1,28,1,30,1,28,5,14,17,33,2,14,1,13,1,30,1,28,2,30,2,13,2,30,4,13,1,14,1,5,2,14,3,5,1,14,1,33,2,14,1,33,1,14,3,13,2,14,33,30,1,13,1,14,1,13,3,30,1,28,1,30,2,28,3,30,1,14,2,5,1,33,1,13,1,30,1,13,1,14,2,13,4,30,1,13,1,30,4,14,1,5,1,14,19,33,1,13,1,28,1,30,3,13,1,33,1,14,1,5,2,14,13,33,1,14,1,13,1,30,3,28,3,30,1,14,1,13,1,14,6,13,1,33,1,14,2,13,1,14,2,13,1,28,3,13,1,5,2,14,19,13,1,28,1,13,2,14,1,5,1,14,2,33,1,14,1,13,1,30,3,28,6,30,1,13,1,33,1,14,4,1,9,11,1,14,3,9,1,13,2,9,1,16,1,14,4,1,8,12,1,28,1,1,206,}, + {1,108,28,2,1,4,28,2,1,9,14,8,13,3,28,3,13,1,6,1,13,6,14,9,33,2,14,2,5,1,14,2,30,1,13,1,33,1,14,2,33,1,14,3,13,1,30,3,28,1,30,1,13,1,30,1,28,6,30,1,14,14,5,1,14,1,5,1,33,1,14,1,33,1,13,1,30,2,28,1,13,4,30,1,13,1,30,1,13,1,33,1,5,3,14,8,33,1,14,3,13,2,14,31,5,2,13,3,30,1,28,1,30,1,13,1,30,1,13,1,30,1,28,2,30,2,14,2,5,1,14,2,30,1,13,1,14,5,30,1,13,2,30,3,13,2,14,20,13,2,30,3,13,2,14,16,5,1,14,1,33,1,13,1,30,1,28,4,30,2,14,1,33,1,14,6,13,5,14,2,13,1,28,1,30,2,14,22,13,1,30,1,13,2,14,5,33,1,13,2,30,1,28,7,30,2,33,1,14,2,5,1,14,1,1,9,13,1,28,5,30,5,28,3,13,1,1,7,6,1,28,1,1,1,28,1,1,203,}, + {1,108,28,2,1,4,28,2,1,9,14,8,6,1,13,2,30,1,28,2,13,3,30,1,13,2,14,12,33,1,14,4,13,1,30,2,33,2,14,1,33,2,14,1,33,1,13,1,30,1,13,1,28,1,30,1,13,1,30,3,28,5,30,1,13,1,14,13,5,1,14,2,5,1,14,1,33,1,13,1,28,1,30,1,13,1,33,1,13,5,30,2,13,1,33,1,5,2,14,10,13,1,14,1,13,1,33,1,14,31,5,1,14,1,13,3,30,1,28,1,13,1,30,2,13,1,30,1,28,1,30,3,14,4,13,1,30,1,13,1,14,3,33,2,30,1,13,2,30,1,28,1,30,1,13,2,14,19,13,3,30,3,13,1,14,19,13,2,30,2,28,4,30,1,13,1,14,7,13,1,30,1,13,2,30,1,13,1,14,1,30,1,28,2,13,1,14,22,13,3,33,1,14,1,5,1,14,2,33,1,14,1,13,1,30,1,28,7,30,2,13,1,33,1,14,2,5,1,14,1,1,9,14,1,28,5,30,5,28,4,13,1,1,6,17,1,28,3,1,203,}, + {1,114,28,2,1,9,14,7,33,1,13,1,33,1,13,1,28,3,13,3,30,1,13,1,33,2,13,1,14,10,33,1,14,5,13,2,14,1,33,1,14,1,33,1,14,2,33,1,13,1,30,4,13,1,28,2,30,1,28,5,30,1,13,1,14,15,33,1,14,2,13,1,30,1,28,1,13,1,33,2,13,3,14,2,13,1,30,2,13,1,14,9,33,1,14,1,13,4,14,34,30,1,13,1,14,1,30,1,28,1,13,1,30,2,13,1,30,1,28,1,30,3,14,4,6,1,13,3,33,1,14,1,33,1,13,3,33,1,30,1,28,1,30,1,13,1,33,1,14,19,6,1,13,3,30,2,13,1,14,19,13,1,30,4,28,2,30,1,13,1,33,1,14,4,33,1,14,3,28,1,30,3,13,3,28,1,30,1,14,22,33,1,13,4,14,1,33,1,14,3,33,1,13,1,30,1,28,7,30,1,13,1,14,4,5,1,14,1,1,9,14,1,28,5,30,4,28,6,13,1,1,6,28,3,1,203,}, + {1,114,28,2,11,1,1,8,14,8,33,1,14,1,13,1,28,3,30,3,28,1,13,1,14,1,33,2,14,8,33,2,14,2,13,1,14,1,33,1,14,1,13,1,14,2,33,1,14,6,13,1,30,3,13,1,28,2,30,1,28,2,30,1,28,2,30,1,13,1,14,14,33,3,14,1,13,1,28,2,13,6,14,1,13,1,14,1,13,1,30,1,13,1,14,6,33,1,14,2,33,1,14,1,13,3,14,2,33,1,14,11,5,1,14,20,13,2,14,1,13,1,28,1,13,1,28,1,30,1,13,1,30,1,28,3,30,1,13,1,33,1,14,3,13,2,6,1,13,1,14,2,13,2,14,1,33,1,30,3,13,1,14,19,13,1,30,3,13,3,14,13,33,2,14,1,5,2,14,2,30,1,28,1,30,1,13,1,30,1,28,2,30,1,14,1,33,2,14,3,13,1,33,1,14,2,30,1,28,1,30,4,14,1,28,1,30,1,14,22,33,2,13,2,33,1,14,1,33,1,14,2,13,2,14,1,28,3,30,1,28,4,30,1,13,1,14,1,33,2,14,1,5,1,14,1,1,9,11,1,28,5,30,4,28,6,29,1,14,1,1,5,29,1,28,1,1,204,}, + {1,114,28,2,11,1,1,8,14,5,33,1,14,3,13,1,30,1,28,3,30,2,28,1,30,1,14,12,33,2,14,2,13,1,14,1,33,1,14,1,13,1,14,2,33,1,14,6,13,1,30,1,28,1,30,1,28,3,30,1,28,2,30,1,28,2,30,1,13,1,14,14,33,2,14,2,30,3,13,3,14,1,30,2,33,3,13,1,30,1,13,1,14,1,5,1,14,8,33,1,13,2,14,1,33,2,14,3,33,1,14,8,5,1,14,22,13,1,30,2,13,1,30,2,13,1,30,1,28,3,30,1,13,1,14,4,13,2,30,1,13,1,14,2,33,1,13,1,14,1,33,1,13,1,30,1,28,1,13,1,14,1,33,1,14,17,13,1,30,3,13,3,33,1,5,1,14,18,30,2,13,1,30,2,28,2,30,1,14,2,33,1,14,7,30,2,28,3,30,1,14,1,13,2,14,24,33,1,14,1,33,1,14,4,13,3,28,3,30,1,28,4,13,1,14,2,33,1,14,5,1,9,29,1,28,5,30,3,28,7,9,1,1,5,7,1,28,1,1,204,}, + {1,115,28,1,11,1,1,8,14,5,33,1,13,2,14,1,13,1,30,1,28,2,30,3,28,1,13,1,14,1,5,1,14,10,33,2,14,1,33,2,14,1,33,1,14,1,13,2,14,1,33,1,14,6,13,1,30,1,28,3,30,3,28,2,30,1,28,2,30,1,14,15,33,1,14,2,13,1,28,1,30,3,13,1,30,1,14,1,13,2,14,3,13,2,14,2,5,1,14,8,33,3,14,1,13,1,33,1,14,3,33,1,14,31,13,1,30,2,13,1,30,2,13,1,30,1,28,4,13,2,33,1,14,2,13,4,14,5,33,1,13,1,30,1,28,1,13,2,14,18,13,3,30,1,13,3,33,2,14,16,33,1,14,1,30,1,13,1,30,2,28,3,30,1,14,1,13,1,33,2,14,4,13,2,30,2,28,1,30,1,28,1,13,2,14,1,33,1,14,22,33,1,14,10,30,1,28,7,30,1,14,5,33,1,14,1,33,1,14,1,1,9,30,1,28,4,30,4,28,7,13,1,1,5,9,1,28,1,1,204,}, + {1,115,28,1,11,1,1,8,14,6,13,1,6,1,13,1,14,1,30,1,28,2,30,1,13,1,28,1,30,1,13,1,5,1,33,1,5,1,14,11,13,3,14,1,33,1,14,1,13,2,14,7,33,1,13,1,28,1,30,1,13,1,30,2,28,4,30,1,28,2,30,1,14,1,33,1,5,1,14,15,13,1,28,1,30,1,13,1,30,1,28,1,30,1,33,1,14,1,33,2,13,1,14,5,5,1,14,12,33,1,14,36,13,1,30,2,13,1,30,1,28,1,13,1,30,1,28,4,30,1,13,1,33,3,14,1,13,1,30,2,14,1,33,3,14,3,30,2,13,2,14,18,33,1,13,1,14,1,30,2,13,2,14,1,33,1,14,2,5,1,14,12,33,2,13,1,30,1,13,1,28,1,30,2,28,1,30,2,13,3,14,2,33,1,14,1,13,1,30,1,13,1,30,1,28,1,30,2,28,1,13,2,33,2,14,22,33,1,14,8,33,1,13,1,30,2,28,6,13,1,14,1,33,2,13,1,14,1,33,1,14,1,33,1,14,1,1,2,11,1,1,6,15,1,28,4,30,6,28,5,13,1,1,5,10,1,28,1,1,204,}, + {1,112,28,2,1,1,28,1,11,1,1,8,14,6,13,2,30,1,13,1,30,1,28,2,30,2,28,1,13,1,14,3,33,1,14,10,33,1,6,1,14,3,13,1,14,1,33,1,14,9,13,1,30,3,13,1,30,1,28,7,30,1,14,1,33,1,14,15,33,1,14,1,13,1,30,1,13,1,30,3,14,2,33,1,14,1,30,1,13,1,14,2,33,1,14,20,33,1,14,30,30,1,28,1,30,4,13,1,28,3,30,1,28,2,13,2,33,2,14,1,13,1,30,2,33,3,14,1,13,1,33,1,13,3,30,1,13,3,14,16,13,2,14,1,13,1,30,2,13,1,14,1,33,1,14,2,5,1,14,9,33,2,14,1,33,2,30,2,13,1,28,1,30,2,28,1,30,1,13,1,30,1,13,1,33,1,14,2,33,1,14,1,13,1,28,1,30,5,28,1,30,1,13,1,14,24,33,1,14,9,13,1,30,1,28,7,13,1,14,3,33,1,14,4,5,1,1,9,14,1,28,4,30,5,28,6,13,1,1,5,8,1,28,2,1,203,}, + {1,115,28,1,11,1,1,8,14,6,30,1,13,1,30,1,13,1,30,1,28,2,13,1,30,1,28,1,13,2,14,2,33,2,14,8,33,2,13,1,14,1,33,1,14,1,30,1,13,1,14,4,5,1,14,5,13,1,30,2,28,2,30,1,28,2,30,1,28,2,30,1,28,1,30,1,13,1,14,1,5,1,14,14,33,1,14,1,13,1,28,1,30,4,14,2,33,1,14,1,13,3,14,1,33,1,14,13,33,1,14,3,33,4,14,30,13,1,28,1,30,2,28,1,13,1,30,5,28,1,30,3,33,1,14,2,13,1,30,1,13,1,33,2,14,1,13,4,30,2,28,1,13,3,14,16,13,1,33,1,14,1,13,6,14,2,5,1,14,7,33,1,14,1,33,2,14,1,33,1,14,1,30,2,13,1,30,1,28,1,30,1,28,1,30,1,13,3,33,1,13,2,33,1,14,2,30,3,28,1,30,1,28,2,30,1,13,1,14,21,33,1,14,2,13,1,14,7,33,1,13,2,30,1,28,6,30,1,13,1,33,4,5,1,14,2,33,1,5,1,1,9,14,1,28,5,30,4,28,6,14,1,1,5,6,1,28,2,1,203,}, + {1,115,28,1,11,1,1,8,14,4,33,1,13,1,30,3,13,1,30,1,28,2,13,2,30,2,6,1,33,1,14,1,33,1,13,1,14,8,33,1,14,2,33,1,13,1,14,1,13,2,14,10,13,1,30,2,28,7,30,5,14,1,33,1,14,12,5,1,14,2,13,2,30,1,13,1,30,1,28,1,30,1,13,3,14,2,30,2,14,1,33,1,14,9,5,1,14,5,33,2,14,1,33,1,13,1,14,31,13,1,30,5,28,1,30,1,13,1,30,1,28,2,30,1,28,1,30,1,13,2,14,1,33,1,30,1,13,1,33,1,13,6,28,3,13,1,33,1,14,20,13,6,14,15,13,1,14,1,13,3,30,1,28,3,30,1,13,3,33,1,13,3,5,1,14,1,13,1,28,1,30,1,28,4,30,1,14,22,33,1,14,2,33,1,14,1,33,1,14,4,5,1,13,3,30,1,28,2,30,1,28,3,13,1,33,5,5,1,14,3,5,1,14,1,1,9,30,1,28,5,30,1,28,3,30,1,28,3,30,1,11,1,1,5,28,3,1,203,}, + {1,112,28,1,1,2,28,1,11,1,1,8,14,4,13,2,30,1,13,1,6,1,13,1,30,1,28,2,13,2,30,2,13,2,14,1,33,1,13,1,14,11,33,1,13,1,14,1,13,2,14,1,33,1,6,1,14,4,5,2,14,2,30,1,28,8,30,2,13,1,28,1,30,1,14,1,33,1,14,15,13,4,30,2,13,1,14,1,6,1,13,1,14,2,13,1,30,1,13,1,14,10,33,1,14,5,13,1,6,1,14,2,13,1,14,1,33,1,14,30,30,1,28,2,30,2,28,1,30,1,13,1,30,2,28,1,30,1,28,2,30,1,13,1,14,1,13,9,30,1,28,2,30,2,33,1,14,20,33,1,13,5,14,11,33,1,14,2,13,1,30,1,14,1,13,2,30,2,28,3,30,2,28,1,13,1,14,1,13,3,33,2,13,1,28,6,30,1,13,1,14,21,33,1,14,3,33,1,14,4,5,2,13,3,30,1,28,2,30,1,28,3,13,1,14,1,33,4,14,6,1,9,9,1,28,5,30,1,28,6,30,1,9,1,1,5,11,1,28,2,1,204,}, + {1,111,28,5,17,1,1,8,14,4,13,4,14,1,13,1,28,3,13,2,30,1,13,3,33,3,14,11,13,2,14,1,13,2,33,2,13,1,14,5,5,1,14,2,30,1,28,5,30,1,28,3,30,1,13,1,28,1,30,1,14,1,5,1,14,13,13,2,30,1,13,3,30,1,28,1,30,1,14,1,33,1,13,2,14,1,30,2,14,1,33,1,14,15,13,2,14,1,13,1,6,1,14,3,33,1,14,27,33,1,13,1,28,3,13,1,30,2,13,1,30,2,28,1,30,1,28,3,13,1,14,1,30,2,13,2,30,1,13,4,30,2,28,1,13,2,33,1,5,1,14,16,5,1,14,2,33,4,13,2,14,11,33,1,14,2,13,1,30,1,13,1,33,1,13,1,28,4,30,4,13,1,14,1,6,1,13,2,14,1,33,1,13,1,28,1,30,1,28,3,30,1,28,1,13,1,14,24,33,2,14,7,13,1,30,1,28,4,30,1,28,1,30,1,13,1,14,1,5,1,14,1,33,2,14,2,33,1,14,1,13,1,14,1,1,9,14,1,30,1,28,11,13,1,1,6,9,1,28,3,1,203,}, + {1,111,28,5,12,1,1,8,14,1,5,1,14,2,33,2,14,1,13,1,14,1,13,1,28,3,13,2,30,2,13,2,33,1,14,11,33,2,30,1,13,1,14,1,13,2,14,1,33,1,14,9,30,1,28,4,30,2,28,4,30,2,13,1,14,15,13,2,30,1,13,3,30,3,13,1,14,1,13,3,30,2,14,1,13,1,14,12,5,1,14,2,13,2,33,2,13,1,14,2,33,2,14,28,13,1,30,1,28,2,30,1,13,2,30,2,13,1,28,1,30,1,28,3,30,1,13,1,30,2,13,7,30,2,28,1,13,1,14,1,5,2,14,23,13,1,33,1,14,15,30,1,13,3,28,4,30,2,13,5,30,1,13,1,14,2,30,3,28,2,30,2,28,1,13,1,14,22,13,1,14,1,33,1,14,7,33,1,14,1,30,2,28,3,30,1,28,1,13,1,33,1,14,6,33,1,13,2,30,1,13,1,1,9,11,1,28,11,13,1,1,7,28,4,1,203,}, + {1,113,28,3,12,1,1,8,14,9,30,1,28,3,13,2,30,1,28,1,13,2,33,1,14,11,33,2,30,1,33,1,14,2,13,2,14,2,33,2,14,6,13,1,30,2,28,3,30,2,28,4,30,1,13,1,14,14,5,1,14,1,33,1,13,3,30,2,13,1,30,2,13,1,14,1,13,1,30,1,13,1,30,1,13,2,14,12,5,1,14,2,13,3,14,3,33,1,5,1,14,1,33,1,13,1,33,1,14,25,33,1,13,1,28,3,30,1,13,1,30,2,13,1,28,1,30,1,28,3,30,1,13,1,30,1,28,1,13,1,14,1,13,1,33,2,13,2,30,2,28,1,13,1,14,21,5,2,33,1,5,1,14,13,33,1,14,4,13,1,30,1,13,1,30,1,28,4,30,2,13,6,30,1,14,2,30,1,28,1,30,1,28,3,30,1,13,1,14,19,5,1,14,2,13,4,14,7,33,2,13,2,28,3,30,2,13,1,14,7,13,3,30,1,13,1,11,1,1,9,30,1,28,8,30,1,14,1,1,7,10,1,28,4,1,203,}, + {1,112,28,2,1,1,28,1,12,1,1,8,14,5,5,1,33,1,14,1,13,1,28,4,14,1,13,1,28,1,30,1,13,2,14,13,33,1,13,2,33,2,13,2,14,2,33,3,14,3,5,1,14,2,13,1,30,2,28,3,30,1,28,4,30,1,13,2,14,13,5,1,14,3,13,4,30,1,13,1,28,1,30,1,14,1,13,1,30,1,13,3,14,16,13,1,14,1,33,1,14,3,33,3,13,1,14,27,5,1,14,1,28,3,30,1,13,1,30,1,13,1,30,1,28,2,30,1,28,2,30,3,28,1,33,2,14,1,33,1,14,2,13,2,30,1,28,1,13,2,14,21,33,1,5,1,14,5,5,1,14,7,33,1,13,1,14,1,13,2,14,1,30,2,13,1,28,2,30,2,28,1,30,2,13,2,30,1,13,3,30,1,13,1,14,1,30,1,28,3,30,3,14,20,5,1,14,1,13,1,30,1,13,3,14,7,33,1,5,1,14,1,13,1,28,3,30,1,13,1,14,8,13,1,14,1,13,1,28,1,13,1,14,1,1,9,13,1,28,6,13,1,14,1,1,8,17,1,28,5,1,203,}, + {1,112,28,2,1,1,28,1,12,1,1,8,14,1,5,1,14,2,33,2,14,2,13,1,28,3,30,1,13,1,30,3,13,1,6,1,13,1,14,12,33,1,13,1,30,1,13,1,33,2,14,2,33,1,13,1,14,6,5,1,13,1,30,1,28,1,30,1,28,3,30,1,28,5,13,2,14,17,13,1,33,1,14,1,13,1,30,2,28,1,30,1,14,1,13,1,28,1,13,3,14,10,5,1,14,4,33,2,14,3,33,1,14,1,13,1,33,1,13,2,14,1,33,1,14,27,30,1,28,1,30,2,13,1,30,4,28,1,30,1,28,4,30,1,13,1,33,2,14,1,33,3,5,1,14,1,30,3,13,1,14,20,33,2,14,15,13,1,14,1,30,2,13,1,30,1,13,2,28,3,30,1,28,2,30,2,13,1,30,1,13,5,14,1,30,1,28,3,30,3,14,22,13,1,28,1,30,1,13,2,14,7,33,1,14,2,30,1,28,3,30,1,33,1,14,10,13,1,30,1,13,1,9,1,1,9,15,1,28,1,30,1,13,1,9,1,14,1,11,1,1,9,11,1,28,3,1,206,}, + {1,112,28,2,1,1,28,1,12,1,1,8,11,1,5,1,14,2,33,1,5,1,14,2,13,1,28,3,30,2,28,1,30,1,13,4,14,9,5,1,33,2,13,2,30,1,13,1,33,1,13,1,33,2,6,1,33,2,14,6,13,1,28,6,30,2,28,4,30,2,14,16,13,2,14,2,30,4,13,1,14,1,13,1,28,1,13,3,14,14,33,3,14,5,13,1,33,1,14,2,33,2,14,26,13,2,30,3,13,2,30,4,28,5,30,1,14,1,33,1,13,1,14,1,33,2,14,1,33,2,30,1,13,1,30,2,33,1,14,16,33,1,14,2,13,1,33,2,14,16,13,1,30,2,13,3,28,2,30,2,28,4,30,1,13,2,30,1,13,3,30,1,28,3,30,4,14,21,13,1,28,2,30,1,13,1,33,1,14,1,5,1,14,7,13,1,28,4,30,1,33,1,14,3,5,1,14,2,33,1,13,1,33,1,13,5,1,10,11,2,1,12,11,1,28,4,1,206,}, + {1,112,28,2,1,1,28,1,12,1,1,8,11,1,5,1,14,5,33,1,13,1,28,3,13,2,30,1,13,1,14,4,33,1,5,2,14,7,5,1,33,1,13,2,28,1,13,1,14,1,13,1,33,1,14,1,13,1,14,9,28,6,30,1,28,3,30,1,28,2,13,1,14,1,5,2,14,13,33,2,30,1,13,2,30,1,28,1,30,1,13,1,14,2,30,2,13,1,14,19,33,2,14,1,33,1,13,1,14,3,33,4,14,24,6,1,13,2,28,1,30,1,13,1,30,1,28,2,30,2,28,5,30,1,14,1,33,2,13,1,33,1,13,2,33,1,13,1,30,1,13,1,30,2,14,1,33,1,14,18,33,1,14,11,5,1,14,7,13,3,30,1,13,1,30,1,28,4,30,1,28,3,13,2,30,2,13,1,30,2,28,1,30,1,28,1,30,2,28,1,13,1,14,21,13,1,30,3,14,2,33,1,14,8,13,1,30,1,28,3,30,1,14,8,13,1,14,1,33,1,30,1,13,2,33,1,14,1,1,22,16,1,28,5,1,206,}, + {1,112,28,2,1,1,28,1,12,1,1,8,11,1,5,1,14,1,33,2,14,2,33,1,13,1,28,3,13,1,33,1,13,1,33,1,14,3,33,1,5,2,33,1,14,3,5,2,14,4,13,2,28,1,30,1,13,2,14,1,33,1,14,3,5,2,14,3,5,1,14,1,30,1,28,7,30,1,13,1,30,1,28,1,30,1,13,1,14,2,5,1,14,15,30,2,13,1,28,1,30,2,13,2,14,1,13,1,30,1,13,1,14,16,5,1,14,2,13,1,33,1,14,1,33,1,14,2,13,1,14,1,33,1,14,1,33,2,14,24,13,2,30,1,28,2,30,1,28,10,30,1,14,3,13,1,14,1,13,2,14,1,13,2,14,1,30,1,13,1,14,32,5,1,14,4,5,1,14,2,33,1,13,2,30,1,13,1,30,1,28,2,30,2,28,2,30,2,13,3,28,1,30,2,28,1,30,1,13,1,30,3,28,1,13,1,14,22,30,2,13,1,14,11,13,1,30,2,28,2,30,1,14,10,33,1,30,1,13,2,33,1,14,1,1,20,11,1,6,1,28,5,1,207,}, + {1,112,28,2,1,1,28,1,16,1,1,8,11,1,14,3,33,2,14,2,30,1,28,3,13,4,33,1,14,2,33,2,14,1,33,1,14,4,5,1,14,4,13,1,30,1,28,2,13,1,14,1,33,1,13,1,14,4,5,1,14,3,5,1,14,1,13,1,28,1,30,1,28,3,30,1,28,1,30,3,28,1,30,2,14,2,5,1,14,15,13,1,6,1,13,1,28,1,30,4,13,4,33,1,14,13,33,1,14,4,33,4,14,2,13,1,14,1,33,2,14,26,13,2,30,1,28,2,30,2,28,9,30,1,14,1,33,1,14,1,13,1,14,1,30,1,13,1,14,1,13,1,14,1,33,1,30,1,13,1,5,1,14,31,5,1,14,3,5,2,14,1,33,2,14,1,13,1,30,1,13,1,30,1,28,2,30,2,28,2,30,1,28,1,13,1,30,1,13,1,28,1,30,1,28,2,30,2,13,1,30,1,28,2,13,1,14,19,33,2,14,1,13,1,30,1,14,1,33,3,14,8,13,1,30,5,14,5,5,1,14,4,33,1,13,3,33,1,14,1,1,5,11,1,1,12,11,1,7,1,28,3,1,1,28,3,1,207,}, + {1,112,28,2,1,1,28,1,16,1,1,8,11,1,14,2,33,1,14,1,33,1,14,2,13,1,28,3,30,1,13,1,30,1,13,1,33,1,14,7,13,1,14,2,33,1,13,3,14,1,13,1,30,1,28,2,30,1,14,4,5,1,14,6,5,2,13,1,28,9,30,4,13,2,14,13,5,1,14,2,33,2,14,1,13,2,30,3,13,3,30,1,13,1,14,19,33,1,13,2,14,1,13,2,5,1,14,30,13,1,28,2,30,1,28,3,30,1,28,6,30,1,14,2,13,2,14,1,30,1,13,1,14,1,13,2,14,1,13,1,14,1,5,1,14,17,5,1,14,14,5,1,14,2,33,1,5,1,14,2,33,2,13,1,30,1,13,2,30,1,28,1,30,3,28,1,30,4,13,1,28,1,30,1,28,2,13,2,30,2,28,1,30,1,14,20,33,1,13,4,14,1,33,1,14,1,33,2,14,6,13,3,30,1,28,1,30,1,13,1,14,5,5,1,14,2,33,1,13,1,14,1,13,3,33,1,14,1,1,5,17,1,11,2,1,7,11,1,9,1,28,5,1,2,28,3,1,207,}, + {1,115,28,1,16,1,1,8,11,1,14,2,33,1,14,2,5,1,33,1,13,1,28,3,30,3,13,1,14,5,33,1,14,2,30,1,13,1,14,1,33,1,13,3,14,1,13,3,28,1,30,1,14,1,5,1,14,1,5,1,14,8,5,1,14,1,30,1,28,2,30,2,28,4,30,6,14,13,5,1,14,6,13,1,30,3,13,3,30,1,13,1,14,1,5,1,14,13,5,1,33,1,14,3,13,2,33,1,13,1,14,1,5,1,33,2,14,2,33,1,14,23,5,1,14,1,33,1,30,1,28,1,30,1,28,2,30,2,28,6,30,1,14,2,13,4,30,1,14,1,13,2,14,1,13,1,14,1,5,1,14,1,5,1,14,13,33,1,14,3,5,1,14,10,5,3,14,2,5,1,14,2,33,3,14,1,30,2,13,2,28,1,30,1,28,1,30,1,28,1,30,1,13,1,30,2,13,1,28,1,30,1,28,2,30,1,13,2,30,1,28,1,30,1,14,21,13,4,33,2,14,2,33,1,14,6,13,3,30,1,28,1,13,2,14,6,5,1,14,1,13,2,14,1,13,2,33,1,14,2,1,5,17,1,11,2,1,2,17,1,16,1,8,1,29,1,28,4,1,1,28,3,1,3,28,2,1,207,}, + {1,115,28,1,16,1,1,8,11,1,5,1,14,4,5,1,33,1,13,1,30,1,28,2,30,2,13,1,30,1,14,5,5,1,14,1,13,1,30,1,13,1,14,1,13,3,30,1,14,1,13,2,30,2,13,1,14,7,33,1,14,1,33,1,14,2,5,1,14,1,13,1,28,2,30,2,28,4,30,3,28,3,14,17,33,2,14,1,6,1,13,1,30,2,13,3,30,1,13,1,33,1,5,1,14,12,5,2,14,4,13,1,33,2,13,1,14,1,33,1,13,2,14,4,5,1,14,21,5,3,13,1,28,2,30,1,28,1,30,2,28,6,30,1,14,3,13,3,30,1,14,1,13,2,14,1,13,2,14,1,33,2,14,13,5,1,14,14,5,3,14,2,5,1,14,1,33,2,14,1,33,2,13,1,30,1,13,1,30,3,28,3,30,1,13,1,30,2,13,1,28,1,30,1,28,3,13,3,30,1,13,1,14,21,33,1,13,1,30,1,13,1,14,1,33,1,14,2,33,1,14,6,13,1,14,1,13,2,30,1,13,1,14,7,5,1,14,1,13,2,14,1,13,2,33,1,13,2,14,1,1,2,11,1,1,1,11,3,1,1,11,1,28,3,1,7,28,2,1,3,28,1,1,208,}, + {1,115,28,1,16,1,1,8,11,1,5,1,14,2,5,1,14,3,30,1,28,3,30,2,13,2,14,5,5,1,14,1,30,1,28,1,13,1,14,1,30,1,13,2,30,1,13,3,30,2,33,1,14,4,5,1,14,9,13,1,30,1,28,6,30,1,13,1,30,2,28,3,14,2,5,1,14,17,33,1,13,6,30,1,13,1,33,1,5,1,14,12,5,1,14,2,6,1,13,2,14,1,33,1,14,1,13,3,30,1,13,1,33,1,14,28,13,1,28,1,30,1,28,1,30,4,28,5,13,1,14,3,13,4,14,1,13,5,14,1,33,2,14,14,5,1,14,10,33,2,14,2,5,1,14,3,33,1,14,1,33,3,14,1,13,1,33,1,13,1,30,2,28,1,30,3,28,1,30,1,13,1,28,1,30,1,13,1,30,2,28,4,30,1,13,2,14,21,13,1,14,1,13,1,28,1,13,1,14,1,13,2,14,1,33,1,14,5,13,1,30,1,13,4,14,3,5,2,14,3,5,1,14,1,13,1,14,2,13,2,30,1,33,2,14,1,1,2,15,1,1,6,28,1,1,7,28,4,1,212,}, + {1,115,28,1,9,1,1,8,11,1,14,3,33,1,14,3,30,1,28,2,30,2,28,1,13,2,14,5,5,1,14,1,13,1,30,2,14,1,13,1,33,1,13,1,30,1,13,4,30,1,33,1,14,4,5,1,14,2,5,1,33,1,14,6,30,1,28,4,30,1,28,6,30,2,13,1,14,11,33,1,14,6,5,1,14,2,13,5,28,1,13,1,33,1,14,16,30,3,13,1,14,2,13,1,6,1,13,4,14,8,33,1,14,19,13,2,30,1,28,1,30,1,28,1,30,3,28,4,13,1,14,2,13,1,30,2,13,1,14,2,13,1,30,3,13,1,14,18,33,1,14,9,33,2,14,2,5,1,14,3,33,1,14,1,33,1,14,1,33,1,14,1,6,1,33,1,13,1,30,1,28,3,13,2,30,2,13,1,28,1,30,4,28,4,30,2,13,1,14,20,13,2,14,2,30,1,13,1,14,1,13,1,6,1,14,1,33,1,14,5,13,1,28,1,30,1,14,1,13,2,14,8,5,1,14,4,13,2,30,1,14,1,33,1,14,1,1,2,11,2,1,4,11,1,28,2,1,6,28,4,1,212,}, + {1,115,28,1,9,1,1,8,11,1,14,3,33,1,14,3,30,1,28,2,30,2,28,1,13,2,14,4,5,2,14,2,13,1,28,1,13,1,14,1,13,1,30,1,13,2,30,1,13,2,30,1,14,8,33,2,14,6,13,1,30,1,28,2,30,1,28,1,30,1,28,3,30,1,28,1,13,2,14,23,13,4,30,1,13,1,14,17,13,3,14,1,33,1,13,1,14,1,13,1,30,1,13,2,33,1,14,2,5,1,14,1,5,1,14,23,30,2,13,1,28,1,30,1,28,2,30,1,28,5,30,1,14,1,33,1,14,1,13,2,33,2,14,1,13,1,30,3,13,2,14,15,33,1,14,9,5,1,14,2,33,2,14,1,5,1,14,4,33,2,14,1,13,1,14,3,13,1,30,1,28,1,30,1,28,1,13,1,30,3,13,1,30,1,13,1,28,1,30,2,28,4,30,2,14,1,5,1,14,18,13,1,30,2,14,2,13,2,33,1,13,2,14,3,33,2,14,1,30,4,14,1,13,2,14,2,5,1,14,5,5,1,14,2,13,2,14,1,13,2,14,1,33,1,5,1,1,2,11,2,1,4,11,1,29,1,28,1,1,6,28,5,1,3,28,1,1,207,}, + {1,115,28,1,9,1,1,9,14,3,5,1,14,3,13,1,28,2,30,1,13,1,28,1,13,1,14,9,13,1,30,1,13,8,14,5,5,1,14,4,33,2,14,5,5,1,14,1,30,1,28,8,30,2,13,1,14,1,33,1,5,1,14,8,33,5,14,7,33,1,13,2,30,1,13,3,14,18,33,3,13,1,30,1,13,2,30,1,13,1,14,6,33,1,14,22,33,1,30,1,28,1,30,3,28,8,30,1,13,1,14,4,33,2,14,2,13,1,30,4,13,1,14,14,33,1,14,13,33,1,14,1,5,1,14,4,5,1,33,1,13,1,30,1,33,1,14,1,13,1,30,5,13,1,28,1,30,1,13,2,28,1,30,1,28,2,30,3,28,3,30,1,14,1,5,1,14,18,30,3,13,1,14,3,33,2,14,6,13,1,28,1,30,1,13,1,30,1,13,1,33,1,14,12,30,2,13,1,14,1,13,1,33,1,14,1,33,1,14,1,11,1,12,1,1,3,11,1,1,2,9,1,28,1,1,8,28,3,1,3,28,1,1,207,}, + {1,115,28,1,9,1,1,9,14,2,5,2,14,3,13,1,28,2,30,1,13,1,30,1,13,1,14,12,30,1,13,5,33,1,14,5,5,1,14,1,13,2,14,1,33,1,14,2,33,1,14,3,5,1,14,1,13,1,28,8,30,3,14,11,33,4,14,1,33,2,14,5,33,2,13,5,14,15,33,2,13,1,14,2,13,1,30,5,13,1,14,1,13,1,33,1,14,3,33,1,14,1,33,1,14,19,33,1,14,1,13,1,28,3,30,4,28,4,30,1,28,1,30,1,13,1,14,6,13,2,30,2,28,1,30,1,13,1,14,13,33,1,14,7,33,2,14,4,6,1,13,1,14,1,5,2,14,3,5,1,14,1,13,1,30,1,13,1,14,1,13,1,30,3,28,2,13,1,30,1,28,1,13,1,30,1,28,1,30,3,28,1,30,2,28,3,30,1,14,20,13,1,28,1,30,1,14,1,33,1,13,1,14,1,33,1,14,7,13,1,28,1,30,1,13,4,14,12,13,1,30,1,13,1,14,1,13,1,33,1,14,1,13,1,14,1,9,2,1,6,11,1,28,1,1,6,28,2,1,214,}, + {1,115,28,1,9,1,1,9,14,2,5,2,14,2,5,1,33,1,28,2,13,1,30,2,13,1,14,4,5,1,14,3,5,2,14,2,13,6,33,1,5,2,14,5,30,1,13,1,14,1,33,1,14,1,13,1,6,1,14,6,13,1,28,5,30,5,13,1,14,12,33,2,14,1,33,2,14,2,5,1,14,2,33,1,14,2,13,3,14,1,5,1,14,14,33,1,13,2,14,1,33,1,14,1,13,3,30,1,13,4,33,2,14,4,13,2,33,2,14,16,33,1,14,1,13,1,28,5,13,3,28,6,13,1,14,6,13,1,30,1,28,3,30,1,13,1,14,21,33,4,13,4,14,2,5,1,14,3,5,1,14,1,13,1,30,1,13,1,14,1,13,1,30,2,13,1,30,2,13,1,30,3,28,11,30,1,14,19,13,2,28,1,13,1,33,2,13,1,14,3,5,2,14,3,33,1,13,1,30,1,28,1,30,2,13,2,14,8,5,1,14,1,13,1,33,1,14,1,13,1,14,2,33,1,14,1,13,1,30,2,9,1,11,1,1,1,11,1,1,5,28,2,1,5,28,2,1,214,}, + {1,111,28,3,1,1,28,1,9,1,1,9,14,6,5,1,14,1,28,2,30,3,13,1,14,5,33,1,14,5,33,2,13,1,30,1,14,3,33,1,14,1,5,1,14,5,30,2,14,1,13,4,14,2,5,1,14,3,13,1,28,3,13,6,28,1,14,1,33,2,14,13,33,2,14,2,5,1,14,2,5,1,33,1,14,2,33,2,14,3,33,1,14,8,5,1,33,2,14,2,13,2,14,1,33,1,14,1,33,2,13,1,30,1,13,4,14,1,33,1,14,3,13,2,14,1,13,1,6,1,13,1,14,6,33,1,5,1,14,9,30,1,28,5,30,1,13,2,30,2,28,4,13,1,14,2,5,1,33,1,14,1,13,1,28,4,30,2,13,1,14,15,33,1,14,10,28,1,13,1,14,2,5,1,33,1,14,5,30,1,13,1,30,1,14,1,33,1,13,2,14,1,13,2,30,2,28,3,30,2,28,8,30,1,14,15,33,2,14,2,33,1,13,3,33,2,13,1,14,2,5,3,14,3,33,1,13,1,30,2,13,1,28,1,13,1,33,1,14,8,5,1,14,1,13,2,33,1,13,1,33,1,14,1,5,1,33,1,13,1,30,2,14,1,1,1,11,2,1,5,29,1,28,1,1,4,28,3,1,214,}, + {1,111,28,2,1,2,28,1,10,1,1,9,14,7,13,1,28,2,30,3,13,1,14,5,33,2,14,4,5,1,14,1,13,1,30,1,14,2,33,2,14,7,13,1,30,4,13,3,33,1,5,1,14,3,13,1,30,1,28,2,13,1,14,1,30,1,28,1,30,1,13,1,30,1,13,1,33,2,14,9,5,1,14,4,33,2,14,5,5,1,14,6,13,1,6,1,33,1,14,7,33,3,14,2,13,1,33,1,14,3,33,2,13,1,28,1,30,1,14,1,13,3,33,1,14,3,13,2,33,1,13,1,30,1,13,1,14,1,5,1,14,14,33,1,13,1,28,3,30,1,28,5,13,1,14,1,28,3,13,1,14,1,33,1,5,1,14,1,13,1,28,5,13,2,33,1,14,20,33,2,14,1,33,1,14,2,30,1,13,1,14,1,5,2,33,1,14,1,5,1,14,3,13,2,6,1,14,5,13,2,30,1,28,1,30,1,28,2,13,1,30,1,28,6,30,1,28,1,30,1,14,16,33,1,14,2,33,1,13,2,30,1,13,1,14,5,5,1,14,4,33,2,13,3,28,1,13,1,33,1,5,1,14,9,33,2,14,4,5,1,13,1,30,1,28,2,14,1,1,3,11,1,1,4,9,1,28,1,1,2,28,5,1,8,28,2,1,204,}, + {1,111,28,2,1,2,28,1,8,1,1,9,14,3,5,1,14,3,13,1,28,2,30,3,13,2,14,10,5,1,14,1,13,1,28,1,13,1,14,6,5,2,14,2,13,1,30,1,13,4,30,1,13,1,33,1,5,1,14,1,13,1,33,1,13,2,30,1,28,1,30,1,14,1,13,1,28,2,13,1,30,2,13,1,33,1,5,1,14,14,33,1,14,8,33,1,14,3,13,2,33,1,14,4,5,1,14,2,33,1,14,3,13,2,14,6,13,1,28,1,30,1,14,1,13,3,33,1,14,3,13,1,33,2,13,3,33,1,14,15,33,1,13,2,28,2,30,1,28,5,30,1,14,2,13,1,30,1,28,1,13,1,14,2,13,1,28,2,30,1,28,3,13,1,14,22,33,2,14,1,33,1,5,1,14,1,6,1,14,1,33,2,14,3,5,1,14,4,13,2,14,5,13,1,30,4,28,2,30,1,28,4,30,1,28,2,30,1,28,1,30,1,14,18,33,2,13,2,30,1,13,1,14,1,5,1,14,8,33,1,14,1,13,1,30,1,13,1,30,1,13,1,33,1,14,17,13,1,28,3,14,1,1,3,11,1,1,4,11,1,28,1,1,2,28,5,1,8,28,2,1,204,}, + {1,115,28,1,8,1,1,9,14,7,30,1,28,2,30,3,13,2,14,11,13,1,30,1,28,1,13,1,14,6,33,1,14,3,13,1,30,1,13,4,30,1,14,1,33,3,13,1,14,1,13,3,30,1,13,3,28,2,30,1,13,3,14,22,33,2,14,3,5,1,14,3,13,1,33,1,14,3,5,1,14,2,33,2,14,1,13,3,14,1,33,1,14,2,5,1,14,2,30,1,13,1,14,2,13,1,14,2,33,1,14,4,33,1,13,4,33,1,14,14,33,1,13,2,28,9,13,1,14,2,13,1,28,1,30,1,14,1,33,1,30,4,28,2,30,1,14,14,33,1,14,12,5,1,14,1,33,1,14,2,33,1,14,8,33,2,14,5,13,2,30,2,28,3,30,1,28,3,30,1,28,1,30,2,28,2,13,1,14,16,33,1,14,1,33,1,14,1,13,2,30,1,13,1,14,1,5,2,14,1,33,1,14,7,13,1,30,1,13,1,30,2,13,1,14,13,5,1,33,2,14,1,30,1,28,3,13,1,1,9,28,2,1,4,28,1,1,9,28,2,1,204,}, + {1,112,28,4,7,1,1,9,14,7,30,1,28,2,30,2,13,1,14,1,13,1,14,11,13,1,30,1,28,1,14,9,5,1,14,2,13,1,30,1,13,2,30,2,14,1,13,1,14,2,13,4,30,1,28,1,13,1,14,1,13,1,28,2,30,3,13,1,14,5,33,2,14,11,33,1,14,8,33,1,14,3,13,2,14,3,5,1,14,2,33,2,14,1,13,3,14,1,33,1,14,1,5,1,33,1,14,2,13,1,33,2,14,1,13,1,14,2,33,1,14,4,33,1,13,4,14,16,33,1,13,1,28,10,13,1,14,2,13,1,30,1,13,3,33,1,13,1,30,1,13,1,30,2,13,1,14,28,33,2,14,1,13,1,14,6,5,2,14,7,13,2,30,2,28,5,30,1,28,4,30,1,28,1,30,1,13,1,14,16,33,1,14,1,13,1,14,1,13,2,30,1,13,1,14,4,33,1,14,2,5,2,14,1,13,3,30,1,13,2,6,1,14,16,13,1,28,1,30,1,28,1,30,1,28,2,15,1,1,8,29,1,28,1,1,1,28,2,1,217,}, + {1,112,28,4,7,1,1,9,14,7,30,1,28,2,13,1,28,1,13,1,14,1,13,1,14,12,28,2,14,9,5,1,14,2,13,1,30,1,13,1,14,1,30,1,13,3,14,2,13,1,30,1,13,2,30,3,14,1,30,1,28,5,13,1,14,16,33,1,13,2,14,1,33,1,14,5,13,1,33,1,14,3,13,2,14,3,5,1,14,2,33,2,14,1,33,2,13,1,14,1,33,1,14,1,5,2,14,4,33,1,14,1,13,2,33,1,5,2,14,4,13,2,30,2,13,1,14,16,13,1,28,11,30,1,14,1,13,1,30,2,13,1,30,1,33,1,14,3,13,1,30,1,13,1,14,28,33,2,14,13,33,1,14,1,33,1,14,1,13,2,30,4,28,2,30,1,13,1,28,6,30,1,14,15,33,1,14,1,33,1,14,1,33,1,14,1,30,1,13,1,28,1,13,1,14,2,5,1,14,1,33,1,14,2,5,1,14,2,13,1,30,1,13,1,30,1,13,1,33,1,13,1,14,12,5,1,14,3,13,1,28,3,30,1,28,2,15,1,1,2,11,1,1,5,10,1,28,1,1,2,28,1,1,217,}, + {1,112,28,4,7,1,1,9,14,7,30,1,28,2,13,1,28,1,6,1,33,1,6,1,13,1,14,10,13,1,28,2,13,1,33,1,14,10,13,2,30,1,13,1,30,2,28,1,13,1,14,2,13,1,30,2,13,1,28,1,30,3,28,6,13,1,14,2,33,1,14,12,33,1,13,3,14,6,30,2,13,1,14,1,5,1,14,2,6,1,13,1,14,5,33,2,14,1,33,1,14,13,13,2,14,6,13,2,30,1,13,1,30,1,13,1,14,1,33,1,14,10,5,1,14,3,30,1,28,12,13,1,30,1,28,1,30,1,13,3,14,4,33,1,14,1,33,1,14,1,33,1,14,21,33,1,14,3,13,1,33,1,14,8,33,1,14,2,33,1,13,2,33,1,13,1,14,1,13,1,30,1,13,2,30,1,13,1,28,2,13,2,28,6,30,1,14,14,33,2,14,1,13,1,14,1,33,2,13,2,30,1,13,1,33,2,5,1,14,4,5,1,14,1,13,1,28,2,13,2,14,1,33,2,14,12,5,1,14,2,13,1,30,1,28,3,30,1,28,2,14,1,1,8,17,1,28,1,1,220,}, + {1,112,28,4,6,1,1,9,14,7,30,1,28,2,13,2,14,2,13,1,14,11,13,1,28,2,30,1,33,1,14,8,5,1,14,1,13,1,14,1,30,1,13,1,30,1,28,2,13,3,14,1,13,1,30,2,28,2,30,1,13,1,30,1,28,5,13,1,14,1,33,1,13,1,14,10,33,1,14,2,13,3,14,4,33,1,13,1,30,2,13,1,14,1,33,2,14,1,13,2,14,4,13,18,30,2,13,11,14,1,13,2,14,10,33,1,14,3,13,1,30,1,28,10,30,2,28,3,30,1,13,2,14,1,33,1,5,1,14,27,33,1,14,3,13,2,33,1,14,2,33,1,14,4,33,2,14,1,33,1,13,2,14,1,13,3,30,1,13,2,30,4,13,2,28,6,30,1,14,14,33,1,13,2,33,1,14,1,33,2,13,3,14,1,13,1,33,1,5,1,14,1,5,1,14,1,33,1,5,1,14,1,13,1,30,2,13,2,33,1,14,17,30,1,28,4,30,1,28,2,9,1,1,2,11,1,1,5,11,1,28,3,1,218,}, + {1,111,28,5,6,1,1,9,14,5,5,1,14,1,30,1,28,2,14,7,33,2,14,7,30,1,28,2,30,1,14,3,5,1,14,7,13,2,30,1,13,2,28,2,13,1,30,1,13,3,28,1,30,2,28,1,30,1,13,3,28,2,30,1,28,1,30,2,14,1,33,1,14,9,33,2,14,2,13,3,14,4,13,1,30,1,13,1,30,1,13,1,14,2,33,1,14,1,13,5,30,8,28,1,30,1,28,1,30,8,28,1,30,7,28,1,30,6,13,3,14,6,5,1,14,1,33,1,14,3,13,2,30,1,28,7,30,2,28,6,13,2,33,3,14,27,33,1,14,3,33,1,14,7,33,1,14,1,5,1,14,3,13,2,14,1,13,1,30,1,13,3,30,3,13,2,14,1,13,1,30,1,28,2,30,2,28,1,13,1,14,1,33,1,14,3,33,1,14,6,5,1,33,2,30,1,13,1,33,1,13,1,33,2,13,1,28,1,13,1,14,1,13,1,14,8,13,5,33,1,14,17,30,1,28,7,13,1,1,5,11,1,1,3,29,1,28,2,1,3,28,2,1,213,}, + {1,112,28,4,6,1,1,9,14,5,5,1,14,1,30,1,28,1,30,1,5,1,14,6,13,1,33,1,14,7,30,1,28,1,30,1,28,1,13,1,14,1,33,2,14,5,33,1,14,2,13,4,28,2,30,2,13,1,14,1,13,1,28,1,30,4,13,4,28,1,13,1,30,2,28,1,13,1,33,1,14,11,33,1,13,1,6,1,13,1,14,3,13,3,30,1,13,2,14,2,13,2,30,7,28,4,30,2,28,4,30,15,28,10,30,2,13,3,14,6,5,1,14,1,30,2,13,1,28,3,30,1,28,1,30,1,28,1,30,1,28,6,30,1,13,1,14,2,33,2,14,31,33,1,14,3,33,1,14,9,13,2,14,1,13,1,28,1,13,1,30,2,28,1,30,1,13,4,30,2,28,5,13,1,14,1,33,1,14,10,5,2,14,1,13,1,30,1,13,1,30,1,14,2,13,1,30,1,13,1,33,1,13,1,14,4,33,1,5,1,14,2,13,4,14,15,5,1,14,2,13,1,30,1,28,2,30,1,28,4,13,1,1,9,9,1,28,1,1,3,28,3,1,3,28,2,1,208,}, + {1,112,28,4,29,1,1,9,14,7,30,1,28,1,30,1,5,1,14,6,33,2,14,2,5,1,14,4,13,1,30,1,28,2,13,1,14,1,33,1,14,7,33,2,14,1,13,3,30,1,13,1,30,3,33,1,13,1,28,1,30,4,13,2,30,1,13,1,30,1,13,2,30,1,13,1,14,1,33,1,13,1,14,10,33,2,13,1,14,3,13,1,30,3,13,1,30,1,13,3,30,1,28,2,30,6,28,4,30,2,28,4,30,4,28,1,30,11,28,5,30,1,28,4,30,5,13,2,14,5,30,1,13,2,28,2,30,1,28,11,30,1,13,1,14,1,33,2,14,32,33,1,14,5,33,1,14,8,33,1,13,1,28,4,30,1,28,1,13,5,30,2,28,4,30,1,14,16,13,1,30,3,13,4,33,1,14,1,33,2,14,2,33,1,5,2,14,1,13,5,14,15,5,1,14,2,30,1,28,3,30,1,28,4,30,1,14,1,1,8,17,1,28,1,1,3,28,3,1,3,28,2,1,208,}, + {1,112,28,4,29,1,1,9,14,7,28,2,13,1,5,1,14,2,5,1,14,2,33,3,13,1,14,5,13,1,30,1,28,3,30,1,13,2,14,7,33,3,13,6,30,1,28,1,14,1,13,1,30,5,13,2,30,2,28,1,30,3,14,2,33,1,13,1,14,9,5,1,33,2,14,2,5,1,14,1,30,3,28,1,30,6,28,2,30,6,28,3,30,4,28,1,30,1,28,1,30,3,28,3,30,11,28,4,29,1,28,5,30,1,28,2,30,2,13,3,14,3,13,1,14,1,30,3,28,12,30,2,13,1,33,2,14,1,33,1,14,26,33,1,14,1,33,1,14,7,33,1,14,5,33,1,14,3,13,1,28,6,30,1,13,2,30,2,28,6,30,1,14,1,5,1,14,13,13,1,30,3,28,1,13,1,6,1,13,2,14,3,13,1,14,1,33,2,14,1,5,1,14,1,30,2,13,2,14,3,5,1,14,14,13,1,28,10,14,1,1,8,11,1,28,1,1,3,28,3,1,4,28,2,1,4,28,2,1,201,}, + {1,111,28,5,29,1,1,9,14,6,13,1,28,2,13,1,14,3,33,2,14,3,33,1,13,1,14,5,13,1,28,4,30,1,13,1,14,12,13,5,30,2,14,1,13,2,30,3,28,1,13,1,30,1,13,1,28,2,13,1,30,2,14,5,33,1,14,3,33,1,14,1,33,1,14,7,13,1,28,8,30,1,28,3,30,6,28,2,30,7,28,1,30,3,28,1,30,5,28,1,30,8,28,9,30,1,28,3,30,1,13,1,30,2,13,5,28,1,30,2,28,5,30,1,28,6,30,3,13,1,14,2,13,1,33,1,14,27,33,1,14,2,33,2,14,3,33,1,14,4,33,1,6,1,13,2,30,2,28,6,30,1,14,1,13,1,28,1,30,1,28,6,13,1,14,16,30,1,28,2,30,1,13,1,30,1,13,3,33,1,14,1,13,1,14,6,30,1,28,1,30,1,13,1,14,2,5,2,14,8,5,1,14,1,5,1,14,2,13,2,30,1,28,8,30,1,14,1,1,9,28,1,1,4,28,1,1,5,28,2,1,3,28,3,1,201,}, + {1,111,28,5,29,1,1,9,14,6,13,1,28,2,13,1,14,3,5,1,14,4,13,1,14,6,13,1,28,5,13,1,14,12,13,2,14,1,13,6,14,1,30,3,28,1,13,1,30,4,13,1,30,1,13,1,14,7,33,1,14,1,13,1,33,2,14,6,13,1,30,1,28,8,30,1,28,4,30,2,28,5,30,9,28,1,30,7,28,1,30,4,13,2,30,4,28,1,30,1,28,9,30,9,28,1,13,1,30,1,28,5,30,1,28,6,30,3,13,1,14,2,6,1,33,1,14,23,5,1,14,4,13,1,33,2,14,4,33,1,14,4,13,1,30,1,13,1,30,1,28,8,13,1,14,1,13,1,28,1,30,1,28,6,13,1,5,1,14,15,13,1,28,2,13,1,30,2,13,1,30,1,13,1,33,1,14,1,13,1,14,1,5,1,14,4,13,1,28,1,30,1,13,1,14,2,33,1,14,9,5,1,14,3,13,1,30,4,28,7,13,1,14,1,1,9,8,1,28,1,1,2,28,3,1,1,28,1,1,2,28,2,1,3,28,2,1,202,}, + {1,115,28,1,29,1,1,9,14,6,13,1,28,2,14,4,5,1,14,3,13,1,30,1,14,5,33,1,13,1,28,5,13,1,14,4,33,1,14,7,13,7,30,1,13,1,14,1,30,4,13,1,30,1,28,1,13,1,30,1,13,1,30,1,13,1,14,6,5,1,14,2,33,3,14,6,30,1,28,9,30,1,28,3,30,3,28,5,30,7,28,3,30,12,13,1,30,2,13,2,30,3,28,9,30,5,13,1,30,3,28,1,30,1,28,14,30,2,13,2,14,1,13,1,14,29,13,1,33,2,14,6,5,1,14,2,13,2,30,3,28,3,30,1,28,3,13,1,30,1,13,1,30,2,28,5,30,1,13,1,5,1,14,15,13,1,28,1,30,3,13,3,33,2,14,1,33,1,14,1,33,1,14,2,33,1,14,1,13,1,30,2,13,2,14,14,13,2,30,1,13,1,30,3,28,6,13,2,14,1,1,8,12,1,28,1,1,3,28,2,1,1,28,1,1,2,28,2,1,207,}, + {1,113,28,3,29,1,1,9,14,6,13,1,28,2,14,8,13,1,30,1,14,1,33,1,14,4,13,1,28,5,13,1,14,4,13,1,14,1,33,2,13,1,33,2,14,3,13,1,30,1,13,1,33,1,13,1,30,1,13,1,30,2,13,5,30,5,13,1,14,5,5,1,14,2,33,1,14,1,13,1,33,1,14,5,13,1,28,10,30,1,28,3,30,4,28,4,30,6,28,2,30,1,28,1,30,8,28,1,30,3,13,5,30,3,28,2,30,1,28,5,30,11,28,11,30,1,28,2,30,1,28,1,30,1,13,3,6,1,14,26,33,1,14,2,33,1,14,1,33,1,14,9,13,2,30,1,28,3,30,1,28,3,30,4,13,1,30,1,28,6,30,1,13,1,14,17,30,4,13,1,14,1,13,2,14,4,33,1,14,1,33,1,14,1,13,1,30,5,14,13,33,1,13,1,30,2,13,1,30,1,28,1,30,1,28,2,30,1,28,1,30,1,13,3,14,1,1,8,11,1,28,2,1,7,28,2,1,5,28,6,1,3,28,2,1,192,}, + {1,113,28,3,29,1,1,9,14,6,30,1,28,2,14,9,6,1,14,1,5,2,14,1,13,1,30,2,28,5,13,1,14,4,13,1,14,1,13,1,14,1,33,1,13,2,14,3,30,2,14,1,13,2,30,1,13,1,30,2,13,1,14,1,6,1,13,2,30,1,13,1,30,3,13,1,33,1,14,7,13,1,14,7,13,1,28,15,30,4,28,4,30,18,28,1,30,3,13,3,30,1,13,2,30,2,28,2,30,1,28,1,30,1,28,3,30,1,28,1,30,10,28,10,30,1,28,3,30,2,13,3,30,1,14,4,33,1,14,21,33,2,14,1,33,3,14,1,33,1,14,1,33,1,14,5,13,2,30,1,28,2,30,1,13,1,30,1,28,2,30,1,13,1,30,5,28,3,30,1,28,1,30,1,14,18,13,1,28,1,13,1,30,1,13,1,14,1,13,2,14,4,33,1,14,3,30,1,28,1,30,3,13,1,14,12,13,3,30,2,13,1,30,1,28,1,30,1,28,2,30,3,13,1,33,1,14,2,1,9,28,2,1,7,28,1,1,6,28,6,1,3,28,2,1,192,}, + {1,115,28,1,29,1,1,9,14,5,33,1,30,1,28,1,30,1,14,7,5,1,14,1,13,1,14,1,5,1,14,1,13,1,30,3,28,1,30,1,28,2,30,2,13,1,14,3,33,1,13,1,33,1,14,1,13,3,14,1,13,4,14,3,13,4,14,2,13,9,33,1,14,7,13,1,14,6,13,1,28,12,30,1,28,4,30,2,28,2,30,1,28,1,30,12,13,1,30,9,13,1,30,1,13,5,30,1,13,1,30,3,28,1,30,1,28,3,30,1,28,2,30,9,28,13,30,4,13,3,14,33,33,1,14,1,13,1,14,1,5,1,14,1,13,1,14,1,30,1,13,1,30,1,28,2,13,1,30,1,28,1,30,1,28,1,30,1,13,1,30,1,28,1,30,2,28,4,30,2,13,1,14,18,13,1,30,1,13,3,14,1,33,1,13,1,14,8,13,1,30,5,33,1,14,11,13,3,30,1,13,2,30,2,28,1,30,1,28,1,13,2,30,1,13,1,14,2,5,1,1,9,7,1,28,1,1,10,28,2,1,2,28,6,1,3,28,2,1,192,}, + {1,115,28,1,29,1,1,9,14,5,33,1,30,1,28,1,30,1,14,8,33,1,14,1,33,1,5,1,14,1,30,4,28,1,30,1,28,1,30,3,13,1,14,1,13,2,14,1,6,1,14,2,33,1,13,4,33,1,14,2,5,1,14,3,13,3,33,1,14,3,13,2,33,1,13,1,14,1,13,2,33,1,14,7,33,2,5,1,14,1,13,3,30,1,28,12,30,1,28,4,30,1,28,2,30,28,13,4,30,7,28,3,30,1,28,3,30,6,13,1,30,1,28,9,30,1,28,3,30,2,28,2,13,2,14,32,5,1,33,1,14,1,13,2,14,3,6,1,13,1,30,1,13,1,30,1,28,2,13,2,28,1,30,2,28,1,13,1,28,3,30,1,28,5,13,1,14,19,13,4,33,1,14,2,33,1,14,8,13,1,28,1,30,1,13,1,30,2,13,1,14,10,13,2,30,1,13,1,30,1,13,2,30,1,28,2,30,2,14,2,30,1,13,1,14,2,33,1,11,1,1,8,16,1,28,1,1,10,28,2,1,2,28,6,1,3,28,2,1,192,}, + {1,115,28,1,29,1,1,9,14,5,33,1,30,1,28,1,30,1,14,6,33,1,14,3,5,2,14,1,13,1,30,1,28,1,30,2,28,1,30,3,28,1,30,4,14,1,13,1,14,4,33,1,13,2,14,2,33,1,5,1,33,1,14,2,33,1,14,3,33,2,14,1,33,2,14,1,13,4,14,9,33,1,14,2,13,1,30,2,28,12,30,5,28,1,30,1,28,1,30,10,28,2,30,18,13,1,30,1,13,2,30,7,28,2,30,1,28,3,30,8,28,12,30,1,28,1,30,1,28,2,30,1,13,1,14,3,5,1,14,21,5,1,14,5,5,1,33,2,14,1,13,2,14,2,13,1,30,1,13,1,28,1,30,2,13,1,28,1,13,2,30,2,13,1,30,4,28,1,30,1,28,5,13,1,33,1,5,1,14,17,13,4,33,1,14,2,33,1,14,8,13,1,28,1,30,1,13,1,30,2,14,11,13,2,28,2,30,1,13,2,28,3,13,2,14,2,13,1,14,1,13,1,14,1,33,1,14,1,1,8,11,1,28,1,1,7,28,14,1,196,}, + {1,115,28,1,29,1,1,9,14,6,30,1,28,1,13,1,14,10,5,1,14,3,13,1,30,3,28,1,30,3,28,4,30,1,14,4,5,1,14,2,13,1,33,1,14,3,33,1,13,2,14,2,33,1,14,2,33,1,5,2,14,2,13,1,30,1,13,3,14,4,33,1,14,4,13,4,30,2,28,9,30,2,28,1,30,5,28,1,30,12,28,2,30,18,13,1,30,10,28,6,30,2,28,1,30,5,28,12,30,1,28,3,30,1,13,1,14,35,33,1,13,1,30,1,13,1,14,1,30,2,13,1,28,1,13,1,30,1,13,1,28,1,30,4,13,1,30,1,13,1,30,2,28,6,30,1,14,1,33,1,5,1,14,17,13,1,30,1,13,4,14,1,33,1,14,4,5,1,14,2,33,1,14,1,13,2,30,1,28,2,13,1,14,10,30,1,13,1,30,1,28,1,13,4,30,3,13,1,14,4,13,1,14,1,33,1,14,1,1,9,28,28,1,2,28,2,1,186,}, + {1,114,28,2,29,1,1,9,14,6,30,1,28,1,13,1,14,9,33,1,14,4,33,1,13,1,30,1,28,3,30,1,28,2,30,1,28,2,30,1,14,1,33,1,5,1,14,4,13,1,14,2,33,1,14,1,33,1,13,2,14,2,5,1,14,2,5,2,14,2,13,2,30,1,13,2,14,4,33,2,14,3,13,2,30,1,13,3,30,2,28,7,30,3,28,1,30,5,28,1,30,11,28,2,30,19,13,1,30,11,28,9,30,3,28,17,30,1,13,1,14,2,33,1,14,32,13,4,14,1,13,1,30,5,13,1,28,1,30,2,13,1,30,2,13,1,30,1,28,8,13,1,14,20,13,1,30,1,13,2,30,1,13,1,14,1,33,1,14,1,33,1,14,2,5,1,14,2,33,1,13,2,30,1,28,1,30,2,14,11,13,1,30,2,28,1,13,1,30,1,13,2,33,1,13,1,30,1,14,2,33,1,5,1,14,1,13,1,33,1,5,1,14,1,1,9,16,1,29,1,7,1,9,1,16,1,17,1,11,2,1,7,11,2,1,2,11,2,16,1,9,1,28,6,1,1,28,2,1,186,}, + {1,113,28,4,1,9,14,6,30,1,28,1,13,1,14,7,5,1,14,6,33,1,14,1,13,1,28,3,30,1,28,5,30,1,13,2,14,2,33,1,14,1,13,2,14,6,13,1,14,2,33,2,14,4,13,5,14,5,33,2,14,2,13,1,30,1,13,5,30,2,28,7,30,1,28,1,30,3,28,1,30,3,28,1,30,2,28,1,30,8,28,3,30,22,28,1,30,2,28,1,30,5,28,5,30,2,28,1,30,3,28,17,30,2,14,2,33,1,14,2,5,1,14,29,13,4,33,1,13,1,30,1,13,2,28,1,30,5,13,1,28,1,30,1,13,1,30,1,28,3,30,1,28,3,30,2,14,20,13,1,30,1,13,2,30,2,13,2,14,1,33,2,14,4,13,1,28,2,30,1,28,1,13,2,14,12,30,3,13,1,30,1,13,1,33,1,5,1,13,1,6,1,14,1,5,1,14,1,33,1,14,3,33,1,14,1,1,24,11,1,1,8,11,1,16,1,28,6,1,186,}, + {1,112,28,5,1,9,14,6,13,1,28,1,13,1,14,2,5,1,14,13,13,1,30,1,28,1,30,2,28,1,30,1,28,2,30,1,28,2,13,1,14,1,13,5,33,1,13,1,33,1,14,3,13,2,14,6,33,3,14,11,13,1,30,2,13,4,30,2,28,8,30,1,28,1,30,3,28,2,30,10,28,1,30,2,28,4,30,15,28,3,30,2,28,1,30,4,28,2,30,5,28,4,30,2,28,1,30,3,28,16,30,1,28,1,13,1,14,1,33,2,14,2,5,1,14,3,33,1,14,25,13,1,14,1,13,1,30,1,13,1,30,2,13,2,30,2,13,2,30,2,13,1,28,1,13,2,28,9,30,1,33,1,14,19,33,1,13,1,14,1,13,1,30,1,13,3,33,1,14,1,5,2,14,3,30,1,28,2,30,3,13,1,14,10,5,1,14,1,13,2,30,2,13,2,14,1,5,1,13,2,14,7,33,1,14,2,1,23,11,1,1,11,16,1,28,5,1,185,}, + {1,112,28,2,1,1,28,2,1,9,14,6,13,1,28,1,14,17,30,1,28,3,30,1,28,1,30,1,28,7,13,2,30,1,13,2,33,1,13,1,33,1,14,2,13,3,14,6,5,1,14,11,13,1,30,1,13,1,30,2,13,4,30,2,28,8,30,6,28,1,30,4,28,1,30,8,28,4,30,9,28,2,30,4,28,3,30,2,28,1,30,4,28,3,30,5,28,5,30,3,28,19,13,1,14,1,13,2,14,5,33,2,14,27,13,1,30,1,13,4,6,1,30,2,33,1,13,1,30,4,13,1,30,1,28,9,13,1,14,19,33,2,14,2,13,1,30,1,13,1,14,1,13,1,14,1,33,2,14,4,28,4,30,1,13,1,14,11,5,1,14,1,13,3,30,1,13,1,14,3,33,1,13,1,14,7,33,2,14,1,1,23,11,1,1,12,11,1,29,1,28,3,1,185,}, + {1,114,28,3,1,2,11,1,1,6,14,6,13,1,28,1,14,3,5,1,14,13,13,1,28,2,30,2,28,1,30,1,28,8,30,2,13,2,14,1,33,1,14,1,5,1,13,2,14,1,13,2,14,5,5,1,14,2,33,2,13,2,14,4,13,1,30,2,13,7,30,2,28,8,30,6,28,1,30,13,28,4,30,8,28,4,30,3,28,3,30,2,28,2,30,1,28,5,30,5,28,2,30,1,28,2,30,2,28,21,13,1,30,1,13,2,14,4,33,2,14,21,5,1,14,4,13,3,14,3,13,1,6,1,13,2,33,1,13,1,30,5,28,10,13,1,14,18,33,2,14,3,13,2,14,1,13,2,14,1,13,2,14,3,13,1,28,4,13,2,14,13,13,1,30,1,13,2,33,1,14,9,5,1,14,1,33,1,5,1,14,2,1,38,29,1,28,2,1,185,}, + {1,115,28,2,1,9,14,6,30,2,13,1,14,17,13,2,30,2,28,1,30,3,28,7,13,3,14,3,5,1,33,1,13,4,14,2,13,2,14,1,5,1,14,2,33,1,14,1,13,2,14,3,13,1,30,4,13,6,30,2,28,7,30,6,28,1,30,13,28,6,30,1,28,1,30,3,28,2,30,1,28,4,30,1,28,3,30,4,28,7,30,8,28,1,30,2,28,2,30,1,28,19,30,2,13,1,33,1,14,4,33,2,14,25,33,1,13,2,33,1,14,1,33,2,14,1,13,1,14,1,33,1,14,1,13,1,30,1,13,1,30,2,28,10,30,1,13,1,14,23,13,4,33,1,14,1,13,1,14,3,13,1,30,1,28,4,13,1,14,11,33,2,14,1,30,2,13,1,33,1,13,2,14,12,33,2,1,14,11,3,14,2,13,5,9,2,14,2,11,1,1,9,11,1,28,2,1,185,}, + {1,114,28,1,1,1,28,1,1,2,11,1,1,6,14,6,28,2,13,2,14,16,13,2,30,1,13,1,28,1,30,4,28,6,13,2,33,1,5,1,14,3,33,1,13,2,30,1,14,3,13,2,14,1,5,1,33,1,14,1,33,1,14,1,13,1,33,1,14,2,13,1,30,5,13,6,30,2,28,7,30,5,28,3,30,12,28,6,30,1,28,1,30,2,28,3,30,1,28,7,30,6,28,6,30,11,28,1,30,2,28,19,30,1,13,1,33,2,5,1,14,3,33,1,14,5,33,1,14,20,33,4,14,5,33,2,14,1,13,1,30,3,28,11,30,1,33,1,5,1,14,22,13,2,6,1,33,1,14,2,33,1,14,3,13,1,30,2,28,3,13,1,14,11,33,2,14,1,30,1,13,1,33,2,13,2,14,2,5,1,14,3,33,1,14,5,13,2,14,1,1,9,15,1,13,1,30,2,29,1,28,14,30,1,13,1,14,1,1,7,8,1,28,1,1,3,28,2,1,180,}, + {1,113,28,4,1,1,11,2,1,6,14,6,28,1,30,1,13,2,14,18,13,2,28,1,30,4,28,6,13,1,33,2,5,1,14,3,5,1,14,1,30,2,14,3,13,2,14,3,33,2,14,4,13,1,30,6,13,6,30,2,28,6,30,6,28,3,30,1,28,1,30,1,28,2,30,7,28,6,30,1,28,1,30,2,28,3,30,1,28,6,30,7,28,7,30,3,28,3,30,1,28,1,30,5,28,4,30,1,28,15,13,2,14,1,5,1,14,3,33,1,14,35,5,1,14,2,13,1,30,2,28,9,30,1,28,1,30,1,28,1,13,1,14,22,33,1,13,1,6,1,13,1,33,1,14,5,13,1,30,3,28,3,13,1,14,12,33,1,14,1,13,1,14,3,13,1,14,3,5,1,14,3,33,2,14,2,33,1,30,1,13,2,14,1,1,9,13,1,28,21,13,1,11,1,1,5,11,1,28,2,1,2,28,2,1,180,}, + {1,113,28,4,1,1,11,2,1,6,14,5,13,1,28,1,30,1,13,2,14,11,5,1,33,1,14,1,5,1,33,1,14,3,13,1,30,1,13,2,30,2,28,6,30,1,14,5,5,1,33,1,14,1,30,2,14,1,33,1,13,2,14,4,33,4,14,1,13,2,30,3,13,1,30,2,13,5,30,2,28,8,30,6,28,4,30,10,28,6,30,4,28,10,30,6,28,2,30,1,28,5,30,1,28,9,30,5,28,19,30,1,13,1,14,3,33,1,14,3,33,2,14,23,33,2,14,6,33,1,13,5,30,1,28,10,30,1,28,1,30,1,14,23,33,1,13,1,33,3,14,3,13,1,30,2,28,1,30,1,28,2,30,1,14,12,33,2,14,2,5,1,14,2,33,1,5,1,33,1,13,1,14,4,33,1,14,3,13,4,14,1,1,9,14,1,30,1,28,21,30,1,11,1,1,5,28,2,1,4,28,2,1,116,28,2,1,60,}, + {1,113,28,4,1,9,14,5,13,1,28,1,30,1,13,1,30,1,13,1,33,1,13,1,14,2,5,2,14,7,5,1,14,2,5,1,14,1,30,1,13,2,30,2,28,8,13,1,5,2,14,2,5,1,33,1,14,1,13,2,14,1,13,2,33,1,14,2,5,1,14,1,13,1,33,1,13,3,30,2,13,1,30,1,13,2,30,2,13,1,30,1,13,2,30,2,28,9,30,6,28,4,30,4,28,1,30,5,28,6,30,5,28,9,30,6,28,1,30,3,28,15,30,3,28,21,13,1,14,3,33,1,14,3,33,3,14,23,33,1,14,2,5,4,13,1,30,2,13,1,30,1,13,1,30,1,28,4,30,1,28,5,30,1,28,1,30,1,14,27,33,1,5,2,14,1,30,1,28,3,30,1,28,2,13,1,14,12,33,1,5,1,14,2,5,1,14,3,33,2,13,1,14,3,33,2,14,1,33,1,14,1,33,1,13,1,14,2,13,1,11,1,1,9,30,1,28,22,14,1,1,5,28,2,1,4,28,2,1,116,28,2,1,60,}, + {1,113,28,1,1,1,28,2,1,3,11,1,1,5,14,5,13,1,28,1,30,1,13,1,6,1,13,2,28,1,13,1,14,10,5,1,14,2,5,1,33,1,13,1,30,1,28,1,30,1,28,9,13,1,5,2,14,5,33,2,14,1,13,2,33,1,14,3,33,1,13,1,14,1,13,2,30,3,13,1,30,2,13,1,30,2,13,1,30,1,13,2,30,2,28,9,30,3,28,1,30,2,28,4,30,4,28,1,30,6,28,3,30,1,28,2,30,3,28,10,30,6,28,2,30,2,28,11,30,1,28,3,30,3,28,1,30,2,28,18,30,1,13,1,14,2,33,1,14,3,13,1,33,1,14,4,13,1,14,23,5,2,33,1,14,1,30,3,28,1,13,1,28,5,30,1,28,2,30,1,28,1,30,2,28,1,13,1,14,21,5,2,14,5,5,1,33,1,14,1,30,1,28,3,30,1,28,1,30,1,14,24,5,2,14,4,33,1,14,2,13,1,14,1,13,1,6,1,14,1,1,9,13,1,28,22,14,1,1,5,28,1,1,185,}, + {1,115,28,2,1,2,11,1,1,6,14,5,13,1,28,1,30,1,33,1,13,3,30,1,13,1,14,10,5,1,14,2,5,1,33,1,13,1,28,12,14,1,5,1,14,8,13,3,14,1,13,2,33,1,14,1,13,1,14,1,13,1,30,4,13,1,30,7,13,1,30,2,28,11,30,2,28,2,30,1,28,3,30,9,28,8,30,2,28,1,30,1,28,2,30,1,28,7,30,2,28,1,30,3,28,2,30,2,28,11,30,1,28,2,30,2,28,1,30,1,28,2,30,1,28,19,30,1,13,1,14,4,13,2,33,2,14,3,33,2,14,21,5,1,14,3,13,1,30,5,28,6,30,1,28,1,30,3,28,2,13,1,14,21,5,1,14,9,28,4,30,1,28,1,30,1,14,19,33,2,14,4,33,1,14,4,33,1,14,2,30,1,33,1,13,1,30,1,14,1,1,9,14,1,28,21,30,1,1,5,11,1,28,1,1,8,28,1,1,176,}, + {1,113,28,1,1,1,28,2,1,1,11,1,12,1,11,1,1,5,14,5,13,1,28,1,13,6,6,1,14,12,33,1,14,1,33,1,13,1,28,12,14,1,5,1,14,7,13,2,30,1,13,2,30,1,13,1,6,1,33,1,13,2,30,13,13,1,30,2,28,9,30,1,28,1,30,2,28,6,30,2,28,1,30,6,28,1,30,1,28,6,30,2,28,4,30,1,28,6,30,3,28,1,30,4,28,1,30,3,28,6,30,11,28,2,30,1,28,20,30,1,14,1,5,1,33,1,14,1,13,2,5,1,33,1,14,3,33,1,14,21,5,2,14,2,13,1,30,1,28,1,30,4,28,6,30,1,28,1,30,2,28,2,30,1,13,1,14,25,5,1,14,3,13,2,30,1,28,2,30,2,28,1,13,1,14,18,5,1,33,2,14,1,13,1,33,1,14,3,33,2,14,4,6,1,33,1,13,2,14,1,1,9,11,1,30,1,28,20,15,1,1,5,11,1,28,1,1,2,28,2,1,4,28,1,1,176,}, + {1,113,28,4,1,1,11,4,1,4,14,5,13,1,28,1,13,2,30,2,13,1,33,2,14,12,13,1,14,1,13,1,28,13,14,1,5,1,14,7,13,2,30,1,13,1,14,1,13,3,14,1,13,1,30,1,28,3,30,10,13,2,30,1,28,9,30,1,28,1,30,4,28,4,30,2,28,2,30,5,28,1,30,2,28,5,30,2,28,1,30,1,28,2,30,1,28,6,30,13,28,4,30,6,28,1,30,6,28,22,30,1,14,1,5,1,33,1,14,1,13,2,14,2,13,1,14,24,5,2,14,2,30,7,28,6,30,1,28,1,30,2,28,1,30,1,13,1,33,1,5,1,14,23,5,3,14,2,30,3,28,1,30,1,13,1,30,2,33,2,5,1,14,16,5,1,33,1,14,1,13,4,14,2,33,2,14,7,13,1,14,1,1,10,13,1,28,19,13,1,1,6,10,1,28,1,1,2,28,2,1,181,}, + {1,113,28,4,1,1,12,1,9,1,1,1,11,1,1,4,14,5,30,1,28,1,13,5,14,13,13,3,30,1,28,1,30,1,28,5,30,1,28,5,13,1,14,6,33,2,13,1,30,1,13,2,14,1,13,4,30,1,28,4,30,9,13,2,30,2,28,9,30,1,28,1,30,2,28,1,30,1,28,5,30,1,28,2,30,4,28,10,30,3,28,2,30,4,28,3,30,13,28,2,30,1,28,1,30,2,28,1,30,3,28,1,30,6,28,23,13,1,14,1,33,1,14,1,13,2,14,1,13,3,14,23,5,1,33,2,13,1,30,2,28,1,13,1,30,2,28,13,13,1,14,20,33,1,5,1,14,5,5,1,14,1,13,1,30,3,13,5,14,1,33,1,14,17,5,1,14,2,13,2,6,1,13,1,14,3,33,1,14,4,5,1,14,2,33,2,14,1,1,9,15,1,28,18,30,1,11,1,1,6,28,1,1,3,28,2,1,181,}, + {1,114,28,3,1,1,11,2,1,6,14,5,28,2,13,5,14,13,33,1,13,1,30,1,28,2,30,2,28,4,30,1,28,5,13,1,14,6,33,2,14,1,30,1,13,7,28,5,30,9,13,2,30,2,28,9,30,6,28,5,30,2,28,1,30,3,28,9,30,5,28,1,30,3,28,5,30,13,28,4,30,2,28,1,30,1,28,1,30,7,28,24,13,2,5,1,14,1,13,2,14,1,13,1,30,1,6,1,14,23,33,3,14,1,13,2,30,1,13,1,30,1,28,14,13,1,14,27,33,1,14,2,30,2,28,1,30,3,14,2,33,2,14,16,33,1,14,3,13,3,14,1,33,1,14,7,33,1,14,2,33,1,5,1,14,1,1,9,14,1,28,17,13,1,1,7,9,1,28,2,1,185,}, + {1,112,28,5,1,9,14,5,28,2,30,3,13,1,33,3,14,11,33,2,30,2,28,1,30,1,28,5,30,1,28,5,13,1,14,6,5,1,14,2,13,3,33,1,13,3,30,1,28,5,30,9,13,2,30,2,28,9,30,3,28,1,30,2,28,5,30,2,28,1,30,17,28,1,30,2,28,7,30,12,28,2,30,1,28,1,30,1,28,2,30,1,28,2,30,5,28,2,30,3,28,20,30,1,13,1,14,2,13,2,14,1,13,3,14,1,5,1,14,2,5,1,14,18,33,2,14,3,13,2,28,1,30,1,28,14,13,1,14,26,33,2,14,1,13,1,30,2,28,1,13,2,30,1,14,2,33,2,14,16,33,2,5,1,13,4,14,1,33,2,14,6,33,1,14,5,1,10,30,1,28,14,13,1,14,1,1,7,11,1,28,3,1,185,}, + {1,112,28,2,1,1,28,2,1,9,14,5,28,2,30,1,28,1,30,1,14,1,5,3,14,4,33,1,14,6,33,1,13,1,28,5,30,1,28,9,13,1,14,8,13,4,33,1,13,3,30,1,28,6,30,1,13,1,30,5,13,2,30,2,28,10,30,1,28,1,30,1,28,1,30,2,28,5,30,1,28,2,30,10,28,1,30,1,28,1,30,1,28,1,30,3,28,1,30,1,28,5,30,1,28,1,30,6,28,2,30,9,28,2,30,4,28,2,30,2,28,2,30,3,28,20,30,2,13,1,14,1,13,3,14,1,13,1,14,2,5,1,14,20,33,1,5,1,14,2,13,4,30,1,28,15,13,1,14,24,33,2,13,1,14,2,13,1,28,1,13,1,28,1,13,3,14,1,33,2,14,17,30,1,33,1,14,1,13,1,6,1,14,1,30,1,14,1,33,3,14,2,5,2,14,1,33,1,14,5,1,10,9,1,28,12,30,1,14,1,1,8,11,1,28,3,1,186,}, + {1,114,28,2,29,1,1,9,14,5,28,2,30,1,28,1,30,1,14,2,5,1,14,12,13,2,28,15,13,1,14,5,5,1,14,2,13,7,30,1,28,7,30,7,13,2,30,2,28,10,30,7,28,4,30,11,28,1,30,3,28,1,30,1,28,1,30,3,28,1,30,1,28,4,30,16,28,1,30,2,28,3,30,5,28,1,30,2,28,2,30,3,28,9,30,1,28,12,30,1,13,1,14,1,13,2,14,1,13,1,14,23,5,2,33,1,13,3,6,1,30,1,28,8,30,2,28,6,14,29,13,1,30,4,13,2,14,1,33,2,14,18,13,1,33,2,14,1,13,1,14,1,13,1,14,2,33,2,14,5,33,1,5,1,14,5,1,9,14,1,28,9,13,1,9,1,15,1,1,9,11,1,29,1,28,3,1,186,}, + {1,114,28,2,29,1,11,1,1,8,14,5,28,2,30,2,13,1,14,15,13,2,30,1,28,14,14,1,33,2,14,3,5,1,33,4,13,4,30,2,28,6,30,8,13,2,30,2,28,9,30,8,28,3,30,11,28,2,30,2,28,2,30,1,28,1,30,3,28,1,30,1,28,3,30,10,28,2,30,5,28,1,30,2,28,1,30,1,28,2,30,1,28,1,30,2,28,2,30,1,28,2,30,3,28,23,13,1,14,1,13,1,30,1,14,1,13,1,14,25,13,6,28,15,30,1,14,25,33,1,14,3,30,2,13,1,30,1,13,2,14,2,33,2,5,1,14,18,13,1,14,3,13,3,14,2,33,1,14,6,5,1,14,5,1,10,29,1,28,3,30,2,9,1,15,1,11,1,1,11,11,1,28,2,1,1,28,2,1,186,}, + {1,113,28,3,29,1,11,1,1,8,14,4,13,1,28,2,13,1,30,1,14,2,5,1,14,7,33,1,14,1,33,1,14,3,33,1,13,1,30,1,28,8,30,1,28,5,14,1,33,2,14,4,33,1,5,1,14,1,33,1,13,4,30,1,28,6,30,8,13,3,30,3,28,3,30,14,28,2,30,1,28,2,30,4,13,1,30,3,28,2,30,2,28,2,30,7,28,1,30,1,28,1,30,10,28,2,30,5,28,2,30,6,28,1,30,2,28,6,30,1,28,25,30,1,13,1,30,1,13,2,14,25,13,6,28,15,13,1,14,22,5,1,14,5,13,1,30,2,13,2,33,3,14,3,5,2,14,1,5,1,14,13,33,2,13,1,14,1,5,1,14,1,13,4,14,1,33,3,14,10,1,10,11,1,15,2,14,1,1,15,9,1,28,3,1,189,}, + {1,113,28,3,29,1,1,1,11,3,1,5,14,4,13,1,28,2,13,2,14,2,5,1,14,9,33,1,14,2,5,1,33,1,6,1,30,1,28,8,30,1,28,3,30,2,14,1,33,2,14,4,33,1,14,2,13,5,30,1,28,6,30,8,13,3,30,3,28,3,30,1,28,2,30,10,28,6,30,8,28,2,30,3,28,1,30,5,28,1,30,1,28,1,30,13,28,1,30,2,28,1,30,1,28,3,30,1,28,1,30,3,28,2,30,2,28,32,30,1,13,1,30,1,13,3,14,24,13,3,30,1,13,1,30,1,28,13,30,3,14,28,13,1,30,2,13,2,33,3,14,20,33,2,13,1,14,3,13,4,14,1,33,2,14,10,5,1,14,1,1,26,16,1,28,2,1,192,}, + {1,111,28,5,6,1,1,1,17,1,11,1,1,6,14,4,13,1,28,1,30,1,13,3,14,10,33,2,14,2,5,1,33,1,6,1,28,9,30,1,28,2,30,1,13,2,14,2,33,1,14,3,13,8,30,2,28,6,30,7,13,4,30,3,28,6,30,10,28,5,30,10,28,1,30,3,28,1,30,7,28,1,30,13,28,1,30,2,28,3,30,1,28,1,30,1,28,1,30,1,28,4,30,2,28,33,30,4,13,1,14,24,13,2,30,1,13,2,30,1,28,13,30,2,28,1,14,28,30,3,13,2,5,3,14,26,13,4,14,1,33,2,14,4,33,1,14,5,5,1,14,1,1,24,16,1,28,3,1,193,}, + {1,111,28,5,6,1,1,1,12,1,11,1,1,6,14,4,13,1,28,1,30,1,13,1,30,2,14,11,33,2,14,1,5,1,14,1,13,1,30,1,28,7,30,1,28,3,13,1,33,1,14,3,5,1,14,3,13,2,30,2,14,2,13,2,30,1,28,7,30,7,13,2,14,1,13,1,30,3,28,1,30,1,28,4,30,10,28,6,30,8,28,2,30,1,28,1,30,1,28,1,30,7,28,2,30,2,28,3,30,4,28,1,30,2,28,3,30,1,28,2,30,1,28,1,30,1,28,1,30,1,28,5,30,1,28,34,30,1,28,2,13,1,14,20,33,1,14,3,13,2,30,1,13,1,30,2,28,14,30,2,14,26,33,1,14,1,30,2,13,2,14,4,33,1,13,1,14,20,5,2,14,2,33,3,14,1,33,1,14,1,33,1,14,3,33,2,14,5,5,1,14,1,1,21,11,1,8,1,28,4,1,1,28,1,1,192,}, + {1,111,28,5,6,1,1,1,11,2,1,6,14,4,30,1,28,1,13,3,30,1,14,11,33,2,14,1,5,1,14,1,30,1,28,7,13,1,30,1,28,3,13,1,33,1,14,6,13,1,28,1,30,3,14,3,13,1,28,2,30,5,28,1,30,4,28,1,30,1,13,4,30,6,28,4,30,12,28,4,30,1,13,1,30,10,28,2,30,1,28,9,30,1,28,2,30,5,28,1,30,2,28,3,30,1,28,2,30,1,28,1,30,2,28,41,30,1,13,2,14,18,33,1,14,3,33,2,14,2,13,3,30,2,28,15,30,1,33,1,14,25,13,2,30,2,13,2,14,2,33,1,14,1,33,1,13,1,33,1,14,19,5,1,14,3,33,2,14,2,33,1,14,1,13,1,14,2,33,2,14,7,5,1,1,18,17,1,7,1,28,9,1,192,}, + {1,111,28,2,1,2,28,1,7,1,1,9,14,4,28,2,13,1,33,1,13,2,14,12,33,1,14,2,33,1,30,1,28,7,13,1,28,4,13,1,33,1,14,6,13,1,30,4,13,1,14,2,13,1,28,2,30,6,28,2,30,2,28,1,30,1,13,4,30,6,28,4,30,11,28,5,30,3,28,1,30,8,28,12,30,1,28,2,30,1,28,2,30,2,28,1,30,2,28,3,30,1,28,2,30,1,28,1,30,2,28,2,30,1,28,2,30,2,28,34,30,1,13,1,14,25,33,1,14,2,13,1,30,3,28,15,30,1,14,26,13,3,30,2,33,2,14,1,33,1,14,2,33,1,14,24,33,1,14,1,33,3,13,2,14,3,33,2,14,6,5,1,14,1,1,12,11,1,12,1,8,1,29,1,28,6,1,2,28,2,1,194,}, + {1,115,28,1,7,1,1,9,14,4,28,2,30,1,13,1,30,1,33,1,14,14,13,1,14,1,13,1,28,11,30,1,13,1,14,8,13,1,30,1,13,1,30,1,13,4,30,1,28,2,30,5,28,3,30,2,13,5,30,7,28,3,30,12,28,5,30,1,28,2,30,5,28,5,30,4,28,9,30,1,28,2,30,6,28,2,30,2,28,1,30,4,28,1,30,3,28,1,30,2,28,35,30,1,13,1,14,22,13,1,14,3,13,1,28,1,30,1,13,1,28,2,30,1,28,8,30,1,28,4,13,1,14,23,33,3,13,1,30,4,14,1,13,2,14,20,33,2,14,9,33,2,13,2,33,1,14,8,6,1,14,3,1,9,16,1,28,12,1,198,}, + {1,115,28,1,7,1,1,9,14,4,28,2,30,2,13,1,33,1,14,7,33,1,14,6,6,1,14,1,13,1,28,3,30,1,28,1,30,1,28,5,30,1,13,1,14,2,33,1,14,2,33,1,14,3,30,3,13,4,28,2,30,6,28,4,30,1,13,5,30,1,13,1,30,4,28,1,30,14,28,6,30,1,28,2,30,5,28,5,30,2,28,5,30,1,28,5,30,1,28,1,30,1,28,1,30,5,28,2,30,2,28,1,30,4,28,2,30,5,28,35,30,1,13,1,14,14,5,1,14,7,13,1,14,3,13,1,30,1,13,2,30,2,28,9,30,1,28,4,13,1,14,23,33,2,13,2,28,1,13,1,28,1,30,1,14,1,13,2,14,17,33,1,14,2,33,1,14,8,13,1,33,1,14,4,33,1,14,1,13,1,33,1,14,5,6,1,33,1,14,2,1,9,9,1,28,7,1,2,28,2,1,199,}, + {1,115,28,1,10,1,1,9,14,3,13,1,28,2,13,1,30,1,13,1,33,1,14,13,13,3,30,1,28,3,30,3,28,4,30,1,28,1,13,1,14,6,5,1,14,2,13,1,30,2,13,3,30,1,28,2,30,6,28,4,30,1,13,8,30,3,28,1,30,13,28,7,30,1,28,2,30,5,28,6,30,1,28,10,30,2,28,1,30,1,28,4,30,2,28,1,30,3,28,1,30,5,28,1,30,4,28,35,30,3,14,2,5,2,14,18,33,1,14,3,33,1,30,1,13,1,28,1,30,2,28,9,30,1,28,4,13,1,14,23,33,1,13,2,30,1,28,1,13,1,28,1,13,1,14,1,33,1,14,18,33,1,14,3,33,1,14,7,13,1,33,1,14,5,13,1,30,1,13,1,14,5,13,1,14,2,5,1,11,1,1,8,17,1,28,6,1,3,28,1,1,200,}, + {1,115,28,1,9,1,1,3,11,1,1,5,14,3,13,1,28,2,13,2,33,1,14,11,33,1,13,1,14,1,30,1,13,2,30,1,28,1,30,1,28,3,30,1,28,4,30,1,28,1,14,7,5,1,14,2,13,2,30,1,13,1,33,1,13,1,30,1,28,2,30,1,28,9,30,1,13,4,30,1,13,1,30,10,28,2,30,6,28,8,30,1,28,2,30,1,28,3,30,3,28,14,30,5,28,2,30,5,28,1,30,2,28,2,30,4,28,1,30,3,28,34,30,5,13,1,14,2,5,1,14,5,33,1,5,1,14,14,33,1,14,1,13,1,30,4,28,13,30,1,13,1,5,1,14,22,33,1,13,1,30,1,28,2,30,2,13,1,14,24,33,1,14,4,33,2,14,4,33,1,13,1,14,1,33,1,13,1,30,1,13,1,33,1,14,7,33,1,14,1,1,9,28,7,1,203,}, + {1,115,28,1,9,1,1,9,14,3,30,1,28,2,13,1,14,1,33,1,14,11,33,1,13,1,14,1,30,1,13,2,28,2,30,1,28,3,30,2,28,2,30,2,13,1,14,2,13,1,14,1,5,1,14,5,13,4,33,1,13,1,28,3,30,1,28,9,30,1,13,4,30,1,13,1,30,11,28,1,30,5,28,9,30,1,28,2,30,1,28,3,30,4,28,13,30,1,28,1,30,1,28,1,30,1,28,2,30,5,28,1,30,2,28,2,30,4,28,1,30,5,28,32,30,6,14,21,5,1,14,2,33,1,14,1,13,1,30,1,13,2,30,2,28,12,30,1,14,23,33,1,14,1,33,1,28,1,30,1,28,2,13,1,33,2,14,28,5,1,14,5,33,1,13,1,14,2,13,1,30,1,13,1,14,2,33,2,14,4,5,2,1,9,6,1,28,6,1,203,}, + {1,115,28,1,9,1,1,6,11,1,1,2,14,3,30,1,28,2,13,1,14,1,33,2,14,9,33,2,13,1,14,1,13,3,28,2,30,3,28,1,30,1,28,3,30,1,28,1,13,1,14,2,13,1,14,8,13,1,33,1,13,1,33,1,13,1,28,2,30,2,28,10,30,17,28,1,30,4,28,10,30,1,28,6,30,4,28,13,30,1,28,1,30,1,28,4,30,5,28,1,30,2,28,2,30,5,28,2,30,3,28,32,30,6,13,1,14,21,5,1,14,1,33,2,13,1,30,1,13,2,30,2,28,3,30,1,28,8,30,1,14,25,33,1,30,2,28,2,13,1,33,1,14,2,5,1,14,30,5,1,14,1,33,1,13,1,14,1,33,1,14,1,30,2,13,1,14,1,33,2,14,4,5,2,1,9,16,1,28,6,1,1,28,1,1,201,}, + {1,115,28,1,9,1,1,5,11,1,9,1,1,2,5,1,14,2,30,1,28,1,30,1,14,2,33,2,14,9,13,3,14,1,33,1,14,1,30,1,28,2,30,1,28,7,13,1,30,1,13,1,14,2,33,1,14,10,33,1,13,2,28,5,30,1,28,9,30,3,13,1,30,8,13,1,30,7,28,15,30,2,28,1,30,5,28,5,30,1,28,13,30,15,28,34,30,1,28,2,30,7,13,1,14,22,33,2,13,1,30,1,13,2,30,1,28,14,14,20,33,2,13,2,14,1,33,1,13,1,30,1,28,2,13,1,14,24,5,1,14,9,5,2,14,2,13,4,30,2,14,10,1,8,11,1,28,8,1,201,}, + {1,115,28,1,9,1,1,6,11,1,1,2,14,1,5,1,33,1,30,1,28,1,30,1,14,13,13,1,33,1,13,1,14,3,28,11,30,1,13,2,14,14,13,1,30,1,28,15,30,12,13,2,30,6,28,14,30,3,28,1,30,4,28,6,30,1,28,13,30,4,28,1,30,4,28,1,30,7,28,32,30,1,28,1,30,8,13,1,14,10,5,1,14,11,33,2,14,1,13,1,30,1,13,1,30,1,28,3,30,1,28,10,14,20,5,1,14,1,13,2,14,1,33,1,13,1,30,1,28,2,30,1,14,23,5,2,14,13,13,3,30,3,33,2,5,1,14,7,1,9,28,4,1,2,28,2,1,201,}, + {1,115,28,1,9,1,1,8,14,2,33,2,30,1,28,1,30,1,14,1,5,1,14,11,33,1,14,1,33,1,14,3,28,5,30,2,28,4,30,1,13,1,33,1,14,10,5,1,14,3,13,1,30,1,28,15,30,8,13,2,30,2,13,3,30,5,28,14,30,3,28,3,30,3,28,5,30,1,28,13,30,3,28,2,30,2,28,1,30,1,28,1,30,3,28,1,30,3,28,24,30,2,28,2,30,9,13,2,30,1,13,1,30,2,14,22,33,1,13,1,33,2,30,1,13,1,30,1,28,14,14,22,13,1,30,1,13,1,33,1,13,1,30,4,33,1,14,38,13,2,30,3,33,1,14,1,5,1,14,7,1,9,8,1,28,3,1,2,28,2,1,201,}, + {1,114,28,2,16,1,1,8,9,1,13,1,5,1,14,1,28,2,13,1,14,12,5,1,33,1,14,3,33,1,14,1,30,1,28,5,30,2,28,3,13,1,14,17,30,1,28,15,30,7,13,4,30,2,13,1,30,6,28,12,30,1,28,1,30,3,28,3,30,4,28,19,30,2,28,1,30,3,28,2,30,10,28,26,30,9,13,1,30,3,13,1,30,1,13,1,14,2,5,1,14,5,33,1,14,12,13,2,33,1,14,1,30,3,28,12,30,2,14,22,30,2,13,3,30,1,28,1,13,2,33,1,14,16,5,2,14,18,5,2,14,1,13,1,30,2,13,1,33,1,5,2,14,2,33,1,14,4,1,9,17,1,28,7,1,201,}, + {1,113,28,1,1,1,28,1,16,1,1,8,13,2,14,1,13,1,28,2,13,2,14,1,33,1,14,9,5,1,14,2,33,2,14,1,13,1,28,6,30,2,28,2,30,1,13,1,14,1,33,1,14,15,28,17,30,6,13,4,30,2,13,1,30,6,28,12,30,1,28,1,30,4,28,2,30,3,28,20,30,17,28,27,30,9,13,1,30,3,13,1,30,1,13,1,14,8,33,1,14,13,13,2,14,1,30,2,13,1,28,12,30,2,14,20,5,1,33,1,13,1,30,1,13,2,30,1,28,2,13,2,14,26,33,2,14,9,5,1,14,1,33,1,13,3,14,2,5,2,14,2,33,1,14,3,33,1,14,1,1,9,28,6,1,202,}, + {1,111,28,5,16,1,1,8,14,2,13,1,28,3,14,1,13,1,14,14,33,2,14,2,30,1,28,5,30,1,28,3,30,1,13,1,14,1,33,2,14,2,5,1,14,5,5,1,14,3,33,1,13,1,30,1,28,16,30,6,13,4,30,2,13,2,30,1,13,1,30,4,28,10,30,2,28,1,30,5,28,1,30,4,28,16,30,20,28,25,30,11,13,1,30,6,14,8,33,1,14,10,5,2,14,1,13,1,6,1,13,1,30,3,28,13,30,1,14,22,13,1,30,1,13,2,30,1,28,2,13,2,14,26,33,1,14,12,33,1,6,1,13,2,14,2,33,1,5,1,14,4,33,1,14,1,33,1,14,1,1,9,29,1,28,5,1,202,}, + {1,111,28,5,16,1,1,8,14,1,33,1,30,1,28,3,14,1,13,1,33,1,14,11,33,1,6,1,33,2,14,2,30,1,28,9,13,2,14,1,33,1,14,4,33,1,14,1,33,1,14,2,5,1,14,3,33,1,13,1,30,1,28,16,30,1,28,2,30,3,13,3,30,4,13,1,30,1,13,1,30,4,28,11,30,5,28,1,30,5,28,4,30,1,28,12,30,15,28,1,30,4,28,25,30,11,13,1,30,6,13,1,14,7,33,2,14,9,5,1,33,1,14,1,13,1,30,1,13,1,28,7,30,1,28,4,30,2,28,1,30,1,13,1,14,22,30,2,13,1,14,1,30,4,33,1,14,2,5,1,14,8,33,2,14,27,13,1,33,1,13,1,14,2,5,2,14,3,33,2,14,1,33,1,14,1,1,9,9,1,28,4,1,203,}, + {1,112,28,4,16,1,1,8,14,1,33,1,13,1,30,1,28,2,13,2,14,2,5,1,14,9,33,1,6,1,33,2,14,2,30,1,28,8,30,1,13,2,5,1,33,2,14,3,33,3,14,2,33,1,14,4,13,1,30,1,28,20,30,2,13,3,30,4,13,1,30,1,13,1,30,4,28,11,30,5,28,2,30,4,28,1,30,2,28,1,30,2,28,5,30,1,28,4,30,8,28,1,30,11,28,19,30,1,28,5,30,12,13,1,30,6,13,1,14,7,13,1,14,1,33,2,14,7,5,1,33,1,14,1,13,2,30,2,28,6,30,1,28,4,30,1,13,1,28,1,13,2,14,22,30,2,13,2,30,2,28,1,30,1,14,13,33,1,14,26,33,1,13,4,14,7,33,1,14,3,11,1,1,8,11,1,28,5,1,202,}, + {1,115,28,1,12,1,1,8,14,1,33,1,14,1,13,1,28,2,13,2,14,2,5,1,14,8,33,1,13,1,33,1,14,3,13,1,30,2,28,6,30,2,13,2,14,1,33,1,14,4,33,2,14,3,33,1,14,2,33,1,13,1,30,1,28,1,30,1,28,19,30,3,13,2,30,4,13,3,30,4,28,12,30,1,28,1,30,3,28,1,30,7,28,13,30,19,28,20,29,1,28,2,30,2,28,1,30,5,13,1,30,9,13,2,30,2,13,2,14,4,33,1,14,1,13,1,14,1,33,1,14,4,5,1,14,4,33,1,13,3,30,2,28,2,30,2,28,2,30,2,28,4,30,1,28,1,13,2,14,22,13,1,30,1,13,2,30,3,28,1,13,2,33,1,14,8,33,1,14,1,33,1,14,28,13,4,14,1,33,1,5,1,14,8,1,9,28,5,1,1,28,2,1,199,}, + {1,114,28,2,17,1,1,8,14,1,33,1,14,1,30,1,28,1,30,1,13,2,14,2,5,1,14,8,13,2,14,4,13,1,30,2,28,6,30,1,13,2,14,5,33,1,14,2,33,1,14,2,33,1,14,3,13,2,30,1,28,1,30,1,28,10,30,1,28,9,30,3,13,2,30,3,13,3,30,5,28,10,30,6,28,1,30,7,28,13,30,19,28,23,30,7,13,1,30,10,13,2,30,2,13,2,14,4,13,3,14,2,33,1,14,2,5,2,14,4,13,2,30,2,28,1,30,1,28,2,30,1,28,11,13,1,33,1,14,22,13,4,30,1,28,1,30,2,13,1,6,1,13,1,14,9,33,2,14,28,33,1,13,3,33,2,14,7,33,1,14,1,1,9,7,1,28,4,1,1,28,2,1,199,}, + {1,114,28,2,17,1,1,8,14,3,30,1,28,1,30,1,14,12,13,2,33,1,14,4,13,1,30,2,28,5,30,1,13,2,14,1,33,1,14,4,33,1,14,2,33,1,14,2,6,1,14,2,13,1,14,1,13,1,30,3,28,2,30,1,28,7,30,2,28,7,30,5,13,1,30,2,13,4,30,5,28,10,30,11,28,1,30,3,28,6,30,1,28,5,30,17,28,25,30,18,13,1,30,4,13,2,14,3,13,2,33,1,14,2,13,2,14,2,5,1,14,1,5,1,14,2,30,4,28,16,13,1,14,22,33,1,13,4,30,1,28,2,13,1,30,1,6,1,13,1,14,1,33,2,14,6,13,1,33,1,14,27,5,1,33,1,13,2,33,1,14,7,33,1,5,1,33,2,11,1,1,8,12,1,28,4,1,1,28,2,1,199,}, + {1,115,28,1,11,1,1,8,14,3,30,1,28,1,13,1,14,12,13,2,14,2,33,1,14,2,13,1,30,2,28,5,13,1,33,2,14,1,33,1,14,4,5,1,14,2,33,1,14,2,13,1,14,1,13,2,14,1,13,1,30,1,28,5,30,1,28,6,30,2,28,7,30,5,13,6,30,6,28,10,30,11,28,1,30,3,28,6,30,1,28,5,30,17,28,24,30,25,13,1,14,3,13,2,33,2,13,2,30,1,14,2,5,1,14,4,13,1,28,9,30,2,28,6,30,2,13,1,14,22,33,2,13,1,33,1,13,1,30,2,28,1,13,1,30,1,13,2,14,8,33,2,14,29,33,1,13,1,33,2,14,1,5,1,14,3,33,1,14,1,33,1,5,1,14,1,33,1,14,1,1,9,28,4,1,202,}, + {1,115,28,1,11,1,1,8,14,3,30,1,28,1,13,2,14,11,13,2,14,5,30,3,28,5,13,1,14,1,33,2,14,2,33,1,14,1,33,1,14,6,13,1,14,1,13,2,33,1,13,1,28,6,30,2,28,5,30,1,28,7,30,1,28,1,30,1,28,1,30,3,13,5,30,1,13,1,30,1,13,1,30,2,28,1,30,1,28,8,30,14,28,7,30,1,28,3,30,1,28,2,30,15,28,25,30,26,13,1,14,2,33,1,13,1,33,2,13,3,14,6,33,1,13,1,30,1,28,2,30,2,28,4,30,2,28,4,30,1,28,1,30,1,13,1,33,1,14,21,13,2,33,4,30,4,13,3,14,39,33,1,14,8,13,2,14,1,5,1,14,1,33,1,14,1,1,9,6,1,28,1,1,204,}, + {1,115,28,1,11,1,1,8,14,2,13,1,28,2,13,2,33,1,14,8,13,3,14,1,6,1,14,4,28,2,30,1,28,4,30,1,13,1,33,2,14,2,5,1,33,1,14,8,13,1,14,1,13,2,33,1,13,1,30,1,28,5,30,2,28,2,30,4,28,9,30,5,13,10,30,4,28,2,30,1,28,6,30,12,28,8,30,1,28,1,30,2,28,2,30,11,28,2,30,1,28,27,30,14,28,1,30,6,28,1,30,3,13,1,14,1,33,2,14,1,13,1,14,1,13,4,33,1,14,4,13,3,30,1,28,1,30,2,28,4,30,2,28,7,13,1,14,4,5,1,14,17,28,1,13,1,14,3,33,1,30,2,13,1,30,1,13,2,30,1,13,1,5,2,14,6,33,2,14,31,5,1,14,5,13,2,14,1,5,1,14,1,13,1,14,1,1,9,16,1,28,2,1,203,}, + {1,115,28,1,11,1,1,8,14,2,13,1,28,2,13,1,14,9,33,1,13,3,14,1,30,1,14,3,13,1,30,1,28,7,13,1,33,1,13,1,14,2,5,1,33,1,13,6,33,2,13,4,33,1,13,1,30,1,28,5,30,7,28,11,30,4,13,10,30,4,28,9,30,8,28,1,30,3,28,8,30,8,28,1,30,6,28,32,30,21,28,1,30,4,14,1,33,1,14,2,13,1,33,1,13,2,30,1,13,1,33,1,14,4,13,1,33,1,14,1,30,1,28,4,30,2,28,5,30,2,28,3,13,1,14,22,28,1,30,1,13,1,33,1,14,1,13,1,30,1,28,1,30,1,28,1,30,1,13,3,14,1,5,1,14,6,33,3,14,18,5,1,14,16,33,1,13,1,6,1,14,1,5,1,14,1,13,1,33,1,11,1,1,8,11,1,28,2,1,203,}, + {1,115,28,1,11,1,1,8,14,2,30,1,28,2,14,11,33,1,30,2,14,5,13,1,28,7,30,1,13,1,14,1,13,1,14,4,6,1,13,5,33,2,13,3,33,1,13,2,28,7,30,6,28,10,30,5,13,7,30,1,13,3,30,6,28,6,30,8,28,1,30,4,28,8,30,1,28,1,30,5,28,2,30,5,28,26,30,1,28,5,30,13,28,1,30,7,28,1,30,4,13,2,14,1,33,2,14,1,13,2,30,1,33,1,14,8,13,1,28,1,30,1,28,3,30,1,28,5,30,2,28,3,13,1,14,18,5,1,14,3,30,1,13,2,14,2,13,1,30,5,14,13,33,1,14,35,33,2,13,1,14,4,33,1,14,1,1,9,28,2,1,203,}, + {1,115,28,1,11,1,1,8,14,2,30,1,28,2,14,11,13,2,30,1,13,1,14,4,13,1,28,4,30,1,13,2,14,1,13,1,14,1,13,1,14,4,13,1,14,1,13,5,33,1,13,3,14,1,13,2,28,2,30,1,28,4,30,7,28,6,30,9,13,2,14,1,13,7,30,9,28,3,30,13,28,10,30,5,28,2,30,5,28,1,30,1,28,24,30,1,28,5,30,20,28,2,30,4,13,2,14,1,33,2,14,1,33,1,30,1,13,1,14,9,13,1,28,1,30,1,28,1,30,1,28,1,30,1,28,5,30,1,28,3,30,1,14,23,13,1,30,1,13,1,33,1,14,1,13,1,30,2,13,3,14,49,33,1,14,8,1,9,10,1,28,1,1,203,}, + {1,115,28,1,11,1,1,8,14,2,30,1,28,1,30,1,14,11,13,4,14,1,13,1,33,1,14,1,13,1,28,4,13,1,14,3,13,1,33,1,13,1,14,6,13,2,30,1,13,6,33,1,13,2,28,2,30,3,28,2,30,8,28,5,30,10,13,9,30,5,28,1,30,3,28,4,30,7,28,1,30,2,28,13,30,4,28,1,30,6,28,1,30,1,28,1,30,1,28,19,30,5,28,4,30,20,28,2,30,5,13,1,14,1,33,2,14,1,33,1,30,1,13,2,14,7,33,1,13,1,30,1,13,1,30,4,28,9,30,1,14,20,33,1,14,1,13,4,6,1,14,1,13,2,30,1,13,2,14,1,33,1,14,34,5,1,14,19,13,1,14,2,11,1,1,8,11,1,28,1,1,3,28,4,1,196,}, + {1,115,28,1,1,9,14,2,30,1,28,1,30,1,14,10,13,3,33,2,14,1,13,1,33,1,13,1,30,1,28,4,13,1,14,1,5,1,14,1,33,1,13,1,14,5,33,2,14,1,13,1,30,2,13,8,28,3,30,2,28,2,30,9,28,3,30,11,13,10,30,4,28,1,30,3,28,4,30,6,28,3,30,1,28,13,30,11,28,1,30,2,28,18,30,7,28,2,30,1,28,1,30,21,28,1,30,4,28,1,13,1,14,1,33,1,14,1,33,2,13,3,14,4,5,1,14,2,33,1,13,1,30,4,28,11,30,1,14,20,33,1,14,1,13,4,30,1,13,3,30,1,13,2,14,1,33,3,14,25,5,1,14,6,33,1,14,4,5,1,14,14,33,1,14,1,13,1,14,1,1,9,28,1,1,4,28,3,1,196,}, + {1,115,28,1,1,9,14,2,28,2,30,1,14,8,33,1,13,1,30,1,13,1,33,3,14,3,30,1,28,4,30,1,33,1,14,1,33,1,14,2,6,1,14,6,13,1,14,1,30,3,13,8,30,1,28,2,30,3,28,1,30,9,28,3,30,12,13,6,30,1,13,2,30,4,28,2,30,2,28,4,30,6,28,3,30,1,28,8,30,2,28,3,30,11,28,1,30,2,28,18,30,7,28,4,30,21,28,1,30,4,28,1,30,1,14,3,33,1,13,2,30,1,13,3,14,6,13,1,30,1,28,1,30,1,13,1,28,11,30,1,14,20,13,6,30,1,13,6,14,1,13,1,33,3,14,53,6,1,14,1,1,9,7,1,28,1,1,33,28,2,1,167,}, + {1,115,28,1,1,9,14,2,28,2,13,1,14,8,33,1,6,1,13,1,6,1,14,2,33,1,14,1,33,2,30,1,28,5,13,1,14,1,33,1,14,1,33,1,13,1,14,6,13,2,28,1,30,1,13,2,30,1,13,1,33,1,13,1,14,1,13,2,30,9,13,2,30,6,28,1,30,1,28,3,30,9,13,8,30,3,28,4,30,1,28,5,30,4,28,4,30,1,28,13,30,8,28,3,30,1,28,21,30,6,28,5,30,5,13,1,30,22,13,1,14,2,33,1,14,2,13,4,33,1,14,2,5,1,14,2,13,1,30,3,13,1,28,11,13,1,14,20,6,1,13,3,30,6,13,2,30,1,33,1,13,1,14,49,5,1,14,3,33,2,14,1,33,1,14,1,1,9,16,1,28,1,1,9,28,1,1,23,28,2,1,1,28,4,1,162,}, + {1,115,28,1,1,9,14,2,28,2,14,8,13,3,33,1,13,1,14,4,33,2,30,1,28,6,13,1,14,2,13,1,14,2,5,2,14,2,13,1,6,1,13,1,30,2,13,2,30,1,13,1,14,1,13,1,14,1,13,2,30,5,28,1,30,3,13,3,30,4,28,6,30,10,13,7,30,3,28,10,30,4,28,4,30,1,28,14,30,7,28,3,30,1,28,20,30,7,28,5,30,4,13,2,30,22,13,1,14,3,33,2,13,2,14,1,13,2,14,2,5,1,14,2,13,1,30,4,28,4,30,2,28,2,30,1,28,2,13,1,14,19,33,1,6,1,13,3,28,1,30,5,13,2,30,1,13,2,14,53,33,5,14,1,1,8,11,1,28,2,1,7,28,3,1,21,28,3,1,1,28,6,1,160,}, + {1,113,28,3,1,9,14,2,28,2,14,8,13,1,6,1,14,7,33,1,14,1,30,1,28,6,13,1,14,2,33,1,14,7,13,2,30,1,13,2,30,2,13,1,14,2,13,3,30,9,13,3,30,3,28,7,30,10,13,5,30,6,28,3,30,1,28,5,30,4,28,4,30,1,28,14,30,8,28,2,30,1,28,20,30,7,28,4,30,6,13,1,30,7,28,1,30,2,28,1,30,12,13,1,14,1,33,3,14,1,13,2,30,1,13,1,14,1,33,1,14,1,33,3,13,1,30,3,28,5,30,1,28,5,13,1,14,19,33,1,13,1,30,1,13,1,30,2,13,2,30,3,13,2,30,1,13,2,14,53,33,5,14,1,1,9,29,1,28,1,1,7,28,3,1,1,28,4,1,16,28,10,1,1,28,2,1,157,}, + {1,114,28,2,1,9,14,2,30,1,28,1,14,8,13,2,14,7,13,1,33,1,13,1,28,6,13,1,14,11,13,7,14,2,13,3,30,5,28,1,30,4,13,2,30,4,28,8,30,11,13,2,30,8,28,1,30,2,28,2,30,1,28,2,30,2,28,1,30,1,28,3,30,1,28,10,30,2,28,1,30,1,28,1,30,3,28,1,30,3,28,23,30,7,28,2,30,2,28,1,30,5,13,2,30,22,13,2,33,1,14,1,33,1,5,1,13,2,30,2,14,1,33,2,13,1,33,2,13,1,30,4,28,10,13,1,14,18,33,1,14,1,13,1,30,1,13,1,30,1,13,3,30,1,13,2,30,1,13,1,30,1,13,2,33,1,14,28,13,2,14,23,33,1,14,2,33,1,14,1,1,9,9,1,28,1,1,8,28,8,1,15,28,10,1,1,28,3,1,156,}, + {1,114,28,1,29,1,1,9,14,2,28,2,14,17,33,3,28,6,13,1,5,1,14,10,13,6,14,3,13,3,30,5,28,1,30,2,13,1,30,1,13,1,30,4,28,2,30,1,28,6,30,12,13,1,30,7,28,3,30,1,28,5,30,6,28,1,30,1,28,10,30,2,28,1,30,1,28,1,30,3,28,1,30,1,28,1,30,1,28,22,30,8,28,1,30,3,28,1,30,5,13,2,30,11,28,1,30,11,13,1,33,1,14,2,33,1,13,2,30,2,13,1,33,1,13,2,14,1,13,2,30,1,28,2,30,1,28,9,30,1,13,1,14,18,33,2,13,4,30,1,13,2,30,1,13,2,30,1,13,5,14,7,5,1,14,20,13,2,14,16,5,1,14,6,33,3,14,1,5,1,1,9,11,1,28,2,1,6,28,5,1,1,28,3,1,2,28,2,1,11,28,14,1,156,}, + {1,114,28,1,6,1,1,9,14,2,28,2,14,4,5,1,14,1,5,1,14,6,33,2,14,2,33,3,30,1,28,5,13,1,33,1,14,3,33,1,14,6,13,1,33,2,13,3,14,1,33,1,5,1,33,1,13,2,30,8,13,1,30,7,28,1,30,1,28,6,30,14,13,1,30,6,28,2,30,1,28,3,30,1,28,1,30,6,28,1,30,1,28,10,30,2,28,1,30,1,28,1,30,2,28,4,30,1,28,21,30,20,13,1,30,23,13,1,14,2,33,2,13,3,30,2,13,2,30,1,14,1,13,3,30,1,28,1,30,1,28,9,30,1,14,18,33,2,13,1,30,1,13,3,30,1,13,2,30,1,13,1,30,2,13,2,30,1,13,2,14,27,13,1,33,1,14,24,33,1,14,2,33,1,5,1,14,1,1,9,7,1,28,3,1,5,28,4,1,6,28,2,1,3,28,3,1,4,28,4,6,1,8,1,9,1,16,2,9,2,8,1,29,1,28,5,1,153,}, + {1,114,28,1,6,1,1,9,14,2,28,2,14,1,5,1,14,2,5,1,14,8,13,1,33,1,14,2,33,1,14,1,13,1,30,1,28,5,13,1,14,8,5,1,14,1,33,1,13,1,14,3,13,1,33,1,14,1,33,2,14,2,13,1,30,8,13,4,30,5,28,7,30,1,28,2,30,2,28,1,30,1,28,1,30,6,13,2,30,4,28,1,30,1,28,1,30,1,28,3,30,4,28,2,30,2,28,1,30,1,28,10,30,3,28,2,30,1,28,26,30,40,28,2,30,2,28,1,13,1,14,1,13,1,33,1,14,1,13,3,30,2,13,2,28,1,14,1,13,3,30,1,28,2,30,1,28,8,13,1,14,18,33,1,14,1,13,1,30,1,13,3,30,1,13,2,30,1,13,1,30,2,13,2,30,1,13,1,14,1,33,2,14,1,33,1,14,2,5,1,14,20,6,1,33,1,14,27,33,1,14,2,1,10,11,1,9,1,28,5,1,1,28,4,1,2,28,2,1,2,28,2,1,1,28,4,1,2,28,3,6,1,16,1,11,1,1,11,11,1,9,1,28,3,1,152,}, + {1,114,28,1,7,1,1,9,14,2,28,2,14,13,33,2,14,2,33,1,14,1,30,3,28,4,13,1,14,10,33,1,6,1,14,2,33,1,13,1,14,1,33,3,14,2,13,1,30,8,13,1,30,2,13,1,30,5,28,7,30,1,28,2,30,2,28,1,30,8,13,1,30,5,28,1,30,1,28,2,30,1,28,2,30,1,28,1,30,2,28,2,30,5,28,9,30,3,28,2,30,1,28,2,30,1,28,24,30,18,13,1,30,4,13,1,30,15,28,1,30,3,28,1,30,1,14,4,13,4,28,1,30,1,13,1,30,1,13,1,14,1,13,2,30,1,28,2,30,1,28,8,13,1,14,17,33,1,14,3,13,7,30,1,13,1,30,1,13,1,30,1,13,3,33,3,14,1,33,1,14,2,5,1,14,20,33,1,14,25,33,1,14,1,13,1,14,3,1,13,11,1,9,1,28,5,1,4,28,2,1,4,28,3,1,2,28,3,10,1,11,1,1,17,11,1,6,1,28,3,1,149,}, + {1,114,28,1,8,1,1,9,14,2,28,2,13,1,14,16,33,1,14,1,6,1,13,2,28,5,13,1,14,1,33,1,14,4,33,1,14,3,13,1,14,2,33,1,14,2,33,1,14,1,33,1,14,2,13,1,30,8,13,2,30,7,28,10,30,11,13,2,30,6,28,1,30,2,28,2,30,11,28,8,30,4,28,28,30,25,13,1,30,15,28,1,30,1,28,1,30,1,28,1,30,1,13,1,14,2,13,5,28,2,14,1,13,1,30,1,14,1,13,1,30,2,28,2,30,1,28,8,13,1,14,17,13,2,14,1,33,1,13,4,33,1,13,1,30,3,13,6,33,1,14,2,5,1,14,3,5,1,14,22,33,1,14,23,13,1,33,1,13,1,14,4,1,15,11,1,9,1,28,4,1,1,28,3,1,4,28,2,1,1,28,3,10,1,1,22,11,1,28,3,1,2,28,3,1,143,}, + {1,114,28,1,9,1,1,9,14,1,13,1,28,2,30,1,13,2,14,14,33,1,14,1,13,4,28,1,30,1,28,2,13,1,14,12,5,1,33,1,14,4,13,1,33,1,13,1,30,2,28,1,30,14,28,11,30,1,28,1,30,7,28,1,30,2,13,1,30,6,28,1,30,1,28,3,30,11,28,8,30,2,28,30,30,2,28,1,30,36,28,3,30,5,13,1,14,1,13,2,14,1,33,2,13,1,28,1,30,1,13,2,30,1,13,2,30,3,28,10,13,1,14,15,33,1,14,3,33,3,13,4,14,1,13,1,30,2,13,1,30,1,13,3,14,29,33,1,14,1,33,1,14,23,13,3,33,1,14,3,1,18,11,1,9,1,28,5,1,4,28,2,1,1,28,2,11,1,1,25,9,1,28,2,1,1,28,4,1,142,}, + {1,113,28,2,9,1,1,9,14,1,13,1,28,2,30,3,13,1,14,7,33,1,14,1,33,1,14,3,33,1,14,1,13,4,28,1,30,2,28,1,30,1,14,10,5,1,14,7,13,1,33,1,14,1,13,1,30,1,28,1,30,14,28,13,30,7,28,1,30,2,13,3,30,6,28,4,30,10,28,9,30,1,28,29,30,3,28,1,30,45,14,1,13,2,33,1,14,1,13,1,30,1,28,2,30,1,13,1,30,1,13,2,30,3,28,10,13,1,14,16,33,1,14,2,33,3,13,3,30,1,13,1,30,5,13,1,33,1,13,1,14,29,33,1,14,1,33,1,14,23,13,3,14,4,1,21,11,1,9,1,28,4,1,2,28,3,6,1,1,28,16,1,28,6,1,142,}, + {1,113,28,2,16,1,1,9,14,1,13,1,28,2,30,2,13,1,14,1,33,2,14,5,33,1,14,1,13,1,33,1,14,2,13,8,28,3,13,1,14,13,33,1,5,1,14,2,33,2,14,1,13,1,30,1,28,1,30,14,28,13,30,6,28,2,30,4,13,1,30,6,28,4,30,10,28,9,30,2,28,28,30,17,13,6,30,3,13,2,30,21,14,2,13,2,14,1,30,1,28,3,30,1,13,1,30,1,13,2,30,1,13,1,30,2,28,9,14,17,13,1,6,1,33,1,5,2,33,1,13,3,30,1,13,2,30,3,13,2,33,2,14,29,33,1,14,1,33,1,14,23,13,3,14,3,33,1,14,1,1,23,11,1,9,1,28,5,8,1,1,9,11,1,14,1,9,1,13,2,30,1,13,1,30,2,13,1,14,1,11,1,1,9,12,1,28,7,1,140,}, + {1,114,28,1,16,1,1,8,11,1,14,1,30,1,28,1,30,3,14,2,33,1,5,1,14,7,33,1,14,1,33,2,13,1,30,1,13,1,30,2,13,1,14,1,13,1,28,3,13,1,14,13,33,2,14,2,33,2,13,2,28,1,30,1,28,2,30,10,28,1,30,1,28,12,30,7,28,2,30,11,28,4,30,10,28,10,30,1,28,24,30,3,28,1,30,5,28,1,30,10,13,2,30,1,13,4,30,3,13,1,30,1,13,1,30,18,13,1,30,1,13,1,14,1,13,2,14,1,28,2,30,1,28,2,13,1,30,1,13,4,30,1,28,9,30,1,14,16,13,3,14,3,33,2,14,1,13,1,30,1,13,2,30,4,13,2,14,7,5,1,14,28,5,1,14,20,30,2,13,1,33,1,14,1,5,2,14,1,1,25,11,1,9,1,29,1,9,1,1,8,14,1,9,1,29,1,28,11,13,1,14,1,1,8,12,1,28,6,1,140,}, + {1,114,28,1,12,1,1,8,14,1,33,1,30,1,28,1,30,3,33,1,14,2,5,2,14,1,5,1,14,1,33,2,14,4,13,2,30,3,13,2,33,1,14,1,30,1,28,2,30,1,14,13,33,2,14,2,33,1,14,2,13,1,30,2,28,2,30,3,13,1,30,6,28,1,30,2,28,12,30,6,28,1,30,10,28,1,30,1,28,4,30,10,28,9,30,1,28,23,30,5,28,1,30,5,28,1,30,7,13,1,30,2,13,1,30,2,13,4,30,3,13,1,30,1,13,1,30,5,13,1,30,7,28,1,30,4,13,1,30,1,13,1,14,2,13,2,30,1,28,3,30,2,28,1,30,1,13,3,30,1,28,9,13,1,14,15,33,1,13,4,14,5,13,1,30,1,13,1,14,1,30,4,13,2,14,7,5,2,14,48,6,1,13,2,33,1,14,3,5,1,14,2,1,30,11,1,1,2,11,1,13,1,28,16,29,1,14,1,1,7,9,1,28,5,1,140,}, + {1,114,28,1,17,1,1,8,14,1,13,1,28,2,13,1,30,1,13,1,5,1,14,5,5,1,14,2,33,1,13,2,33,1,14,1,13,1,30,1,28,1,30,1,28,2,30,1,13,1,33,1,30,2,28,1,30,1,14,8,33,1,5,1,14,3,13,1,14,6,13,1,28,1,30,1,28,2,30,2,13,3,30,7,28,13,30,6,28,1,30,10,28,1,30,2,28,2,30,7,28,1,30,2,28,10,30,1,28,8,30,1,28,14,30,22,13,1,30,2,13,2,30,1,13,1,30,3,13,3,30,5,13,1,30,9,28,1,30,2,13,1,30,2,14,3,13,1,30,2,28,2,30,2,28,2,13,3,30,1,28,9,13,1,14,16,13,4,14,4,33,1,13,1,30,1,13,2,30,4,13,1,14,1,33,2,14,5,5,2,14,24,5,3,14,20,33,1,13,1,30,1,13,1,14,5,5,2,14,2,1,30,14,1,28,14,30,1,28,5,9,1,1,7,6,1,28,3,1,141,}, + {1,114,28,1,11,1,1,8,14,1,13,1,28,2,13,1,30,1,13,1,5,1,14,5,5,1,14,3,13,1,30,1,13,1,14,1,13,1,30,1,28,1,30,1,28,2,13,3,30,1,28,2,30,1,14,2,5,1,14,5,33,1,14,3,13,2,14,6,13,1,28,3,30,2,13,4,30,7,28,1,30,1,28,11,30,8,28,1,30,23,28,10,30,2,28,6,30,1,28,16,30,17,13,1,30,3,13,1,30,3,13,3,30,3,13,4,30,6,13,1,30,1,28,1,30,5,28,1,30,2,13,1,30,2,13,1,33,2,13,2,30,1,28,2,30,1,28,3,30,1,14,2,30,2,28,7,30,1,13,1,14,12,5,1,14,3,30,2,13,2,14,8,13,1,30,4,13,1,14,1,13,2,14,6,33,1,14,2,33,2,14,5,5,1,14,14,5,2,14,20,13,3,30,2,13,2,33,1,14,4,5,3,14,2,1,27,11,1,26,1,28,13,30,1,28,6,14,1,1,6,11,1,28,7,1,137,}, + {1,113,28,2,11,1,1,8,16,1,30,1,28,2,30,1,28,1,13,1,5,1,14,6,5,1,14,2,13,3,30,2,28,2,30,3,13,2,33,1,30,1,28,2,30,1,13,1,14,1,5,1,14,5,33,1,14,3,13,2,14,4,5,1,14,1,13,1,30,5,13,4,30,7,28,13,30,8,28,1,30,23,28,18,30,1,28,16,30,3,28,1,30,4,28,1,30,8,13,1,30,5,13,1,30,1,13,3,30,3,13,4,30,16,13,1,30,3,13,1,14,1,33,1,13,1,30,1,28,3,30,1,28,3,30,1,13,2,30,2,28,7,30,1,14,13,5,1,33,1,14,2,13,2,14,1,33,1,14,5,13,1,33,1,14,1,13,1,30,4,13,1,14,1,33,2,14,4,33,2,14,3,33,2,14,5,5,1,14,12,5,1,14,23,33,1,13,6,33,1,14,7,5,2,14,3,1,25,12,1,11,2,14,1,13,1,30,2,28,9,30,1,28,4,30,1,15,1,1,6,9,1,28,7,1,136,}, + {1,112,28,3,11,1,1,8,9,1,28,3,30,2,13,1,14,11,13,2,28,3,30,4,13,1,30,1,13,1,30,1,28,2,30,1,13,1,14,7,33,1,14,3,33,2,14,3,5,2,14,1,13,1,30,5,13,2,30,1,13,1,30,4,28,11,30,1,28,4,30,1,28,1,30,1,28,1,30,4,28,1,30,18,13,1,30,1,28,1,30,3,28,11,30,1,28,22,30,8,28,1,30,14,13,1,30,2,13,2,30,5,13,1,30,21,13,3,30,2,28,8,13,2,30,1,28,8,30,1,14,14,33,1,14,1,33,1,13,2,14,1,33,1,14,5,13,2,14,1,13,1,30,4,13,1,14,1,13,1,14,2,33,1,14,2,33,2,14,3,33,2,14,18,33,1,14,26,13,4,14,1,5,1,14,8,5,1,33,2,14,3,1,20,11,1,1,1,17,1,1,5,11,1,15,1,29,1,30,1,28,3,30,1,28,2,30,1,28,6,14,1,1,5,11,1,28,7,1,25,28,1,1,110,}, + {1,114,28,1,1,9,13,1,28,3,13,3,14,12,30,4,13,1,30,1,13,3,30,3,28,2,30,2,33,2,14,2,5,2,14,2,5,1,14,7,5,2,14,1,13,1,30,6,13,1,30,1,13,1,30,2,28,1,30,1,28,8,30,1,28,7,30,1,28,1,30,1,28,1,30,6,28,3,30,2,28,1,30,8,13,2,30,1,13,1,30,1,28,1,30,2,28,28,30,1,28,6,30,35,13,1,30,20,13,1,30,2,13,1,30,1,28,7,13,2,30,1,28,8,30,1,14,16,33,1,13,1,30,1,13,1,14,3,5,2,14,1,13,3,30,1,13,2,30,2,14,1,13,2,14,2,5,1,14,3,33,1,14,4,5,1,14,4,5,1,14,39,13,1,30,2,13,1,30,1,13,1,5,1,14,12,33,2,14,3,1,17,17,1,1,3,11,1,1,6,11,1,14,1,13,1,30,2,28,9,30,1,11,1,1,5,9,1,28,2,1,1,28,2,1,1,28,3,1,22,28,4,1,107,}, + {1,112,28,3,1,9,30,1,28,3,13,3,14,12,30,3,28,1,13,6,30,2,28,2,30,2,13,1,33,2,14,2,5,1,14,10,5,1,14,2,13,1,30,6,13,1,30,4,28,2,30,1,28,7,30,1,28,7,30,1,28,1,30,1,28,1,30,2,28,1,30,3,28,3,30,10,13,3,30,6,28,9,30,1,28,18,30,2,28,5,30,2,28,1,30,15,13,2,30,34,28,2,30,1,13,1,30,3,28,7,30,3,28,8,30,1,14,11,5,1,14,4,33,1,13,1,30,1,13,1,14,6,33,2,13,1,30,1,13,3,30,1,33,1,13,2,14,2,33,2,13,1,33,1,14,5,5,1,14,4,5,1,14,38,33,1,13,1,30,2,13,1,30,1,13,1,14,10,5,2,14,1,33,1,13,2,14,1,33,1,5,1,14,2,1,18,12,1,1,10,14,1,13,1,30,2,28,7,13,1,1,5,11,1,28,2,1,1,28,2,1,1,28,5,1,10,28,2,1,8,28,4,1,1,28,2,1,104,}, + {1,113,28,2,1,9,30,1,28,3,13,2,33,1,14,9,33,1,13,4,30,3,13,3,33,2,30,1,13,1,28,2,30,1,13,1,14,2,33,3,14,11,5,2,14,1,13,1,30,5,13,2,30,4,28,2,30,1,28,7,30,1,28,2,30,2,28,3,30,11,28,1,30,11,13,2,30,7,28,9,30,1,28,12,30,1,28,6,30,1,28,5,30,2,28,3,30,38,28,1,30,10,28,2,30,1,13,1,30,3,28,6,30,1,28,1,30,2,28,8,30,1,14,12,5,1,14,4,13,1,30,1,13,1,14,9,13,1,14,1,33,1,13,5,14,3,33,1,13,2,14,2,33,2,14,44,33,1,14,2,13,3,30,1,13,1,14,10,5,1,14,3,13,1,33,2,14,1,33,3,5,1,14,2,1,15,11,2,1,12,14,1,15,1,13,1,30,1,28,5,14,1,1,5,7,1,28,4,1,1,28,5,1,10,28,2,1,6,28,13,1,100,}, + {1,113,28,1,29,1,1,9,30,1,28,2,30,1,13,1,14,11,33,1,13,2,33,1,14,1,30,5,13,1,33,2,13,2,28,2,13,3,33,1,14,1,33,2,14,1,33,1,14,12,13,1,30,3,13,4,30,4,28,8,30,1,28,3,30,3,28,2,30,1,28,1,30,8,28,1,30,3,28,4,30,3,13,2,30,1,13,1,30,6,28,33,30,1,28,3,30,2,28,1,30,1,28,1,30,1,28,2,30,47,28,1,30,1,13,1,30,3,28,6,30,1,28,1,30,1,28,9,30,1,14,12,5,1,14,2,33,2,13,2,14,9,33,1,13,1,14,2,13,5,14,5,13,1,14,2,33,1,14,1,33,1,5,1,14,5,5,1,14,34,5,1,14,2,33,1,14,1,33,1,13,1,30,1,13,2,33,1,14,11,33,1,14,1,33,1,13,1,33,2,14,3,5,1,33,1,5,1,14,3,1,29,11,1,14,1,13,1,28,3,13,1,1,5,17,1,28,10,1,4,28,8,1,6,28,13,1,100,}, + {1,113,28,1,29,1,1,8,11,1,28,4,13,1,14,1,5,2,14,6,5,1,14,2,13,2,33,2,13,1,30,1,13,2,30,1,13,1,33,1,14,1,13,1,30,3,13,4,14,4,13,2,14,2,33,2,14,1,13,1,33,1,14,4,13,1,30,3,13,4,30,5,28,4,30,1,28,6,30,4,28,3,30,13,28,2,30,4,13,3,30,7,28,40,30,1,28,4,30,47,28,1,30,1,13,2,30,1,28,7,30,1,28,1,30,2,28,6,30,2,13,1,14,16,33,1,13,1,14,10,6,1,13,1,14,2,33,1,13,5,30,1,14,1,33,2,13,1,14,4,33,1,5,1,14,5,5,1,14,13,33,1,14,23,33,1,14,1,13,1,33,1,13,1,14,1,13,2,5,2,14,11,13,3,33,1,14,9,33,1,16,1,14,2,1,5,11,1,1,22,11,1,14,1,13,2,1,6,28,5,1,1,28,4,1,4,28,8,1,4,28,5,8,1,9,1,16,2,7,1,28,6,1,99,}, + {1,113,28,1,6,1,1,8,11,1,28,3,30,1,14,2,5,2,14,6,5,1,33,1,13,1,30,1,13,4,30,1,28,1,30,2,13,1,33,1,14,1,13,1,30,2,13,3,30,1,13,1,33,2,14,2,13,2,33,1,14,1,33,1,13,4,14,2,5,1,14,2,30,3,13,4,30,6,28,3,30,1,28,6,30,4,28,2,30,10,28,2,30,2,28,2,30,4,13,4,30,6,28,11,30,2,28,16,30,1,28,10,30,1,28,3,30,38,13,1,30,4,28,2,30,1,28,3,30,1,13,2,30,1,28,7,30,1,28,1,30,2,28,6,30,1,13,2,14,1,5,1,14,11,5,1,14,2,33,2,14,10,13,1,14,2,33,2,14,1,13,2,14,1,13,1,30,1,14,1,33,1,14,1,13,1,33,1,5,1,14,9,5,1,14,13,33,1,14,6,33,1,14,18,13,5,30,1,14,11,33,1,14,1,13,3,14,10,13,2,30,2,13,1,14,2,11,1,1,1,11,1,1,3,11,1,1,28,7,1,28,1,1,1,28,2,1,1,28,4,1,6,28,3,1,2,28,1,1,3,28,3,8,1,11,1,1,7,11,1,8,1,28,3,1,99,}, + {1,113,28,1,6,1,1,8,11,1,30,1,28,2,13,1,14,10,5,1,14,1,13,1,30,1,33,1,13,2,14,1,30,1,28,2,30,1,13,1,33,3,13,2,14,2,13,2,14,2,33,1,14,2,30,1,13,1,14,2,33,1,13,3,14,3,5,1,14,2,30,3,13,4,30,7,28,5,30,1,28,3,30,4,28,2,30,10,28,1,30,3,28,4,30,2,13,4,30,4,28,13,30,2,28,31,30,43,28,2,30,1,28,3,30,2,13,2,30,1,28,6,30,4,28,6,30,2,14,17,33,1,14,1,5,2,14,6,5,1,14,3,5,1,33,2,14,1,33,2,14,2,13,1,14,3,13,1,33,3,14,2,33,2,14,4,5,1,14,39,13,1,30,1,33,1,13,1,30,2,14,11,33,1,14,2,13,1,33,1,14,10,13,2,30,5,28,1,13,2,14,1,1,31,17,1,28,9,1,6,28,4,1,2,28,4,29,1,11,1,1,11,11,1,7,1,28,2,1,1,28,2,1,95,}, + {1,112,28,2,8,1,1,8,11,1,30,1,28,2,13,1,14,13,13,1,33,1,13,2,14,1,13,1,28,1,30,2,13,2,14,3,30,1,13,5,14,2,5,1,33,1,13,3,14,1,13,4,14,6,30,3,13,4,30,7,28,2,30,2,29,1,28,5,30,2,13,1,30,14,28,1,30,1,28,3,30,4,13,4,30,2,28,14,30,1,28,31,30,44,28,2,30,1,28,3,30,2,13,3,30,2,28,1,30,1,28,13,30,1,14,17,33,2,14,1,33,1,14,10,33,2,14,1,33,2,14,2,33,3,14,1,33,1,13,2,14,1,33,3,14,46,13,2,14,1,13,1,30,1,13,1,14,3,33,1,14,7,13,1,14,2,33,3,14,3,5,1,14,5,13,4,30,2,28,5,30,1,14,1,11,1,1,29,11,1,9,1,29,1,28,5,1,9,28,2,1,2,28,3,6,1,1,15,17,1,28,4,1,95,}, + {1,113,28,1,9,1,1,8,14,1,13,1,28,2,13,1,14,4,33,1,5,1,14,4,33,1,14,2,33,4,13,2,30,2,13,3,14,2,13,1,30,1,13,1,30,1,13,4,14,4,13,2,5,1,14,1,13,2,33,2,5,1,14,4,13,1,30,1,13,5,30,7,28,2,30,2,29,1,28,4,30,1,28,1,30,1,13,1,30,10,28,1,30,3,28,6,30,3,13,4,30,2,28,46,30,43,28,8,30,1,13,2,30,1,13,1,30,1,28,1,30,1,28,11,30,2,13,1,14,18,33,1,14,12,33,1,14,2,33,1,5,1,33,1,13,1,33,2,14,2,33,1,14,1,13,1,33,1,14,1,33,1,14,47,13,6,14,3,33,1,14,7,13,3,33,1,14,5,5,1,14,7,13,2,28,1,30,1,28,6,30,2,13,1,14,1,1,30,11,1,16,1,7,1,28,5,1,5,28,2,1,1,28,4,29,1,1,6,11,1,1,11,8,1,28,2,1,38,28,2,1,55,}, + {1,111,28,3,9,1,1,8,14,1,13,1,28,2,14,1,33,1,14,3,33,2,14,4,33,1,14,2,13,2,14,1,13,6,33,2,14,2,13,3,30,1,13,5,33,1,14,2,13,2,14,1,33,1,13,2,33,3,14,4,13,8,30,1,13,1,30,4,28,5,30,1,28,6,30,15,28,6,30,3,13,4,30,2,28,15,30,1,28,30,30,37,13,1,30,5,28,3,30,1,28,5,30,3,13,1,30,1,28,15,14,19,33,1,14,12,33,4,14,1,33,1,13,1,14,3,33,2,14,1,13,4,14,46,33,1,13,4,14,11,13,6,14,13,13,2,28,1,30,1,28,3,30,1,28,1,30,1,13,1,30,1,28,1,30,1,14,3,11,1,1,30,11,1,9,1,6,1,28,5,1,1,28,2,1,1,28,4,11,1,1,19,12,1,28,3,1,4,28,1,1,1,28,2,1,27,28,3,1,9,28,1,1,45,}, + {1,111,28,3,16,1,1,8,14,1,13,1,28,2,14,11,33,2,14,1,13,1,30,1,13,2,30,1,13,4,33,1,14,2,33,1,14,1,13,1,30,1,13,2,14,1,13,1,30,1,13,2,33,1,14,1,13,2,5,1,33,1,13,2,14,1,33,2,14,4,13,8,30,1,13,1,30,6,28,1,30,1,28,1,30,1,28,7,30,2,13,1,30,13,28,6,30,1,13,1,30,2,13,1,30,2,28,46,30,37,13,1,30,5,28,3,30,1,28,6,30,3,28,16,14,19,33,1,14,13,33,2,14,2,33,1,13,4,14,1,33,2,13,1,30,1,13,2,14,41,33,1,14,3,33,1,13,1,14,1,13,2,14,1,33,1,14,10,13,6,14,9,33,2,14,2,13,2,30,2,28,3,30,2,13,2,30,1,28,1,30,1,13,2,33,1,14,4,1,31,12,1,8,1,28,5,1,3,28,1,16,1,1,6,14,1,9,1,30,2,13,1,14,1,1,9,11,1,28,7,1,1,28,3,1,26,28,2,1,1,28,12,1,43,}, + {1,111,28,3,16,1,1,8,14,1,13,1,28,1,30,1,14,15,30,1,13,2,30,2,13,3,14,2,5,1,33,1,14,2,6,1,14,1,13,1,14,1,33,1,13,1,30,1,13,2,33,1,13,1,14,1,5,1,33,1,13,2,14,3,33,2,14,2,13,7,30,1,13,2,30,6,28,9,30,1,28,1,30,11,28,1,30,2,28,8,30,3,13,2,30,2,28,46,30,44,28,4,30,1,28,4,30,4,28,14,30,1,14,29,5,1,14,2,13,1,14,5,13,1,30,2,13,1,33,2,14,1,13,1,30,1,13,2,14,1,33,1,14,44,33,2,14,2,33,2,14,1,33,1,14,8,13,4,14,11,33,2,14,1,5,1,13,2,28,5,30,1,13,1,30,1,28,1,30,3,13,1,33,1,13,4,14,4,1,31,11,1,16,1,7,1,28,4,29,1,1,6,14,1,29,1,28,5,13,1,14,1,1,9,7,1,28,6,1,1,28,2,1,29,28,12,1,2,28,2,1,39,}, + {1,111,28,3,17,1,1,8,14,1,13,1,28,1,30,1,14,2,33,1,14,7,33,1,14,4,30,1,13,2,30,2,14,1,13,2,14,2,5,1,33,1,14,2,33,1,14,2,33,1,14,2,30,1,13,1,33,2,13,1,14,1,33,2,13,2,14,3,13,1,14,3,13,7,30,2,13,1,30,4,28,13,30,11,28,1,30,1,28,7,30,1,28,2,30,2,13,2,30,2,28,47,30,30,13,3,30,10,28,4,30,1,28,4,30,1,13,1,30,2,28,14,30,1,14,29,5,1,14,1,33,1,13,1,14,2,33,1,14,3,28,1,30,1,13,1,33,2,14,2,30,1,13,1,14,1,13,2,14,44,13,1,14,3,33,1,14,9,13,3,14,1,33,2,14,3,33,2,14,10,13,1,30,1,28,2,30,1,28,2,30,3,28,1,13,1,30,3,14,1,13,2,14,1,33,1,14,1,5,1,33,2,14,1,13,1,14,1,1,32,11,1,9,1,6,1,17,1,1,5,11,1,28,7,30,2,9,1,1,9,9,1,28,2,1,1,28,2,1,2,28,2,1,22,28,2,1,6,28,14,1,39,}, + {1,113,28,1,11,1,1,8,14,1,13,1,28,1,30,1,14,1,33,2,14,10,33,1,14,2,13,3,30,1,14,1,13,2,14,3,5,3,14,2,33,1,13,1,14,2,33,2,14,2,13,2,14,1,33,1,13,2,33,3,13,2,33,1,14,1,13,1,30,2,13,4,30,2,13,1,30,4,28,2,30,2,28,8,30,11,28,1,30,2,28,7,30,1,28,2,30,3,13,1,30,2,28,46,30,33,13,1,30,10,28,9,30,1,13,1,30,1,28,15,13,1,14,3,5,1,14,13,5,1,14,16,33,2,14,1,5,1,14,1,28,1,30,1,13,1,33,1,14,3,13,1,30,1,14,1,6,1,13,1,14,44,13,1,14,11,33,1,14,1,6,1,13,1,14,2,33,1,14,4,33,2,14,8,13,1,14,1,13,1,28,3,30,1,28,1,30,2,28,3,13,1,30,3,14,1,13,2,14,3,33,2,14,2,13,1,33,1,14,3,11,1,1,37,9,1,28,7,30,3,13,1,14,1,1,8,12,1,28,4,1,2,28,2,1,22,28,2,1,6,28,10,1,1,28,3,1,39,}, + {1,113,28,1,11,1,1,8,14,1,30,1,28,1,13,1,14,2,33,1,14,10,33,1,14,2,13,3,30,1,14,1,13,2,33,1,14,1,33,1,14,6,13,1,33,1,14,1,33,1,14,3,13,1,14,1,13,1,33,1,13,3,33,1,14,1,33,1,14,1,33,1,14,1,13,1,30,1,13,5,30,6,28,2,30,2,28,6,30,1,28,2,30,11,28,1,30,2,28,6,30,1,28,3,30,3,13,1,30,2,28,45,30,23,28,1,30,21,28,1,30,1,28,2,30,1,28,5,30,3,28,14,13,1,14,32,33,4,14,1,33,1,13,1,30,2,13,1,33,1,14,1,33,1,13,2,6,1,14,1,33,1,14,45,13,1,14,1,33,1,14,1,33,1,14,5,30,1,13,2,14,1,33,2,14,2,33,2,14,1,33,4,14,8,33,1,14,1,13,1,28,1,30,2,28,3,30,1,28,1,30,1,28,1,30,1,13,1,30,2,33,2,14,3,13,4,14,1,33,2,14,1,33,2,14,4,1,35,14,1,15,1,30,1,28,6,30,1,13,1,30,1,9,1,1,8,11,1,28,2,1,1,28,6,1,26,28,2,29,1,16,1,11,1,1,3,11,1,16,1,29,1,28,5,1,2,28,2,1,35,}, + {1,113,28,1,1,9,14,1,28,2,13,1,14,14,5,1,14,1,13,1,6,1,13,1,30,1,13,3,14,2,33,1,14,6,33,2,14,1,33,2,14,2,33,1,14,1,13,1,33,1,13,3,33,1,14,5,13,6,30,7,28,3,30,1,28,11,30,12,28,6,30,1,28,3,30,4,13,1,30,1,28,45,30,23,28,1,30,21,28,1,30,1,28,2,30,2,28,4,30,3,28,14,14,34,33,1,14,1,33,1,14,1,33,1,13,3,14,1,33,1,14,1,33,1,13,1,14,1,33,1,14,40,5,2,14,5,33,1,14,1,33,1,14,1,33,1,14,3,13,2,28,1,30,1,6,1,14,1,33,2,14,2,33,2,14,2,33,1,14,10,33,1,14,1,13,1,28,1,30,2,28,1,30,1,28,1,30,1,28,1,13,1,30,2,13,2,30,1,13,1,33,1,14,3,13,4,14,1,33,1,5,1,14,2,33,1,14,4,33,1,14,2,11,1,1,34,11,1,15,1,13,1,30,1,29,1,30,2,13,1,30,2,13,1,14,1,1,7,11,1,28,10,1,20,28,2,1,1,28,2,17,1,1,9,11,1,6,1,28,3,1,3,28,1,1,35,}, + {1,112,28,2,1,9,14,1,30,1,28,1,13,1,14,14,5,1,14,1,13,3,30,1,13,3,14,4,33,2,14,3,33,2,14,1,33,2,14,2,13,1,14,1,33,1,14,2,13,2,33,1,14,5,13,6,30,1,13,1,30,4,28,4,30,1,28,11,30,8,28,1,30,3,28,8,30,6,13,1,30,1,28,40,30,1,28,4,30,45,28,1,30,2,28,2,30,1,28,4,30,3,28,14,14,33,33,2,14,1,33,1,14,1,33,1,13,2,30,1,14,1,33,1,14,1,33,2,14,42,5,1,14,13,33,1,13,2,30,2,6,1,14,2,33,1,14,2,33,1,14,3,33,1,14,12,30,5,28,1,30,2,28,1,30,2,28,1,30,1,13,3,14,1,13,1,14,2,30,1,14,1,30,1,13,1,14,10,33,2,14,5,1,35,14,2,9,1,13,1,30,4,14,1,1,7,11,1,28,5,1,1,28,3,1,21,28,2,29,1,11,1,1,12,16,1,28,2,1,39,}, + {1,112,28,2,1,9,9,1,28,2,13,1,14,16,13,1,30,3,13,2,30,1,13,1,14,3,33,2,14,10,6,1,14,3,33,1,14,1,13,1,33,1,14,1,33,2,14,3,13,6,30,6,28,14,30,1,28,2,30,6,28,1,30,2,28,7,30,9,28,41,30,1,28,1,30,2,28,1,30,48,28,8,30,2,28,13,30,1,14,30,33,1,14,3,33,3,13,3,30,2,13,1,33,1,14,1,33,2,14,46,33,2,14,7,33,1,14,1,13,5,30,2,33,1,14,2,33,1,14,3,33,1,14,11,13,1,28,1,30,1,28,1,30,1,13,1,28,1,30,1,28,4,30,2,13,1,30,1,13,1,14,1,13,3,6,1,14,1,13,1,30,1,33,1,14,14,5,1,14,4,1,36,14,1,9,1,13,1,30,2,14,1,1,7,11,1,29,1,28,2,1,1,28,3,1,1,28,8,1,13,28,1,29,1,1,15,11,1,28,2,1,3,28,2,1,1,28,1,1,31,}, + {1,112,28,1,29,1,1,9,13,1,28,2,13,1,14,5,5,1,14,10,13,1,30,1,28,2,13,1,30,2,13,2,33,1,14,12,33,1,6,1,14,2,33,2,14,1,13,1,33,1,14,1,33,2,14,3,13,6,30,3,28,2,30,2,28,13,30,1,28,3,30,4,28,2,30,2,28,7,30,9,28,33,30,1,28,7,30,52,28,9,30,2,28,13,30,1,14,25,5,1,14,9,33,1,13,2,14,6,33,1,14,1,33,2,14,45,33,2,14,2,5,1,14,4,33,1,14,1,13,4,14,1,13,2,14,13,33,1,14,5,13,1,28,1,30,3,13,1,28,1,13,1,28,3,30,1,13,1,30,1,13,1,30,1,6,1,13,4,14,1,13,2,30,1,14,1,33,1,14,9,5,1,14,11,11,1,1,35,11,1,14,1,16,1,11,1,1,8,6,1,28,4,1,2,28,8,1,7,28,1,1,4,28,2,1,18,30,1,28,1,1,2,28,4,1,31,}, + {1,112,28,1,6,1,1,9,13,1,28,2,14,17,13,1,30,1,28,1,30,1,13,1,30,2,14,1,13,2,14,10,5,1,14,1,13,2,14,2,33,2,14,1,13,1,14,7,13,4,30,1,13,1,30,3,28,1,30,3,28,11,30,2,28,2,30,1,28,1,30,4,28,2,30,2,28,1,30,2,28,3,30,10,28,33,30,1,28,3,30,2,28,2,30,45,13,1,30,6,28,9,30,2,28,14,14,2,5,1,14,12,5,1,14,9,5,1,14,6,33,2,14,1,13,2,14,1,1,5,14,1,33,1,14,1,33,2,14,52,33,1,14,1,33,2,14,1,13,2,33,1,13,1,30,2,33,1,14,4,5,1,14,7,33,1,14,5,30,1,28,1,13,1,30,2,13,1,28,1,13,1,30,1,28,2,13,2,30,1,13,2,6,1,13,2,14,1,13,1,33,1,6,1,30,1,13,1,14,1,33,1,14,9,5,1,14,16,1,44,6,1,28,4,1,3,28,6,1,6,28,3,1,2,28,2,17,1,1,7,11,1,14,1,11,1,1,9,29,1,28,1,1,36,}, + {1,112,28,1,7,1,1,8,14,1,30,1,28,2,14,17,33,1,13,1,30,2,13,3,14,1,13,2,14,8,33,1,14,3,33,1,14,1,33,1,14,1,33,2,14,2,33,2,14,5,13,5,30,4,28,1,30,2,28,10,30,5,28,3,30,23,28,34,30,2,28,1,30,3,28,2,30,1,28,1,30,14,13,3,30,16,13,6,30,4,13,2,30,6,28,8,30,2,28,13,30,1,14,15,5,1,14,9,5,1,14,8,33,2,14,1,1,7,14,1,13,2,14,53,13,1,33,1,14,1,33,1,14,1,33,1,13,1,14,1,13,1,30,2,14,2,33,1,14,12,33,1,14,2,13,1,30,1,13,2,30,1,13,2,30,4,28,2,13,1,30,1,13,1,14,1,33,3,14,1,13,1,33,1,13,1,28,1,13,1,14,1,33,1,14,13,5,1,14,12,5,1,14,3,1,41,6,1,28,3,1,4,28,4,1,7,28,4,1,1,28,1,7,1,1,6,14,1,13,1,30,3,13,1,14,1,1,8,28,2,1,35,}, + {1,112,28,1,9,1,1,8,14,1,28,3,14,1,33,2,14,13,5,1,33,1,13,3,30,2,13,1,14,1,13,2,33,1,14,1,5,1,14,5,33,1,14,5,33,1,14,2,33,1,14,2,33,2,14,5,13,2,30,1,13,1,30,5,28,1,30,2,28,13,30,2,28,1,30,1,28,1,30,22,28,35,30,6,28,2,30,1,28,1,30,9,13,3,30,2,13,3,30,1,13,1,30,1,13,1,30,2,13,1,30,4,13,1,30,4,13,6,30,12,28,1,30,1,28,7,30,2,28,11,30,2,14,26,5,1,14,8,1,9,11,1,13,2,14,50,33,2,14,2,33,1,14,1,33,1,14,2,13,2,14,1,13,2,14,1,33,2,14,12,33,1,14,1,13,2,30,1,13,5,28,1,30,3,28,1,30,4,14,1,33,1,5,2,33,1,13,1,33,1,13,1,28,1,13,1,14,1,33,1,14,33,11,1,1,38,7,1,28,4,1,2,28,4,1,7,28,2,1,1,28,3,11,1,1,5,11,1,30,1,28,1,30,1,28,4,13,1,1,7,11,1,28,2,1,1,28,2,1,31,}, + {1,106,28,2,1,4,28,1,16,1,1,8,14,1,30,1,28,2,14,16,5,1,14,1,13,1,14,2,13,1,30,1,13,1,14,1,13,2,14,1,5,2,14,5,13,1,14,11,33,2,14,2,5,1,14,2,13,1,30,2,13,1,30,6,28,15,30,2,28,1,30,1,28,1,30,21,28,36,30,6,28,2,30,10,13,6,30,1,13,4,30,1,13,1,30,8,13,1,30,2,13,7,30,12,28,9,30,3,28,10,30,1,13,1,14,2,5,1,14,28,33,1,5,1,14,1,1,11,13,2,14,1,5,1,14,49,5,1,14,2,13,1,14,1,33,1,14,3,13,1,33,2,14,6,5,1,14,3,13,3,14,2,33,1,14,1,13,4,30,2,13,1,30,2,28,1,30,3,28,1,30,2,28,1,30,1,14,1,33,4,13,1,14,1,33,1,28,1,13,2,14,32,5,1,33,2,13,1,14,1,9,1,14,1,1,35,11,1,16,1,7,1,28,8,1,6,28,2,1,1,28,2,8,1,1,6,13,1,28,8,13,1,1,7,17,1,28,1,1,1,28,3,1,30,}, + {1,106,28,2,1,4,28,1,12,1,1,8,14,1,28,3,14,10,33,1,14,1,13,1,6,1,13,2,33,1,13,1,6,1,14,3,13,2,33,1,13,2,14,8,13,1,14,8,33,1,13,1,14,1,33,1,14,6,13,1,30,1,13,1,30,6,28,1,30,1,28,14,30,3,28,1,30,2,28,1,30,19,28,36,30,6,28,4,30,8,13,11,30,4,13,2,30,4,13,2,30,5,13,3,30,10,28,11,30,3,28,11,13,1,14,1,5,2,14,27,33,1,5,1,14,1,1,12,13,2,14,1,5,2,14,1,5,1,14,15,5,1,14,30,33,1,14,2,33,1,14,3,33,1,14,1,13,1,14,5,33,3,14,1,33,1,14,1,13,4,30,1,13,3,30,2,13,2,30,2,13,2,30,1,28,1,30,2,28,2,30,1,28,1,30,2,13,1,33,1,14,3,13,1,14,1,13,1,28,1,13,3,14,1,33,1,14,31,33,1,13,1,14,1,13,3,14,3,1,35,11,1,16,1,6,1,28,5,1,7,28,3,11,1,1,5,14,1,30,1,28,5,30,1,28,3,13,1,11,1,1,6,9,1,28,3,1,31,}, + {1,106,28,2,1,4,28,1,17,1,1,8,14,1,28,3,14,5,33,1,14,3,33,1,5,1,33,1,13,4,14,1,13,1,6,1,14,1,13,3,33,2,14,1,13,1,14,4,5,1,14,4,33,1,14,7,33,3,13,1,14,6,13,1,30,1,13,1,30,1,13,1,30,4,28,15,30,4,28,1,30,2,28,1,30,11,28,1,30,7,28,35,30,5,28,2,30,1,28,2,30,10,13,11,30,3,13,3,30,3,13,2,30,1,13,1,30,3,13,3,30,10,28,25,13,1,14,2,5,1,14,26,5,1,14,1,11,1,1,13,13,2,14,1,5,2,14,1,5,1,14,15,5,1,14,30,33,1,14,2,33,1,14,2,33,2,14,1,33,1,14,3,33,1,14,2,33,2,14,1,33,1,14,1,13,1,33,2,13,1,30,1,13,3,30,6,13,1,14,1,30,1,28,1,13,1,28,2,30,3,13,1,30,2,13,1,33,1,14,2,13,1,14,1,13,1,30,1,13,3,14,33,33,2,14,1,13,5,6,1,13,1,14,2,11,1,1,35,11,1,12,1,7,1,28,6,1,3,28,1,29,1,1,6,30,1,28,4,30,3,28,2,30,1,28,1,30,1,11,1,1,6,6,1,28,1,1,2,28,2,1,28,}, + {1,106,28,2,1,4,28,1,11,1,1,8,14,1,28,2,30,1,14,5,33,2,14,2,33,2,13,2,14,1,13,1,30,1,14,2,33,1,14,2,33,2,14,3,33,1,14,4,5,1,14,4,33,1,14,10,13,1,14,6,13,1,30,1,13,1,30,6,28,9,30,1,28,1,30,1,28,3,30,1,28,1,30,1,28,2,30,2,28,1,30,11,28,1,30,7,28,2,30,1,28,32,30,3,28,4,30,1,28,2,30,10,13,11,30,2,13,4,30,3,13,2,30,1,13,1,30,3,13,3,30,10,28,5,30,1,28,19,13,1,14,28,5,1,14,1,1,14,14,1,13,2,14,1,5,2,14,17,5,1,14,32,33,2,14,2,33,2,14,1,33,1,14,3,33,2,14,1,33,2,14,2,33,1,13,1,33,3,30,1,13,3,30,1,13,1,30,2,13,1,30,1,13,3,30,2,28,2,30,1,28,1,30,1,13,1,30,2,13,1,14,3,33,3,30,1,13,1,33,1,14,1,33,1,14,35,13,3,30,1,13,4,14,1,33,1,14,3,1,36,11,1,17,1,9,1,29,1,28,5,16,1,1,5,14,1,28,5,30,1,28,4,30,2,28,1,13,1,1,6,11,1,28,2,1,1,28,3,1,27,}, + {1,106,28,6,29,1,1,9,13,1,28,2,13,1,14,5,33,1,13,1,14,3,33,1,14,2,13,1,28,1,13,1,14,5,13,1,33,1,14,1,33,1,14,3,13,2,33,1,14,2,5,1,14,5,33,1,14,7,13,1,14,7,13,3,30,5,28,12,30,6,28,1,30,15,28,2,30,6,28,39,30,1,28,2,30,2,28,1,30,7,13,14,30,1,13,4,30,4,13,3,30,19,28,3,30,1,28,19,13,2,14,2,5,1,14,22,5,1,33,1,14,1,1,14,14,1,13,2,14,3,5,1,14,39,5,1,14,9,33,1,14,1,33,1,14,3,33,1,14,2,33,1,14,2,33,2,14,6,13,2,33,2,13,1,30,1,13,3,14,1,30,1,13,4,30,1,13,2,28,3,30,6,14,1,13,1,33,1,14,2,5,1,33,1,14,2,33,2,14,31,5,1,14,4,13,4,30,1,13,2,30,1,33,2,14,1,33,2,5,1,14,3,1,36,11,2,9,1,6,2,11,1,1,5,13,1,28,1,30,2,28,7,30,2,28,2,15,1,1,6,16,1,28,1,1,1,28,3,1,27,}, + {1,107,28,4,16,1,1,10,13,1,28,2,13,1,14,6,33,1,14,3,13,4,28,1,30,1,13,1,33,2,5,1,14,1,33,2,14,1,33,2,14,1,33,1,13,1,33,1,14,3,5,1,14,12,13,2,14,7,13,1,30,7,28,12,30,6,28,1,30,16,28,1,30,7,28,37,30,1,28,4,30,10,13,13,30,1,13,4,30,5,13,2,30,19,28,1,30,3,28,19,30,1,13,1,14,1,5,2,14,22,33,1,14,1,1,14,14,1,33,1,13,1,30,1,14,1,33,1,14,1,5,1,14,43,5,1,14,5,33,1,14,11,33,1,14,8,13,3,30,2,13,1,6,1,13,6,30,1,28,1,13,2,28,3,30,2,28,3,30,1,14,1,13,1,33,1,14,2,5,1,14,3,5,2,14,31,5,1,14,1,5,1,14,1,13,1,30,1,13,1,30,1,13,1,30,1,13,3,33,1,14,12,1,42,11,1,30,2,28,14,15,1,1,6,6,1,28,3,1,28,}, + {1,107,28,3,17,1,1,11,13,1,28,2,13,1,14,1,5,1,14,5,33,1,14,2,13,1,30,1,13,1,33,1,30,1,28,1,30,1,13,1,33,1,14,3,33,1,14,1,33,2,14,1,33,1,13,1,14,4,5,1,14,7,5,1,14,3,33,1,13,2,14,2,5,1,14,4,13,1,30,7,28,13,30,5,28,1,30,13,13,2,30,12,28,40,30,8,13,14,30,1,13,4,30,4,13,4,30,18,28,1,30,3,28,19,30,1,13,1,14,26,1,14,14,1,33,1,14,1,13,1,30,1,14,3,5,1,14,21,33,1,14,20,5,1,33,1,14,13,33,1,14,10,33,1,14,1,33,1,13,2,30,1,13,4,30,1,13,3,30,1,28,2,13,2,28,3,30,1,28,4,30,1,13,1,33,1,14,42,5,1,14,2,13,2,28,1,13,1,30,2,14,1,13,2,14,1,33,2,14,13,1,39,11,1,14,1,9,1,30,2,28,11,30,1,11,1,1,5,11,1,28,2,1,4,28,1,1,24,}, + {1,105,28,3,29,1,11,1,1,12,30,1,28,2,13,1,14,8,33,1,13,1,30,1,28,1,13,2,30,1,28,1,30,1,13,1,33,1,13,1,14,2,33,1,14,22,33,1,13,1,14,8,13,1,30,5,28,13,30,1,28,2,30,6,28,1,30,25,28,40,30,8,13,2,30,1,13,5,30,1,13,2,30,4,13,3,30,16,13,1,30,9,28,3,30,2,28,19,30,1,13,1,14,14,33,1,14,8,33,1,14,1,1,13,14,2,33,2,14,6,5,1,14,49,33,1,14,12,5,1,33,1,14,1,5,1,14,2,13,2,33,1,13,7,30,1,13,3,30,1,28,1,30,1,13,1,30,1,28,8,30,1,28,1,13,1,5,1,13,1,14,38,5,1,14,2,33,1,14,1,30,1,13,1,30,1,13,1,30,2,14,1,13,1,30,1,14,1,13,2,14,13,5,1,14,3,11,1,1,38,11,1,14,1,9,1,30,2,28,8,13,1,1,6,10,1,28,6,1,24,}, + {1,105,28,2,7,1,1,3,11,2,1,9,28,2,30,1,14,8,33,1,14,1,13,1,28,1,13,2,28,3,30,1,13,4,14,1,13,1,14,6,5,1,14,15,33,2,14,8,13,1,30,4,28,1,30,1,28,15,30,6,28,1,30,8,13,1,30,15,28,43,30,6,13,2,30,14,13,2,30,24,28,26,30,1,13,1,14,14,33,1,14,9,1,13,14,1,13,1,14,6,5,1,14,21,5,1,14,29,5,1,33,1,14,3,33,1,14,9,33,1,14,1,5,1,14,2,13,1,30,1,13,2,14,1,13,1,28,1,30,1,14,1,13,2,14,1,13,2,30,1,28,2,30,2,28,1,30,2,28,2,30,1,28,2,30,1,28,1,13,1,14,1,13,1,14,38,33,1,14,2,13,2,30,6,14,1,30,1,28,1,14,1,13,2,14,13,33,2,14,1,5,1,33,1,14,3,11,1,1,38,11,1,14,1,15,1,13,1,30,1,28,5,14,1,1,5,11,1,28,8,1,22,}, + {1,100,28,6,7,1,1,4,11,1,1,1,11,1,1,7,11,1,28,2,30,1,14,8,33,1,14,2,13,2,28,4,13,2,30,1,13,2,33,1,13,1,14,23,33,1,14,8,13,1,30,4,28,1,30,1,28,12,30,1,28,1,30,4,28,1,30,7,13,2,30,1,13,2,30,7,28,1,30,7,28,43,30,22,13,1,30,25,28,26,30,1,13,1,14,21,5,1,14,1,1,13,14,1,13,2,33,1,14,2,5,3,14,22,5,1,33,1,14,3,5,1,14,29,33,1,14,2,5,1,14,8,5,1,14,2,13,1,28,1,13,1,30,1,13,4,33,1,6,1,14,2,30,2,13,1,30,3,28,2,30,2,28,2,30,1,28,1,30,1,13,1,30,1,13,1,14,1,13,1,14,2,5,1,14,35,5,1,14,2,30,3,28,2,30,1,13,2,14,1,13,1,30,1,14,1,13,2,14,17,33,1,14,7,11,1,1,39,14,2,13,1,30,1,28,1,13,1,1,6,9,1,28,8,1,21,}, + {1,100,28,5,7,1,1,4,11,2,1,9,14,1,28,3,14,8,13,1,33,1,14,1,13,1,30,3,28,1,30,1,13,1,30,2,13,5,14,2,5,1,14,28,13,1,30,4,28,1,30,1,28,12,30,1,28,1,30,2,28,3,30,7,13,2,30,1,13,1,30,10,13,1,30,5,28,43,30,48,28,1,30,1,28,4,30,1,28,17,30,3,13,2,14,19,5,1,14,1,1,13,14,1,13,2,14,1,33,1,14,1,5,2,14,4,5,1,14,54,33,2,14,5,33,1,14,4,5,1,14,1,13,2,30,2,13,5,14,4,30,1,28,1,13,1,28,1,30,2,28,3,30,1,28,2,30,1,28,1,30,2,13,2,14,3,5,1,33,3,14,36,28,1,30,1,13,2,30,2,13,2,14,2,13,1,14,1,13,1,30,1,14,24,33,1,5,1,14,4,1,39,14,1,16,1,11,1,1,6,28,10,1,19,}, + {1,95,28,2,1,1,28,6,6,1,1,5,11,1,1,10,14,1,30,1,28,2,14,8,33,1,14,3,13,1,30,1,28,2,30,1,13,1,30,2,6,1,13,1,14,1,13,2,14,2,5,1,14,12,33,1,14,15,13,1,30,4,28,1,30,1,28,12,30,14,13,1,30,2,13,1,30,7,13,1,30,6,28,1,30,1,28,43,30,50,28,4,30,1,28,17,30,3,13,2,14,20,1,13,14,1,33,2,13,1,14,1,33,2,14,6,5,1,14,54,33,2,14,4,33,2,14,1,33,1,14,1,33,1,14,2,13,2,30,2,13,5,33,2,14,1,13,3,30,2,28,2,30,1,28,2,30,1,28,2,13,1,30,5,14,3,5,1,33,3,14,36,28,1,30,1,13,2,30,2,13,2,14,1,33,1,13,1,14,1,30,2,33,1,14,13,33,1,14,2,5,1,14,2,5,2,14,2,33,1,14,3,5,1,33,1,5,2,14,2,1,44,9,1,28,5,1,1,28,3,1,19,}, + {1,95,28,2,1,1,28,5,29,1,1,17,14,1,30,1,28,1,30,1,14,12,13,2,28,3,30,3,13,2,14,1,30,1,13,1,14,31,13,2,30,5,28,2,30,1,28,8,30,5,28,1,30,7,13,1,30,7,28,1,30,4,13,1,30,8,28,42,30,12,13,1,30,38,28,22,30,3,13,1,14,21,1,12,5,1,33,4,13,1,33,1,5,1,14,1,33,3,14,2,5,1,14,63,33,1,14,1,33,1,14,1,13,2,30,3,13,6,33,1,13,1,30,1,13,2,30,2,28,1,30,2,28,2,30,3,13,1,30,2,28,1,30,2,14,3,5,2,33,1,14,37,30,2,13,1,30,3,13,4,33,1,14,1,13,2,14,14,33,1,14,2,5,2,14,2,5,1,14,8,5,1,33,3,14,4,11,1,1,40,16,1,6,1,28,7,1,17,28,1,1,1,}, + {1,95,28,2,1,2,28,4,11,1,1,17,14,1,30,1,28,1,30,1,14,8,5,1,14,1,5,1,33,1,28,1,30,2,28,2,30,3,13,2,14,1,30,1,13,2,14,10,5,2,14,9,33,1,14,9,13,1,30,2,28,1,30,2,28,1,30,2,28,9,30,7,28,1,30,2,13,1,30,7,28,1,30,1,28,1,30,12,28,43,30,12,13,1,30,13,13,1,30,24,28,1,30,2,28,18,30,2,28,1,13,2,14,10,5,1,14,9,1,12,14,1,33,5,13,1,14,4,33,2,14,2,33,1,14,40,5,1,14,10,33,1,14,1,33,1,14,13,30,5,13,1,30,1,13,1,14,1,13,1,33,1,14,1,13,4,28,1,13,3,28,3,13,1,30,5,13,3,14,3,5,1,14,3,5,2,14,31,5,2,13,1,30,2,13,1,30,1,28,1,30,1,13,2,30,1,13,1,33,1,5,1,14,1,13,1,14,25,33,1,14,12,33,1,6,1,14,3,1,39,11,1,16,1,8,1,28,6,1,1,28,2,1,6,28,2,1,2,28,2,1,1,}, + {1,95,28,3,1,1,28,3,11,1,1,8,11,2,1,8,14,1,28,2,30,1,14,9,5,2,14,1,13,1,28,5,30,2,13,2,14,1,13,3,14,4,5,3,14,24,13,1,30,4,28,1,30,4,28,8,30,10,13,1,30,3,13,1,30,5,28,2,30,9,28,45,30,11,13,1,30,38,28,23,30,2,13,1,30,1,14,10,33,1,14,6,33,1,14,1,1,12,14,1,33,4,5,1,33,2,14,1,33,1,14,6,33,1,5,1,14,38,5,1,33,1,14,10,33,3,14,13,30,4,13,3,14,1,33,2,14,1,33,4,13,1,28,1,13,2,30,1,28,3,13,1,30,3,13,1,30,1,13,3,33,1,14,6,5,2,14,31,5,2,13,1,30,4,28,1,30,4,13,2,33,2,14,28,33,1,14,5,33,1,5,1,14,3,33,1,13,1,14,2,5,2,14,3,11,1,1,39,11,1,16,1,7,1,28,7,1,2,28,8,}, + {1,95,28,2,1,1,28,3,11,1,1,8,11,1,15,1,11,1,1,2,11,1,1,5,13,1,28,2,13,1,14,9,5,1,14,3,30,2,28,3,30,2,13,2,14,1,30,2,33,1,5,1,14,1,33,3,5,1,14,16,5,1,14,8,13,1,30,4,28,1,30,5,28,7,30,14,13,1,30,16,28,45,30,10,13,1,30,2,13,1,30,25,28,1,30,10,28,23,30,1,13,3,14,14,5,1,14,1,5,1,14,1,1,12,14,2,33,1,5,1,33,1,5,1,14,1,13,1,33,1,14,1,33,1,14,6,33,2,14,39,5,1,14,10,33,1,14,1,33,1,14,9,5,1,14,3,30,5,13,1,14,2,33,2,14,2,5,1,14,1,33,1,13,1,28,1,13,2,30,1,28,3,30,4,14,1,13,3,14,3,5,1,14,1,33,1,14,33,33,1,14,3,13,1,30,4,28,1,30,2,13,1,30,1,13,2,33,1,14,1,5,1,14,4,5,1,14,23,33,1,14,9,33,1,14,4,5,1,14,1,33,2,14,4,11,1,1,40,11,1,9,1,6,1,28,4,1,2,28,6,}, + {1,93,28,7,16,1,1,14,11,1,1,5,13,1,28,2,13,1,14,9,33,1,14,2,13,1,30,3,28,3,30,1,13,4,30,1,33,1,14,2,33,2,14,6,33,1,14,11,5,1,14,8,13,1,30,10,28,7,30,1,28,1,30,10,13,3,30,7,28,1,30,6,28,48,30,9,13,1,30,2,13,1,30,24,28,2,30,2,28,1,30,3,28,1,30,3,28,23,30,1,13,1,14,1,13,2,14,9,33,1,14,4,5,2,14,1,1,11,14,1,33,1,14,1,33,1,14,1,33,2,13,2,33,1,14,1,33,1,14,6,33,1,14,20,5,1,14,36,33,1,14,5,33,1,14,2,13,2,30,1,28,1,30,2,13,1,14,1,33,2,14,2,13,1,33,1,13,3,28,1,30,1,13,1,30,1,28,3,30,4,33,1,13,5,14,3,33,1,14,1,33,1,14,29,33,3,14,3,13,1,30,1,28,1,30,1,28,2,30,1,28,1,13,1,30,3,13,1,14,1,5,1,14,4,5,1,14,9,33,1,14,13,13,1,33,1,14,1,33,1,14,6,33,1,14,7,33,1,14,2,33,1,14,6,1,40,11,1,16,1,7,1,28,2,1,2,28,4,}, + {1,93,28,2,1,2,28,2,10,1,1,12,11,2,1,1,12,1,11,1,1,4,13,1,28,2,13,1,14,9,33,1,5,1,14,1,13,1,30,1,13,2,28,3,30,1,13,3,30,1,13,1,14,1,13,1,14,2,13,1,14,27,13,1,30,1,13,1,30,6,28,11,30,10,13,3,30,7,28,2,30,5,28,48,30,9,13,1,30,1,13,1,30,24,28,1,30,4,28,1,30,2,28,2,30,4,28,14,30,1,28,7,30,1,13,1,14,1,13,1,33,1,14,9,33,1,14,4,5,1,14,1,1,11,14,1,5,1,14,1,33,2,14,1,33,1,14,1,13,2,33,1,14,1,33,1,14,64,33,1,14,3,33,3,14,2,13,1,14,1,13,1,28,1,30,1,13,3,14,4,13,1,33,1,13,3,30,4,28,4,30,3,33,1,13,3,30,2,14,3,33,1,14,1,33,1,14,29,33,1,14,1,33,2,14,2,13,2,28,1,30,2,28,3,30,2,28,1,30,1,14,2,5,1,14,14,33,1,14,13,6,1,14,2,33,1,14,5,33,2,14,7,33,1,14,3,5,2,14,1,33,2,5,2,14,3,1,39,11,1,28,2,1,1,28,4,}, + {1,93,28,5,29,1,1,11,11,1,14,1,11,2,1,1,11,4,1,2,30,1,28,2,13,1,14,13,13,3,30,1,28,1,30,4,13,1,30,1,13,2,30,1,13,1,14,1,13,2,14,26,13,1,30,1,13,1,30,6,28,8,30,1,28,2,30,4,13,1,30,14,28,2,30,4,28,50,30,11,13,1,30,24,28,1,30,13,28,14,30,1,28,7,30,1,13,1,14,1,33,2,14,15,1,11,14,6,33,2,14,1,13,3,14,6,5,1,14,59,33,1,14,4,33,1,14,4,13,1,30,1,28,1,30,1,13,3,14,2,33,2,13,1,14,1,13,1,14,1,13,2,30,1,28,6,30,2,13,1,14,1,13,5,14,1,33,3,14,31,33,1,14,1,33,1,14,2,33,1,13,1,30,1,28,1,13,2,28,2,30,2,13,1,30,1,13,1,14,34,33,2,14,2,33,1,14,1,33,2,14,2,33,1,14,2,33,1,14,3,5,4,14,2,33,1,14,10,1,35,11,1,28,6,}, + {1,93,28,5,11,1,1,11,14,2,11,1,12,1,1,3,11,2,1,1,11,1,28,3,14,2,33,1,14,3,33,1,14,5,33,1,5,1,14,2,13,5,30,1,28,1,30,2,13,1,30,2,13,1,14,1,30,1,13,1,14,26,13,3,30,4,28,1,30,1,28,2,30,1,28,5,30,22,28,2,30,4,28,49,30,12,13,2,30,29,28,2,30,6,28,22,30,1,13,1,33,1,14,15,5,1,14,1,1,10,14,6,5,1,33,3,14,1,13,2,14,74,33,2,13,1,28,2,30,2,13,2,14,2,33,1,13,1,30,1,13,1,14,1,13,1,6,1,13,2,28,3,30,1,28,2,30,1,13,5,30,1,13,1,33,5,14,31,33,1,14,5,13,1,30,1,28,1,13,2,30,1,28,1,30,1,28,2,13,3,14,31,33,3,14,3,33,1,14,5,33,1,14,12,33,1,5,1,14,8,33,1,14,5,1,31,11,1,28,5,}, + {1,93,28,4,9,1,1,11,14,1,33,1,14,1,1,2,11,5,1,1,11,1,28,3,14,2,33,1,14,2,33,2,14,11,33,1,14,1,30,1,28,3,30,1,13,1,30,2,13,1,14,1,30,1,13,1,14,4,33,2,14,21,13,1,30,5,28,1,30,1,28,2,30,1,28,5,30,22,28,2,30,1,28,52,30,12,13,2,30,29,28,2,30,8,28,20,30,1,13,1,14,15,5,1,14,1,1,11,14,1,33,1,14,3,5,1,14,1,33,2,14,2,13,2,14,5,33,2,14,1,5,1,14,65,33,1,13,2,28,3,13,2,14,1,33,1,14,1,13,2,30,1,13,1,14,1,13,1,30,1,13,2,28,3,30,1,28,2,30,1,13,5,30,1,13,1,33,2,14,1,13,1,14,32,33,1,14,4,33,1,13,1,30,1,28,1,13,2,30,3,28,2,30,2,13,1,33,1,14,29,33,4,14,1,33,1,14,1,33,1,14,9,5,1,14,9,33,1,14,7,33,6,14,1,33,1,13,1,14,3,1,27,28,4,1,1,}, + {1,93,28,3,29,1,1,11,14,2,33,1,14,1,1,3,11,1,12,1,1,3,14,1,28,3,14,12,33,1,14,2,5,2,33,3,30,2,28,1,30,2,13,1,30,1,13,1,30,1,13,3,14,4,33,2,14,21,30,6,28,1,30,1,28,8,30,22,28,1,30,2,28,52,30,12,13,1,30,29,28,1,30,5,28,1,30,1,13,1,30,2,28,20,30,1,13,1,14,1,5,1,14,13,5,1,11,1,1,10,14,1,5,1,14,4,5,1,14,2,33,1,13,1,14,1,13,2,33,1,14,3,33,2,14,39,33,1,14,19,5,1,14,2,33,2,14,4,13,3,30,3,13,3,33,2,13,2,30,2,14,1,13,1,28,1,13,2,28,3,30,1,28,1,30,3,6,1,13,1,14,1,13,2,30,1,13,3,6,1,13,1,14,1,33,1,14,29,33,1,14,2,5,1,33,2,14,1,30,1,28,1,30,4,28,4,13,3,33,1,14,25,5,2,14,3,33,2,14,1,13,1,14,1,33,1,14,18,5,1,33,1,14,8,33,3,14,1,33,1,13,2,30,1,13,3,14,3,11,1,1,23,7,1,28,3,1,1,}, + {1,92,28,4,11,1,1,10,14,1,5,1,14,1,5,1,14,1,1,4,17,1,1,3,14,1,28,2,30,1,14,7,33,1,14,2,33,1,14,1,33,1,14,5,33,1,14,1,13,1,30,5,13,2,30,1,13,2,14,15,5,1,14,12,30,6,28,1,30,2,28,7,30,1,28,2,30,22,28,52,30,35,28,1,30,6,28,2,30,4,28,1,30,2,28,1,30,1,28,20,30,1,13,1,14,11,5,1,14,2,5,1,14,1,1,10,14,7,5,2,14,1,13,1,30,1,13,1,30,1,13,2,33,1,14,2,33,1,14,1,33,2,14,28,33,1,14,8,33,1,14,4,5,1,14,13,5,2,14,2,33,2,14,3,13,2,30,1,33,1,13,1,30,1,13,7,14,1,30,1,13,1,14,1,13,1,28,1,30,3,28,2,30,1,28,1,30,3,13,4,30,1,28,1,13,1,33,1,13,1,30,2,14,1,33,1,14,33,33,1,14,2,13,1,30,1,28,1,30,1,28,6,13,2,33,2,14,15,5,1,14,7,5,2,14,5,33,3,13,1,14,1,33,1,14,18,5,1,33,1,14,8,33,3,14,1,33,2,13,1,6,1,13,3,33,2,5,3,14,3,1,19,6,1,28,2,1,2,}, + {1,92,28,3,10,1,1,10,11,1,14,1,5,1,14,3,1,4,11,1,1,3,14,1,28,2,30,1,14,7,33,1,14,2,33,1,14,5,33,2,14,3,13,1,30,1,13,2,28,1,30,2,13,1,28,1,13,1,14,1,33,1,14,13,5,1,14,12,13,1,30,6,28,10,30,1,28,1,30,22,28,52,30,35,28,1,30,7,28,1,30,6,28,2,30,1,28,19,30,3,33,1,13,1,14,2,5,2,14,5,5,1,14,3,11,1,1,10,5,1,14,6,5,2,14,1,13,1,30,1,13,1,30,1,13,2,33,1,14,2,33,1,14,1,33,2,14,12,5,1,14,10,5,1,14,4,33,1,14,8,33,1,14,19,5,1,14,3,33,1,14,1,5,1,14,1,30,1,13,1,30,1,13,2,30,1,13,3,30,1,13,2,30,1,13,5,30,2,28,1,30,1,28,4,30,3,13,1,33,1,13,1,30,1,13,1,28,1,13,4,30,1,13,1,14,27,33,2,14,3,33,2,14,2,13,2,30,1,28,1,30,1,28,6,13,1,33,1,14,1,33,1,14,23,5,2,14,5,33,2,14,5,33,1,14,26,33,3,14,1,33,1,14,1,33,1,14,1,13,1,14,1,33,1,14,1,5,1,14,5,33,1,14,5,1,14,28,2,1,3,}, + {1,93,28,2,1,11,14,5,11,1,1,2,11,3,1,2,11,1,14,1,28,2,30,1,14,7,33,1,14,9,33,1,14,4,30,2,13,1,28,1,30,3,28,1,13,1,14,1,33,1,14,3,33,1,13,1,14,21,13,1,30,5,28,10,30,2,28,1,30,20,28,2,30,1,28,50,30,21,13,1,30,2,13,1,30,5,13,1,30,7,13,1,30,11,28,3,30,1,28,18,13,2,28,1,30,1,13,2,14,6,5,1,14,6,1,10,14,1,33,1,14,6,5,1,14,2,13,2,14,1,13,3,14,3,33,1,14,61,13,2,14,3,33,1,14,1,30,1,13,1,30,1,13,2,28,1,13,1,33,1,30,5,13,3,6,1,13,2,30,1,28,1,13,1,30,2,28,2,30,3,13,10,28,1,13,1,14,27,33,2,14,3,33,2,14,1,13,4,28,7,30,1,13,1,14,2,33,1,14,23,5,2,14,5,33,2,14,5,33,1,14,11,33,1,14,35,5,1,33,1,5,1,1,13,10,1,28,1,1,4,}, + {1,89,28,1,1,1,28,1,1,1,28,1,9,1,1,10,14,1,33,1,14,4,11,1,1,3,11,1,1,3,11,1,9,1,28,2,30,1,14,6,33,2,14,12,5,1,14,1,13,1,30,2,28,1,30,1,28,1,30,2,14,1,33,2,14,3,33,1,6,1,33,1,14,1,33,1,14,18,13,1,30,5,28,11,30,22,28,2,30,1,28,49,30,4,28,1,30,10,13,8,30,2,13,2,30,3,13,1,30,3,13,1,30,16,28,22,13,2,28,1,30,1,13,2,33,1,14,4,5,2,14,4,5,1,14,1,1,9,14,3,5,1,33,1,14,4,5,1,14,2,33,1,13,1,33,2,13,1,33,1,14,5,33,1,14,2,5,1,14,54,33,1,14,1,13,1,30,1,14,5,13,1,30,1,28,1,30,3,13,1,33,1,30,2,13,2,30,1,13,6,30,1,28,1,13,1,30,1,13,1,30,1,28,1,30,1,13,1,30,2,33,2,13,7,30,1,13,1,14,27,33,1,14,3,5,1,14,2,13,5,28,7,13,1,33,2,14,14,33,1,14,11,33,1,13,2,14,4,33,1,14,5,33,1,14,11,33,1,14,10,33,2,14,18,33,2,14,1,33,2,14,2,1,13,16,1,28,3,1,3,}, + {1,88,28,6,1,10,14,2,5,1,14,4,1,9,30,1,28,2,30,1,14,6,33,2,14,3,5,1,14,8,33,1,5,1,13,1,30,2,28,1,30,1,28,2,30,1,14,1,33,1,5,1,14,4,13,1,33,1,14,20,13,1,30,1,28,16,30,20,28,53,30,4,28,1,30,7,13,11,30,2,13,2,30,3,13,1,30,3,13,1,30,16,28,22,30,1,13,1,30,2,13,1,14,1,33,1,14,5,5,1,14,3,5,2,1,10,14,3,33,2,14,6,33,1,14,1,33,2,14,1,33,1,14,6,33,1,14,2,5,1,14,18,33,1,14,34,33,1,13,1,14,1,33,1,13,1,14,2,13,5,28,1,13,1,30,1,13,5,14,1,13,3,14,3,30,1,28,1,30,2,13,1,30,5,13,1,30,2,13,1,14,1,33,1,13,1,30,1,13,4,30,1,13,1,14,28,33,2,14,4,33,1,13,4,28,1,30,1,28,3,30,1,28,1,30,1,33,2,14,14,33,1,14,11,13,2,30,1,13,3,14,2,5,2,33,1,14,15,33,2,14,8,33,2,14,12,33,1,14,4,5,1,33,2,14,1,33,1,5,1,11,1,1,13,16,1,28,4,1,3,}, + {1,88,28,3,1,1,28,1,9,1,1,10,14,7,1,6,11,1,12,1,11,1,30,1,28,2,13,1,5,1,13,1,33,1,14,1,5,1,14,4,33,2,5,1,14,8,33,2,14,1,30,1,13,1,30,2,28,2,30,1,14,3,33,1,14,1,13,3,14,2,33,1,14,18,13,1,30,1,28,1,30,1,28,1,30,1,28,9,30,1,28,3,30,19,28,53,30,10,13,13,30,2,13,1,30,25,28,1,30,1,28,19,30,2,13,3,14,12,5,1,14,1,1,9,14,1,33,1,14,3,5,1,14,1,33,1,14,6,5,2,14,3,5,1,33,1,14,25,33,1,14,25,33,1,14,7,33,1,14,3,33,1,13,1,33,1,14,1,28,1,30,2,13,1,30,2,13,1,30,1,13,1,30,2,13,2,14,1,13,6,30,1,28,1,30,3,13,1,30,4,13,4,14,1,5,1,13,1,30,2,13,1,30,1,14,32,33,1,14,1,33,1,14,1,5,1,14,1,30,1,13,2,30,1,28,1,30,1,28,6,13,1,14,1,33,1,14,20,5,1,14,4,13,1,30,3,13,1,6,1,14,2,5,2,14,4,33,1,14,23,33,1,14,2,33,2,14,5,33,1,14,1,33,2,14,2,33,1,14,2,33,1,14,2,1,14,9,1,28,5,1,3,}, + {1,89,28,1,1,1,28,2,11,1,1,9,14,1,33,1,14,3,5,1,14,2,1,6,9,1,12,1,1,1,30,1,28,2,13,1,5,1,13,1,14,2,5,1,14,4,33,2,14,10,33,1,14,1,13,3,30,1,28,1,30,2,14,3,13,1,14,1,30,1,13,2,14,1,33,2,14,16,5,1,14,1,13,1,30,5,28,10,30,1,28,2,30,19,28,53,30,9,13,3,30,2,13,9,30,2,13,1,30,14,13,1,30,1,28,1,30,8,28,1,30,1,28,19,13,1,30,2,13,2,14,13,1,10,14,1,33,1,5,1,14,4,13,1,14,3,33,1,14,2,5,1,14,4,33,2,14,51,33,1,14,10,5,2,14,1,33,1,14,1,30,3,13,1,30,1,13,4,30,1,13,2,33,2,13,1,33,1,13,1,30,2,13,2,30,4,13,1,28,3,30,1,13,1,14,1,13,1,30,1,14,1,33,1,14,1,30,2,13,2,14,28,5,1,14,5,13,1,33,1,14,1,13,3,14,1,13,1,30,3,28,5,13,1,14,1,33,1,14,20,5,2,14,1,5,1,14,2,13,3,14,1,13,1,33,1,14,1,13,1,14,5,33,1,14,9,33,1,14,5,33,1,14,7,33,1,14,2,13,1,33,1,14,5,13,1,33,3,14,2,33,1,14,1,33,1,5,1,14,1,1,14,9,1,28,9,}, + {1,87,28,3,1,1,28,1,7,1,1,9,14,1,33,1,14,5,5,1,14,1,1,4,11,2,12,1,15,2,28,3,14,1,5,1,14,20,33,1,14,1,33,2,13,1,30,1,13,4,33,1,5,1,33,1,14,1,30,1,13,2,14,2,33,1,14,16,5,1,14,2,30,5,28,9,30,1,28,2,30,4,28,1,30,15,28,50,29,1,28,2,30,9,13,3,30,2,13,8,30,3,13,1,30,14,13,1,30,9,28,1,30,2,28,19,30,3,13,2,14,13,1,10,14,1,5,2,14,4,13,1,14,1,33,2,14,8,5,2,14,43,5,1,14,18,33,2,14,2,13,1,30,1,13,1,30,1,13,1,30,1,13,3,30,1,13,1,14,1,33,1,14,2,33,1,14,1,13,1,30,1,28,1,13,3,30,3,13,1,28,1,30,3,13,1,14,1,13,2,14,1,5,1,33,1,13,1,30,1,14,2,33,1,14,26,5,3,14,2,33,1,14,1,13,1,33,1,14,1,30,1,13,2,14,1,13,1,30,2,28,6,13,1,14,25,5,2,14,2,13,2,14,1,13,5,14,4,33,1,14,7,33,3,14,5,33,1,14,5,33,1,14,3,13,2,14,4,33,2,13,1,33,1,14,3,33,1,14,1,33,1,14,1,11,1,1,14,8,1,28,10,}, + {1,87,28,3,1,1,28,1,11,1,1,9,14,1,33,1,14,5,5,1,14,1,1,4,11,4,9,1,28,3,14,1,5,2,14,19,5,1,14,1,33,2,13,5,33,2,14,1,5,1,14,1,13,4,14,7,5,1,14,13,13,1,28,1,30,2,28,13,30,12,28,1,30,7,28,50,30,1,28,2,30,9,13,2,30,2,13,11,30,11,13,1,30,4,13,1,30,9,28,22,30,2,28,1,13,3,14,1,33,1,14,6,33,1,14,3,1,9,14,1,5,1,14,6,33,1,14,2,33,2,14,43,33,1,14,27,13,2,14,1,13,2,30,1,13,3,28,1,13,3,30,1,13,2,33,1,14,3,33,1,13,1,28,2,13,2,30,3,28,1,13,1,30,1,13,1,30,2,13,3,33,1,14,1,5,1,14,1,13,3,14,1,33,2,14,30,33,4,14,1,30,1,13,1,30,1,13,1,30,1,28,8,13,1,14,25,5,1,14,3,13,2,14,1,13,3,30,1,13,2,14,2,33,2,14,3,5,1,14,3,33,1,14,7,33,1,14,7,33,1,14,1,33,2,13,1,33,1,14,2,5,1,14,5,33,2,14,2,1,15,6,1,28,1,1,2,28,3,1,1,28,1,1,1,28,2,}, + {1,87,28,5,1,9,11,1,13,1,33,1,14,5,5,1,14,1,1,8,14,1,28,3,14,2,5,1,14,18,5,2,14,2,13,6,33,2,14,3,13,1,30,1,13,2,14,21,13,1,28,1,30,2,28,4,30,2,28,8,30,11,28,1,30,7,28,54,30,8,13,1,30,3,13,12,30,1,13,1,30,8,13,1,30,4,13,2,30,10,28,21,30,1,28,1,13,3,14,1,33,1,14,6,33,1,14,3,1,9,14,1,5,1,14,9,33,2,14,43,33,1,14,25,5,1,14,1,13,2,14,1,30,1,13,1,30,2,14,1,13,1,30,1,13,3,30,1,13,2,14,5,13,1,28,2,30,1,13,1,30,1,13,1,30,4,13,1,30,1,28,1,13,1,33,1,13,1,33,1,14,4,13,1,33,1,14,1,33,2,14,30,33,2,14,3,13,4,30,1,28,5,30,1,28,2,13,2,14,24,5,1,14,3,13,3,14,1,13,2,30,1,13,3,33,3,14,1,33,1,14,5,33,1,14,3,5,1,14,3,33,1,14,7,33,1,14,3,6,1,13,1,14,6,33,2,13,1,14,1,1,15,11,1,28,4,1,1,28,8,}, + {1,87,28,4,9,1,1,9,14,1,13,2,14,5,5,1,14,1,1,8,14,1,28,3,13,1,14,20,33,2,14,2,13,4,14,4,5,2,14,1,13,1,30,1,13,1,14,1,33,2,14,2,33,2,14,15,13,1,30,3,28,4,30,1,28,8,30,20,28,54,30,12,13,11,30,1,13,1,30,9,13,1,30,10,28,1,30,4,28,20,30,4,13,3,14,1,33,1,14,6,33,2,14,1,1,9,11,1,5,2,14,4,33,1,14,4,33,2,14,1,5,1,14,41,33,1,14,26,13,4,30,2,28,1,30,1,13,1,14,1,13,5,30,1,13,1,33,2,5,2,14,2,13,2,28,1,30,4,13,1,30,3,13,1,30,2,14,1,13,2,14,39,33,2,14,3,13,4,30,1,28,5,30,1,28,2,13,2,14,24,5,1,14,3,13,2,33,1,14,1,13,2,30,1,13,1,33,2,14,1,33,2,14,8,33,2,14,1,5,1,14,3,33,1,14,11,6,1,33,1,14,5,33,2,14,2,1,15,12,1,28,5,1,1,28,2,1,1,28,5,}, + {1,87,28,4,11,1,1,9,14,1,30,1,13,1,33,1,14,1,33,1,14,2,5,1,14,1,1,6,11,1,17,1,14,1,28,3,13,1,6,1,14,20,33,2,14,1,13,5,14,3,33,2,14,2,13,2,14,2,33,1,14,2,33,1,14,2,33,1,14,13,13,1,30,3,28,11,30,21,28,53,30,14,13,13,30,20,28,1,30,1,28,23,30,1,13,2,30,1,13,3,14,1,33,1,14,7,33,1,14,1,1,9,14,1,33,2,14,10,33,1,14,11,33,3,14,38,5,1,14,18,30,3,13,1,30,1,28,1,30,1,13,4,30,2,13,1,28,1,13,1,33,2,14,1,33,1,13,4,30,5,13,1,28,1,30,3,13,5,14,1,5,2,14,34,33,1,14,1,33,2,14,1,33,1,14,1,13,4,30,1,28,8,13,2,33,1,14,23,5,2,14,1,33,1,13,2,14,1,13,4,14,7,33,1,14,1,33,1,14,3,5,1,14,1,5,1,14,5,33,1,14,8,13,2,14,1,33,2,14,7,1,16,9,1,28,3,1,1,28,2,1,1,28,2,1,6,}, + {1,87,28,4,1,9,14,1,13,4,33,2,14,2,5,1,14,1,1,7,11,1,14,1,28,2,30,1,13,1,6,1,14,20,33,2,14,1,13,4,6,1,14,3,13,1,33,1,14,2,13,1,33,1,14,22,13,1,30,3,28,4,30,1,28,5,30,22,28,53,30,15,13,6,30,25,28,1,30,2,28,23,30,2,13,1,30,1,13,3,14,1,33,1,14,7,5,1,14,1,1,9,14,1,33,1,5,1,14,22,33,3,14,38,5,1,14,16,33,1,14,1,30,2,13,2,30,1,28,1,30,1,13,4,30,2,13,1,30,1,13,1,14,1,33,2,14,1,30,4,13,3,30,1,28,1,13,1,30,1,13,1,30,2,14,1,33,1,6,1,13,1,33,1,14,1,33,1,14,2,5,1,33,1,14,31,33,1,14,1,13,1,33,1,14,1,33,2,13,3,30,5,28,1,30,1,28,3,13,1,6,1,13,1,14,24,5,1,14,1,33,1,13,2,14,1,13,4,14,6,33,2,14,1,33,2,14,2,33,1,14,16,13,1,33,1,14,3,5,2,14,3,1,16,11,1,29,1,28,2,1,1,28,2,1,1,28,1,1,9,}, + {1,87,28,3,8,1,1,9,13,5,33,1,14,3,5,1,14,1,1,8,14,1,28,2,30,1,14,1,13,1,14,21,33,1,14,1,13,5,14,2,13,2,14,1,33,1,14,1,13,1,14,4,5,1,14,4,33,1,14,14,13,1,30,3,28,2,30,1,28,6,30,8,28,1,30,13,28,1,30,1,28,42,30,1,28,8,30,19,13,1,30,29,28,1,30,1,28,21,30,1,28,1,13,5,14,1,33,1,14,7,33,1,14,1,1,9,14,7,33,3,14,15,33,2,14,39,5,1,14,18,13,1,30,3,13,1,28,1,30,1,13,4,30,2,13,1,30,1,14,1,33,1,13,1,33,1,14,1,13,1,30,1,13,5,30,2,13,1,30,4,33,2,13,1,33,1,14,6,33,1,14,31,33,1,14,1,13,1,33,1,14,1,33,1,13,3,30,3,13,1,30,1,28,2,30,1,28,3,13,1,30,1,13,1,14,26,33,1,13,2,14,1,30,1,13,1,30,1,13,1,14,6,33,2,14,5,33,1,14,11,5,1,14,3,33,2,14,4,33,1,5,1,14,1,1,17,16,1,28,6,1,12,}, + {1,85,28,5,17,1,1,8,11,1,13,4,33,1,14,4,5,1,14,1,1,8,13,1,28,2,30,1,14,1,33,1,14,19,33,1,14,4,13,1,14,1,33,1,14,1,33,2,13,1,14,2,33,3,14,4,5,1,14,3,33,2,14,10,5,1,14,3,13,1,30,3,28,2,30,1,28,6,30,1,28,1,30,1,28,1,30,4,28,1,30,13,28,1,30,1,28,42,30,1,28,9,30,18,13,1,30,10,28,2,30,12,28,2,30,5,28,20,30,2,28,1,13,2,30,1,13,1,33,1,14,10,11,1,1,8,11,1,5,1,14,6,33,2,14,3,33,1,14,13,33,2,14,56,13,2,30,1,28,1,13,4,33,1,13,6,28,1,13,3,33,2,13,4,6,1,13,1,14,1,13,1,30,2,28,1,30,2,13,1,33,2,14,37,5,1,14,4,33,2,14,2,13,4,30,1,28,1,30,2,28,5,30,1,13,1,30,1,13,1,14,24,33,2,14,4,30,3,13,1,14,1,5,1,14,11,13,1,33,1,14,1,33,1,13,1,14,8,5,1,14,7,33,1,14,1,1,17,11,1,6,1,28,4,1,1,28,2,1,12,}, + {1,84,28,3,1,2,28,1,1,9,14,1,13,3,14,2,13,1,14,1,5,1,14,3,1,6,11,1,1,1,29,1,28,2,13,1,14,1,13,1,14,14,33,1,14,3,33,1,14,5,33,1,14,1,33,1,14,1,13,1,33,1,13,1,14,2,33,3,14,9,5,1,14,14,13,1,30,3,28,6,30,2,28,1,30,1,28,1,30,1,28,1,30,18,28,1,30,1,28,42,30,1,28,15,30,12,13,1,30,9,28,3,30,19,28,20,30,2,28,1,13,2,30,1,13,1,33,1,14,7,5,1,14,2,1,9,14,1,5,1,14,11,33,1,14,13,33,2,14,51,5,1,14,2,13,1,33,1,30,1,13,1,30,1,28,1,30,2,13,2,33,1,13,1,33,1,13,4,28,1,30,1,13,1,14,1,33,1,13,5,30,1,13,1,14,1,13,2,30,1,28,2,30,1,14,1,5,1,33,1,14,40,5,1,14,5,13,5,28,1,30,1,28,6,30,1,13,3,14,24,5,1,33,1,14,1,5,1,33,2,30,1,13,3,14,1,5,1,14,8,5,2,14,1,6,1,33,1,14,1,13,2,14,8,33,1,14,5,33,1,14,2,1,17,16,1,28,4,1,17,}, + {1,84,28,4,1,1,29,1,1,9,9,1,13,4,14,1,13,1,14,4,11,1,1,8,13,1,28,2,13,1,14,1,13,1,14,14,33,1,14,1,33,2,14,5,33,2,14,1,33,1,14,1,13,1,33,1,13,1,14,2,33,1,14,20,5,1,14,5,13,1,30,3,28,4,30,1,28,1,30,2,28,1,30,25,28,57,30,12,13,1,30,9,28,3,30,18,28,21,30,3,13,4,14,8,5,1,14,2,1,9,14,13,33,3,14,11,33,2,14,51,5,1,14,2,13,2,30,3,28,2,13,2,14,2,13,1,14,1,13,3,30,1,28,1,30,1,13,2,33,1,13,4,14,1,13,2,14,1,13,2,30,1,28,2,30,1,14,43,33,1,14,3,33,2,13,5,28,1,30,1,28,5,30,1,13,3,14,22,33,1,14,7,13,1,30,1,13,3,14,11,5,1,14,1,13,1,33,1,14,1,6,1,14,2,33,1,5,2,14,4,5,1,14,1,5,3,14,2,1,17,11,1,6,1,28,2,1,20,}, + {1,84,28,5,9,1,1,8,11,1,13,6,30,1,14,1,33,1,14,2,11,1,1,8,13,1,28,2,13,1,14,1,33,1,14,16,33,2,14,10,13,3,14,2,33,1,14,20,5,1,14,6,30,1,28,5,30,2,28,1,30,2,28,1,30,23,28,56,30,26,28,1,30,17,28,2,30,3,28,18,30,1,28,1,30,2,13,5,14,1,33,2,14,6,1,9,14,2,5,1,14,2,33,1,14,6,33,3,14,15,33,1,14,25,33,1,14,23,5,1,14,2,13,2,30,3,28,1,30,1,13,4,30,1,13,2,14,1,13,1,30,1,28,1,30,3,13,2,14,1,13,2,14,1,30,1,13,2,30,3,28,2,13,1,33,2,14,36,5,1,33,1,14,2,13,1,33,1,14,1,33,1,14,1,13,1,14,1,30,1,28,1,13,1,30,2,28,1,30,1,28,2,30,1,28,2,30,1,13,3,14,22,33,1,14,5,13,2,30,1,13,3,33,1,5,1,14,1,5,1,14,10,13,3,33,1,14,3,5,1,14,7,5,1,14,1,11,1,1,18,9,1,28,3,1,21,}, + {1,84,28,3,1,1,28,1,17,1,1,8,14,1,30,1,13,3,33,1,13,1,30,1,14,1,33,1,14,1,33,1,14,1,1,8,30,1,28,2,13,1,14,3,5,2,14,13,33,2,14,2,33,1,14,7,13,2,33,2,14,1,33,1,14,20,5,1,14,6,30,1,28,5,30,2,28,1,30,18,13,1,30,7,28,3,30,1,28,52,30,26,28,1,30,16,28,3,30,3,28,18,30,1,28,1,30,2,13,5,14,1,33,2,14,6,1,9,14,2,5,1,14,2,33,2,14,5,33,2,14,16,5,1,14,25,33,2,14,24,13,1,30,3,13,1,30,1,28,1,30,1,13,3,30,2,13,4,30,1,28,1,30,1,28,1,30,1,13,5,14,1,30,1,13,2,30,3,28,1,30,1,13,1,33,2,14,38,33,1,13,2,14,3,13,3,30,1,28,1,13,1,30,1,28,2,30,1,28,2,30,1,28,2,30,2,13,3,14,26,33,1,13,1,30,2,13,3,33,1,14,13,13,1,30,1,13,1,33,1,5,1,14,4,5,1,14,1,5,2,14,2,1,19,17,1,28,5,1,21,}, + {1,84,28,2,1,2,28,1,11,1,1,8,14,1,30,1,13,3,33,1,13,1,30,1,14,3,13,1,14,1,1,8,30,1,28,2,14,1,33,1,14,3,5,1,14,6,5,1,14,6,33,2,14,1,33,1,14,8,13,2,33,2,14,1,33,1,14,20,5,1,14,6,30,1,28,5,30,2,28,1,30,15,13,1,30,5,13,1,30,4,28,3,30,1,28,52,30,26,28,1,30,15,28,3,30,4,28,18,30,1,28,1,30,2,13,4,14,10,1,9,14,5,33,1,14,6,33,2,14,42,33,2,14,24,30,4,14,1,30,3,13,3,30,1,13,3,30,1,13,1,30,1,28,1,30,1,28,1,30,1,13,1,30,1,13,1,14,3,30,1,13,2,30,4,13,2,33,2,14,38,13,1,6,1,14,1,33,1,13,1,14,1,13,1,30,2,13,1,30,2,28,6,30,1,28,1,30,1,28,1,30,1,13,1,30,1,13,1,14,23,33,1,14,2,33,1,13,1,30,2,13,4,14,10,33,1,14,1,33,1,13,3,33,1,14,4,33,2,5,1,14,2,1,19,11,1,6,1,28,4,1,23,}, + {1,84,28,2,1,2,28,1,1,9,14,1,30,1,13,7,14,1,13,2,1,8,11,1,30,1,28,2,14,1,5,1,14,2,5,1,14,7,33,1,14,4,33,1,14,4,33,1,14,2,33,2,14,2,5,1,14,2,13,1,14,3,33,1,14,20,5,1,14,6,30,1,28,1,30,22,13,1,30,5,13,1,30,4,28,59,30,22,28,2,30,17,28,1,30,4,28,18,30,1,28,1,30,2,13,2,30,2,13,2,14,1,5,1,14,6,1,8,11,1,14,1,33,1,14,8,33,1,14,1,33,2,14,4,33,1,14,38,33,1,14,3,5,1,14,20,13,2,30,2,13,1,30,2,28,1,13,1,33,1,13,1,28,1,13,1,30,4,28,1,30,2,28,1,30,2,28,1,13,1,14,3,13,6,30,1,13,2,14,40,33,1,13,1,14,1,33,1,13,1,14,1,13,1,30,2,13,2,28,9,30,1,28,1,30,2,13,1,14,21,33,2,14,1,33,1,14,1,33,1,13,2,30,1,13,2,14,1,33,1,13,1,33,2,14,7,33,2,14,3,13,2,33,1,14,1,33,4,14,2,1,19,11,1,8,1,28,3,1,1,28,4,1,21,}, + {1,87,28,1,6,1,1,9,33,1,30,1,13,2,30,2,13,1,33,2,13,1,28,1,30,1,1,8,11,1,30,1,28,2,14,1,5,1,33,1,14,9,33,1,14,3,33,2,14,10,5,1,33,1,14,2,13,1,33,2,14,1,33,1,14,7,5,2,14,10,33,1,5,1,14,6,13,1,28,1,30,14,13,1,30,7,13,1,30,5,13,1,30,3,28,60,30,22,28,1,30,22,28,19,30,1,28,1,13,1,30,2,13,1,30,2,13,2,14,1,5,1,14,1,5,1,14,4,1,8,14,2,33,2,14,5,5,1,14,1,13,2,14,6,33,1,14,11,5,2,14,25,33,1,14,22,13,4,30,2,13,1,30,3,33,2,13,1,30,1,13,1,30,4,28,1,30,2,28,2,30,2,13,3,14,1,13,6,30,1,13,1,33,1,14,40,33,1,13,1,14,2,13,1,14,1,13,1,30,2,13,2,28,11,30,1,13,2,14,19,33,1,14,1,33,2,14,1,33,1,14,1,13,2,30,1,13,1,6,1,14,2,33,1,14,2,5,1,14,11,33,2,14,2,13,1,33,2,14,2,1,19,11,1,9,1,28,10,1,21,}, + {1,86,28,2,9,1,1,8,11,1,33,1,30,1,13,3,28,1,13,1,14,1,13,1,30,2,13,1,1,8,11,1,30,1,28,1,30,1,14,1,5,1,33,1,14,9,33,1,14,3,33,2,14,3,33,1,14,7,5,1,14,2,33,1,14,1,33,1,14,1,33,1,14,8,5,1,14,14,33,1,5,1,14,2,13,1,28,1,30,10,13,1,30,3,13,1,30,18,28,59,30,22,28,1,30,2,28,1,30,14,28,1,30,1,28,1,30,2,28,2,29,1,28,16,30,2,13,1,30,2,13,1,30,2,13,2,14,5,33,1,14,2,1,8,14,1,5,1,14,5,5,2,14,2,33,1,14,1,33,2,14,4,33,1,14,60,33,1,13,1,30,1,13,2,30,1,13,2,30,2,13,1,14,2,13,2,30,2,28,1,30,1,13,1,30,2,28,3,30,3,13,1,30,1,13,8,14,42,13,1,33,1,14,1,33,3,13,1,30,1,28,1,13,2,28,3,30,1,28,1,30,3,28,1,30,1,28,1,30,1,13,1,14,1,33,1,14,21,33,1,14,1,33,1,14,1,13,2,30,1,13,1,30,1,14,17,33,4,5,1,14,1,11,1,1,20,9,1,28,3,1,1,28,4,1,25,}, + {1,85,28,3,12,1,1,8,14,2,13,2,14,2,13,2,14,1,13,1,30,1,13,1,14,1,1,8,14,1,28,2,30,1,14,2,33,1,14,13,33,2,14,3,33,2,14,32,33,1,14,9,30,1,28,1,30,8,13,3,30,2,13,2,30,16,28,56,30,26,28,1,30,2,28,1,30,16,28,22,13,1,30,1,13,1,30,1,28,1,30,3,13,2,14,7,1,9,14,8,5,1,14,4,33,2,14,66,13,2,14,1,13,3,30,3,28,1,13,1,33,1,13,1,30,2,28,2,30,2,13,1,28,5,13,3,30,1,13,4,30,1,13,3,14,36,5,1,14,5,13,1,33,1,14,2,33,1,13,1,30,3,13,1,30,1,28,1,30,1,28,3,30,4,13,1,30,2,14,2,33,1,14,22,33,2,14,1,13,2,30,1,13,2,14,1,33,2,14,2,33,3,14,3,5,1,14,5,33,1,5,1,14,2,1,21,16,1,28,4,1,2,28,4,1,25,}, + {1,78,28,2,1,5,28,3,11,1,1,8,14,2,13,1,33,1,14,2,33,2,13,1,30,1,13,3,1,7,11,1,15,1,28,2,30,1,14,10,5,1,14,10,33,3,14,1,33,1,14,9,33,1,14,19,33,1,14,3,33,1,14,1,33,1,14,1,33,2,13,1,30,9,13,3,30,2,13,2,30,17,28,55,30,12,13,1,30,13,28,1,30,2,28,1,30,16,28,22,13,2,30,2,28,1,30,3,13,2,14,5,33,2,1,9,14,7,5,1,14,4,33,2,14,65,13,2,30,2,13,1,30,1,13,5,30,3,13,1,30,1,28,2,30,1,13,1,30,1,13,1,28,5,30,1,13,6,30,2,13,2,14,3,5,2,14,31,5,1,14,6,13,1,14,1,13,1,14,1,33,1,13,1,30,3,13,1,28,5,30,4,28,1,13,1,30,1,28,1,13,2,6,1,14,21,33,3,14,2,13,1,30,1,13,2,14,1,33,3,5,1,33,2,13,1,14,6,5,2,14,2,1,22,9,1,28,6,1,2,28,1,1,1,28,3,1,24,}, + {1,77,28,4,1,4,28,3,11,1,1,8,14,1,33,2,13,1,14,2,33,2,13,1,30,1,33,1,13,2,1,8,15,1,28,2,30,1,14,21,33,2,14,1,33,2,14,29,33,1,14,5,33,1,14,1,33,2,13,1,30,9,13,3,30,14,13,2,30,4,28,56,30,29,28,1,30,16,28,22,30,1,13,1,28,1,30,5,13,2,14,7,1,9,14,5,5,1,14,3,33,1,14,69,13,2,28,1,30,1,13,3,33,1,13,3,28,1,30,1,13,1,30,1,28,3,30,2,28,1,13,1,28,6,30,1,13,1,14,1,13,2,33,1,13,2,14,2,13,1,14,2,5,2,33,1,14,30,33,1,14,3,5,1,14,4,13,1,14,1,13,3,30,1,13,1,30,1,28,5,30,5,13,1,30,1,28,1,13,2,6,1,14,20,33,2,14,1,5,1,14,3,30,1,13,3,14,2,33,1,14,1,13,2,33,1,14,1,5,1,33,2,5,1,14,2,11,1,1,21,11,1,9,1,28,3,1,3,28,2,1,3,28,2,1,26,}, + {1,76,28,2,1,1,28,2,1,2,28,1,1,2,28,2,1,9,16,1,13,1,33,1,13,1,14,2,6,1,33,1,13,5,1,7,11,1,29,1,28,2,13,1,14,10,33,1,14,1,33,2,14,2,33,1,14,4,33,1,14,9,5,1,14,1,33,2,14,7,33,1,14,18,33,2,14,2,13,1,30,9,13,3,30,1,13,1,30,13,13,1,30,2,28,56,30,3,28,2,30,3,28,1,30,20,28,1,30,2,28,2,30,14,28,1,30,2,28,19,30,7,13,1,6,1,33,1,13,1,14,1,33,1,14,1,33,1,14,2,1,9,14,1,33,2,14,1,5,2,14,3,33,2,14,3,33,1,14,64,30,1,28,1,30,2,13,4,30,1,13,2,30,1,28,1,30,1,28,6,30,1,13,1,28,5,30,1,13,2,14,1,13,1,30,1,13,2,33,1,5,1,14,1,13,1,33,1,14,3,5,1,14,34,5,1,14,4,13,1,14,1,13,3,30,2,28,1,30,2,28,4,30,2,13,2,30,2,28,1,13,2,6,1,14,17,33,1,14,2,33,2,14,3,13,3,33,1,13,2,14,2,33,1,14,1,13,2,14,1,33,2,5,1,14,2,1,22,11,1,10,1,28,5,1,5,28,2,1,1,28,2,1,26,}, + {1,63,28,2,1,2,28,1,1,2,28,2,1,3,28,2,1,4,28,2,1,2,28,2,29,1,1,9,14,1,13,1,14,1,13,1,14,1,13,2,33,1,30,1,13,2,30,1,13,1,1,8,28,3,13,1,14,4,5,1,14,5,33,1,14,1,33,2,14,2,33,1,14,4,33,1,14,9,5,1,14,5,33,2,14,3,33,1,14,18,33,2,14,2,13,1,30,9,13,3,30,1,13,1,30,15,28,57,30,3,28,2,30,3,28,1,30,20,28,1,30,2,28,2,30,14,28,1,30,2,28,19,30,4,28,2,30,1,13,2,33,2,14,1,33,2,14,3,1,9,14,1,33,2,14,1,33,1,5,1,14,3,33,1,14,4,33,1,14,63,13,2,30,1,13,2,14,1,13,1,30,1,13,1,30,1,13,1,6,1,13,1,28,2,30,1,28,5,30,3,28,4,30,1,13,2,30,5,33,1,14,2,13,1,33,1,14,3,5,1,14,39,13,3,30,1,13,1,30,1,28,4,30,1,28,4,30,1,13,1,30,1,28,3,13,3,14,17,33,1,14,2,33,1,13,1,14,1,33,1,13,6,14,3,33,1,14,1,13,2,14,3,1,23,11,1,7,1,28,8,1,4,28,1,1,30,}, + {1,61,28,4,1,1,28,2,1,2,28,2,1,3,28,4,1,1,28,7,7,1,1,9,13,1,33,2,14,1,13,1,30,1,14,1,33,1,30,1,13,2,28,1,9,1,1,4,11,1,1,3,30,1,28,2,13,1,14,4,5,1,14,5,33,1,14,1,33,2,14,1,33,2,14,14,5,1,14,6,33,1,14,22,33,1,14,4,30,10,13,2,30,1,13,1,30,3,13,1,30,11,28,57,30,3,28,2,30,43,28,1,30,2,28,19,30,2,28,2,30,2,13,4,33,1,14,1,33,2,14,1,33,1,14,1,1,9,14,1,33,2,14,6,33,1,14,4,33,1,14,62,13,5,14,2,13,2,14,1,13,3,30,1,28,1,30,1,28,6,30,4,28,1,30,1,28,1,30,1,13,2,30,3,28,1,30,1,14,3,13,1,33,1,14,12,33,1,14,22,5,1,14,6,33,2,13,2,28,1,13,2,28,1,30,1,28,7,30,1,13,1,30,1,28,2,30,1,13,3,14,23,33,1,6,1,14,1,13,1,6,2,13,1,14,1,33,4,14,2,1,24,17,1,6,1,28,3,1,2,28,4,1,36,}, + {1,61,28,2,1,2,28,3,1,2,28,2,1,2,28,6,29,1,7,1,9,1,16,1,12,1,17,1,11,1,1,9,11,1,13,1,33,2,14,1,13,1,30,1,13,1,14,1,13,3,30,1,14,1,1,4,11,1,1,3,30,1,28,2,14,1,33,2,14,8,33,2,14,3,33,2,14,7,5,1,14,2,33,1,13,1,14,31,5,1,33,1,14,4,13,1,30,12,13,3,30,13,28,58,30,12,13,6,30,1,13,1,30,13,13,1,30,7,13,3,30,1,13,1,30,4,28,20,30,2,28,1,30,1,13,5,14,4,5,1,33,1,14,1,1,9,14,1,33,1,14,6,33,1,14,5,33,1,14,62,13,1,14,2,33,1,13,3,33,1,14,2,13,1,33,1,14,1,13,1,28,2,30,4,28,3,30,3,28,1,30,1,28,1,13,1,14,1,13,1,30,2,13,1,30,1,13,1,14,1,33,1,14,1,33,1,14,2,33,1,14,12,33,1,14,28,33,1,14,2,28,1,30,2,28,1,30,1,28,4,30,2,28,1,30,3,28,1,30,1,13,4,14,27,33,1,13,2,14,2,5,1,14,1,11,1,1,23,11,1,9,1,28,3,1,1,28,7,1,37,}, + {1,61,28,8,1,2,28,4,6,1,9,1,17,1,11,1,1,17,14,1,13,1,14,1,33,1,14,2,13,2,14,2,13,2,30,1,9,1,1,1,11,2,1,5,29,1,28,2,14,2,33,1,14,3,5,1,14,7,33,3,14,3,33,2,14,6,33,1,13,1,14,9,33,1,14,20,5,2,14,5,13,1,30,23,28,1,30,6,28,55,30,13,13,2,30,1,13,3,30,1,13,1,30,13,13,1,30,7,13,1,30,1,13,1,30,1,13,1,30,6,28,17,30,1,13,1,30,1,28,1,30,1,13,1,14,1,13,1,30,1,6,1,13,1,14,1,5,1,14,2,33,1,14,1,1,9,14,1,33,1,5,1,14,2,33,4,14,3,13,1,14,1,13,2,14,2,5,1,14,3,33,1,14,9,5,1,14,45,33,3,30,2,13,1,33,1,14,2,33,1,13,1,14,1,13,1,28,1,30,1,28,11,30,1,28,1,13,1,14,1,13,1,30,1,13,3,14,1,13,2,14,2,33,1,14,42,33,1,5,1,14,1,13,1,28,1,30,2,28,1,30,1,28,4,30,1,28,2,30,2,13,1,30,2,13,4,14,13,5,1,14,2,33,1,14,6,5,1,14,1,5,1,14,1,33,1,13,1,14,2,1,25,11,1,7,1,28,3,1,3,28,7,1,37,}, + {1,61,28,11,9,1,11,1,1,22,14,1,13,1,14,1,13,1,14,1,33,2,14,2,13,2,33,1,30,1,14,1,1,1,11,2,1,5,28,3,14,2,33,1,14,3,33,1,14,7,33,3,14,3,33,2,14,6,33,2,14,9,33,1,14,20,33,2,14,5,13,1,30,3,28,1,30,19,28,1,30,5,28,1,30,1,28,55,30,13,13,1,30,1,13,3,30,1,13,1,30,13,13,1,30,7,13,1,30,1,13,1,30,1,13,1,30,4,28,1,30,1,28,17,30,1,13,2,28,2,13,1,14,1,13,4,14,1,33,1,14,1,5,2,14,1,1,9,14,1,33,2,14,2,33,3,13,1,33,1,14,2,13,4,14,6,5,1,14,4,5,1,14,33,33,1,14,17,13,1,14,1,13,2,33,1,14,1,13,1,14,2,13,1,33,1,13,1,30,2,28,11,30,1,28,1,13,2,33,1,13,2,30,1,33,1,14,1,13,2,14,2,33,2,14,1,33,1,14,42,13,1,30,1,13,1,30,2,28,2,30,1,28,2,30,1,28,2,30,1,28,1,13,1,28,2,30,1,13,3,14,19,33,1,14,3,33,3,14,3,1,25,16,1,28,11,1,1,28,4,1,37,}, + {1,66,28,3,7,1,11,1,1,25,14,1,33,2,13,2,14,2,13,1,33,1,13,2,14,1,13,1,14,1,1,1,11,1,1,6,28,3,14,1,33,2,14,2,5,1,14,2,33,3,14,7,33,3,14,3,33,2,14,4,33,1,14,8,33,1,14,15,33,1,14,4,33,2,14,5,13,1,30,3,28,1,30,5,28,1,30,19,28,5,30,1,28,41,30,3,28,8,30,13,13,1,30,17,13,1,30,4,13,1,30,3,13,3,30,6,28,19,30,2,13,1,28,2,30,1,13,5,14,1,33,3,14,1,1,10,14,2,13,3,33,1,14,2,13,6,14,1,33,2,14,9,5,3,14,24,33,1,14,7,33,1,14,16,13,2,14,1,13,1,14,1,33,1,13,1,30,1,33,2,13,1,33,1,14,1,30,1,13,1,30,1,28,4,30,1,28,4,30,1,28,1,30,3,14,2,13,2,33,1,14,1,33,1,13,1,14,19,33,1,14,23,33,1,14,2,13,3,30,1,13,1,30,2,28,1,30,1,13,1,30,1,28,1,30,1,28,3,30,2,28,3,30,2,13,1,14,19,13,1,33,1,5,1,14,3,1,26,11,1,8,1,28,7,1,1,28,5,1,2,28,1,1,39,}, + {1,64,28,3,9,1,11,1,1,27,14,6,13,1,6,1,13,3,14,1,13,1,14,1,1,1,12,1,1,3,12,1,11,1,1,1,28,3,14,1,13,1,33,1,14,2,5,2,14,1,33,3,14,7,33,3,14,1,33,1,14,1,33,1,14,4,33,1,5,1,14,5,5,1,14,2,33,1,14,13,5,1,14,1,33,1,14,4,33,1,14,6,13,1,30,3,28,2,30,16,28,1,30,7,28,5,30,1,28,41,30,3,28,7,30,14,13,1,30,17,13,1,30,4,13,1,30,3,13,2,30,7,28,19,30,2,13,1,28,2,30,1,13,1,30,2,14,1,13,3,14,1,11,1,1,11,14,2,13,1,30,1,13,1,33,1,14,2,13,4,14,2,33,3,14,1,5,1,14,12,5,3,14,19,33,1,14,24,6,1,33,2,14,1,13,3,30,1,13,1,33,1,14,2,13,3,28,5,30,2,28,5,30,2,13,1,14,2,13,2,33,1,14,1,33,1,13,1,14,19,33,1,14,23,33,1,14,2,13,5,30,4,28,1,30,3,28,3,30,1,13,1,30,2,28,1,30,2,13,1,14,13,5,1,14,2,33,2,14,3,11,1,1,26,11,1,16,1,28,4,1,1,28,5,1,1,28,3,1,44,}, + {1,63,28,2,9,1,1,30,14,1,5,1,14,4,13,5,14,3,1,5,11,1,1,1,11,1,28,3,13,2,33,1,14,1,5,1,14,3,33,2,14,5,5,1,14,2,33,2,14,2,33,1,14,5,33,1,5,1,33,1,14,22,5,1,14,13,13,1,30,3,28,1,30,26,28,3,30,1,28,41,30,4,28,8,30,31,13,1,30,7,13,3,30,7,28,19,30,2,13,1,30,1,28,2,13,1,30,2,14,1,13,2,14,1,1,13,13,3,28,1,13,1,14,1,13,1,33,1,30,2,13,2,33,3,14,15,33,1,14,5,33,1,14,41,6,1,33,1,13,5,30,1,13,1,33,1,13,1,14,1,13,3,28,13,30,1,13,1,14,1,13,4,14,1,13,2,14,3,33,2,14,14,33,1,14,23,13,1,33,1,14,1,13,1,30,1,13,3,30,3,13,1,28,1,13,1,30,2,28,3,30,1,13,1,30,3,28,1,30,1,13,1,14,13,5,2,14,3,1,28,17,1,6,1,28,3,1,2,28,1,1,1,28,5,1,48,}, + {1,61,28,2,6,1,11,1,1,31,14,6,33,1,13,5,14,1,11,1,1,2,11,1,1,3,14,1,13,1,28,3,30,1,13,1,14,1,33,2,14,10,5,1,14,2,33,2,14,7,33,2,14,1,33,2,14,6,5,1,14,28,13,1,30,15,13,1,30,18,28,38,30,1,28,2,30,3,28,8,30,17,13,1,30,13,13,4,30,5,13,7,30,3,28,6,30,1,28,9,30,2,28,1,30,4,28,2,30,2,13,3,14,1,1,13,14,1,13,2,30,1,28,1,30,1,13,3,30,3,13,1,14,15,33,1,5,1,33,1,14,1,1,4,14,1,5,2,14,40,13,4,33,1,13,3,30,1,13,1,6,1,13,1,30,1,13,1,30,1,28,13,30,1,13,2,30,2,13,5,14,1,33,1,14,1,33,2,14,32,33,1,14,3,5,1,14,1,33,1,13,1,14,1,13,1,30,1,14,1,13,2,30,4,28,1,13,1,28,1,30,1,28,3,30,5,28,2,13,1,14,9,5,2,14,4,1,28,11,1,10,1,28,6,1,1,28,3,1,53,}, + {1,60,28,2,9,1,1,32,5,1,33,1,14,1,5,2,14,2,33,2,14,1,13,2,30,1,13,1,1,3,11,2,1,2,14,1,13,1,28,2,30,2,13,1,14,2,33,1,14,4,33,1,14,8,33,2,14,18,5,1,14,28,13,1,30,1,28,2,30,14,13,2,30,4,13,1,30,2,28,1,30,4,28,1,30,4,28,39,30,3,28,8,30,17,13,1,30,6,13,2,30,5,13,3,30,6,13,2,30,1,13,5,30,2,28,6,30,1,28,9,30,2,28,1,30,1,13,1,30,2,28,2,30,2,13,1,33,1,14,1,1,14,33,1,13,1,30,2,28,1,30,1,13,3,30,2,13,2,14,1,33,2,5,1,14,11,5,1,33,1,14,1,1,6,14,42,33,1,14,1,30,1,33,1,14,2,13,2,30,1,13,2,14,1,30,4,28,12,30,1,13,1,33,1,13,1,30,1,13,1,14,1,33,2,14,1,13,1,14,2,33,1,14,33,33,1,14,3,5,1,14,2,13,7,30,7,28,4,30,5,28,2,13,1,14,5,5,2,14,3,1,30,11,1,9,1,28,8,1,3,28,2,1,2,28,2,1,49,}, + {1,59,28,2,16,1,1,31,14,1,5,1,33,1,5,1,14,5,5,1,14,1,33,1,14,2,13,1,14,1,1,7,14,1,13,1,28,2,30,3,13,2,33,1,14,2,33,1,14,21,13,1,14,4,5,1,14,3,33,1,14,29,13,1,28,2,30,8,13,2,30,4,13,2,30,7,28,2,30,3,28,1,30,4,28,40,30,2,28,8,30,24,13,2,30,6,13,3,30,5,13,2,30,1,13,1,30,6,28,6,30,1,28,12,30,1,13,1,30,2,28,2,30,2,9,1,1,15,14,1,33,1,13,2,30,1,28,1,30,2,13,3,30,1,13,2,14,2,33,2,14,13,1,8,14,43,6,1,14,4,13,3,30,1,13,1,30,1,28,1,30,2,28,4,30,1,28,7,30,1,13,3,30,1,13,1,33,1,13,1,33,1,14,1,13,1,14,40,5,1,14,2,13,7,30,2,13,1,30,5,28,3,30,5,28,1,30,1,13,1,14,6,1,31,11,1,9,1,29,1,28,3,1,4,28,5,1,1,28,2,1,2,28,2,1,49,}, + {1,54,28,1,1,3,28,2,12,1,1,21,14,14,5,1,14,7,33,2,14,3,1,6,17,1,33,1,30,1,28,2,30,1,13,1,30,3,33,2,14,1,33,1,14,6,5,1,14,8,5,1,14,5,13,1,14,4,33,1,14,3,33,1,14,29,13,1,30,1,28,1,30,3,13,2,30,1,13,9,30,8,28,2,30,3,28,1,30,1,28,37,30,1,28,4,30,2,28,11,30,11,28,2,30,35,28,6,29,1,28,12,30,1,13,1,30,1,28,1,30,1,28,1,13,1,14,1,1,15,14,1,13,5,28,1,13,1,28,1,30,2,13,2,14,1,13,1,33,1,14,1,33,2,14,3,5,1,14,3,33,2,14,1,5,1,14,2,1,9,14,20,33,1,14,21,13,1,14,4,33,1,14,1,13,1,30,4,13,1,30,1,28,4,30,1,28,2,30,1,28,4,30,1,13,4,14,1,13,3,14,1,13,1,14,40,5,1,14,2,13,1,30,1,13,4,30,3,13,1,30,2,28,1,30,4,28,1,30,5,28,1,14,4,1,32,11,1,9,1,29,1,28,3,1,10,28,2,1,1,28,1,1,54,}, + {1,54,28,1,1,2,28,2,16,1,1,17,14,3,33,1,14,1,33,1,13,1,33,1,13,2,14,1,13,1,33,2,14,4,33,1,14,8,33,1,14,2,33,1,14,1,1,2,11,1,1,1,11,1,9,1,27,1,33,1,30,1,28,2,30,1,13,1,30,3,13,2,14,8,5,1,14,7,5,2,14,5,13,1,14,2,5,1,14,27,33,1,14,7,13,1,30,8,13,5,30,1,13,4,30,5,28,1,30,1,28,2,30,3,28,1,30,1,28,37,30,1,28,5,30,1,28,14,30,5,28,1,30,2,28,3,30,23,28,1,30,10,28,17,30,1,28,2,30,1,28,2,30,1,28,1,14,1,1,14,14,1,33,1,13,6,30,2,28,1,30,2,13,2,14,1,13,1,33,1,14,2,33,1,14,8,33,1,14,2,33,1,14,1,1,9,14,20,33,1,14,21,13,1,14,3,33,1,14,1,33,1,13,1,30,4,13,1,30,1,28,3,30,1,28,3,30,1,28,4,30,1,13,5,30,1,13,1,14,2,33,1,14,14,33,1,14,24,5,2,14,2,13,1,30,1,13,4,30,1,13,1,28,1,30,3,28,6,30,1,13,1,30,1,14,3,1,33,11,1,9,1,29,1,28,6,1,9,28,3,1,56,}, + {1,53,28,5,9,1,1,15,14,2,5,1,33,1,14,1,13,2,14,1,33,1,13,1,33,1,13,4,14,6,33,1,14,4,33,1,14,3,33,2,13,2,14,1,1,2,11,2,15,1,26,1,9,1,14,1,6,1,28,2,30,4,13,2,30,1,33,1,14,22,33,1,14,2,5,1,14,3,33,2,14,31,13,1,30,6,28,1,30,2,13,3,30,1,13,2,30,1,13,1,30,2,13,1,30,4,28,2,30,3,28,1,30,2,28,35,30,1,28,5,30,1,28,15,30,5,28,1,30,1,28,4,30,34,28,17,30,1,28,2,30,1,28,2,13,1,9,1,1,14,14,1,30,1,13,2,30,1,13,2,33,1,13,1,30,2,28,1,30,1,13,5,14,7,33,1,14,4,33,1,14,1,33,1,13,1,14,1,1,9,14,20,33,1,14,21,33,1,14,3,33,1,14,1,33,1,13,1,30,3,28,1,13,1,30,1,28,3,30,1,28,3,30,1,28,4,13,7,14,18,33,1,14,22,5,1,33,1,14,3,13,2,30,1,13,6,28,1,13,2,30,1,28,3,30,1,13,2,14,2,11,1,1,33,11,1,9,1,29,1,28,9,1,9,28,2,1,57,}, + {1,52,28,5,6,1,1,14,14,2,33,1,5,2,33,1,14,1,13,2,14,1,13,2,14,2,13,3,14,5,33,1,14,5,33,1,14,4,13,2,33,1,14,1,1,5,11,1,28,1,11,1,13,1,28,2,13,1,30,2,28,1,30,1,13,2,33,1,5,1,14,10,5,1,14,8,33,1,14,2,5,1,14,1,5,1,14,3,13,2,14,28,5,1,14,2,13,1,30,10,13,1,30,1,13,4,30,4,13,1,30,3,28,3,30,1,28,2,30,1,28,36,30,1,28,5,30,1,28,14,30,4,28,8,30,34,28,20,30,1,28,1,30,1,14,1,1,13,14,2,30,1,28,1,13,1,30,2,13,3,30,3,28,1,30,1,13,5,14,7,33,1,14,6,33,1,13,1,14,1,1,9,14,1,33,1,14,47,13,1,30,3,28,1,13,1,30,1,28,2,30,1,28,4,30,1,28,4,13,1,30,1,13,1,30,2,13,2,14,33,5,1,14,12,33,1,13,4,30,1,13,3,30,1,13,1,14,3,9,2,1,6,11,2,1,28,17,1,8,1,28,5,1,1,28,6,1,69,}, + {1,52,28,5,11,1,1,12,14,2,33,1,14,5,13,3,14,2,33,1,13,1,14,1,13,2,33,1,14,4,33,3,14,1,33,2,14,6,13,3,14,1,1,6,13,1,1,1,6,1,28,2,13,1,30,1,28,1,30,2,13,2,14,11,5,2,14,4,5,1,14,3,33,1,14,38,5,1,14,3,30,10,13,1,30,1,13,1,30,2,13,1,28,1,13,1,30,7,28,2,30,1,28,45,30,1,28,14,30,4,28,7,30,5,28,1,30,29,28,21,13,1,14,1,1,13,14,3,13,1,30,2,13,3,30,1,13,1,30,1,28,1,30,4,13,2,14,8,33,3,14,5,33,1,13,1,14,1,1,9,11,1,5,1,14,42,5,1,14,4,13,4,30,2,28,2,30,1,13,1,28,4,30,1,28,1,30,1,28,2,30,2,13,1,30,2,13,2,33,1,14,2,5,1,14,40,5,1,33,2,13,3,14,1,13,1,14,4,1,4,11,1,12,1,1,5,11,2,1,25,11,1,16,1,6,1,28,4,1,7,28,1,1,1,28,2,1,69,}, + {1,51,28,5,16,1,1,11,11,1,14,1,33,1,14,4,33,1,14,2,13,2,14,3,33,1,6,1,14,1,13,2,14,5,33,1,14,2,33,3,14,3,33,1,14,3,13,2,14,1,1,6,14,1,11,1,30,1,28,2,13,1,28,1,30,2,13,3,14,16,5,2,14,10,33,2,14,32,33,1,14,1,13,1,30,9,13,1,30,6,13,1,30,6,28,65,30,1,28,10,30,2,28,2,30,3,28,1,30,26,28,21,16,1,1,13,13,4,30,1,28,2,13,6,30,1,13,1,30,1,28,1,30,1,13,1,14,1,33,2,14,3,5,1,14,2,33,1,14,1,33,1,14,5,33,2,14,2,1,9,14,18,5,1,14,25,33,2,14,2,13,2,14,2,30,2,28,1,30,1,28,1,30,1,28,9,30,1,28,1,13,1,30,2,13,2,33,1,14,1,33,2,14,37,5,2,14,6,11,1,1,17,11,2,1,22,17,1,9,1,29,1,28,4,1,1,28,3,1,7,28,2,1,70,}, + {1,50,28,5,29,1,1,11,14,2,5,2,14,4,33,1,14,1,33,2,13,1,33,5,14,2,13,1,14,8,33,1,14,5,33,2,14,2,13,1,30,1,14,1,1,1,11,2,15,1,11,1,1,1,9,1,25,1,29,1,28,2,14,1,30,1,28,1,30,2,13,2,14,12,5,1,14,3,33,1,5,1,14,1,5,1,14,2,33,2,14,4,33,2,14,1,33,2,14,24,33,2,14,2,33,2,13,2,30,9,13,1,30,5,13,1,30,7,28,38,30,5,13,1,30,1,13,5,30,4,28,2,30,4,13,36,30,1,13,2,30,1,13,2,30,1,13,2,30,1,13,1,30,3,28,20,13,1,1,13,14,1,13,2,30,1,13,1,30,1,28,1,30,1,13,5,30,4,28,1,30,1,13,1,14,1,33,2,14,3,5,1,14,14,1,9,14,44,33,2,13,1,33,2,13,1,14,1,13,2,30,1,28,1,30,2,28,5,30,2,28,2,30,2,28,1,30,2,13,3,33,1,14,1,33,2,14,36,11,1,1,46,11,1,9,1,29,1,28,12,1,7,28,2,1,70,}, + {1,50,28,5,12,1,1,10,14,3,5,1,14,5,33,4,13,3,33,2,14,3,33,1,14,7,33,2,14,3,33,2,5,1,14,1,5,1,14,1,13,1,30,1,14,1,1,1,11,3,15,1,11,1,1,1,11,1,30,1,28,1,30,1,13,1,30,1,28,1,30,2,13,1,14,2,5,1,14,6,5,4,33,1,14,3,5,2,14,1,5,1,14,2,13,2,33,2,14,2,33,2,14,1,33,2,14,25,33,1,14,2,13,2,30,1,13,1,30,24,28,2,30,7,13,1,30,1,13,4,9,1,13,3,9,2,14,12,9,1,14,3,11,1,1,15,11,2,1,43,11,8,14,5,13,4,30,2,13,2,30,2,13,2,30,1,28,4,9,1,1,12,14,1,13,1,33,1,14,1,13,1,30,1,13,1,30,1,28,1,30,1,13,5,30,3,13,1,30,1,13,2,14,1,33,1,14,19,1,9,14,1,33,1,14,1,5,3,14,37,33,5,14,2,13,3,30,1,28,1,30,2,13,1,28,8,30,2,28,2,30,1,13,4,14,1,33,1,14,2,5,2,14,9,5,3,14,11,11,1,1,52,11,1,16,1,7,1,28,5,1,3,28,4,1,10,28,3,1,70,}, + {1,50,28,4,29,1,1,11,14,7,33,1,14,1,33,1,14,3,13,1,14,1,33,1,14,1,33,1,14,3,33,1,14,7,33,1,13,1,14,2,13,1,6,1,14,2,33,1,14,1,33,2,13,1,14,1,1,4,11,1,12,1,1,2,30,1,28,1,30,1,13,2,30,3,6,1,14,2,5,1,14,19,33,1,13,3,33,1,14,2,33,2,14,1,13,1,14,26,33,1,14,2,13,4,30,7,13,4,14,1,16,1,14,2,16,1,14,4,11,7,1,1,11,1,1,28,11,1,1,90,11,1,14,1,13,2,1,12,14,2,13,1,33,1,14,1,13,1,30,1,13,1,30,1,28,1,30,1,13,1,30,2,13,2,30,1,13,1,30,1,13,2,14,3,33,1,14,16,5,1,14,1,5,1,1,10,14,9,5,1,14,5,33,1,5,1,14,1,5,1,14,10,5,1,14,4,33,1,14,11,33,1,14,2,30,3,13,1,28,2,30,2,28,12,30,1,13,1,30,2,13,1,14,1,33,3,14,15,11,1,1,58,11,1,16,1,7,1,28,8,1,9,28,2,1,7,28,2,1,71,}, + {1,51,28,3,12,1,1,10,14,9,33,2,14,1,13,1,30,1,33,1,14,3,13,1,33,2,14,7,5,1,14,2,33,2,14,1,13,2,14,2,13,3,33,1,13,1,11,1,1,4,11,1,27,1,11,1,1,1,28,2,30,1,14,4,13,1,30,1,33,1,14,20,33,1,13,1,14,2,13,1,33,1,14,2,5,1,14,1,13,2,14,3,5,2,14,8,5,3,14,1,5,4,14,15,11,3,1,28,11,1,1,14,11,1,1,26,11,2,1,85,14,1,5,1,33,3,13,2,30,3,28,2,30,3,13,1,33,1,30,3,13,1,14,3,13,2,14,2,5,1,14,8,33,1,14,1,33,1,14,4,33,1,14,1,1,18,11,1,14,24,33,2,14,1,33,1,14,3,5,1,14,4,33,1,14,1,13,1,30,3,13,1,30,1,28,2,30,1,28,3,30,3,28,5,30,1,13,2,6,1,13,1,14,8,1,66,11,1,17,1,9,1,6,1,28,4,1,3,28,3,1,11,28,3,1,79,}, + {1,51,28,3,1,10,14,10,33,1,14,3,13,1,33,1,14,3,33,1,14,7,33,1,14,4,33,1,14,2,13,1,33,1,14,1,13,2,28,1,30,1,13,1,28,1,11,1,1,4,15,1,26,1,1,1,11,1,28,2,30,1,14,5,13,2,33,1,14,3,5,1,14,4,5,1,14,3,5,3,14,1,33,1,14,1,33,2,13,1,14,2,33,2,14,2,33,1,14,1,13,3,14,6,5,1,14,13,1,38,11,1,1,29,11,1,1,105,14,3,33,2,13,1,30,5,28,2,30,1,13,1,30,1,13,1,14,1,13,1,30,2,13,1,33,1,14,2,33,1,13,1,14,2,5,2,14,7,33,1,14,1,33,1,14,3,5,1,33,1,14,1,1,46,11,1,1,1,11,1,14,10,9,1,16,1,14,6,15,1,9,1,14,2,11,2,15,1,9,1,11,1,15,1,11,1,1,61,12,1,1,11,11,1,17,1,9,1,7,1,28,6,1,6,28,3,1,2,28,4,1,5,28,3,1,79,}, + {1,51,28,2,9,1,1,10,14,12,13,2,14,4,13,2,14,15,33,3,13,2,30,1,13,1,30,2,14,1,1,7,14,1,28,3,13,1,14,2,33,1,5,1,14,1,13,2,14,1,33,1,14,17,13,1,33,1,14,1,33,2,14,3,33,2,13,2,33,1,5,1,14,7,11,1,1,79,11,1,1,104,14,1,13,1,14,1,33,1,13,4,30,2,13,1,30,1,28,1,30,2,13,1,30,2,13,5,33,1,14,1,5,1,14,1,13,1,14,3,5,2,14,2,33,2,14,2,33,1,14,1,13,1,14,1,33,1,14,1,33,1,14,2,1,68,11,1,1,2,11,1,1,2,15,1,1,1,11,2,1,60,11,2,1,5,11,2,12,1,9,1,6,1,28,7,1,11,28,2,1,2,28,4,1,87,}, + {1,52,28,1,11,1,1,9,14,13,30,2,14,1,30,1,33,1,14,1,13,2,33,1,14,7,33,1,14,5,33,2,14,2,13,3,30,3,11,1,1,1,9,1,11,1,1,4,9,1,28,3,13,2,14,1,33,1,14,2,13,2,14,18,33,1,13,1,14,1,33,1,5,1,14,8,11,1,1,192,14,1,13,2,33,1,13,6,30,2,28,2,30,1,13,2,30,3,13,4,33,1,5,1,14,2,33,1,13,1,14,2,5,1,14,3,13,1,33,2,14,3,13,1,14,1,13,1,14,1,33,1,14,2,1,64,17,1,1,3,11,1,1,2,11,1,1,2,27,1,11,1,1,62,11,2,12,2,16,1,7,1,28,8,1,16,28,2,1,3,28,3,1,87,}, + {1,51,28,1,6,1,1,10,14,13,13,9,14,7,33,1,14,5,13,3,14,2,33,1,13,2,30,2,1,2,9,1,11,1,1,4,13,1,28,2,30,1,13,1,30,1,13,1,14,2,33,1,13,2,14,9,5,1,33,1,5,1,14,10,1,93,17,1,1,2,11,1,1,104,14,1,13,1,30,1,13,6,30,1,13,2,30,1,28,1,30,2,13,1,30,1,13,1,30,1,28,1,13,4,33,1,14,3,33,2,14,2,5,1,14,3,13,1,33,2,5,1,14,2,30,1,13,2,14,1,5,1,33,1,13,1,11,1,1,63,12,1,1,8,11,1,27,1,11,1,1,58,11,2,16,1,7,1,28,11,1,3,28,1,1,15,28,2,1,93,}, + {1,50,28,2,16,1,1,9,14,14,33,1,13,1,30,1,14,1,30,1,13,2,30,1,14,6,13,2,33,1,14,1,5,1,14,3,13,2,33,1,14,3,13,1,30,3,1,7,17,1,13,1,28,2,30,4,13,1,14,1,33,3,14,1,5,4,14,6,11,1,1,79,11,1,1,23,11,1,1,2,11,1,1,2,11,2,1,99,14,1,13,4,33,2,14,2,30,2,13,2,30,3,13,1,33,1,30,2,28,2,30,1,13,1,30,1,13,1,14,3,13,1,14,1,33,2,14,11,13,4,33,3,14,1,1,56,12,1,11,1,1,5,11,1,1,2,11,1,1,1,12,1,1,3,12,1,26,1,15,1,1,51,11,2,16,1,9,1,6,1,28,14,1,1,28,2,1,3,28,1,1,15,28,2,1,93,}, + {1,46,28,2,1,2,28,2,11,1,1,9,14,12,33,1,14,1,33,2,6,1,13,1,30,1,13,1,30,2,14,4,13,2,30,1,13,2,14,1,33,1,14,5,13,3,14,1,13,1,30,1,28,1,30,1,11,1,1,6,15,1,13,1,28,2,30,1,28,1,30,1,28,1,13,1,14,6,11,1,1,87,11,1,1,30,11,2,1,99,13,5,33,2,14,1,33,1,13,2,30,1,13,1,30,1,13,3,14,1,30,2,28,2,13,1,30,1,28,1,13,1,5,2,14,1,13,1,14,1,13,2,14,5,33,6,13,2,6,1,13,1,14,4,1,56,11,1,1,9,11,1,1,1,12,1,1,4,11,2,1,44,11,1,17,1,16,1,9,1,6,1,29,1,28,9,1,5,28,6,1,1,28,1,1,20,28,2,1,93,}, + {1,45,28,3,1,2,28,2,1,9,11,1,5,1,14,11,33,1,14,1,33,1,13,1,6,1,14,1,13,2,30,2,14,4,30,1,13,1,30,1,13,2,14,1,33,1,14,1,33,1,13,1,14,1,13,2,30,1,13,1,14,1,13,1,30,2,28,1,15,1,1,4,11,1,1,1,11,1,30,1,28,2,13,1,30,1,9,1,14,1,11,1,1,94,11,3,1,2,11,5,17,1,12,2,16,2,9,4,7,4,6,2,29,2,28,62,29,1,6,3,7,3,8,1,10,2,9,5,16,3,12,3,17,2,11,6,1,13,14,1,13,5,33,2,14,1,13,1,33,1,14,1,28,1,30,1,13,2,30,1,13,1,14,1,30,2,28,2,30,3,13,1,14,1,5,1,14,1,33,2,6,1,13,1,33,3,14,9,11,2,1,71,11,1,1,1,11,1,1,40,11,3,12,1,9,1,8,1,6,1,29,1,28,8,1,6,28,3,1,6,28,1,1,1,28,2,1,1,28,2,1,115,}, + {1,45,28,3,1,2,28,1,10,1,1,9,14,13,5,1,14,1,13,1,30,1,13,1,14,1,13,2,30,2,14,3,13,1,28,1,14,1,13,2,14,5,30,2,13,2,30,1,13,1,14,1,30,3,29,1,15,1,1,2,11,2,1,1,11,1,16,1,11,1,14,1,15,1,1,84,11,4,12,2,16,1,9,2,10,1,7,1,6,1,29,1,28,37,1,15,28,2,1,1,28,2,1,5,28,1,1,1,28,5,1,2,28,2,1,5,28,2,1,1,28,1,1,6,28,3,1,1,28,28,11,1,1,11,14,1,13,1,30,2,14,2,13,1,14,4,33,1,13,1,30,2,14,1,13,1,28,1,30,1,14,1,13,1,30,2,13,1,30,2,13,2,33,1,14,4,16,1,14,4,1,81,11,2,1,4,11,2,1,25,11,3,12,1,16,1,9,1,8,1,6,1,29,1,28,11,1,2,28,2,1,1,28,2,1,6,28,3,1,6,28,4,1,118,}, + {1,45,28,3,1,2,28,1,12,1,1,9,14,15,33,1,30,1,13,2,14,1,13,3,14,3,33,1,30,1,14,1,13,2,14,2,33,1,14,2,30,1,28,1,30,1,13,3,14,1,30,3,13,1,11,2,1,1,9,1,15,1,1,1,11,1,25,1,11,2,15,1,1,70,11,3,12,1,16,1,9,2,7,2,6,1,29,1,28,23,1,3,28,2,1,5,28,6,1,2,28,5,1,4,28,3,1,15,28,2,1,1,28,2,1,10,28,2,1,21,28,1,1,12,28,5,1,8,28,3,7,1,1,11,14,1,33,1,13,1,30,1,13,1,33,1,14,1,13,1,33,1,5,1,14,1,5,1,33,1,13,1,30,1,13,3,28,1,30,1,33,1,13,1,30,1,28,1,13,1,30,1,13,1,14,4,1,34,6,1,28,1,29,1,6,1,7,1,8,1,9,2,16,2,12,1,17,1,11,4,1,43,11,3,9,1,1,2,12,1,1,5,11,4,17,1,12,1,16,2,9,1,10,1,8,1,7,1,6,1,29,1,28,17,1,1,28,2,1,8,28,2,1,16,28,2,1,119,}, + {1,45,28,4,1,1,28,1,11,1,1,9,5,1,14,14,33,1,13,1,30,2,14,2,13,1,14,1,5,1,14,1,33,2,13,1,14,2,13,1,14,1,33,1,6,1,14,1,13,1,30,1,28,1,30,1,13,3,33,1,13,1,30,1,28,1,16,1,1,3,11,3,1,1,25,1,9,2,15,1,1,57,11,3,12,1,16,1,9,1,8,1,7,1,6,1,29,1,28,20,1,1,28,2,1,1,28,4,1,2,28,3,1,1,28,5,1,8,28,3,1,4,28,5,1,4,28,4,1,30,28,2,1,18,28,5,1,11,28,5,1,9,28,2,1,11,14,1,33,2,14,1,13,1,14,1,33,1,14,1,13,1,33,1,5,2,33,2,13,6,14,5,11,2,1,39,28,23,29,1,6,4,7,3,8,1,10,3,9,2,10,1,9,8,10,5,8,1,7,4,6,3,29,3,28,30,1,4,28,6,1,150,}, + {1,45,28,3,1,2,28,1,1,9,14,1,5,1,14,14,33,2,28,2,14,2,13,1,14,1,5,1,14,2,33,1,13,1,14,4,33,2,14,1,13,1,6,1,13,1,30,2,13,4,30,1,28,1,14,1,1,5,17,1,1,1,25,1,9,1,15,1,1,47,11,2,17,1,16,1,9,1,10,1,7,1,6,1,29,1,28,18,1,3,28,5,1,1,28,4,1,1,28,8,1,3,28,2,1,1,28,5,1,8,28,3,1,5,28,2,1,6,28,6,1,16,28,2,1,9,28,2,1,22,28,1,1,12,28,5,1,9,28,1,11,1,1,10,14,1,13,1,33,1,14,2,13,2,33,2,14,2,5,1,14,6,11,1,1,47,11,1,28,1,1,1,28,2,1,2,28,3,1,4,28,3,1,1,28,57,1,3,28,7,1,1,28,2,1,3,28,5,1,1,28,3,1,1,28,2,1,1,28,2,1,147,}, + {1,45,28,2,1,2,28,1,6,1,1,9,14,1,5,1,14,13,33,3,30,2,33,2,13,1,14,4,33,1,13,1,33,1,14,6,13,3,30,1,13,2,14,3,15,2,1,3,11,2,1,1,11,1,15,2,11,1,1,37,11,3,16,1,9,1,8,1,7,1,6,1,29,1,28,18,1,2,28,6,1,2,28,1,1,4,28,1,1,4,28,2,1,1,28,10,1,3,28,2,1,1,28,4,1,7,28,5,1,13,28,6,1,2,28,2,1,12,28,2,1,9,28,2,1,2,28,2,1,13,28,1,1,17,28,2,1,11,28,1,9,1,1,11,14,1,13,1,33,1,14,2,33,2,14,4,1,55,16,1,28,1,1,18,28,2,1,9,28,3,1,9,28,1,1,2,28,2,1,1,28,5,1,1,28,2,1,4,28,8,1,7,28,6,1,1,28,1,1,2,28,2,1,3,28,12,1,1,28,2,1,1,28,2,1,6,28,1,1,137,}, + {1,49,28,1,9,1,1,9,14,15,5,1,14,2,13,2,33,2,14,5,33,1,13,1,14,2,33,1,14,5,16,1,14,2,1,5,11,2,1,6,11,1,27,1,11,1,1,1,15,1,1,27,11,2,12,1,16,1,9,1,7,1,29,1,28,16,1,4,28,1,1,1,28,7,1,2,28,5,1,13,28,2,1,1,28,10,1,17,28,2,1,1,28,1,1,20,28,4,1,12,28,2,1,10,28,1,1,2,28,2,1,43,28,1,6,1,1,11,14,2,16,1,14,3,11,1,1,59,11,1,28,2,1,18,28,2,1,11,28,1,1,9,28,2,1,1,28,11,1,4,28,2,1,4,28,2,1,4,28,1,1,2,28,12,1,3,28,12,1,4,28,2,1,4,28,4,1,136,}, + {1,49,28,1,12,1,1,9,14,16,13,3,6,1,33,1,14,2,33,2,14,2,33,1,14,5,11,1,1,17,11,1,1,2,9,1,1,1,14,1,28,1,14,1,1,17,11,2,17,1,16,1,9,1,7,1,30,1,28,8,1,1,28,3,1,4,28,1,1,12,28,2,1,4,28,3,1,30,28,2,1,14,28,2,1,1,28,3,1,24,28,2,1,24,28,1,1,46,28,2,11,1,1,75,11,1,16,1,28,2,1,5,28,2,1,35,28,2,1,3,28,8,1,11,28,4,1,2,28,1,1,1,28,1,1,5,28,2,1,1,28,2,1,1,28,1,1,3,28,2,1,1,28,3,1,1,28,3,1,12,28,3,1,137,}, + {1,49,28,1,11,1,1,9,14,16,13,1,28,1,14,1,33,1,5,1,14,1,5,2,14,4,1,28,9,1,28,1,14,1,1,9,11,1,17,1,16,1,9,1,7,1,6,1,28,14,1,1,28,1,1,2,28,3,1,17,28,2,1,4,28,3,1,47,28,1,1,101,28,1,12,1,1,68,11,2,12,1,16,1,9,1,7,1,6,1,28,5,1,5,28,2,1,35,28,2,1,3,28,8,1,11,28,1,1,1,28,2,1,4,28,2,1,4,28,2,1,11,28,3,1,1,28,3,1,152,}, + {1,49,28,1,11,1,1,8,14,17,13,1,30,1,14,4,11,1,1,26,11,2,1,5,11,1,13,1,11,3,17,1,16,1,9,1,6,1,29,1,28,9,1,2,28,4,1,5,28,2,1,5,28,2,1,17,28,2,1,155,28,1,8,1,1,60,11,2,16,1,9,1,8,1,6,1,28,15,1,6,28,1,1,38,28,7,1,1,28,1,1,26,28,2,1,15,28,3,1,152,}, + {1,49,28,1,1,9,14,7,5,1,14,11,1,31,12,1,11,1,1,3,11,1,27,1,6,1,28,10,1,1,28,3,1,21,28,3,1,173,28,2,11,1,1,51,11,2,16,1,9,1,8,1,6,1,28,10,1,8,28,2,1,49,28,4,1,1,28,2,1,46,28,1,1,153,}, + {1,46,28,4,1,9,14,11,11,1,1,43,28,7,1,7,28,3,1,21,28,3,1,173,28,1,9,1,1,43,11,3,12,1,9,1,7,1,29,1,28,13,1,12,28,1,1,258,}, + {1,46,28,3,6,1,1,9,14,1,5,1,14,3,11,1,1,25,11,1,1,19,11,1,1,1,11,1,6,1,28,3,1,1,28,2,1,2,28,2,1,4,28,3,1,6,28,2,1,13,28,2,1,174,28,1,11,1,1,37,11,2,16,1,8,1,29,1,28,10,1,7,28,4,1,12,28,2,1,257,}, + {1,46,28,3,7,1,1,58,11,2,16,1,7,1,28,3,1,3,28,2,1,2,28,2,1,4,28,4,1,4,28,3,1,188,28,2,1,31,11,2,16,1,8,1,6,1,28,9,1,15,28,4,1,12,28,4,1,255,}, + {1,47,28,2,10,1,1,53,11,1,12,1,9,1,6,1,28,6,1,15,28,4,1,195,28,2,1,25,11,1,12,1,9,1,7,1,29,1,28,9,1,1,28,3,1,17,28,5,1,13,28,2,1,255,}, + {1,47,28,2,9,1,1,48,11,1,16,1,7,1,28,10,1,217,28,1,17,1,1,18,11,1,12,1,9,1,6,1,28,8,1,10,28,4,1,12,28,8,1,270,}, + {1,47,28,2,9,1,1,42,11,1,12,1,9,1,6,1,28,9,1,223,28,1,29,1,1,12,11,1,12,1,9,1,6,1,28,14,1,11,28,3,1,12,28,5,1,2,28,1,1,270,}, + {1,47,28,2,9,1,1,36,11,1,17,1,9,1,7,1,28,7,1,6,28,2,1,224,28,1,6,1,11,1,1,4,11,2,9,1,7,1,29,1,28,6,1,2,28,1,1,6,28,3,1,11,28,4,1,13,28,2,1,275,}, + {1,47,28,2,9,1,1,31,11,1,16,1,8,1,29,1,28,10,1,234,28,3,6,1,8,1,29,1,28,9,1,8,28,2,1,17,28,2,1,291,}, + {1,47,28,2,29,1,1,25,11,1,12,1,9,1,6,1,28,11,1,2,28,2,1,4,28,2,1,231,28,5,1,1,28,2,1,2,28,2,1,2,28,2,1,5,28,2,1,310,}, + {1,48,28,2,12,1,1,18,11,2,16,1,8,1,29,1,28,7,1,7,28,2,1,2,28,2,1,5,28,1,1,232,28,5,1,1,28,1,1,3,28,4,1,318,}, + {1,48,28,3,11,1,1,12,11,1,12,1,9,1,6,1,28,7,1,3,28,1,1,253,28,2,1,1,28,2,1,5,28,4,1,318,}, + {1,50,28,2,16,1,1,5,11,1,17,1,9,1,7,1,29,1,28,5,1,1,28,3,1,1,28,3,1,259,28,2,1,4,28,2,1,1,28,2,1,318,}, + {1,49,28,5,7,1,8,1,6,1,28,11,1,1,28,3,1,1,28,3,1,260,28,3,1,325,}, + {1,50,28,1,1,2,28,5,1,2,28,2,1,2,28,1,1,1,28,6,1,265,28,2,1,325,}, + {1,53,28,3,1,4,28,4,1,2,28,1,1,1,28,4,1,592,}, + {1,54,28,2,1,4,28,5,1,3,28,3,1,593,}, + {1,48,28,4,1,2,28,3,1,3,28,5,1,3,28,2,1,594,}, + {1,48,28,2,1,3,28,4,1,1,28,2,1,3,28,2,1,599,}, + {1,55,28,2,1,6,28,1,1,600,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, + {1,664,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino7.lua b/map_gen/data/presets/dino7.lua new file mode 100644 index 00000000..099a4d12 --- /dev/null +++ b/map_gen/data/presets/dino7.lua @@ -0,0 +1,507 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 500, +width = 600, +data = { + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,442,11,1,1,157,}, + {1,441,11,1,12,1,1,157,}, + {1,421,14,1,1,18,14,1,29,1,28,1,11,1,1,156,}, + {1,435,5,1,1,3,15,1,28,3,6,1,1,156,}, + {1,418,16,1,1,19,15,1,28,5,9,1,1,155,}, + {1,417,11,1,28,1,29,1,16,1,1,16,15,1,28,7,14,1,1,16,14,1,1,137,}, + {1,417,9,1,28,3,6,1,11,1,1,13,15,1,28,8,6,1,1,154,}, + {1,417,30,1,28,5,16,1,1,11,16,1,28,10,9,1,1,153,}, + {1,416,11,1,28,7,30,1,17,1,1,8,16,1,28,11,29,1,11,1,1,15,17,1,7,1,11,1,1,134,}, + {1,416,9,1,28,9,9,1,11,1,1,5,9,1,28,13,30,1,1,13,11,1,13,1,28,2,9,1,1,134,}, + {1,398,11,1,1,16,11,1,30,1,28,10,29,1,16,1,1,3,9,1,28,15,9,1,1,10,11,1,7,1,28,5,1,134,}, + {1,399,9,1,11,1,1,14,11,1,28,13,29,1,15,1,8,1,28,14,29,1,28,2,14,1,1,8,16,1,28,7,11,1,1,133,}, + {1,398,11,1,28,2,7,1,11,1,1,12,16,1,28,18,29,1,28,10,29,3,28,1,29,1,11,1,1,5,11,1,29,1,28,5,29,1,28,2,9,1,1,133,}, + {1,398,15,1,28,4,6,1,14,1,1,10,13,1,28,17,29,1,28,3,30,1,8,1,9,1,16,1,9,2,13,1,30,1,28,2,29,1,28,2,7,1,1,1,26,1,1,1,11,1,7,1,29,1,28,7,29,1,28,1,6,1,1,133,}, + {1,398,16,1,28,6,13,1,14,1,1,7,11,1,28,20,30,1,9,1,15,8,9,1,30,1,29,3,28,1,9,1,11,1,8,1,28,2,29,2,28,2,29,3,28,1,29,1,28,1,29,1,11,1,1,132,}, + {1,398,13,1,28,8,30,1,11,1,1,5,16,1,28,7,29,1,30,1,8,1,9,3,30,1,28,1,29,1,28,3,13,1,15,1,16,4,12,3,16,1,17,1,16,1,15,1,13,1,29,3,28,1,29,1,30,1,29,1,28,1,29,1,28,2,29,4,28,2,29,2,14,1,1,132,}, + {1,397,11,1,13,1,28,10,13,1,11,1,1,1,11,1,1,1,30,1,28,3,29,1,28,2,13,1,15,3,16,1,15,3,16,1,29,2,28,3,30,1,9,1,15,1,14,1,15,7,14,1,9,1,29,5,28,3,29,1,28,1,29,3,28,3,29,2,28,1,9,1,1,132,}, + {1,398,29,1,28,12,30,1,15,1,14,1,28,5,29,1,9,1,15,7,9,1,29,1,28,1,29,1,28,5,29,1,30,1,7,1,8,4,6,1,29,2,28,1,29,1,28,1,29,3,28,1,30,1,13,2,6,1,29,4,28,2,29,1,28,2,6,1,1,132,}, + {1,397,11,1,28,21,9,1,16,1,12,3,16,1,15,2,8,1,28,8,29,1,28,5,29,3,28,1,29,2,28,1,29,5,9,1,15,1,14,1,15,1,14,1,16,1,13,1,29,1,28,1,29,5,11,1,1,131,}, + {1,397,11,1,28,20,9,1,15,2,16,1,15,1,16,2,13,1,29,1,28,3,29,1,28,4,29,4,28,1,29,13,28,1,29,1,15,5,14,1,16,1,30,1,28,1,29,4,11,1,1,131,}, + {1,397,11,1,28,12,29,1,28,2,29,1,28,3,29,1,28,1,29,1,30,1,29,3,28,5,29,27,15,3,16,1,15,3,13,1,28,2,29,2,9,1,1,131,}, + {1,397,15,1,28,25,29,2,28,1,29,2,28,2,29,27,9,1,15,6,6,1,29,3,30,1,1,131,}, + {1,380,11,3,1,14,9,1,28,9,30,1,13,1,9,3,30,1,28,5,29,2,28,2,29,31,30,1,29,4,13,1,15,4,14,1,15,1,29,4,11,1,5,1,1,129,}, + {1,212,5,1,1,3,11,1,1,4,11,1,1,2,33,1,1,155,11,1,28,2,29,1,13,1,15,1,1,11,8,1,28,5,29,1,28,1,30,1,16,1,15,5,29,1,28,10,29,37,13,1,16,1,14,3,13,1,29,3,8,1,14,1,11,4,1,2,11,1,1,122,}, + {1,206,28,1,1,6,11,1,17,1,16,2,9,3,8,1,9,1,8,1,9,3,16,1,14,2,1,2,28,1,1,148,11,1,28,7,11,1,1,4,14,1,1,1,33,1,1,1,29,1,28,6,8,1,14,2,15,2,16,1,14,1,30,1,28,11,29,37,28,1,29,1,30,1,8,1,9,1,15,1,29,5,28,1,29,1,28,1,29,1,28,1,29,2,28,1,29,1,30,1,13,1,11,1,1,117,}, + {1,207,15,1,16,1,9,1,13,1,6,6,13,4,6,1,13,1,6,1,13,3,6,2,13,1,9,1,16,1,11,1,1,2,11,1,1,144,11,1,28,9,30,1,14,1,11,1,1,2,12,1,1,1,28,6,8,1,15,2,16,1,15,1,16,1,15,1,13,1,28,10,29,29,28,1,29,27,30,2,29,2,9,1,1,117,}, + {1,202,11,1,15,1,9,1,7,1,6,5,13,4,6,8,7,1,8,1,9,2,16,2,15,2,16,3,17,1,11,1,1,144,11,1,28,12,6,1,16,1,11,2,28,5,13,1,16,1,15,1,16,1,15,3,30,1,28,5,29,1,28,5,29,29,28,1,29,16,30,1,29,14,16,1,1,117,}, + {1,199,17,1,9,1,7,1,6,16,7,1,9,1,16,1,11,2,17,2,15,1,16,4,12,1,15,1,11,2,1,8,33,1,1,137,11,1,28,15,30,1,28,5,15,1,16,2,15,2,8,1,29,1,28,9,29,32,28,1,29,31,14,1,1,117,}, + {1,196,15,1,8,1,6,17,8,1,9,1,15,1,9,2,13,1,7,1,6,1,7,1,6,11,7,1,8,1,16,1,11,1,1,141,14,1,28,20,30,1,15,1,16,1,9,1,6,1,28,7,29,1,28,1,29,1,28,1,29,33,28,1,29,19,9,1,6,1,29,10,1,118,}, + {1,193,11,1,9,1,13,1,6,2,13,1,6,1,13,2,6,11,8,2,13,1,6,1,13,1,6,3,13,2,30,2,6,1,13,4,6,3,13,2,6,2,13,2,6,1,8,1,16,1,11,1,1,68,11,3,14,1,16,5,9,2,15,1,11,1,1,56,14,1,28,16,29,1,28,11,29,1,28,3,29,37,28,2,29,18,14,2,15,1,13,1,28,1,29,7,1,118,}, + {1,191,17,1,8,1,6,5,13,4,6,29,13,3,6,2,13,3,6,4,13,1,9,1,11,1,1,7,5,1,1,50,11,2,16,1,9,1,7,1,6,1,7,1,6,18,7,1,9,1,16,1,12,1,11,1,1,46,14,1,28,25,29,1,28,1,29,2,28,2,29,38,28,2,29,1,30,1,29,16,15,1,14,1,15,1,17,1,9,1,29,6,6,1,1,118,}, + {1,188,11,1,9,1,13,1,6,51,13,1,6,1,13,1,6,2,9,1,17,1,1,8,14,1,1,42,11,1,16,1,9,1,7,1,6,31,7,1,9,1,16,1,11,1,1,41,14,1,28,31,29,38,28,2,29,1,30,1,29,3,30,1,29,1,30,1,29,10,9,1,14,1,15,1,12,2,9,1,29,1,30,1,29,3,8,1,1,118,}, + {1,186,11,1,8,1,7,2,6,1,13,1,6,42,30,1,29,1,30,1,13,1,6,1,30,2,13,1,6,7,7,1,9,1,14,1,1,44,11,1,16,1,7,1,6,21,30,1,6,2,13,1,6,1,13,3,6,3,13,1,6,7,13,1,8,1,16,1,11,1,1,37,14,1,28,13,30,1,13,1,29,1,28,14,29,40,28,1,29,1,30,2,29,2,30,3,29,10,30,1,14,2,15,1,12,1,15,1,30,2,29,3,15,1,1,118,}, + {1,184,11,1,8,1,6,3,7,1,6,1,13,1,6,44,28,2,30,1,13,2,6,4,30,1,13,3,30,1,6,3,8,1,14,1,1,10,5,1,1,27,11,1,8,1,7,1,6,6,13,1,6,6,13,5,6,3,30,13,13,1,6,1,13,1,6,1,30,1,6,2,13,1,7,1,6,5,13,1,16,1,11,1,1,33,11,1,28,10,29,1,9,1,15,2,16,1,29,1,28,12,29,42,28,2,30,2,29,2,30,1,29,1,30,2,29,6,30,1,29,3,8,1,14,2,15,1,14,1,8,1,29,4,11,1,1,118,}, + {1,183,9,1,6,3,13,1,6,49,30,1,28,2,29,1,30,1,6,3,13,2,6,9,9,1,17,1,11,1,1,31,17,1,8,1,7,1,6,10,13,4,30,1,13,1,30,2,29,1,28,22,29,1,30,2,6,10,7,1,16,1,11,1,1,28,27,1,1,1,11,1,28,9,8,1,15,1,16,2,15,1,7,1,28,12,29,38,30,4,29,2,28,1,29,1,30,2,29,1,30,1,29,2,30,1,29,11,9,1,14,1,15,1,14,1,16,1,29,3,30,1,11,1,1,118,}, + {1,181,15,1,7,1,6,4,13,1,6,49,13,2,29,1,28,3,29,1,30,1,13,1,6,2,13,1,6,10,7,1,9,1,17,1,1,25,17,1,8,1,6,11,26,2,30,2,29,1,28,34,29,1,30,1,13,1,6,9,9,1,11,1,1,27,11,1,28,8,9,1,15,1,16,2,15,1,16,1,28,11,29,33,30,11,29,1,28,2,29,1,30,4,29,2,30,7,29,4,30,1,29,1,8,1,14,1,15,2,29,3,30,1,1,119,}, + {1,179,11,1,8,1,6,1,13,1,6,57,30,1,28,5,30,1,13,2,6,7,13,2,6,5,7,1,9,1,15,1,11,1,1,16,11,1,16,1,9,1,7,1,6,1,13,1,6,2,13,1,6,2,13,2,26,1,13,1,30,1,29,1,28,43,29,1,30,1,13,1,6,3,13,1,6,3,7,1,9,1,11,1,1,24,11,1,28,7,13,1,15,2,16,2,15,1,30,1,28,7,29,1,28,2,29,29,30,16,29,1,28,1,29,1,28,1,30,4,29,2,30,7,29,5,30,1,29,1,6,1,9,1,16,1,29,2,30,1,13,1,11,1,1,118,}, + {1,178,16,1,6,2,13,2,30,1,6,8,13,1,6,48,13,1,30,1,28,6,30,1,13,2,6,4,13,4,6,3,30,1,6,5,8,1,9,1,12,1,1,7,11,1,16,1,9,1,7,1,6,3,13,5,6,3,30,1,29,1,28,51,30,1,6,8,7,1,16,1,1,22,11,1,28,6,29,1,14,1,15,1,16,3,13,1,29,2,28,5,29,2,28,1,29,29,30,17,29,1,28,1,29,1,28,1,30,5,29,1,30,8,29,3,30,3,29,5,30,1,29,1,9,1,1,118,}, + {1,176,11,1,8,1,6,65,13,1,30,1,28,7,30,1,13,2,30,1,6,17,13,1,6,2,7,1,6,12,30,1,29,1,28,58,29,1,30,1,13,1,30,1,13,1,6,5,8,1,11,1,1,18,5,1,11,1,28,6,9,1,16,1,15,3,13,1,28,11,29,30,30,16,29,1,28,2,29,2,30,15,29,3,30,2,29,1,30,3,29,1,30,1,29,1,8,1,11,1,1,116,}, + {1,175,16,1,6,68,13,1,6,1,30,1,28,8,30,2,6,2,13,1,6,18,13,1,6,3,13,3,30,2,28,28,29,2,30,11,29,2,28,22,29,1,30,1,13,3,6,3,13,1,7,1,9,1,1,16,28,1,14,1,28,5,29,1,15,3,9,1,29,1,28,1,29,1,28,1,29,1,28,5,29,31,30,18,29,1,28,3,29,1,30,16,29,2,30,2,29,2,30,1,29,4,30,1,6,1,11,1,1,115,}, + {1,173,11,1,8,1,6,4,13,1,6,68,30,1,29,1,28,9,29,1,30,1,6,1,13,2,6,13,13,3,6,1,30,1,29,1,28,23,29,2,30,2,6,24,13,1,30,2,29,2,28,16,30,1,13,1,6,1,7,1,6,1,13,1,6,1,8,1,1,15,11,1,15,1,8,1,28,5,30,1,9,1,13,1,29,1,28,8,29,1,28,2,29,30,30,19,29,1,28,4,30,16,29,2,30,5,29,1,30,1,29,1,30,4,16,1,1,114,}, + {1,172,11,1,7,1,6,73,13,1,6,1,30,1,6,1,29,1,28,11,29,1,30,2,13,1,6,3,30,2,6,2,13,1,30,3,28,23,29,1,6,1,13,6,6,30,13,2,6,1,30,1,29,1,28,14,6,2,30,1,13,1,14,1,1,1,11,1,1,1,11,1,1,1,11,1,14,1,15,1,9,1,13,1,6,1,29,1,28,22,29,2,28,2,29,26,30,24,28,2,29,1,28,1,29,1,30,18,29,2,30,2,13,1,15,1,13,1,30,3,29,2,8,1,1,113,}, + {1,171,16,1,6,70,7,1,6,2,13,1,6,1,13,1,6,5,30,1,29,1,28,41,29,1,30,1,6,1,13,2,6,43,13,1,6,1,26,1,30,1,29,1,28,11,30,1,6,1,15,1,1,2,9,1,28,31,29,11,28,1,29,14,30,2,29,1,30,25,29,3,28,1,29,1,30,18,29,2,30,2,8,1,14,2,9,1,30,3,29,2,13,1,11,1,1,111,}, + {1,170,9,1,6,3,13,1,30,1,6,1,13,1,6,65,7,1,16,1,11,1,15,1,13,1,6,4,7,1,6,3,30,1,28,34,29,1,30,1,26,2,13,2,6,1,13,2,6,1,13,1,6,42,13,1,6,2,26,2,13,2,30,1,29,1,28,9,30,1,1,2,11,1,28,30,29,13,28,1,29,12,30,29,29,5,30,17,29,1,28,1,29,1,30,2,9,1,17,1,14,2,7,1,29,3,30,2,11,1,1,111,}, + {1,169,7,1,6,3,26,1,28,1,30,1,13,2,26,1,6,59,13,1,6,3,9,1,1,1,11,1,12,1,11,1,1,1,9,1,6,2,13,1,6,5,13,2,30,2,28,25,29,1,30,1,26,1,13,1,26,2,6,18,13,7,6,17,13,4,6,12,26,2,13,1,26,2,30,1,29,1,28,6,1,2,11,1,28,22,29,1,28,3,29,1,28,3,29,13,28,2,29,10,30,30,29,5,30,17,29,1,28,1,29,2,30,1,8,1,17,2,14,1,12,1,29,3,30,2,1,112,}, + {1,167,11,1,13,2,6,2,13,1,29,2,6,56,13,3,6,7,16,1,1,1,15,1,16,3,15,1,1,1,9,1,6,13,30,2,28,14,29,2,30,1,6,71,26,1,6,3,13,1,30,1,29,1,28,3,15,1,1,2,29,1,28,14,13,1,29,1,28,14,29,13,28,3,29,8,30,30,29,6,30,16,29,3,30,2,6,1,17,2,12,1,17,1,6,1,30,3,9,1,1,112,}, + {1,167,6,1,7,1,30,1,13,2,28,2,6,57,13,3,6,6,16,1,1,1,16,7,1,1,8,1,6,16,13,7,6,3,13,1,6,2,13,1,6,3,13,1,6,75,13,1,30,1,29,1,30,1,1,2,15,1,28,12,13,1,15,2,29,1,28,11,29,16,28,4,29,5,30,32,29,6,30,16,29,2,30,4,15,1,17,3,9,1,30,3,11,1,1,112,}, + {1,166,7,2,6,2,13,1,29,1,28,1,6,66,9,1,1,1,16,4,9,1,16,3,11,2,6,23,13,4,6,82,13,1,6,1,13,2,1,2,11,1,28,10,29,1,9,1,16,2,9,1,28,11,29,18,28,4,29,2,30,34,29,6,30,15,29,1,28,1,29,2,30,3,9,1,14,1,15,1,17,1,9,1,30,2,6,1,1,113,}, + {1,165,7,1,6,4,30,1,28,1,30,1,6,33,13,1,6,5,13,1,6,26,11,1,15,1,16,9,1,1,8,1,6,28,13,2,6,80,13,1,6,1,16,1,1,2,29,1,28,8,29,1,15,1,16,3,8,1,28,11,29,19,28,1,29,2,28,1,29,1,30,34,29,6,30,15,29,1,28,1,29,1,30,5,15,1,11,1,14,1,9,1,30,1,29,1,14,1,1,113,}, + {1,164,9,1,6,2,13,1,6,1,30,1,28,2,13,1,6,35,7,1,6,19,13,1,6,8,13,2,1,1,16,10,12,1,11,1,6,112,7,1,1,2,9,1,28,8,16,5,29,1,28,11,29,19,28,1,29,1,28,3,29,1,30,29,6,2,30,1,6,1,26,1,29,5,26,1,30,14,29,4,30,4,13,1,14,2,6,1,30,1,6,1,1,114,}, + {1,159,14,1,1,3,9,1,6,1,26,1,6,1,13,1,30,1,28,2,6,38,13,1,6,22,7,1,13,1,6,2,13,1,6,1,13,1,15,1,11,1,16,9,11,1,14,1,13,1,6,102,9,1,16,1,8,1,6,1,7,1,26,1,6,4,14,1,1,1,11,1,28,7,8,1,15,4,9,1,28,9,29,1,28,1,29,19,30,1,29,1,28,5,29,1,30,27,6,3,30,1,6,1,26,1,29,6,6,2,30,12,29,3,30,6,13,1,15,1,30,2,9,1,1,114,}, + {1,162,16,1,6,2,26,1,13,1,6,1,28,2,29,1,6,1,13,2,6,33,13,1,11,1,1,2,16,1,6,16,13,1,16,1,11,1,1,4,15,1,13,1,6,2,8,1,1,1,15,1,16,7,15,1,11,1,7,1,13,1,6,14,13,7,6,80,11,3,1,1,11,1,8,1,26,1,6,4,7,1,1,1,11,1,29,1,28,6,15,5,29,1,28,8,29,22,30,1,29,1,28,2,29,2,28,2,29,2,30,25,6,3,30,1,6,1,26,1,29,6,6,2,30,12,29,4,30,9,11,1,1,114,}, + {1,161,14,1,6,3,13,2,28,3,6,25,13,1,30,1,6,6,13,1,6,2,7,1,11,2,16,1,15,1,11,2,7,1,6,12,13,1,15,1,1,1,11,1,15,1,16,4,11,2,7,1,6,2,15,1,11,1,16,6,15,1,1,1,9,1,6,23,13,1,6,12,13,1,6,17,13,2,6,46,9,1,1,1,16,3,14,1,1,1,17,1,7,1,6,1,13,2,6,1,17,1,1,1,9,1,28,5,7,1,15,4,29,1,28,10,29,20,30,1,29,3,28,3,29,1,28,2,29,1,30,2,29,2,30,1,29,2,30,1,6,3,30,5,6,13,30,1,26,1,29,2,28,1,29,3,30,1,6,7,30,4,6,1,26,1,29,3,30,9,6,1,11,1,1,114,}, + {1,161,7,1,6,2,7,1,13,1,30,1,28,2,30,1,6,25,13,2,6,5,13,1,6,3,11,2,16,4,11,1,1,1,11,1,16,1,15,4,16,1,7,1,6,3,13,2,9,1,16,8,17,1,1,1,8,1,6,2,15,1,1,1,15,1,16,3,11,1,1,1,9,1,6,28,13,1,9,1,16,2,15,1,16,1,8,1,6,17,30,1,6,38,7,1,6,2,13,2,6,6,26,1,11,1,16,6,11,1,1,1,9,1,13,1,6,3,1,1,14,1,28,5,9,1,15,3,30,1,28,10,29,21,30,1,29,1,30,2,29,1,28,2,29,2,28,2,29,1,30,9,6,1,30,4,6,15,26,1,29,2,28,1,29,3,30,1,6,8,30,3,6,1,26,1,29,3,30,9,6,1,1,115,}, + {1,160,7,1,6,4,30,1,28,2,29,1,6,27,13,1,6,3,9,2,6,3,13,1,1,1,16,7,14,1,11,2,17,3,11,1,1,1,11,1,8,1,6,2,7,1,6,2,9,1,16,7,17,1,1,1,7,1,6,2,9,1,11,1,1,3,11,1,8,1,6,26,8,1,17,1,1,2,11,3,14,1,11,1,1,1,15,1,6,10,7,1,6,52,13,4,1,1,16,7,15,1,1,1,15,1,6,3,16,1,1,1,28,5,15,2,9,1,28,12,29,21,30,4,29,1,28,2,29,3,28,2,29,1,30,9,6,19,26,1,29,6,30,1,6,8,30,1,6,1,30,1,6,1,29,4,30,7,28,1,30,1,7,1,14,1,1,114,}, + {1,159,16,1,6,2,13,1,6,1,13,1,28,3,13,2,6,28,8,1,1,1,11,2,14,1,6,2,13,1,1,1,16,13,9,1,16,1,14,1,1,1,14,1,13,1,6,4,7,1,16,7,11,2,7,1,6,1,13,1,6,9,13,1,6,21,9,1,1,1,11,1,16,8,1,1,16,1,6,10,8,1,11,2,1,2,11,1,15,1,7,1,6,15,7,2,6,18,7,1,9,3,7,1,6,1,13,1,6,2,13,4,11,1,12,1,16,8,11,2,6,1,13,1,6,1,11,1,13,1,28,4,9,1,30,1,28,11,29,21,30,7,29,6,28,2,30,1,13,1,30,1,6,2,30,4,6,20,29,7,6,10,30,2,29,4,30,7,29,1,30,1,13,1,11,1,1,114,}, + {1,158,11,1,6,4,13,1,28,3,29,1,6,29,7,1,11,1,17,1,16,2,1,1,7,1,6,2,14,1,11,1,16,15,15,1,11,1,1,1,8,1,6,4,13,1,15,1,16,6,11,1,16,1,6,1,13,1,6,31,17,2,16,9,15,1,11,1,6,9,9,1,1,1,14,1,15,1,16,2,15,1,11,1,1,1,7,1,6,8,13,1,6,1,13,1,6,1,8,1,11,3,1,1,11,2,15,1,9,1,8,1,6,11,7,1,11,4,1,1,11,1,9,1,13,1,6,1,13,1,6,2,13,1,9,1,1,1,16,9,11,2,6,1,7,1,8,1,15,1,28,17,29,20,30,9,29,1,28,1,29,6,26,2,30,1,6,1,30,4,6,20,26,1,29,6,26,1,6,9,30,1,26,1,29,4,30,6,28,1,29,1,30,1,7,1,1,115,}, + {1,158,7,1,13,2,6,1,13,1,30,1,28,3,6,30,9,1,11,1,16,3,1,1,6,1,13,2,7,1,11,2,16,16,15,1,1,1,13,2,6,3,7,1,15,2,16,5,11,1,13,1,6,3,13,2,6,27,9,1,1,1,16,10,11,1,6,7,13,1,7,1,11,1,16,6,9,1,11,1,9,1,6,3,13,1,6,5,13,1,6,1,9,1,1,1,17,1,15,1,16,4,17,1,11,1,1,1,11,1,16,1,6,9,11,2,16,4,14,1,1,1,11,1,9,1,6,5,9,1,1,1,15,1,16,6,12,1,16,1,1,1,14,1,13,1,7,1,9,1,28,16,29,20,30,10,29,1,28,2,29,6,26,2,6,2,30,1,6,17,13,1,6,4,26,1,29,6,26,1,6,10,26,1,29,4,30,1,6,1,30,4,28,1,29,1,30,1,7,1,1,115,}, + {1,157,8,1,6,4,30,1,28,3,30,1,6,30,16,1,11,1,16,3,11,1,6,2,13,1,6,2,11,1,12,1,16,7,11,1,1,3,11,1,16,4,11,1,15,1,13,2,6,1,7,1,6,2,14,1,15,1,16,2,15,1,16,1,1,1,7,1,6,2,13,4,6,27,15,1,1,1,16,8,11,1,16,1,6,8,9,1,11,1,16,6,9,1,11,1,15,1,6,3,13,1,6,6,8,1,1,1,16,4,9,1,16,1,9,1,16,4,11,2,13,1,6,5,13,1,11,2,16,1,9,1,16,5,17,1,1,1,11,1,16,1,7,1,8,1,16,1,11,1,1,12,11,1,9,1,6,1,28,15,29,21,30,4,29,1,30,6,29,9,30,1,6,20,13,1,6,1,30,1,6,2,26,1,29,6,26,1,6,10,26,1,29,4,30,1,6,1,30,4,28,1,30,2,8,1,1,115,}, + {1,156,16,1,6,4,13,1,29,1,28,3,6,30,13,1,8,1,1,1,11,1,16,1,11,1,15,1,6,5,13,1,1,1,16,5,17,1,1,1,9,1,13,1,6,1,13,1,1,1,16,2,15,1,16,1,15,1,11,1,6,1,7,1,6,5,14,1,15,1,16,3,1,1,13,2,6,31,13,1,6,1,14,1,1,1,16,6,14,1,1,1,7,1,6,7,7,1,14,2,16,6,9,1,11,1,9,1,6,10,16,1,11,1,16,12,11,2,7,1,6,3,9,1,1,1,11,1,16,10,15,1,11,1,1,9,11,2,14,1,15,1,13,1,29,1,28,18,29,20,30,14,28,1,29,8,26,1,6,3,13,1,6,21,29,6,26,1,6,10,26,1,29,4,26,1,6,1,30,1,6,1,30,1,29,1,28,1,30,2,13,1,1,115,}, + {1,156,6,1,13,2,6,2,30,1,28,3,30,1,6,29,13,2,6,1,13,1,14,1,11,2,6,3,13,2,6,2,1,1,16,5,11,1,9,1,6,4,8,1,1,1,16,4,1,1,6,8,17,1,12,2,1,1,16,1,13,2,6,34,9,1,1,1,11,1,16,3,11,1,1,1,13,1,6,1,13,2,6,6,11,1,15,1,16,7,1,1,7,1,6,8,13,1,6,1,9,1,11,1,16,13,11,1,1,1,16,1,15,1,11,2,15,1,16,12,1,5,11,2,15,1,8,1,30,1,28,24,29,19,30,15,29,10,30,1,6,2,26,1,6,21,29,7,6,10,26,1,29,4,26,1,6,1,30,1,6,1,30,1,29,1,28,1,30,2,13,1,1,115,}, + {1,155,9,1,13,5,28,4,6,30,13,1,6,4,7,1,6,8,11,1,14,1,16,4,1,1,7,1,6,5,15,1,11,1,16,2,12,1,11,1,6,2,13,1,6,6,11,1,1,1,9,1,6,1,13,1,6,32,13,1,6,3,8,1,11,1,1,1,11,1,1,1,11,1,8,1,6,2,13,1,6,5,13,1,6,1,16,1,11,1,16,6,11,2,6,8,13,1,6,3,1,1,16,13,9,1,16,1,11,2,15,1,16,14,1,2,11,1,9,1,30,1,28,28,29,20,30,15,26,1,29,9,30,1,13,1,6,23,26,1,29,6,6,10,26,1,29,4,26,1,6,1,30,1,6,1,30,1,28,2,30,2,6,1,1,115,}, + {1,154,11,1,6,1,13,1,6,3,29,1,28,3,30,1,13,1,6,30,13,1,6,7,13,1,6,4,8,1,1,1,11,3,1,1,11,1,6,6,7,1,11,3,1,1,9,1,6,1,13,2,6,6,7,1,11,1,8,1,6,40,7,1,8,2,6,12,7,1,11,2,16,5,1,1,7,1,6,12,16,1,1,1,16,31,1,2,11,1,28,15,30,1,15,1,29,1,28,12,29,18,30,19,28,1,29,8,26,1,6,23,26,1,29,6,6,10,26,1,29,4,26,1,6,1,30,1,6,1,30,1,28,2,30,2,6,1,1,115,}, + {1,154,7,1,6,5,28,4,13,1,6,45,13,1,9,1,16,1,9,1,8,1,6,8,13,1,16,1,10,1,7,1,6,3,13,1,6,2,29,1,13,2,6,2,7,1,11,1,7,2,6,2,13,1,6,36,13,1,6,2,8,1,9,1,12,1,17,1,11,1,9,1,6,7,16,1,1,4,11,1,9,1,6,14,14,1,11,1,16,30,1,3,6,1,28,13,13,1,15,2,28,12,29,18,30,18,6,1,30,1,29,1,28,1,29,8,26,1,6,22,26,1,29,6,30,1,6,9,26,1,29,4,26,1,6,3,30,1,28,2,29,1,6,2,1,115,}, + {1,153,16,1,13,1,6,4,29,1,28,3,29,1,6,56,13,2,6,12,28,1,30,1,6,1,13,1,7,1,9,1,11,1,6,3,13,1,6,37,13,1,15,1,1,1,11,2,17,2,11,2,13,1,6,9,7,1,6,16,7,1,14,1,11,4,1,2,11,2,15,1,16,21,17,1,1,2,11,1,28,12,8,1,15,2,9,1,28,11,29,18,30,18,6,3,26,1,29,10,26,1,6,21,13,1,29,6,30,1,6,9,26,1,29,4,26,1,6,3,30,1,28,2,29,1,30,1,6,1,11,1,1,114,}, + {1,152,11,1,28,1,30,1,6,3,30,1,28,4,6,3,13,1,6,33,13,2,6,19,13,1,6,2,13,3,11,2,17,1,8,1,6,2,30,1,29,1,28,1,6,4,17,1,16,1,6,2,13,1,6,37,11,2,16,5,9,1,11,2,13,5,6,1,13,1,30,1,13,1,6,1,13,1,6,14,13,1,6,2,13,1,9,2,8,4,16,1,11,1,1,1,11,1,16,20,1,3,29,1,28,10,13,1,15,1,16,1,15,1,8,1,28,11,29,18,30,18,6,4,26,1,29,9,26,1,6,21,13,1,26,1,29,5,30,1,6,9,26,1,29,4,26,1,6,3,30,1,28,2,29,1,30,1,6,1,11,1,1,114,}, + {1,148,14,1,1,3,30,1,28,2,30,1,6,2,29,1,28,3,29,1,6,62,13,1,16,1,11,1,16,1,11,1,1,1,9,1,6,1,13,1,6,1,28,1,29,1,13,1,6,2,13,1,1,1,10,1,6,1,13,4,6,19,26,1,13,1,6,11,8,1,11,2,16,8,11,1,9,1,6,2,13,4,6,30,8,1,15,1,1,1,11,1,16,18,11,1,1,1,11,1,15,1,28,9,29,1,16,2,15,2,30,1,28,4,29,4,28,2,29,18,30,16,6,7,13,1,29,10,26,1,13,1,6,4,26,1,6,15,26,1,29,5,30,1,13,1,6,8,26,1,29,5,6,3,30,1,28,3,6,2,11,1,1,114,}, + {1,151,14,1,28,4,30,2,28,4,30,1,6,63,11,1,17,1,16,2,12,1,11,1,13,1,6,2,30,1,28,1,30,1,6,1,13,1,6,1,8,1,1,1,7,1,6,1,13,3,6,19,13,1,6,3,30,2,6,5,9,1,11,1,1,1,11,1,9,1,16,8,15,1,1,1,6,6,13,1,6,28,13,2,30,1,6,1,16,1,1,1,11,1,16,17,1,3,28,9,9,1,16,2,15,2,28,10,29,19,30,16,6,8,26,1,29,10,13,1,6,3,13,1,26,1,6,15,26,1,29,6,13,1,6,6,13,1,6,1,26,1,29,5,6,3,30,1,28,3,6,2,15,1,1,114,}, + {1,151,29,1,28,5,29,1,28,4,6,63,13,1,14,1,11,1,16,3,1,1,8,1,13,1,6,2,28,2,30,1,6,3,11,2,6,1,13,1,6,21,13,1,6,5,7,1,8,1,9,1,15,1,1,2,11,1,16,12,11,1,1,1,11,2,1,3,16,1,7,1,13,2,6,30,7,1,14,1,1,1,16,16,11,1,1,2,9,1,28,7,30,1,15,1,16,2,15,1,8,1,28,10,29,16,30,17,6,6,26,2,6,2,13,1,26,1,29,10,26,1,6,1,13,1,6,17,26,1,29,6,13,1,6,8,26,1,29,5,6,3,30,1,28,3,6,2,9,1,1,114,}, + {1,150,14,1,28,10,30,1,6,64,8,1,1,1,15,1,16,1,17,1,11,1,13,2,6,2,30,1,28,2,6,3,8,1,1,1,16,1,6,24,8,1,15,1,11,1,1,1,11,1,1,1,11,2,16,17,15,2,16,3,11,2,7,1,6,26,13,1,6,6,16,1,1,1,16,16,1,2,11,1,28,7,9,1,15,1,16,2,15,1,29,1,28,12,29,13,30,18,6,5,26,3,6,2,13,2,29,10,26,1,13,2,6,17,26,1,29,6,26,1,6,8,26,1,29,5,6,3,30,1,28,3,6,1,30,1,8,1,1,114,}, + {1,150,29,1,28,10,6,4,13,2,6,60,9,1,1,2,11,1,8,1,6,1,13,2,6,1,13,1,28,2,29,1,6,1,13,1,6,1,16,1,1,1,11,1,8,1,6,21,8,1,1,1,11,1,15,1,16,28,11,2,7,1,6,33,17,1,11,1,16,15,15,1,1,2,7,1,28,6,9,1,15,3,8,1,28,6,29,1,28,1,29,4,28,2,29,12,30,2,29,1,30,13,6,8,26,2,6,3,13,1,26,1,29,10,13,2,6,17,13,1,26,1,29,5,26,1,6,4,13,1,6,3,13,1,29,5,6,3,30,1,28,3,6,3,1,114,}, + {1,149,11,1,30,1,28,9,29,1,13,2,6,2,13,1,6,58,30,1,6,4,7,1,6,4,13,1,6,2,29,1,28,2,6,1,13,1,6,1,7,1,1,1,11,1,1,1,11,1,8,1,6,1,7,1,6,17,14,1,11,1,16,32,1,1,8,1,6,27,13,2,6,3,17,1,11,1,16,11,11,4,1,3,14,1,28,6,15,1,16,1,15,1,16,1,28,11,29,15,30,17,6,14,13,1,26,1,29,10,26,1,6,18,26,1,29,5,26,1,6,1,26,1,6,2,13,1,6,3,13,1,26,1,29,4,6,3,30,1,28,3,6,3,1,114,}, + {1,145,11,1,1,3,9,1,13,2,30,1,28,8,30,1,13,2,6,2,13,3,6,55,13,1,6,8,13,1,6,3,13,1,28,3,6,2,13,1,17,1,1,1,16,1,12,1,1,1,14,1,7,1,6,16,7,1,1,1,16,32,15,1,14,1,1,1,7,1,6,26,13,3,6,1,7,1,1,1,16,9,11,1,1,1,11,1,15,1,16,2,9,1,7,2,1,2,30,1,28,4,29,1,16,1,15,2,29,1,28,2,29,1,28,10,29,12,30,18,6,9,13,2,6,4,13,1,26,1,29,9,26,1,6,16,26,1,6,1,13,1,29,5,26,3,6,1,13,2,6,3,13,1,26,1,29,4,6,3,30,1,28,3,30,1,13,1,6,1,11,1,1,113,}, + {1,149,6,1,13,1,6,1,13,3,28,7,29,1,13,1,6,3,9,1,7,2,6,64,13,1,6,3,28,3,30,1,13,1,6,1,7,1,1,1,11,1,16,2,11,1,1,1,8,1,6,16,1,1,16,32,15,2,11,1,8,1,6,26,13,2,6,2,11,2,16,8,11,1,14,1,7,1,6,7,8,1,1,1,16,1,28,4,30,1,15,1,16,1,29,1,28,10,29,2,28,5,29,9,30,3,29,1,30,14,6,9,13,2,6,5,26,1,29,10,26,1,6,15,13,1,6,2,26,1,29,4,26,1,13,1,6,2,13,2,6,4,26,1,29,4,26,1,6,3,28,3,29,1,6,2,16,1,1,1,14,1,1,111,}, + {1,148,9,1,13,2,6,3,30,1,28,8,29,1,13,1,6,1,13,1,9,1,28,7,29,1,30,1,6,61,30,1,28,3,13,2,6,1,11,1,1,1,16,3,12,1,1,1,9,1,6,15,1,1,16,7,11,2,1,2,11,2,14,1,15,1,16,18,15,1,1,1,7,2,6,27,7,1,11,2,16,8,11,1,17,1,6,6,13,1,6,3,16,1,1,1,28,4,30,1,9,1,29,1,28,11,29,2,28,7,29,9,30,14,6,19,30,1,29,9,26,1,13,1,6,3,13,2,6,9,13,1,6,2,26,1,29,5,13,1,6,8,26,1,29,4,26,1,6,1,13,2,28,4,6,2,8,1,1,113,}, + {1,148,6,2,13,1,6,3,28,5,30,1,28,5,13,1,9,1,8,1,28,12,30,1,6,3,13,1,6,53,13,1,28,3,13,1,6,2,9,1,1,1,11,1,16,4,1,1,9,1,6,1,13,1,6,12,14,1,11,1,16,2,15,1,11,1,1,2,15,1,8,2,7,1,9,1,16,1,14,1,11,1,1,2,11,1,17,1,16,14,1,1,9,1,6,27,13,1,7,1,1,1,11,1,16,8,11,2,6,3,13,2,6,2,9,1,1,1,11,1,16,1,6,1,11,1,9,1,28,17,29,4,28,7,29,1,30,3,29,2,30,13,6,19,13,1,6,1,26,2,29,9,26,1,6,4,13,1,6,12,26,1,29,5,13,1,6,8,26,1,29,4,26,1,6,1,13,2,28,4,6,3,1,113,}, + {1,147,16,1,6,5,30,1,28,4,29,1,13,3,30,1,29,1,28,1,29,1,14,1,29,1,28,14,29,1,6,56,28,4,6,3,11,1,1,1,16,4,17,1,11,1,7,1,6,12,7,1,6,1,14,1,1,2,11,1,9,1,13,1,6,2,13,1,6,1,13,2,6,4,7,1,16,1,11,1,1,2,11,1,16,8,9,1,16,1,1,1,15,1,6,29,8,1,11,1,16,8,12,1,1,1,13,2,6,4,7,1,15,1,1,1,16,2,11,1,1,1,9,1,11,1,28,16,29,6,28,8,29,2,30,14,6,19,13,2,26,1,6,2,26,1,29,9,26,2,6,16,26,1,29,4,13,1,6,8,26,2,29,3,26,1,6,2,13,1,29,1,28,3,6,3,11,1,1,112,}, + {1,147,8,1,6,5,29,1,28,4,30,1,13,1,6,5,8,1,16,1,28,17,30,1,6,54,30,1,28,3,6,3,16,1,1,1,17,1,16,4,1,1,8,1,6,34,8,1,16,1,11,1,1,1,11,1,12,1,16,4,17,1,1,1,16,1,6,20,13,1,6,10,1,1,16,8,1,1,9,1,6,1,13,1,6,4,9,1,1,1,16,3,9,1,15,1,1,1,11,1,13,1,28,14,29,8,28,9,29,1,30,13,6,19,13,2,26,1,6,2,13,1,26,1,29,8,26,2,6,6,13,1,6,9,26,1,29,4,13,1,6,9,26,1,29,3,26,1,6,3,30,1,28,3,30,1,6,2,16,1,1,112,}, + {1,146,11,1,6,6,28,5,30,1,6,6,16,1,8,1,28,18,30,1,6,54,28,3,30,1,13,2,7,1,1,2,16,4,11,1,8,1,6,37,7,1,16,1,11,1,1,2,11,1,1,1,11,1,8,1,6,30,13,1,6,1,11,2,16,6,1,1,16,1,6,1,13,2,6,4,1,1,12,1,16,2,17,1,11,4,13,1,28,14,29,7,30,1,29,1,28,6,29,2,28,2,29,1,30,10,6,26,26,1,29,9,26,1,6,5,13,1,6,3,8,1,11,2,1,1,17,1,13,1,6,1,13,1,29,4,13,1,6,7,13,1,6,1,26,1,29,3,26,1,6,3,30,1,28,3,30,1,6,2,13,1,1,112,}, + {1,146,16,1,13,2,6,3,30,1,28,4,30,1,6,3,13,3,6,1,14,1,7,1,28,19,6,45,7,2,13,2,6,4,13,1,28,4,13,2,7,1,11,1,1,1,16,4,1,1,13,2,6,32,13,2,6,1,13,1,6,2,13,3,8,1,13,1,6,27,13,1,6,6,7,1,1,1,15,1,16,4,11,1,14,1,6,3,30,1,6,1,13,1,9,1,11,1,1,6,15,1,30,1,28,16,29,3,28,1,29,6,28,10,29,2,30,7,6,23,13,2,6,2,13,2,29,8,30,1,6,6,13,1,6,1,16,1,1,1,11,1,16,1,9,1,11,2,7,1,6,1,26,1,29,3,30,1,6,7,13,1,6,2,26,1,29,2,30,1,6,4,28,4,6,1,13,1,6,1,11,1,1,111,}, + {1,146,8,1,6,5,28,5,30,1,6,6,7,1,14,1,30,1,28,20,7,1,6,41,13,1,11,1,1,2,13,1,6,6,28,4,30,1,13,1,30,1,16,1,1,1,11,1,16,2,15,1,1,1,6,13,13,1,6,20,13,4,6,1,13,2,6,1,13,2,6,1,13,1,6,5,13,2,6,11,13,1,9,1,16,1,15,1,14,2,15,1,8,1,6,1,13,1,6,6,9,1,1,2,11,2,1,1,16,1,6,1,13,1,6,2,9,1,11,1,1,6,15,1,6,1,28,18,29,4,28,1,29,5,30,2,28,3,29,1,28,3,29,2,28,2,29,1,30,6,6,6,13,1,6,16,13,3,6,1,13,1,6,1,26,1,29,8,6,3,26,2,13,1,6,1,13,1,1,1,16,4,9,1,14,1,1,1,7,1,26,2,29,2,30,1,6,2,26,1,6,4,13,1,6,2,26,1,29,2,30,1,6,4,29,1,28,3,6,1,13,1,6,1,12,1,1,111,}, + {1,145,11,1,7,1,13,1,6,3,30,1,28,5,13,3,6,4,16,1,9,1,28,21,29,1,6,23,13,2,6,2,13,2,6,12,14,1,11,1,16,1,11,1,14,1,6,3,13,1,6,2,29,1,28,3,30,1,6,2,7,1,1,2,16,2,11,1,15,1,6,1,13,1,6,4,13,1,6,2,13,1,6,49,7,2,9,1,11,1,1,1,11,7,1,1,15,1,6,4,13,1,6,2,13,2,9,3,8,1,6,2,13,1,14,1,1,6,14,1,13,1,28,20,29,15,28,2,29,2,28,2,29,3,28,2,29,1,30,4,26,2,6,2,13,2,26,1,6,11,13,1,6,7,13,2,26,1,6,1,26,1,29,7,26,1,13,1,6,2,26,1,6,2,8,1,11,1,16,6,11,1,16,1,6,1,26,1,29,2,26,1,6,11,29,2,26,1,6,2,26,1,6,1,30,1,28,3,30,1,6,2,9,1,1,111,}, + {1,145,16,1,6,1,13,1,6,2,13,1,28,5,30,1,6,2,13,1,6,4,11,1,9,1,28,22,6,30,7,1,13,2,8,7,7,1,1,1,16,3,1,1,7,1,6,5,30,1,28,4,6,3,11,1,1,1,16,2,1,1,8,1,6,9,8,1,6,49,9,1,1,1,11,1,15,1,16,9,11,2,13,1,6,2,13,1,6,8,13,1,8,1,1,3,11,1,1,1,11,1,9,1,28,10,29,1,28,12,29,17,28,4,29,3,28,3,29,2,26,1,6,20,13,1,6,8,13,1,6,1,13,1,26,1,29,7,26,1,6,5,7,1,1,1,16,6,17,1,1,1,6,1,26,1,29,2,26,1,6,10,13,1,30,1,29,2,6,5,28,3,29,1,6,3,1,2,28,1,1,108,}, + {1,145,7,1,6,1,13,1,6,2,30,1,28,5,13,1,6,6,8,1,11,1,9,1,28,23,6,22,7,2,9,3,16,13,1,1,16,2,9,1,1,1,16,1,9,1,8,1,7,1,13,2,6,1,28,4,13,1,6,2,11,1,1,1,17,1,11,1,17,1,6,10,9,1,6,48,8,1,1,1,15,1,16,9,9,3,15,1,14,1,13,3,6,6,13,2,6,1,11,1,1,3,15,1,30,1,28,11,13,1,15,1,28,11,29,14,30,4,28,2,29,3,28,2,29,3,28,1,29,2,26,1,6,21,7,5,6,1,13,2,6,3,26,1,29,2,26,1,29,4,13,1,6,4,7,1,1,1,16,4,11,1,1,2,16,1,6,1,26,2,29,1,30,1,6,11,13,1,26,1,29,1,26,1,6,1,13,1,6,1,26,1,30,1,28,3,13,1,6,2,16,1,1,110,}, + {1,144,11,1,6,5,29,1,28,4,30,1,6,4,7,1,6,2,9,1,15,1,9,1,29,1,28,22,30,1,6,18,8,1,9,1,16,19,1,1,16,3,1,1,15,1,16,5,9,1,29,1,28,3,6,3,16,1,1,1,11,1,1,1,7,1,6,9,13,1,9,1,6,48,11,1,15,1,16,3,9,1,16,1,9,2,7,1,6,16,13,2,6,1,1,3,30,1,28,12,13,1,15,2,28,9,29,1,28,1,29,13,30,5,29,1,28,3,29,1,28,2,29,7,30,1,6,19,9,1,11,1,1,3,11,1,6,1,30,1,13,1,6,3,30,1,26,1,29,1,26,1,29,4,26,1,6,1,13,1,6,1,13,1,6,1,1,1,16,4,1,1,7,1,6,1,7,1,6,1,26,2,29,2,13,1,6,11,26,1,29,1,26,1,6,1,13,1,6,1,26,1,6,1,28,3,30,1,6,2,8,1,1,110,}, + {1,144,8,1,6,4,13,1,28,5,6,8,11,1,16,1,9,1,29,1,28,23,6,1,13,1,6,12,13,1,9,2,16,7,9,5,8,2,13,1,7,7,9,1,1,3,17,1,6,6,13,1,28,4,30,1,6,2,9,1,1,2,14,1,6,10,9,1,8,1,6,47,13,1,11,1,17,1,16,3,9,1,8,1,6,22,15,1,1,2,8,1,28,11,30,1,15,2,16,1,28,9,29,1,28,1,29,13,30,7,29,1,28,2,29,9,28,1,26,2,13,1,6,2,26,1,6,12,15,1,1,1,15,1,16,3,11,1,16,1,6,6,13,1,26,1,29,6,13,2,6,3,11,1,15,1,16,3,11,1,9,1,6,2,13,3,26,1,29,1,6,1,13,1,6,10,13,1,30,1,26,1,13,2,6,3,29,1,28,2,30,1,6,3,11,1,1,109,}, + {1,144,6,1,13,1,6,3,29,1,28,4,29,1,6,5,13,2,6,1,1,1,9,1,16,1,28,24,30,1,6,11,13,1,8,1,9,2,8,2,7,3,13,1,6,16,13,1,6,1,7,1,8,1,7,1,6,1,13,2,6,1,13,1,6,2,13,1,28,4,29,1,13,2,8,1,1,2,6,10,13,1,16,1,13,1,6,46,13,1,6,1,8,1,1,1,15,1,9,1,13,1,6,22,13,2,8,1,1,2,11,1,28,11,9,1,16,3,28,9,29,1,28,1,29,12,30,1,29,1,30,1,29,1,30,1,29,1,30,3,29,14,26,1,13,2,6,12,8,1,1,1,16,5,11,1,15,1,6,7,26,1,30,1,29,5,26,1,13,2,6,2,16,1,11,1,16,3,12,1,1,1,6,1,30,1,13,1,6,2,13,1,30,1,6,1,13,1,6,10,13,2,6,1,13,1,26,2,6,2,30,1,28,2,29,1,6,3,16,1,1,109,}, + {1,143,16,1,13,2,6,3,28,5,30,1,6,7,8,1,1,1,9,1,15,1,29,1,28,23,29,1,6,19,13,5,6,9,13,4,6,3,13,1,6,2,13,4,6,2,13,1,29,1,28,3,29,1,6,1,13,2,1,2,7,1,6,8,13,2,16,1,6,47,13,1,6,2,8,1,9,1,7,1,6,7,13,3,6,13,13,2,6,1,11,1,1,2,30,1,28,9,13,1,15,1,16,2,9,1,28,9,29,1,28,1,29,12,30,1,29,5,30,4,29,14,26,1,13,2,6,11,9,1,11,1,16,5,11,1,16,1,6,2,26,1,13,1,6,5,26,1,29,5,13,1,6,1,13,1,6,1,8,1,11,1,16,4,11,2,13,1,26,1,6,2,13,1,26,1,6,1,13,2,6,10,13,1,6,1,13,1,26,2,6,3,29,1,28,2,6,1,13,2,7,1,1,109,}, + {1,143,13,1,6,4,30,1,28,5,6,6,13,1,6,1,9,1,11,1,9,1,15,1,29,1,28,24,30,1,6,30,13,2,6,2,13,2,6,6,13,4,6,3,29,1,28,4,6,2,13,1,1,2,7,1,6,9,8,1,16,1,6,79,9,1,1,2,11,1,28,9,9,1,16,3,9,1,28,9,29,18,30,7,29,2,28,1,29,11,26,1,13,1,6,2,13,3,6,6,13,1,1,1,16,1,9,1,16,3,1,1,8,1,6,1,13,1,6,7,26,2,29,4,26,1,13,1,6,2,7,1,11,1,16,5,11,1,1,1,16,1,8,1,6,5,13,1,6,16,13,1,6,1,30,1,28,2,30,1,6,3,11,1,1,108,}, + {1,138,33,1,1,3,15,1,13,1,6,4,28,5,30,1,6,8,11,1,17,1,8,1,17,1,29,1,28,25,6,18,13,3,6,28,29,1,28,4,13,1,6,2,1,2,16,1,6,9,9,2,6,80,11,1,1,2,30,1,28,8,16,3,15,1,6,1,28,9,29,14,30,13,29,1,28,1,29,12,26,1,13,3,6,8,15,1,11,1,16,3,11,2,6,1,13,2,6,8,13,1,26,1,29,3,26,2,6,3,9,1,11,1,16,6,11,1,1,2,9,1,6,3,13,1,6,16,13,1,6,1,13,1,29,1,28,2,6,3,8,1,1,108,}, + {1,142,29,1,6,1,13,1,6,2,29,1,28,5,6,1,13,1,6,7,1,1,16,1,9,1,11,1,29,1,28,25,6,18,13,7,6,1,7,1,8,3,9,13,8,1,7,3,6,2,30,1,28,4,6,3,11,1,1,1,16,1,13,1,6,8,16,1,9,1,6,80,7,1,1,2,15,1,28,7,30,1,15,1,16,1,15,2,28,10,29,14,30,13,26,1,29,12,28,1,29,1,26,1,13,2,6,2,13,1,6,6,15,1,1,1,11,3,7,1,6,2,13,1,6,4,13,3,6,2,13,1,26,1,29,3,26,1,6,4,16,1,1,2,11,1,16,6,1,1,13,1,6,19,13,1,6,2,13,1,28,2,6,4,11,1,1,107,}, + {1,141,13,1,28,2,13,1,6,2,28,5,6,1,13,1,6,7,7,1,1,1,9,2,11,1,28,26,30,1,6,19,13,2,9,3,16,21,15,1,16,1,9,2,28,4,6,3,11,1,1,1,11,1,6,8,13,1,16,1,8,1,6,81,16,1,1,1,11,1,30,1,28,6,30,1,16,2,15,1,9,1,28,10,29,14,30,14,26,2,29,13,26,2,6,2,13,1,6,7,8,1,15,1,16,1,6,6,13,6,6,3,26,3,29,1,30,1,13,1,6,5,8,1,11,1,12,1,16,5,11,1,16,1,6,22,13,1,30,1,28,1,29,1,6,3,9,1,1,107,}, + {1,141,28,4,30,2,28,4,29,1,6,9,8,1,1,1,9,2,11,1,29,1,28,26,6,9,13,4,6,2,13,1,8,1,9,2,16,14,9,12,8,1,9,1,8,1,13,1,28,4,6,3,11,1,1,1,11,1,6,8,8,1,16,1,13,1,6,63,13,2,6,15,7,1,6,1,11,1,1,1,15,1,28,6,13,1,16,1,15,1,14,1,29,1,28,10,29,13,30,15,6,2,13,1,29,14,13,3,6,12,13,1,6,6,7,1,6,2,26,1,6,3,13,2,26,1,29,1,30,1,6,6,16,1,11,1,16,6,11,1,13,1,6,22,13,1,28,2,6,3,7,1,1,107,}, + {1,140,13,1,28,10,30,1,13,1,6,7,13,1,9,1,11,1,9,2,11,1,6,1,28,26,6,12,13,2,9,1,16,3,9,4,8,3,13,2,7,1,6,20,30,1,28,4,6,3,11,1,1,1,11,1,6,8,9,1,16,1,7,1,6,10,13,2,6,71,1,1,11,1,28,6,6,1,16,1,15,1,8,1,28,11,29,13,30,14,6,4,26,1,29,13,26,2,6,11,30,1,13,1,30,1,7,1,6,1,7,1,9,1,16,2,8,1,6,8,26,2,6,7,8,1,11,1,16,6,11,1,6,24,13,1,28,1,30,1,6,2,13,1,16,1,1,106,}, + {1,139,11,1,28,10,29,1,6,8,13,1,6,1,11,2,9,2,11,1,6,1,28,26,30,1,6,8,13,1,6,2,13,3,6,10,13,1,6,1,13,2,6,19,30,1,28,4,6,3,11,1,1,1,11,1,13,1,6,7,16,2,7,1,6,10,13,2,6,46,13,1,9,1,14,1,1,1,14,1,6,9,13,1,9,3,13,1,26,1,30,1,13,1,6,3,9,1,1,1,9,1,28,5,30,1,16,1,9,1,28,12,29,13,30,14,13,1,6,3,30,1,26,3,29,12,6,6,13,2,6,2,13,4,8,1,11,1,1,1,11,3,1,1,11,1,6,1,13,2,26,2,6,3,26,2,6,1,13,1,6,2,13,1,6,1,7,1,1,1,16,5,12,1,11,1,6,25,30,1,29,1,6,1,13,2,7,1,12,1,1,105,}, + {1,139,30,1,28,10,13,2,6,2,13,2,6,5,1,1,11,1,9,2,11,1,8,1,28,27,6,8,13,7,6,2,13,2,6,3,13,8,6,5,13,2,6,10,30,1,28,4,6,2,13,1,11,1,1,2,6,5,13,1,6,1,7,1,16,2,6,11,13,1,6,22,13,1,6,20,13,1,6,3,9,1,1,1,17,1,16,1,11,1,10,1,6,7,16,1,1,1,11,3,1,1,11,1,8,1,6,2,13,2,6,1,16,1,11,1,28,5,29,1,9,1,28,11,29,16,30,13,6,7,26,1,30,1,29,12,6,2,26,2,6,9,1,1,17,1,16,5,11,1,16,1,6,5,9,1,11,2,16,1,8,1,6,1,13,1,6,4,15,1,1,1,11,4,1,1,9,1,13,1,6,4,13,1,6,20,29,1,6,1,13,1,6,3,16,1,1,3,5,1,1,100,}, + {1,134,33,1,1,3,15,1,28,10,30,1,6,11,1,1,16,1,9,2,16,2,28,27,6,9,13,7,6,7,7,4,6,20,30,1,28,4,13,1,6,1,13,1,11,1,1,2,6,7,8,1,16,1,9,1,6,8,13,1,6,2,9,1,6,21,7,1,13,1,6,1,13,1,6,18,13,1,6,3,11,1,12,1,16,2,11,1,9,1,6,6,8,1,1,1,16,5,17,1,1,1,8,1,6,1,13,1,6,1,13,1,7,1,15,1,8,1,28,17,29,16,30,13,6,7,13,2,26,1,29,12,26,2,6,9,8,1,1,1,9,1,16,6,1,1,9,1,6,1,7,1,16,1,11,2,15,2,11,3,9,1,13,1,6,4,8,1,9,1,16,2,9,1,13,1,6,6,13,1,6,20,13,1,6,4,13,1,6,1,9,1,1,103,}, + {1,138,30,1,28,11,29,1,13,1,6,8,7,1,1,1,7,1,28,1,29,1,9,1,12,1,28,27,30,1,6,11,30,1,6,1,7,1,13,1,8,1,9,2,16,13,9,3,8,1,13,1,7,1,6,2,30,1,6,6,30,1,28,4,13,1,6,1,13,1,11,1,1,2,13,1,6,6,9,1,16,1,9,1,6,8,13,1,6,2,9,1,6,21,8,1,13,1,6,20,13,1,6,3,11,2,9,1,16,1,11,1,9,1,6,6,15,1,11,1,16,6,17,1,11,1,13,1,6,2,13,2,6,1,14,1,28,17,29,16,30,12,6,8,13,3,26,1,29,1,28,1,29,10,26,1,13,1,6,9,1,1,16,7,15,1,1,3,11,1,16,6,12,1,11,2,13,5,7,1,6,1,7,2,6,28,13,1,6,7,8,1,1,102,}, + {1,137,16,1,6,1,13,1,29,1,28,11,6,7,13,1,8,1,1,1,6,1,28,2,7,1,17,1,28,27,29,1,6,8,7,2,9,2,16,24,15,2,16,1,9,1,8,1,13,2,6,3,30,1,28,4,13,1,6,1,13,1,11,1,1,2,13,1,6,6,16,2,8,1,6,10,7,1,8,1,6,21,9,1,13,1,6,24,13,1,11,2,14,1,11,1,8,1,6,4,7,1,6,1,14,1,11,1,15,1,16,6,1,1,8,1,6,4,13,1,9,1,29,1,28,15,29,15,30,14,6,8,13,1,6,3,26,2,29,8,26,1,29,2,26,1,6,7,13,1,6,1,11,1,16,20,11,2,13,2,6,1,13,1,6,1,13,2,6,12,7,2,6,17,13,1,6,6,8,1,1,71,26,1,1,3,11,1,1,25,}, + {1,136,11,1,6,3,13,2,28,11,13,2,6,4,13,1,9,1,1,1,6,1,28,2,6,1,11,1,28,28,6,5,13,1,8,1,9,1,16,10,9,9,8,6,13,2,7,1,13,7,6,3,30,1,28,4,6,2,13,1,11,1,1,2,6,5,13,2,16,2,13,1,6,10,8,1,13,1,6,21,9,1,7,1,6,26,9,1,14,1,9,1,6,1,13,1,6,5,13,1,14,1,11,1,1,1,15,1,16,3,11,1,1,1,7,1,6,2,16,1,11,1,14,1,28,17,29,15,30,12,6,1,30,1,6,8,26,1,6,4,13,1,26,2,29,6,26,1,29,3,30,1,13,1,30,1,26,1,6,5,16,1,11,1,16,20,1,1,13,1,6,4,13,2,6,10,9,1,11,1,1,2,9,1,6,21,13,1,6,2,8,1,1,66,11,2,1,2,11,1,17,1,16,2,11,1,1,17,11,1,17,1,11,1,1,5,}, + {1,136,7,1,6,1,13,1,6,2,29,1,28,12,30,1,13,1,6,3,13,1,16,1,1,1,29,1,28,2,29,1,1,1,29,1,28,27,6,2,13,1,8,1,9,5,8,2,13,2,7,4,6,29,30,1,28,4,13,1,6,1,13,1,1,3,6,6,8,1,16,2,6,11,9,1,6,21,13,1,16,1,6,24,13,1,6,6,13,1,6,8,9,1,1,1,16,2,11,2,7,1,8,1,17,1,1,2,9,1,28,18,29,15,30,12,6,1,30,1,6,15,13,1,26,1,29,10,26,2,6,6,7,1,1,1,16,19,11,2,6,16,14,1,1,1,15,1,16,2,1,1,8,1,6,14,13,1,6,5,13,1,6,2,13,1,8,1,1,60,12,1,1,5,14,1,9,1,8,1,9,2,16,1,1,11,11,1,1,3,11,1,15,1,16,1,9,2,11,1,1,6,}, + {1,135,9,1,6,2,13,2,30,1,28,5,13,1,28,8,30,1,6,3,13,1,11,1,1,1,29,1,28,2,29,1,1,1,29,1,28,27,6,2,13,2,6,7,13,3,6,1,30,1,6,5,13,5,6,2,13,5,6,13,29,1,28,4,13,1,6,1,13,1,1,3,6,6,9,1,16,2,6,11,16,1,6,21,13,1,9,1,6,24,13,1,6,3,13,1,6,1,13,1,6,9,7,1,11,1,15,1,16,1,1,1,7,1,11,1,1,2,11,1,29,1,28,6,29,1,28,12,29,15,30,12,6,1,30,1,6,10,26,3,6,2,13,1,6,1,13,1,26,1,29,6,26,1,29,2,26,1,6,7,16,1,1,1,11,1,16,15,11,1,1,1,16,1,6,16,9,1,11,1,16,1,9,1,16,2,17,1,14,1,6,1,13,1,6,13,13,1,9,1,8,1,13,1,7,1,6,2,13,1,6,2,9,1,1,61,14,1,8,1,6,1,30,1,13,1,9,3,11,1,1,6,17,1,1,6,11,1,9,1,13,2,9,2,16,1,1,1,26,1,1,6,}, + {1,134,15,1,13,2,6,2,13,1,28,5,6,4,30,1,28,6,30,1,6,3,11,1,1,1,28,4,1,1,6,1,28,27,29,1,6,21,13,3,6,3,13,11,6,3,13,2,6,1,13,1,30,1,28,4,6,2,7,1,1,2,11,1,6,6,16,3,13,2,6,8,7,1,9,1,13,1,6,20,9,2,13,1,6,4,13,2,6,21,13,1,9,3,8,1,7,1,6,4,26,1,6,1,7,1,16,1,11,1,17,1,1,4,14,1,28,7,29,1,16,1,28,11,29,16,30,11,6,22,26,2,29,8,26,1,6,7,13,1,15,1,1,1,12,1,16,11,11,1,1,1,14,1,13,1,6,1,13,1,6,15,11,1,16,6,11,1,6,6,13,1,26,1,6,5,7,1,11,1,1,6,11,2,16,1,9,1,8,1,12,1,1,39,14,1,1,2,14,1,1,12,11,1,15,1,13,1,26,2,30,1,26,1,13,1,9,3,16,1,1,2,5,2,1,6,11,1,15,1,9,1,13,1,30,2,13,1,9,3,11,1,1,9,}, + {1,133,11,1,7,1,13,1,6,1,13,1,6,1,29,1,28,4,30,1,6,4,13,3,30,1,28,5,13,1,6,1,11,2,28,4,1,1,9,1,28,28,6,45,29,1,28,3,29,1,6,2,8,1,1,2,11,1,6,5,7,1,16,2,9,1,13,2,6,8,7,1,9,1,6,21,9,2,6,5,13,2,6,23,13,1,9,2,16,1,9,2,8,1,6,3,16,1,1,1,11,1,1,2,11,2,13,1,28,8,16,1,15,1,29,1,28,10,29,15,30,12,6,22,26,1,13,1,26,2,29,7,26,1,13,1,6,3,26,1,13,1,6,2,9,1,11,1,16,9,12,1,11,2,7,1,6,3,13,1,6,15,15,1,11,1,16,5,11,1,6,6,13,1,6,4,7,1,16,1,1,63,11,1,14,1,9,1,13,1,30,5,26,1,13,1,25,1,9,3,15,1,11,1,1,6,11,1,15,1,9,1,13,1,30,4,13,1,9,4,15,1,1,11,}, + {1,128,5,1,1,4,8,1,6,3,13,1,30,1,28,4,29,1,13,1,6,4,13,3,6,2,13,1,30,4,13,1,11,2,28,4,11,1,12,1,28,1,29,1,28,26,6,14,13,7,6,1,7,2,13,1,8,2,9,10,8,3,7,2,6,3,28,4,29,1,6,2,8,1,1,2,11,1,6,5,13,1,16,2,9,1,13,1,6,9,8,2,6,21,16,1,8,1,6,4,8,1,13,1,6,25,7,1,6,1,13,1,9,1,16,3,9,1,8,1,1,5,14,1,29,1,28,8,8,1,15,1,16,1,30,1,28,10,29,14,30,12,6,24,26,5,29,6,26,1,6,2,26,2,13,1,6,1,7,1,16,1,11,1,16,8,11,2,9,1,6,4,13,2,6,15,8,1,1,1,15,1,16,3,17,1,14,1,6,11,16,1,1,4,11,2,1,50,11,2,15,1,16,1,9,1,13,1,30,2,29,1,30,6,26,1,25,1,9,5,11,4,15,1,9,1,13,4,30,4,26,1,13,1,9,4,16,1,11,1,1,1,15,1,1,10,}, + {1,132,9,1,13,1,6,3,30,1,28,5,13,4,6,7,13,3,6,1,13,1,6,1,1,2,28,3,29,1,12,1,11,1,28,28,6,17,13,2,9,2,16,23,9,1,30,1,28,3,30,1,6,2,9,1,1,2,11,1,6,5,8,1,16,2,8,1,13,1,6,9,9,1,13,2,6,19,7,1,16,1,7,1,6,3,8,1,9,1,6,26,7,1,6,3,7,1,8,1,9,1,16,1,11,1,1,4,8,1,28,9,29,1,15,3,8,1,28,10,29,14,30,12,6,25,13,1,6,2,13,1,26,3,29,4,26,2,6,5,11,1,16,8,11,2,7,1,6,5,13,1,6,17,9,1,1,1,14,1,16,2,1,1,8,1,6,8,13,2,8,1,1,4,16,1,9,3,30,1,13,2,8,1,13,1,9,1,16,1,12,1,11,2,1,28,11,3,14,1,15,1,9,1,25,1,13,1,26,2,30,3,29,1,28,4,29,1,30,1,26,1,30,2,26,1,25,1,9,6,12,1,1,1,15,1,13,2,30,1,29,1,28,1,30,6,13,1,9,6,11,1,1,14,}, + {1,131,14,1,6,1,13,2,6,2,28,5,30,1,6,2,13,2,6,13,1,2,28,4,9,1,1,1,29,1,28,27,29,1,6,12,7,1,13,1,9,1,16,18,9,11,30,1,29,2,28,1,13,1,6,2,9,1,1,2,15,1,6,5,9,1,16,2,8,1,6,10,9,1,6,21,13,1,16,1,7,1,6,3,9,1,8,1,7,1,6,16,13,2,6,7,7,1,6,6,9,1,1,2,11,2,30,1,28,10,13,1,15,3,8,1,28,9,29,16,30,11,6,9,13,1,6,2,7,1,6,1,7,1,6,5,7,1,6,1,7,1,6,4,13,1,6,1,13,1,26,3,30,1,29,3,26,1,13,1,6,3,9,1,11,1,16,8,1,1,7,1,13,1,6,24,7,1,11,1,1,2,14,1,6,1,13,2,6,6,13,1,6,1,1,3,11,1,9,5,30,5,29,1,30,3,26,1,30,3,29,2,30,2,13,1,30,1,13,6,30,1,13,1,30,5,26,1,30,2,29,1,30,6,26,1,30,1,28,9,30,1,13,1,30,3,26,1,25,1,9,7,15,1,1,1,15,1,28,5,30,4,26,1,13,1,9,7,11,1,1,16,}, + {1,130,14,1,29,1,13,2,6,2,29,1,28,4,30,1,13,1,6,16,13,1,1,1,11,1,28,4,7,1,1,1,6,1,28,28,6,10,13,1,9,1,16,3,9,6,8,2,13,2,7,4,6,15,28,4,6,1,13,1,6,1,16,1,1,2,16,1,6,5,9,1,16,2,13,1,6,9,7,1,9,1,6,21,9,1,16,1,6,3,8,1,30,1,29,1,6,22,13,1,8,1,9,1,8,1,13,1,6,6,11,1,1,2,16,1,28,12,16,2,15,2,13,1,28,9,29,16,30,11,6,22,8,1,15,1,16,1,8,1,6,2,13,1,6,4,13,1,26,3,30,1,13,1,6,3,11,1,15,1,16,7,17,1,11,1,6,1,13,1,6,27,7,1,6,2,13,1,6,6,13,1,6,1,9,1,1,3,9,6,30,4,26,1,28,6,29,4,30,14,29,2,28,18,30,1,26,1,30,3,26,1,13,1,25,1,9,8,14,1,11,2,28,3,29,1,30,4,13,2,9,7,16,1,14,1,1,2,11,1,1,15,}, + {1,129,14,1,28,2,13,1,6,2,30,1,28,4,30,1,13,1,6,10,13,2,6,5,13,1,1,1,11,1,28,4,29,1,1,1,9,1,28,28,6,9,8,2,13,3,6,6,13,1,6,13,13,1,6,9,28,4,6,3,14,1,1,2,9,1,6,4,13,1,16,3,7,1,6,9,13,1,9,1,6,21,9,1,16,1,6,3,14,1,28,2,29,1,6,15,13,1,6,7,13,1,9,1,16,1,15,1,9,2,13,3,14,1,1,1,11,1,15,1,28,12,16,2,15,1,16,1,30,1,28,9,29,16,30,11,6,10,9,1,11,2,15,1,8,1,7,1,6,3,13,1,6,1,16,1,1,1,11,2,1,1,11,1,7,1,6,7,26,2,30,1,6,3,8,1,1,1,16,8,17,1,15,1,6,1,13,3,6,20,13,1,6,4,7,1,6,2,13,2,6,2,13,1,6,1,13,2,6,1,11,1,1,2,17,1,9,6,13,1,30,6,28,37,29,1,30,5,26,1,13,2,9,9,16,1,11,1,1,2,9,1,30,2,26,1,30,1,26,2,13,1,9,9,16,1,11,1,1,20,}, + {1,129,29,1,28,2,30,1,6,1,30,1,28,4,29,1,6,1,13,1,6,17,8,1,1,1,11,1,28,4,29,1,1,1,17,1,28,28,6,43,13,1,28,4,6,3,11,1,1,2,9,1,6,2,13,1,6,1,7,1,16,3,13,1,6,1,13,1,6,7,8,1,9,1,6,21,16,1,9,1,6,2,9,1,6,1,28,3,30,1,6,14,13,1,9,3,8,1,7,1,6,5,7,1,9,1,16,3,9,2,1,3,8,1,28,11,16,3,14,1,29,1,28,7,29,18,30,9,6,7,13,1,6,3,9,1,1,1,16,1,15,1,11,1,1,2,11,1,14,2,11,1,1,1,11,1,16,4,17,1,1,1,9,1,6,12,15,1,17,1,16,8,11,1,9,1,13,2,6,14,13,3,6,5,13,1,9,2,8,2,7,1,6,6,26,1,13,4,1,3,9,8,30,10,29,1,28,25,29,1,30,3,26,1,30,4,13,2,9,12,14,1,11,1,1,1,11,1,9,1,30,3,13,2,9,11,12,1,11,1,1,3,33,1,1,18,}, + {1,128,29,1,28,4,30,1,28,5,6,20,8,1,1,1,11,1,28,5,11,1,1,1,28,28,30,1,6,42,30,1,28,4,6,2,13,1,11,1,1,2,8,1,6,3,13,2,16,3,6,1,13,1,6,8,9,2,6,21,16,1,9,1,6,2,1,1,28,1,29,1,28,3,6,15,30,1,13,1,8,1,16,1,15,1,16,1,9,1,13,1,6,5,8,1,16,3,11,1,1,2,11,1,6,1,28,10,15,1,16,2,15,1,28,11,29,12,30,11,6,3,30,1,6,3,26,1,13,1,6,3,1,1,12,1,16,5,15,1,11,1,17,2,16,8,1,1,7,1,6,11,1,1,16,9,11,1,16,1,6,1,13,1,6,12,30,1,6,3,13,1,9,1,11,1,1,11,11,1,17,1,8,1,7,1,6,2,13,1,6,1,8,1,1,3,9,9,30,11,26,2,13,1,26,2,30,1,26,1,30,6,29,1,30,2,26,1,30,2,26,2,30,2,26,1,30,3,26,1,13,2,9,14,12,1,11,1,1,2,11,1,8,1,30,1,13,1,9,14,11,1,1,25,}, + {1,127,13,1,28,10,13,1,6,20,7,1,1,2,28,5,17,1,1,1,29,1,28,27,29,1,6,42,30,1,28,4,6,2,13,1,1,3,7,1,30,1,6,3,8,1,16,3,6,10,9,1,8,1,6,20,7,1,16,1,9,1,6,1,9,2,29,1,28,4,30,1,6,19,9,1,15,2,16,1,9,1,13,1,6,4,8,1,9,1,16,1,11,1,1,2,11,1,29,1,28,9,15,1,16,1,15,1,13,1,28,9,29,9,30,15,6,2,30,4,6,3,13,1,6,3,11,1,17,1,16,17,11,1,16,1,6,10,13,1,1,1,16,9,11,1,9,1,6,1,13,1,6,13,9,1,16,1,1,19,11,1,9,1,7,1,6,1,9,1,1,2,11,1,9,9,13,1,30,11,26,1,30,19,26,1,13,2,8,1,9,16,15,1,11,1,1,3,11,1,9,15,16,1,11,1,1,28,}, + {1,126,13,1,28,10,6,2,13,1,6,19,7,1,1,1,11,1,28,5,9,1,1,1,8,1,28,27,29,1,6,40,13,1,6,1,30,1,28,3,29,1,6,1,7,1,13,1,1,3,28,4,29,1,9,1,16,2,9,1,6,10,9,1,8,1,6,20,13,1,16,1,8,1,6,1,11,1,6,1,28,6,6,21,8,1,16,2,15,1,16,1,8,1,13,1,6,3,7,1,10,1,11,1,1,2,11,1,28,9,15,3,29,1,28,6,29,14,30,16,6,10,8,1,1,1,15,1,16,17,11,1,6,11,11,1,16,9,11,1,8,1,13,1,6,12,8,1,14,1,11,4,1,20,11,1,16,1,1,3,9,11,26,1,30,21,26,2,13,2,25,1,9,19,15,1,14,1,11,1,1,4,17,1,9,14,16,1,11,1,1,31,}, + {1,125,13,1,28,10,30,1,6,22,8,1,1,1,11,1,28,5,7,1,1,1,11,1,28,28,6,42,30,1,28,3,30,1,6,2,13,1,1,3,28,5,9,1,16,2,7,1,28,1,29,1,30,1,6,6,7,1,16,1,13,1,6,20,8,1,16,1,7,1,13,1,11,1,29,1,28,6,30,1,6,22,13,1,9,1,16,1,15,1,16,1,8,1,6,5,14,1,1,2,11,1,29,1,28,7,9,1,15,1,13,1,28,11,29,1,28,2,29,9,30,12,6,5,13,3,6,5,9,1,1,1,14,1,16,16,1,1,13,1,6,10,16,1,11,1,16,8,1,1,7,1,6,15,30,3,6,2,13,2,8,1,9,1,16,2,11,1,1,17,9,13,13,1,26,1,30,6,26,2,13,4,25,1,9,26,16,1,11,1,1,5,11,1,16,1,9,13,15,1,11,1,1,34,}, + {1,124,13,1,28,10,30,1,13,1,6,22,9,1,1,1,11,1,28,6,1,2,28,28,6,42,30,1,28,3,30,1,6,2,13,1,1,3,28,5,16,3,29,1,28,6,29,1,6,1,13,2,16,1,13,1,6,20,9,1,16,1,7,1,15,1,16,1,28,7,29,1,6,20,13,1,6,4,9,1,16,2,9,1,8,1,6,1,13,3,16,1,1,1,11,1,14,1,28,7,30,1,9,1,28,11,29,17,30,8,6,1,30,2,6,2,13,2,6,7,8,1,11,2,16,15,1,1,13,1,6,10,8,1,1,1,16,6,15,1,1,1,16,1,6,16,30,2,29,1,28,8,30,1,6,1,8,1,16,1,11,1,1,13,9,50,15,1,11,1,1,6,11,1,16,1,9,11,16,1,15,1,11,1,1,38,}, + {1,123,16,1,28,12,13,2,6,21,8,1,1,2,28,5,29,1,11,1,1,1,6,1,28,2,29,1,28,24,6,42,29,1,28,3,13,1,6,2,9,1,1,3,28,5,16,3,28,10,29,1,16,1,30,1,6,20,9,1,16,1,7,1,11,1,6,1,28,8,6,27,8,1,16,1,15,1,9,1,13,1,6,3,9,1,1,2,16,1,28,16,29,6,28,15,29,6,26,7,13,2,6,8,16,1,1,1,11,1,16,13,11,1,13,1,6,11,17,1,11,1,16,4,11,1,1,1,9,1,6,22,13,2,6,1,30,1,28,6,30,1,7,1,9,1,11,1,1,10,11,1,9,44,16,1,15,1,11,1,1,7,14,1,16,1,9,10,16,1,15,1,11,1,1,42,}, + {1,122,9,1,6,1,13,1,29,1,28,10,30,1,13,1,6,21,8,1,1,2,28,6,16,1,1,1,9,1,28,27,30,1,6,16,13,2,6,16,13,4,6,1,13,1,6,1,29,1,28,3,13,1,6,2,9,1,1,3,28,5,16,3,28,10,30,1,16,1,28,3,29,2,30,1,6,15,16,2,9,1,1,1,29,1,28,8,30,1,6,8,13,1,6,9,13,3,6,5,13,1,6,1,13,1,9,1,16,1,9,1,6,1,13,2,7,1,11,1,1,1,9,1,28,34,29,3,28,1,29,6,28,1,29,4,26,5,13,2,6,4,7,1,16,1,11,6,17,1,11,1,17,2,11,2,1,1,16,1,6,2,13,1,6,6,13,2,6,1,7,1,11,4,1,1,14,1,6,13,13,1,6,13,13,1,26,3,29,1,28,5,29,1,8,1,14,1,1,10,16,1,9,36,16,2,17,1,11,1,1,8,11,1,16,1,9,9,15,1,14,1,11,1,1,47,}, + {1,115,33,1,1,5,9,1,13,4,30,1,28,10,13,1,6,21,7,1,1,2,28,6,7,1,1,1,11,1,28,27,29,1,6,11,13,4,6,10,13,9,6,7,28,4,13,2,6,1,16,1,1,2,11,1,28,4,6,1,16,3,28,10,7,1,16,1,28,8,29,1,6,12,16,2,11,1,14,1,28,9,29,1,6,8,8,1,9,3,13,1,7,1,6,2,7,1,6,12,13,2,9,2,13,1,6,3,16,1,1,1,9,1,28,32,29,4,28,1,29,17,26,3,13,2,26,1,6,1,7,1,8,1,9,1,16,1,15,3,16,2,12,2,16,1,8,1,6,9,13,3,6,2,7,1,9,1,16,1,9,1,7,1,6,14,13,3,6,4,7,1,13,8,6,3,13,1,6,1,30,1,28,5,7,1,17,1,1,9,16,1,9,29,16,1,15,1,11,2,1,10,11,1,15,1,16,1,9,6,16,1,15,1,11,2,1,52,}, + {1,120,8,1,6,2,13,1,6,2,28,11,30,1,13,1,6,20,13,1,1,2,29,1,28,5,6,1,1,2,28,27,29,1,6,18,7,1,8,1,9,3,16,13,9,3,8,1,13,1,28,4,6,3,11,1,1,2,11,1,28,4,8,1,16,2,9,1,28,10,9,2,28,12,30,1,6,7,7,1,16,2,1,1,8,1,28,10,6,10,13,1,9,1,15,2,16,1,9,1,13,1,7,1,6,12,13,1,6,2,9,1,11,1,1,1,16,1,13,2,14,1,13,1,28,11,29,4,28,21,29,21,26,4,13,1,6,5,13,3,26,1,13,1,26,1,30,1,6,10,13,1,6,3,7,2,6,3,13,2,6,11,13,2,6,1,13,1,8,1,9,8,16,1,9,4,8,1,6,4,13,1,29,1,28,4,8,1,11,1,1,8,16,1,9,19,16,1,15,2,14,1,11,2,1,12,11,2,15,1,9,3,16,1,15,1,14,1,11,2,1,59,}, + {1,118,11,1,7,1,6,5,28,13,30,1,13,1,6,19,9,1,1,2,6,1,28,6,1,2,8,1,28,27,6,13,7,1,9,2,16,25,13,1,30,1,29,1,8,2,13,1,6,1,11,1,1,2,16,1,28,4,9,1,16,2,9,1,28,10,9,1,7,1,28,15,29,1,30,1,6,3,8,1,16,1,12,1,1,1,29,1,28,10,6,12,13,2,9,1,15,2,9,1,8,1,13,1,6,12,9,1,1,1,17,1,16,1,11,1,6,1,13,1,28,1,30,1,29,1,28,11,29,7,28,18,29,12,26,1,29,12,26,1,6,2,7,1,13,1,6,3,13,5,6,11,13,1,6,1,7,1,6,20,8,1,16,1,9,2,16,2,9,4,16,1,9,4,16,1,9,2,8,1,6,2,13,2,28,4,29,1,16,1,1,8,17,1,9,4,16,4,15,2,17,1,11,2,1,19,11,2,17,2,11,3,1,17,14,1,28,1,1,48,}, + {1,117,11,1,6,2,13,1,6,3,28,5,30,1,28,9,13,2,6,15,13,1,6,1,8,1,9,1,1,2,6,1,28,6,12,1,1,1,17,1,28,27,6,2,13,1,6,1,13,1,6,4,13,1,8,1,9,1,16,8,9,9,8,5,13,1,7,6,28,3,6,1,7,1,13,1,6,1,1,3,8,1,28,4,16,3,9,1,28,10,16,1,6,1,28,19,30,1,8,1,16,1,1,1,11,1,28,11,6,15,13,1,9,1,16,1,15,1,16,1,9,1,13,1,6,9,16,1,1,1,16,3,11,1,6,1,30,2,15,1,28,12,29,11,28,19,29,23,26,2,6,1,13,1,6,9,13,1,6,27,13,1,6,2,8,1,9,8,16,1,9,2,16,4,9,2,16,2,9,1,13,4,28,4,9,1,1,114,}, + {1,116,16,1,6,3,13,2,6,1,28,5,30,1,6,2,29,1,28,7,30,1,13,1,6,16,13,1,9,2,1,2,8,1,28,6,7,1,1,2,29,1,28,26,6,6,13,1,8,1,9,5,8,2,13,1,7,2,6,14,13,7,6,2,28,3,6,4,1,3,7,1,28,4,16,3,8,1,28,10,16,1,6,1,28,20,7,1,16,1,1,1,16,1,28,11,6,17,13,2,9,1,15,1,16,1,9,1,13,1,6,6,8,1,1,1,16,3,11,1,15,1,7,1,9,1,11,1,28,14,29,17,28,7,29,1,28,1,29,1,28,1,29,22,26,1,29,5,26,1,6,6,13,2,6,3,16,1,11,2,6,25,8,1,9,7,16,1,9,5,16,1,9,1,16,2,9,1,16,2,9,2,13,1,6,2,29,1,28,3,13,1,11,1,1,53,33,1,1,58,}, + {1,115,9,1,6,5,30,1,28,5,6,1,7,1,6,2,13,1,30,1,28,7,30,1,6,15,13,1,9,2,8,1,1,2,16,1,28,6,29,1,1,2,6,1,29,1,28,25,30,1,6,5,13,2,6,3,13,1,6,13,13,11,6,4,30,1,28,3,13,2,6,1,13,1,1,3,29,1,28,4,16,3,6,1,28,10,16,1,29,1,28,20,8,1,11,1,1,1,6,1,28,11,6,17,7,1,6,2,13,1,9,1,16,1,15,1,9,1,7,1,6,4,9,1,1,1,15,1,16,2,1,1,16,1,1,2,28,4,29,1,13,1,28,11,29,9,30,6,29,6,28,2,29,2,28,1,29,31,26,3,13,1,6,2,13,1,6,1,16,1,1,1,16,1,11,1,9,1,6,24,7,1,9,10,16,1,12,1,11,1,1,5,11,2,12,1,16,1,9,2,8,1,30,2,28,3,6,1,1,9,11,3,17,1,15,1,16,1,9,2,8,1,13,2,7,1,6,1,8,1,17,1,1,88,}, + {1,113,11,1,6,2,13,2,6,2,29,1,28,5,13,1,6,2,13,2,6,1,13,1,30,1,28,7,6,3,13,1,6,11,9,2,13,1,28,1,11,1,1,1,11,1,28,7,1,2,16,1,28,26,30,1,6,3,13,1,6,6,13,13,6,6,13,2,6,7,13,1,30,1,28,3,13,3,9,1,1,3,28,4,29,1,16,3,30,1,28,9,30,1,16,1,29,1,28,20,9,1,1,2,28,12,6,11,13,2,6,9,7,1,9,1,16,1,15,1,8,1,6,4,8,1,1,6,6,1,28,4,9,1,15,1,28,12,29,6,30,8,29,1,30,3,26,4,29,37,26,1,6,4,1,1,16,3,11,1,13,1,6,23,7,1,9,7,16,1,11,1,1,13,11,1,16,2,9,1,13,2,29,1,28,2,30,1,1,7,13,1,6,1,26,1,6,5,13,6,6,4,7,1,16,1,1,3,28,1,1,80,}, + {1,106,5,1,1,5,9,1,13,2,6,4,29,1,28,5,6,9,13,1,28,6,30,1,13,1,6,12,8,1,9,1,6,1,28,1,29,1,16,1,1,1,11,1,28,6,29,1,9,1,1,2,28,27,6,10,13,3,6,11,13,7,6,4,13,4,30,1,28,2,29,1,13,2,6,1,16,1,1,3,28,4,6,1,16,3,29,1,28,9,7,1,16,1,28,21,16,1,1,1,11,1,28,12,6,10,13,2,9,1,16,2,9,1,8,1,7,1,6,1,13,3,6,2,13,1,8,1,9,2,13,5,8,1,11,1,1,2,9,1,28,4,29,1,16,2,30,1,28,10,29,14,30,13,26,7,29,23,26,2,30,1,6,4,9,1,11,1,16,3,11,1,6,18,13,1,8,1,9,1,8,1,6,2,13,1,9,5,16,1,11,1,1,17,11,1,16,2,8,1,6,1,30,1,28,2,26,1,1,6,17,1,6,2,26,1,6,15,7,1,1,84,}, + {1,104,33,1,1,5,11,1,30,1,28,1,30,1,13,1,6,2,30,1,28,5,30,1,6,2,13,1,6,8,13,1,30,1,28,5,13,2,6,9,7,1,9,1,8,1,29,1,28,3,16,1,1,2,29,1,28,6,7,1,1,2,6,1,28,26,6,17,7,1,13,1,8,1,9,5,16,6,9,5,8,2,13,1,30,1,28,2,30,1,6,3,17,1,1,3,28,4,8,1,16,3,28,10,9,1,16,1,28,21,17,1,1,1,16,1,29,1,28,10,29,1,6,14,8,1,9,1,16,2,9,1,8,1,7,1,6,2,13,3,6,1,8,1,9,2,7,1,6,1,13,1,11,1,1,1,11,1,16,1,28,5,13,1,16,2,13,1,28,10,29,14,30,12,6,8,26,21,13,3,30,1,13,1,6,4,11,1,16,4,1,1,6,16,8,1,11,1,1,2,11,3,7,1,13,1,9,2,16,1,14,1,11,1,1,3,11,7,1,11,11,1,9,2,13,1,30,1,28,2,8,1,1,6,8,1,13,1,6,17,11,1,1,83,}, + {1,109,9,1,28,4,13,1,6,1,30,1,28,5,30,1,6,12,13,1,6,1,13,1,29,1,28,4,13,1,6,9,8,1,13,1,29,1,28,4,6,1,1,2,6,1,28,6,29,1,11,1,1,1,16,1,28,26,6,2,13,1,6,10,8,1,9,2,16,23,8,1,30,1,29,1,9,1,8,1,7,2,11,1,1,2,11,1,28,4,9,1,16,3,28,10,16,1,9,1,28,21,11,1,1,1,6,1,28,11,30,1,6,11,7,1,6,4,13,1,9,2,16,2,9,1,8,1,7,1,6,5,13,1,9,1,8,1,11,1,1,2,15,1,28,6,9,1,15,1,16,1,9,1,28,10,29,14,30,12,6,6,30,2,6,21,13,4,6,3,13,2,1,1,16,4,1,1,6,14,13,1,8,1,1,1,14,1,16,4,11,1,8,1,13,1,8,1,9,1,16,5,11,1,7,1,8,1,7,3,6,4,8,1,16,1,11,1,1,7,11,1,9,2,13,1,30,1,28,2,16,1,1,5,11,1,6,18,9,1,1,83,}, + {1,107,11,1,28,6,30,1,29,1,28,5,6,18,30,1,29,1,28,2,30,1,6,8,9,1,30,1,28,6,29,1,1,2,7,1,28,7,17,1,1,2,28,26,30,1,6,8,7,1,9,1,16,14,9,8,8,6,28,3,13,1,7,1,13,2,1,3,11,1,28,4,9,1,16,3,28,10,16,1,9,1,28,21,1,2,29,1,28,11,6,20,7,1,9,1,16,3,8,1,6,3,13,2,7,1,1,2,11,1,14,1,28,7,15,1,16,1,15,1,9,1,28,10,29,14,30,13,6,3,13,4,6,21,13,2,6,6,13,1,1,1,16,4,1,1,13,1,6,13,30,1,15,1,17,1,16,5,11,1,9,1,13,1,7,1,9,2,16,1,9,2,16,1,1,1,9,1,7,3,6,2,30,2,29,5,12,1,1,6,11,1,9,2,13,1,30,1,28,2,11,1,1,5,8,1,6,17,7,1,1,83,}, + {1,106,13,1,28,12,29,1,13,2,6,17,13,2,30,1,29,1,28,1,13,1,6,5,13,2,28,8,29,1,1,2,16,1,28,7,8,1,1,2,6,1,28,26,6,4,13,2,9,1,16,2,9,4,8,3,13,1,7,1,6,10,13,1,6,1,13,2,6,6,28,3,6,3,7,1,1,3,16,1,28,4,9,1,16,2,9,1,28,10,16,1,9,1,28,20,7,1,1,2,29,1,28,11,6,22,7,1,8,1,9,1,16,2,8,1,6,1,13,1,8,1,1,2,11,1,17,1,28,7,30,1,16,1,15,2,16,1,28,10,29,14,30,13,6,10,13,14,6,9,26,3,6,1,11,1,17,1,16,1,9,1,11,2,6,15,14,1,17,1,16,5,1,1,13,1,6,2,9,1,16,2,9,2,16,1,1,2,7,1,6,3,30,1,29,3,28,5,29,1,11,1,1,5,16,1,9,2,13,1,30,1,28,1,30,1,1,5,16,1,6,15,13,2,6,1,1,83,}, + {1,104,11,1,13,1,28,12,30,1,13,2,6,1,13,1,6,10,13,2,6,3,13,1,6,2,13,4,6,2,13,1,6,2,29,1,28,10,11,1,1,1,11,1,29,1,28,6,30,1,1,2,15,1,28,1,29,1,28,24,6,4,13,3,6,1,13,1,6,9,13,2,6,5,13,2,6,1,13,2,6,8,28,2,29,1,6,3,13,1,1,3,9,1,28,4,16,3,9,1,28,9,29,1,16,1,9,1,28,20,12,1,1,1,16,1,28,11,29,1,6,19,13,2,6,3,7,1,8,1,16,3,9,1,1,3,11,1,29,1,28,7,30,1,16,1,15,2,16,1,28,10,29,14,30,15,6,12,26,7,6,15,7,1,8,1,1,1,11,2,1,1,6,16,9,1,1,1,16,4,15,1,11,1,7,1,13,1,6,1,9,1,16,2,9,2,16,1,1,2,9,1,7,1,6,2,30,1,28,9,1,7,9,3,13,1,28,2,9,1,1,5,6,3,13,1,6,12,13,1,6,1,11,1,1,82,}, + {1,102,11,1,8,1,6,1,13,1,30,1,28,9,29,1,30,1,6,1,13,1,6,2,13,2,6,9,13,4,6,1,13,1,6,3,13,1,6,4,30,1,29,1,28,4,29,1,28,7,17,1,1,2,29,1,28,7,11,1,1,2,28,26,30,1,13,1,6,7,13,1,6,1,13,1,6,4,13,7,6,7,13,1,6,6,13,1,28,2,30,1,13,3,9,1,1,3,6,1,28,4,16,3,9,1,28,9,29,1,16,1,9,1,28,20,11,1,1,1,8,1,28,11,6,23,13,6,9,1,1,2,11,2,29,1,28,8,30,1,16,2,15,1,9,1,28,10,29,14,30,14,6,2,13,4,6,27,13,1,6,3,7,1,9,2,7,1,6,17,16,1,1,1,16,3,1,1,9,1,6,3,7,1,9,1,16,1,9,2,16,1,1,3,7,1,6,2,28,10,1,7,17,1,9,3,13,1,28,2,11,1,1,4,13,1,6,2,13,1,6,11,13,2,6,1,16,1,1,82,}, + {1,100,11,1,9,1,13,2,6,3,28,9,30,1,6,1,13,1,6,19,26,2,6,6,28,15,8,1,1,2,6,1,28,7,9,1,1,2,6,1,28,4,29,1,28,21,6,36,13,1,28,2,30,1,13,1,6,2,16,1,1,3,30,1,28,3,29,1,16,3,9,1,28,9,6,1,16,1,9,1,28,20,1,2,6,1,29,2,28,9,6,27,13,2,14,1,1,3,29,1,28,9,30,1,16,1,15,2,9,1,28,10,29,14,30,13,6,36,13,2,6,1,13,1,6,3,7,1,6,15,13,1,16,1,1,1,11,1,1,1,15,1,13,2,6,3,9,3,16,1,9,1,11,1,1,2,16,1,6,1,29,1,28,4,7,1,28,4,29,1,1,8,9,4,30,1,28,1,13,1,1,4,16,1,13,3,6,14,9,1,1,82,}, + {1,98,11,1,9,1,6,4,30,1,6,2,13,1,28,8,29,1,13,1,6,21,30,2,6,3,29,1,28,16,29,1,1,2,16,1,28,7,30,1,1,2,14,1,28,26,6,36,30,1,28,2,13,1,6,3,11,1,1,3,28,4,30,1,16,3,8,1,28,9,8,1,16,1,7,1,28,19,6,1,1,2,29,1,28,1,29,1,28,8,30,1,6,6,13,1,6,20,13,1,26,1,1,3,13,1,28,10,30,1,15,3,9,1,28,10,29,14,30,13,6,36,13,1,6,2,13,1,6,1,8,1,1,3,8,1,6,12,13,1,6,1,7,2,9,1,7,1,6,3,13,2,6,1,8,1,9,2,16,1,9,1,11,1,1,3,10,1,6,1,28,4,11,1,1,1,6,1,28,1,6,1,1,9,16,1,9,3,8,1,28,2,11,1,1,4,6,1,13,2,6,14,8,1,1,82,}, + {1,96,11,1,9,1,6,3,13,1,6,2,13,1,30,1,29,1,28,10,30,1,6,2,13,1,6,21,29,1,28,18,29,1,1,2,11,1,28,8,1,3,30,1,28,25,29,1,6,35,30,1,28,2,6,4,11,1,1,3,28,4,6,1,16,3,8,1,28,9,8,1,16,1,7,1,28,19,17,1,1,1,11,1,28,11,6,7,13,3,6,19,30,1,11,1,1,2,11,1,29,1,28,9,29,1,15,3,9,1,28,10,29,14,30,11,6,42,13,1,1,1,15,1,16,1,15,1,11,1,6,15,9,1,8,1,6,3,13,1,6,3,7,1,9,4,16,1,1,4,6,1,29,1,28,3,1,14,11,1,9,4,13,1,28,1,7,1,1,4,7,1,13,1,6,15,13,1,1,82,}, + {1,94,11,1,9,1,6,7,13,1,30,1,28,12,29,1,6,1,13,2,6,19,28,22,11,1,1,2,28,8,16,1,1,2,8,1,28,26,6,35,29,1,28,2,13,1,6,2,7,1,1,3,11,1,28,4,7,1,16,3,7,1,28,9,9,1,16,1,6,1,28,19,1,2,16,1,28,11,6,8,13,1,9,4,13,2,6,15,7,1,11,1,1,2,11,1,29,1,28,9,15,3,6,1,28,10,29,14,30,10,6,5,13,2,8,4,9,9,8,2,13,1,7,1,6,10,13,1,6,8,9,1,11,1,16,3,1,1,6,11,13,1,7,1,6,1,11,2,1,1,11,1,9,1,6,6,8,1,16,1,9,3,11,1,1,4,6,1,29,1,28,2,1,15,9,5,30,1,28,1,11,1,1,3,8,1,13,2,6,10,13,1,6,3,13,1,1,82,}, + {1,4,17,1,9,1,11,2,1,84,15,1,13,4,6,5,30,1,28,6,6,1,13,1,28,7,13,1,6,18,30,1,28,24,9,1,1,2,8,1,28,7,6,1,1,2,17,1,28,26,6,35,28,2,29,1,6,3,7,1,1,3,11,1,28,4,9,1,16,3,6,1,28,9,9,1,16,1,29,1,28,19,1,2,8,1,28,10,30,1,6,11,8,1,9,1,16,2,9,2,7,1,6,6,13,1,6,6,7,1,11,1,1,1,11,2,30,1,28,8,8,1,16,1,15,1,29,1,28,10,29,14,30,10,6,1,13,2,8,1,9,21,8,1,13,2,6,15,15,1,11,1,16,3,1,1,6,13,14,1,11,1,16,2,15,1,1,1,16,1,6,6,9,4,16,1,1,5,30,1,28,2,11,1,1,10,11,1,1,3,16,1,9,4,13,1,28,1,8,1,1,3,9,1,6,12,29,1,6,3,13,1,1,82,}, + {1,5,16,1,29,1,9,1,14,1,1,80,11,1,9,1,6,2,13,1,6,1,13,5,26,1,28,6,30,1,13,2,6,1,13,1,28,6,29,1,13,1,6,2,13,1,6,12,29,1,28,26,6,1,1,2,11,1,29,1,28,7,1,3,6,1,28,25,30,1,6,34,28,2,30,1,6,1,13,2,9,1,1,3,16,1,28,4,9,1,16,3,30,1,28,9,9,1,16,1,29,1,28,18,8,1,1,2,6,1,28,10,6,8,13,1,6,5,13,1,9,1,16,1,15,1,16,1,9,1,8,1,7,1,6,1,13,1,6,6,13,2,6,1,7,1,15,1,1,3,30,1,28,7,30,1,16,1,9,1,28,11,29,14,30,7,6,1,13,1,8,2,9,28,8,1,7,1,6,12,15,1,11,1,16,2,11,1,15,1,6,12,8,1,1,1,16,5,1,1,8,1,6,5,13,1,9,2,16,2,11,1,1,5,6,1,28,1,1,10,11,1,8,1,1,3,15,1,9,4,8,1,30,1,29,1,11,1,1,2,15,1,6,12,28,1,6,3,13,1,1,82,}, + {1,5,14,1,16,1,29,1,6,1,7,1,16,1,11,1,1,74,14,1,8,1,13,1,6,4,13,1,6,3,13,1,30,1,28,6,30,1,13,5,6,2,28,6,30,1,6,2,13,1,6,9,30,1,28,27,29,1,28,2,11,1,1,2,29,1,28,7,16,1,1,2,9,1,28,26,6,34,28,2,30,1,6,1,13,1,6,1,16,1,1,3,8,1,28,4,9,1,16,3,29,1,28,9,16,2,29,1,28,18,17,1,1,2,28,10,29,1,6,16,7,1,8,1,9,1,16,1,15,1,16,1,9,1,13,1,6,7,13,2,30,1,28,1,13,1,1,3,13,1,28,7,9,1,30,1,28,11,29,14,30,4,13,2,8,6,9,30,8,1,13,1,6,9,7,1,11,4,7,1,6,11,13,1,11,1,16,6,12,1,11,1,6,4,13,1,6,1,9,4,16,1,11,1,1,5,16,1,8,1,1,9,9,1,7,1,11,1,1,2,14,1,16,1,9,4,13,1,28,1,16,1,1,2,11,1,6,11,30,1,28,1,6,3,13,1,1,82,}, + {1,7,16,1,28,1,29,1,6,1,13,1,8,1,15,1,11,1,1,68,14,1,13,1,28,3,13,1,6,6,13,1,30,1,28,6,30,1,6,10,28,5,29,1,6,2,13,2,6,3,13,1,6,1,30,1,28,33,16,1,1,2,9,1,28,1,29,1,28,5,29,1,1,2,11,1,29,1,28,25,6,34,28,2,13,2,6,2,17,1,1,3,6,1,28,4,16,4,28,10,16,2,29,1,28,18,1,2,11,1,28,10,30,1,6,1,13,1,6,17,13,1,8,1,9,1,15,1,16,1,9,1,6,4,13,1,6,2,13,1,28,3,8,1,11,1,1,2,8,1,28,6,29,1,28,12,29,14,30,1,6,1,13,2,8,9,9,31,8,1,7,1,6,5,13,1,6,2,13,1,15,1,16,1,13,1,6,13,11,1,16,7,1,1,9,1,6,2,13,2,6,1,13,1,9,4,16,1,1,6,11,2,1,7,12,1,7,2,16,1,1,2,17,1,9,1,16,1,9,3,7,1,29,1,13,1,1,2,11,1,6,10,13,1,28,2,6,3,13,1,1,82,}, + {1,8,16,1,28,2,29,1,6,3,7,1,9,1,11,1,1,4,11,1,1,43,5,1,1,12,11,1,9,1,30,1,28,6,30,1,6,1,30,1,13,1,6,2,30,1,28,6,30,1,6,1,13,1,6,10,13,1,28,5,30,1,13,1,6,4,30,1,28,36,7,1,1,2,11,1,29,1,28,1,29,1,28,5,1,3,6,1,28,25,29,1,6,15,13,1,6,16,30,1,28,1,29,1,6,4,11,1,1,3,6,1,28,4,16,4,28,10,16,2,28,18,29,1,1,2,15,1,28,10,6,22,7,1,8,1,9,1,15,1,16,1,8,1,6,3,13,1,6,1,29,1,28,2,6,3,1,2,11,1,8,1,28,18,29,12,30,1,13,2,8,11,9,1,8,2,9,31,8,1,7,1,6,4,13,4,6,14,7,1,16,1,1,1,16,6,15,1,1,1,7,1,13,4,6,1,13,1,9,1,16,1,9,2,16,1,1,12,11,1,9,1,6,1,7,2,8,1,1,2,11,1,9,5,8,1,30,1,29,1,11,1,1,1,11,1,6,10,13,1,28,2,6,3,13,1,1,82,}, + {1,9,16,1,28,3,30,1,6,5,7,1,16,1,11,1,1,4,11,1,1,1,5,1,1,31,5,1,1,14,11,1,14,1,8,1,6,1,30,1,28,8,29,1,13,3,30,1,28,6,30,1,13,1,6,8,13,1,6,4,13,2,29,1,28,4,6,2,30,1,29,1,28,38,29,1,11,1,1,2,6,1,28,7,9,1,1,2,16,1,28,26,6,5,13,3,6,1,13,7,6,3,13,1,6,5,13,7,30,1,28,1,30,1,6,2,13,1,7,1,1,4,29,1,28,3,29,1,16,4,28,9,29,1,16,2,28,18,8,1,1,2,7,1,28,9,29,1,6,2,13,2,8,1,13,2,6,18,13,1,9,1,15,1,16,1,13,1,6,2,13,1,28,2,30,1,13,1,6,1,16,1,1,2,11,1,1,1,13,1,29,1,28,16,29,10,6,1,13,5,8,10,9,36,8,1,6,6,30,1,6,1,13,1,6,14,11,2,16,6,1,1,9,1,6,6,7,1,9,2,16,1,9,1,16,1,1,9,11,1,16,1,6,2,7,4,1,2,11,1,9,6,13,1,29,1,9,1,1,1,11,1,6,10,30,1,28,2,6,3,13,1,1,82,}, + {1,10,12,1,29,1,28,3,30,1,6,7,7,1,9,1,17,1,11,1,1,43,11,1,15,1,9,1,8,1,6,4,13,2,30,1,28,8,13,1,29,1,28,5,29,1,30,1,13,3,6,8,13,3,6,3,13,2,29,1,28,46,16,1,1,2,16,1,28,1,29,1,28,5,7,1,1,3,29,1,28,25,30,1,6,7,7,1,13,3,9,14,13,4,6,2,29,1,28,1,30,1,6,1,13,1,6,1,7,1,1,3,11,1,28,4,30,1,16,4,28,9,30,1,16,2,28,18,17,1,1,2,29,1,28,9,6,2,13,1,6,2,13,1,9,1,16,2,9,1,8,1,13,1,6,16,13,1,9,1,16,1,9,1,13,1,29,1,28,1,29,1,6,2,8,1,1,3,7,1,28,1,8,1,13,1,28,16,29,8,30,1,13,6,8,1,13,1,8,10,9,36,8,1,7,1,6,7,13,1,6,11,7,1,6,1,7,1,1,1,16,6,15,1,1,1,8,1,6,6,13,1,9,5,11,1,1,11,11,2,15,1,16,1,11,1,1,1,14,1,9,1,16,1,9,4,6,1,29,1,7,1,1,2,6,10,29,1,28,2,6,3,13,1,1,82,}, + {1,9,33,1,1,1,11,1,29,1,28,4,29,1,6,3,13,2,6,4,13,2,9,1,16,1,15,1,11,2,1,28,11,2,17,1,16,1,9,1,8,1,6,1,13,1,6,1,13,1,6,1,13,4,6,3,13,1,28,13,30,1,6,4,13,3,6,8,13,3,6,4,29,1,28,46,30,1,1,3,29,1,28,6,29,1,11,1,1,2,6,1,28,25,29,1,6,1,7,1,6,1,8,1,9,3,16,23,9,1,30,1,28,1,13,1,6,1,7,1,6,1,8,1,1,3,11,1,28,4,6,1,16,4,28,9,6,1,16,2,28,18,1,3,28,10,6,8,13,1,9,1,16,3,9,1,13,1,6,4,13,1,6,10,13,1,9,2,28,2,6,3,11,1,1,3,28,3,8,1,28,16,29,6,30,1,13,11,8,8,9,1,8,3,9,34,8,1,6,21,7,1,1,1,16,7,11,2,16,1,6,7,9,1,16,1,9,3,16,1,11,1,1,12,11,1,17,1,1,1,15,1,9,1,16,1,9,4,6,1,30,1,6,1,11,2,6,10,28,3,6,3,13,1,1,82,}, + {1,12,11,1,6,1,28,5,29,1,30,1,13,2,6,1,13,3,30,1,6,7,7,1,13,1,8,2,9,2,16,2,12,1,15,1,11,5,17,2,15,1,14,1,13,2,30,2,29,1,28,2,13,3,7,1,13,2,6,4,13,5,6,5,30,1,28,8,29,1,30,1,6,8,13,2,6,6,13,1,6,2,13,1,6,1,30,1,28,51,11,1,1,2,9,1,28,7,16,1,1,2,11,1,28,25,29,1,9,1,16,1,15,1,16,12,9,14,8,2,29,2,9,1,8,1,13,1,6,1,16,1,1,3,16,1,28,4,7,1,16,3,9,1,28,9,7,1,16,2,28,17,29,1,1,2,11,1,28,9,30,1,6,10,7,1,8,1,9,1,15,1,16,2,8,1,6,13,13,2,28,2,13,2,6,1,16,1,1,3,29,1,28,1,29,1,11,1,28,5,29,1,28,11,29,4,30,1,13,13,8,7,9,2,8,1,9,37,8,1,6,19,9,1,1,1,11,1,16,9,11,1,1,1,9,1,7,1,6,5,8,1,9,1,16,1,9,2,16,3,11,2,1,5,11,1,17,1,16,1,9,1,16,1,1,1,16,1,9,1,16,1,9,4,7,1,30,2,15,1,11,1,6,10,28,3,6,3,13,1,1,82,}, + {1,14,8,1,28,7,30,1,6,7,13,6,6,2,13,1,6,1,13,2,6,3,13,4,6,4,13,1,28,7,13,2,6,1,7,1,13,1,6,2,30,1,6,10,26,1,30,1,29,2,28,7,30,1,6,1,13,2,30,1,13,2,6,13,29,1,28,54,6,1,1,3,29,1,28,5,29,1,6,1,1,3,29,1,28,21,29,1,8,1,16,1,15,1,9,5,8,1,13,3,7,2,13,1,6,2,13,6,6,1,13,2,6,4,13,2,6,2,28,1,30,1,13,1,6,3,11,1,1,3,7,1,28,4,8,1,16,4,29,1,28,8,8,1,16,2,28,17,8,1,1,2,16,1,28,9,6,10,30,1,6,3,7,1,9,1,15,1,16,1,15,1,9,1,13,1,6,11,29,1,28,1,6,2,13,1,8,1,1,3,9,1,28,1,29,1,11,1,9,1,28,4,29,1,9,1,28,11,29,2,30,1,13,15,8,2,25,3,27,1,26,28,25,3,8,2,9,9,8,1,6,14,13,3,11,1,1,1,16,11,9,1,15,1,11,1,1,1,16,1,6,3,13,1,6,1,13,1,9,1,16,2,9,2,16,1,9,3,16,3,9,2,16,2,9,1,16,1,1,1,16,1,9,1,16,1,9,3,16,1,7,1,13,1,30,1,8,1,15,1,6,10,28,3,6,3,13,1,1,82,}, + {1,15,16,1,28,9,29,1,6,26,13,1,6,1,30,1,28,6,30,1,6,1,13,1,6,9,13,4,6,1,30,1,28,11,29,1,6,4,13,1,6,10,30,1,28,59,11,1,1,2,9,1,28,2,29,1,28,4,1,3,9,1,28,2,29,1,28,23,6,6,13,4,6,19,30,1,28,1,6,5,1,4,6,1,28,4,9,1,16,3,9,1,28,9,9,1,16,2,29,1,28,16,11,1,1,2,7,1,28,8,29,1,6,15,13,2,9,1,16,1,15,1,16,1,9,1,6,6,13,1,30,3,28,1,29,1,13,1,6,2,11,1,1,3,28,1,29,1,1,1,11,1,28,5,13,1,15,1,6,1,28,8,29,3,13,8,7,4,13,1,8,1,13,2,26,38,30,1,13,1,9,4,10,2,9,4,13,1,6,15,11,2,16,8,9,2,16,6,11,2,7,1,6,1,13,1,6,3,13,1,9,1,16,1,9,1,16,1,9,1,16,2,9,2,16,1,9,5,16,1,11,1,9,4,16,1,9,1,16,1,13,1,6,3,9,1,6,10,28,3,30,1,13,1,6,2,11,1,1,81,}, + {1,14,11,1,1,1,11,1,6,1,28,10,29,1,30,1,6,22,13,1,6,2,28,6,30,1,6,1,13,1,6,6,13,2,6,1,30,2,28,4,29,1,30,1,6,2,13,1,30,1,28,6,6,2,13,2,6,6,30,1,29,1,28,63,9,1,1,3,29,2,28,1,29,1,28,3,16,1,1,3,28,26,6,1,7,1,6,6,13,1,6,20,30,1,28,1,6,5,1,4,29,1,28,4,9,1,16,3,9,1,28,9,9,1,16,2,29,1,28,16,1,3,29,1,28,8,30,1,6,2,13,1,7,1,6,15,8,1,9,1,15,1,16,1,8,1,6,5,13,1,6,1,28,2,13,3,9,1,1,3,8,1,28,1,1,2,30,1,28,5,16,3,28,6,29,1,28,1,29,1,30,1,13,12,26,3,29,5,26,35,9,7,16,1,14,2,9,3,13,1,6,13,16,1,1,1,16,18,11,2,6,7,13,1,9,1,16,2,9,9,16,1,9,1,16,1,9,4,16,1,9,2,13,1,6,3,13,1,6,9,30,1,28,3,30,1,6,3,16,1,1,81,}, + {1,18,9,1,28,12,29,1,30,1,6,20,13,2,30,1,28,5,30,1,6,1,13,1,6,6,13,1,6,2,30,3,6,2,13,1,6,5,13,1,30,1,28,5,30,1,6,1,13,2,6,2,29,2,28,67,6,1,1,3,16,1,28,4,29,1,28,1,29,1,1,3,6,1,28,25,30,1,6,7,13,1,6,15,13,1,6,1,13,3,30,1,28,1,6,4,8,1,1,4,28,5,9,1,16,3,9,1,28,9,16,3,28,17,1,3,28,9,9,3,13,1,7,1,6,10,13,1,6,6,13,1,9,1,15,1,9,1,13,1,6,3,13,1,29,1,28,1,30,1,6,2,13,1,1,3,11,1,28,1,11,1,1,1,9,1,28,6,15,3,6,1,28,6,29,1,13,3,6,1,7,2,13,1,7,1,13,3,26,3,29,4,26,4,29,1,26,31,13,1,9,7,17,1,1,5,9,3,13,1,6,11,7,1,1,1,16,11,15,1,17,1,16,7,1,1,6,9,13,1,9,2,16,2,9,1,16,1,9,4,16,1,9,6,16,1,9,2,13,1,6,5,13,1,6,7,30,1,28,3,29,1,6,3,8,1,1,81,}, + {1,19,11,1,6,1,28,15,30,1,6,16,13,1,6,1,13,1,28,5,29,1,6,11,13,2,6,4,13,1,6,1,13,2,6,2,13,1,28,6,29,2,28,71,16,1,1,5,6,1,28,4,29,1,28,1,1,3,16,1,28,26,29,1,28,5,6,10,13,8,6,1,13,2,6,1,29,2,6,4,9,1,1,3,11,1,28,5,9,1,16,3,9,1,28,8,29,1,16,3,28,16,9,1,1,2,11,1,28,8,29,1,6,2,8,1,16,1,15,1,16,1,9,1,13,1,6,10,13,1,6,5,13,1,9,1,15,1,8,1,6,2,30,1,28,1,30,1,13,1,6,2,11,1,1,3,6,1,11,1,1,1,11,1,28,6,29,1,15,1,16,1,15,1,9,1,28,5,30,1,6,4,13,5,26,1,30,1,29,2,26,2,29,2,26,1,29,1,26,33,25,1,9,9,16,1,1,1,11,4,1,1,16,1,9,3,6,11,16,1,1,1,16,8,15,1,1,2,11,2,1,1,16,6,1,1,6,1,13,1,6,10,8,1,9,9,16,1,9,4,16,1,9,2,6,15,28,4,13,2,6,1,7,1,11,1,1,80,}, + {1,21,9,1,28,2,29,1,28,1,29,1,28,14,29,1,30,1,6,2,13,1,7,1,6,6,13,2,6,1,30,1,28,5,6,1,13,1,6,16,13,3,6,1,30,3,28,75,29,1,16,1,1,1,30,1,1,5,11,1,28,6,9,1,1,3,28,32,29,1,6,7,13,1,6,10,13,3,28,1,30,1,6,4,17,1,1,3,16,1,28,5,9,1,16,3,8,1,28,8,29,1,16,3,28,16,11,1,1,2,9,1,28,8,29,1,6,1,13,1,6,2,13,1,9,1,16,1,15,1,16,1,9,1,13,1,6,14,13,2,9,2,13,1,28,1,29,1,6,3,9,1,1,3,16,1,17,1,1,1,11,1,30,1,28,6,29,1,15,1,16,2,15,1,29,1,28,2,29,1,30,1,6,4,7,1,13,2,26,2,29,6,26,1,29,7,26,27,25,1,9,11,8,1,11,6,1,1,15,1,9,3,8,1,6,8,13,1,6,1,11,1,15,1,16,8,1,1,9,1,7,1,6,2,15,1,11,1,16,4,11,1,15,1,6,15,13,1,8,1,9,3,16,7,9,2,8,1,6,15,28,4,30,1,13,1,6,2,9,1,1,80,}, + {1,22,11,1,8,1,28,24,29,2,30,2,6,5,28,5,13,1,6,10,30,4,29,2,28,81,6,1,12,1,1,10,9,1,29,1,28,4,6,1,1,3,8,1,28,32,6,6,8,2,9,9,8,3,7,1,28,1,6,5,1,4,6,1,28,5,16,4,8,1,28,8,29,1,16,3,28,16,1,3,7,1,28,8,6,8,8,1,9,1,15,2,9,1,8,1,7,1,6,14,13,1,6,1,28,1,13,1,6,2,7,1,1,4,16,1,1,2,16,1,28,7,29,1,15,1,16,2,15,1,29,1,28,1,29,1,13,3,6,2,13,3,26,1,29,17,26,22,25,2,9,5,16,1,17,1,11,1,1,4,11,3,1,1,11,5,1,1,17,1,9,4,13,1,6,7,13,1,8,1,1,1,16,8,15,1,11,1,6,2,13,1,6,1,8,1,1,1,16,4,1,1,6,2,13,1,6,19,7,2,13,2,6,20,28,5,13,2,6,2,11,1,1,79,}, + {1,24,11,1,6,1,28,131,29,1,9,1,11,1,1,2,14,1,1,10,6,1,28,5,11,1,1,2,11,1,28,32,29,1,6,6,9,1,15,1,16,12,7,1,16,1,9,3,8,1,1,4,29,1,28,4,29,1,16,4,8,1,28,8,29,1,16,3,28,15,7,1,1,3,29,1,28,8,6,10,13,1,9,1,16,3,8,1,7,1,6,12,30,1,28,1,30,1,6,3,11,1,1,3,17,1,1,2,11,1,28,9,16,3,15,1,30,1,29,1,13,1,30,1,6,3,13,2,30,1,29,11,26,3,29,1,26,1,29,3,26,16,25,2,9,9,16,1,1,3,11,14,1,1,11,1,9,5,13,1,6,5,13,2,8,1,1,1,16,8,11,1,16,1,6,3,13,1,6,1,11,1,15,2,11,1,1,1,9,1,6,46,30,1,28,5,13,2,6,2,11,1,1,78,}, + {1,26,17,1,29,1,28,117,29,1,28,9,29,1,16,1,1,16,11,1,29,1,28,1,29,1,28,2,9,1,1,3,6,1,28,32,6,7,13,1,9,1,16,7,9,4,13,1,9,4,16,1,1,4,29,1,28,4,29,1,16,4,8,1,28,8,30,1,16,3,28,15,9,1,1,2,11,1,28,8,29,1,6,12,13,1,8,1,16,1,15,1,16,1,9,1,6,11,28,1,30,1,13,1,6,2,9,1,1,3,11,1,1,3,13,1,28,9,9,1,15,2,16,1,8,1,6,10,13,3,26,1,30,6,29,8,30,3,26,3,13,3,8,2,9,15,16,1,1,1,11,19,9,6,6,7,7,1,1,1,16,8,1,1,9,1,6,2,13,2,6,1,9,1,1,2,14,1,13,1,6,22,13,4,6,21,13,1,28,5,30,1,6,1,13,3,1,78,}, + {1,28,12,1,29,1,28,7,29,1,28,115,8,1,11,1,1,19,9,1,28,2,29,3,1,3,16,1,28,32,6,19,30,1,29,1,6,4,16,1,1,3,11,1,28,5,29,1,16,4,7,1,28,8,6,1,16,3,28,12,29,1,28,2,11,1,1,2,17,1,28,8,29,1,6,15,13,1,9,1,16,2,13,1,6,6,13,1,6,1,29,2,13,1,6,1,7,1,13,1,1,4,12,1,1,2,14,1,28,10,30,1,15,1,16,1,11,1,8,1,6,10,13,18,8,9,9,17,17,1,1,1,11,19,8,1,9,5,8,1,6,7,9,1,1,1,16,4,9,1,16,1,11,2,13,1,6,2,9,1,8,1,6,1,13,1,6,3,13,1,6,49,28,5,30,1,13,3,8,1,1,77,}, + {1,25,14,1,1,4,17,1,6,1,28,117,29,1,8,1,11,1,1,23,6,1,28,4,11,1,1,2,11,1,29,1,28,31,29,1,6,18,29,1,30,1,6,4,11,1,1,3,16,1,28,5,29,1,16,4,6,1,28,8,6,1,16,3,28,14,29,1,1,3,9,1,28,8,29,1,6,17,13,1,9,1,16,1,9,1,13,1,6,4,13,1,30,1,28,1,13,1,6,3,11,1,1,3,16,1,1,2,11,1,28,12,9,1,11,2,13,1,6,10,13,13,8,15,9,16,11,21,9,7,7,1,6,7,9,1,1,1,11,1,16,2,11,1,1,1,11,1,6,2,7,1,11,3,1,1,8,1,6,53,30,1,28,5,30,1,6,3,8,1,1,76,}, + {1,27,15,1,1,4,11,1,8,1,28,59,29,1,28,52,29,1,8,1,17,1,1,4,14,1,1,22,30,1,28,3,8,1,1,3,7,1,28,32,6,18,29,1,6,5,1,4,8,1,28,2,29,1,28,2,6,1,16,4,6,1,28,8,6,1,16,3,28,14,6,1,1,3,6,1,28,8,30,1,6,19,7,1,9,1,16,1,13,1,6,3,30,1,28,1,6,4,9,1,1,4,7,1,1,3,16,1,30,1,28,10,13,1,11,2,13,1,6,1,13,1,6,8,13,17,8,12,9,15,11,20,1,1,9,1,8,1,9,5,8,1,6,8,8,1,11,2,1,1,11,1,9,1,6,3,11,2,16,2,12,1,11,1,6,41,13,2,6,10,13,1,30,1,28,5,30,1,6,3,13,1,11,1,1,74,}, + {1,34,11,1,9,1,29,1,28,57,29,1,28,43,29,1,28,2,29,1,28,2,8,1,11,1,1,30,11,1,28,3,29,1,1,3,12,1,28,32,6,18,29,1,6,1,13,1,6,1,13,1,7,1,1,4,6,1,28,5,29,1,16,4,30,1,28,8,7,1,16,3,29,1,28,13,9,1,1,3,29,1,28,8,29,1,6,21,13,1,8,1,9,1,6,2,29,1,30,1,6,3,7,1,1,4,8,1,29,1,11,1,1,3,11,1,14,1,30,1,28,7,29,1,6,1,16,1,14,1,6,12,13,16,8,13,9,14,11,1,1,1,11,5,1,8,11,5,1,1,15,1,9,7,13,1,6,9,13,1,7,1,6,5,11,1,16,1,9,1,16,2,1,1,7,1,6,27,8,1,14,1,11,1,16,1,7,1,6,2,13,3,6,2,13,1,6,1,13,1,6,10,13,2,30,1,28,5,6,2,13,2,7,1,11,1,1,73,}, + {1,37,11,1,6,1,28,5,29,1,28,15,29,2,28,78,6,1,16,1,1,35,17,1,28,2,29,1,11,1,1,3,29,1,28,31,6,18,29,1,6,2,13,1,6,1,9,1,1,4,29,1,28,5,30,1,16,4,30,1,28,8,7,1,16,3,28,13,29,1,11,1,1,3,28,7,29,1,28,1,29,1,6,1,13,1,6,18,7,1,6,2,30,1,6,1,30,2,13,2,6,2,11,1,1,3,17,1,28,2,29,1,9,1,1,5,11,1,8,1,28,4,29,1,30,1,6,2,8,1,6,12,13,2,7,1,13,10,8,16,9,14,12,1,1,1,11,3,1,2,14,1,9,3,8,1,9,3,1,1,11,5,1,1,9,7,8,1,6,9,13,1,6,6,15,1,11,1,16,1,9,1,16,1,11,1,6,22,13,1,6,3,7,1,15,1,1,1,11,1,16,1,11,2,6,1,13,1,6,1,7,4,6,16,29,1,28,5,13,1,6,1,13,1,6,2,11,1,1,46,11,2,1,24,}, + {1,33,5,1,1,6,16,1,7,1,29,2,28,17,29,2,28,1,29,1,28,71,6,1,9,1,17,1,1,39,16,1,28,2,7,1,1,3,9,1,28,5,29,1,6,1,28,24,6,18,30,1,6,2,13,1,6,1,15,1,1,3,11,1,28,6,6,1,16,4,30,1,28,8,7,1,16,3,28,14,1,3,17,1,28,6,29,2,6,1,9,1,13,1,6,24,30,1,13,3,6,1,9,1,1,4,28,5,29,1,9,1,11,1,1,4,11,1,8,1,29,2,30,2,6,15,13,2,7,4,13,7,8,16,9,14,16,1,1,1,11,2,1,1,11,1,9,1,8,1,9,1,8,1,9,5,17,1,1,1,11,4,1,1,9,8,13,1,6,5,13,1,6,9,7,1,11,1,1,3,9,1,6,22,13,1,6,2,13,1,11,2,16,3,12,1,11,1,6,3,9,1,1,2,11,1,8,1,6,15,26,1,30,1,28,5,13,1,6,1,13,1,6,1,7,1,11,1,1,43,11,1,16,1,9,1,11,1,1,24,}, + {1,43,16,1,8,1,29,1,28,18,29,1,28,56,29,1,28,8,29,2,6,1,9,1,17,1,1,44,9,1,28,1,29,1,1,3,11,1,28,5,9,1,28,2,29,1,28,22,6,18,13,2,6,2,13,1,11,1,1,3,16,1,28,6,7,1,16,4,30,1,28,8,8,1,16,3,28,13,6,1,1,3,9,1,28,5,7,1,15,1,16,1,13,1,6,14,13,2,6,9,30,1,6,1,13,2,6,1,7,1,1,4,9,1,28,8,6,1,9,1,12,1,1,3,11,1,14,1,13,1,30,1,6,15,13,2,7,1,13,13,8,13,9,15,1,3,14,1,9,11,1,1,11,4,1,1,9,9,6,4,13,1,6,12,13,1,9,1,7,1,6,14,13,2,6,9,7,1,11,2,16,4,11,1,16,1,6,1,13,2,1,1,16,2,14,1,1,1,11,1,9,1,8,1,13,1,6,6,13,1,6,2,13,1,6,2,13,1,26,1,28,5,13,1,30,1,6,2,7,1,11,1,1,39,11,2,16,1,6,1,9,1,12,1,1,25,}, + {1,46,11,1,9,1,29,2,28,5,29,1,28,61,29,2,28,2,29,1,28,1,29,1,28,2,29,1,6,1,9,1,15,1,11,1,1,49,8,1,28,1,16,1,1,3,6,1,28,2,29,1,15,1,28,25,29,1,6,22,7,1,1,4,8,1,28,6,8,1,16,4,29,1,28,8,9,1,16,3,29,1,28,12,9,1,1,3,6,1,28,3,8,1,11,1,9,1,7,1,13,1,6,18,13,1,6,8,13,3,7,1,17,1,1,3,11,1,29,1,28,11,29,1,6,1,8,1,1,3,14,1,7,1,30,2,6,12,13,16,8,15,9,13,16,1,11,1,16,1,9,1,8,1,9,10,11,4,1,1,11,1,9,1,8,1,9,7,7,1,6,32,16,1,1,2,11,1,17,1,16,1,8,1,6,4,7,1,11,2,16,5,1,1,13,3,7,1,11,1,16,4,17,1,11,1,1,1,11,1,1,1,11,1,16,1,9,1,6,3,13,1,6,3,13,1,6,2,13,1,29,1,28,4,13,1,6,1,13,1,6,2,11,1,1,35,28,1,1,2,9,1,30,2,9,2,1,26,}, + {1,50,11,1,7,1,29,1,28,61,29,2,28,5,6,2,16,1,11,2,1,55,8,1,7,1,1,3,9,1,28,2,15,1,30,1,28,25,6,23,8,1,1,4,29,1,28,6,9,1,16,4,29,1,28,8,9,1,16,3,29,1,28,12,11,1,1,3,29,1,28,1,6,1,11,2,28,2,29,1,30,1,6,11,7,1,6,5,13,1,6,9,13,3,9,1,1,4,7,1,28,14,29,1,16,1,8,1,29,1,6,1,9,1,13,1,30,1,6,12,13,16,8,15,9,16,8,1,9,11,16,1,1,1,11,1,1,2,9,10,13,1,6,32,11,1,16,3,14,1,11,1,1,1,16,1,6,2,9,1,1,1,11,1,16,5,1,1,8,1,6,2,13,1,8,1,11,1,16,10,11,2,1,1,11,1,15,1,8,1,7,1,6,4,13,3,30,1,28,4,13,1,6,4,11,1,1,31,28,1,11,1,1,1,11,1,9,1,13,1,28,2,9,2,17,1,15,1,1,25,}, + {1,44,11,1,1,9,11,1,16,1,7,1,6,1,28,1,29,1,28,53,29,2,6,2,9,1,11,2,1,62,8,1,1,4,29,1,14,1,6,1,28,26,6,23,16,1,1,4,28,7,8,1,16,4,28,9,9,1,16,3,28,12,29,1,1,4,28,1,9,1,1,1,16,1,28,4,30,1,6,4,13,1,8,1,9,2,16,2,15,1,16,4,9,1,13,1,6,12,7,1,1,4,16,1,28,15,29,1,16,1,8,1,28,1,7,1,14,1,30,1,6,13,13,18,8,15,9,12,8,1,9,14,11,1,1,1,11,1,9,11,8,1,6,31,13,1,11,1,16,6,11,1,6,1,13,1,1,1,15,1,16,6,11,1,6,5,11,1,1,1,15,1,16,1,9,1,16,10,11,1,1,2,11,1,9,1,6,5,13,2,29,1,28,3,13,2,6,3,11,1,1,31,15,1,13,1,30,1,28,2,29,1,13,1,9,2,1,27,}, + {1,46,5,1,1,12,11,1,16,1,9,1,7,1,6,1,29,1,28,40,29,1,6,2,8,1,9,1,16,1,11,1,1,16,5,1,1,54,11,1,1,3,17,1,8,1,28,26,29,1,6,23,11,1,1,3,11,1,28,7,8,1,16,4,29,1,28,8,9,1,16,3,28,12,6,1,1,3,16,1,15,1,1,1,7,1,28,6,6,10,7,3,13,2,8,2,6,12,16,1,1,4,28,16,29,1,16,1,8,1,29,1,1,1,13,1,6,1,30,1,6,1,8,1,6,12,7,1,13,14,8,14,9,44,6,32,11,1,15,1,16,4,11,1,14,1,6,1,13,1,1,1,16,7,1,1,6,6,9,1,1,1,15,1,16,14,17,1,11,2,6,8,28,2,29,1,13,3,6,2,11,1,1,21,33,1,1,5,11,1,9,1,30,2,28,3,30,1,13,1,9,2,14,1,1,27,}, + {1,65,11,3,16,1,9,1,8,1,7,1,6,2,29,1,6,1,29,2,28,5,29,1,28,1,29,1,28,1,29,1,28,1,29,1,6,4,7,1,8,1,9,2,16,2,17,1,11,3,1,83,9,1,28,1,29,1,28,25,6,1,7,1,6,21,7,1,1,4,9,1,28,7,9,1,16,4,29,1,28,8,9,1,16,3,29,1,28,11,9,1,1,3,11,1,1,1,7,1,28,7,29,1,6,27,7,1,1,4,9,1,28,16,29,1,16,1,8,1,11,2,30,1,6,3,11,1,15,1,6,11,7,1,13,14,8,15,9,43,6,32,9,1,1,1,16,3,15,1,1,1,7,1,6,1,13,1,1,1,16,7,1,1,6,1,13,1,6,5,11,1,16,17,11,2,6,7,13,1,30,1,28,2,13,2,6,2,7,1,11,1,1,22,11,1,15,1,8,1,30,3,28,4,30,1,13,1,9,3,1,28,}, + {1,54,11,1,1,131,17,1,28,27,30,1,6,23,8,1,1,4,6,1,28,7,9,1,16,4,29,1,28,8,9,1,16,3,29,1,28,11,11,1,1,4,8,1,28,1,29,1,28,7,6,11,7,1,13,1,8,2,9,1,8,1,13,1,7,1,6,8,11,1,1,4,28,17,29,1,16,1,11,1,1,1,8,1,6,1,30,1,6,1,13,1,11,2,14,1,6,10,7,1,13,14,8,16,9,42,6,31,13,1,6,1,16,1,1,4,8,1,6,3,16,1,1,1,16,1,9,2,16,2,11,1,17,1,13,1,6,4,13,1,16,1,11,1,16,18,1,1,8,1,6,9,28,2,6,4,7,1,11,1,1,17,11,1,15,1,9,1,30,5,28,5,30,1,13,1,9,3,11,1,1,28,}, + {1,58,33,1,5,1,1,125,11,1,29,1,28,24,6,1,28,2,6,24,14,1,1,3,11,1,28,8,9,1,16,4,28,9,9,1,16,3,29,1,28,10,29,1,1,4,16,1,28,10,30,1,6,6,13,2,9,1,16,2,15,2,16,3,15,1,9,1,6,7,9,1,1,4,16,1,29,2,28,15,29,1,11,1,1,1,11,1,6,1,30,2,6,1,8,1,11,3,15,1,6,9,7,1,13,14,8,19,9,39,6,34,7,1,9,2,6,6,16,1,1,5,17,1,6,2,13,1,6,3,13,1,11,1,16,1,9,1,16,17,11,1,9,1,6,11,30,1,6,1,13,1,6,2,17,1,1,12,11,1,16,1,8,1,6,2,30,4,26,1,30,1,28,5,26,1,30,1,13,1,9,3,15,1,1,29,}, + {1,181,5,1,1,3,6,1,28,26,9,1,6,25,1,4,16,1,28,8,16,5,28,9,16,4,29,1,28,10,29,1,1,3,11,1,28,12,6,6,13,1,8,1,13,9,8,1,6,1,7,1,6,5,11,1,1,3,11,1,8,1,28,17,8,1,1,2,9,1,30,4,7,1,11,4,13,2,6,9,13,16,8,11,9,13,8,1,9,30,6,35,13,1,6,7,13,2,8,3,6,2,7,1,6,1,13,1,6,4,11,1,12,1,16,1,12,1,1,1,11,3,1,1,11,1,16,10,11,1,15,1,6,13,13,1,7,1,17,1,1,1,11,4,15,1,9,2,25,1,26,1,30,1,26,1,30,8,29,1,28,6,29,1,30,2,8,1,9,4,1,30,}, + {1,184,8,1,28,27,7,1,16,1,13,1,6,22,9,1,1,4,6,1,28,8,16,5,28,9,16,4,30,1,28,10,9,1,1,3,8,1,28,12,6,18,7,2,6,4,16,1,1,4,12,1,8,1,28,14,29,1,28,1,29,1,1,2,11,1,6,1,30,4,6,1,11,4,14,1,6,10,13,16,8,14,9,11,16,2,17,2,11,7,16,1,9,1,8,1,9,15,8,1,6,35,30,1,13,1,6,2,9,1,16,1,8,1,6,5,16,1,11,1,1,1,9,1,6,6,9,1,1,1,11,2,9,1,6,1,7,1,13,1,7,1,16,1,1,1,11,1,16,8,11,1,15,1,13,1,6,12,13,1,16,1,1,1,17,1,9,4,30,8,26,1,30,3,28,8,29,1,26,1,30,1,26,1,9,5,1,31,}, + {1,183,17,1,28,27,30,1,6,1,8,1,16,1,8,1,6,21,11,1,1,3,11,1,28,9,9,1,16,4,28,9,16,4,6,1,28,10,17,1,1,3,29,1,28,12,6,15,7,1,13,2,8,2,7,1,6,2,7,1,1,4,11,1,16,1,7,1,28,16,17,1,1,2,9,1,30,5,6,1,15,1,11,4,13,1,6,9,13,16,8,16,9,4,16,1,11,1,1,12,11,5,16,1,9,14,8,1,6,35,13,2,7,1,11,4,16,1,6,2,7,1,11,2,15,1,16,1,1,1,8,1,13,1,6,5,9,1,16,1,13,1,6,2,13,2,6,2,8,1,1,1,16,8,11,1,15,1,6,13,7,1,1,1,11,1,9,4,8,1,30,6,29,1,28,11,29,2,30,2,13,1,9,5,11,1,1,31,}, + {1,183,29,1,28,26,30,1,7,1,6,1,7,1,8,1,15,1,8,1,6,19,8,1,1,4,9,1,28,9,16,5,28,9,16,4,6,1,28,10,11,1,1,2,11,1,28,13,6,2,13,1,6,6,7,2,6,1,8,1,9,1,16,1,15,5,8,1,6,2,15,1,1,4,16,2,8,1,28,15,7,1,1,2,11,1,30,6,6,1,13,1,11,4,13,1,6,11,13,13,8,17,16,1,11,1,1,10,11,1,16,1,9,10,15,1,9,1,8,1,9,11,13,1,6,37,14,1,11,1,16,3,1,1,13,1,6,1,11,2,16,3,11,2,6,4,13,2,6,4,13,3,6,2,8,1,1,1,16,6,9,1,16,1,11,1,9,1,6,10,13,1,6,2,17,1,1,1,9,6,30,2,29,1,28,11,29,1,30,3,29,1,30,2,25,1,9,5,15,1,1,32,}, + {1,182,6,1,28,27,6,5,9,1,15,1,8,1,6,1,13,1,6,11,13,2,6,3,11,1,1,4,30,1,28,9,16,5,28,8,29,1,16,4,6,1,28,10,1,3,9,1,28,13,6,8,13,1,8,1,9,1,16,1,15,1,16,1,9,2,8,1,13,2,6,1,13,1,6,2,1,4,16,3,7,1,28,14,29,1,11,1,1,2,8,1,30,6,6,1,30,1,9,1,11,3,13,1,6,11,13,13,8,13,9,1,17,1,1,14,9,1,8,1,9,11,15,1,9,12,13,1,6,19,13,3,6,13,13,1,6,1,11,1,16,4,1,1,8,1,6,1,11,1,16,5,1,1,13,1,6,3,13,1,6,4,13,2,6,3,7,1,1,1,16,9,1,1,13,1,6,10,30,1,6,1,13,1,1,1,11,1,9,6,30,13,29,1,30,4,26,2,9,6,16,1,1,33,}, + {1,181,16,1,28,27,6,7,9,1,15,1,9,1,6,12,30,1,6,2,8,2,1,4,17,1,29,2,28,8,16,5,28,8,29,1,16,4,7,1,28,9,29,1,1,3,7,1,28,13,6,5,13,1,8,1,9,3,8,1,13,1,6,1,7,1,6,4,7,1,6,1,13,2,15,1,1,4,8,1,16,2,7,1,28,14,7,1,1,2,11,1,30,8,6,2,8,1,11,2,6,12,13,15,8,8,9,1,11,1,1,12,28,1,1,4,11,1,9,11,8,1,15,1,16,1,9,11,7,1,6,37,9,1,1,1,16,2,15,1,1,1,13,2,9,1,1,1,16,3,11,2,6,13,7,1,11,2,16,7,15,1,1,1,9,1,6,13,9,1,1,1,16,1,9,6,26,1,30,17,13,1,9,7,1,34,}, + {1,180,11,1,29,1,28,26,6,2,13,1,6,6,9,1,15,1,9,1,6,11,29,1,30,1,6,1,9,1,11,1,1,4,6,1,28,1,29,1,28,7,29,1,16,5,28,8,29,1,16,4,8,1,28,9,29,1,1,3,6,1,28,13,6,3,13,1,8,2,13,1,6,14,9,1,1,4,16,1,7,1,16,2,7,1,28,13,29,1,11,1,1,2,10,1,30,8,6,4,9,1,6,12,13,16,8,4,9,1,11,1,1,8,12,1,9,1,11,1,1,6,5,1,1,3,16,1,9,12,1,1,9,11,6,19,29,1,28,4,29,1,6,14,16,1,1,3,10,1,6,1,13,1,6,1,11,2,14,1,11,2,6,14,11,2,16,7,14,1,1,1,9,1,6,14,14,1,1,1,9,7,26,1,30,3,26,1,30,6,26,1,30,4,26,1,9,8,1,35,}, + {1,180,6,1,28,26,6,3,13,1,9,1,13,1,6,5,9,1,16,1,10,1,6,2,13,2,6,6,28,1,30,1,6,1,12,1,1,4,11,1,28,11,16,4,9,1,28,8,29,1,16,4,8,1,28,9,29,1,1,3,29,1,28,13,6,20,13,1,16,1,1,4,6,1,8,1,16,2,6,1,28,13,7,1,1,3,29,1,30,6,6,1,30,1,13,1,30,1,6,5,13,1,6,3,13,2,6,4,13,3,7,3,13,6,8,2,13,1,8,1,13,1,8,1,16,1,1,8,16,1,6,1,28,1,16,1,1,13,9,12,1,1,9,11,6,10,13,1,6,2,13,3,30,1,28,4,29,1,6,1,7,2,13,3,6,6,26,2,6,4,13,2,6,5,13,1,9,1,14,1,9,1,6,14,16,1,11,1,16,7,11,2,13,2,6,13,13,1,11,1,1,1,9,7,13,1,30,13,26,1,13,1,9,8,11,1,1,35,}, + {1,179,9,1,28,26,6,1,7,1,6,3,13,1,9,1,8,1,7,1,6,2,13,1,6,1,8,1,16,1,8,1,6,1,13,1,6,4,13,1,6,1,30,1,28,1,6,2,11,1,1,4,6,1,28,11,16,5,28,8,29,1,16,4,8,1,28,9,29,1,1,3,29,1,28,13,6,21,8,1,1,3,17,1,29,1,8,1,16,2,29,1,28,13,16,1,1,3,11,1,14,1,9,1,13,1,6,1,30,1,6,2,30,1,6,5,13,2,6,4,13,1,6,5,13,13,7,1,8,2,17,1,1,7,16,1,6,1,28,2,6,1,1,16,9,10,8,1,1,1,16,1,9,9,8,1,6,11,13,1,6,1,13,1,30,1,28,4,6,1,13,1,8,1,9,6,8,1,13,1,6,10,13,1,6,5,13,1,6,1,13,1,6,15,13,1,1,1,16,8,1,1,6,3,13,1,6,13,11,1,1,1,9,8,30,12,13,1,9,9,11,1,1,36,}, + {1,178,11,1,29,1,28,25,30,1,6,6,13,1,16,1,9,1,7,1,6,4,9,1,16,1,8,1,6,5,13,1,30,1,28,2,6,1,8,1,1,4,14,1,28,12,16,5,28,8,29,1,16,4,9,1,28,9,29,1,1,3,6,1,28,13,6,20,13,1,6,1,1,3,6,1,28,1,8,1,16,2,29,1,28,13,7,1,1,9,11,1,16,1,9,1,7,1,6,2,30,1,6,1,13,1,6,1,8,1,7,1,6,8,13,12,7,1,9,1,11,1,1,6,15,1,7,1,29,1,28,2,29,1,16,1,1,17,17,1,9,10,1,1,15,1,9,9,8,1,6,10,13,1,30,1,13,1,28,4,13,2,8,2,9,10,13,1,6,32,13,1,1,1,16,7,15,1,11,1,6,17,11,1,1,1,9,8,13,1,30,9,13,1,9,10,1,38,}, + {1,178,6,1,28,25,6,9,13,1,16,1,9,1,7,1,6,4,8,1,15,1,13,1,6,3,13,1,6,1,30,1,28,2,6,1,16,1,1,4,29,1,28,12,16,5,28,8,29,1,16,4,9,1,28,10,11,1,1,2,6,1,28,13,6,22,17,1,1,1,11,1,28,2,9,1,16,2,30,1,28,14,8,1,11,1,1,12,11,1,15,1,13,2,6,1,14,1,11,1,14,1,9,1,6,2,13,1,6,1,13,1,6,1,13,10,7,1,9,1,11,1,1,5,17,1,7,1,29,1,28,2,29,2,8,1,11,1,1,19,16,1,8,1,9,8,1,1,11,1,9,9,13,1,6,10,13,1,6,1,28,3,30,1,13,1,9,15,13,1,6,32,1,1,16,7,11,1,9,1,6,16,13,1,11,1,1,1,9,9,30,7,13,1,9,11,1,39,}, + {1,177,9,1,28,25,6,11,13,1,16,2,6,1,7,1,6,3,8,1,16,1,13,1,6,3,13,1,28,2,30,1,6,1,11,1,1,3,9,1,28,12,29,1,16,5,28,8,29,1,16,4,9,1,28,10,12,1,1,2,9,1,29,1,28,12,6,18,7,1,8,1,9,1,15,2,1,1,6,1,28,2,9,1,16,2,30,1,28,16,6,1,16,2,10,1,8,1,10,2,7,2,6,2,30,1,29,1,28,1,14,1,6,2,14,1,11,3,15,1,6,3,13,1,6,1,13,7,7,1,8,2,1,5,11,1,9,1,29,1,28,4,29,2,14,1,1,22,9,9,1,1,11,1,9,9,13,1,6,8,13,1,6,2,28,3,6,1,8,1,9,1,8,1,9,4,8,1,9,2,16,2,15,2,16,1,9,3,6,32,11,1,17,1,16,6,1,1,6,18,15,1,1,1,9,9,13,1,30,4,13,1,9,12,1,40,}, + {1,176,11,1,28,25,6,11,7,1,6,1,13,1,15,1,16,1,13,1,6,1,13,2,6,1,8,1,16,1,7,1,6,1,13,1,29,1,28,2,6,2,1,3,11,1,28,13,29,1,16,5,28,8,29,1,16,5,28,10,8,1,1,2,16,1,28,13,6,15,7,1,8,1,9,1,16,1,15,1,16,1,9,2,1,1,29,1,28,2,16,3,29,1,28,14,29,1,28,1,29,1,16,2,30,1,28,9,29,1,11,1,6,2,16,1,11,4,16,1,6,4,13,4,7,1,13,1,7,1,8,1,11,1,1,4,16,1,29,1,28,2,29,1,28,4,8,1,1,22,33,1,1,2,9,1,8,1,9,6,1,1,11,1,9,9,7,1,6,9,13,1,28,2,30,1,13,1,8,1,9,5,16,1,11,1,1,4,11,1,15,1,16,1,9,4,8,1,6,31,9,1,11,1,16,5,11,1,14,1,6,1,13,2,6,3,30,1,6,11,9,1,1,1,15,1,9,9,13,1,26,1,13,1,9,12,16,1,1,2,11,1,1,38,}, + {1,176,6,1,28,24,30,1,6,2,13,1,6,11,8,1,16,1,9,1,13,2,6,3,7,1,9,1,7,1,30,1,28,2,30,1,6,1,8,1,1,3,6,1,28,14,16,5,28,8,29,1,16,5,29,1,28,10,1,2,11,1,29,1,28,12,6,13,13,1,9,1,16,1,15,1,16,1,9,1,8,1,6,3,11,1,9,1,28,2,16,3,29,1,28,14,29,1,28,1,29,1,16,2,29,1,28,9,12,2,6,2,7,1,11,5,8,1,6,3,13,3,7,2,8,1,11,1,1,3,11,1,7,1,29,1,28,7,6,1,11,1,1,3,14,1,1,23,9,6,16,1,1,1,11,1,9,9,6,10,28,2,30,1,13,1,9,5,17,1,1,4,11,1,16,1,9,9,8,1,6,31,11,2,15,2,14,1,11,2,7,1,6,1,13,2,6,2,16,1,11,1,15,1,6,10,7,1,1,1,11,1,9,23,14,1,1,42,}, + {1,175,9,1,28,24,30,1,6,1,13,2,6,3,13,1,6,9,8,1,15,1,9,1,6,4,13,2,9,1,28,3,26,1,6,1,15,1,1,2,9,1,28,15,16,5,28,8,29,1,16,5,29,1,28,10,1,3,29,1,28,12,6,11,8,1,9,1,15,1,16,1,9,1,13,1,7,1,6,4,13,1,9,1,11,1,28,1,29,1,16,3,29,1,28,16,30,1,16,2,29,1,28,9,1,1,14,1,6,3,9,1,11,4,15,1,6,1,13,1,6,1,7,1,6,1,7,1,6,1,12,1,1,3,16,1,29,1,28,7,29,1,28,1,16,1,1,29,11,1,9,5,14,1,1,1,11,1,9,8,8,1,6,8,13,1,29,1,28,1,6,1,8,1,9,4,11,1,1,4,14,1,9,13,7,1,6,30,13,1,15,1,11,3,16,1,13,2,6,3,8,1,11,2,12,1,1,1,9,1,6,10,11,1,1,1,9,22,11,1,1,2,28,1,1,40,}, + {1,174,11,1,29,1,28,23,30,1,6,1,13,1,6,4,13,1,6,10,13,1,8,1,15,1,8,1,6,4,13,1,30,1,28,2,30,1,6,2,1,2,17,1,28,16,16,5,28,8,29,1,16,5,29,1,28,10,9,1,1,2,9,1,28,12,6,9,8,1,16,1,9,2,13,1,6,6,13,1,6,1,13,1,8,1,1,1,6,1,29,1,16,3,29,1,28,16,6,1,16,2,29,1,28,8,6,1,1,1,14,1,6,4,9,1,11,4,13,1,7,1,6,1,7,2,9,1,1,2,11,1,7,1,29,1,28,9,8,1,1,32,11,1,9,4,11,1,1,1,11,1,9,8,8,1,6,8,30,1,28,1,13,1,9,4,16,1,1,4,11,1,9,16,13,1,6,39,11,1,1,1,14,1,9,1,16,2,11,1,6,10,9,1,1,1,11,1,9,20,11,1,1,44,}, + {1,174,6,1,28,23,30,1,6,4,13,1,9,1,6,14,9,1,15,1,13,1,6,4,28,3,13,2,9,1,1,1,11,1,28,16,29,1,16,5,28,8,29,1,16,5,6,1,28,9,29,2,1,2,11,1,28,12,6,7,8,1,9,2,13,1,6,10,13,1,15,2,1,1,12,1,29,1,16,3,29,1,28,16,7,1,16,2,29,1,28,8,9,1,1,1,15,1,6,5,13,1,8,1,9,2,6,2,7,1,13,1,11,1,1,1,16,1,29,1,28,4,29,1,28,5,6,1,11,1,1,34,11,1,8,1,9,2,1,2,11,1,9,8,8,1,6,8,29,1,13,1,9,4,17,1,1,4,16,1,8,1,9,17,13,1,6,26,7,1,6,8,13,1,6,1,15,1,11,1,16,5,1,1,6,1,13,1,6,9,11,1,1,1,9,18,15,1,1,46,}, + {1,173,16,1,28,23,30,1,6,6,13,1,16,1,9,1,13,1,6,9,13,1,6,2,9,2,6,1,13,1,6,1,28,3,30,1,6,2,11,1,1,1,17,1,16,2,9,1,8,1,6,2,29,3,28,7,29,1,16,5,28,8,6,1,16,5,6,1,28,6,29,3,28,2,1,3,29,1,28,11,6,6,8,1,13,1,6,11,13,1,9,1,15,1,16,1,9,1,16,1,1,1,6,1,16,2,9,1,28,17,8,1,16,2,29,1,28,8,11,1,1,1,16,1,6,2,30,1,6,2,13,3,6,3,9,1,11,1,8,1,29,1,28,10,6,1,11,1,1,37,11,1,9,2,1,2,11,1,9,8,8,1,6,8,8,1,9,4,11,1,1,3,11,1,9,1,8,1,9,19,13,1,6,36,14,1,17,1,16,4,17,1,11,1,6,10,13,1,8,1,1,1,11,1,9,16,11,1,1,47,}, + {1,173,28,23,29,1,6,2,13,2,6,1,13,1,6,1,7,1,13,1,9,1,15,1,9,1,6,11,7,1,16,1,9,1,6,1,29,1,28,2,29,1,6,2,16,1,1,12,11,2,17,1,15,2,16,1,9,1,8,1,17,3,16,2,28,8,30,1,16,5,7,1,28,11,16,1,1,2,16,1,28,11,30,1,6,5,13,1,6,7,7,1,6,1,7,1,6,1,9,1,15,1,16,1,9,1,13,1,6,1,8,1,1,1,9,1,16,3,28,17,9,1,16,2,29,1,28,7,29,1,11,1,1,1,16,1,6,5,13,1,6,3,8,1,9,1,6,1,28,4,29,1,28,5,29,1,6,1,17,1,1,40,11,1,9,1,1,2,11,1,9,8,8,1,6,4,7,1,6,1,13,1,8,1,9,4,11,1,1,3,11,2,16,1,9,21,8,1,13,1,6,34,8,1,1,1,15,1,16,3,1,1,9,1,6,6,13,1,6,3,13,1,6,1,16,1,1,1,11,1,9,13,16,1,1,3,11,1,1,45,}, + {1,172,6,1,29,1,28,21,30,1,6,4,9,2,6,5,9,1,16,2,8,1,6,11,9,1,13,1,28,3,6,1,13,1,7,1,1,29,11,4,17,1,16,1,11,5,16,1,6,1,7,1,6,3,28,3,29,2,28,1,7,1,1,3,28,11,29,1,6,5,13,1,6,9,7,1,9,1,16,1,9,1,7,1,6,4,11,1,1,1,16,3,28,17,9,1,16,2,28,8,30,1,1,2,9,1,6,7,9,1,11,1,6,1,28,5,29,1,28,2,29,1,28,2,6,1,11,1,1,43,11,1,1,2,11,1,9,8,8,1,6,5,13,1,9,4,8,1,1,4,11,1,7,2,1,1,14,1,9,23,8,1,13,2,6,31,8,1,1,4,9,1,6,1,13,1,6,5,13,1,6,6,15,1,1,2,9,11,11,1,1,50,}, + {1,171,16,1,29,1,28,21,29,1,6,6,9,1,16,1,13,1,6,4,8,1,16,1,15,1,9,1,6,10,13,1,29,1,28,2,26,1,13,2,11,1,1,56,7,1,29,1,28,10,6,14,13,1,9,2,6,5,13,2,16,1,1,1,15,1,16,1,9,1,28,17,9,1,16,2,28,8,7,1,1,2,9,1,30,1,6,4,8,1,11,1,1,1,6,1,29,1,28,9,7,1,11,1,1,5,33,1,1,42,11,1,9,8,8,1,6,3,7,1,8,1,9,5,1,4,11,1,13,2,7,2,11,1,1,1,16,1,9,25,8,1,13,5,6,27,8,1,6,3,13,3,6,3,13,2,6,4,13,2,16,1,1,2,14,1,9,7,15,1,1,52,}, + {1,171,29,1,28,21,29,1,6,2,13,2,6,4,8,1,15,1,9,1,6,4,13,1,15,1,16,1,9,1,6,7,30,1,13,1,29,1,28,2,30,1,13,1,6,1,9,1,1,1,11,1,12,1,11,3,1,51,11,1,28,11,6,13,8,2,13,1,6,8,8,1,1,2,16,1,9,1,28,17,9,1,16,2,28,8,9,1,1,2,9,1,6,1,13,1,6,2,17,1,1,2,13,1,29,1,28,7,29,1,16,1,1,51,14,1,9,9,8,1,13,1,8,1,9,5,16,1,1,5,7,1,6,5,11,1,1,1,11,1,9,30,8,2,13,1,7,4,6,28,13,1,6,1,9,1,16,2,9,1,6,1,7,1,6,3,8,1,11,1,1,3,11,1,17,2,11,1,1,54,}, + {1,170,8,1,28,1,29,2,28,19,6,2,13,1,6,2,13,1,6,4,8,1,16,1,9,1,13,1,6,1,13,1,6,1,13,1,16,2,9,1,6,2,13,1,6,1,13,1,6,1,26,1,30,1,28,3,26,1,13,1,8,1,1,2,16,1,9,3,29,2,9,1,16,2,1,48,29,1,28,10,29,1,6,12,13,1,6,11,1,2,16,1,9,1,28,17,16,2,9,1,28,8,16,1,1,2,8,1,6,2,16,1,1,3,6,1,28,6,29,1,10,1,11,1,1,53,14,1,9,16,16,1,1,5,9,1,7,1,13,2,6,4,16,1,1,2,11,1,16,1,9,36,8,3,13,3,7,1,6,6,13,1,6,12,13,1,6,1,16,2,11,2,15,1,7,1,6,2,13,1,6,2,7,1,16,1,11,1,1,4,11,1,16,2,1,51,}, + {1,169,11,1,28,22,6,3,13,3,6,6,13,1,16,1,9,1,13,1,6,3,7,1,16,2,9,1,13,1,6,3,13,1,30,1,28,3,13,1,6,2,11,1,1,1,16,1,9,3,30,1,29,1,9,1,16,2,12,1,1,48,16,1,28,11,6,24,11,1,1,1,11,1,8,1,28,17,16,2,9,1,28,8,16,1,1,2,8,1,9,1,11,1,1,3,6,1,28,1,29,1,28,2,29,1,8,1,17,1,1,56,15,1,9,15,17,1,1,5,9,3,13,1,6,6,8,1,1,3,11,1,9,42,8,1,13,3,6,17,9,1,16,1,11,3,14,1,6,5,7,1,6,3,7,3,6,2,9,1,1,51,}, + {1,169,6,1,28,21,6,5,13,2,6,5,7,1,6,1,13,1,16,2,13,1,6,3,7,1,16,1,15,1,9,1,7,1,6,1,13,1,30,1,28,3,13,2,6,1,16,1,1,2,16,1,9,1,16,1,13,1,29,1,9,1,16,3,1,49,11,1,28,11,6,24,8,1,1,2,7,1,28,17,16,2,9,1,28,8,17,1,1,2,11,1,1,4,29,1,28,2,29,1,9,1,11,1,1,6,11,1,16,1,9,1,11,1,1,49,16,1,9,14,11,1,1,5,9,5,13,1,6,7,11,1,1,3,11,1,16,1,9,44,8,1,13,1,6,11,13,1,6,2,9,1,16,1,11,1,1,1,11,2,16,1,6,6,13,1,6,2,13,1,6,3,11,1,1,51,}, + {1,168,16,1,28,21,30,1,6,6,13,1,9,1,13,1,6,6,13,1,16,2,7,1,6,3,13,1,16,1,15,1,7,1,13,1,6,1,28,3,30,1,13,2,9,1,1,2,11,1,17,1,16,1,8,1,29,1,13,1,16,1,9,1,16,1,1,51,7,1,28,10,29,1,6,24,1,2,9,1,28,10,29,1,28,5,29,1,16,2,9,1,28,8,12,1,1,5,11,1,7,1,8,1,11,2,1,7,11,1,16,3,9,1,16,1,1,49,16,1,9,10,8,1,9,2,11,1,1,5,9,7,13,1,6,4,13,2,6,1,9,1,1,5,16,1,9,1,8,1,9,43,13,1,7,1,6,11,13,1,16,1,11,5,7,1,6,8,13,1,6,2,15,1,1,52,}, + {1,167,11,1,28,21,29,1,13,1,6,7,13,1,16,1,9,1,7,1,6,1,13,2,6,2,13,1,16,1,9,1,7,1,6,3,13,1,16,1,9,1,6,1,28,3,29,1,13,1,7,1,13,1,1,2,17,1,16,1,11,1,15,1,29,1,6,1,9,1,16,2,11,1,1,51,11,1,28,11,6,21,13,1,6,2,11,1,1,1,11,1,16,1,9,1,7,1,6,1,29,1,28,11,29,1,16,2,9,1,28,7,29,1,16,1,1,14,11,1,15,1,16,3,9,2,16,2,11,1,1,48,16,1,9,12,1,6,9,9,8,1,13,1,6,2,13,1,6,1,13,1,6,1,7,1,12,1,1,5,11,1,16,1,9,1,8,1,9,42,8,1,6,10,7,1,16,2,11,4,13,1,6,7,13,1,6,2,16,1,1,1,11,1,1,51,}, + {1,167,6,1,28,21,6,5,13,1,6,5,9,2,13,3,6,3,7,1,16,1,9,1,6,1,13,2,6,1,7,1,16,1,30,1,28,2,29,1,13,1,6,2,1,2,11,1,16,2,9,2,7,1,9,1,16,1,9,1,11,1,1,53,6,1,28,10,29,1,6,21,9,1,16,1,11,1,1,8,11,2,17,1,16,1,9,3,8,1,7,1,6,1,8,1,17,2,16,1,8,1,9,1,16,2,11,3,1,13,11,1,16,1,9,1,16,2,9,2,16,1,9,1,16,1,17,1,11,2,1,48,9,11,16,1,1,6,9,2,8,1,9,8,8,1,13,1,6,6,13,2,11,1,1,6,11,1,15,1,9,42,8,1,13,1,6,9,8,1,16,2,11,3,8,1,6,2,26,1,6,6,16,1,1,2,17,1,1,51,}, + {1,166,16,1,28,21,29,1,6,4,13,2,6,4,13,2,16,2,7,1,6,4,13,2,15,1,9,1,30,1,6,2,13,1,30,1,29,1,28,2,13,2,6,1,11,1,1,2,9,1,16,2,30,1,29,1,14,1,16,1,9,1,17,1,1,54,11,1,28,11,6,19,8,1,16,1,15,1,16,1,9,1,1,38,11,1,15,1,16,2,9,2,16,1,9,3,16,2,14,1,11,2,15,1,16,2,1,47,9,5,8,1,9,4,17,1,1,5,11,1,9,14,7,1,6,8,8,1,11,1,1,8,17,1,9,41,13,1,6,7,13,1,6,1,8,1,16,2,11,2,8,1,6,5,13,2,6,1,9,1,1,2,14,1,11,1,1,51,}, + {1,166,29,1,28,20,13,1,9,1,7,1,6,10,13,1,6,1,9,1,15,1,8,1,6,1,7,1,13,3,8,1,16,1,8,1,6,1,13,2,28,3,6,3,9,1,1,2,16,1,9,2,13,1,30,1,9,1,16,1,14,1,16,1,1,56,29,1,28,10,30,1,6,16,7,1,9,1,16,1,9,1,8,1,6,2,11,1,1,33,11,1,15,1,16,2,9,3,16,2,9,2,16,1,9,1,16,1,14,1,11,2,14,1,16,1,9,3,11,1,1,46,9,7,8,1,9,1,11,1,1,5,11,1,9,16,8,1,13,1,6,6,7,1,6,1,7,1,11,1,1,10,11,1,9,6,8,1,9,31,7,1,6,7,13,1,6,1,13,1,9,1,16,2,8,1,6,3,13,2,6,2,9,1,1,2,11,1,14,1,11,1,1,51,}, + {1,165,8,1,28,21,7,1,8,1,16,1,9,1,13,1,6,10,7,1,9,1,16,1,9,1,6,1,13,2,6,2,8,1,16,1,7,1,30,1,28,3,13,1,6,2,9,1,1,2,11,1,16,1,9,1,8,1,29,1,9,1,16,3,1,57,16,1,28,11,6,15,8,1,16,2,8,1,6,4,16,1,1,24,11,2,12,1,16,1,8,1,7,1,6,3,8,1,9,2,16,4,9,2,16,1,9,2,16,1,11,2,14,1,16,1,9,2,16,1,9,2,16,1,1,46,9,6,8,1,9,1,1,6,11,1,9,18,8,1,13,1,6,9,8,1,15,1,1,12,11,1,17,1,16,1,9,33,13,1,6,5,13,1,6,1,13,1,6,3,8,1,13,3,6,4,9,1,1,3,11,1,14,1,11,1,1,51,}, + {1,164,11,1,28,21,29,1,6,2,13,1,16,1,15,1,9,1,6,10,7,1,16,2,8,1,6,1,13,1,6,2,7,1,9,2,28,3,30,1,13,2,9,1,1,2,11,1,16,2,9,1,29,1,9,1,16,3,11,1,1,58,29,1,28,10,6,14,9,2,13,1,6,3,7,1,6,2,8,1,1,18,17,1,10,1,8,1,7,1,8,2,7,3,8,1,6,2,30,1,6,1,30,1,6,1,9,1,16,1,9,7,16,1,14,1,11,2,15,1,16,1,9,1,16,1,9,2,16,2,9,1,11,1,1,45,9,6,16,1,1,7,9,21,8,1,7,1,6,3,13,3,6,4,9,1,11,1,1,14,11,2,15,1,16,1,9,28,13,1,6,9,13,1,6,2,13,2,6,1,13,1,6,1,15,1,1,3,14,3,11,1,1,51,}, + {1,164,7,1,28,21,6,4,13,1,9,1,15,1,9,1,13,1,6,3,13,1,6,5,13,1,16,2,13,1,7,1,6,3,13,2,28,2,30,1,13,2,8,1,1,3,11,1,16,1,9,1,29,1,8,1,16,2,9,1,11,1,1,59,9,1,28,11,6,12,8,2,6,9,1,19,9,1,7,7,8,2,6,1,30,4,6,1,9,1,16,1,9,1,16,3,9,1,16,1,11,2,15,1,16,1,9,5,16,2,9,1,16,2,1,45,9,5,11,1,1,9,16,1,8,1,9,1,8,1,9,18,13,1,6,2,13,2,6,7,8,1,16,1,1,18,11,2,16,1,9,1,8,1,9,6,8,1,9,15,7,1,6,7,13,2,6,1,13,3,6,1,7,1,11,1,1,3,11,1,14,3,11,1,1,51,}, + {1,163,11,1,28,21,30,1,6,2,13,1,6,2,7,1,9,1,16,2,8,1,6,9,13,1,15,1,9,1,6,2,13,2,28,2,29,1,30,1,6,2,7,1,1,5,11,1,29,1,13,1,16,1,9,2,11,1,1,61,28,11,6,21,13,2,11,1,1,19,8,2,7,5,8,2,7,1,30,1,29,5,9,2,16,1,9,1,16,2,11,2,16,1,9,7,16,3,15,1,11,2,1,44,9,3,16,1,1,13,9,22,13,1,6,6,26,1,13,1,6,4,9,1,1,21,11,1,16,1,9,2,8,1,9,1,8,1,9,16,13,1,6,6,13,1,6,5,9,1,1,4,11,1,14,4,1,52,}, + {1,163,6,1,28,1,29,1,28,18,29,1,6,2,13,2,6,1,13,1,6,2,9,1,16,1,15,1,9,1,13,1,6,5,13,1,6,2,13,1,15,1,9,1,6,1,13,1,29,1,28,2,30,1,13,1,6,2,11,1,1,2,11,1,16,1,1,2,16,1,9,3,12,1,1,62,8,1,28,11,13,1,6,19,13,2,9,1,1,20,8,1,7,5,8,1,7,2,6,1,29,3,6,1,30,2,9,2,16,1,15,1,11,1,15,1,16,1,9,9,16,1,14,1,11,1,14,1,16,1,1,4,5,1,1,39,9,2,11,1,1,15,11,1,9,2,8,1,9,18,8,1,13,1,6,3,26,2,13,3,6,3,13,1,11,1,1,23,11,1,9,2,8,1,9,15,8,1,6,1,13,1,6,4,26,1,6,3,7,1,15,1,1,4,11,1,14,5,1,52,}, + {1,162,16,1,28,13,29,1,28,7,6,4,13,1,6,5,9,1,16,2,9,1,6,9,8,1,16,1,13,1,29,1,28,2,29,1,13,3,11,1,1,2,17,1,9,1,16,1,11,1,1,2,17,1,9,1,16,1,1,63,11,1,28,1,29,1,28,9,30,1,7,1,6,17,13,1,6,1,8,1,16,1,1,20,11,1,7,1,8,1,7,2,8,1,7,4,6,1,29,4,30,1,6,1,9,1,15,1,14,1,16,1,9,5,16,2,9,3,16,1,9,2,16,3,17,1,1,43,11,1,1,19,16,1,9,21,8,1,7,1,6,4,13,1,6,3,13,2,1,1,11,1,1,25,11,1,9,16,8,1,6,8,9,1,1,5,11,2,14,2,9,1,14,1,11,1,1,52,}, + {1,162,29,1,28,13,30,1,6,2,30,1,28,3,29,1,6,8,13,1,6,2,7,1,16,2,9,1,6,9,9,1,13,1,28,2,29,1,13,1,6,1,13,1,14,1,1,3,9,1,16,1,14,1,15,1,1,3,12,1,1,60,5,1,1,4,7,1,28,11,6,17,7,1,8,1,16,1,15,1,16,1,11,1,1,20,11,1,7,2,8,1,7,6,6,1,29,5,6,1,15,1,9,15,16,4,1,65,17,1,9,21,8,1,7,1,6,4,13,2,6,1,11,1,1,1,11,3,1,25,11,1,16,1,10,1,9,13,13,1,6,4,7,1,16,1,1,5,11,1,14,2,11,2,14,1,8,1,14,1,11,1,1,52,}, + {1,161,7,1,28,14,30,1,6,4,30,1,28,1,6,13,7,1,16,2,9,1,6,7,13,1,30,1,29,1,28,1,30,2,6,2,15,1,1,3,17,1,8,2,14,1,11,3,1,67,11,1,28,11,30,1,6,12,7,1,6,1,7,1,8,1,9,1,15,2,9,1,13,1,16,1,1,21,16,1,7,6,8,1,7,2,6,1,29,4,30,1,6,1,16,1,9,14,16,5,1,48,11,1,1,17,14,1,8,2,9,1,8,1,9,17,8,1,13,1,6,2,13,1,6,1,8,1,1,2,11,1,14,1,11,1,17,1,11,1,1,26,16,1,8,1,9,10,8,2,6,1,7,1,9,1,11,1,1,6,11,2,14,2,11,1,14,1,9,2,14,1,11,1,1,52,}, + {1,160,6,1,28,15,30,1,6,4,13,1,6,15,7,1,16,2,9,1,7,1,13,2,6,3,30,1,28,2,30,1,13,3,16,1,1,3,17,1,9,1,29,1,28,1,8,1,9,1,16,1,1,69,6,1,28,11,6,13,13,1,9,1,15,1,16,1,9,1,6,3,7,1,1,22,9,1,7,1,8,1,7,7,29,4,30,1,29,1,8,1,9,14,16,3,9,2,11,1,1,67,17,1,9,22,13,1,7,1,6,1,17,1,1,2,14,5,11,2,1,26,9,8,16,2,17,1,11,1,1,8,11,1,14,2,11,1,14,4,30,1,15,1,14,1,1,53,}, + {1,158,11,1,29,1,28,16,30,1,6,22,16,2,9,1,13,3,6,1,30,1,28,2,29,1,13,3,9,1,1,3,11,1,16,1,9,1,13,1,29,1,30,1,9,2,17,1,1,68,11,1,28,11,29,1,6,11,8,1,15,1,16,1,8,1,6,6,1,23,9,1,7,1,8,1,7,2,8,1,7,3,6,1,29,3,6,2,16,1,9,2,16,2,9,14,16,2,1,69,11,1,9,2,8,1,9,19,8,1,1,3,14,7,11,1,1,26,11,3,1,14,11,2,14,7,15,1,29,1,14,2,1,53,}, + {1,157,11,1,29,1,28,17,6,19,13,1,6,4,9,1,15,1,8,1,13,1,6,1,30,1,28,2,29,1,13,2,6,1,9,1,1,3,11,1,16,1,9,3,29,2,9,1,16,2,1,69,6,1,28,11,30,1,6,8,13,1,9,1,16,1,8,1,6,2,7,1,6,5,11,1,1,22,11,1,8,2,7,7,6,1,29,2,30,1,7,1,9,1,16,3,9,17,15,1,1,70,11,1,16,1,9,20,1,3,11,1,14,8,11,1,1,38,11,5,14,7,30,1,13,1,14,1,1,54,}, + {1,156,11,1,28,19,6,11,13,2,6,6,13,2,6,3,7,1,9,1,16,1,7,1,13,1,28,2,30,1,13,1,6,2,9,1,1,4,16,3,9,1,16,1,30,1,29,1,13,1,16,2,11,1,1,68,12,1,28,12,13,1,6,6,13,1,9,1,8,1,6,2,7,1,6,6,13,1,9,1,1,17,5,1,1,5,11,1,7,1,8,1,7,6,8,1,6,1,29,2,6,1,30,1,7,1,9,1,16,2,9,14,16,1,9,1,16,1,1,73,17,1,9,2,8,1,9,15,1,4,11,2,14,6,11,3,1,35,11,1,17,1,14,7,11,1,14,3,30,1,15,1,11,1,1,54,}, + {1,156,29,1,28,19,6,11,13,2,6,6,13,3,6,1,7,1,6,2,9,1,16,1,28,2,30,1,13,1,6,2,8,1,1,4,16,2,9,5,29,2,9,1,16,2,1,69,29,1,28,11,29,1,6,5,13,2,6,11,13,2,1,24,17,1,7,8,8,1,29,1,6,1,29,1,6,1,30,2,8,1,16,2,9,15,16,2,1,75,16,1,9,14,16,1,1,7,11,2,14,4,17,1,11,1,17,1,11,1,1,34,11,1,14,5,17,2,14,3,13,1,30,1,14,1,11,1,1,54,}, + {1,155,9,1,28,20,6,9,13,1,6,2,7,1,9,1,6,1,13,2,6,7,13,1,6,2,29,2,30,1,6,2,7,1,9,1,1,4,16,1,9,5,16,1,9,1,29,2,9,3,11,1,1,68,16,1,28,5,29,1,28,6,30,1,6,14,13,1,6,3,7,1,11,1,1,24,16,1,7,2,8,1,7,5,6,1,30,1,29,2,30,1,29,2,7,1,9,1,16,1,9,15,16,1,11,1,1,76,11,1,16,1,9,12,1,8,11,4,14,5,11,2,1,32,11,2,14,7,11,1,14,1,30,1,13,1,14,1,1,55,}, + {1,155,29,1,28,20,6,13,9,1,16,1,6,8,13,1,6,2,28,2,13,1,8,1,13,2,7,1,1,4,16,2,9,1,16,1,9,2,16,3,6,1,29,1,6,1,9,2,16,1,1,69,29,1,28,12,6,14,13,1,6,1,13,1,9,1,16,1,11,1,1,25,9,1,7,7,6,1,29,2,30,1,29,1,30,3,6,1,9,1,16,2,9,13,16,2,1,79,11,1,16,1,9,1,8,1,9,5,8,1,9,1,1,13,11,2,14,4,11,2,1,31,11,1,14,6,17,1,14,1,13,1,29,1,14,1,11,1,1,55,}, + {1,154,16,1,28,21,6,11,30,1,29,1,6,1,11,1,15,1,7,1,6,1,13,1,6,4,13,1,30,1,28,2,30,2,8,1,13,1,8,1,1,4,17,1,16,1,9,1,16,2,15,3,14,2,15,1,8,2,14,1,16,1,9,1,11,1,1,68,16,1,28,13,6,13,13,1,9,1,15,1,16,1,9,1,16,1,1,26,9,1,7,2,8,1,7,4,6,1,29,1,30,1,29,1,30,1,29,3,7,1,9,16,16,2,1,81,11,1,16,1,9,6,11,1,1,15,11,1,14,4,11,2,1,29,11,1,14,6,11,1,15,1,30,1,13,1,14,1,1,56,}, + {1,154,7,1,28,20,29,1,6,12,28,1,30,1,13,1,1,1,12,1,7,1,13,1,6,4,13,1,28,2,30,1,13,2,6,1,8,1,1,4,11,1,16,1,17,1,11,5,14,1,16,3,30,1,29,1,9,1,16,3,1,69,28,13,29,1,6,13,13,1,9,1,13,1,6,1,7,1,1,27,8,1,7,7,6,1,30,5,29,1,30,1,9,1,16,2,9,12,16,1,9,2,17,1,1,83,11,1,16,1,9,1,8,1,9,1,16,1,1,19,11,2,14,1,11,2,1,28,14,5,11,1,14,1,13,1,30,1,14,1,11,1,1,56,}, + {1,154,29,1,28,20,29,1,6,12,29,1,28,1,30,1,9,1,1,1,15,1,13,5,28,2,30,1,6,1,13,1,6,1,8,1,1,4,11,4,14,1,15,2,16,2,9,1,16,1,9,2,6,1,29,1,13,1,9,1,16,2,1,69,16,1,28,13,6,12,7,1,6,5,11,1,1,26,11,1,8,1,7,5,8,1,7,1,6,1,30,2,29,2,30,1,29,1,7,1,9,2,16,2,9,12,16,1,9,1,11,1,1,86,17,1,16,1,1,22,11,4,1,26,11,1,14,6,29,1,13,1,14,1,1,57,}, + {1,153,11,1,28,21,30,1,6,12,30,1,28,2,6,1,11,1,1,1,16,1,6,1,13,1,30,1,28,2,30,1,13,1,6,2,8,1,1,5,17,1,16,4,9,2,16,1,9,1,16,2,9,1,16,1,9,1,29,1,30,1,9,2,16,1,11,1,1,69,29,1,28,13,6,1,13,1,6,1,13,1,6,7,30,1,6,5,14,1,1,27,11,1,7,6,8,1,7,1,6,1,29,1,30,3,29,1,30,1,9,1,16,1,9,12,16,1,9,1,16,3,11,1,1,112,11,2,1,25,11,1,14,5,13,1,30,1,14,1,11,1,1,57,}, + {1,153,11,1,28,21,6,13,26,1,28,2,30,1,8,1,1,2,9,1,6,1,28,2,30,1,13,3,7,1,1,4,11,1,16,2,9,1,16,3,9,3,16,5,9,1,30,1,29,1,9,1,16,3,1,69,9,1,28,6,29,1,28,7,6,16,9,1,1,28,12,1,7,4,8,1,7,1,8,1,7,1,6,1,29,3,30,1,6,2,16,3,9,13,16,3,11,1,1,80,5,1,1,20,11,1,1,36,11,1,14,5,30,1,9,1,11,1,1,58,}, + {1,153,11,1,28,20,29,1,6,6,7,2,8,2,9,3,8,1,30,1,28,2,6,1,15,1,1,1,11,1,29,1,28,1,30,1,6,1,13,2,8,1,1,4,11,1,16,2,9,4,16,1,9,5,16,3,9,1,6,1,29,1,9,1,16,3,1,70,29,1,28,14,6,15,13,1,1,29,16,1,7,1,8,1,7,3,8,1,7,2,6,1,29,1,30,1,29,2,30,1,8,1,9,1,16,1,9,14,16,1,9,1,16,1,11,1,1,137,11,1,14,4,13,1,6,1,14,1,11,1,1,58,}, + {1,153,11,1,28,20,30,1,6,2,7,1,13,1,9,2,16,8,15,1,30,2,13,1,8,1,1,2,9,1,13,3,6,1,8,1,1,5,16,3,9,3,16,2,9,2,16,5,15,2,16,1,9,1,15,1,17,2,15,1,11,1,1,4,5,1,1,64,9,1,28,1,29,1,28,13,6,3,13,1,6,11,9,1,1,29,9,1,7,6,8,1,7,1,6,1,29,2,30,1,29,2,9,17,16,4,1,5,11,1,1,107,11,2,1,22,14,3,15,1,30,1,14,2,1,59,}, + {1,153,11,1,28,19,30,1,6,2,8,1,9,1,15,2,16,1,9,4,8,5,29,1,28,2,8,1,12,1,1,2,9,1,6,1,7,1,9,1,1,5,16,1,9,6,16,1,9,2,16,2,15,1,11,6,8,2,16,4,1,70,29,1,28,15,6,15,1,30,8,1,7,8,6,1,29,1,30,3,6,1,9,19,16,2,11,1,1,101,11,8,14,2,1,24,14,3,6,1,9,1,14,1,1,60,}, + {1,153,11,1,28,18,6,2,13,1,9,2,13,2,7,1,6,10,30,1,28,2,30,1,6,1,1,3,6,1,8,1,1,5,16,1,9,2,16,3,9,1,16,3,15,1,11,3,14,1,15,1,16,4,30,1,29,1,9,1,16,2,9,1,11,1,1,69,8,1,28,16,6,14,8,1,1,30,8,1,7,8,6,1,29,1,30,3,8,1,16,3,9,12,16,3,9,1,16,3,11,1,1,133,14,2,16,1,6,1,14,1,11,1,1,60,}, + {1,153,11,1,28,16,29,1,6,20,28,3,6,1,16,1,1,2,17,1,1,5,16,3,9,5,16,1,14,1,11,2,15,1,16,2,9,1,16,2,9,4,29,1,9,1,16,2,9,1,17,1,1,70,28,1,29,1,28,15,6,14,15,1,1,29,11,1,8,1,7,6,8,1,7,1,6,1,30,2,6,2,9,1,16,1,9,1,16,1,9,16,16,2,9,1,16,1,11,1,1,130,11,2,14,1,6,1,15,1,11,1,1,1,11,1,1,59,}, + {1,154,28,15,29,1,6,18,13,1,6,2,28,3,30,1,6,1,1,7,16,1,9,1,16,2,9,3,16,2,14,1,16,2,9,3,16,1,9,5,16,2,29,1,9,1,16,4,1,70,8,1,28,16,29,1,6,13,7,1,11,1,1,30,8,2,7,5,8,1,7,1,6,1,30,1,29,2,6,1,16,1,9,17,6,1,9,6,15,1,11,1,1,128,14,1,9,2,14,1,11,1,1,61,}, + {1,154,6,1,28,13,29,1,6,19,13,1,6,2,30,1,28,2,30,1,13,1,14,1,1,5,12,1,9,1,16,3,9,3,16,2,9,2,16,1,9,2,16,1,9,2,16,2,9,2,16,2,6,1,8,1,9,1,16,2,9,1,11,1,1,70,28,17,6,11,26,1,13,1,6,1,8,1,1,30,11,1,8,1,7,8,6,1,30,2,29,1,7,1,16,1,9,17,29,1,8,1,16,7,11,1,1,126,14,1,13,1,14,1,11,1,1,62,}, + {1,154,16,1,28,13,6,20,13,2,6,2,28,3,6,1,8,1,1,4,15,1,9,23,16,1,9,1,7,1,16,1,9,1,16,2,14,1,1,70,8,1,28,16,29,1,6,14,9,1,1,2,28,1,1,28,9,1,7,8,6,3,29,1,8,1,16,1,9,2,16,1,9,11,16,2,8,1,29,1,30,1,8,1,9,1,16,1,9,4,16,1,11,1,1,124,9,1,14,1,11,1,1,63,}, + {1,154,11,1,28,12,30,1,6,21,13,1,6,2,28,3,13,1,6,1,11,1,1,3,9,1,16,1,9,22,16,1,9,1,6,1,16,2,9,1,16,2,1,65,5,1,1,4,11,1,28,17,6,15,16,1,1,31,9,1,7,7,8,1,6,3,29,1,9,1,16,1,9,1,16,1,9,12,16,2,9,1,29,2,30,1,13,1,9,1,16,2,9,3,16,2,11,1,1,121,15,1,14,1,1,64,}, + {1,155,29,1,28,11,6,25,30,1,28,2,29,1,6,1,16,1,1,3,16,1,9,25,7,1,9,1,16,1,9,3,11,1,1,70,7,1,28,16,6,16,16,1,1,2,11,1,1,28,16,1,7,5,8,1,7,1,8,1,7,1,29,1,6,1,30,1,9,1,16,2,9,11,16,5,6,1,29,3,6,1,9,1,16,2,9,2,16,2,9,1,11,1,1,119,11,1,1,65,}, + {1,155,7,1,28,11,6,20,13,1,7,1,8,1,10,1,9,2,29,3,9,2,1,3,11,1,16,2,9,1,16,1,9,18,16,1,9,4,16,1,9,4,11,1,1,69,11,1,28,6,29,1,28,9,6,17,16,1,1,31,16,1,7,7,8,1,7,1,30,2,6,1,9,4,16,3,9,7,16,1,9,1,16,1,9,1,16,1,9,1,6,1,29,3,30,1,8,1,9,2,16,1,9,1,16,3,11,1,1,117,11,1,1,65,}, + {1,155,16,1,28,11,6,17,13,1,9,2,15,1,16,4,9,1,6,1,28,2,8,2,11,1,1,3,16,1,9,1,16,2,9,23,16,1,9,4,16,2,11,1,1,68,8,1,28,15,6,18,9,1,1,31,16,1,8,1,7,8,6,2,30,1,8,1,9,1,16,1,9,15,16,2,9,1,13,1,29,4,13,1,9,1,16,1,9,1,16,1,9,1,16,2,11,1,1,115,11,1,1,65,}, + {1,156,28,10,29,1,6,14,13,1,9,1,16,1,15,1,16,1,9,2,8,1,13,3,6,1,30,1,28,2,30,1,6,1,9,1,1,3,11,1,9,1,16,1,9,22,16,2,9,1,16,2,9,4,16,2,15,1,11,1,1,66,29,1,28,14,6,18,7,2,17,1,1,30,17,1,8,1,7,6,8,1,7,1,30,2,29,1,6,1,8,1,9,1,16,5,9,12,16,1,9,1,13,1,29,2,28,1,29,1,30,1,9,1,16,6,11,1,1,179,}, + {1,156,29,1,28,9,29,1,6,12,13,1,9,3,13,1,7,1,6,5,13,2,6,2,28,3,6,1,7,1,1,4,16,1,9,30,16,2,9,1,16,4,11,1,1,65,29,1,28,13,6,13,26,2,6,3,13,1,6,2,7,1,11,1,1,29,11,1,8,2,7,3,8,1,7,3,6,1,30,2,29,1,6,1,8,1,9,1,16,1,9,1,16,1,9,15,16,1,8,1,30,1,29,2,28,1,30,1,9,1,16,2,9,1,16,1,9,1,12,1,1,178,}, + {1,156,29,1,28,1,29,1,28,7,6,12,8,1,13,1,6,14,28,3,13,1,6,1,11,1,1,3,11,1,16,1,9,1,16,4,9,17,16,3,9,5,16,6,9,1,16,1,11,1,1,63,11,1,28,13,6,17,13,2,6,1,13,1,6,2,7,1,11,1,1,28,11,1,8,1,7,5,8,1,7,2,6,1,29,1,30,1,29,2,6,1,9,2,16,1,9,1,16,1,9,15,16,1,9,1,30,1,29,3,6,1,9,1,16,3,9,1,16,1,11,1,1,176,}, + {1,156,7,1,28,9,6,28,30,1,28,2,6,2,9,1,1,4,16,6,9,17,16,3,9,2,7,1,6,1,30,1,7,1,8,1,9,1,16,3,9,3,16,1,11,1,1,62,9,1,28,12,29,1,6,16,30,1,13,2,6,1,13,1,6,2,30,1,7,1,16,1,1,27,11,1,8,1,7,3,8,1,7,1,8,1,7,1,6,1,29,1,30,2,29,2,6,1,8,1,16,2,9,1,16,1,9,15,16,2,8,1,30,1,29,3,13,1,9,5,11,1,1,175,}, + {1,156,16,1,28,9,6,13,13,1,6,15,28,2,30,1,6,1,13,1,1,4,16,1,9,1,16,4,9,19,16,1,9,2,16,1,9,1,8,1,6,1,29,2,30,1,13,1,9,1,16,2,9,1,16,1,9,1,16,1,11,1,1,61,29,1,28,12,30,1,7,1,6,14,30,1,28,1,6,1,13,1,6,4,13,1,6,2,9,1,11,1,1,25,11,1,8,1,7,2,8,1,7,1,8,2,7,1,6,1,30,6,8,1,16,1,9,1,16,1,9,14,16,2,9,1,16,2,8,1,30,1,29,1,28,1,29,1,8,1,16,2,9,2,12,1,1,174,}, + {1,156,11,1,28,9,6,12,13,1,6,16,28,2,30,1,6,2,11,1,1,3,11,1,16,2,9,1,16,1,9,20,16,1,9,3,16,3,9,1,13,1,30,1,29,2,30,1,9,1,16,6,11,1,1,59,11,1,28,13,30,1,6,15,30,1,28,1,29,1,30,1,13,1,30,1,13,3,6,3,7,1,16,1,1,25,8,1,7,6,6,1,29,2,30,1,29,1,30,1,29,2,9,2,16,1,9,14,16,2,9,2,16,3,13,1,29,3,7,1,9,1,16,1,9,1,16,2,1,173,}, + {1,156,11,1,28,9,6,28,13,1,29,1,28,1,29,1,6,2,9,1,1,4,16,1,9,28,16,2,9,2,16,1,8,1,6,1,29,2,30,1,8,1,9,1,16,1,9,1,16,2,15,1,1,59,11,1,28,13,29,1,6,3,13,2,6,10,29,1,28,2,29,1,13,2,6,1,13,6,6,1,9,1,11,1,1,22,11,1,7,7,30,2,29,5,8,1,16,2,9,18,16,3,9,2,6,1,29,2,30,1,9,2,16,3,1,172,}, + {1,157,28,8,29,1,6,29,30,1,28,2,6,2,7,1,1,4,17,1,9,28,16,2,9,6,13,1,29,2,30,1,9,1,16,5,11,1,1,58,11,1,29,1,28,13,30,1,6,3,13,1,6,9,13,1,30,1,28,3,29,1,30,1,13,7,6,2,7,1,16,1,1,22,7,1,8,1,7,3,8,1,6,1,30,1,29,4,30,1,6,1,16,2,9,21,16,3,8,1,29,3,9,4,16,1,1,171,}, + {1,157,29,1,28,7,30,1,6,28,13,1,6,1,28,2,6,1,13,1,6,1,11,1,1,3,11,1,9,29,16,1,9,6,16,1,9,1,7,1,29,2,30,1,9,1,16,1,9,1,16,2,12,1,1,59,7,1,28,13,29,1,6,13,13,1,30,1,29,1,28,4,29,1,30,1,6,3,13,2,6,3,7,1,16,1,11,1,1,19,11,1,7,5,6,1,30,2,29,3,30,1,6,1,16,1,9,23,16,1,9,1,16,1,9,1,30,1,29,2,9,1,16,1,9,2,16,1,1,170,}, + {1,157,29,1,28,7,6,16,13,1,6,1,13,1,6,5,13,1,9,3,16,3,8,1,30,1,9,1,8,1,13,1,16,1,1,4,16,2,15,1,16,4,9,4,16,14,9,4,16,1,9,3,16,1,9,2,16,2,9,2,13,1,29,2,13,1,16,2,9,2,16,1,1,59,8,1,28,4,29,1,28,9,29,1,6,7,13,1,6,4,13,2,30,1,28,6,30,1,13,1,6,2,7,1,6,3,13,2,9,1,1,19,12,1,7,2,8,2,7,1,6,2,29,4,6,1,16,1,9,24,16,3,9,1,7,1,28,1,29,1,9,1,16,3,15,1,1,169,}, + {1,157,6,1,28,7,6,20,7,1,8,1,9,1,16,6,9,2,8,1,28,1,8,1,13,3,1,4,17,1,16,4,9,6,16,14,9,15,16,1,9,1,13,1,29,1,30,1,9,4,16,1,11,1,1,58,9,1,28,1,29,1,28,1,29,2,28,10,6,13,13,2,26,1,28,6,29,1,13,2,6,7,16,1,1,18,8,2,7,2,8,1,6,1,29,5,6,1,9,1,16,1,9,27,16,1,8,1,28,1,30,1,9,1,16,2,15,1,1,169,}, + {1,157,6,1,28,7,6,18,13,1,9,1,15,1,16,1,9,2,8,1,13,1,7,2,6,4,28,1,30,1,6,1,13,1,6,1,11,1,1,4,16,1,9,2,16,3,9,32,16,2,9,1,16,1,9,1,7,1,29,1,8,1,16,1,9,1,16,1,9,1,11,1,1,58,16,1,28,15,29,1,6,13,13,2,30,1,29,1,28,5,29,1,30,1,6,7,7,1,15,1,1,16,11,1,7,3,8,1,7,1,6,1,29,4,6,1,9,27,16,1,9,4,29,1,30,1,16,2,11,2,1,168,}, + {1,157,6,1,28,7,6,17,8,1,9,1,8,1,13,1,6,11,28,1,30,1,6,3,16,1,1,6,11,1,16,1,9,1,16,1,9,33,16,3,9,3,7,1,13,1,16,4,11,1,1,58,11,1,29,1,28,15,6,13,13,3,6,1,30,1,28,6,30,1,13,1,6,6,9,1,11,1,1,15,16,1,8,1,7,2,8,1,6,1,29,4,7,1,9,1,16,1,9,25,16,2,9,1,16,1,9,2,29,1,8,1,14,1,11,3,1,167,}, + {1,157,6,1,28,6,29,1,6,32,30,2,6,3,8,1,1,8,11,1,16,3,9,1,16,17,9,12,16,1,9,1,16,1,9,4,16,1,9,1,8,1,9,1,16,2,11,1,1,59,11,1,29,1,28,15,30,1,6,17,30,1,28,5,29,1,30,1,6,6,7,1,15,1,1,14,11,1,7,5,6,2,29,1,30,1,8,1,9,3,16,10,9,17,16,1,9,3,7,1,11,4,1,167,}, + {1,157,6,1,28,6,30,1,6,1,13,1,6,28,13,1,6,2,30,1,6,4,16,1,1,9,17,1,16,2,9,5,16,13,9,1,16,3,9,8,16,2,1,2,11,1,16,1,9,2,16,3,11,1,1,62,6,1,28,2,29,1,28,12,30,1,6,19,29,1,28,4,29,1,13,1,6,6,9,1,1,14,7,7,6,2,9,1,16,3,9,27,16,2,9,1,16,1,14,1,16,1,11,3,1,167,}, + {1,157,29,1,28,6,6,31,13,1,6,3,13,1,6,4,9,1,11,1,1,9,11,1,14,1,15,1,17,2,11,12,14,2,15,1,16,3,9,7,16,1,11,1,1,5,11,1,16,3,1,7,11,1,1,57,6,1,28,15,6,20,30,1,28,5,30,1,13,1,6,2,30,1,6,2,8,1,1,13,8,1,7,7,8,1,14,2,15,1,16,3,9,4,16,3,9,20,16,1,14,1,11,6,1,166,}, + {1,157,29,1,28,6,6,32,13,1,6,1,13,1,6,4,13,1,6,2,7,1,16,1,1,9,11,20,14,1,16,3,9,2,16,1,9,1,11,1,1,8,17,1,1,4,11,1,1,4,16,1,11,1,1,56,7,1,28,14,29,1,6,21,30,1,28,4,29,1,6,6,8,1,11,1,1,3,5,1,1,7,8,1,7,4,8,1,7,1,8,1,9,1,11,8,14,2,15,1,16,6,9,1,16,12,9,2,16,1,17,1,11,7,1,4,33,1,1,161,}, + {1,157,29,1,28,5,30,1,6,45,16,1,1,8,11,22,14,2,15,1,16,1,11,1,1,3,14,1,9,1,15,1,1,6,11,1,9,2,16,1,1,3,11,1,9,1,11,1,1,56,6,1,28,2,29,1,28,11,6,22,13,1,29,1,28,4,13,1,6,3,13,1,6,1,13,1,11,1,1,10,8,1,7,1,8,4,7,2,15,1,11,17,17,1,15,1,16,4,15,1,16,7,12,1,11,6,1,1,11,3,1,4,11,1,1,160,}, + {1,157,28,5,6,1,7,1,6,41,13,2,6,1,13,1,6,2,16,1,1,8,11,24,1,3,15,1,9,4,1,4,11,1,9,5,1,3,11,1,15,1,1,57,6,1,28,13,6,23,13,2,28,4,30,1,13,1,6,2,7,1,6,1,8,1,1,10,7,7,16,1,11,23,1,3,11,11,1,5,11,1,1,165,}, + {1,157,28,4,30,1,8,1,6,36,13,1,6,1,30,1,29,1,30,2,13,4,6,3,7,1,16,1,1,7,11,22,1,3,15,1,9,6,1,3,17,1,9,5,16,1,1,3,11,2,1,56,11,1,6,1,28,12,6,23,13,3,29,1,28,3,30,1,6,4,13,1,16,1,1,9,8,1,7,1,8,2,9,1,16,2,11,23,1,6,11,7,1,173,}, + {1,157,28,3,30,1,9,1,13,1,6,39,13,1,29,1,28,3,29,1,30,1,6,5,13,1,14,1,1,6,11,20,1,3,11,1,16,1,9,5,16,1,11,1,1,3,15,1,9,1,16,1,15,3,11,1,1,3,17,1,1,57,11,1,29,1,28,11,30,1,6,24,13,2,30,1,28,3,30,1,6,3,13,1,9,1,11,1,1,8,17,2,11,26,1,4,11,1,1,4,11,5,1,4,11,1,12,1,1,5,16,1,1,162,}, + {1,156,17,1,28,2,6,1,9,1,8,1,13,1,6,41,13,1,29,1,28,4,29,1,30,1,13,1,6,1,13,2,9,1,11,1,1,5,11,19,1,3,14,2,15,2,9,1,16,1,14,3,1,4,14,5,17,1,1,62,9,1,28,11,30,1,6,24,13,1,6,1,13,1,30,1,28,3,6,3,8,1,9,2,1,8,11,27,1,4,17,1,9,1,16,1,11,1,1,3,11,4,1,3,16,1,9,3,1,4,9,1,16,1,1,161,}, + {1,156,8,1,28,1,8,1,9,3,7,1,6,41,7,1,6,1,13,1,30,1,28,4,29,1,13,3,6,1,13,1,15,1,1,25,11,1,14,3,15,1,14,4,15,1,11,1,1,3,11,1,14,4,15,1,11,1,1,62,6,1,28,10,30,1,6,25,13,1,6,1,13,2,29,1,28,2,13,1,6,1,8,1,9,2,16,1,1,6,11,27,1,4,16,1,9,4,11,1,1,3,11,2,1,3,16,1,9,4,16,1,1,3,16,1,9,1,12,1,1,160,}, + {1,156,6,1,9,5,7,1,6,44,30,1,6,1,30,1,28,4,29,1,6,2,13,2,8,1,1,24,11,1,14,2,17,1,15,2,14,3,15,1,14,1,1,3,11,1,14,3,11,1,1,64,11,1,28,10,30,1,6,29,13,1,30,1,28,1,30,1,13,1,9,4,11,1,1,5,11,27,1,3,16,1,9,6,1,3,11,1,1,4,9,6,17,1,1,3,17,1,12,1,11,1,1,159,}, + {1,156,9,6,13,1,6,48,29,1,28,4,30,1,13,1,6,3,15,1,1,23,11,1,14,7,11,1,1,4,11,2,1,68,6,1,28,9,30,1,6,30,13,1,30,1,28,1,13,1,9,4,15,1,1,6,11,25,1,3,11,1,15,1,16,1,9,5,11,1,1,6,17,1,14,1,15,3,14,3,1,3,11,1,14,2,1,159,}, + {1,156,9,6,13,1,6,48,13,1,6,1,30,1,28,3,29,1,13,1,6,3,9,1,1,23,11,1,15,1,14,3,17,1,11,1,1,75,8,1,28,9,6,29,13,2,6,2,30,1,6,1,9,5,1,6,11,13,1,15,15,1,14,2,15,1,16,1,15,2,14,1,17,1,1,6,11,1,14,7,17,1,1,3,11,1,1,160,}, + {1,156,9,6,8,1,6,49,13,1,30,1,13,1,29,1,28,3,30,1,13,1,6,2,8,1,1,24,11,1,17,1,11,1,1,77,9,1,28,8,29,1,6,25,13,4,6,3,13,2,9,6,17,1,1,6,11,2,1,24,17,1,15,2,14,5,15,2,17,1,1,6,15,1,14,2,15,1,14,2,17,2,1,164,}, + {1,156,9,7,7,1,6,50,13,3,29,1,28,2,30,1,6,1,13,2,7,1,1,103,16,1,28,8,8,1,13,1,7,1,6,21,13,2,6,2,13,1,6,4,13,1,9,8,1,32,11,1,17,1,15,1,14,2,15,1,14,1,15,1,14,1,15,1,17,1,1,6,11,1,15,1,17,2,15,1,17,1,11,1,1,165,}, + {1,156,9,8,8,1,13,1,6,47,13,1,6,3,26,1,30,1,29,1,28,1,30,1,13,1,6,2,7,1,1,102,8,1,28,1,29,1,28,4,6,1,8,1,9,6,8,7,13,7,7,1,6,1,7,1,6,3,7,3,13,1,7,1,8,2,9,5,17,1,16,1,9,1,8,1,1,33,11,1,14,2,15,1,14,1,15,1,14,1,15,1,11,1,1,8,11,2,1,169,}, + {1,156,16,1,9,10,8,6,13,5,7,1,6,34,7,1,6,3,26,1,6,1,26,1,30,1,29,1,30,1,6,3,7,1,1,101,7,1,29,3,6,1,7,1,8,1,9,24,15,1,11,1,17,1,9,1,8,2,9,6,8,1,9,1,11,1,1,3,11,1,9,1,15,1,1,33,11,1,14,5,11,1,1,180,}, + {1,156,15,1,9,24,8,1,13,2,6,29,7,1,15,2,10,1,30,1,26,1,6,5,13,1,9,1,11,1,16,1,1,100,9,1,8,2,9,27,1,5,11,1,9,1,10,1,9,5,16,1,1,6,11,1,9,1,1,35,11,2,1,183,}, + {1,156,11,1,9,28,8,3,13,1,7,1,6,16,13,3,6,1,26,1,6,1,9,1,1,4,11,1,7,1,6,2,30,1,6,1,16,1,1,4,11,1,1,99,9,9,8,1,9,16,8,1,9,1,16,1,1,7,11,1,9,1,10,1,9,3,17,1,1,4,16,1,1,3,11,1,1,1,9,1,11,1,1,217,}, + {1,157,9,33,8,3,13,1,6,12,13,2,6,3,16,1,1,6,11,1,9,1,13,2,11,1,1,9,11,1,1,95,9,27,16,1,1,3,11,1,9,1,16,1,1,3,11,1,9,3,16,1,1,3,15,1,30,2,13,1,1,4,16,1,6,1,1,217,}, + {1,157,9,39,8,1,13,2,7,1,6,9,7,1,17,1,1,3,14,1,9,1,11,1,1,3,9,1,11,1,1,3,16,1,9,1,1,5,16,1,9,1,1,94,9,27,1,3,14,1,26,1,30,2,13,1,1,3,11,1,9,2,1,3,15,1,30,4,13,1,1,3,14,1,30,1,8,1,1,216,}, + {1,157,16,1,9,43,8,3,13,2,6,3,14,1,1,3,9,1,30,2,26,1,11,1,1,5,11,1,13,1,30,2,13,1,1,5,30,1,9,1,1,93,9,25,10,1,1,3,14,1,30,1,26,1,30,3,13,1,1,3,14,1,16,1,1,2,11,1,30,2,26,1,30,3,9,1,1,3,8,1,13,1,16,1,1,215,}, + {1,157,11,1,9,50,16,1,1,3,8,1,30,5,11,1,1,4,13,1,30,1,26,1,30,2,8,1,1,4,9,1,13,1,11,1,1,92,9,2,8,1,9,7,8,2,9,6,8,4,9,3,11,1,1,2,11,1,13,1,26,1,30,3,26,1,30,1,9,1,1,3,17,1,1,2,8,1,13,2,26,2,13,3,11,1,1,2,14,1,13,2,1,215,}, + {1,158,9,47,8,1,9,2,1,3,9,1,30,5,26,2,1,3,15,1,13,1,26,1,30,4,14,1,1,3,15,1,13,1,8,1,1,92,16,1,9,7,16,1,12,1,11,2,1,16,9,1,13,2,26,1,30,2,26,1,13,2,11,1,1,5,16,1,13,8,1,3,9,1,11,1,1,215,}, + {1,158,11,1,9,48,11,1,1,2,11,1,13,2,26,1,30,3,29,1,30,1,9,1,1,2,11,1,13,1,25,1,26,2,13,3,1,3,11,1,13,2,15,1,1,92,14,1,11,2,1,23,16,1,13,7,26,1,13,1,10,1,1,6,13,1,27,1,13,6,11,1,1,219,}, + {1,159,17,1,9,13,16,5,12,1,17,1,11,23,17,1,16,2,17,1,1,3,13,5,30,2,26,1,13,2,1,3,9,1,13,6,9,1,1,3,8,1,12,1,1,119,9,1,13,9,7,1,1,6,16,1,7,1,13,3,8,1,16,1,11,1,1,220,}, + {1,161,9,1,16,1,15,1,11,4,1,41,11,1,13,10,16,1,1,2,11,1,13,7,1,125,9,1,13,8,15,1,1,7,16,1,9,1,15,1,11,1,1,223,}, + {1,210,16,1,7,1,13,8,11,1,1,2,17,1,13,5,11,1,1,127,9,1,13,5,9,1,11,1,1,235,}, + {1,211,12,1,13,6,9,1,1,5,16,2,11,1,1,131,11,1,9,1,13,1,9,1,11,1,1,237,}, + {1,212,11,1,9,1,13,2,9,1,11,1,1,382,}, + {1,214,11,1,1,385,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, + {1,600,}, +} +}) \ No newline at end of file diff --git a/map_gen/data/presets/dino9.lua b/map_gen/data/presets/dino9.lua new file mode 100644 index 00000000..591c59b1 --- /dev/null +++ b/map_gen/data/presets/dino9.lua @@ -0,0 +1,832 @@ +local b = require 'map_gen.shared.builders' +return b.decompress({ +height = 825, +width = 578, +data = { + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,260,11,2,12,1,27,3,10,4,27,2,10,1,11,3,1,302,}, + {1,256,11,1,10,1,29,1,28,3,29,1,26,1,27,8,26,1,29,1,28,4,9,1,27,1,12,1,11,1,1,296,}, + {1,253,11,1,27,1,28,2,29,1,27,1,26,1,29,1,27,2,26,5,27,12,26,1,28,3,10,1,9,1,11,1,1,291,}, + {1,251,12,1,28,2,29,1,27,1,26,13,27,3,26,1,27,1,26,2,27,10,29,1,28,2,10,1,9,1,11,1,1,286,}, + {1,249,9,1,28,2,26,1,27,1,29,3,26,13,27,4,26,1,27,1,26,1,27,14,29,1,28,3,9,1,27,2,12,1,11,3,1,276,}, + {1,247,9,1,28,2,27,1,26,7,29,1,26,11,27,2,26,2,27,4,26,1,27,20,29,2,28,4,10,2,27,1,12,1,11,4,1,265,}, + {1,245,12,1,28,2,27,1,26,3,28,1,29,1,26,7,29,1,26,12,27,1,26,2,27,3,26,1,27,29,29,2,28,1,29,1,28,3,9,1,27,2,11,1,1,1,11,1,1,1,11,1,17,1,1,252,}, + {1,244,29,1,28,1,26,3,28,1,29,1,26,24,27,4,26,1,27,40,29,1,28,2,27,1,12,1,1,253,}, + {1,242,12,1,28,1,26,7,29,2,26,24,27,2,26,1,27,44,29,2,12,1,1,1,12,1,1,249,}, + {1,240,11,1,27,1,28,1,26,2,28,1,29,1,26,1,29,5,26,25,27,1,26,2,27,46,28,1,9,1,1,249,}, + {1,239,12,1,28,1,26,2,29,1,28,1,26,2,28,1,29,4,26,30,27,47,28,1,12,1,1,247,}, + {1,238,27,1,28,1,29,1,26,1,28,1,26,2,28,1,29,1,26,1,29,4,26,12,29,3,26,15,27,50,9,1,1,245,}, + {1,237,28,2,26,1,29,1,28,2,29,1,28,1,29,7,26,13,29,2,26,15,27,2,26,2,27,46,29,1,12,1,1,244,}, + {1,236,10,1,29,2,26,2,28,1,26,2,28,1,26,1,29,1,26,1,29,3,26,14,29,1,26,20,27,47,28,1,12,1,1,243,}, + {1,235,27,1,28,1,29,2,28,3,26,1,28,1,26,1,28,3,29,3,26,7,29,3,26,26,27,2,26,3,27,42,29,1,12,1,11,1,1,241,}, + {1,234,27,1,28,1,29,1,26,1,28,1,26,2,29,1,28,1,26,1,28,1,29,1,26,1,29,1,26,1,29,4,26,5,29,4,26,31,27,42,29,1,27,1,1,241,}, + {1,233,10,1,28,1,29,1,28,1,26,1,28,1,29,6,28,3,26,1,28,1,26,1,28,1,26,2,28,2,29,2,28,1,29,1,26,1,29,1,28,1,26,1,28,1,26,2,29,1,26,1,29,2,26,20,27,45,29,1,9,1,1,1,17,1,1,238,}, + {1,232,12,1,28,1,29,1,28,4,26,1,29,8,26,1,29,1,26,1,29,1,26,1,29,2,26,1,29,1,26,2,29,1,28,5,29,1,28,1,29,1,28,1,26,2,29,1,26,19,27,46,29,1,12,1,1,239,}, + {1,231,9,1,28,1,29,1,28,2,26,1,28,1,29,7,26,3,29,1,28,3,29,1,28,1,26,1,28,7,29,1,28,1,29,1,28,2,29,1,26,2,29,1,26,23,27,4,26,1,27,39,28,1,1,239,}, + {1,231,29,1,28,1,29,2,26,1,28,1,26,2,28,3,29,4,26,2,29,2,26,1,29,1,28,11,29,2,27,2,9,1,12,1,27,1,28,1,26,23,27,2,26,3,27,40,28,1,1,238,}, + {1,230,27,1,28,1,26,1,29,1,28,2,26,1,28,1,26,2,28,6,29,2,28,2,26,1,29,1,28,8,29,1,27,2,12,5,17,1,11,1,28,1,29,1,26,27,27,42,1,237,}, + {1,229,11,1,28,7,26,1,28,1,29,2,26,1,29,1,26,1,29,4,28,10,27,2,12,5,10,1,6,1,28,3,29,1,28,1,29,1,26,26,27,41,29,1,12,1,1,236,}, + {1,229,28,7,26,1,28,1,29,1,26,3,29,3,28,2,29,1,26,1,28,6,29,1,27,1,9,1,12,3,9,1,29,1,28,10,26,28,27,5,9,2,27,33,28,1,1,236,}, + {1,228,26,1,28,1,29,1,28,3,26,2,28,2,26,1,28,1,26,2,29,3,28,8,29,1,27,1,9,1,12,3,7,1,28,13,29,1,26,27,27,4,12,1,11,3,12,1,27,32,9,1,1,235,}, + {1,228,28,12,29,1,28,1,26,1,28,1,26,1,28,7,29,1,9,1,12,3,7,1,28,15,29,3,26,3,29,3,26,18,27,2,28,3,29,1,9,1,11,4,12,1,27,10,26,1,27,19,28,1,1,235,}, + {1,227,28,13,29,1,28,2,26,1,29,1,26,1,28,4,29,1,27,1,12,3,9,1,28,17,29,1,28,1,29,1,26,1,29,3,26,1,29,1,26,16,27,1,26,1,27,2,28,6,6,1,11,4,9,1,27,10,26,2,27,17,28,1,11,1,1,233,}, + {1,226,11,1,28,14,29,2,28,6,27,1,9,1,12,2,16,1,28,19,29,1,28,1,29,1,26,1,29,2,26,20,27,2,28,9,6,1,11,3,12,1,27,11,26,1,27,16,26,1,1,234,}, + {1,226,29,1,28,1,29,1,28,2,29,1,28,7,29,1,28,2,29,1,28,5,27,1,12,3,7,1,28,4,6,1,9,1,16,4,28,10,29,1,28,1,29,5,26,19,27,2,28,11,8,1,11,3,9,1,27,10,26,1,27,16,6,1,1,233,}, + {1,225,12,1,28,12,29,2,28,6,29,1,27,1,12,2,9,1,28,4,6,1,16,2,12,1,17,3,11,1,16,1,6,1,28,8,29,1,28,1,29,2,26,1,29,3,26,18,27,1,29,1,28,13,12,1,11,2,12,1,27,27,12,1,1,232,}, + {1,224,11,1,28,2,29,1,28,1,26,1,28,9,29,1,28,5,29,1,9,1,12,2,9,1,28,4,16,2,17,1,11,4,17,1,12,1,11,1,16,1,28,7,29,2,28,1,26,1,29,1,26,1,29,1,26,20,27,1,28,15,9,1,11,2,12,1,27,26,28,1,1,232,}, + {1,224,10,1,28,3,29,1,28,11,29,1,28,3,29,1,9,1,12,2,10,1,28,4,16,2,12,1,11,7,16,1,12,1,6,1,28,7,29,2,26,1,29,1,26,1,29,1,26,20,27,1,28,16,6,1,11,2,12,1,27,10,26,1,27,14,29,1,1,232,}, + {1,224,28,15,29,1,28,3,27,1,9,1,12,2,10,1,28,4,9,1,16,1,12,2,17,1,11,5,17,2,16,1,6,1,28,9,29,1,28,1,26,1,29,2,26,1,29,4,26,14,27,1,28,8,9,1,11,3,12,1,6,1,28,3,29,1,11,3,27,9,26,1,27,16,1,231,}, + {1,223,12,1,28,11,29,1,28,2,29,1,28,3,27,1,12,2,16,1,10,1,28,5,16,2,12,3,17,2,11,3,12,2,16,1,28,11,29,4,28,1,29,1,26,2,29,2,26,13,27,1,28,7,11,2,1,1,11,5,6,1,28,3,11,3,9,1,27,8,26,1,27,14,29,1,1,231,}, + {1,223,28,18,27,1,12,2,16,1,9,1,28,5,9,1,16,3,8,1,28,1,6,1,12,1,17,2,12,1,16,1,12,1,16,1,28,15,29,1,26,3,29,2,26,13,27,1,29,1,28,5,12,1,11,2,1,4,11,3,16,1,28,3,11,3,10,1,27,24,1,230,}, + {1,222,11,1,28,17,29,1,9,1,12,2,16,1,28,6,16,2,12,1,16,1,28,3,16,3,11,1,12,1,16,1,10,1,28,17,29,4,26,11,27,1,26,1,27,2,28,5,11,2,1,2,11,3,1,1,11,3,9,1,28,2,29,1,11,3,27,23,29,1,1,230,}, + {1,222,26,1,28,13,26,2,28,2,27,1,12,1,16,1,9,1,29,1,28,6,16,1,12,2,16,1,28,3,16,2,17,1,16,3,28,17,29,4,26,1,27,2,26,1,27,12,28,4,29,1,11,1,1,3,17,1,28,2,11,1,1,2,11,2,29,1,28,2,6,1,11,3,27,23,12,1,1,229,}, + {1,221,11,1,28,15,29,1,28,2,10,1,12,1,16,1,8,1,28,7,16,2,12,1,16,9,7,1,28,18,29,4,26,4,27,11,28,4,6,1,11,1,1,2,11,1,16,1,28,2,16,1,1,2,11,3,28,3,10,1,11,2,12,1,27,4,9,1,27,17,29,1,1,229,}, + {1,221,29,1,28,2,29,1,28,16,9,2,28,8,9,1,16,1,12,1,16,4,12,2,16,2,10,1,28,21,29,4,26,1,29,1,26,1,27,11,28,4,11,2,1,3,10,1,6,1,11,1,1,3,11,2,6,1,28,3,12,1,11,2,12,1,27,4,9,1,27,15,9,1,28,1,1,229,}, + {1,221,28,20,27,1,7,1,28,9,16,7,12,1,9,1,10,1,29,1,28,22,29,2,28,1,29,6,26,1,27,7,28,3,29,1,11,2,1,2,11,1,1,5,11,2,1,1,8,1,28,4,11,3,27,4,9,1,27,17,12,1,1,228,}, + {1,220,27,1,28,19,26,1,28,11,6,1,9,1,16,3,9,1,10,1,27,2,28,30,29,4,26,4,27,3,28,4,11,2,1,10,11,1,16,1,28,4,8,1,11,3,27,3,12,1,27,17,29,1,1,228,}, + {1,220,28,21,29,1,28,13,7,1,27,1,29,1,28,38,29,3,26,1,27,3,28,3,12,1,1,11,11,1,7,1,28,5,11,3,9,1,27,2,9,1,27,16,9,1,28,1,1,228,}, + {1,219,12,1,28,2,29,1,28,77,29,2,26,1,27,1,28,2,29,1,11,3,1,7,11,2,28,6,6,1,11,3,27,2,9,1,27,18,12,1,1,227,}, + {1,219,28,82,29,1,28,1,29,2,27,3,12,1,11,4,1,4,11,2,28,7,17,1,11,2,9,1,27,1,9,1,27,18,29,1,1,227,}, + {1,218,11,1,28,3,26,1,28,79,29,3,28,1,29,1,26,1,27,2,12,1,11,1,1,2,11,1,1,1,11,2,29,1,28,7,6,1,11,2,12,1,27,19,10,1,28,1,1,227,}, + {1,218,29,1,28,78,29,2,28,1,26,1,28,1,29,2,28,1,26,5,27,2,12,1,1,2,11,2,29,1,28,9,11,3,27,19,9,1,29,1,12,1,1,226,}, + {1,217,9,1,28,85,26,1,28,1,29,1,28,1,29,1,26,4,27,1,12,2,10,1,28,11,12,1,11,1,12,1,27,21,28,1,1,226,}, + {1,217,27,1,28,33,29,1,28,46,29,2,28,1,29,3,26,1,29,3,26,2,27,2,26,1,27,1,28,13,9,1,27,22,9,1,28,1,1,226,}, + {1,217,28,33,29,1,28,45,29,1,28,2,29,3,26,1,29,3,26,1,29,1,26,1,27,4,29,1,27,1,28,12,27,23,9,1,29,1,11,1,1,225,}, + {1,216,9,1,28,1,29,1,28,2,29,1,28,27,26,1,29,1,28,48,29,6,26,1,29,2,26,1,27,5,26,1,27,1,28,11,10,1,27,25,1,225,}, + {1,215,12,1,28,32,29,1,26,1,28,43,29,1,28,2,29,6,26,1,29,1,26,5,27,3,9,1,27,1,26,1,29,2,28,8,27,1,9,2,27,24,28,1,1,225,}, + {1,215,11,1,28,1,26,1,28,28,29,1,26,1,27,1,28,44,29,1,28,2,29,5,26,1,29,1,26,6,27,3,9,2,27,1,26,2,29,1,28,3,27,1,10,1,9,12,27,16,9,1,28,1,11,2,1,223,}, + {1,215,29,1,28,30,26,1,27,1,26,1,28,44,29,1,28,2,29,3,26,9,27,5,12,1,9,1,26,1,29,3,10,1,12,3,9,14,27,17,1,224,}, + {1,214,12,1,28,1,29,1,28,28,26,1,27,2,28,45,29,4,26,8,29,1,26,1,27,5,9,2,12,1,27,1,26,1,29,1,28,1,27,1,12,4,9,16,27,13,28,1,1,224,}, + {1,214,28,30,26,1,27,2,28,46,29,3,26,9,29,1,26,1,27,4,9,3,12,1,9,1,27,1,29,1,28,2,27,1,12,3,9,1,12,1,9,2,12,1,9,11,27,13,28,1,11,1,1,223,}, + {1,212,11,1,28,31,26,1,27,2,28,47,29,2,26,11,27,4,9,4,11,1,27,1,28,1,29,2,26,1,9,1,12,8,9,12,27,13,1,223,}, + {1,211,11,1,10,1,28,30,26,1,27,3,28,48,26,11,27,3,9,5,12,2,9,1,27,1,28,2,29,1,27,1,12,10,9,12,27,1,9,1,27,8,28,1,1,223,}, + {1,212,28,31,26,1,27,2,29,1,28,45,29,1,28,3,26,1,29,1,26,4,27,1,26,2,27,4,9,3,12,4,9,1,26,2,28,2,27,1,12,14,9,10,27,8,28,1,1,223,}, + {1,211,27,1,28,30,29,1,26,1,27,2,28,33,29,5,26,4,28,1,29,1,26,2,29,1,28,2,29,2,26,7,27,9,9,1,27,2,9,1,26,2,28,2,26,1,9,1,12,18,9,5,27,8,28,1,12,1,1,222,}, + {1,210,11,1,28,1,29,1,28,1,29,1,28,27,29,1,26,1,27,1,28,28,29,1,26,2,29,1,26,2,27,7,26,1,29,1,27,1,26,1,29,3,26,2,28,1,29,1,26,3,29,1,26,5,27,12,26,1,28,2,29,1,27,1,12,17,9,6,27,8,29,1,6,1,1,222,}, + {1,210,27,1,28,31,26,3,28,23,26,3,27,4,9,2,12,3,11,4,12,6,9,1,27,4,29,1,26,2,29,2,26,7,27,11,26,1,29,3,27,1,12,19,9,8,27,5,28,1,1,222,}, + {1,209,12,1,28,32,29,1,26,1,28,21,29,2,27,2,10,1,12,2,11,7,1,5,11,4,1,2,11,4,12,1,9,1,27,2,26,2,29,1,26,7,27,10,26,2,29,2,26,1,12,1,11,1,12,17,9,9,27,4,28,1,11,1,1,221,}, + {1,209,28,1,29,1,28,32,26,1,28,17,26,3,27,2,12,1,11,5,1,24,11,1,10,1,26,11,27,10,28,2,26,1,27,2,11,1,12,18,9,9,27,5,1,221,}, + {1,208,12,1,28,50,29,1,26,1,27,1,10,1,12,1,11,4,1,30,12,1,26,2,27,1,29,1,26,7,27,9,26,1,28,1,26,1,27,2,12,2,11,1,17,1,12,3,17,1,11,1,17,1,12,12,9,7,27,3,28,1,1,221,}, + {1,207,11,1,28,50,26,1,27,1,9,1,12,1,11,1,1,35,11,1,12,1,27,1,29,1,26,1,29,1,26,6,27,10,29,1,26,1,27,1,29,1,9,1,12,1,11,1,17,2,11,6,12,11,9,9,27,1,29,1,11,1,1,220,}, + {1,206,11,1,9,1,28,47,29,1,26,1,27,2,12,1,11,2,1,38,12,1,26,2,29,1,26,1,29,1,26,6,27,8,29,1,27,4,12,1,11,4,17,1,11,5,12,11,9,8,27,2,29,1,11,1,1,219,}, + {1,206,11,1,28,47,26,2,27,1,29,1,12,1,11,1,1,41,12,1,29,1,26,1,29,1,26,1,29,1,28,1,27,1,29,1,26,3,27,7,26,1,27,3,29,1,27,1,12,1,11,12,12,9,9,8,27,1,28,1,12,1,1,219,}, + {1,206,12,1,28,45,29,1,26,1,27,2,28,1,10,1,1,43,11,1,12,1,26,2,27,1,26,4,29,2,26,2,27,10,29,2,9,1,11,14,12,8,9,6,27,3,10,1,1,219,}, + {1,206,28,42,26,2,29,1,26,1,27,3,28,1,27,1,11,1,1,22,11,3,12,6,16,2,12,1,17,1,11,3,1,6,11,1,12,1,27,1,26,10,27,10,29,1,27,1,12,1,11,14,12,8,9,6,27,2,6,1,1,219,}, + {1,205,11,1,28,40,29,2,26,3,27,3,28,2,11,1,1,18,11,3,17,1,12,2,16,1,9,1,27,5,10,1,7,1,27,1,10,1,9,1,12,1,11,4,1,4,11,2,12,1,27,1,26,2,29,1,26,8,27,8,29,2,9,1,11,15,12,7,9,7,27,1,28,1,1,219,}, + {1,205,29,1,28,40,26,3,27,3,29,1,28,2,12,1,1,16,11,2,12,2,16,1,9,2,10,1,9,1,27,1,26,1,29,3,26,2,27,2,26,1,27,1,10,1,9,1,12,1,17,1,11,5,1,3,11,1,12,1,27,1,26,1,27,1,26,1,29,1,26,6,27,9,29,1,27,1,12,1,11,15,12,7,9,6,27,2,9,1,1,218,}, + {1,204,11,1,28,40,29,1,26,2,27,2,29,1,28,3,16,1,1,15,11,1,12,1,9,4,10,2,27,1,26,4,29,4,26,3,30,1,6,1,27,1,10,1,9,4,16,1,12,2,16,2,11,2,1,1,12,1,28,2,29,1,27,1,26,5,27,10,29,2,10,1,11,15,12,8,9,4,27,1,9,1,27,1,29,1,1,218,}, + {1,204,10,1,28,40,29,1,27,4,28,3,6,1,11,1,1,12,11,2,12,1,9,8,25,1,27,1,26,1,29,5,26,1,27,3,26,2,27,1,9,6,10,1,27,2,7,1,10,1,12,1,11,1,1,1,9,1,28,4,29,1,26,3,27,10,29,3,12,1,11,14,12,8,9,5,10,1,27,1,29,1,1,218,}, + {1,204,28,1,29,1,28,36,29,1,26,2,27,4,28,4,11,1,1,11,11,1,12,1,9,5,12,3,17,1,12,1,9,2,27,1,26,1,29,5,26,1,27,1,10,1,9,1,25,1,27,1,10,1,9,2,12,1,9,2,10,1,27,1,26,1,6,1,26,1,27,1,10,1,16,1,11,1,1,1,6,1,28,5,29,1,27,1,26,1,27,9,26,1,29,2,27,1,11,15,12,7,9,6,27,2,1,218,}, + {1,203,12,1,28,38,26,2,27,4,28,4,12,1,1,10,11,1,17,1,9,5,16,1,17,1,12,1,17,1,11,2,17,1,12,1,9,1,10,1,26,1,29,5,26,1,27,1,9,3,10,1,9,1,12,2,17,1,9,1,10,2,25,1,27,1,26,2,27,2,10,1,11,1,1,1,11,1,28,6,29,4,27,7,29,1,28,1,29,1,27,1,12,1,11,15,12,6,9,6,27,2,9,1,1,217,}, + {1,203,27,1,28,37,26,1,28,1,26,2,27,2,28,4,10,1,1,10,11,1,17,1,12,1,9,3,12,1,9,1,16,2,11,5,12,1,9,2,27,1,26,1,29,1,28,2,29,1,26,1,25,1,9,1,12,4,11,2,9,2,10,2,9,3,10,1,27,2,9,1,16,1,11,1,1,1,11,1,28,7,29,1,28,1,29,1,26,2,27,3,26,1,29,1,28,1,29,1,27,1,9,1,11,15,12,6,9,6,27,2,29,1,1,217,}, + {1,203,28,39,26,1,29,2,27,1,28,5,11,1,1,10,11,1,12,1,10,2,9,1,12,2,11,3,1,2,11,1,17,2,12,1,16,1,9,1,27,1,26,1,29,1,28,3,26,1,25,1,9,1,12,3,11,2,12,1,9,2,10,1,9,4,12,2,10,2,9,1,11,2,1,1,9,1,28,9,29,2,26,1,27,2,29,2,28,1,29,1,27,2,12,1,11,14,12,6,9,5,27,3,28,1,1,217,}, + {1,202,12,1,28,1,29,1,28,38,29,2,28,5,11,1,1,10,11,1,12,1,10,3,9,1,12,1,11,3,10,1,11,2,17,1,9,2,12,1,9,1,25,1,26,1,29,1,28,4,29,1,27,1,9,1,12,1,17,1,11,3,12,2,16,1,11,5,12,1,17,1,11,1,16,1,9,1,12,1,11,3,28,11,29,1,26,2,29,3,27,3,12,1,11,14,12,5,9,6,27,3,28,1,1,217,}, + {1,202,29,1,28,46,16,1,1,10,11,1,12,1,9,1,27,2,9,5,12,2,11,2,17,1,12,2,9,1,25,1,26,1,29,1,28,5,29,1,25,1,9,1,12,1,17,1,11,2,1,1,11,1,9,1,7,1,11,1,28,1,1,2,11,5,16,1,9,1,11,3,12,1,28,10,29,3,26,2,27,4,9,1,11,13,12,6,9,6,27,3,29,1,12,1,1,216,}, + {1,202,28,40,26,1,28,5,29,1,1,11,11,1,9,1,26,3,25,1,27,1,29,2,28,2,29,1,27,2,25,1,10,1,25,1,27,1,29,2,28,6,29,1,27,1,12,3,11,2,17,1,12,1,16,2,12,1,11,3,12,1,11,2,1,1,11,1,12,1,9,2,1,1,11,2,29,1,28,9,29,1,26,1,27,7,9,1,11,12,17,1,12,5,9,6,27,5,9,1,1,216,}, + {1,201,11,1,28,46,11,1,1,10,11,1,9,1,26,4,29,3,28,4,29,2,26,2,29,2,28,9,26,1,9,1,12,2,17,1,11,1,12,1,9,1,10,1,7,2,10,2,9,3,16,1,11,3,12,1,9,1,11,4,28,8,29,1,27,9,9,1,12,1,11,11,12,5,9,7,27,5,9,1,1,216,}, + {1,201,12,1,28,45,12,1,1,10,11,1,12,1,27,1,29,2,28,12,29,2,28,10,29,1,9,1,12,6,9,1,26,1,30,1,29,1,26,2,27,2,10,1,9,1,12,2,9,2,12,1,11,3,6,1,28,5,29,2,26,1,27,9,9,1,12,1,11,8,12,7,9,6,27,7,28,1,1,216,}, + {1,201,29,1,28,44,10,1,11,1,1,10,11,1,10,1,29,1,28,27,29,1,9,1,15,1,12,4,9,1,10,1,27,1,26,1,29,2,26,2,27,1,10,1,9,4,12,1,11,2,1,1,11,1,28,5,27,2,26,1,27,9,12,1,11,8,12,7,9,5,27,10,1,216,}, + {1,201,28,1,29,1,28,42,29,1,1,11,11,1,12,1,29,1,28,29,26,1,9,1,12,5,9,2,27,2,26,1,27,6,25,1,9,1,12,1,11,3,1,1,7,1,28,5,27,9,9,1,12,2,11,6,12,6,9,6,27,11,29,1,1,216,}, + {1,201,28,44,11,1,1,11,11,1,27,1,28,31,25,1,12,1,15,1,12,1,9,4,25,1,27,1,26,3,29,1,26,3,27,1,9,1,16,1,11,2,1,1,11,2,28,5,27,9,12,4,11,2,12,6,9,6,27,14,28,1,1,216,}, + {1,200,12,1,28,43,11,1,1,5,11,1,1,5,11,1,9,1,29,1,28,31,26,1,9,1,12,3,9,2,25,1,27,2,26,5,27,1,25,1,9,2,12,1,11,1,1,2,11,2,7,1,28,5,27,6,9,2,12,3,11,1,12,5,9,6,27,17,28,1,1,216,}, + {1,200,12,1,28,42,12,1,1,5,11,3,1,4,11,1,25,1,28,31,29,2,25,1,12,3,9,2,25,1,26,7,27,1,25,1,9,2,12,1,11,1,1,4,11,1,28,5,27,5,9,3,12,5,9,4,27,23,28,1,1,216,}, + {1,200,11,1,28,18,29,3,28,11,26,1,28,9,17,1,1,6,11,3,1,3,15,1,30,1,28,31,26,1,29,1,26,1,9,4,27,1,26,1,29,6,26,1,27,1,25,1,9,2,17,1,11,1,1,3,11,2,9,1,28,4,29,1,27,4,9,5,12,1,9,2,27,27,28,1,1,216,}, + {1,200,29,2,28,19,29,1,28,21,6,1,1,7,11,2,1,3,16,1,29,1,28,24,29,1,27,1,28,4,26,1,9,1,26,1,29,1,27,1,10,1,9,2,26,1,29,1,28,6,29,1,26,1,27,1,9,1,12,1,17,1,11,2,1,3,11,2,28,5,9,1,27,1,9,1,27,3,9,1,27,1,9,1,12,1,27,29,28,1,1,216,}, + {1,200,26,1,28,43,11,1,1,7,11,2,1,1,11,1,9,1,28,24,26,1,15,1,29,1,28,3,29,1,9,1,11,2,26,1,28,1,26,1,9,2,26,1,28,8,29,1,26,1,25,1,9,1,11,3,1,4,11,1,8,1,28,4,27,1,9,1,27,6,9,1,27,30,28,1,1,216,}, + {1,200,27,1,28,43,11,1,1,7,11,2,1,1,11,1,25,1,28,24,26,1,28,5,29,1,26,1,25,1,9,1,26,1,28,1,29,1,9,2,26,1,28,8,29,1,26,1,27,1,9,1,12,1,11,3,1,3,11,2,28,4,29,1,12,1,9,1,27,7,26,8,27,21,28,1,1,125,11,1,1,90,}, + {1,200,27,1,28,43,11,1,1,3,11,1,1,3,11,1,1,2,11,1,26,1,28,31,29,2,26,1,29,1,28,1,26,1,9,1,25,1,26,1,28,9,29,1,26,1,9,1,12,1,11,3,1,3,11,2,6,1,28,4,12,1,9,1,27,6,26,12,27,18,28,1,1,115,11,1,27,1,29,1,28,7,26,1,27,1,9,1,1,88,}, + {1,200,27,1,28,43,8,1,1,3,11,3,1,4,11,1,29,1,28,33,26,3,27,1,26,2,29,1,28,10,26,1,10,1,12,1,11,3,1,2,11,3,10,1,28,4,12,1,9,1,27,5,26,15,27,16,28,1,1,113,27,1,28,2,27,5,26,1,27,5,29,1,28,1,27,1,9,1,11,1,1,84,}, + {1,200,27,1,28,44,11,6,1,3,11,2,29,1,28,34,29,5,28,11,29,1,25,1,12,1,11,3,1,2,11,3,6,1,28,4,12,1,9,1,27,4,26,1,29,1,26,15,27,15,28,1,11,1,1,110,12,1,28,1,29,1,27,2,26,1,27,2,26,3,27,2,26,3,27,2,26,1,29,1,28,2,11,2,1,81,}, + {1,200,27,1,28,44,16,1,1,1,11,5,1,2,11,2,29,1,28,36,29,4,28,10,29,1,27,1,12,1,11,3,1,1,11,4,28,5,12,1,9,1,27,2,29,1,26,6,29,1,26,12,27,14,28,1,1,110,29,1,28,1,26,3,29,1,27,1,26,3,27,1,26,7,27,5,29,1,28,1,12,1,1,1,10,1,1,78,}, + {1,200,27,1,28,45,1,2,11,8,29,1,28,35,29,6,28,9,29,1,25,1,12,1,11,2,1,1,11,4,12,1,28,5,12,1,27,1,26,1,28,1,26,1,29,1,26,5,29,1,26,14,27,12,28,1,11,1,1,108,29,1,26,5,27,1,26,2,27,2,26,8,27,2,29,1,27,1,26,2,27,2,29,1,27,1,12,1,1,77,}, + {1,200,27,1,28,45,11,1,1,1,11,8,29,1,28,37,29,2,26,2,29,1,28,8,29,1,10,1,12,1,11,2,1,1,11,3,17,1,16,1,28,4,27,2,26,5,29,2,26,17,27,13,28,1,1,107,11,1,29,1,27,1,26,9,27,2,26,6,27,1,26,1,27,2,29,1,26,3,27,3,28,1,6,1,1,76,}, + {1,200,26,1,28,45,7,1,11,2,1,1,11,2,1,1,11,3,26,1,28,38,29,1,26,3,29,1,28,7,29,1,9,1,12,1,11,1,1,1,11,4,12,1,6,1,28,4,9,1,27,1,26,2,29,1,26,1,29,2,26,18,27,13,28,1,10,1,1,105,17,1,28,1,26,1,27,1,26,18,27,2,26,5,27,5,28,1,12,1,1,74,}, + {1,200,12,1,28,46,11,1,1,1,11,7,26,1,28,37,29,1,28,1,26,1,27,2,26,1,29,1,28,6,26,1,9,1,17,1,11,1,1,1,11,3,17,1,11,1,28,4,29,1,27,1,26,1,29,1,26,1,28,2,29,2,26,19,27,12,29,1,11,1,1,104,12,1,28,1,26,1,27,1,26,8,27,1,26,10,27,1,26,7,27,1,26,2,27,3,29,1,12,1,1,72,}, + {1,200,12,1,28,35,29,1,28,10,12,1,1,3,11,5,27,1,28,35,29,4,26,1,27,3,29,1,28,1,29,1,28,4,26,1,9,1,11,1,1,1,11,5,17,1,28,4,9,1,27,1,26,1,28,4,29,2,26,19,27,12,28,1,10,1,1,104,29,2,26,10,27,1,26,19,27,6,28,1,27,1,1,71,}, + {1,200,12,1,28,47,11,1,1,2,11,2,1,1,11,2,27,1,28,34,29,1,26,1,29,1,26,1,27,2,10,1,25,1,10,1,26,1,29,1,28,5,26,1,12,1,11,1,1,1,11,5,9,1,28,4,9,1,27,1,26,1,28,2,29,1,26,1,29,1,26,2,29,1,26,17,27,12,28,1,11,1,1,102,12,1,27,1,28,1,27,1,26,2,27,4,26,25,27,6,29,2,1,70,}, + {1,201,28,37,29,1,28,1,29,1,28,7,11,1,1,1,11,1,1,1,11,4,27,1,28,11,29,1,28,23,27,1,26,1,27,1,10,1,9,2,10,1,9,1,27,1,29,1,28,5,26,1,12,1,11,1,1,1,11,2,17,1,11,1,17,1,28,4,27,2,26,1,28,1,29,1,28,1,29,1,26,22,27,12,28,1,1,104,28,1,27,1,29,1,26,2,27,3,26,6,27,1,26,20,27,4,26,1,27,1,26,1,28,1,1,69,}, + {1,201,28,37,26,1,28,9,9,1,1,3,11,4,10,1,28,11,29,1,28,1,26,1,29,1,27,1,9,1,27,1,28,19,9,1,12,3,9,2,26,1,28,6,26,1,12,1,1,1,11,5,12,1,28,4,9,1,27,1,29,1,28,1,29,1,28,1,29,1,28,1,26,3,29,2,26,14,27,14,28,1,1,103,29,1,26,2,27,1,26,3,27,1,26,7,27,1,26,18,27,2,26,1,27,7,10,1,1,68,}, + {1,201,27,1,28,36,29,1,26,1,28,1,29,1,28,7,11,1,1,1,11,2,1,1,11,2,9,1,28,13,26,1,9,1,11,1,27,1,28,5,29,1,11,1,1,1,11,1,17,1,12,1,11,1,12,1,9,1,27,2,29,1,28,3,27,1,12,1,11,2,17,1,12,1,29,1,28,6,25,1,11,1,1,1,11,4,17,1,7,1,28,4,9,1,26,1,29,1,28,5,26,19,27,14,28,1,1,102,29,2,26,5,27,1,26,1,27,1,26,3,27,3,26,20,27,3,26,1,27,2,26,1,27,3,10,1,1,67,}, + {1,201,12,1,28,31,26,1,29,1,28,1,26,1,28,2,26,1,29,1,26,1,28,7,16,1,11,1,1,1,11,1,1,2,11,1,12,1,28,15,9,1,29,1,28,5,27,1,12,5,11,2,12,1,11,3,9,1,28,1,29,1,26,1,9,1,11,2,12,1,25,1,28,7,9,1,11,1,1,1,11,4,12,1,28,4,27,2,28,2,26,1,28,4,29,1,26,18,27,14,28,1,1,100,11,1,17,1,28,1,26,7,27,3,26,1,27,3,26,20,27,11,28,1,9,1,11,1,1,65,}, + {1,202,28,33,29,2,26,1,29,1,28,1,26,1,28,1,26,1,28,7,11,6,17,1,28,33,26,3,25,1,26,1,9,1,11,2,27,1,28,7,29,1,12,1,1,1,11,5,9,1,28,4,9,1,29,1,26,2,28,5,29,2,26,2,29,1,26,13,27,15,29,1,1,101,27,1,29,1,26,5,27,1,26,2,27,5,26,21,27,4,26,1,27,7,28,1,1,66,}, + {1,202,29,1,28,32,29,1,26,2,29,1,28,1,29,1,26,2,28,7,6,1,11,2,1,2,11,2,28,34,29,1,26,1,27,2,9,1,27,1,26,1,29,1,28,7,10,1,17,1,1,1,11,4,17,1,28,4,27,2,29,2,26,1,29,2,26,2,29,2,26,17,27,15,28,1,1,101,28,1,26,8,27,1,26,1,27,4,26,21,27,4,26,2,27,7,29,1,1,65,}, + {1,202,12,1,28,32,29,1,26,2,29,1,28,1,29,3,28,8,17,1,11,4,1,1,7,1,28,35,29,1,26,3,29,1,28,7,29,1,12,1,11,1,1,1,11,4,6,1,28,4,27,1,29,6,26,20,27,16,9,1,1,100,27,1,26,1,27,2,26,6,27,1,26,3,27,2,26,22,27,3,26,2,27,7,28,1,11,1,1,64,}, + {1,203,28,33,26,3,28,3,26,1,29,1,28,8,11,3,1,2,12,1,28,35,29,2,26,1,29,5,28,3,29,1,10,1,11,1,1,1,11,4,9,1,28,4,27,1,26,1,29,1,28,2,29,3,26,20,27,15,28,1,1,100,11,1,28,1,27,2,26,6,27,2,26,3,27,3,26,22,27,2,26,2,27,8,28,1,1,64,}, + {1,203,27,1,28,32,29,3,28,2,26,3,28,8,6,1,11,5,6,1,28,34,29,2,26,2,29,1,26,1,27,1,26,1,28,3,7,1,12,1,11,1,1,1,11,2,12,2,28,4,29,1,27,1,28,1,29,1,28,3,29,5,26,17,27,15,28,1,1,100,9,1,29,1,26,4,27,1,26,3,27,3,26,2,27,1,26,24,27,2,26,2,27,8,28,1,11,1,1,63,}, + {1,203,12,1,28,32,29,4,28,1,29,1,26,1,28,10,9,1,11,1,1,1,11,1,1,1,16,1,28,35,29,2,26,3,27,1,26,1,28,2,27,1,16,1,11,2,1,1,11,2,17,1,28,5,27,1,28,1,26,1,28,4,29,6,26,15,27,17,1,100,28,1,26,4,27,2,26,6,27,1,26,25,27,3,26,1,27,1,26,1,27,2,26,1,27,4,26,1,12,1,1,63,}, + {1,204,28,33,29,4,28,1,29,1,28,1,26,2,28,8,12,1,11,1,1,2,11,1,6,1,28,34,29,2,26,2,27,2,26,2,27,1,9,1,11,2,1,1,11,2,17,1,7,1,28,4,27,1,28,3,29,1,28,3,29,1,26,1,29,3,26,16,27,16,9,1,1,99,9,1,28,1,26,3,27,5,26,29,27,6,26,2,27,7,29,1,1,63,}, + {1,204,12,1,28,32,29,3,28,1,29,1,28,1,26,1,28,11,12,1,11,2,1,1,16,1,29,1,28,34,26,1,27,5,10,1,16,1,11,3,1,1,11,2,16,1,28,5,26,1,28,6,29,2,26,2,29,2,26,15,27,16,28,1,1,100,29,1,26,4,27,2,26,1,27,2,26,28,27,6,26,4,27,6,28,1,1,63,}, + {1,204,11,1,28,39,26,1,28,11,12,1,11,3,10,1,28,33,29,1,26,1,27,1,10,2,9,2,12,1,11,3,1,1,11,2,12,1,28,5,27,1,28,2,29,1,28,1,26,1,28,1,29,2,26,4,29,1,26,15,27,17,1,100,28,1,26,4,27,3,26,30,27,4,26,5,27,7,28,1,12,1,1,62,}, + {1,205,12,1,28,31,29,4,28,2,26,2,29,1,28,11,16,1,11,1,1,1,12,1,6,1,28,32,29,1,27,1,10,2,9,2,12,1,11,3,1,2,11,1,17,1,28,5,26,1,28,1,26,1,28,2,26,1,29,4,26,21,27,14,29,1,12,1,1,99,12,1,28,1,26,2,27,1,26,1,27,3,26,30,27,4,26,6,27,7,11,1,1,62,}, + {1,206,28,31,29,1,26,1,29,3,26,2,29,2,28,2,29,1,28,9,7,1,11,2,9,1,29,1,28,30,29,1,26,1,10,1,9,3,12,1,11,4,1,1,11,1,17,1,28,7,29,1,28,3,26,1,29,3,26,22,27,14,6,1,1,100,28,1,26,1,27,1,26,2,27,3,26,31,27,4,26,6,27,7,29,1,1,62,}, + {1,206,27,1,28,30,29,1,26,1,29,3,26,3,29,1,28,14,11,2,9,1,6,1,28,29,29,1,27,1,9,2,16,1,17,2,11,3,1,2,17,1,28,6,29,1,28,5,26,1,29,3,26,19,27,16,29,1,11,1,1,100,28,1,26,3,27,3,26,32,27,4,26,2,27,1,26,4,27,7,1,62,}, + {1,207,27,1,28,29,29,3,28,1,29,2,26,1,29,1,28,16,11,1,17,1,10,1,29,1,28,28,29,1,27,1,9,2,12,1,17,1,11,3,1,2,11,1,28,8,29,1,28,1,26,1,28,1,26,1,29,1,26,1,29,2,26,19,27,16,28,1,1,100,10,1,29,1,26,2,27,1,26,1,27,1,26,33,27,4,26,7,27,7,1,62,}, + {1,207,12,1,28,34,29,2,28,3,29,1,28,14,17,1,12,1,10,1,29,1,28,27,29,1,10,1,9,1,16,1,12,1,11,3,1,1,11,2,28,10,26,1,28,1,26,1,29,1,26,2,29,2,26,18,27,16,28,1,9,1,1,100,29,2,26,3,27,2,26,33,27,4,26,7,27,6,28,1,1,62,}, + {1,208,12,1,28,37,29,2,28,15,9,2,25,1,28,26,29,1,26,1,10,1,9,1,12,1,11,3,1,1,11,2,28,12,26,1,28,1,29,1,26,1,28,2,29,1,26,14,27,20,29,1,1,101,28,1,26,2,27,1,26,36,27,4,26,7,27,4,26,1,27,1,28,1,1,62,}, + {1,209,28,38,29,2,28,1,29,1,28,13,7,1,9,1,25,1,29,1,28,24,29,1,27,1,7,1,9,1,17,1,11,5,28,12,29,2,26,2,28,1,26,1,29,3,26,15,27,17,29,1,1,101,11,1,28,1,26,38,27,7,26,5,27,1,26,2,27,3,29,1,1,62,}, + {1,208,11,2,28,35,29,2,28,1,29,2,28,2,29,2,28,12,9,1,10,1,29,1,28,23,29,1,27,1,9,1,12,1,11,4,12,1,28,10,29,1,28,3,29,1,26,1,29,4,26,17,27,16,29,1,12,1,1,78,9,1,28,1,29,1,28,1,12,1,1,18,27,1,29,1,26,22,28,1,26,16,27,6,26,5,27,7,1,62,}, + {1,210,27,1,28,37,29,2,28,17,9,1,10,1,6,1,28,21,29,1,27,1,9,1,17,1,11,4,7,1,28,9,26,2,28,4,29,3,26,19,27,17,29,1,1,76,11,1,9,1,28,1,29,1,27,4,29,1,17,1,1,16,29,1,26,3,27,1,26,19,29,1,26,14,27,1,26,1,27,6,26,5,27,6,29,1,1,62,}, + {1,211,28,38,26,1,29,3,28,15,7,1,9,1,27,1,29,1,28,15,29,3,7,1,9,1,12,1,11,4,9,1,28,11,26,3,29,7,26,17,27,17,28,1,9,1,1,76,28,2,27,1,26,2,27,4,29,1,9,1,1,15,26,1,27,1,26,22,27,1,26,14,27,8,26,4,27,7,29,1,1,62,}, + {1,211,11,1,28,37,29,1,28,2,29,3,26,2,28,12,29,1,9,1,10,1,27,1,28,5,29,4,28,1,29,1,30,1,27,4,9,1,12,1,11,4,16,1,28,12,26,2,28,1,29,8,26,15,27,1,26,1,27,16,28,1,11,1,1,76,27,1,29,1,27,1,26,3,27,4,9,1,29,1,28,1,12,1,1,13,28,1,26,23,27,1,26,14,27,8,26,4,27,7,12,1,1,62,}, + {1,212,11,1,28,40,29,2,26,2,28,14,16,1,9,1,10,1,29,2,28,2,29,1,26,1,27,1,25,1,9,3,10,1,9,2,12,1,17,1,11,4,29,1,28,10,29,1,26,1,28,1,26,2,28,1,26,1,29,3,26,18,27,16,26,1,27,1,29,1,10,1,1,76,11,1,28,1,29,1,26,1,29,1,26,2,27,6,29,1,27,1,1,12,12,1,28,1,26,38,27,8,26,5,27,5,29,1,12,1,1,62,}, + {1,213,9,1,28,41,29,1,28,2,29,1,28,3,29,2,28,8,9,1,12,1,9,1,7,1,6,1,29,3,30,1,26,2,25,1,10,1,9,2,12,2,11,2,12,1,6,1,28,9,29,3,26,2,28,3,29,1,26,1,29,3,26,16,27,20,28,1,1,77,28,1,27,3,26,4,27,3,26,1,27,2,28,1,11,1,1,11,10,1,29,1,26,22,27,1,26,15,27,8,26,6,27,4,28,1,1,63,}, + {1,213,11,1,12,1,28,42,26,1,28,2,29,1,28,2,29,1,26,1,29,1,28,8,6,1,10,2,7,1,27,1,6,1,30,1,27,2,10,1,9,2,16,2,10,1,28,12,29,1,28,2,29,1,28,1,29,1,26,2,29,2,28,1,29,2,26,17,27,19,28,1,1,77,11,1,28,1,27,1,26,1,29,1,26,4,27,7,28,1,1,11,29,1,27,1,26,5,29,1,26,31,27,9,26,7,27,3,28,1,1,63,}, + {1,215,9,1,28,44,26,1,28,4,29,2,28,15,29,1,6,1,29,1,28,19,29,1,28,1,26,2,28,1,26,19,27,18,26,1,27,2,28,1,12,1,1,77,12,1,29,1,26,9,27,1,26,1,27,4,28,1,1,10,27,1,26,38,27,9,26,8,27,2,28,1,1,63,}, + {1,216,10,1,28,46,29,1,26,1,29,5,28,26,26,1,29,5,28,1,29,3,26,2,29,1,26,17,27,19,29,1,27,2,28,1,11,1,1,78,12,1,27,2,26,9,27,5,29,1,12,1,1,9,28,1,26,1,29,1,26,36,27,8,26,2,27,2,26,5,27,1,28,1,12,1,1,63,}, + {1,216,11,1,1,1,29,1,28,47,26,2,28,1,26,2,29,3,28,17,29,2,28,1,29,1,26,1,29,2,26,3,29,7,26,17,27,3,26,1,27,15,29,1,27,2,28,1,11,1,1,79,28,1,27,1,26,10,27,6,28,1,1,9,28,1,29,1,26,36,27,8,26,2,27,1,26,2,27,1,26,2,27,1,26,1,27,1,28,1,9,1,1,63,}, + {1,219,10,1,28,46,29,3,26,3,28,1,29,4,28,11,29,7,28,1,29,2,26,3,29,1,26,23,27,1,26,2,27,15,26,1,27,2,28,1,11,1,1,80,28,1,27,1,26,10,27,8,11,1,1,7,28,1,26,2,29,1,26,2,29,1,26,31,27,8,26,5,27,1,26,1,27,3,29,2,17,1,1,63,}, + {1,220,9,1,28,47,26,2,28,3,29,1,28,1,26,2,27,1,28,5,29,4,26,1,28,1,29,1,26,1,29,1,28,1,29,5,26,27,27,17,29,1,27,2,28,1,10,1,1,81,26,1,29,1,27,1,26,9,27,7,29,1,12,1,1,6,11,1,28,1,26,5,28,1,26,31,27,8,26,3,27,4,26,2,27,1,28,1,11,1,1,64,}, + {1,222,27,1,28,48,29,1,26,1,28,2,26,3,28,2,29,5,28,3,29,3,28,1,29,4,26,1,29,3,26,3,29,1,26,21,27,16,29,1,27,2,29,1,9,1,1,83,28,1,27,1,26,10,27,1,26,1,27,5,28,1,11,1,1,5,12,1,28,1,26,36,27,9,26,2,27,2,26,1,27,2,26,1,27,2,28,1,1,65,}, + {1,223,9,1,28,50,26,1,29,1,26,1,29,1,28,4,29,1,26,3,29,1,28,1,29,1,26,3,28,3,29,1,26,2,29,1,28,1,29,1,26,2,29,1,26,18,27,1,26,1,27,16,26,1,27,2,29,1,9,1,1,83,11,1,27,1,26,11,27,8,29,1,1,5,27,1,29,1,26,6,29,1,26,29,27,8,26,6,27,1,26,1,27,2,28,1,27,1,1,65,}, + {1,224,9,1,28,3,29,1,28,43,29,1,26,1,28,2,26,1,28,9,29,2,28,4,29,2,26,1,29,3,28,2,29,2,26,1,29,1,26,18,27,16,29,1,27,3,28,1,9,1,17,1,1,84,11,1,28,1,26,10,27,8,29,1,12,1,1,3,12,1,28,1,26,37,27,9,26,3,27,3,26,1,27,1,29,1,28,1,1,66,}, + {1,226,11,1,28,45,29,1,28,1,29,1,26,2,28,5,29,1,28,6,29,7,28,1,29,5,26,17,27,1,26,2,27,15,26,1,27,3,28,1,10,1,1,88,28,1,26,9,27,9,29,1,9,1,1,2,11,1,28,1,26,37,27,9,26,6,27,2,29,1,28,1,1,66,}, + {1,228,9,1,28,44,26,4,28,11,29,1,28,2,29,4,26,1,29,5,26,20,27,15,29,1,27,3,28,1,11,1,1,89,11,1,28,1,26,8,27,10,29,2,12,1,28,1,26,38,27,9,26,7,27,1,28,1,1,67,}, + {1,230,28,2,29,1,28,42,29,1,28,11,29,1,26,1,29,2,26,4,29,2,26,2,29,1,26,18,27,17,29,1,27,2,26,1,28,1,1,92,11,1,28,1,29,1,26,8,27,5,26,1,27,2,9,2,28,1,29,1,26,38,27,9,26,6,27,1,26,1,28,1,1,67,}, + {1,231,11,1,28,3,29,1,28,39,26,1,28,9,29,5,26,27,27,2,26,1,27,13,29,1,26,1,27,2,28,1,29,1,11,1,1,93,12,1,27,1,28,1,29,1,26,6,27,2,26,1,27,1,26,1,27,2,9,2,27,2,26,38,27,9,26,5,27,1,26,1,27,1,28,1,12,1,1,67,}, + {1,233,9,1,28,2,29,1,28,38,26,1,28,9,29,3,28,1,29,2,26,2,29,2,26,22,27,18,26,1,28,1,11,1,1,97,29,1,28,1,29,1,26,7,27,1,26,1,27,2,9,1,27,4,29,1,26,37,27,9,26,8,29,1,1,68,}, + {1,235,29,1,28,1,29,1,28,37,26,1,28,7,29,9,26,22,27,20,28,2,11,1,1,99,12,1,28,1,26,2,29,1,26,6,27,6,26,1,29,1,26,1,27,2,26,34,27,9,26,6,27,1,28,1,12,1,1,68,}, + {1,237,28,2,29,1,26,2,28,33,26,1,28,7,29,1,28,2,29,1,26,2,29,2,26,23,27,19,28,1,11,2,1,101,12,1,28,1,26,1,28,1,26,1,27,1,26,4,27,6,26,3,27,2,26,34,27,9,26,5,27,1,29,1,27,1,1,69,}, + {1,237,12,1,11,1,28,1,26,4,28,31,26,1,28,7,29,5,26,27,27,16,28,1,6,1,1,105,27,1,28,2,26,1,27,2,26,2,27,2,26,1,27,4,28,1,26,1,27,3,26,33,27,9,26,5,27,1,26,1,28,1,11,1,1,69,}, + {1,236,11,1,16,1,28,3,29,1,26,3,29,2,28,27,29,1,28,5,29,4,26,3,29,3,26,25,27,14,28,2,12,1,11,1,1,106,28,2,26,1,27,1,26,3,27,2,26,1,27,4,28,1,26,1,27,3,26,5,27,2,26,26,27,9,26,5,27,3,1,70,}, + {1,234,11,1,6,1,28,6,29,1,27,2,26,1,27,1,26,1,29,1,26,2,29,1,28,27,29,4,26,2,29,1,26,25,27,2,26,1,27,13,29,1,27,1,12,1,11,2,1,106,11,1,1,1,28,1,26,1,27,2,29,1,27,3,26,1,27,3,26,4,27,3,26,2,27,2,26,1,27,1,26,26,27,8,26,7,28,1,11,1,1,70,}, + {1,229,12,1,27,1,28,11,26,2,27,1,26,2,27,3,26,3,29,2,28,19,29,1,28,4,26,2,29,2,26,25,27,2,26,1,27,14,29,2,11,1,1,112,28,1,29,1,27,1,28,1,26,1,27,2,26,2,27,3,26,4,27,3,26,1,27,4,26,27,27,9,26,4,27,1,26,1,27,1,1,71,}, + {1,226,12,1,29,1,28,2,26,2,27,1,28,11,29,1,27,9,26,3,29,2,28,15,29,1,28,4,26,2,29,8,26,16,27,18,29,1,27,1,9,1,1,114,12,1,28,1,26,1,28,1,26,1,27,2,26,1,27,3,26,5,27,10,26,25,27,9,26,3,27,1,26,1,28,1,11,1,1,71,}, + {1,223,12,1,29,1,28,1,29,4,26,3,29,1,28,1,29,1,26,1,28,8,26,1,27,11,26,3,29,3,28,7,29,1,28,3,26,1,28,4,29,4,26,13,27,1,26,4,27,20,29,2,12,1,1,117,28,1,26,1,28,1,26,1,27,2,26,1,27,3,29,1,26,5,27,5,26,2,27,5,26,22,27,8,26,5,27,1,29,1,1,72,}, + {1,220,12,1,27,1,28,2,29,1,26,2,29,2,26,2,28,2,26,1,28,5,29,1,28,1,29,1,28,4,27,15,26,2,29,3,26,6,29,1,26,2,28,1,29,3,26,1,29,1,26,10,27,28,29,2,1,1,11,1,1,118,11,1,28,2,26,1,27,1,26,2,27,2,26,1,29,1,26,2,27,1,26,3,27,5,26,1,27,6,26,21,27,8,26,4,27,1,28,1,11,1,1,72,}, + {1,217,12,1,27,1,28,2,29,1,26,6,28,1,29,1,28,1,29,1,26,1,28,1,29,1,28,3,26,1,28,2,26,1,29,1,28,1,6,3,29,1,6,2,27,14,26,3,29,6,26,1,28,2,29,5,26,7,27,16,26,3,27,9,28,1,27,1,9,1,1,123,28,2,27,2,26,1,27,2,26,1,29,1,26,3,27,1,26,4,27,11,26,20,27,10,26,2,27,1,29,2,11,1,1,72,}, + {1,214,11,1,10,1,28,2,29,1,26,1,29,1,26,2,29,1,26,2,29,2,26,2,29,2,26,1,29,1,26,1,29,2,28,2,29,1,28,1,26,1,28,1,6,3,8,1,7,1,6,5,27,15,26,4,29,1,26,1,28,7,29,1,26,2,27,10,26,5,29,4,26,1,27,9,28,1,29,1,27,1,11,1,1,126,28,1,26,1,27,1,26,1,27,1,26,1,29,1,26,3,27,2,26,4,27,7,26,1,27,4,26,19,27,10,26,1,27,1,26,1,28,1,11,2,1,72,}, + {1,212,27,1,28,2,29,1,26,2,29,1,26,1,29,1,26,1,29,1,26,2,29,2,26,2,29,1,26,1,29,1,26,3,29,1,26,3,29,1,28,1,29,1,28,1,6,2,8,3,6,1,7,2,6,4,7,1,27,18,28,2,29,1,28,1,29,1,28,2,29,1,26,14,27,13,29,1,28,1,27,1,12,1,1,130,9,1,28,2,26,2,29,2,26,3,27,2,26,4,27,1,26,2,27,10,26,18,27,12,29,1,27,1,1,74,}, + {1,208,12,1,27,1,28,3,27,1,26,8,29,6,26,1,29,4,28,1,26,2,29,4,26,1,29,1,6,3,8,6,6,6,7,1,10,3,27,12,9,1,27,33,29,1,28,1,12,1,1,133,17,1,28,1,29,2,26,3,27,1,29,1,26,1,27,2,26,5,27,3,26,1,27,8,26,17,27,11,26,1,27,1,28,1,1,75,}, + {1,204,9,1,27,1,29,1,28,2,29,1,27,1,29,1,27,1,26,3,29,5,26,5,29,2,26,4,29,2,26,4,29,2,27,1,28,1,6,2,8,1,6,1,8,9,6,1,7,1,6,2,7,1,10,1,9,2,10,1,27,9,9,2,27,33,29,1,28,1,1,134,10,1,28,1,26,1,29,1,26,1,27,2,26,2,27,3,26,6,27,11,26,16,27,11,26,1,28,1,12,1,1,75,}, + {1,200,11,1,10,1,29,1,28,2,29,1,26,2,29,1,26,1,29,1,26,1,29,1,26,2,29,1,26,11,29,2,26,5,29,1,26,3,29,1,26,1,6,1,28,1,6,1,8,13,6,2,8,2,7,1,8,2,9,1,12,1,9,3,27,5,9,3,27,23,9,2,12,1,9,1,27,3,9,1,27,2,26,1,28,1,1,133,11,1,28,1,26,1,27,4,26,3,27,3,26,6,27,10,26,16,27,12,29,1,1,76,}, + {1,197,12,1,27,1,29,1,28,2,29,1,26,1,28,1,26,1,28,1,29,2,26,4,29,1,26,13,29,1,26,6,29,2,26,3,27,1,6,3,8,15,6,2,8,3,7,1,8,2,9,1,12,4,9,3,12,1,9,3,10,1,27,15,9,3,27,2,12,3,27,1,9,1,12,1,9,1,27,3,9,1,27,1,29,1,27,1,11,2,1,129,11,1,28,1,26,2,27,3,26,3,27,3,26,7,27,10,26,15,27,5,26,1,27,5,28,1,11,1,1,76,}, + {1,194,12,1,27,1,28,2,29,2,28,1,26,1,28,2,29,1,28,2,29,1,26,2,29,2,26,3,29,1,26,18,29,2,26,3,27,1,6,1,8,1,6,1,8,19,6,2,8,3,9,3,16,1,12,4,9,7,12,4,9,6,27,2,9,2,12,1,10,1,27,1,12,3,9,1,17,1,9,1,7,1,6,1,9,5,29,1,27,1,11,1,1,130,28,1,26,1,27,4,26,4,27,2,26,8,27,9,26,15,27,10,29,1,10,1,1,77,}, + {1,191,12,1,27,1,28,2,29,1,28,2,29,1,28,7,26,1,29,2,26,2,29,1,26,2,29,1,26,1,29,2,26,16,29,3,26,1,27,1,6,3,8,22,6,2,8,3,16,1,9,3,16,1,12,4,9,10,10,1,27,5,9,1,12,2,9,2,12,1,11,2,16,1,9,1,16,1,8,1,7,1,9,7,29,1,27,1,9,1,1,128,28,1,27,5,26,4,27,2,26,9,27,8,26,14,27,11,28,1,1,78,}, + {1,189,12,1,29,1,28,2,29,2,28,3,29,1,28,3,26,1,28,4,29,1,26,2,29,3,26,3,29,4,26,12,29,1,26,1,29,1,26,3,27,1,6,3,8,28,16,8,12,9,9,2,27,5,9,1,12,4,11,1,16,6,9,9,10,1,29,1,12,1,1,127,27,1,26,1,27,5,26,4,27,1,26,9,27,8,26,14,27,7,26,1,27,1,29,1,28,1,11,1,1,78,}, + {1,187,9,1,28,3,29,1,28,3,29,1,28,8,29,1,26,1,28,1,29,2,26,2,29,1,26,1,29,1,26,1,29,1,26,5,29,2,26,1,29,3,26,10,27,1,7,1,6,2,8,28,16,1,8,5,16,4,9,2,16,1,12,2,9,5,10,4,9,1,12,1,11,1,12,1,16,1,9,2,16,7,12,1,9,3,12,4,9,2,27,1,10,1,1,126,11,1,28,1,27,3,9,1,27,1,26,4,27,1,26,9,27,8,26,14,27,7,26,1,28,2,11,1,1,1,11,1,1,77,}, + {1,185,27,1,28,2,29,2,28,1,29,1,28,15,29,5,26,25,27,1,6,2,8,37,16,30,12,12,29,1,27,1,9,1,6,1,28,1,10,1,9,1,12,1,1,119,27,4,9,2,26,4,27,1,26,10,27,7,26,14,27,4,9,1,27,2,29,1,27,2,1,80,}, + {1,183,9,1,28,2,29,1,28,22,29,1,26,1,29,1,26,25,27,1,6,1,8,35,16,33,12,19,9,1,27,1,6,1,29,2,9,1,11,1,1,113,11,1,28,1,27,3,12,1,26,15,27,7,26,13,27,5,9,1,27,2,29,2,1,81,}, + {1,181,11,1,28,27,29,1,26,26,27,1,6,2,8,35,16,33,17,2,12,22,9,1,27,1,6,1,27,1,10,1,1,111,28,1,27,1,26,1,27,1,12,1,27,1,26,15,27,6,26,12,27,5,9,1,27,2,29,1,28,1,11,1,1,81,}, + {1,180,27,1,28,2,29,1,28,24,29,2,26,26,10,1,6,1,8,37,16,29,14,3,17,1,11,2,17,1,12,24,9,1,6,1,29,1,28,1,11,1,1,107,27,1,26,2,27,1,9,1,27,1,26,15,27,6,26,13,27,2,26,1,27,4,28,1,9,1,1,1,11,1,1,80,}, + {1,178,12,1,28,29,29,1,26,1,29,2,26,23,27,1,7,1,6,1,8,39,16,27,14,4,11,4,12,27,27,2,9,1,1,105,27,1,26,2,27,1,9,1,27,1,26,1,29,1,26,14,27,6,26,10,27,1,26,1,27,1,26,1,29,1,27,1,9,1,27,1,26,1,28,1,11,1,1,82,}, + {1,177,29,1,28,1,29,1,28,27,29,2,26,1,29,3,26,8,29,1,26,4,29,1,26,8,27,1,6,3,8,39,16,25,14,6,11,3,12,29,9,1,6,2,11,1,1,102,27,1,29,1,26,1,27,2,9,1,26,16,27,6,26,9,27,4,29,1,27,1,9,1,27,2,28,1,11,1,1,83,}, + {1,174,16,1,11,1,28,30,29,6,26,9,29,2,26,3,29,2,26,4,29,1,27,2,6,3,8,40,16,22,14,11,11,2,12,19,9,1,12,2,9,1,12,7,9,1,27,2,9,1,1,100,11,1,29,1,26,1,27,2,9,1,29,1,26,16,27,6,26,9,27,3,29,1,27,3,29,1,9,1,1,84,}, + {1,174,12,1,28,30,29,3,28,1,29,1,26,11,29,2,26,3,29,4,26,4,27,1,6,2,8,1,6,1,8,40,16,21,14,12,17,1,11,2,12,19,9,1,12,6,9,5,27,1,28,1,11,2,1,97,27,1,29,1,26,1,27,3,29,1,26,17,27,6,26,8,27,3,28,1,27,3,29,1,1,85,}, + {1,173,11,1,28,34,29,8,26,8,29,1,26,1,29,1,28,1,29,1,26,3,29,1,27,1,7,1,6,2,8,40,16,22,14,14,17,2,12,9,9,1,12,2,9,4,12,9,9,5,12,1,9,2,27,2,11,1,1,96,27,1,29,1,26,1,27,3,26,16,27,2,26,1,27,9,26,4,27,3,28,1,27,2,28,1,11,1,1,85,}, + {1,172,27,1,28,1,29,1,28,33,29,5,26,2,29,1,26,10,29,1,28,1,29,5,27,1,6,4,8,42,16,20,14,13,16,4,12,3,9,30,29,2,12,1,11,1,17,1,1,92,27,1,29,1,26,1,27,3,26,20,27,8,26,3,27,4,28,1,27,3,1,86,}, + {1,171,27,1,28,36,29,4,26,3,29,1,26,9,29,5,26,3,27,1,6,4,8,39,16,24,14,9,16,9,12,1,9,32,29,1,9,1,12,1,1,92,27,1,26,1,29,1,26,2,27,1,26,18,27,10,26,3,27,4,28,1,26,1,29,1,1,87,}, + {1,169,11,1,28,38,26,1,29,3,26,3,29,1,26,9,29,4,26,3,27,2,6,3,8,39,16,24,14,8,16,12,9,33,27,1,28,1,10,1,1,91,29,1,26,3,28,1,29,2,26,16,27,17,26,1,28,2,1,88,}, + {1,168,11,1,28,39,29,4,26,15,29,4,26,1,27,1,6,2,8,42,16,24,14,3,16,1,14,1,16,14,9,33,10,1,9,1,27,1,28,1,9,1,1,89,28,1,26,2,27,1,26,1,28,1,29,1,26,16,27,17,29,1,28,1,27,1,1,88,}, + {1,167,11,1,28,40,29,6,26,14,29,3,26,1,27,1,6,2,8,45,16,26,8,1,16,14,12,1,9,24,27,1,9,7,27,4,28,1,9,1,1,86,11,1,28,1,26,4,29,1,28,2,26,15,27,16,26,1,29,1,28,1,1,89,}, + {1,167,28,43,29,5,26,16,27,1,6,3,8,47,6,1,8,3,16,18,8,1,16,17,9,33,27,5,28,1,12,1,1,84,11,1,28,1,29,1,26,2,27,2,26,1,28,1,29,2,26,12,27,3,9,2,27,12,29,1,28,1,12,1,1,89,}, + {1,166,28,44,29,3,28,1,29,1,26,16,27,1,6,3,8,1,6,1,8,46,6,2,8,8,16,6,8,5,16,18,9,1,27,1,9,2,27,1,9,7,27,2,9,8,27,1,9,1,27,2,9,3,27,1,9,3,27,6,29,1,6,1,1,83,27,1,29,2,26,2,27,1,26,2,29,2,28,1,29,1,26,6,27,3,26,1,27,4,9,3,27,1,9,1,27,9,29,1,28,1,1,90,}, + {1,165,29,1,28,45,29,2,28,1,29,1,26,1,29,6,26,5,29,2,26,2,27,1,6,2,8,56,6,2,8,1,6,1,8,1,6,1,8,1,6,1,8,3,16,21,9,1,10,2,27,2,9,4,27,20,9,2,27,11,12,1,1,81,28,1,26,1,29,1,26,2,27,2,26,1,29,1,28,3,29,1,26,5,27,9,12,1,9,3,27,9,28,1,11,1,1,90,}, + {1,163,27,2,28,46,29,2,28,2,29,1,26,6,29,2,26,3,29,1,26,3,27,1,6,1,8,65,16,25,9,1,27,30,9,1,27,10,1,80,12,1,28,1,27,1,29,1,26,2,27,2,26,1,29,2,28,2,29,2,26,6,27,7,9,2,12,1,9,1,27,9,29,1,1,91,}, + {1,163,27,1,28,39,29,1,28,7,26,3,29,1,28,1,29,1,26,6,29,1,26,3,29,1,26,2,27,1,6,2,8,58,16,1,8,1,16,30,9,1,27,30,9,1,27,8,9,1,27,2,1,79,6,1,26,2,28,1,26,2,27,3,26,1,29,9,26,4,27,5,9,2,12,1,9,2,27,7,28,1,1,92,}, + {1,162,27,1,28,40,29,1,28,7,29,1,26,3,28,1,29,2,26,9,29,1,26,2,27,1,6,2,8,55,16,36,9,1,27,38,9,2,29,1,12,1,1,77,11,1,28,1,27,1,29,1,28,1,26,2,27,3,26,2,29,2,26,2,29,4,26,2,29,2,26,2,27,5,9,2,27,6,9,1,27,1,29,1,1,92,}, + {1,161,27,1,28,50,29,1,26,2,29,2,26,7,29,1,26,2,29,1,26,2,27,1,6,2,8,55,16,36,9,1,27,38,9,1,12,1,27,1,29,1,11,1,1,76,9,1,28,1,29,1,26,1,28,1,26,2,27,4,26,1,29,2,26,3,29,3,26,5,27,2,26,2,27,8,26,1,27,2,28,1,9,1,1,92,}, + {1,160,27,1,28,43,29,1,28,7,29,1,26,2,29,1,26,7,29,4,26,2,27,1,6,3,8,51,16,2,8,2,16,36,9,1,10,1,27,37,9,1,12,1,27,2,28,1,1,76,28,1,29,2,26,1,28,1,26,2,27,4,26,1,29,3,26,2,29,3,26,2,29,1,26,2,27,2,26,1,27,12,28,1,1,93,}, + {1,158,17,1,29,1,28,44,29,1,28,7,29,1,26,9,29,5,26,2,27,1,6,2,8,54,16,39,9,1,27,36,9,2,12,1,27,2,29,2,1,75,28,1,29,1,26,2,28,1,26,2,27,4,26,2,29,3,26,2,29,5,26,2,27,1,26,1,27,12,28,1,11,1,1,93,}, + {1,158,29,1,28,45,29,2,28,6,29,1,26,1,29,2,26,1,29,5,26,2,29,1,26,1,29,1,26,2,27,1,6,2,8,53,16,40,9,1,27,35,9,4,27,4,28,1,1,73,12,1,28,1,29,2,26,1,28,1,26,2,27,5,26,2,29,2,26,2,29,2,26,4,27,2,26,1,27,8,26,3,29,1,28,1,1,94,}, + {1,157,27,1,28,47,26,1,29,1,28,6,29,1,26,2,29,3,28,2,29,1,26,4,29,1,26,2,27,1,6,3,8,48,16,1,8,1,16,42,9,1,10,1,27,34,9,4,27,5,28,1,1,72,27,1,29,1,26,3,28,1,26,2,27,5,26,7,29,1,26,4,27,11,29,1,28,1,29,1,28,1,27,1,1,94,}, + {1,156,28,49,26,2,29,1,28,5,29,1,26,3,29,1,28,3,29,1,26,4,29,1,26,2,27,1,6,2,8,49,16,1,8,1,16,42,8,1,10,1,27,34,9,4,27,6,28,1,1,71,27,1,29,1,26,3,29,1,26,2,27,6,26,6,29,1,26,3,27,2,26,1,27,8,26,1,29,2,27,1,28,1,11,1,1,94,}, + {1,153,12,1,1,1,28,50,29,1,26,1,29,1,28,5,29,1,26,4,28,4,29,1,26,5,27,1,6,2,8,50,16,1,8,1,16,42,8,2,27,34,9,4,27,7,28,1,12,1,1,69,28,1,26,4,29,1,26,2,27,6,26,7,29,1,26,2,27,1,26,2,27,7,26,2,29,1,26,1,27,1,28,1,1,95,}, + {1,153,9,1,27,1,28,51,29,1,28,1,29,1,28,5,26,4,29,5,26,5,27,1,6,2,8,50,16,1,8,1,16,42,8,2,10,1,27,34,9,3,27,8,28,1,12,1,1,68,28,1,26,3,29,2,26,2,27,6,26,7,29,2,26,3,27,10,26,1,27,1,29,1,9,1,1,95,}, + {1,153,27,1,28,51,29,1,26,3,28,5,26,4,29,5,26,5,27,1,6,3,8,49,16,1,8,2,16,41,8,3,27,34,9,3,27,4,9,1,27,4,28,1,12,1,1,66,11,1,28,1,27,1,29,1,26,1,29,2,26,2,27,6,26,8,29,1,26,4,27,11,28,1,1,96,}, + {1,150,11,1,1,1,28,53,29,1,26,3,29,1,28,5,26,4,29,3,26,6,7,1,6,3,8,52,16,42,8,2,27,34,9,3,27,4,9,2,27,4,28,1,12,1,1,65,9,1,28,1,29,1,26,2,29,2,26,3,27,5,26,11,27,1,26,1,27,10,29,2,1,96,}, + {1,151,28,55,26,1,29,1,26,2,28,5,29,1,26,4,29,4,26,3,27,1,6,3,8,53,16,43,8,1,10,1,27,34,9,2,27,4,9,2,27,5,28,1,9,1,1,63,11,1,28,1,29,1,26,3,29,2,26,3,27,6,26,10,27,12,28,1,11,1,1,96,}, + {1,150,28,56,26,4,28,6,26,5,29,1,28,2,26,2,29,1,27,1,6,3,8,53,16,4,8,1,16,3,8,1,16,28,8,1,16,5,8,2,27,34,9,1,27,5,9,2,27,6,29,1,9,1,1,61,12,1,28,2,29,1,26,4,29,1,26,3,27,6,26,10,27,11,28,2,1,97,}, + {1,149,27,1,28,56,29,1,26,3,29,1,28,5,29,1,26,5,29,1,28,2,26,2,27,1,6,2,8,55,16,42,8,2,10,1,27,33,9,2,27,4,9,2,27,7,29,1,9,1,1,60,28,1,27,1,28,2,26,4,29,2,26,2,27,6,26,9,27,11,26,1,28,1,27,1,1,97,}, + {1,148,27,1,28,58,29,1,26,3,28,5,29,1,26,4,29,2,28,2,26,2,27,1,6,2,8,56,16,41,8,3,27,33,9,2,27,4,9,3,27,7,28,1,6,1,1,58,28,1,26,1,27,1,29,2,26,4,29,1,26,3,27,6,26,9,27,11,28,2,1,98,}, + {1,147,27,1,28,60,29,1,26,2,29,1,28,5,26,4,29,1,28,1,29,1,28,1,26,2,27,1,6,2,8,53,16,1,8,3,16,2,8,2,16,36,8,3,27,33,9,2,27,4,9,3,27,8,28,1,29,1,1,56,29,1,27,2,26,1,29,1,28,1,26,2,27,1,26,6,27,6,26,8,27,10,29,1,28,2,1,98,}, + {1,146,27,1,28,62,26,3,28,5,29,1,26,3,29,2,26,1,28,1,26,2,6,2,8,54,16,1,8,8,16,6,8,1,16,28,8,4,27,32,9,2,27,4,9,3,27,9,28,1,27,1,1,54,9,1,28,1,26,4,28,1,29,1,26,1,27,1,29,1,26,5,27,6,26,5,27,1,26,2,27,10,28,2,9,1,1,98,}, + {1,143,11,2,27,1,28,62,29,1,26,3,29,1,28,5,26,4,29,1,26,1,29,1,26,1,27,1,6,2,8,64,16,36,8,2,10,1,27,15,26,3,27,13,9,2,27,4,9,3,27,10,29,1,27,1,12,1,1,52,28,1,26,1,27,1,26,3,28,1,26,2,27,1,26,6,27,6,26,5,27,1,26,2,27,9,29,1,28,2,1,99,}, + {1,143,11,1,29,1,28,64,26,4,28,5,29,1,26,1,27,1,26,1,28,1,29,2,26,1,27,1,6,2,8,65,16,2,8,1,16,26,8,1,16,5,8,3,27,15,26,3,27,13,9,2,27,4,9,4,27,10,29,1,27,1,1,51,28,1,26,1,27,1,26,4,28,1,26,1,27,2,26,6,27,6,26,4,27,1,26,3,27,9,28,2,27,1,1,99,}, + {1,143,29,1,28,65,29,1,26,3,29,1,28,5,26,1,27,1,26,1,28,2,29,1,26,1,27,1,29,1,6,1,8,66,16,1,8,2,16,25,8,3,16,3,8,3,27,15,26,3,27,8,26,1,27,4,9,2,27,4,9,4,27,11,29,1,27,1,1,49,12,1,28,1,26,1,27,1,26,4,28,1,26,1,27,2,26,6,27,7,26,3,27,1,26,3,27,9,28,2,11,1,1,99,}, + {1,142,27,1,28,66,29,1,26,4,28,5,26,1,27,1,26,1,29,1,28,2,29,1,27,1,6,2,8,66,16,1,8,2,16,21,8,1,16,3,8,3,16,4,8,2,10,1,27,13,26,4,27,7,26,2,27,4,9,1,12,1,27,4,9,4,27,12,26,1,27,1,1,48,28,1,26,5,29,1,26,1,29,1,26,1,27,1,9,1,26,2,29,1,26,2,27,8,26,2,27,2,26,3,27,8,28,3,1,100,}, + {1,141,27,1,28,68,26,4,28,5,29,1,26,1,27,1,26,1,28,2,26,1,7,1,6,2,8,64,16,3,8,8,16,10,8,2,16,2,8,2,16,4,8,2,16,5,8,2,27,13,26,4,27,6,26,3,27,4,9,1,12,1,27,4,9,5,27,12,29,1,27,1,9,1,1,45,27,1,29,1,26,6,29,2,27,2,9,1,26,5,27,8,26,2,27,2,26,2,27,8,29,1,28,2,27,1,1,100,}, + {1,140,27,1,28,69,29,1,26,4,28,5,26,1,27,1,26,2,28,1,26,1,7,1,6,2,8,65,16,2,8,8,16,10,8,2,16,2,8,2,16,5,8,1,16,6,8,2,27,12,26,3,27,7,26,3,27,4,9,1,12,1,27,4,9,5,27,15,11,1,1,44,29,3,26,7,27,2,9,1,29,1,26,4,27,11,26,3,27,7,29,2,28,2,1,101,}, + {1,139,27,1,28,70,29,1,26,4,28,5,29,1,26,3,29,1,26,1,6,3,8,75,16,10,8,2,16,2,8,2,16,5,8,1,16,2,8,1,16,4,8,1,27,1,26,1,27,10,26,3,27,6,26,4,27,4,9,1,12,1,9,1,27,4,9,4,27,15,29,1,1,43,28,1,29,1,26,6,29,1,26,1,27,2,9,2,28,1,26,4,27,11,26,3,27,7,29,1,28,2,29,1,1,101,}, + {1,138,12,1,28,71,29,1,26,4,29,1,28,4,29,1,26,3,29,1,26,1,6,3,8,77,16,9,8,7,16,6,8,1,16,4,8,1,27,1,26,1,27,9,26,4,27,6,26,4,27,4,9,1,12,1,9,1,27,4,9,4,27,16,6,1,1,41,11,1,28,1,27,1,29,2,26,5,27,3,9,1,27,1,28,1,26,4,27,6,26,1,27,4,26,3,27,1,26,1,27,5,29,1,28,2,12,1,1,101,}, + {1,137,9,1,28,73,26,3,27,1,26,1,28,5,26,4,27,1,6,3,8,78,16,8,8,4,16,1,8,3,16,5,8,1,16,4,8,2,27,10,26,4,27,6,26,5,27,3,9,1,12,1,9,1,27,4,9,5,27,16,29,1,11,1,1,39,28,1,26,1,29,1,26,4,29,1,26,1,27,3,9,2,27,1,28,1,26,4,27,10,26,4,27,1,26,2,27,4,29,2,28,1,1,102,}, + {1,135,11,1,9,1,28,75,26,2,27,1,26,2,28,4,26,4,27,1,6,3,8,78,16,5,8,1,16,2,8,4,16,1,8,2,16,6,8,1,16,4,8,2,10,1,27,9,26,4,27,6,26,5,27,3,9,1,12,1,9,1,27,4,9,5,27,17,29,1,12,1,1,37,11,1,28,1,26,8,27,3,9,1,27,1,26,1,29,1,26,4,27,10,26,4,27,1,29,2,27,4,29,1,28,1,27,1,1,102,}, + {1,135,11,1,28,76,26,3,27,1,26,1,28,5,26,3,27,1,6,2,8,80,16,4,8,2,16,1,8,4,16,1,8,2,16,12,8,2,27,9,26,4,27,5,26,6,27,3,9,1,12,1,9,1,27,4,9,6,27,16,26,1,29,1,1,37,29,1,26,8,27,6,29,2,26,4,27,9,26,4,27,2,29,1,28,1,27,3,26,1,29,1,28,1,11,1,1,102,}, + {1,134,12,1,28,78,29,1,26,1,27,1,26,1,29,1,28,4,26,3,27,1,6,2,8,80,16,4,8,2,16,1,8,4,16,1,8,2,16,12,8,2,27,9,26,4,27,5,26,5,27,4,9,1,12,2,27,4,9,6,27,17,29,1,10,1,1,35,10,1,29,1,26,6,27,7,26,1,28,2,26,4,27,9,26,5,27,1,28,2,26,1,27,2,26,1,28,1,29,1,1,103,}, + {1,133,11,1,28,79,29,1,26,4,28,4,26,2,27,2,6,1,8,1,6,1,8,90,16,4,8,1,16,11,8,1,10,1,27,5,9,1,27,2,26,4,27,5,26,6,27,3,9,1,12,2,27,5,9,5,27,18,26,1,12,1,1,33,11,1,28,1,26,5,27,8,26,3,29,2,26,3,27,9,26,4,27,2,28,2,29,1,27,2,29,1,28,1,11,1,1,103,}, + {1,133,28,81,26,2,27,1,26,1,29,1,28,3,29,1,26,1,27,1,7,1,6,1,8,1,6,1,8,90,16,16,8,2,27,5,9,1,27,2,26,4,27,5,26,6,27,3,9,1,12,2,27,5,9,6,27,18,29,1,12,1,1,31,12,1,28,1,27,1,29,1,26,2,27,9,26,3,29,3,26,3,27,8,26,3,27,1,26,1,27,1,26,1,28,2,29,1,26,2,28,2,1,104,}, + {1,132,28,82,26,2,27,2,26,1,28,4,26,1,27,1,7,1,6,1,8,92,16,5,8,1,16,11,8,1,10,1,27,4,9,1,27,1,26,4,27,6,26,6,27,3,9,1,12,2,27,5,9,6,27,19,29,1,12,1,1,30,29,1,26,1,29,2,26,2,27,7,26,5,28,2,29,1,26,2,27,9,26,3,27,3,29,1,28,2,26,2,29,1,28,1,27,1,1,104,}, + {1,131,28,83,29,1,26,2,27,1,26,1,29,1,28,3,26,1,27,1,8,1,6,1,8,3,6,1,8,88,16,5,8,1,16,11,8,2,27,6,26,4,27,6,26,6,27,3,9,1,12,2,27,5,9,6,27,20,28,1,27,1,11,1,1,27,27,1,28,1,26,1,29,1,26,3,27,6,26,6,28,2,29,1,26,2,27,9,26,2,27,4,29,1,28,2,29,2,28,2,1,105,}, + {1,129,11,1,28,84,29,1,26,2,27,2,26,1,28,3,26,1,27,1,8,1,6,1,8,3,6,1,8,88,16,5,8,2,16,11,8,1,27,6,26,3,27,7,26,6,27,3,9,2,12,1,9,1,27,5,9,6,27,18,9,1,10,1,28,1,12,1,1,26,12,1,28,1,26,3,29,2,26,2,27,5,26,3,29,1,26,1,29,1,28,1,29,2,26,2,27,8,26,3,27,3,26,1,28,4,29,1,28,1,27,1,1,105,}, + {1,129,28,85,29,1,26,2,27,2,26,1,29,1,28,2,29,1,27,1,7,1,6,1,8,3,6,1,8,88,16,3,8,1,16,14,8,1,10,1,27,5,26,3,27,6,26,7,27,3,9,2,12,1,9,1,27,5,9,6,27,19,9,1,27,1,28,1,11,1,1,24,11,1,28,2,26,4,29,2,26,2,27,5,26,4,28,2,29,1,26,3,27,8,26,3,27,4,28,6,11,1,1,105,}, + {1,128,28,87,26,3,27,1,26,2,28,2,29,1,27,1,7,1,6,1,8,92,16,18,8,2,27,5,26,3,27,6,26,7,27,3,9,2,12,1,9,1,27,5,9,6,27,19,9,3,6,1,1,23,11,1,28,1,29,1,28,2,26,3,29,3,26,10,29,1,28,2,26,3,27,8,26,3,27,3,28,4,29,1,28,1,29,1,1,106,}, + {1,126,12,1,28,89,29,1,26,1,27,2,26,1,29,1,28,1,29,1,27,1,7,1,6,1,8,1,6,1,8,90,16,19,8,1,7,1,27,3,26,4,27,6,26,7,27,3,9,2,12,1,9,1,27,5,9,7,27,18,9,4,28,1,9,1,1,21,29,1,27,1,26,1,29,2,26,3,29,4,26,9,29,1,28,2,26,3,27,6,9,1,27,1,26,4,27,2,28,3,29,1,28,2,11,1,1,106,}, + {1,125,12,1,28,91,29,1,26,1,27,2,26,1,28,1,29,1,27,1,6,3,8,80,16,1,8,7,16,1,8,3,16,18,8,2,27,4,26,3,27,6,26,7,27,4,9,2,12,1,27,5,9,7,27,17,9,5,10,1,27,1,1,20,28,1,27,2,26,2,29,1,26,5,29,2,26,9,29,1,28,1,29,1,26,3,27,9,26,2,27,2,26,1,28,5,29,1,1,107,}, + {1,124,12,1,28,92,29,1,26,2,27,1,26,1,28,1,29,1,27,1,6,3,8,90,16,20,8,2,27,4,26,3,27,6,26,7,27,4,9,2,12,1,27,5,9,7,27,17,9,6,27,1,12,1,1,18,12,1,26,1,27,3,26,18,29,1,28,1,26,4,27,8,26,1,27,3,26,1,28,6,11,1,1,107,}, + {1,123,9,1,28,93,29,1,26,2,27,1,26,1,28,1,29,1,27,1,6,2,8,85,16,1,8,5,16,21,8,1,10,1,27,3,26,3,27,5,26,8,27,3,9,3,12,1,27,6,9,7,27,16,9,7,27,1,1,17,11,1,28,1,27,4,26,10,29,1,26,7,29,1,28,1,26,3,27,13,29,1,28,6,1,108,}, + {1,122,27,1,28,94,29,1,26,2,27,1,26,2,29,1,7,1,6,2,8,85,16,1,8,5,16,21,8,2,27,2,26,3,27,6,26,2,29,1,26,5,27,3,9,5,27,5,9,7,27,16,9,5,12,2,9,2,1,15,12,1,28,1,27,5,26,10,29,2,26,6,28,2,29,1,26,2,27,5,9,1,27,7,28,6,1,109,}, + {1,119,11,1,12,1,28,97,29,1,26,2,27,1,26,2,7,1,6,2,8,85,16,2,8,1,16,23,8,3,7,1,27,1,26,3,27,6,26,2,29,2,26,4,27,3,9,5,27,5,9,7,27,16,9,4,12,3,9,1,27,1,12,1,1,14,29,1,27,7,26,6,27,1,26,2,29,1,26,7,28,1,29,2,26,2,27,5,9,1,27,6,29,1,28,6,1,109,}, + {1,119,11,1,28,98,29,1,26,2,27,1,26,2,6,3,8,85,16,26,8,3,7,1,27,2,26,2,27,5,26,3,29,2,26,4,27,3,9,5,27,5,9,7,27,16,9,4,12,4,9,2,1,13,12,1,28,1,26,1,27,6,26,5,27,2,26,9,29,1,28,1,29,2,26,2,27,4,9,2,27,6,28,6,11,1,1,109,}, + {1,118,11,1,28,99,29,2,26,4,6,3,8,85,16,26,8,4,27,1,26,3,27,5,26,8,27,4,9,5,27,5,9,8,27,15,9,4,12,5,9,1,1,3,11,1,7,1,27,1,12,1,1,1,11,1,1,2,9,1,11,1,28,1,26,2,27,6,26,1,29,1,28,1,26,2,27,2,26,5,29,1,26,3,28,2,29,2,26,2,27,4,9,2,27,5,26,1,28,5,27,1,1,110,}, + {1,117,12,1,28,100,29,2,26,4,6,2,8,86,16,2,8,3,16,22,8,3,7,1,27,1,26,2,27,5,26,8,27,4,9,5,27,5,9,8,27,15,9,5,12,6,11,1,1,1,29,1,12,2,9,1,29,1,10,1,17,1,1,1,12,1,28,1,29,1,26,2,27,7,29,1,28,1,26,2,27,2,26,9,28,2,29,1,26,2,27,5,12,1,27,6,28,6,1,111,}, + {1,116,12,1,28,102,29,1,26,3,27,1,6,3,8,85,16,2,8,3,16,21,8,4,7,1,27,2,26,1,27,5,26,3,29,1,26,4,27,4,9,5,27,5,9,8,27,15,9,5,12,5,10,1,1,1,9,1,12,5,27,1,12,1,27,1,29,1,26,2,29,1,26,2,27,6,29,1,28,1,29,1,26,1,27,2,26,5,29,1,26,2,28,3,29,1,26,2,27,4,9,2,27,5,26,1,28,5,6,1,1,111,}, + {1,114,11,1,27,1,28,103,29,1,26,3,27,1,6,2,8,86,16,2,8,3,16,21,8,1,16,1,8,2,7,2,27,1,26,1,27,5,26,3,29,1,26,4,27,4,9,4,27,6,9,8,27,15,9,5,12,5,10,1,12,1,27,1,12,5,27,5,26,1,29,1,26,2,27,6,26,1,28,1,26,2,27,3,26,4,29,3,28,3,29,1,26,3,27,3,9,2,27,3,26,1,27,1,28,6,1,112,}, + {1,114,27,1,28,105,26,3,27,1,7,1,6,1,8,91,16,23,8,3,7,1,27,6,26,4,29,2,26,3,27,4,9,4,27,7,9,7,27,15,9,4,12,1,9,1,12,2,9,1,12,2,28,1,9,1,12,2,11,1,12,1,10,1,27,2,9,1,27,1,26,1,29,2,26,2,27,6,26,1,28,1,26,2,27,3,26,4,29,3,28,3,29,1,26,1,27,1,26,1,27,3,9,2,27,4,29,1,28,5,10,1,1,112,}, + {1,111,16,1,1,1,27,1,28,101,29,1,28,4,29,1,26,2,27,1,7,1,6,1,8,88,16,27,8,2,6,2,27,5,26,4,29,1,26,4,27,4,9,4,27,1,9,1,27,5,9,7,27,15,9,8,12,7,11,1,12,1,27,4,9,1,27,1,26,1,29,2,26,1,27,7,28,1,29,1,26,1,27,2,26,7,29,1,28,3,26,3,27,3,9,2,27,5,28,5,29,1,1,113,}, + {1,111,12,1,28,101,29,2,26,2,29,1,28,2,29,1,26,2,27,1,7,1,8,89,16,27,8,2,6,2,27,5,26,8,27,5,9,4,27,7,9,7,27,16,9,8,12,3,9,1,12,2,11,1,12,1,27,1,26,1,29,1,27,1,9,1,27,1,26,2,29,1,26,1,27,7,29,1,26,2,27,1,26,9,28,3,26,2,27,1,26,2,27,1,9,2,27,4,29,1,28,5,11,1,1,113,}, + {1,111,28,102,29,3,26,1,29,1,28,2,29,1,26,2,27,1,7,1,8,89,16,22,8,1,16,3,8,3,6,2,7,1,27,5,26,7,27,5,9,4,27,7,9,7,27,16,9,9,11,1,12,1,9,2,12,1,11,1,12,1,27,1,29,2,26,1,27,3,29,2,26,4,27,4,26,13,28,3,26,2,27,1,29,1,26,1,27,1,9,1,27,4,26,1,28,5,29,1,1,114,}, + {1,110,28,104,29,3,28,2,29,3,26,1,27,1,6,1,8,89,16,25,8,4,6,2,7,1,27,5,26,3,29,1,26,3,27,5,9,4,27,8,9,6,27,16,9,4,27,1,9,3,12,2,9,3,12,1,11,1,12,1,27,1,29,1,28,1,26,1,27,3,26,1,29,1,26,5,27,4,26,9,27,1,26,2,28,3,26,3,28,1,27,2,9,1,27,4,26,1,28,5,1,115,}, + {1,109,28,106,29,1,28,4,29,2,26,1,27,1,6,2,8,88,16,25,8,5,6,2,7,1,27,1,26,1,27,2,26,3,29,1,26,3,27,5,9,4,27,2,9,1,27,5,9,6,27,17,9,2,27,2,9,3,12,2,9,3,12,1,11,1,12,1,27,1,29,3,26,5,29,1,26,6,27,2,26,7,27,4,26,1,28,3,26,2,29,1,28,1,27,1,9,1,27,4,26,1,28,5,27,1,1,115,}, + {1,107,12,1,28,109,29,2,28,1,29,2,27,1,7,1,6,1,8,85,16,26,8,9,7,1,6,1,27,2,26,5,29,1,26,3,27,5,9,4,27,2,9,1,27,4,9,1,27,1,9,6,27,20,9,2,12,1,11,1,12,1,27,2,9,1,12,1,11,1,12,1,27,1,29,1,28,2,29,1,26,2,27,2,26,15,27,5,26,1,28,3,26,2,28,1,26,1,9,1,27,5,28,6,1,116,}, + {1,106,12,1,28,113,29,2,27,1,7,1,6,1,8,84,16,27,8,10,7,2,27,1,26,9,27,5,9,4,27,2,9,1,27,6,9,6,27,20,9,2,11,1,12,1,9,1,27,2,9,1,12,1,11,1,12,1,27,1,26,1,29,1,28,1,29,1,26,2,27,2,26,14,27,6,26,1,28,2,26,3,28,1,27,6,29,1,28,5,12,1,1,116,}, + {1,105,12,1,28,113,29,3,27,1,7,1,6,1,8,84,16,27,8,10,6,2,27,2,26,7,27,6,9,4,27,3,9,1,27,5,9,6,27,19,9,2,12,1,11,1,12,1,27,4,12,1,11,2,9,1,26,1,29,1,28,1,29,1,26,2,27,1,9,1,26,14,27,6,26,1,28,2,26,2,29,1,28,1,27,6,28,6,1,117,}, + {1,104,12,1,28,112,29,1,28,2,29,2,27,1,7,1,6,1,8,87,16,24,8,11,6,2,27,1,26,7,27,6,9,3,27,4,9,1,27,5,9,6,27,19,9,1,12,1,11,1,12,1,9,2,27,3,9,1,11,2,9,1,27,1,29,1,28,1,29,1,26,2,27,1,9,1,27,1,26,2,29,1,26,8,27,7,26,2,28,2,29,1,26,1,29,1,28,1,27,5,29,1,28,5,12,1,1,117,}, + {1,103,12,1,28,113,29,1,28,2,29,2,27,1,7,1,6,1,8,79,16,2,8,6,16,23,8,1,16,1,8,10,6,3,27,1,26,6,27,6,9,3,27,4,9,2,27,4,9,6,27,19,9,1,11,2,12,1,9,3,27,3,12,1,11,1,12,1,27,1,29,1,28,1,29,1,26,2,27,1,9,1,27,1,26,2,29,2,26,8,27,6,26,1,28,4,27,1,28,2,27,5,28,5,29,1,1,118,}, + {1,102,12,1,28,114,29,1,28,2,29,2,27,1,6,2,8,85,16,2,8,1,16,21,8,1,16,1,8,1,16,1,8,10,6,2,27,1,26,6,27,6,9,3,27,4,9,2,27,5,9,5,27,18,9,1,12,1,11,2,12,1,9,3,27,3,12,1,11,1,12,1,27,1,29,1,28,1,29,1,26,1,27,2,12,1,9,1,29,1,26,11,27,5,26,2,28,3,29,1,26,1,28,1,27,5,26,1,28,5,1,119,}, + {1,102,28,118,29,2,27,1,6,2,8,89,16,21,8,14,6,1,27,2,26,6,27,4,9,4,27,4,9,2,27,5,9,5,27,18,12,1,11,2,17,1,9,4,27,3,9,1,11,1,12,1,27,1,29,1,28,2,26,1,27,2,12,1,9,1,29,1,26,11,27,5,26,2,28,2,29,1,26,1,28,2,27,5,29,1,28,4,12,1,1,119,}, + {1,100,12,1,28,119,26,1,29,1,27,1,6,2,8,89,16,20,8,15,6,2,27,1,26,6,27,4,9,4,27,4,9,2,27,5,9,6,27,16,9,1,12,1,11,2,12,1,9,1,27,1,12,1,9,1,27,3,9,1,11,1,12,1,27,1,29,1,28,1,29,1,26,1,27,2,12,1,9,1,29,1,26,1,29,2,26,8,27,5,26,1,29,1,28,2,29,1,26,1,28,2,27,5,28,5,1,120,}, + {1,99,12,1,28,119,29,1,26,2,27,1,6,2,8,85,16,24,8,15,6,2,27,1,26,5,27,5,9,4,27,5,9,2,27,4,9,6,27,16,12,2,11,1,12,1,9,3,12,1,9,1,27,4,12,1,11,1,9,1,29,1,28,1,29,1,26,1,27,2,12,2,26,1,29,2,26,9,27,4,26,3,28,2,29,1,26,1,28,1,26,1,27,5,28,4,12,1,1,120,}, + {1,99,28,89,29,1,28,32,26,1,7,1,6,2,8,85,16,24,8,14,16,1,6,3,27,1,26,4,27,5,9,4,27,5,9,2,27,4,9,6,27,15,12,2,11,2,12,1,9,3,12,1,9,1,27,4,12,2,9,1,26,1,28,1,29,1,26,1,27,2,12,2,27,1,29,2,26,9,27,4,26,2,29,1,28,1,29,1,26,1,28,2,27,5,26,1,28,4,1,121,}, + {1,98,28,90,29,2,28,31,26,1,7,1,6,2,8,85,16,23,8,17,6,2,27,1,26,4,27,5,9,4,27,5,9,2,27,4,9,6,27,14,9,1,12,2,11,1,12,1,9,4,12,1,9,1,27,4,12,2,9,1,26,1,28,1,26,2,27,1,9,1,12,2,27,1,29,2,26,10,27,3,26,2,28,2,29,2,28,2,27,1,26,1,27,3,29,1,28,3,1,122,}, + {1,97,12,1,28,123,26,1,7,1,6,2,8,85,16,23,8,18,6,2,26,3,27,6,9,4,27,5,9,2,27,5,9,5,27,13,9,1,12,2,11,2,12,1,9,1,27,1,9,2,12,1,9,1,27,4,12,2,9,1,27,1,28,1,26,2,27,1,9,1,12,2,27,1,28,1,29,2,26,10,27,1,26,3,28,2,26,1,28,2,27,2,29,1,27,2,29,1,28,3,10,1,1,122,}, + {1,96,12,1,28,91,29,1,28,32,26,1,6,3,8,85,16,22,8,19,6,2,27,1,26,2,27,6,9,4,27,4,9,3,27,5,9,5,27,13,12,3,11,1,12,1,9,1,27,2,9,1,12,2,9,1,27,4,12,2,9,1,27,1,28,1,29,1,26,1,27,2,12,2,27,1,29,3,26,13,29,1,28,2,26,1,28,2,27,1,26,1,29,2,28,5,1,123,}, + {1,96,28,92,29,1,28,31,29,1,26,1,6,3,8,85,16,18,8,1,16,2,8,1,16,1,8,18,6,3,27,1,26,1,27,5,9,4,27,5,9,3,27,5,9,5,27,12,9,1,12,2,11,2,12,1,9,1,27,2,9,1,12,2,9,1,27,1,26,1,27,2,9,1,12,1,9,1,27,1,28,1,26,2,27,2,12,2,27,1,29,3,26,13,29,1,28,1,26,1,29,1,28,1,26,1,27,2,29,1,28,5,12,1,1,123,}, + {1,94,11,1,28,91,29,1,28,33,26,2,6,3,8,86,16,19,8,21,6,2,7,1,27,1,26,1,27,5,9,4,27,5,9,3,27,5,9,5,27,11,9,1,12,2,11,3,9,1,27,3,9,1,12,2,9,1,27,4,9,1,12,1,9,1,27,1,28,1,26,2,27,2,12,2,27,1,29,2,26,6,29,1,26,7,29,1,26,2,28,2,27,3,28,5,29,1,1,124,}, + {1,94,27,1,28,89,26,2,29,1,28,34,29,1,6,3,8,86,16,17,8,24,6,1,7,1,27,1,26,1,27,5,9,4,27,5,9,3,27,6,9,4,27,11,12,2,11,3,12,1,27,3,9,1,12,3,9,1,27,4,9,1,12,1,9,1,27,1,28,1,26,2,27,2,12,2,27,1,29,3,26,5,29,1,26,7,29,1,26,1,27,1,28,2,27,2,26,1,28,5,1,125,}, + {1,92,11,1,9,1,28,87,26,2,28,1,29,2,28,35,26,1,6,3,8,73,16,1,8,10,16,21,8,23,6,1,27,1,26,1,27,5,9,4,27,5,9,4,27,5,9,4,27,9,9,1,12,2,11,4,9,1,27,3,9,1,12,3,9,1,27,5,12,1,9,1,27,1,29,1,26,2,27,2,12,2,27,1,29,1,28,1,26,15,27,1,26,1,28,1,27,3,28,5,27,1,1,125,}, + {1,92,11,1,28,88,26,2,29,3,28,35,26,1,6,3,8,73,16,1,8,10,16,20,8,1,16,1,8,22,6,1,7,1,27,6,9,4,27,5,9,4,27,5,9,5,27,8,9,1,12,1,11,4,12,1,27,4,9,1,12,3,27,6,12,1,9,1,27,1,29,2,26,1,27,2,12,2,27,1,29,1,28,1,26,7,29,1,26,6,27,2,26,1,28,1,27,2,29,1,28,5,1,126,}, + {1,91,11,1,28,89,29,1,26,1,29,2,28,36,26,1,6,3,8,76,16,1,8,7,16,19,8,25,6,2,27,6,9,4,27,5,9,4,27,5,9,4,27,8,9,1,12,2,11,3,12,1,9,1,27,3,9,2,12,3,27,2,26,1,27,3,12,1,9,1,27,1,29,2,26,1,27,2,12,2,27,1,26,1,28,1,29,1,26,2,27,1,26,11,27,1,29,1,28,1,27,2,28,5,11,1,1,126,}, + {1,91,27,1,28,89,29,1,26,1,29,1,28,37,29,2,6,1,8,77,16,2,8,6,16,19,8,25,6,2,7,1,27,5,9,3,27,6,9,4,27,5,9,4,27,7,9,1,12,2,11,4,12,1,27,4,9,2,12,3,27,2,26,1,27,3,9,2,27,1,29,2,26,1,27,2,12,2,27,1,26,1,29,2,26,2,27,2,26,10,27,1,28,1,26,1,27,2,28,4,27,1,1,127,}, + {1,90,27,1,28,88,29,3,26,1,28,38,29,1,28,1,6,2,8,76,16,2,8,6,16,16,8,29,6,1,7,1,27,5,9,3,27,6,9,4,27,5,9,4,27,6,9,1,12,2,11,4,12,1,9,1,27,4,9,2,12,3,27,2,26,1,27,3,9,2,27,1,29,1,28,1,26,1,27,1,9,1,12,2,27,1,26,1,29,1,28,1,26,12,27,1,26,1,29,1,28,1,27,2,29,1,28,4,1,128,}, + {1,89,9,1,28,88,29,1,26,1,29,1,26,2,29,1,28,37,29,1,28,1,6,2,8,76,16,2,8,6,16,15,8,3,16,1,8,26,7,1,8,1,27,5,9,4,27,5,9,4,27,5,9,4,27,6,9,1,12,1,11,5,9,1,27,5,9,1,12,4,27,2,26,1,27,6,29,1,28,1,26,1,27,1,9,1,12,2,27,1,26,2,28,1,26,4,27,1,26,4,29,1,26,3,27,1,28,1,29,1,27,2,28,4,11,1,1,128,}, + {1,89,27,1,28,88,29,1,26,4,29,1,28,37,29,1,28,1,6,2,8,76,16,1,8,7,16,14,8,32,7,1,10,1,27,5,9,3,27,5,9,4,27,5,9,4,27,5,9,1,12,1,11,5,12,1,27,6,9,1,12,4,27,2,26,3,27,4,26,1,29,1,26,1,27,1,9,1,12,2,27,1,26,2,28,1,26,4,27,1,26,8,27,1,28,1,27,2,28,4,29,1,1,129,}, + {1,88,12,1,28,89,29,1,26,1,29,3,28,38,29,1,28,1,6,2,8,76,16,1,8,7,16,13,8,31,16,1,8,2,10,1,27,5,9,3,27,5,9,5,27,4,9,4,27,4,9,1,12,1,11,5,17,1,9,1,27,6,9,1,12,3,9,1,27,4,26,1,27,4,26,3,27,1,9,1,12,2,27,1,26,2,29,1,26,5,27,2,26,6,28,2,27,2,28,4,12,1,1,129,}, + {1,88,28,87,29,2,26,5,28,41,6,2,8,82,16,15,8,2,16,4,8,29,10,1,27,3,9,4,27,6,9,3,27,6,9,2,27,4,10,1,12,1,11,6,9,1,27,7,9,1,12,3,9,1,27,3,26,2,27,4,26,3,27,1,12,3,27,1,26,3,29,1,26,5,27,2,26,3,29,1,26,1,28,1,27,2,29,1,28,3,12,1,1,130,}, + {1,87,27,1,28,88,26,4,29,1,28,42,6,2,8,82,16,15,8,2,16,4,8,29,9,1,27,3,9,3,27,7,9,3,27,6,9,2,27,4,9,1,11,6,12,1,9,1,27,7,9,1,12,3,9,1,27,3,26,2,27,4,26,2,27,2,12,3,27,1,26,1,27,1,26,1,29,1,26,4,27,3,26,4,29,1,28,1,27,1,28,4,29,1,1,131,}, + {1,86,11,1,28,88,29,1,26,4,29,1,28,12,26,1,28,29,6,2,8,81,16,5,8,1,16,9,8,5,16,2,8,29,9,1,27,3,9,3,27,7,9,3,27,6,9,2,27,3,9,1,12,1,11,6,9,1,27,7,9,2,12,3,9,1,27,9,26,2,27,2,12,3,27,4,29,1,26,4,27,2,26,4,27,1,28,2,29,1,28,4,1,132,}, + {1,86,27,1,28,88,26,2,29,2,26,1,29,1,28,12,26,1,28,28,6,3,8,76,16,1,8,4,16,4,8,2,16,9,8,33,16,1,8,2,9,1,27,3,9,3,27,7,9,5,27,5,9,2,27,1,9,1,12,1,11,6,12,1,27,8,9,2,12,3,9,1,27,13,12,3,27,4,29,1,26,4,27,1,26,1,27,2,26,1,27,1,28,2,29,2,28,3,12,1,1,132,}, + {1,85,11,1,28,88,29,1,26,2,29,2,26,1,29,1,28,12,26,1,28,28,6,3,8,76,16,1,8,4,16,4,8,2,16,11,8,31,16,1,8,2,9,1,27,3,9,3,27,7,9,4,27,8,9,1,12,1,11,6,12,1,9,1,27,8,9,2,12,3,9,1,27,12,9,1,11,1,12,1,9,1,26,1,27,3,29,1,26,3,27,6,26,1,28,1,29,2,28,3,29,1,1,133,}, + {1,85,27,1,28,87,26,4,29,2,26,1,28,12,29,1,26,2,28,27,6,3,8,76,16,1,8,5,16,3,8,2,16,10,8,32,16,1,8,2,9,1,27,3,9,3,27,8,9,2,27,8,9,2,12,1,11,6,9,1,27,9,9,1,12,4,9,1,27,12,9,1,11,1,12,1,9,1,26,1,27,3,26,4,27,6,28,1,26,1,28,5,1,134,}, + {1,85,28,87,29,1,26,7,28,12,29,1,26,2,28,27,6,3,8,76,16,1,8,5,16,15,8,32,16,1,8,1,7,1,9,1,27,3,9,2,27,9,9,1,27,9,9,1,12,1,11,6,12,1,9,1,27,9,9,1,12,4,9,1,27,12,9,1,11,1,12,1,27,5,26,4,27,5,26,1,29,1,27,1,28,4,11,1,1,134,}, + {1,84,12,1,28,85,29,5,26,1,29,1,28,1,29,2,28,11,26,2,27,2,28,27,6,3,8,76,16,1,8,1,16,1,8,3,16,15,8,32,16,2,7,1,9,1,27,3,9,2,27,9,9,1,27,8,9,1,12,1,11,6,12,1,9,1,27,10,9,1,12,3,9,2,27,12,9,1,12,2,27,1,26,1,27,3,26,1,29,1,26,2,27,7,26,1,28,3,27,1,1,135,}, + {1,84,29,1,28,86,29,1,28,2,29,1,26,1,29,2,28,12,29,1,26,2,27,2,28,27,6,5,8,74,16,3,8,5,16,9,8,3,16,3,8,30,16,1,8,1,7,1,9,1,27,2,9,3,27,9,9,1,27,7,9,1,12,1,11,1,12,1,11,4,12,2,9,1,27,10,9,1,12,3,9,1,27,13,12,2,11,1,27,6,28,1,26,2,27,7,28,4,1,136,}, + {1,83,11,1,28,86,29,5,26,1,29,2,28,12,29,1,26,2,27,2,28,27,6,5,8,74,16,3,8,5,16,9,8,4,16,1,8,31,16,1,8,1,7,1,9,1,27,2,9,2,27,17,9,1,12,2,11,5,17,1,12,1,9,1,27,11,9,1,12,3,9,1,27,13,12,3,27,5,26,1,29,1,26,2,27,6,29,1,28,3,1,137,}, + {1,83,27,1,28,82,29,1,28,4,29,2,26,3,29,2,28,12,26,2,27,3,28,27,6,6,8,73,16,3,8,5,16,9,8,38,6,1,10,1,27,2,9,2,27,16,9,1,12,2,11,6,12,1,9,2,27,11,9,1,12,3,9,1,27,12,9,1,12,3,27,5,26,1,29,1,26,2,27,6,28,3,12,1,1,137,}, + {1,83,28,83,29,1,28,3,29,3,26,3,29,1,28,12,29,1,26,1,27,4,28,27,6,6,8,74,16,2,8,6,16,2,8,1,16,4,8,35,16,3,8,1,6,1,10,1,27,2,9,1,27,16,9,1,12,2,17,1,11,5,12,2,9,2,27,11,9,1,12,2,9,2,27,12,9,1,12,3,27,5,26,1,28,1,26,1,27,7,28,2,27,1,1,138,}, + {1,82,11,1,28,86,29,1,26,1,29,2,26,3,29,1,28,11,29,1,26,2,27,4,28,27,6,6,8,74,16,2,8,10,16,3,8,35,16,3,8,1,6,1,10,1,27,2,9,1,27,15,9,1,12,3,11,4,17,1,12,2,9,2,27,12,9,1,12,2,9,2,27,12,9,1,12,3,27,1,26,1,27,3,26,1,28,1,26,1,27,6,29,1,28,2,1,139,}, + {1,82,27,1,28,86,26,3,29,1,26,3,28,12,26,2,27,5,28,27,6,7,8,73,16,4,8,47,16,2,8,1,6,1,9,1,10,1,9,1,27,15,9,2,12,2,17,1,11,4,12,3,9,2,27,12,9,1,12,2,9,2,27,12,9,1,12,3,27,1,26,1,27,3,26,1,28,1,26,1,27,6,28,2,1,140,}, + {1,81,11,1,28,18,29,1,28,66,29,1,26,3,29,2,26,2,29,1,28,11,26,3,27,5,29,1,28,26,6,7,8,73,16,4,8,48,16,1,8,1,6,1,9,2,27,15,9,2,12,2,11,2,17,1,11,2,12,3,9,2,27,12,9,2,12,2,9,2,27,12,9,1,12,3,27,1,26,2,27,1,26,1,29,1,28,1,26,1,27,5,29,1,28,1,12,1,1,140,}, + {1,80,9,1,27,1,28,32,29,1,28,51,29,1,26,4,29,2,26,2,29,1,28,10,26,3,27,6,29,1,28,26,6,7,8,73,16,4,8,46,16,3,6,2,9,2,27,12,9,4,12,2,17,3,11,1,17,1,12,3,9,2,27,13,9,2,12,1,9,3,27,12,9,1,12,3,27,1,26,4,29,1,28,1,27,3,26,1,27,2,28,1,27,1,1,141,}, + {1,80,11,1,28,86,26,1,29,1,26,3,29,2,28,11,29,2,26,1,27,7,28,25,29,1,28,1,6,8,8,73,16,1,8,48,16,2,8,2,6,1,9,1,10,1,27,12,9,2,12,4,17,1,11,2,12,4,9,2,27,14,9,6,27,11,9,2,12,2,9,1,26,5,29,1,26,1,27,5,29,1,27,1,1,142,}, + {1,80,28,33,29,3,28,49,29,2,26,1,29,1,26,4,29,1,28,9,26,6,27,4,9,1,26,1,28,25,29,1,28,1,6,9,8,72,16,1,8,52,6,1,9,1,10,1,27,12,9,1,12,5,11,2,12,4,9,3,27,5,9,1,27,8,9,2,12,1,9,2,27,12,9,2,12,2,9,1,26,7,27,5,28,1,1,143,}, + {1,79,12,1,28,23,26,2,28,8,29,4,28,48,29,4,26,4,29,1,28,8,29,1,26,3,27,5,9,2,27,1,28,26,29,1,28,1,6,9,8,125,6,1,9,1,10,1,27,11,9,1,12,5,17,1,12,5,9,2,27,5,9,3,27,8,9,5,27,11,9,2,12,3,27,1,26,5,29,1,27,5,28,1,9,1,1,143,}, + {1,79,28,24,26,3,28,8,29,3,28,48,29,1,26,1,29,2,26,4,28,7,26,1,29,1,26,1,27,2,9,1,12,1,9,1,27,2,9,3,29,1,28,26,29,1,28,1,6,9,8,73,16,1,8,47,16,1,8,3,6,1,9,1,27,12,12,11,9,2,27,4,9,5,27,8,9,5,27,10,9,3,12,3,27,1,26,3,27,2,26,1,27,5,29,1,1,144,}, + {1,78,27,1,28,24,29,3,28,8,29,3,28,45,29,1,28,1,29,1,26,7,29,1,28,7,26,2,27,1,12,5,9,2,27,1,9,1,27,1,28,27,29,1,28,1,6,9,8,73,16,1,8,47,16,1,8,2,6,2,10,1,27,12,12,10,9,2,27,3,9,3,12,1,9,3,27,8,9,5,27,10,9,3,12,3,27,1,26,2,27,1,26,1,27,6,28,1,11,1,1,144,}, + {1,78,28,35,29,2,26,1,29,1,28,44,29,4,26,6,29,1,28,5,29,2,28,3,12,2,11,1,12,4,9,1,27,3,28,27,29,1,28,1,6,9,8,121,16,1,8,2,6,2,10,1,27,5,26,1,27,6,12,8,9,3,27,2,9,2,12,2,9,1,12,1,9,2,27,9,9,5,27,9,9,4,12,2,9,1,27,10,29,1,6,1,1,145,}, + {1,77,12,1,28,29,29,1,28,7,29,1,28,47,29,5,26,4,28,6,29,1,26,1,27,1,29,1,12,8,9,1,27,2,29,1,28,2,29,2,26,1,28,1,29,4,28,16,29,1,28,1,6,10,8,120,16,2,8,1,6,1,29,1,10,1,27,4,26,2,27,5,9,1,12,7,9,2,27,2,9,2,12,4,9,5,27,8,9,4,27,9,9,5,12,2,9,1,27,6,26,1,27,3,28,1,1,146,}, + {1,77,28,28,29,2,28,56,29,4,26,1,29,1,26,3,28,5,29,1,26,1,28,1,12,1,28,1,12,3,11,1,12,5,9,1,27,2,26,1,29,1,26,9,29,1,28,14,29,1,28,1,6,10,8,120,16,2,8,1,6,1,28,1,27,5,29,1,26,1,27,5,9,1,12,5,9,2,27,2,9,2,12,4,9,1,12,2,9,3,27,8,9,5,27,9,9,5,12,2,9,1,27,5,26,1,27,1,26,1,27,1,28,1,9,1,1,146,}, + {1,76,12,1,28,28,26,1,28,2,26,1,28,48,29,2,28,4,29,3,26,6,28,4,26,1,29,1,28,1,1,2,28,1,12,3,11,1,12,5,9,1,27,3,26,6,29,4,28,15,29,1,28,1,6,10,8,75,16,1,8,42,16,4,8,1,6,1,28,1,27,5,29,1,27,6,9,1,12,3,9,2,27,2,9,4,12,1,9,8,27,9,9,5,27,8,9,6,12,1,9,2,27,4,26,1,27,1,26,1,27,1,29,1,10,1,1,147,}, + {1,76,28,30,29,1,26,3,29,1,28,46,29,1,28,4,29,3,26,4,29,1,26,2,28,3,29,2,28,1,11,1,1,2,28,1,9,1,12,2,11,1,12,5,9,2,27,3,26,2,29,3,28,19,29,1,28,1,6,10,8,75,16,1,8,43,16,2,8,2,6,1,28,1,27,4,29,1,27,7,9,3,27,4,9,2,12,1,9,12,27,10,9,3,27,7,9,7,12,1,9,1,27,3,26,1,27,1,26,3,29,1,28,1,1,148,}, + {1,76,28,30,29,1,26,2,27,2,28,8,29,1,28,36,29,1,28,3,29,4,26,5,28,1,29,2,28,3,26,1,28,1,1,4,28,1,9,1,12,2,11,1,12,5,9,2,27,2,26,2,28,23,29,1,28,1,6,10,8,76,16,2,8,41,16,2,8,2,6,1,28,1,27,3,29,1,28,1,27,5,28,1,26,1,27,6,9,3,27,6,9,1,27,15,9,2,27,8,9,2,12,2,9,4,12,1,9,1,27,6,26,1,27,1,28,1,12,1,1,148,}, + {1,75,28,3,26,1,28,27,29,1,26,2,27,2,26,1,28,4,29,1,28,2,26,1,28,38,29,6,26,5,29,2,28,2,29,2,28,1,11,1,1,4,29,1,9,1,12,2,11,1,17,1,12,3,9,2,27,3,26,1,28,24,29,1,28,1,6,10,8,1,6,1,8,74,16,2,8,40,16,4,8,1,6,1,29,1,27,3,29,2,27,4,28,1,12,1,27,1,28,1,27,40,9,1,12,7,9,1,27,5,26,1,27,1,26,1,28,1,11,2,1,148,}, + {1,75,28,3,26,1,28,28,29,1,26,1,27,3,28,46,29,2,26,1,29,3,26,4,28,1,26,1,28,2,26,2,28,1,12,1,1,4,12,1,29,1,12,3,17,1,12,3,9,2,27,4,26,1,28,27,6,11,8,74,16,1,8,3,16,1,8,37,16,4,8,1,6,2,27,2,28,2,26,1,27,4,29,1,11,2,1,1,9,1,28,2,27,2,9,2,27,1,9,3,27,3,9,1,27,23,9,2,12,6,9,3,27,6,26,1,29,1,11,1,1,150,}, + {1,74,12,1,28,3,26,1,28,28,29,1,26,2,27,2,29,1,28,44,29,2,26,1,29,4,26,5,28,1,26,2,29,1,28,1,11,1,1,5,10,1,29,1,9,1,12,6,9,1,27,4,26,2,28,25,29,1,28,1,6,11,8,78,16,1,8,37,16,2,8,2,6,1,28,1,27,2,29,1,28,1,26,1,27,4,28,1,11,1,1,1,11,1,1,1,12,1,1,1,12,1,10,1,29,2,27,3,9,15,27,12,9,1,12,6,9,5,27,7,28,1,11,1,10,1,1,150,}, + {1,74,29,1,28,1,29,1,26,1,28,29,29,1,26,2,27,3,28,42,29,2,26,3,29,3,26,5,29,1,26,3,28,1,1,7,9,1,26,1,12,7,9,1,27,3,26,2,28,26,29,1,28,1,6,11,8,78,16,1,8,37,16,3,8,1,6,1,28,1,6,1,29,1,28,2,29,1,26,1,27,4,1,10,10,1,6,1,28,1,27,1,10,1,9,1,10,1,9,23,12,4,9,8,27,6,28,1,11,1,1,152,}, + {1,74,28,3,26,2,28,27,29,1,26,3,27,3,26,1,28,41,29,1,26,4,29,3,26,7,29,1,28,1,11,1,1,7,9,1,27,1,9,3,12,2,9,2,27,3,26,2,29,1,28,26,29,1,28,1,6,12,8,74,16,2,8,1,16,1,8,37,16,3,8,1,6,1,28,1,29,1,28,2,29,5,28,1,11,1,1,13,12,1,9,1,29,2,28,1,27,2,9,26,27,10,26,1,28,1,1,154,}, + {1,73,11,1,28,2,29,1,26,1,29,1,28,4,26,1,28,22,29,2,26,2,27,4,28,39,29,1,26,14,27,1,28,1,10,1,1,9,12,1,27,1,9,3,12,2,9,1,27,4,26,2,29,1,28,26,29,1,28,1,6,13,8,114,16,3,6,2,28,1,29,1,28,2,29,1,27,1,29,2,27,2,1,19,9,1,10,1,29,1,28,2,27,1,10,3,9,1,27,1,9,1,27,3,9,1,27,1,9,2,27,1,9,4,27,13,28,1,12,1,1,155,}, + {1,73,27,1,28,2,26,1,27,1,28,5,26,1,28,21,29,1,26,4,27,5,28,36,29,2,26,10,29,1,26,2,27,2,28,1,27,1,1,10,12,1,27,4,9,1,12,1,9,1,27,4,26,1,29,1,28,27,29,1,28,1,6,14,8,113,16,2,8,1,6,2,28,1,29,1,28,1,29,2,27,3,28,1,10,1,1,20,16,1,9,1,16,1,12,1,11,1,9,1,27,2,9,1,28,1,26,1,27,7,9,2,27,1,9,1,27,12,28,1,27,1,11,2,1,155,}, + {1,73,29,1,28,2,27,2,28,5,26,1,28,17,29,1,26,2,28,1,29,1,26,1,29,1,26,2,27,3,9,1,27,1,29,1,28,32,29,3,26,3,27,3,26,8,27,2,28,1,11,1,1,11,6,1,29,1,27,4,12,1,9,1,27,2,26,3,28,28,29,1,28,1,6,14,8,113,16,2,8,1,6,1,28,2,29,2,26,1,27,3,29,1,27,1,1,31,11,1,9,1,12,1,27,2,29,1,28,2,29,1,27,10,29,1,28,1,29,1,6,1,9,1,1,1,11,1,1,157,}, + {1,73,28,3,27,2,28,5,26,1,28,17,29,3,28,1,29,1,26,1,29,1,26,2,27,3,9,2,27,1,28,29,29,1,28,1,29,2,26,4,27,4,26,5,27,3,28,1,27,1,1,13,28,1,29,1,27,4,9,2,27,2,26,3,28,28,29,1,28,1,6,14,8,113,16,2,8,1,6,1,28,1,29,3,27,3,26,1,28,1,11,1,1,40,9,3,12,5,9,2,11,1,1,3,11,1,1,159,}, + {1,72,9,1,28,3,27,2,28,5,29,1,26,1,28,20,29,1,26,4,27,3,9,2,27,1,29,1,28,1,29,1,28,26,29,3,26,5,27,5,26,3,27,3,28,1,11,1,1,14,29,2,27,1,26,1,27,2,9,2,27,1,26,1,28,33,6,15,8,111,16,4,6,1,28,1,29,2,27,4,26,1,6,1,1,38,11,1,1,176,}, + {1,72,27,1,28,2,26,1,27,2,28,6,26,1,28,17,29,1,28,3,29,1,26,3,27,3,9,3,27,1,28,27,29,1,26,1,29,2,26,4,27,10,28,1,27,1,11,1,1,15,29,2,26,4,27,2,26,2,28,34,6,14,8,111,16,3,8,1,6,1,28,1,29,2,27,3,26,1,28,1,12,1,1,215,}, + {1,72,28,3,26,1,27,1,26,1,28,6,27,1,28,22,29,1,26,3,27,2,9,3,27,1,29,1,28,26,29,1,26,6,27,9,29,1,27,1,11,1,1,17,29,4,26,2,27,2,26,1,29,1,28,34,6,14,8,111,16,3,8,1,6,1,28,1,29,1,27,6,1,216,}, + {1,72,28,3,27,2,26,1,28,6,27,1,29,1,28,15,29,1,28,2,26,2,29,2,26,2,27,3,9,4,27,1,28,26,29,1,26,5,27,8,26,1,29,1,27,1,1,2,11,1,1,16,27,1,28,3,29,2,27,2,26,1,28,35,6,14,8,110,16,3,8,1,6,1,28,2,29,1,27,4,28,1,12,1,1,216,}, + {1,71,11,1,28,3,27,2,29,1,28,6,29,1,26,1,28,16,29,1,28,1,26,1,29,4,26,1,27,3,9,4,27,1,26,1,28,23,29,1,26,5,27,9,28,1,27,1,1,21,27,1,29,1,28,4,26,1,27,1,29,1,28,35,6,13,8,1,6,2,8,108,16,3,8,1,6,1,28,1,29,1,27,4,26,1,28,1,1,217,}, + {1,71,10,1,28,3,27,2,28,8,27,1,28,18,29,4,26,2,27,3,9,5,27,1,29,1,28,22,26,3,27,1,26,1,27,8,28,1,9,1,10,1,1,22,28,1,29,1,28,4,26,1,27,1,28,36,6,16,8,108,16,3,8,1,6,1,28,1,27,5,28,1,12,1,1,217,}, + {1,71,27,1,28,3,27,2,28,8,26,2,28,14,29,2,28,1,29,3,26,3,27,3,9,5,27,1,29,2,28,19,29,1,26,3,27,1,26,1,27,6,29,1,28,1,10,1,1,25,28,7,27,1,28,36,6,16,8,108,16,3,8,1,6,2,27,4,26,1,28,1,1,218,}, + {1,71,28,4,27,2,28,9,27,1,28,12,29,2,26,3,29,1,26,1,29,1,26,3,27,4,9,2,12,1,9,1,27,1,26,1,29,1,26,1,28,18,26,2,27,8,28,2,12,1,1,27,28,7,27,1,28,37,6,15,8,108,16,3,6,1,28,1,7,1,27,3,26,1,28,1,12,1,1,218,}, + {1,71,28,4,27,2,28,9,26,2,28,11,29,1,26,10,27,4,9,2,12,1,9,1,27,2,29,2,28,17,26,1,27,1,26,1,27,5,29,1,28,1,29,1,11,1,1,29,28,7,26,1,28,37,6,15,8,108,16,3,6,1,28,1,9,1,27,2,29,2,28,1,1,219,}, + {1,71,28,4,27,2,28,10,27,1,28,10,29,2,26,10,27,4,9,2,12,1,9,2,27,1,26,1,29,1,28,15,29,1,26,1,27,5,29,1,28,2,10,1,11,1,1,31,28,7,26,1,28,37,6,15,8,108,16,2,8,1,6,1,28,1,9,1,27,2,29,1,28,1,12,1,11,1,1,218,}, + {1,71,28,4,27,2,28,10,26,2,28,8,29,1,26,12,27,4,9,5,27,2,29,2,28,9,29,2,26,4,27,4,28,3,12,1,1,34,28,7,29,1,26,1,28,36,6,14,8,109,16,2,8,1,6,2,9,1,27,2,29,2,1,220,}, + {1,71,28,4,27,2,28,11,27,1,28,10,29,2,26,2,29,3,26,4,27,4,9,3,12,1,9,1,27,2,29,3,28,7,29,1,26,4,27,3,28,2,29,1,27,1,1,37,28,7,29,1,26,1,28,36,6,14,8,109,16,2,8,1,6,1,7,1,9,1,27,2,28,1,12,1,1,220,}, + {1,70,10,1,28,4,27,2,28,11,27,1,26,1,28,8,29,4,26,8,27,4,9,3,12,1,9,2,27,2,26,1,28,7,26,1,29,1,26,1,27,4,28,1,27,1,11,1,1,2,11,1,1,37,28,8,26,1,28,36,6,14,8,1,6,2,8,105,16,3,8,1,6,1,8,1,9,1,27,1,28,2,1,221,}, + {1,70,9,1,28,4,27,2,28,12,27,1,28,9,29,1,26,10,27,5,9,2,12,1,9,2,27,2,26,1,29,1,28,5,26,1,29,2,26,1,27,3,28,1,27,1,1,41,17,1,28,8,26,1,28,37,6,13,8,1,6,2,8,105,16,3,8,1,6,1,16,1,9,1,29,1,28,1,12,1,1,221,}, + {1,70,10,1,28,4,27,2,28,12,26,1,27,1,28,8,29,1,26,9,27,6,9,2,12,2,9,1,27,2,26,2,28,5,29,1,27,5,9,1,27,1,12,1,1,41,9,1,28,8,26,1,28,37,6,16,8,103,16,5,8,1,6,1,16,1,9,1,28,2,1,222,}, + {1,70,9,1,28,4,27,2,28,13,27,1,29,1,28,4,29,1,28,2,26,10,27,7,9,1,12,2,9,2,27,2,26,1,28,4,26,2,27,3,9,2,28,1,1,43,10,1,28,8,26,1,28,35,29,1,28,1,6,16,8,104,16,4,8,1,6,1,12,1,27,1,28,1,27,1,1,222,}, + {1,70,9,1,28,4,27,2,28,13,26,1,27,1,28,1,29,1,28,2,29,3,26,9,27,8,9,5,27,2,26,1,29,2,28,1,26,1,27,5,10,1,27,1,10,1,1,43,9,1,28,8,29,1,28,37,6,16,8,104,16,4,6,2,16,1,27,1,28,1,12,1,1,222,}, + {1,70,27,1,28,4,26,1,27,1,28,2,29,1,26,3,29,1,28,7,27,2,29,1,28,2,29,2,26,2,27,16,9,3,12,1,9,2,27,2,26,3,27,8,1,44,9,1,28,44,29,1,28,1,6,17,8,103,16,3,8,1,6,2,9,2,28,1,1,223,}, + {1,70,28,5,29,1,27,1,28,5,26,4,28,5,26,1,27,1,26,2,28,1,29,2,26,1,27,17,9,3,12,1,9,2,27,2,26,3,27,6,28,1,1,45,9,1,28,44,29,1,28,1,6,17,8,102,16,4,8,1,6,2,8,1,9,1,28,1,1,223,}, + {1,70,29,1,28,5,26,1,28,8,26,2,28,5,27,2,26,5,27,17,9,3,12,2,9,1,27,2,26,2,27,7,9,1,1,45,9,1,28,44,29,1,28,1,6,18,8,100,16,5,8,2,6,2,9,1,27,1,12,1,1,222,}, + {1,70,28,6,26,1,28,10,29,1,28,4,29,1,27,2,26,4,27,17,9,3,12,2,9,2,27,9,28,1,1,46,12,1,28,44,29,1,28,1,6,20,8,99,16,4,8,1,6,3,9,1,27,1,10,1,1,222,}, + {1,69,9,1,28,6,26,1,28,15,29,1,26,1,27,2,26,4,27,16,9,7,27,8,28,1,1,47,12,1,28,44,29,1,28,1,6,20,8,99,16,5,6,3,12,1,10,1,28,1,1,222,}, + {1,69,9,1,28,6,26,1,28,15,29,1,28,1,27,3,26,3,27,17,9,3,12,2,9,1,27,7,29,1,6,1,1,47,27,1,28,46,6,20,8,100,16,4,6,3,12,1,9,1,28,1,1,222,}, + {1,69,28,20,26,1,28,3,29,2,27,3,26,2,27,18,9,2,12,1,9,3,27,6,28,1,1,48,28,47,6,20,8,100,16,4,6,3,16,1,9,1,28,1,11,1,1,221,}, + {1,69,28,8,26,1,28,12,26,1,28,3,29,1,26,1,27,22,9,6,27,5,28,1,1,49,28,46,29,1,6,20,8,96,16,1,8,1,16,6,6,3,8,1,9,1,27,1,11,1,1,221,}, + {1,68,12,1,28,8,26,1,28,12,29,2,28,2,26,1,29,1,27,23,9,5,27,4,28,1,12,1,1,49,29,1,28,45,29,1,28,1,6,19,8,95,16,9,6,4,9,1,10,1,7,1,1,221,}, + {1,68,27,1,28,8,26,2,28,10,26,1,28,1,26,1,28,3,29,2,27,7,9,1,27,15,9,3,12,1,9,2,27,3,1,50,29,1,28,47,6,19,8,93,16,10,8,1,6,3,28,1,7,1,10,1,9,1,1,221,}, + {1,68,28,10,27,1,28,10,29,1,26,1,29,1,26,1,28,4,26,1,27,6,9,2,27,14,9,4,12,1,9,1,27,2,1,51,29,1,28,47,6,20,8,93,16,4,8,1,16,5,6,4,28,1,9,2,1,221,}, + {1,67,12,1,28,10,27,1,29,1,28,9,26,1,29,1,28,1,26,2,28,1,29,1,26,1,28,1,26,1,27,5,9,2,27,4,26,2,27,10,9,3,27,1,10,1,1,52,29,1,28,6,26,1,28,39,6,22,8,92,16,10,6,4,28,1,7,1,8,1,1,221,}, + {1,67,27,1,28,10,26,2,28,9,26,1,29,2,26,2,28,3,29,2,26,1,27,4,9,3,27,18,29,1,1,53,29,1,28,6,26,1,28,39,6,22,8,93,16,9,6,6,28,1,1,221,}, + {1,67,28,12,27,1,28,8,26,1,28,1,29,3,26,2,28,1,29,4,27,3,9,4,27,17,28,1,1,54,26,1,28,6,26,1,28,39,6,22,8,93,16,9,6,5,28,1,29,1,1,221,}, + {1,66,11,1,28,12,27,1,26,1,28,9,29,2,28,1,26,2,29,1,28,2,26,3,27,2,9,4,27,16,28,1,1,55,27,1,28,44,29,1,28,1,6,22,8,92,16,10,6,5,28,2,1,221,}, + {1,66,9,1,28,12,29,1,27,1,28,5,29,1,28,1,29,1,28,1,29,1,26,1,29,1,26,3,28,2,29,1,26,3,27,1,9,3,27,16,29,1,10,1,1,55,28,25,26,1,28,19,29,1,28,1,6,23,8,87,16,1,8,3,16,10,6,6,28,1,1,221,}, + {1,66,28,14,27,1,28,5,29,1,28,1,29,2,28,1,26,5,29,1,28,2,29,3,26,1,27,19,29,1,1,56,28,25,26,2,28,18,29,1,28,1,6,23,8,87,16,1,8,2,16,11,6,6,28,1,1,221,}, + {1,66,28,14,26,2,28,6,29,1,28,1,29,1,26,6,28,2,29,1,28,1,26,3,27,17,28,1,1,57,28,45,29,1,28,1,6,24,8,83,16,1,8,2,16,1,8,2,16,11,6,6,28,1,1,221,}, + {1,65,9,1,28,14,29,1,27,1,28,5,26,1,29,2,26,2,29,1,26,6,29,4,26,2,27,15,29,1,12,1,1,57,28,45,29,1,28,1,6,24,8,81,16,4,8,1,16,1,8,3,16,10,6,6,28,1,1,221,}, + {1,65,27,1,28,15,27,1,26,1,28,4,29,1,28,1,29,4,26,4,27,1,28,1,26,2,28,1,26,4,27,1,26,1,27,13,1,58,28,27,29,1,28,17,26,1,28,1,6,2,8,1,6,20,8,83,16,5,8,2,16,11,6,6,28,1,16,1,1,220,}, + {1,65,28,16,26,1,27,1,29,1,28,2,29,1,28,2,29,4,26,4,27,1,26,1,29,1,26,2,29,2,26,1,27,14,28,1,7,1,1,58,28,45,26,1,28,1,6,3,8,1,6,20,8,1,6,1,8,80,16,6,8,1,16,11,8,1,6,5,28,1,8,1,1,220,}, + {1,64,12,1,28,17,27,1,26,1,28,2,29,1,28,2,26,2,29,2,26,4,27,2,28,1,26,2,29,1,27,15,29,1,10,1,1,59,28,44,29,2,28,1,6,3,8,1,6,22,8,81,16,5,8,1,16,11,8,1,6,5,28,2,1,220,}, + {1,64,10,1,28,17,26,1,27,1,29,1,28,1,29,2,26,8,27,3,26,1,29,1,26,1,27,1,9,1,12,2,9,1,27,11,9,1,1,60,28,44,29,2,28,1,6,3,8,1,6,22,8,81,16,17,8,1,6,5,28,2,1,220,}, + {1,63,11,1,28,19,27,2,29,3,26,9,27,3,26,2,27,1,9,1,12,3,27,4,9,1,27,5,29,1,1,61,28,29,29,1,26,1,28,13,29,2,6,2,8,1,6,1,8,1,6,19,8,2,6,1,8,81,16,17,8,2,6,5,28,1,11,1,1,219,}, + {1,64,28,19,26,1,27,1,26,2,29,1,26,8,27,5,26,1,27,1,9,1,12,3,27,4,9,2,27,3,26,1,11,1,1,61,28,30,26,1,28,13,29,2,6,2,8,1,6,22,8,1,6,1,8,59,16,1,8,21,16,18,8,1,6,5,28,2,1,219,}, + {1,63,9,1,28,20,27,2,26,9,27,9,12,1,11,1,12,1,27,5,9,1,27,3,6,1,12,1,1,61,28,31,29,1,28,12,29,1,28,1,6,2,8,2,6,21,8,1,6,2,8,80,16,18,8,1,6,5,28,2,1,219,}, + {1,63,27,1,28,20,26,1,27,1,26,8,27,10,9,1,12,2,27,5,9,2,27,1,28,1,7,1,11,1,1,61,28,31,26,1,29,1,28,11,29,1,28,1,6,3,8,1,6,24,8,80,16,18,8,2,6,4,28,1,29,1,9,1,1,218,}, + {1,63,29,1,28,21,27,2,26,8,27,9,9,1,12,2,27,5,9,1,27,1,29,1,12,1,1,63,28,31,26,2,28,11,29,1,6,3,8,4,6,24,8,78,16,18,8,1,6,5,28,1,6,1,27,1,1,218,}, + {1,63,28,22,26,1,27,2,26,5,27,12,9,1,12,1,9,1,27,6,29,1,11,1,1,63,28,4,29,1,28,27,26,2,28,9,29,1,28,1,6,2,8,2,6,27,8,78,16,18,8,1,6,5,28,1,7,1,29,1,1,218,}, + {1,63,28,23,27,3,26,4,27,8,9,2,27,2,9,1,12,1,9,1,27,5,29,1,1,1,6,1,1,63,28,32,29,1,26,2,28,8,26,1,28,1,6,2,8,2,6,26,8,79,16,18,8,2,6,1,8,1,6,2,28,1,27,1,29,1,12,1,1,217,}, + {1,63,28,23,29,1,27,3,26,2,27,10,12,1,27,2,9,1,12,1,9,1,27,4,28,1,1,66,28,33,26,2,28,7,29,1,27,1,28,1,6,6,8,1,6,22,8,61,16,3,8,16,16,18,8,1,6,2,8,1,6,2,28,1,10,1,27,1,6,1,1,217,}, + {1,62,9,1,28,5,29,2,28,17,26,1,27,3,26,1,27,10,12,1,9,1,27,2,12,1,9,1,27,3,28,1,11,1,1,66,28,3,29,1,28,29,29,1,26,2,28,6,26,1,29,1,6,2,8,5,6,23,8,59,16,6,8,2,16,1,8,12,16,18,8,1,6,1,8,1,6,3,28,1,10,1,27,1,28,1,1,217,}, + {1,62,9,1,28,4,26,6,28,15,27,14,12,2,27,2,12,1,9,1,27,2,28,1,12,1,1,66,10,1,28,3,26,1,28,30,29,1,26,2,28,5,26,1,28,1,6,2,8,5,6,23,8,59,16,6,8,2,16,1,8,6,16,1,8,5,16,18,8,3,6,3,28,1,10,1,27,1,28,1,11,1,1,216,}, + {1,62,28,4,29,1,26,2,29,2,26,3,29,1,28,13,26,1,27,13,9,1,12,1,9,1,27,1,12,1,9,1,27,1,28,1,10,1,1,67,9,1,28,2,26,1,28,32,26,2,28,5,29,1,28,1,6,2,8,5,6,5,8,1,6,20,8,56,16,10,8,4,16,2,8,5,16,18,8,1,6,5,28,1,9,1,27,2,9,1,1,216,}, + {1,62,29,1,28,5,29,1,28,4,26,3,28,12,29,1,26,1,27,12,9,1,12,1,9,1,27,1,12,1,9,1,29,2,1,68,9,1,28,2,29,1,28,32,26,3,28,4,29,1,6,2,8,5,6,5,8,3,6,19,8,56,16,7,8,2,16,1,8,4,16,2,8,5,16,18,8,3,6,3,28,1,9,1,27,2,29,1,1,216,}, + {1,62,28,12,29,1,26,3,28,11,26,2,27,10,9,1,27,1,12,1,9,1,27,1,9,1,27,1,9,1,1,69,27,1,28,2,26,1,28,33,26,2,29,1,28,3,29,1,6,2,8,2,6,6,8,2,6,1,8,1,6,18,8,57,16,10,8,12,16,18,8,4,6,3,9,2,27,1,28,1,1,216,}, + {1,62,28,15,26,1,29,1,28,10,26,1,27,11,9,1,27,1,12,1,9,1,27,2,9,1,1,70,29,1,28,37,26,2,28,2,29,1,28,1,6,10,8,1,6,23,8,55,16,10,8,12,16,19,8,2,6,4,9,3,27,1,10,1,1,215,}, + {1,62,28,16,29,1,26,1,28,9,26,1,27,11,9,1,27,1,9,2,28,1,27,1,1,71,28,38,29,1,26,2,29,2,28,1,6,10,8,1,6,19,8,1,6,3,8,55,16,10,8,12,16,19,8,2,6,3,8,1,9,3,27,1,28,1,1,215,}, + {1,62,28,17,29,1,26,1,28,7,29,1,26,1,27,5,9,1,27,4,9,1,12,1,27,2,28,1,29,1,1,71,12,1,28,39,26,3,29,1,6,31,8,1,6,3,8,54,16,11,8,11,16,20,8,2,6,3,9,1,10,1,9,3,29,1,1,215,}, + {1,62,28,18,29,1,28,7,26,2,27,1,9,1,27,1,26,1,27,2,9,3,27,1,9,1,12,1,9,1,27,2,1,72,9,1,28,39,26,2,27,1,6,38,8,49,16,1,8,2,16,11,8,6,16,3,8,2,16,20,8,2,6,3,16,1,10,1,9,1,12,1,9,1,27,1,12,1,1,214,}, + {1,62,28,27,26,1,27,1,9,1,27,5,9,1,27,1,9,4,28,1,1,1,11,1,1,71,28,40,29,1,26,1,27,1,6,38,8,49,16,1,8,2,16,11,8,6,16,3,8,1,16,21,8,2,6,3,16,1,10,1,9,1,12,1,9,1,10,2,1,214,}, + {1,62,28,21,26,1,29,1,28,4,26,1,27,2,9,1,27,4,26,1,29,1,27,4,28,1,1,73,28,41,26,1,6,4,8,1,6,6,8,2,6,27,8,48,16,1,8,1,16,12,8,3,16,1,8,2,16,3,8,1,16,20,8,3,6,3,16,1,9,2,12,2,9,1,28,1,1,214,}, + {1,62,28,21,26,3,28,2,26,3,27,1,9,2,27,7,29,1,27,1,28,1,1,72,12,1,28,41,26,1,29,1,6,3,8,1,6,5,8,3,6,7,8,1,6,19,8,47,16,2,8,1,16,13,8,2,16,1,8,2,16,3,8,1,16,20,8,2,6,4,8,1,12,1,9,1,12,2,9,1,27,1,17,1,1,213,}, + {1,62,28,22,26,5,29,1,27,3,9,2,27,7,29,1,9,1,1,72,27,1,28,41,29,1,28,1,6,2,8,1,6,1,8,1,6,5,8,4,6,24,8,1,6,1,8,49,16,3,8,1,16,9,8,8,16,21,8,2,6,4,16,1,17,1,12,4,9,1,27,1,1,213,}, + {1,62,28,22,26,4,28,1,26,2,27,3,12,1,9,1,27,3,9,2,27,1,28,1,9,1,1,72,28,43,6,2,8,2,6,1,8,1,6,2,8,7,6,24,8,1,6,1,8,49,16,13,8,8,16,21,8,2,6,4,16,2,11,1,12,3,9,1,28,1,1,213,}, + {1,62,28,21,29,1,26,3,27,1,29,1,26,3,27,2,9,1,12,1,9,1,27,2,9,1,27,2,28,1,1,72,11,1,28,43,6,2,8,10,6,1,8,2,6,24,8,1,6,1,8,49,16,13,8,8,16,22,8,1,6,3,8,1,16,2,11,2,12,2,9,1,29,1,11,1,1,212,}, + {1,62,28,20,29,1,26,3,27,3,28,1,26,3,27,2,9,1,12,1,9,1,27,1,9,1,10,1,28,1,12,1,1,72,27,1,28,43,6,3,8,12,6,24,8,50,16,15,8,7,16,21,8,2,6,3,8,1,16,3,11,3,12,1,27,1,12,1,1,212,}, + {1,62,28,20,29,1,26,3,27,3,26,1,29,1,26,1,27,4,9,2,27,2,28,1,9,1,1,73,28,3,29,1,28,38,29,1,28,1,6,3,8,12,6,23,8,46,16,1,8,4,16,43,8,3,6,2,8,1,16,4,11,3,12,1,29,1,1,212,}, + {1,62,28,19,29,1,26,4,27,2,26,1,27,1,29,1,26,1,27,5,9,1,10,1,28,1,11,1,1,73,11,1,28,3,29,1,28,38,29,1,28,1,6,3,8,12,6,23,8,45,16,2,8,4,16,44,8,1,6,3,8,1,16,4,14,1,11,2,17,1,28,1,1,212,}, + {1,62,28,19,26,8,29,1,26,3,27,6,9,2,11,1,1,72,29,1,28,2,26,1,28,41,6,5,8,10,6,24,8,1,6,1,8,39,16,5,8,4,16,15,8,1,16,28,8,1,6,3,8,1,16,2,14,3,16,1,11,1,16,1,6,1,11,1,1,211,}, + {1,62,28,19,29,1,26,1,29,1,26,2,29,2,28,2,29,1,26,3,27,5,10,1,1,73,9,1,28,3,26,1,28,40,6,6,8,6,6,2,8,1,6,28,8,38,16,5,8,4,16,14,8,2,16,28,8,1,6,3,16,4,14,1,16,1,14,1,16,2,6,1,16,1,1,211,}, + {1,62,28,19,29,2,28,6,26,1,28,1,26,1,27,1,26,1,27,3,9,1,27,2,1,73,9,1,28,1,29,1,26,1,28,41,6,8,8,5,6,12,8,1,6,18,8,45,16,44,8,2,6,3,16,4,14,4,16,1,6,1,8,1,1,211,}, + {1,62,27,1,28,24,29,1,28,1,29,1,26,2,27,2,26,1,27,2,9,1,10,1,27,1,1,73,28,3,26,1,28,39,29,1,28,1,6,9,8,3,6,3,8,6,6,3,8,1,6,18,8,46,16,44,8,2,6,3,16,7,14,2,8,1,28,1,1,211,}, + {1,62,27,1,28,22,29,1,26,2,29,1,26,1,27,1,26,1,27,5,9,2,27,1,1,72,11,1,28,1,29,1,26,2,28,39,29,1,28,1,6,9,8,3,6,2,8,11,6,17,8,47,16,44,8,1,6,4,16,5,14,3,16,1,8,1,29,1,1,211,}, + {1,62,29,1,28,22,29,1,26,3,27,9,9,1,27,1,1,72,27,1,29,2,28,41,29,1,28,1,6,10,8,2,6,2,8,13,6,15,8,47,16,11,8,1,16,32,8,1,6,4,16,6,14,2,16,1,8,1,29,1,1,211,}, + {1,62,28,23,29,1,26,1,29,1,26,1,27,11,1,72,28,2,26,1,29,1,28,40,29,1,6,11,8,17,6,16,8,45,16,45,8,1,6,4,8,1,16,5,14,2,16,2,29,1,1,211,}, + {1,62,29,1,28,20,29,1,28,1,29,3,27,7,9,1,27,4,1,71,9,1,28,44,29,1,6,12,8,16,6,17,8,42,16,47,8,1,6,4,8,1,16,5,14,1,16,2,8,1,29,1,1,211,}, + {1,62,12,1,28,20,29,2,26,1,29,2,26,1,27,6,9,2,27,3,1,71,28,45,29,1,6,13,8,16,6,18,8,40,16,47,8,1,6,4,8,1,16,6,14,1,16,1,8,1,29,1,1,211,}, + {1,62,12,1,28,18,29,3,26,2,29,1,26,2,27,6,9,1,12,1,9,1,27,1,29,1,1,70,11,1,28,3,26,1,28,42,6,13,8,17,6,17,8,40,16,47,8,1,6,4,8,1,16,6,14,1,16,1,6,1,17,1,1,211,}, + {1,62,12,1,28,17,29,1,26,10,27,5,12,1,9,1,27,1,29,1,12,1,1,69,28,3,26,1,28,41,29,1,6,17,8,15,6,16,8,43,16,44,8,1,6,4,8,1,16,5,14,1,16,2,6,1,16,1,1,211,}, + {1,62,11,1,28,17,26,9,27,2,26,1,27,4,9,1,12,1,9,1,27,2,1,69,28,3,26,1,28,41,29,1,6,17,8,16,6,15,8,43,16,44,8,1,6,4,8,1,16,8,6,1,8,1,1,211,}, + {1,63,28,15,26,2,27,17,12,1,9,1,10,1,29,1,1,68,27,1,28,45,29,1,6,17,8,17,6,14,8,43,16,44,8,1,6,4,8,1,16,8,6,2,1,211,}, + {1,63,28,13,26,2,27,19,9,1,12,1,9,1,29,1,1,67,11,1,28,3,29,1,28,42,29,1,6,16,8,19,6,5,8,1,6,7,8,35,16,1,8,7,16,44,8,1,6,3,8,2,16,8,6,2,12,1,1,210,}, + {1,63,27,1,28,10,29,1,26,4,27,1,26,2,29,1,28,3,29,2,26,1,27,9,9,1,12,1,27,1,12,1,1,66,11,1,28,3,26,1,28,41,29,2,6,16,8,20,6,12,8,35,16,1,8,6,16,45,8,1,6,3,8,2,16,7,8,1,6,1,10,1,29,1,1,210,}, + {1,63,27,1,28,9,26,5,28,1,26,1,28,6,29,1,26,1,29,1,26,1,27,9,9,1,10,2,1,66,28,3,26,1,28,42,29,2,6,16,8,1,6,1,8,20,6,10,8,35,16,1,8,6,16,45,8,1,6,3,8,2,16,7,6,2,9,1,28,1,1,210,}, + {1,63,29,1,28,15,29,2,28,7,26,4,27,8,10,1,9,1,1,65,11,1,28,46,29,1,6,17,8,1,6,1,8,19,6,3,8,1,6,8,8,34,16,1,8,6,16,45,8,1,6,3,8,2,16,7,6,2,9,1,27,1,12,1,1,209,}, + {1,63,28,23,29,2,26,1,29,1,26,3,27,7,29,1,9,1,1,65,9,1,28,3,26,1,28,42,29,1,6,17,8,1,6,1,8,18,6,4,8,3,6,6,8,30,16,1,8,3,16,1,8,6,16,45,8,1,6,3,8,2,16,7,6,2,27,2,28,1,1,209,}, + {1,63,12,1,28,5,26,2,29,1,28,15,29,3,26,6,27,6,1,65,28,46,29,1,6,12,8,2,6,2,8,3,6,1,8,18,6,4,8,1,6,10,8,37,16,8,8,1,16,39,8,1,6,2,8,1,16,7,8,1,6,1,7,1,27,2,28,1,1,209,}, + {1,63,12,1,28,25,29,3,28,1,29,4,26,2,27,2,29,1,12,1,1,64,28,46,29,1,6,14,8,3,6,1,8,1,6,1,8,24,6,9,8,37,16,8,8,1,16,39,8,1,6,2,8,1,16,7,8,1,6,1,10,1,27,4,1,208,}, + {1,63,12,1,28,29,29,3,26,1,27,1,26,1,27,4,29,1,1,62,27,1,28,3,29,1,28,43,6,15,8,1,6,2,8,1,6,1,8,24,6,8,8,38,16,48,8,1,6,2,8,1,16,7,7,1,8,1,9,1,27,3,28,1,1,208,}, + {1,63,12,1,28,28,29,1,26,1,27,7,9,1,10,1,27,1,7,1,11,1,1,60,28,47,29,1,6,18,8,1,6,2,8,24,6,7,8,38,16,48,8,2,6,1,8,1,16,7,6,1,8,1,9,1,27,3,28,1,11,1,1,207,}, + {1,63,12,1,28,22,29,1,26,1,29,1,26,3,27,4,9,8,29,1,11,1,1,59,11,1,28,3,29,1,28,43,29,1,6,18,8,1,6,3,8,23,6,7,8,38,16,49,8,1,6,1,8,1,16,7,6,1,7,1,16,1,27,1,26,1,9,1,27,1,10,1,1,207,}, + {1,63,12,1,28,14,26,2,29,1,28,6,26,2,27,6,9,2,12,1,9,2,12,3,9,1,10,1,6,1,1,59,27,1,28,3,26,1,28,43,29,1,6,17,8,1,6,3,8,18,6,1,8,6,6,6,8,38,16,50,8,2,16,6,8,1,6,2,16,1,27,1,26,1,27,2,28,1,1,207,}, + {1,63,12,1,28,14,29,1,28,7,29,1,26,2,27,8,9,2,12,1,9,4,27,1,28,1,1,59,29,1,28,47,29,1,6,21,8,25,6,6,8,38,16,50,8,3,16,5,6,2,7,1,16,1,9,1,27,3,28,1,12,1,1,206,}, + {1,63,12,1,28,22,29,1,26,3,27,4,26,1,27,10,26,1,9,1,1,58,28,48,29,1,6,10,8,1,6,10,8,25,6,5,8,39,16,51,8,2,16,4,8,1,6,1,8,3,9,1,27,3,29,2,1,206,}, + {1,63,27,1,28,22,29,1,26,1,29,2,28,1,29,2,26,3,27,2,26,1,29,2,28,3,27,1,29,1,10,1,11,1,1,56,9,1,28,3,26,1,28,44,29,1,6,23,8,22,6,3,8,1,6,4,8,32,16,9,8,1,16,52,8,3,16,1,7,1,12,1,27,2,9,1,27,1,28,1,1,206,}, + {1,63,29,1,28,22,29,2,26,2,29,7,28,6,29,1,28,1,29,1,28,2,11,1,1,55,28,49,29,1,6,20,8,25,6,2,8,2,6,5,8,30,16,63,6,1,8,2,16,1,8,1,16,1,9,1,27,1,9,1,27,1,29,1,12,1,11,1,1,204,}, + {1,63,29,1,28,16,29,2,26,10,29,7,26,2,27,7,28,1,16,1,11,1,1,53,28,49,29,1,6,6,8,1,6,3,8,4,6,6,8,28,6,6,8,27,16,65,8,1,6,1,8,1,16,2,8,1,9,2,27,1,9,1,27,1,26,1,28,1,6,1,1,204,}, + {1,63,27,1,28,14,29,1,26,4,29,3,26,13,27,10,7,1,1,53,12,1,28,49,29,1,6,9,8,8,6,3,8,29,6,5,8,27,16,65,6,2,8,1,16,2,8,1,7,1,12,1,27,1,9,1,27,1,26,1,28,1,11,1,1,204,}, + {1,63,28,14,29,1,26,2,29,1,28,7,29,1,28,3,29,1,26,3,27,7,9,5,10,1,28,1,11,1,1,52,27,1,28,49,29,1,6,7,8,11,6,1,8,30,6,5,8,26,16,65,8,1,6,1,8,2,16,3,6,1,16,1,27,2,9,1,27,1,29,1,28,1,1,204,}, + {1,63,28,29,29,1,26,1,27,10,9,5,27,1,28,1,1,51,11,1,28,50,29,1,6,7,8,43,6,4,8,25,16,66,8,1,6,1,16,1,8,1,16,3,6,1,16,1,10,1,27,1,9,1,27,2,28,1,1,204,}, + {1,63,28,28,26,2,27,12,9,3,27,3,9,1,12,1,1,49,11,1,28,50,29,1,6,7,8,42,6,5,8,11,16,1,8,12,16,67,6,2,16,5,8,2,9,1,27,1,9,1,27,2,26,1,27,1,1,203,}, + {1,62,12,1,28,26,29,1,26,1,27,6,26,2,27,6,9,4,27,2,28,1,11,1,1,49,27,1,28,3,29,1,28,45,29,2,6,3,8,1,6,3,8,19,6,1,8,22,6,5,8,11,16,1,8,8,16,1,8,2,16,67,8,1,6,1,8,1,16,5,8,1,6,1,9,1,27,1,9,1,27,1,29,1,27,1,28,1,1,203,}, + {1,62,9,1,28,24,29,1,26,2,27,6,26,3,27,6,9,4,27,4,1,49,28,4,26,1,28,45,29,2,6,8,8,42,6,4,8,15,16,74,8,2,6,1,16,7,6,1,10,1,27,1,9,2,27,2,29,1,12,1,1,202,}, + {1,62,27,1,28,23,26,10,29,3,26,3,27,4,9,3,27,3,29,1,11,1,1,48,28,50,29,2,6,1,8,1,6,6,8,42,6,4,8,15,16,5,8,5,16,64,8,1,6,2,16,7,6,1,8,1,27,1,9,2,27,3,28,1,1,202,}, + {1,62,28,24,26,2,29,1,26,2,29,1,28,8,29,1,26,1,27,3,9,2,12,1,9,2,27,3,28,1,1,1,11,1,1,45,11,1,28,50,29,2,6,1,8,1,6,5,8,43,6,3,8,16,16,5,8,2,16,66,8,1,6,2,8,1,16,7,8,1,6,1,10,1,9,2,27,1,29,1,27,1,28,1,27,1,1,201,}, + {1,62,29,1,28,35,29,2,26,1,27,3,9,2,12,2,9,2,27,4,28,1,9,1,1,45,27,1,28,50,29,2,6,1,8,1,6,4,8,62,16,74,8,1,6,2,8,1,16,7,8,1,6,1,10,1,9,2,27,1,29,1,27,2,28,1,9,1,1,200,}, + {1,62,26,1,28,31,29,3,26,3,27,3,9,3,12,3,9,2,27,4,29,1,28,1,1,1,11,1,1,42,28,4,26,1,28,46,29,1,6,2,8,1,6,4,8,62,16,73,8,1,6,3,16,8,8,1,6,1,7,1,9,2,27,1,29,1,27,2,28,1,12,1,1,200,}, + {1,62,28,27,29,4,26,7,27,5,9,1,12,4,9,1,27,5,29,1,28,1,1,42,11,1,28,4,26,1,28,46,29,1,6,2,8,1,6,3,8,63,16,73,8,1,6,2,8,1,16,8,8,1,6,2,9,2,27,1,29,1,27,2,28,2,1,200,}, + {1,62,28,28,29,1,28,1,29,1,26,3,29,2,26,3,27,4,9,1,12,4,9,1,27,6,28,2,1,41,9,1,28,51,29,1,6,6,8,59,16,2,8,1,16,73,8,1,6,2,8,1,16,9,8,1,6,2,9,3,26,1,29,3,28,1,9,1,1,199,}, + {1,62,28,26,29,3,28,2,29,2,26,1,29,1,26,5,27,3,9,1,12,4,9,2,27,4,29,1,26,2,28,1,1,40,27,1,28,51,29,1,6,6,8,59,16,2,8,1,16,73,8,1,6,2,8,1,16,9,8,1,6,2,9,1,12,1,9,1,27,1,29,1,26,2,28,1,29,1,1,199,}, + {1,61,12,1,28,28,29,5,26,8,27,3,9,1,12,3,9,1,27,4,26,2,27,3,9,1,1,39,28,31,29,1,28,20,29,1,6,6,8,61,16,2,8,1,16,71,6,2,8,1,16,10,8,1,7,1,6,1,10,1,12,1,9,1,27,1,29,2,27,1,28,2,1,199,}, + {1,61,12,1,28,28,29,1,28,2,29,2,26,7,27,5,12,2,9,1,27,10,28,1,9,1,1,38,28,31,29,1,26,1,28,19,6,7,8,60,16,3,8,1,16,70,8,1,6,2,8,1,16,10,8,2,6,1,10,1,12,1,9,1,27,1,29,1,27,2,28,2,27,1,1,198,}, + {1,61,12,1,28,28,29,1,28,1,29,3,26,5,27,7,12,2,9,2,27,10,28,1,11,1,1,36,12,1,28,3,26,1,28,28,26,1,28,19,6,7,8,60,16,3,8,2,16,69,8,1,6,2,8,1,16,11,8,1,6,1,27,1,12,1,9,1,27,1,29,1,27,2,29,1,28,2,1,198,}, + {1,61,12,1,28,18,29,5,28,3,29,1,28,1,29,3,26,4,27,6,26,3,27,1,9,6,27,9,28,1,1,36,27,1,28,2,29,1,26,1,28,48,29,1,6,6,8,59,16,4,8,2,16,69,8,1,6,1,8,1,16,12,8,1,6,1,7,1,9,2,27,1,26,1,27,1,29,1,27,1,28,2,12,1,1,197,}, + {1,61,29,1,28,17,26,2,29,3,28,4,26,1,28,1,29,1,28,2,26,3,27,5,26,2,28,1,29,1,27,3,9,1,12,1,9,4,27,9,28,1,1,35,28,1,26,1,28,1,29,1,26,1,28,48,29,1,6,6,8,59,16,75,8,1,6,1,8,1,16,12,8,1,6,1,7,1,9,2,27,1,29,1,27,3,28,2,29,1,1,197,}, + {1,61,29,1,28,30,29,1,26,2,27,5,26,1,28,3,26,1,27,1,9,1,29,1,10,1,9,4,27,10,29,1,9,1,1,34,28,1,26,1,28,1,26,2,28,48,29,1,6,6,8,59,16,75,6,2,8,1,16,12,8,1,6,1,7,1,9,1,12,1,27,1,29,1,27,2,29,2,28,2,1,197,}, + {1,61,27,1,28,17,29,1,28,12,29,1,26,2,27,3,26,1,28,4,26,1,27,1,9,2,28,2,9,3,27,7,26,4,27,1,28,1,11,1,1,32,11,1,28,1,26,4,28,29,26,1,28,18,29,1,6,6,8,59,16,2,8,1,16,71,8,1,6,2,16,13,8,1,6,1,7,1,9,1,12,1,27,1,29,1,27,3,29,1,28,2,11,1,1,196,}, + {1,61,27,1,28,30,26,1,27,4,26,1,28,4,26,1,27,4,29,1,12,1,28,1,9,3,27,8,26,1,27,3,28,1,1,1,11,1,1,30,9,1,29,1,26,1,29,1,26,1,29,1,28,29,26,2,28,16,29,1,27,1,6,6,8,59,16,1,8,2,16,71,8,1,6,2,16,13,8,1,6,1,7,1,9,1,12,1,27,1,29,1,27,2,29,2,28,2,27,1,1,196,}, + {1,61,27,1,28,28,29,1,26,2,27,3,26,1,28,4,29,1,27,7,12,1,28,1,9,3,27,12,28,1,10,1,1,30,26,5,28,31,29,1,26,1,28,16,27,1,6,5,8,63,16,71,8,1,6,1,8,1,16,14,6,1,8,1,9,2,27,1,29,1,27,4,28,3,1,196,}, + {1,61,27,1,28,24,29,1,26,4,27,3,26,2,28,4,26,2,27,7,10,1,12,1,27,1,9,2,27,12,28,1,1,31,28,1,27,1,26,2,27,1,28,32,26,1,28,16,27,1,6,5,8,59,16,1,8,2,16,72,8,1,6,1,8,1,16,13,8,1,6,1,8,1,12,2,27,1,29,1,27,3,29,1,28,3,11,1,1,195,}, + {1,61,27,1,28,20,29,1,26,7,27,3,26,1,28,5,26,2,27,9,1,1,27,16,9,1,1,30,28,1,26,3,27,1,28,32,29,1,26,1,28,15,27,1,6,2,8,1,6,1,8,60,16,1,8,1,16,73,8,1,6,1,8,1,16,13,8,1,6,1,8,1,12,2,27,1,29,1,27,3,29,2,28,2,9,1,1,195,}, + {1,61,27,1,28,12,29,6,26,2,29,2,26,3,27,2,26,2,29,1,28,6,29,1,26,1,27,4,26,2,29,1,27,4,1,1,27,16,1,29,11,1,29,2,26,3,28,32,29,1,26,1,28,15,27,1,6,2,8,62,16,1,8,1,16,73,6,1,8,2,16,13,8,1,6,1,8,1,12,1,9,1,27,1,29,1,27,3,29,2,28,1,29,1,6,1,1,195,}, + {1,61,27,1,28,10,29,1,28,1,29,2,26,13,28,8,29,1,26,1,27,4,26,3,27,5,10,1,11,1,28,1,27,8,26,1,27,4,28,1,1,29,27,1,29,1,26,3,28,33,29,1,26,1,28,15,27,1,6,2,8,62,16,1,8,1,16,73,6,1,8,1,16,14,8,1,7,1,8,1,12,1,9,1,27,1,29,1,27,3,29,3,28,2,1,195,}, + {1,61,27,1,28,13,29,1,26,3,29,1,26,6,29,1,28,8,29,2,26,2,27,3,26,7,27,2,29,1,12,1,10,1,29,1,27,6,26,1,27,5,29,1,1,29,27,1,26,1,29,2,26,1,28,35,29,1,26,1,28,13,27,1,6,2,8,63,16,2,8,1,16,71,8,2,16,15,8,2,12,1,9,1,27,1,26,1,27,3,29,3,28,2,1,195,}, + {1,61,27,1,28,10,29,4,26,3,29,1,26,3,28,10,29,3,26,6,29,3,26,1,28,1,26,2,27,2,9,1,10,1,11,1,1,1,28,1,27,4,26,1,27,6,29,1,1,29,28,1,26,1,29,2,28,36,29,1,26,1,28,13,26,1,7,1,6,1,8,63,16,74,8,2,16,14,8,2,9,1,12,1,9,1,27,1,26,1,27,3,29,1,27,1,28,1,29,1,28,1,12,1,1,194,}, + {1,61,26,1,28,9,29,2,28,3,29,1,26,2,29,3,28,11,29,1,26,7,29,3,28,1,26,1,29,1,26,2,27,2,9,1,29,1,1,3,28,1,29,1,27,9,28,1,1,28,11,1,28,1,26,2,29,1,28,36,29,1,26,1,28,13,29,1,7,1,6,2,8,62,16,73,8,3,16,14,8,2,9,1,12,1,9,1,27,1,29,1,27,3,29,1,26,1,29,1,28,2,27,1,1,194,}, + {1,61,29,1,28,7,29,1,28,4,29,1,28,2,29,1,28,12,29,1,26,9,29,3,26,5,27,3,9,3,1,3,10,1,29,1,27,8,28,1,1,28,11,1,29,2,26,2,28,37,26,1,28,13,29,1,27,1,6,1,8,63,16,73,8,3,16,15,8,1,16,1,12,1,9,1,27,1,29,1,27,3,26,2,29,2,28,2,1,194,}, + {1,61,28,10,29,3,28,16,26,14,27,2,26,2,27,1,26,1,27,1,9,2,27,1,11,1,1,4,27,1,29,1,27,6,12,1,1,28,27,3,26,1,29,1,28,37,26,1,28,13,29,1,27,1,6,2,8,62,16,73,8,3,16,15,8,1,16,1,12,1,9,1,27,1,29,1,27,5,29,3,28,1,1,194,}, + {1,61,11,1,28,26,29,1,26,12,27,5,26,4,27,2,9,2,28,1,11,1,1,5,28,1,29,1,28,1,29,1,28,1,6,1,11,1,1,28,28,1,27,2,26,1,29,1,28,37,26,1,28,1,29,2,28,10,29,1,27,1,6,4,8,59,16,74,8,2,16,15,8,2,16,1,12,1,9,1,27,1,26,1,27,5,29,3,28,1,1,194,}, + {1,61,12,1,28,24,29,2,26,12,27,5,29,4,26,1,27,2,9,2,29,1,11,1,1,8,17,1,1,31,28,1,27,2,26,1,28,38,26,1,28,2,26,1,28,10,26,1,27,1,6,4,8,59,16,75,8,1,16,15,8,2,16,1,12,1,9,1,29,1,27,6,26,1,29,2,28,1,11,1,1,193,}, + {1,61,12,1,28,21,29,3,26,13,27,5,29,1,28,2,29,2,26,1,27,2,9,2,10,1,29,1,1,40,28,1,26,1,27,1,26,1,28,40,29,1,26,1,29,1,28,9,26,1,27,1,6,4,8,57,16,1,8,1,16,75,8,1,16,15,8,1,16,2,12,1,9,1,29,1,27,7,29,1,28,2,10,1,1,193,}, + {1,61,12,1,28,19,29,2,26,14,27,5,26,2,29,1,28,2,26,1,29,1,26,2,27,2,9,1,27,1,28,1,11,1,1,38,11,1,28,1,27,1,29,1,26,1,28,39,29,2,26,2,29,1,28,8,26,1,27,1,6,4,8,57,16,1,8,1,16,75,8,1,16,18,12,1,10,1,29,1,27,7,29,2,28,1,27,1,1,193,}, + {1,61,11,1,28,18,29,2,26,5,27,1,26,1,27,4,26,5,27,2,26,3,29,1,28,3,29,1,26,3,27,2,9,2,27,2,1,38,27,1,26,2,28,42,29,1,26,2,29,1,28,9,27,1,6,5,8,56,16,1,8,1,16,94,12,1,27,1,29,1,27,7,29,2,28,1,27,1,1,193,}, + {1,62,28,16,29,1,26,1,29,1,26,8,27,3,26,10,29,1,28,5,26,3,27,2,9,1,27,1,10,1,28,1,1,38,29,2,28,43,29,2,26,2,28,9,27,1,7,1,6,4,8,56,16,94,8,1,16,1,12,1,27,1,29,1,27,7,29,3,28,1,1,193,}, + {1,62,27,1,28,9,29,2,28,4,29,1,26,6,27,2,26,14,29,1,28,6,26,4,27,2,9,1,27,2,11,1,1,37,28,1,26,1,28,43,29,3,26,2,29,1,28,7,29,1,7,1,6,3,8,59,16,92,8,1,16,1,12,1,27,9,29,1,26,1,28,2,1,193,}, + {1,62,29,1,28,12,29,2,26,5,27,4,26,11,29,3,28,7,29,1,26,4,27,2,9,1,27,2,29,1,1,37,28,1,29,1,28,45,26,3,29,1,28,6,29,1,26,1,7,1,6,3,8,59,16,92,8,1,16,1,12,1,27,9,29,1,27,1,28,2,1,193,}, + {1,62,12,1,28,12,29,1,26,3,27,5,26,12,29,2,28,9,29,1,26,4,27,2,9,1,27,2,28,1,1,36,11,1,28,3,26,1,28,43,26,4,28,6,29,1,26,1,7,1,6,3,8,59,16,92,8,1,9,1,12,1,27,8,26,2,27,1,28,2,1,193,}, + {1,62,9,1,28,9,29,3,26,3,27,4,26,12,29,3,28,7,29,3,26,5,27,5,29,1,12,1,1,35,12,1,28,47,26,4,29,1,28,6,29,1,27,1,6,3,8,59,16,92,8,1,9,2,29,1,27,7,29,1,27,2,29,1,28,1,1,193,}, + {1,63,28,9,26,4,27,3,26,9,29,2,28,14,29,2,26,7,27,5,29,1,1,35,27,1,28,3,26,1,28,21,29,2,28,20,29,1,26,4,28,7,27,1,6,2,8,60,16,92,8,1,9,2,27,8,29,1,27,2,28,2,1,193,}, + {1,63,28,8,29,1,26,2,27,4,26,8,29,1,28,1,26,3,29,1,28,10,29,2,26,9,27,5,28,1,1,34,11,1,28,25,29,2,28,23,26,4,29,1,28,5,26,1,6,2,8,60,16,92,8,1,9,1,27,9,29,1,27,2,28,2,1,193,}, + {1,63,29,1,28,6,29,1,26,2,27,3,26,5,29,3,28,16,29,3,26,10,27,5,28,1,1,34,12,1,28,50,26,4,28,6,29,1,6,3,8,59,16,92,7,1,9,1,27,8,26,1,29,1,27,2,29,1,28,1,1,193,}, + {1,63,12,1,28,6,26,2,27,3,26,2,29,3,28,19,26,14,27,5,29,1,11,1,1,33,11,1,28,50,26,4,29,2,28,4,29,1,27,1,6,2,8,59,16,92,6,1,9,1,27,8,29,1,26,1,27,2,29,1,28,1,1,193,}, + {1,64,28,5,26,1,27,4,26,1,29,1,28,19,29,1,26,3,29,2,26,11,29,1,27,6,9,1,1,33,11,1,28,51,26,4,29,2,28,4,27,1,6,1,8,1,6,1,8,58,16,91,8,1,7,1,9,1,27,8,29,1,27,2,29,2,28,1,27,1,1,192,}, + {1,64,29,1,28,4,26,1,27,1,26,3,28,17,29,2,26,3,29,1,26,2,29,1,26,13,29,1,27,5,29,1,1,33,12,1,28,51,26,5,29,1,28,4,27,1,6,3,8,58,16,91,8,1,7,1,10,1,27,8,29,1,27,2,29,2,28,1,27,1,1,192,}, + {1,64,9,1,28,4,26,3,28,18,29,1,26,5,29,1,26,9,29,1,26,6,27,7,1,33,27,1,28,3,29,1,28,48,29,1,26,4,29,1,28,3,29,1,6,3,8,58,16,90,8,1,6,1,8,1,10,1,27,7,29,2,27,2,29,3,28,1,1,192,}, + {1,65,28,22,26,1,29,3,26,1,29,1,26,1,29,1,26,1,29,1,26,1,29,6,26,1,29,3,26,6,27,6,1,33,28,54,26,5,28,3,29,1,6,3,8,57,16,91,8,1,6,1,8,1,27,8,28,1,27,3,29,1,27,1,28,2,1,192,}, + {1,65,28,19,29,1,28,11,29,7,28,1,29,4,26,7,27,5,1,33,28,54,26,5,29,1,28,3,27,1,29,1,6,1,8,56,16,92,8,1,6,1,9,1,27,8,29,1,27,3,29,1,27,2,29,1,1,192,}, + {1,66,28,38,29,4,26,5,27,1,26,1,27,5,1,33,28,54,26,5,29,1,28,3,29,2,6,2,8,55,16,92,8,1,6,1,10,1,27,5,9,1,27,1,26,1,27,3,26,1,27,3,28,1,1,192,}, + {1,66,27,1,28,38,29,2,26,8,27,4,29,1,1,32,11,1,28,55,26,5,28,3,29,2,6,2,8,55,16,92,6,2,10,1,27,4,9,1,27,2,29,1,27,3,29,1,27,3,28,1,1,192,}, + {1,67,28,8,29,2,26,1,28,27,29,3,26,7,27,4,12,1,1,32,12,1,28,55,26,1,29,1,26,3,29,1,28,3,29,1,6,2,8,55,16,92,6,2,27,1,9,1,27,3,9,1,27,2,29,1,27,3,29,1,27,4,11,1,1,191,}, + {1,68,28,2,29,1,28,1,29,2,26,3,29,6,26,2,29,3,28,1,29,1,26,3,29,3,28,3,29,5,26,5,27,3,26,1,27,1,26,1,27,3,29,1,1,33,27,1,28,2,29,1,28,54,26,5,28,2,29,1,6,4,8,49,16,3,8,1,16,92,6,1,7,1,27,4,9,1,27,2,29,1,27,8,29,1,27,1,1,191,}, + {1,68,11,1,28,1,27,7,26,21,29,1,26,9,27,5,26,1,27,4,9,1,1,33,27,1,28,56,29,1,26,5,28,3,6,2,8,2,6,2,8,47,16,95,8,1,6,1,10,1,27,1,9,1,27,1,9,2,27,11,29,1,28,1,1,191,}, + {1,69,10,1,29,1,27,6,9,1,27,18,26,2,29,1,26,1,27,1,26,2,27,13,9,1,29,1,1,34,28,2,26,1,28,55,29,1,26,5,28,2,6,5,8,48,16,1,8,2,16,92,8,1,6,1,9,1,27,1,9,4,27,10,29,2,28,1,1,191,}, + {1,70,28,1,29,1,27,8,9,8,27,8,29,1,28,2,26,1,27,12,26,1,27,4,10,1,1,34,28,58,29,1,26,3,27,1,26,2,28,1,27,1,29,1,6,3,8,48,16,95,8,1,6,1,10,1,27,1,9,4,27,9,29,1,27,1,28,2,1,191,}, + {1,71,28,1,29,1,27,9,9,5,27,6,26,1,29,1,28,4,26,1,27,10,26,3,27,3,28,1,1,34,11,1,28,44,29,2,28,12,29,1,26,3,27,1,26,2,28,1,26,1,29,1,6,4,8,46,16,96,8,1,7,1,27,1,9,4,27,12,29,1,28,1,1,191,}, + {1,71,12,1,28,2,26,1,27,1,26,1,27,12,26,2,29,1,28,6,26,1,27,9,26,5,27,3,12,1,1,35,28,43,29,2,26,1,29,1,28,12,29,2,26,1,27,2,26,2,29,1,27,1,6,2,8,1,6,1,8,46,16,96,7,1,8,1,27,1,9,4,27,11,29,2,28,1,1,191,}, + {1,73,28,2,29,1,26,2,27,1,29,1,26,4,29,1,26,3,29,1,28,9,26,1,27,8,26,6,27,2,9,1,1,35,27,1,28,45,29,1,26,2,28,12,29,1,26,1,27,3,26,1,29,1,27,1,6,4,8,47,16,95,7,1,9,1,27,1,9,3,27,13,29,1,28,1,9,1,1,190,}, + {1,72,11,1,1,1,10,1,28,2,29,1,28,18,29,1,26,2,27,6,26,7,27,2,29,1,1,36,27,1,28,45,29,2,28,14,29,1,26,1,27,2,26,3,6,4,8,47,16,94,8,1,6,1,9,1,27,1,9,3,27,13,29,2,27,1,1,190,}, + {1,75,11,1,28,19,29,1,26,1,27,6,26,3,29,1,26,4,27,3,11,1,1,36,27,1,28,53,26,1,28,7,29,1,26,2,27,2,26,2,6,4,8,47,16,94,8,1,6,1,10,1,9,3,27,14,26,2,27,1,1,190,}, + {1,77,28,18,26,2,27,5,26,4,29,1,26,3,27,1,26,1,27,1,11,1,1,37,28,47,29,2,28,5,26,1,28,8,26,2,27,2,26,2,6,4,8,47,16,1,8,2,16,91,8,1,7,1,10,1,9,2,27,16,29,1,28,1,1,190,}, + {1,78,11,1,28,14,29,2,26,3,27,1,26,2,27,1,26,4,29,1,26,2,27,1,26,1,29,1,11,1,1,38,28,48,29,1,28,5,26,1,28,1,29,1,26,1,28,5,26,3,27,2,26,1,27,1,29,1,6,2,8,43,16,1,8,5,16,92,8,1,9,1,10,1,9,1,27,16,29,1,26,1,28,1,1,190,}, + {1,81,29,1,28,2,29,1,28,4,29,2,28,2,26,9,29,1,26,2,27,2,26,1,27,1,26,1,9,1,1,40,28,1,29,1,28,46,26,1,28,10,29,1,26,1,28,2,29,1,26,2,27,4,6,2,8,43,16,2,8,3,16,94,7,1,16,1,9,2,27,17,29,1,28,1,1,190,}, + {1,83,9,1,27,1,28,3,29,3,28,1,29,1,26,1,28,1,26,3,29,1,26,6,27,2,29,1,27,1,12,1,10,1,1,39,11,1,28,48,26,2,28,10,26,2,28,1,29,1,26,3,27,4,6,2,8,41,16,1,8,4,16,94,8,2,12,1,9,1,27,18,29,1,28,1,1,190,}, + {1,87,29,1,28,3,29,2,26,4,27,1,26,1,27,1,26,3,27,1,26,1,28,1,29,1,12,1,11,1,1,41,9,1,28,48,29,1,26,1,29,1,28,10,26,2,29,1,28,1,26,2,27,4,6,2,8,40,16,2,8,4,16,93,8,2,16,1,12,1,9,1,27,19,28,1,9,1,1,189,}, + {1,89,17,1,9,1,28,3,29,1,27,1,26,1,29,1,27,2,28,3,29,1,9,1,11,1,1,44,27,1,28,49,29,1,26,1,28,10,29,2,28,2,29,1,26,2,27,3,7,1,6,1,8,40,16,99,8,1,16,1,17,1,9,1,27,19,29,1,28,1,27,1,1,189,}, + {1,94,9,2,12,3,9,1,12,1,1,49,26,1,29,1,28,48,26,2,28,9,29,1,26,1,28,3,29,1,26,2,27,3,10,1,6,2,8,40,16,97,8,2,16,1,12,1,9,2,27,19,29,1,10,1,1,189,}, + {1,150,28,1,29,1,28,48,26,1,29,1,28,9,29,1,26,2,28,3,26,3,27,3,7,1,6,1,8,2,6,1,8,35,16,1,8,2,16,3,8,1,16,91,8,1,16,3,12,1,9,1,27,19,26,1,27,1,28,1,1,189,}, + {1,150,28,1,29,1,28,59,29,1,26,2,29,1,28,2,29,1,26,2,27,3,10,1,6,1,8,1,6,1,8,3,16,1,8,32,16,1,8,1,16,3,8,2,16,94,12,1,9,1,10,1,27,21,28,1,1,189,}, + {1,150,28,52,29,1,28,8,29,1,26,2,29,1,28,1,29,1,28,1,26,3,27,2,10,1,8,1,6,1,8,4,16,1,8,32,16,1,8,1,16,3,8,2,16,94,12,1,9,1,27,21,29,1,28,1,1,189,}, + {1,150,28,52,29,1,28,8,29,1,26,3,29,2,26,4,27,3,8,1,6,1,8,36,16,101,17,1,12,1,27,22,29,1,28,1,1,189,}, + {1,149,11,1,28,61,29,1,26,3,29,1,28,1,26,1,29,1,26,2,27,3,10,1,8,1,6,2,8,36,16,97,8,1,16,1,12,1,9,1,27,21,26,1,27,1,28,1,1,189,}, + {1,149,27,1,28,60,29,2,26,3,29,1,28,1,26,1,28,1,26,3,27,3,10,1,6,2,8,33,16,1,8,1,16,99,17,1,12,1,10,1,27,22,29,1,28,1,10,1,1,188,}, + {1,149,10,1,28,60,29,2,26,3,29,1,26,2,29,3,26,2,27,2,10,1,8,1,6,1,8,32,16,102,12,1,9,1,27,24,29,1,27,1,1,188,}, + {1,149,29,1,28,60,29,2,26,4,29,1,28,1,26,1,28,1,26,3,27,3,9,1,7,1,6,1,8,31,16,99,8,2,16,1,12,1,27,27,1,188,}, + {1,149,28,63,29,1,26,5,29,2,26,4,27,2,10,1,7,1,6,1,8,33,16,97,8,1,9,1,12,1,9,1,27,26,28,1,1,188,}, + {1,149,28,56,29,1,28,5,29,2,26,7,29,1,26,3,27,3,10,1,7,1,6,1,8,27,16,3,8,1,16,98,8,1,16,1,9,1,10,1,27,26,28,1,1,188,}, + {1,149,28,56,29,1,28,4,29,5,26,10,27,2,10,1,8,1,6,2,8,26,16,101,8,1,16,1,12,1,10,1,27,27,29,1,1,188,}, + {1,149,28,56,26,1,29,1,28,3,26,1,29,2,26,1,29,1,26,11,27,2,10,1,6,2,8,26,16,101,8,1,16,1,9,1,27,28,28,1,1,188,}, + {1,149,28,56,29,2,28,4,29,1,26,8,29,2,26,4,27,2,10,1,7,1,6,1,8,26,16,100,8,1,9,2,10,1,27,28,28,1,1,188,}, + {1,148,12,1,28,57,29,1,28,3,29,2,26,4,29,1,26,2,29,4,26,3,27,3,10,1,6,2,8,25,16,100,8,1,16,1,9,1,27,29,28,1,1,188,}, + {1,148,27,1,28,61,29,2,26,2,29,10,26,3,27,3,7,1,6,2,8,22,16,101,8,1,9,2,27,30,28,1,1,188,}, + {1,148,10,1,28,61,26,4,29,9,28,1,26,2,27,4,10,1,7,1,6,2,8,21,16,100,8,2,16,1,10,1,27,30,29,1,12,1,1,187,}, + {1,148,29,1,28,59,29,1,26,1,29,1,26,4,29,8,26,3,27,6,7,2,6,1,8,21,16,99,8,1,9,2,27,33,1,187,}, + {1,148,28,61,29,1,26,5,29,8,26,3,27,7,7,1,6,2,8,17,16,102,9,2,27,33,9,1,1,187,}, + {1,148,28,61,29,1,26,5,29,3,26,8,27,5,26,1,27,2,7,1,6,2,8,13,16,103,8,1,9,2,27,34,9,1,1,187,}, + {1,148,28,61,29,1,26,5,29,3,26,8,27,4,26,3,27,1,10,1,7,2,8,14,16,1,8,1,16,101,9,1,27,35,28,1,1,187,}, + {1,148,28,61,29,1,26,6,29,1,26,9,27,3,26,4,27,3,8,1,6,2,8,15,16,98,9,2,10,1,27,35,29,1,1,187,}, + {1,148,28,61,29,1,26,2,29,1,26,3,29,1,26,14,29,1,26,3,27,1,10,1,8,1,7,1,6,1,8,11,16,1,8,2,16,98,9,1,27,37,29,1,1,187,}, + {1,148,28,61,29,1,26,2,29,3,26,1,29,2,26,15,27,4,10,1,8,1,6,1,8,12,16,98,9,2,27,39,1,187,}, + {1,147,27,1,28,59,29,1,28,1,29,1,26,2,29,6,26,13,27,5,26,1,27,1,10,1,8,1,6,1,8,11,16,98,9,1,27,39,28,1,1,187,}, + {1,147,10,1,28,59,29,2,26,4,29,2,26,16,27,8,10,1,7,2,6,1,8,7,16,98,12,1,10,1,27,40,28,1,1,187,}, + {1,147,10,1,28,59,29,2,26,21,27,11,8,2,6,2,8,4,16,98,12,1,27,42,28,1,1,187,}, + {1,147,29,1,28,55,29,6,26,20,27,13,8,1,7,1,6,1,8,1,16,2,8,1,16,96,12,1,9,1,27,42,29,1,28,1,1,187,}, + {1,147,28,56,29,1,26,2,29,1,28,1,29,1,26,20,27,14,8,4,16,98,9,1,27,44,28,1,27,1,1,186,}, + {1,70,11,1,27,1,28,5,29,1,9,1,1,68,28,53,29,1,28,2,29,1,26,2,29,1,28,1,29,1,26,19,27,16,8,1,7,1,8,3,16,94,12,1,10,1,27,45,29,1,27,1,1,186,}, + {1,70,28,3,29,3,28,5,9,1,1,65,28,51,29,1,26,2,29,1,28,2,29,1,26,1,29,2,26,7,29,1,26,12,27,17,10,1,8,4,16,92,9,1,27,46,29,2,27,1,1,186,}, + {1,69,12,1,28,4,29,1,26,1,28,4,29,1,28,3,29,1,12,1,1,61,28,51,26,4,29,5,26,8,29,1,26,11,27,20,8,3,16,90,9,2,27,47,26,1,29,1,10,1,1,186,}, + {1,69,9,1,28,3,26,2,29,2,28,4,29,2,26,1,29,1,28,1,29,1,27,1,11,1,1,58,28,51,29,1,26,2,29,5,26,8,29,2,26,10,27,22,8,3,16,88,9,1,10,1,27,48,26,1,29,1,9,1,1,186,}, + {1,69,27,1,28,3,29,1,26,2,29,2,28,4,29,6,28,4,12,1,1,1,11,1,1,52,28,48,26,1,29,2,26,3,29,1,28,1,29,4,26,6,29,1,26,12,27,23,10,1,9,1,8,2,16,82,8,1,9,2,10,1,27,50,26,1,28,2,1,186,}, + {1,69,28,4,29,1,26,4,29,2,28,1,29,2,26,2,29,2,26,1,28,1,27,1,26,1,29,1,28,2,29,1,10,1,9,1,1,49,11,1,28,50,29,3,26,5,29,1,26,19,27,25,10,1,9,1,16,80,8,1,9,1,16,2,10,1,27,53,29,1,28,1,1,186,}, + {1,69,27,1,28,3,29,2,26,3,29,1,28,2,29,1,26,3,29,2,26,2,29,1,26,2,29,1,26,2,29,1,28,3,10,1,12,1,1,45,27,1,28,50,29,2,26,6,29,1,26,19,27,27,10,1,9,1,16,77,9,4,27,54,29,2,28,1,1,186,}, + {1,69,10,1,28,4,29,2,26,2,29,1,28,2,29,1,26,3,29,1,26,4,29,1,26,3,29,1,26,3,27,1,26,1,28,3,9,1,12,1,11,1,1,40,27,1,28,45,26,3,29,1,26,1,29,1,26,4,29,1,26,20,27,31,10,1,9,1,16,71,8,1,16,3,9,1,10,1,27,57,29,1,28,1,1,186,}, + {1,69,9,1,28,4,29,2,26,2,29,1,28,2,29,2,26,5,28,1,26,1,29,1,26,3,29,1,26,7,27,2,29,1,28,3,27,2,12,1,1,35,10,1,28,45,29,3,26,1,29,3,26,2,29,2,26,20,27,34,10,1,9,1,16,66,8,1,9,4,27,60,29,2,1,186,}, + {1,69,11,1,28,6,29,2,28,2,29,2,28,1,29,1,26,8,29,2,26,8,27,1,26,2,27,1,26,1,27,2,26,1,28,2,29,1,28,1,27,2,1,1,11,1,1,28,9,1,28,46,26,2,29,4,26,1,29,4,26,19,27,37,9,1,16,65,9,1,27,63,29,2,1,186,}, + {1,70,28,10,29,8,26,1,28,1,26,2,29,1,26,2,29,1,26,7,27,1,26,3,27,1,26,1,27,3,26,1,27,2,26,1,29,1,28,1,29,1,28,1,29,1,10,1,27,1,9,1,1,1,11,2,1,19,27,1,28,44,29,2,26,3,29,2,26,2,29,3,26,19,27,41,10,1,9,1,16,56,9,3,27,66,28,2,1,186,}, + {1,70,28,7,29,3,26,3,29,2,28,1,29,3,26,19,27,16,26,1,28,3,29,2,28,2,27,1,9,1,12,1,9,4,10,1,9,3,10,1,28,1,29,1,28,45,29,1,28,1,29,7,26,22,27,44,10,1,9,1,16,52,10,2,27,67,29,2,28,1,1,186,}, + {1,70,28,7,29,1,28,1,29,4,28,1,29,3,26,1,29,1,26,17,27,37,10,1,9,1,10,1,29,1,28,43,29,1,26,1,29,2,26,2,29,2,26,22,27,50,10,2,9,6,16,35,9,3,10,1,27,73,28,2,1,186,}, + {1,70,27,1,28,6,29,1,28,3,29,1,26,1,29,4,26,1,29,1,26,18,27,38,9,1,28,41,29,3,28,1,29,3,26,2,29,3,26,19,27,56,10,3,9,4,16,29,9,2,10,2,27,76,28,2,1,186,}, + {1,70,9,1,28,11,29,2,28,1,29,1,26,1,29,2,26,18,27,39,28,41,26,2,29,1,28,2,29,1,26,3,29,2,26,2,29,1,26,16,27,63,10,3,9,5,8,7,9,1,8,3,9,6,10,4,27,80,26,1,28,2,1,186,}, + {1,71,28,12,29,1,28,2,29,1,28,1,29,1,26,18,27,39,28,41,29,5,26,20,27,74,10,2,9,12,10,2,27,87,29,1,28,2,1,186,}, + {1,71,28,12,29,1,28,1,29,2,28,1,29,1,26,18,27,39,28,40,29,3,28,1,29,1,26,19,27,179,29,1,28,2,1,186,}, + {1,71,9,1,28,13,29,2,28,1,29,1,26,17,27,40,28,39,29,3,28,2,29,3,26,4,29,1,26,11,27,180,29,1,28,2,1,186,}, + {1,72,28,8,29,2,28,3,29,7,26,14,27,40,28,40,29,3,28,2,29,1,26,17,27,180,29,1,28,2,1,186,}, + {1,72,28,9,29,1,28,5,29,4,26,15,27,2,26,1,27,37,28,36,29,1,28,4,29,1,26,1,29,3,26,17,27,179,26,1,29,1,28,2,1,186,}, + {1,72,28,10,29,1,28,3,29,6,26,15,27,2,26,2,27,35,28,37,29,1,28,2,29,2,26,1,29,1,26,18,27,182,28,2,1,186,}, + {1,72,12,1,28,3,29,1,28,2,29,3,28,5,29,4,26,16,27,2,26,2,27,35,28,37,29,4,26,2,29,1,26,1,29,1,26,16,27,181,29,1,28,2,1,186,}, + {1,72,9,1,28,6,29,2,28,9,29,4,26,13,27,2,26,2,27,35,29,1,28,37,29,3,26,3,29,2,26,16,27,181,29,1,28,2,1,186,}, + {1,73,27,1,28,3,29,1,28,11,29,1,26,2,29,3,26,12,27,39,29,1,28,39,29,1,26,21,27,181,29,1,28,2,1,186,}, + {1,73,12,1,28,13,26,1,29,2,26,18,27,38,26,1,28,34,29,1,28,4,29,1,26,5,29,1,26,15,27,181,29,1,28,2,1,186,}, + {1,74,28,1,29,1,28,10,29,4,26,19,27,38,28,33,29,1,26,2,29,3,26,22,27,180,26,1,29,1,28,2,1,186,}, + {1,74,27,1,28,13,29,3,26,3,29,2,26,13,27,38,28,31,29,3,26,2,29,3,26,22,27,182,28,2,1,186,}, + {1,75,28,13,26,1,29,3,26,3,29,1,26,14,27,37,28,31,29,3,26,2,29,3,26,22,27,181,28,1,29,2,1,186,}, + {1,75,28,12,29,2,26,1,29,1,28,1,29,4,26,14,27,1,26,1,27,35,28,37,29,2,26,16,27,2,26,3,27,181,26,1,29,1,28,1,29,1,1,186,}, + {1,75,11,1,28,12,29,3,28,1,29,2,26,1,29,1,26,14,27,1,26,1,27,35,28,36,29,3,26,16,27,2,26,2,27,183,29,1,28,2,1,186,}, + {1,76,29,1,28,11,29,7,26,15,27,1,26,1,27,35,28,30,29,1,26,2,29,3,26,16,27,190,29,1,28,2,1,186,}, + {1,76,12,1,28,12,29,4,26,17,27,1,26,1,27,35,28,30,29,1,26,1,29,3,26,17,27,189,26,1,29,1,28,2,1,186,}, + {1,77,28,10,29,1,28,1,29,3,26,18,27,1,26,1,27,35,28,30,29,3,28,2,29,1,26,16,27,190,29,1,28,2,1,186,}, + {1,77,11,1,28,9,29,4,26,8,29,1,26,10,27,1,26,1,27,35,28,3,29,1,28,25,26,3,29,3,26,17,27,1,26,1,27,188,29,1,28,1,27,1,1,186,}, + {1,78,28,10,29,3,26,8,29,1,26,10,27,37,28,3,29,1,28,25,26,1,29,4,26,12,27,196,29,1,28,1,27,1,1,186,}, + {1,78,9,1,28,9,29,2,26,4,29,2,26,3,29,1,26,10,27,37,29,1,28,32,29,1,26,13,27,194,29,2,28,1,27,1,1,186,}, + {1,79,28,9,29,1,26,7,29,1,26,14,27,37,28,27,29,3,26,1,29,1,26,1,29,1,26,11,27,195,29,2,28,1,1,187,}, + {1,79,17,1,28,8,29,5,26,18,27,37,28,27,29,2,26,16,27,195,29,2,28,1,1,187,}, + {1,80,27,1,28,5,29,1,28,1,29,8,26,14,27,38,28,27,29,1,26,4,29,2,26,13,27,194,28,2,1,187,}, + {1,81,28,6,29,1,28,1,29,1,28,2,29,5,26,14,27,37,28,27,29,3,26,2,29,2,26,15,27,191,29,2,28,1,1,187,}, + {1,81,27,1,28,10,29,5,26,14,27,37,28,24,29,6,26,19,27,192,28,1,27,1,1,187,}, + {1,82,28,9,29,4,26,18,27,35,28,24,29,1,26,1,29,1,28,1,29,1,26,22,27,188,26,1,29,2,28,1,1,187,}, + {1,82,28,9,29,2,26,1,29,1,26,15,27,1,26,2,27,34,26,1,28,1,29,1,28,22,29,1,26,2,29,2,26,22,27,190,29,2,1,187,}, + {1,83,27,1,28,8,29,1,26,16,27,1,26,2,27,35,26,1,28,1,29,1,28,20,29,6,26,24,27,188,29,1,28,1,9,1,1,187,}, + {1,84,28,6,29,1,28,2,26,1,29,1,26,1,29,2,26,12,27,38,28,23,29,8,26,2,29,1,26,21,27,184,26,1,29,1,28,1,27,1,1,187,}, + {1,84,11,1,28,6,29,2,26,1,28,1,29,1,26,15,27,36,26,1,28,24,29,4,26,1,29,2,26,2,29,1,26,21,27,184,29,2,28,1,27,1,1,187,}, + {1,85,6,1,28,8,26,18,27,35,26,1,28,24,29,4,26,1,29,2,26,2,29,1,26,23,27,183,29,1,28,1,1,188,}, + {1,86,28,2,29,1,28,2,26,2,29,1,28,2,26,17,27,34,26,1,28,24,29,4,26,30,27,181,26,1,29,1,28,1,1,188,}, + {1,85,11,2,28,7,29,1,26,19,27,33,26,1,28,23,29,5,26,31,27,180,29,2,28,1,1,188,}, + {1,87,11,1,28,5,29,3,26,19,27,32,26,1,28,23,29,1,26,2,29,2,26,4,29,1,26,27,27,179,29,1,28,1,29,1,1,188,}, + {1,88,9,1,28,2,29,1,28,1,29,3,26,19,27,32,26,1,28,22,29,1,26,3,29,2,26,4,29,1,26,27,27,178,29,1,26,1,28,2,1,188,}, + {1,89,28,5,29,1,28,1,29,1,26,17,27,33,26,1,28,22,29,1,26,3,29,2,26,3,29,2,26,26,27,1,26,1,27,178,29,1,28,2,1,188,}, + {1,90,28,5,29,1,28,1,29,1,26,2,29,2,26,14,27,31,26,1,28,23,29,1,26,2,29,2,26,30,27,181,29,1,28,1,29,1,1,188,}, + {1,90,11,1,28,1,29,2,28,1,29,1,28,1,29,5,26,14,27,31,26,1,28,23,29,1,26,2,29,3,26,29,27,2,26,3,27,175,29,2,28,1,10,1,1,188,}, + {1,91,11,1,28,5,29,4,26,16,27,21,26,2,27,7,26,1,28,23,29,1,26,2,29,4,26,28,27,1,26,3,27,177,29,1,28,1,27,1,1,188,}, + {1,92,9,1,28,3,29,4,26,17,27,30,26,1,28,23,29,1,26,3,29,3,26,32,27,176,26,1,28,2,27,1,1,188,}, + {1,93,9,1,28,5,29,1,26,18,27,29,26,1,28,22,29,3,26,4,29,2,26,31,27,174,26,1,27,1,26,1,28,2,10,1,1,188,}, + {1,94,27,1,28,4,29,4,26,16,27,1,26,1,27,26,26,1,28,22,29,3,26,4,29,2,26,3,29,2,26,26,27,176,29,2,28,1,1,189,}, + {1,95,9,1,28,2,29,2,28,1,29,3,26,17,27,26,26,1,28,22,29,1,28,1,29,1,26,4,29,2,26,4,29,1,26,26,27,176,29,1,28,2,1,189,}, + {1,96,28,2,29,1,28,2,29,3,26,18,27,1,26,2,27,22,26,1,28,21,29,2,28,1,29,1,26,4,29,2,26,31,27,177,28,2,1,189,}, + {1,97,28,2,29,2,28,1,29,2,26,5,29,1,26,12,27,2,26,1,27,10,26,1,27,10,26,2,28,20,29,1,28,1,29,5,26,1,29,3,26,5,29,1,26,24,27,177,29,1,28,2,1,189,}, + {1,98,28,2,29,1,28,1,29,4,26,2,29,1,26,14,27,21,26,4,28,20,29,1,28,1,29,5,26,2,29,2,26,30,27,177,29,2,28,1,1,189,}, + {1,99,28,2,29,1,28,1,29,1,26,2,29,1,26,17,27,12,26,1,27,3,26,3,27,1,26,3,29,1,28,22,29,2,26,1,29,1,26,3,29,2,26,30,27,177,29,2,28,1,1,189,}, + {1,100,28,2,29,2,28,1,29,1,26,3,29,2,26,14,27,2,26,1,27,6,26,13,29,1,28,22,29,2,26,5,29,3,26,28,27,178,29,1,28,2,1,189,}, + {1,101,29,1,28,2,29,1,28,1,26,4,29,1,26,36,28,23,29,3,26,4,29,3,26,2,29,1,26,25,27,178,29,2,28,1,1,189,}, + {1,102,10,1,28,2,29,3,26,39,28,22,29,5,26,1,29,1,26,1,29,3,26,1,29,2,26,25,27,178,29,1,28,1,27,1,1,189,}, + {1,103,12,1,28,2,29,1,28,1,29,2,26,37,28,21,29,1,26,2,29,5,26,1,29,2,26,29,27,178,28,2,27,1,1,189,}, + {1,104,9,1,28,1,29,4,26,37,28,3,29,1,28,17,26,3,29,7,26,30,27,178,29,1,28,1,6,1,1,189,}, + {1,105,9,1,28,1,29,6,26,34,28,21,29,1,26,2,29,10,26,5,29,1,26,21,27,177,26,1,29,1,28,1,17,1,1,189,}, + {1,106,12,1,28,2,29,1,26,1,29,1,27,1,29,1,26,1,27,1,26,31,28,22,26,2,29,3,26,2,29,1,26,2,29,2,26,27,27,177,29,2,28,1,1,190,}, + {1,107,11,1,28,3,29,1,28,1,26,34,28,22,29,1,26,1,29,4,26,1,29,5,26,26,27,178,26,1,28,2,1,190,}, + {1,109,28,2,29,3,26,4,29,1,26,28,28,22,29,1,26,1,29,1,28,2,29,2,26,1,29,4,26,3,29,1,26,22,27,179,28,2,1,190,}, + {1,110,27,1,28,1,29,4,26,3,29,1,26,27,28,19,29,2,28,1,29,1,26,1,29,5,26,2,29,2,26,4,29,3,26,21,27,177,29,1,28,2,1,190,}, + {1,111,17,1,28,1,29,2,26,1,28,1,29,1,26,29,28,20,29,1,28,1,29,14,26,3,29,2,26,20,27,177,29,2,28,1,1,190,}, + {1,112,11,1,28,1,29,1,28,1,29,1,27,1,29,2,26,27,28,26,29,3,28,4,29,4,26,24,27,177,29,1,28,2,1,190,}, + {1,114,28,2,29,3,26,28,28,26,29,2,28,4,29,6,26,22,27,177,26,1,29,1,28,1,27,1,1,190,}, + {1,115,10,1,28,1,29,4,26,26,28,13,29,3,28,11,29,10,26,23,27,178,29,1,28,1,27,1,1,190,}, + {1,116,11,1,28,2,29,2,26,1,27,1,26,4,27,1,26,19,29,1,28,13,29,2,28,2,29,1,26,1,29,1,26,8,29,1,26,30,27,177,26,1,29,1,28,1,27,1,1,190,}, + {1,118,29,1,28,1,29,3,26,1,29,1,26,22,29,1,28,17,29,1,26,10,29,1,26,5,29,2,26,1,29,1,26,20,27,178,29,2,28,1,1,191,}, + {1,119,11,1,28,2,29,2,27,1,26,22,29,1,28,23,29,2,28,3,29,3,26,2,29,3,26,1,29,2,26,4,29,1,26,12,27,180,26,1,28,2,1,191,}, + {1,121,27,1,28,1,29,3,27,1,26,20,29,1,28,6,29,1,28,17,29,6,26,1,29,1,26,5,29,2,26,4,29,1,26,12,27,1,26,1,27,178,28,1,29,1,28,1,1,191,}, + {1,122,9,1,28,1,29,2,27,1,29,1,26,19,29,1,28,4,29,2,28,14,29,5,26,3,29,5,26,3,29,3,26,19,27,54,26,1,27,124,28,1,29,1,1,191,}, + {1,124,28,2,27,2,26,13,27,1,26,5,29,1,28,19,29,8,26,1,29,2,28,1,29,8,26,19,27,54,28,1,10,1,29,1,28,1,27,56,26,1,27,63,28,3,1,191,}, + {1,124,12,1,9,1,28,1,29,1,26,9,27,2,26,2,27,1,26,4,27,1,26,1,28,16,29,1,28,3,29,10,28,1,29,2,28,3,29,3,26,19,27,52,29,1,28,1,11,1,12,1,11,2,28,2,27,54,26,1,27,63,29,1,28,1,29,1,1,191,}, + {1,127,6,1,28,1,26,2,27,3,26,1,27,4,26,1,27,1,26,1,27,1,26,5,28,27,29,1,28,3,29,2,26,4,29,1,26,5,29,1,26,13,27,52,29,2,1,6,11,1,29,2,27,41,26,3,27,3,26,3,27,66,29,1,28,1,10,1,1,191,}, + {1,128,11,1,28,1,26,1,27,1,26,1,27,3,26,5,27,1,26,6,28,19,29,1,28,7,26,1,29,1,28,2,29,1,26,5,29,1,26,21,27,49,28,1,27,1,1,9,9,1,28,1,27,7,9,2,27,105,26,1,29,1,28,1,6,1,1,191,}, + {1,130,10,1,28,1,29,1,27,2,29,1,26,1,27,2,26,1,27,1,26,1,27,1,26,5,28,27,29,4,26,6,29,1,26,16,27,2,26,2,27,49,29,1,11,1,1,12,29,1,27,4,9,1,27,108,29,1,28,2,12,1,1,191,}, + {1,130,11,2,28,2,27,3,26,2,27,1,26,3,27,3,26,2,28,24,29,1,28,4,29,2,26,6,29,1,26,16,27,2,26,2,27,48,28,1,17,1,1,14,9,1,28,1,27,4,9,1,27,106,29,2,28,1,1,192,}, + {1,133,11,1,28,1,29,1,27,1,26,1,27,4,26,2,27,1,26,3,28,30,29,1,26,5,29,2,26,17,27,1,26,1,27,48,28,1,11,1,1,16,11,1,28,1,27,110,29,2,28,1,1,192,}, + {1,135,9,1,28,1,29,1,26,1,27,1,26,1,29,1,27,2,26,4,28,30,29,1,26,5,29,2,26,16,27,2,26,1,27,47,28,1,17,1,1,18,12,1,29,1,27,109,29,1,28,2,1,192,}, + {1,135,11,1,1,1,9,1,28,1,29,1,27,2,29,1,26,5,28,29,29,2,26,2,29,5,26,19,27,46,28,1,12,1,11,1,1,20,29,1,27,3,9,1,27,36,26,5,27,2,26,8,27,53,29,2,28,1,1,192,}, + {1,139,29,1,28,1,29,1,27,2,26,4,28,29,29,2,26,2,29,5,26,19,27,45,28,1,17,1,1,23,28,1,27,38,26,6,27,1,26,9,27,53,29,3,1,192,}, + {1,141,29,1,28,1,29,1,27,2,26,2,28,28,29,2,26,3,29,2,26,2,29,3,26,16,27,45,28,1,17,1,11,1,1,23,10,1,29,1,27,35,26,12,27,1,26,7,27,51,29,1,28,1,27,1,1,192,}, + {1,143,29,1,28,1,27,2,26,1,28,27,29,3,26,2,29,3,26,1,29,4,26,15,27,43,9,1,27,1,29,1,11,2,1,26,29,1,10,1,27,33,26,12,27,1,26,6,27,52,29,3,1,192,}, + {1,145,29,1,28,1,29,1,28,14,29,1,28,9,26,4,29,2,26,2,29,3,26,1,29,3,26,15,27,46,11,1,1,28,11,1,28,1,27,22,26,1,27,9,26,17,27,55,29,1,28,1,10,1,1,192,}, + {1,147,29,1,28,23,29,1,26,2,29,1,26,2,29,3,26,1,29,4,26,17,27,44,29,1,27,1,1,30,11,1,28,1,27,31,26,17,27,55,29,1,28,1,1,193,}, + {1,148,28,23,29,1,28,3,29,1,26,1,29,1,28,1,29,1,26,2,29,1,28,1,29,1,26,18,27,43,10,1,1,32,9,1,27,26,26,1,27,4,26,8,27,1,26,1,27,2,26,4,27,55,26,1,29,1,28,1,1,193,}, + {1,148,28,22,29,2,28,3,29,1,26,1,29,1,28,1,29,1,26,2,29,1,28,1,29,1,26,18,27,42,28,1,1,34,29,1,27,25,26,3,27,3,26,6,27,2,26,1,27,3,26,2,27,56,29,2,28,1,1,193,}, + {1,148,10,1,28,21,29,5,26,2,29,1,28,1,29,1,26,1,29,3,26,19,27,2,26,1,27,38,28,1,11,1,1,34,11,1,28,1,9,1,27,20,26,3,27,2,26,3,27,1,26,6,27,2,26,1,27,3,26,2,27,56,29,2,28,1,1,193,}, + {1,148,10,1,28,22,29,1,26,4,29,8,26,18,27,3,26,2,27,36,28,1,1,37,17,1,29,1,27,18,26,5,27,3,26,9,27,6,26,2,27,56,29,2,27,1,1,193,}, + {1,148,12,1,28,23,29,1,26,1,29,1,26,1,29,2,28,1,29,5,26,21,27,38,9,1,1,37,12,1,27,20,26,1,27,1,26,5,27,1,26,1,27,1,26,12,27,4,26,1,27,54,28,1,10,1,1,193,}, + {1,149,28,19,29,1,28,3,29,3,26,1,29,2,28,1,29,5,26,19,27,39,10,1,1,39,11,1,28,1,27,20,26,20,27,4,26,1,27,52,29,2,28,1,1,194,}, + {1,149,28,14,29,2,28,3,29,1,28,3,29,1,26,2,29,3,28,1,29,5,26,19,27,38,28,1,1,41,27,16,26,1,27,1,26,1,27,2,26,20,27,58,29,1,28,1,1,194,}, + {1,149,28,13,29,7,28,3,29,1,26,1,29,4,28,1,29,4,26,20,27,4,26,1,27,32,28,1,11,2,1,41,29,1,27,16,26,1,27,1,26,21,27,57,26,1,27,1,28,1,1,194,}, + {1,149,27,1,28,12,29,2,26,2,29,4,28,1,29,7,28,1,29,4,26,20,27,4,26,1,27,32,11,2,1,41,11,1,12,1,29,1,27,16,26,22,27,58,29,1,27,1,11,1,1,193,}, + {1,149,27,1,28,13,29,15,28,1,29,3,26,2,29,1,26,18,27,36,28,1,1,45,29,1,27,16,26,22,27,58,28,1,6,1,11,1,1,193,}, + {1,150,28,15,29,14,26,1,29,2,26,2,29,2,26,14,27,1,26,3,27,34,28,1,1,46,11,1,28,1,27,15,26,22,27,57,26,1,28,1,1,195,}, + {1,150,28,15,29,14,26,1,29,2,26,2,29,1,26,15,27,2,26,1,27,34,29,1,27,1,1,47,28,1,27,14,26,23,27,57,29,1,28,1,1,195,}, + {1,150,27,1,28,14,29,1,26,1,29,1,28,4,29,5,26,2,29,1,26,4,29,2,26,14,27,37,28,1,1,49,29,1,27,16,26,21,27,3,26,1,27,52,29,1,28,1,1,195,}, + {1,151,28,14,29,3,28,4,29,4,26,3,29,1,26,1,29,2,26,1,29,1,26,15,27,36,28,1,1,50,29,1,27,16,26,21,27,3,26,1,27,52,29,1,6,1,1,195,}, + {1,151,28,14,29,1,28,3,29,7,26,5,29,2,26,4,29,1,26,10,27,39,1,50,12,1,29,1,27,13,26,1,27,1,26,20,27,57,28,1,6,1,1,195,}, + {1,151,28,17,29,8,26,5,29,2,26,14,27,38,29,1,11,1,1,51,28,1,27,13,26,2,27,3,26,17,27,4,26,1,27,51,29,1,28,1,11,1,1,195,}, + {1,151,28,17,29,3,26,1,29,4,26,5,29,3,26,13,27,37,28,1,12,1,1,52,10,1,29,1,27,11,26,25,27,2,26,1,27,52,28,1,1,196,}, + {1,151,9,1,28,16,29,9,26,4,29,2,26,15,27,33,9,2,27,1,28,1,1,54,28,1,27,13,26,1,27,1,26,21,27,2,26,1,27,50,29,1,27,1,28,1,1,196,}, + {1,151,10,1,28,4,29,2,28,9,29,1,28,2,29,2,28,2,29,3,26,5,29,1,26,15,27,36,9,1,1,54,29,1,27,13,26,12,27,2,26,10,27,1,26,1,27,51,29,2,1,196,}, + {1,151,27,1,28,15,29,1,28,2,29,1,28,3,29,3,26,5,29,1,26,13,27,37,6,1,1,55,9,1,29,1,27,12,26,12,27,3,26,9,27,1,26,1,27,51,28,1,9,1,1,196,}, + {1,151,10,1,28,15,29,2,28,1,29,2,26,1,29,4,28,1,29,5,26,12,27,33,9,1,27,3,29,1,11,1,1,56,28,1,27,12,26,1,27,1,26,10,27,4,26,10,27,51,28,1,1,197,}, + {1,151,11,1,28,16,29,15,26,13,27,31,9,2,27,3,29,1,1,57,28,1,27,15,26,25,27,49,28,1,1,197,}, + {1,152,28,5,29,1,28,10,29,1,28,2,29,4,26,1,29,7,26,12,27,31,9,3,27,4,1,57,9,1,29,1,27,14,26,22,27,1,26,2,27,48,29,1,27,1,1,197,}, + {1,152,28,6,29,1,28,1,29,1,28,7,29,1,28,3,29,3,26,1,29,6,26,13,27,30,9,2,27,5,11,1,1,57,11,1,28,1,27,16,26,24,27,47,28,1,11,1,1,197,}, + {1,152,28,2,29,1,28,1,29,1,28,3,29,2,28,3,29,5,28,1,29,4,26,1,29,5,26,13,27,31,9,3,27,3,29,1,1,59,29,1,27,17,26,23,27,47,28,1,1,198,}, + {1,152,27,1,28,3,29,1,28,1,29,1,28,1,29,2,28,3,29,2,28,1,29,7,26,1,29,1,26,2,29,2,26,11,27,31,9,4,27,3,9,1,28,1,1,59,10,1,27,7,26,1,27,3,26,2,27,4,26,25,27,44,29,1,28,1,1,198,}, + {1,152,12,1,28,1,29,1,28,5,26,1,29,2,28,2,29,2,28,1,29,3,26,2,29,1,26,2,29,1,26,2,29,2,26,3,29,1,26,7,27,31,9,3,27,6,12,1,1,59,28,1,27,6,26,8,27,2,26,23,27,1,26,1,27,44,29,1,27,1,1,198,}, + {1,152,11,1,28,4,29,1,28,2,26,2,29,1,28,1,29,1,26,1,29,5,26,5,29,1,26,2,29,2,26,3,29,1,26,8,27,29,9,3,27,5,29,1,11,1,1,60,28,1,27,6,26,8,27,3,26,16,27,1,26,1,27,1,26,3,27,2,26,2,27,41,29,1,28,1,11,1,1,198,}, + {1,153,28,7,29,6,26,1,29,4,26,4,29,1,26,8,29,1,26,8,27,3,26,5,27,20,9,4,27,5,28,1,1,61,28,1,27,6,26,10,27,3,26,12,27,2,26,9,27,42,29,1,28,1,1,199,}, + {1,153,28,5,26,1,28,2,29,1,28,3,29,2,28,1,29,4,26,3,29,3,26,22,27,20,9,4,27,7,1,61,27,7,26,1,27,2,26,8,27,3,26,23,27,41,29,2,1,199,}, + {1,153,9,1,28,2,29,1,28,13,29,2,26,3,29,2,26,20,27,22,9,4,27,7,9,1,1,61,27,6,26,1,27,3,26,9,27,2,26,23,27,41,28,1,29,1,1,199,}, + {1,153,10,1,28,3,29,1,28,1,29,1,28,1,29,1,28,8,29,2,26,25,27,15,26,1,27,5,9,4,27,7,28,1,11,1,1,61,10,1,29,1,27,3,26,3,27,2,26,35,27,40,28,1,11,1,1,199,}, + {1,153,10,1,28,4,26,1,29,4,28,2,29,2,28,1,29,4,26,23,27,22,9,4,27,8,29,1,1,62,12,1,29,1,27,4,26,17,27,2,26,21,27,38,29,1,28,1,1,200,}, + {1,153,27,1,28,3,26,2,29,3,26,1,29,4,28,1,29,4,26,21,27,16,26,2,27,5,9,4,27,4,9,1,27,4,29,1,1,63,28,1,27,4,26,5,27,1,26,11,27,3,26,20,27,38,29,1,28,1,1,200,}, + {1,153,9,1,28,6,29,3,28,2,29,2,28,1,29,4,26,20,27,15,26,4,27,4,9,4,27,6,9,1,27,3,29,1,1,63,28,1,27,4,26,41,27,36,29,1,28,1,12,1,1,200,}, + {1,154,28,6,29,3,28,3,29,1,28,3,29,3,26,2,29,1,26,8,29,1,26,7,27,14,26,4,27,4,9,4,27,5,9,2,27,3,29,1,11,1,1,63,28,1,27,4,26,20,27,3,26,18,27,36,29,1,28,1,1,201,}, + {1,153,11,1,28,4,26,1,29,2,28,1,29,2,28,1,29,1,26,1,28,1,29,1,28,1,29,1,26,3,29,2,26,14,27,14,26,6,27,3,9,3,27,6,9,3,27,3,29,1,11,1,1,63,28,1,27,6,26,39,27,36,29,1,28,1,1,201,}, + {1,153,11,1,28,3,29,1,28,1,26,1,29,1,28,1,29,2,28,1,29,2,28,1,29,3,26,3,29,2,26,14,27,14,26,5,27,4,9,2,27,7,9,2,27,5,1,64,27,8,26,38,27,36,28,1,10,1,1,201,}, + {1,154,28,4,29,1,28,3,29,2,28,2,29,1,28,1,29,3,26,2,29,3,26,16,27,10,26,6,27,13,9,4,27,3,29,1,9,1,1,63,27,8,26,38,27,35,29,1,28,1,11,1,1,201,}, + {1,154,28,5,29,1,28,2,29,1,28,3,29,1,28,1,29,3,26,2,29,3,26,16,27,5,26,2,27,3,26,5,27,13,9,4,27,4,28,1,1,64,28,1,27,7,26,22,27,2,26,13,27,36,29,1,28,1,1,202,}, + {1,154,28,5,26,1,28,6,29,1,28,1,29,3,26,2,29,3,26,18,27,2,26,5,27,1,26,4,27,14,9,4,27,4,10,1,1,64,28,1,27,7,26,23,27,1,26,13,27,36,28,1,29,1,1,202,}, + {1,154,28,12,29,1,28,1,29,3,26,2,29,2,26,30,27,14,9,4,27,4,9,1,6,1,1,64,28,1,27,7,26,37,27,2,26,2,27,31,29,1,28,1,11,1,1,202,}, + {1,154,29,1,28,7,29,1,28,3,29,1,28,1,29,3,26,3,29,1,26,22,27,1,26,7,27,13,9,4,27,5,9,1,29,1,1,64,28,1,27,3,26,1,27,3,26,37,27,2,26,2,27,31,29,1,28,1,1,203,}, + {1,154,27,1,28,7,29,2,28,2,29,1,28,1,29,3,26,2,29,2,26,28,27,15,9,3,27,7,11,1,1,64,28,1,27,3,26,1,27,3,26,37,27,2,26,2,27,31,29,2,1,203,}, + {1,154,9,1,28,7,29,1,28,2,29,3,28,1,29,2,26,2,29,3,26,26,27,15,9,3,27,8,11,1,1,64,28,1,27,6,26,42,27,31,28,1,12,1,1,203,}, + {1,154,11,1,28,3,29,1,28,3,29,1,28,2,29,11,26,24,27,17,9,2,27,9,11,1,1,64,28,1,27,4,26,44,27,31,28,1,1,204,}, + {1,155,28,4,29,1,28,5,29,11,26,23,27,17,9,2,27,8,9,1,27,1,11,1,1,64,28,1,27,4,26,44,27,29,29,2,28,1,1,204,}, + {1,155,28,1,29,1,28,8,29,10,26,22,27,19,9,1,27,9,9,1,10,1,1,65,28,1,27,3,26,38,27,1,26,6,27,30,28,1,12,1,1,204,}, + {1,155,28,1,29,1,28,5,29,1,28,2,29,10,26,3,29,1,26,17,27,30,9,1,27,1,1,65,28,1,27,3,26,38,27,1,26,8,27,27,29,1,28,1,1,205,}, + {1,155,27,1,28,3,29,1,28,2,29,1,28,2,29,5,26,2,29,3,26,2,29,2,26,16,27,31,9,1,27,1,1,65,28,1,27,3,26,46,27,28,29,1,28,1,1,205,}, + {1,155,9,1,28,2,29,1,28,2,29,2,28,2,29,5,26,4,29,2,26,2,29,1,26,15,27,32,9,1,27,1,1,65,28,1,27,4,26,45,27,28,28,1,12,1,1,205,}, + {1,155,11,1,28,3,29,1,28,1,29,2,28,2,29,5,26,4,29,1,26,18,27,32,9,2,27,1,1,65,28,1,27,4,26,43,27,29,29,1,28,1,11,1,1,205,}, + {1,156,28,4,29,2,28,1,29,1,28,2,26,1,28,1,29,2,26,5,29,1,26,17,27,32,9,2,27,1,1,65,29,1,26,1,27,3,26,43,27,29,29,2,1,206,}, + {1,156,28,1,29,1,28,3,26,1,28,2,26,1,28,1,29,1,26,1,29,2,26,22,27,33,9,2,29,1,1,65,29,1,26,2,27,3,26,42,27,29,28,1,12,1,1,206,}, + {1,156,28,1,29,2,28,1,26,2,28,1,29,2,28,1,26,26,27,33,9,2,29,1,1,65,28,1,27,1,26,1,27,4,26,38,27,32,28,1,1,207,}, + {1,156,27,1,29,1,28,2,29,1,28,2,29,1,28,2,26,5,29,1,26,19,27,33,9,2,10,1,26,1,1,65,28,1,27,1,26,1,27,4,26,39,27,31,10,1,1,207,}, + {1,156,27,1,29,1,28,2,29,2,28,2,26,2,29,1,26,4,29,1,26,19,27,33,9,2,27,2,1,65,28,1,27,1,26,2,27,3,26,39,27,30,28,1,11,1,1,207,}, + {1,156,27,1,28,1,29,1,28,1,29,1,28,1,29,3,26,6,29,1,26,18,27,34,9,2,27,2,1,65,28,1,27,2,26,2,27,2,26,40,27,30,1,208,}, + {1,156,11,1,28,2,29,1,28,3,26,1,28,1,29,1,26,2,29,2,26,20,27,33,9,3,27,2,1,65,28,1,27,2,26,2,27,1,26,40,27,29,29,1,12,1,1,208,}, + {1,156,11,1,28,2,29,2,28,1,29,1,26,3,29,1,26,1,29,2,26,20,27,33,9,3,10,1,27,1,1,64,12,1,28,1,27,2,26,3,27,1,26,39,27,29,28,1,1,209,}, + {1,156,11,1,28,5,29,8,26,20,27,33,9,2,27,1,9,1,27,1,1,64,27,1,29,2,27,2,26,2,27,2,26,36,27,31,10,1,1,209,}, + {1,156,11,1,28,2,29,1,28,2,29,8,26,19,27,33,9,3,27,1,9,1,27,1,1,64,10,1,29,1,27,3,26,3,27,1,26,34,27,32,28,1,11,1,1,209,}, + {1,157,28,5,29,1,28,1,29,6,26,19,27,33,9,2,27,2,9,1,26,1,1,64,9,1,29,1,27,3,26,36,27,35,1,210,}, + {1,157,28,5,29,1,28,1,29,6,26,18,27,33,9,3,27,1,9,2,29,1,1,64,29,1,26,1,29,1,27,1,26,35,27,35,28,1,12,1,1,210,}, + {1,157,28,5,29,1,28,1,29,6,26,18,27,33,9,3,27,1,9,2,29,1,1,64,28,1,26,2,27,1,26,33,27,37,28,1,1,211,}, + {1,157,28,4,29,2,28,1,29,6,26,18,27,32,9,4,27,1,9,2,29,1,1,64,29,1,26,1,27,3,26,31,27,37,29,1,12,1,1,211,}, + {1,157,28,4,29,2,28,2,29,1,26,1,29,3,26,2,29,2,26,14,27,32,9,7,28,1,1,64,27,2,26,1,27,3,26,30,27,37,28,1,1,212,}, + {1,157,28,4,29,2,28,2,26,2,29,3,26,1,29,2,26,15,27,32,9,3,27,1,9,3,28,1,1,64,28,1,26,1,27,4,26,28,27,38,29,1,11,1,1,212,}, + {1,157,28,4,29,3,28,1,29,2,26,1,29,1,26,3,29,2,26,14,27,28,9,1,27,2,9,4,27,1,12,2,9,1,28,1,1,64,28,1,27,4,26,30,27,37,28,1,1,213,}, + {1,157,28,4,29,5,26,2,29,2,26,18,27,22,26,1,27,8,9,3,27,2,12,1,9,2,28,1,1,64,28,1,27,1,26,1,27,2,26,29,27,38,28,1,1,213,}, + {1,157,28,4,29,5,26,22,27,19,26,4,27,2,9,2,27,3,9,4,27,2,9,1,12,1,9,1,28,1,1,63,9,1,28,1,27,2,26,1,27,1,26,29,27,39,1,213,}, + {1,157,28,4,29,5,26,22,27,18,26,4,27,8,9,4,27,1,9,1,12,2,9,1,28,1,1,63,9,1,29,1,27,4,26,28,27,38,29,1,9,1,1,213,}, + {1,157,28,4,29,5,26,23,27,16,26,4,27,8,9,4,27,2,12,2,9,2,28,1,1,63,9,1,26,1,27,1,26,1,27,2,26,28,27,38,28,1,12,1,1,213,}, + {1,157,28,4,29,5,26,3,29,1,26,19,27,14,26,5,27,9,9,3,27,3,12,1,9,1,12,1,9,1,28,1,1,63,29,1,26,1,27,2,26,1,27,1,26,28,27,37,26,1,28,1,1,214,}, + {1,157,28,4,29,5,26,2,29,2,26,19,27,13,26,4,27,10,9,4,27,3,12,1,9,1,12,1,9,1,28,1,1,63,28,1,27,1,26,2,27,1,26,26,27,1,26,2,27,37,26,1,28,1,1,214,}, + {1,157,28,3,29,2,26,1,29,3,26,23,27,12,26,4,27,6,26,2,27,3,9,3,27,3,9,1,12,2,9,2,27,1,1,63,29,1,27,3,26,27,27,1,26,2,27,38,29,1,1,214,}, + {1,157,28,4,29,5,26,23,27,2,26,2,27,7,26,4,27,6,26,2,27,3,9,3,27,4,9,1,12,1,9,3,27,1,1,63,28,1,27,3,26,1,27,2,26,25,27,39,29,2,1,214,}, + {1,157,28,3,29,6,26,23,27,2,26,1,27,6,26,5,27,6,26,2,27,4,9,2,27,5,9,1,12,2,9,2,27,1,1,63,28,1,27,7,26,23,27,41,28,1,1,214,}, + {1,157,28,3,29,5,26,3,29,1,26,20,27,9,26,3,27,6,26,4,27,11,12,3,9,2,27,1,1,63,28,1,27,2,26,1,27,3,26,21,27,1,26,2,27,41,12,1,1,214,}, + {1,157,28,3,29,5,26,23,27,8,26,3,27,7,26,4,27,11,9,1,12,4,9,1,27,1,1,62,9,1,28,1,27,2,26,2,27,1,26,22,27,1,26,1,27,41,29,1,9,1,1,214,}, + {1,157,28,3,26,1,29,4,26,22,27,8,26,3,27,6,26,4,27,13,9,1,12,4,9,1,29,1,1,62,10,1,28,1,27,5,26,1,27,1,26,19,27,44,28,1,11,1,1,214,}, + {1,157,28,3,26,1,29,4,26,21,27,9,26,2,27,6,26,4,27,14,9,1,12,4,9,1,29,1,1,62,27,1,28,1,27,1,26,2,27,4,26,19,27,44,28,1,1,215,}, + {1,157,28,3,29,2,26,1,29,2,26,21,27,15,26,4,27,16,12,5,9,1,29,1,1,62,28,1,27,2,26,1,27,6,26,3,27,1,26,8,27,1,26,5,27,44,28,1,1,215,}, + {1,157,28,3,29,2,26,1,29,1,26,3,29,1,26,18,27,1,26,1,27,4,26,1,27,8,26,3,27,17,12,5,10,1,28,1,1,62,29,2,27,1,26,2,27,5,26,1,27,3,26,8,27,2,26,4,27,44,28,1,1,215,}, + {1,157,28,2,29,2,26,6,29,1,26,16,27,1,26,1,27,35,9,1,12,4,27,1,29,1,1,62,28,1,29,1,27,3,26,1,27,2,26,3,27,2,26,15,27,1,26,1,27,42,28,1,1,215,}, + {1,157,28,3,26,7,29,1,26,15,27,1,26,1,27,36,9,1,12,4,10,1,11,1,1,62,28,1,29,1,27,1,26,2,27,3,26,3,27,2,26,15,27,1,26,1,27,41,29,1,9,1,1,215,}, + {1,157,28,3,29,1,26,24,27,35,9,2,12,3,9,1,27,1,11,1,1,62,28,1,29,1,26,1,27,2,26,1,27,2,26,3,27,1,26,14,27,45,28,1,9,1,1,215,}, + {1,157,28,2,29,2,26,20,27,39,9,2,12,4,27,1,11,1,1,61,12,1,28,1,27,8,26,1,27,1,26,15,27,45,28,1,1,216,}, + {1,157,29,1,28,2,29,1,26,3,29,1,26,15,27,40,9,2,12,3,9,1,27,1,11,1,1,61,10,1,29,1,27,2,26,2,27,4,26,2,27,1,26,14,27,2,26,1,27,4,26,1,27,37,28,1,1,216,}, + {1,157,28,3,26,3,29,2,26,15,27,40,9,2,12,3,9,1,27,1,12,1,1,61,9,1,27,8,26,3,27,1,26,14,27,2,26,1,27,42,28,1,1,216,}, + {1,157,28,2,29,1,26,3,29,1,26,15,27,40,9,3,12,3,9,1,27,1,17,1,1,61,27,9,26,22,27,42,1,216,}, + {1,157,28,1,29,1,28,1,26,2,29,2,26,13,27,1,26,1,27,40,9,3,12,3,9,1,29,1,17,1,1,61,29,1,27,8,26,22,27,40,29,1,10,1,1,216,}, + {1,156,11,1,28,1,29,1,28,1,29,1,26,14,27,43,9,4,12,3,9,1,29,1,11,1,1,61,27,13,26,14,27,44,28,1,12,1,1,216,}, + {1,156,11,1,28,1,29,1,28,1,26,15,27,43,9,5,12,2,9,1,27,1,1,62,28,1,27,12,26,14,27,44,28,1,1,217,}, + {1,156,11,1,28,1,29,2,26,13,27,45,9,4,12,3,9,1,29,1,1,62,28,1,27,12,26,4,27,3,26,6,27,45,28,1,1,217,}, + {1,156,11,1,28,2,29,1,26,11,27,47,9,4,12,3,9,1,29,1,1,62,28,1,27,14,26,2,27,3,26,5,27,46,28,1,1,217,}, + {1,156,11,1,28,2,26,14,27,44,9,4,27,1,12,2,9,2,28,1,1,61,11,1,26,1,27,11,26,1,27,2,26,1,27,3,26,4,27,47,29,1,10,1,1,217,}, + {1,156,11,1,28,2,26,11,27,1,26,2,27,44,9,3,27,2,12,2,9,1,27,1,28,1,1,61,9,1,27,11,26,2,27,6,26,4,27,47,28,1,1,218,}, + {1,156,11,1,28,2,26,10,27,48,9,3,27,2,9,1,12,1,9,1,27,1,28,1,1,61,9,1,27,69,26,1,28,1,1,218,}, + {1,156,11,1,28,2,26,9,27,49,9,2,27,3,9,1,12,1,9,1,27,1,28,1,1,61,12,1,27,70,28,1,1,218,}, + {1,156,11,1,28,3,26,4,27,1,26,1,27,56,9,1,12,1,9,1,27,2,1,61,28,1,27,71,1,218,}, + {1,156,11,1,28,2,29,1,27,1,26,2,27,59,9,1,12,1,27,3,1,61,27,70,29,1,27,1,1,218,}, + {1,156,11,1,28,3,27,1,26,2,27,59,9,1,12,1,27,2,6,1,1,61,29,1,27,11,26,2,27,56,28,1,1,219,}, + {1,156,11,1,28,3,27,2,26,1,27,59,9,1,12,1,27,2,29,1,1,61,28,1,27,11,26,1,27,57,28,1,1,219,}, + {1,156,11,1,28,3,27,63,12,1,27,2,11,1,1,61,28,1,27,69,28,1,1,219,}, + {1,156,11,1,28,1,29,2,27,63,12,1,27,2,11,1,1,61,29,1,27,10,26,2,27,56,29,1,10,1,1,219,}, + {1,156,11,1,28,1,29,2,26,1,27,62,12,1,27,1,26,1,12,1,1,60,11,1,27,11,26,2,27,56,28,1,11,1,1,219,}, + {1,157,29,3,26,1,27,62,12,1,27,1,29,1,12,1,1,60,9,1,27,12,26,1,27,56,28,1,1,220,}, + {1,157,29,1,28,1,29,2,27,62,12,1,27,1,29,1,1,61,9,1,27,11,26,2,27,56,28,1,1,220,}, + {1,157,28,2,29,1,26,1,27,62,9,1,27,1,28,1,1,61,12,1,27,11,26,3,27,56,1,220,}, + {1,157,28,1,29,1,26,2,27,7,26,1,27,54,9,1,27,1,28,1,1,61,10,1,27,12,26,1,27,55,28,1,11,1,1,220,}, + {1,157,28,1,29,1,26,1,27,5,26,3,27,51,26,3,9,1,27,3,1,61,29,1,27,12,26,1,27,55,28,1,1,221,}, + {1,157,28,1,29,1,26,1,27,4,26,3,27,49,26,4,27,2,9,1,27,3,1,61,29,1,27,68,29,1,1,221,}, + {1,157,28,1,26,3,27,51,26,4,29,2,26,2,27,1,9,1,27,3,29,1,1,61,27,69,29,1,1,221,}, + {1,157,28,1,26,3,27,47,26,6,29,2,26,1,29,1,26,2,27,1,9,1,27,1,26,1,27,1,29,1,1,61,27,69,28,1,1,221,}, + {1,157,28,1,26,3,27,45,26,8,29,3,26,2,27,1,9,1,27,1,26,2,29,1,12,1,1,61,28,1,27,68,10,1,1,221,}, + {1,157,28,1,27,1,26,1,27,4,26,3,27,15,26,4,27,1,26,2,27,4,26,2,27,10,26,5,29,1,28,1,29,3,26,2,27,3,12,1,27,1,26,2,29,1,12,1,1,61,28,1,27,68,10,1,1,221,}, + {1,157,29,1,26,3,27,3,26,1,27,6,26,29,27,1,26,8,29,1,28,3,29,2,26,2,27,2,9,2,27,1,26,3,1,62,28,1,27,67,29,1,10,1,1,221,}, + {1,157,10,1,26,2,27,4,26,1,27,3,26,39,29,1,28,5,29,1,26,3,27,2,12,1,27,1,26,3,28,1,1,62,28,1,27,67,28,1,12,1,1,221,}, + {1,157,9,1,26,2,27,1,26,1,27,2,26,42,29,1,28,5,29,2,26,2,27,2,12,1,9,1,26,4,28,1,1,62,28,1,27,67,28,1,1,222,}, + {1,157,27,1,26,4,27,2,26,2,29,1,26,26,27,3,26,7,29,1,28,7,26,4,27,2,9,1,12,1,27,1,26,4,29,1,1,62,29,1,27,67,28,1,1,222,}, + {1,157,27,1,26,4,27,3,26,17,27,15,26,5,29,1,28,7,26,4,27,3,12,1,9,1,26,4,27,1,29,1,1,62,29,1,27,67,29,1,1,222,}, + {1,157,9,1,29,1,26,3,27,3,26,1,27,29,26,4,29,1,28,9,29,1,26,4,27,2,9,2,27,1,29,1,26,4,29,1,1,61,9,1,27,68,29,1,1,222,}, + {1,157,11,1,28,1,26,2,29,1,26,2,27,1,26,3,27,18,26,12,29,1,28,9,29,1,26,4,27,3,12,1,9,1,27,1,29,1,26,4,9,1,1,61,10,1,27,68,28,1,1,222,}, + {1,157,11,1,28,1,26,4,27,1,26,32,29,2,28,3,26,2,28,1,29,1,26,6,27,4,9,2,27,1,26,2,29,1,26,2,28,1,12,1,1,61,9,1,27,68,9,1,1,222,}, + {1,157,11,1,28,1,26,1,27,1,26,2,27,1,26,33,29,2,28,2,26,2,29,2,26,6,27,3,9,2,27,1,26,5,27,1,29,1,1,62,10,1,27,69,1,222,}, + {1,158,28,1,26,4,27,1,26,33,29,5,26,8,27,7,26,3,29,1,26,1,27,1,28,1,1,62,9,1,27,67,28,1,27,1,1,222,}, + {1,158,28,1,26,4,27,1,26,33,29,6,26,2,29,1,26,3,27,7,26,1,29,1,26,3,27,2,28,1,1,62,11,1,29,1,27,66,28,1,27,1,1,222,}, + {1,158,28,1,27,1,26,3,27,1,26,32,29,4,26,4,29,2,26,2,27,7,26,1,28,1,26,1,28,1,26,3,27,2,1,63,29,1,27,65,29,1,28,1,1,223,}, + {1,158,28,1,26,5,29,1,26,1,29,1,28,1,29,2,26,21,29,1,26,2,29,6,26,1,29,4,26,3,27,6,26,3,29,2,26,2,27,2,28,1,1,63,29,1,27,65,29,1,28,1,1,223,}, + {1,158,10,1,26,7,29,2,28,1,29,2,26,19,29,2,26,1,29,4,26,2,29,1,26,2,29,3,26,4,27,3,26,4,29,1,26,1,29,1,26,1,27,1,26,2,12,1,1,63,28,1,27,64,29,2,28,1,1,223,}, + {1,158,27,1,26,4,27,1,26,2,29,1,26,1,29,3,26,3,29,2,26,3,29,3,26,3,29,4,26,1,29,2,26,4,29,9,26,11,29,1,28,1,26,3,27,1,29,1,12,1,1,63,28,1,27,64,26,1,29,1,28,1,1,223,}, + {1,158,27,1,26,4,27,1,29,1,26,3,29,1,26,3,29,1,26,11,29,4,26,4,29,3,26,4,29,6,26,10,29,1,26,1,29,1,26,3,27,1,29,1,1,64,27,65,26,2,29,1,1,223,}, + {1,158,29,1,26,4,27,1,29,1,26,19,29,3,26,6,29,3,26,4,29,5,26,9,29,2,26,4,29,1,27,1,28,1,1,64,28,1,27,64,29,1,27,1,28,1,1,223,}, + {1,158,11,1,28,1,26,3,27,1,26,11,29,1,26,3,29,3,26,2,29,3,26,5,29,5,26,5,29,3,26,9,29,2,28,1,29,1,26,3,27,1,29,1,1,64,6,1,27,66,28,1,1,223,}, + {1,158,11,1,28,1,26,3,27,1,26,11,29,1,26,4,29,6,26,7,29,3,26,19,29,1,26,5,27,1,28,1,1,64,9,1,29,1,27,65,9,1,1,223,}, + {1,158,11,1,28,1,26,3,27,1,26,19,29,3,26,14,29,3,26,13,29,1,26,3,27,2,12,1,1,64,9,1,29,1,27,65,10,1,1,223,}, + {1,158,11,1,28,1,26,3,27,1,26,19,29,2,26,15,29,3,26,15,29,1,27,2,29,1,9,1,1,64,10,1,29,1,27,66,1,223,}, + {1,159,28,1,26,3,27,1,29,1,26,52,29,1,27,1,26,1,27,1,28,1,12,1,1,64,9,1,29,1,27,65,11,1,1,223,}, + {1,159,28,1,26,3,27,1,29,1,26,14,29,3,26,23,29,1,26,13,27,2,28,1,1,65,9,1,27,65,29,1,1,224,}, + {1,159,28,1,26,3,27,1,29,1,26,37,29,3,26,14,27,3,1,65,9,1,27,65,28,1,1,224,}, + {1,159,27,1,26,3,27,1,29,1,26,54,27,2,9,2,1,64,9,1,27,65,28,1,1,224,}, + {1,159,10,1,26,3,27,1,29,1,26,2,29,1,26,49,27,3,26,1,12,2,1,64,9,1,27,64,10,1,27,1,1,224,}, + {1,159,27,1,26,3,27,1,29,1,26,2,29,1,26,49,27,3,28,1,11,1,12,1,1,64,9,1,27,64,9,1,29,1,1,224,}, + {1,159,27,1,29,1,26,1,27,1,26,4,29,1,26,50,27,3,1,66,29,1,27,64,9,1,28,1,1,224,}, + {1,159,9,1,28,1,26,1,27,1,26,54,27,3,29,1,1,66,29,1,27,64,9,2,1,224,}, + {1,159,11,1,28,1,26,1,27,1,26,55,27,2,28,1,1,66,27,65,9,1,10,1,1,224,}, + {1,159,11,1,28,1,26,1,27,1,26,54,27,1,26,1,27,1,9,1,1,66,28,1,27,64,10,1,27,1,1,224,}, + {1,159,11,1,28,1,26,58,27,1,12,1,1,65,11,1,28,1,27,65,11,1,1,224,}, + {1,159,11,1,28,1,26,1,27,1,26,1,29,1,26,53,27,2,6,1,1,65,9,1,29,1,27,49,9,1,27,14,26,1,1,225,}, + {1,159,11,1,28,1,26,1,27,1,26,1,29,1,26,52,27,4,1,65,29,1,27,50,9,1,27,14,29,1,1,225,}, + {1,160,28,1,26,5,29,1,26,44,27,1,26,4,27,1,26,1,27,2,28,1,1,65,28,1,27,50,9,1,27,14,10,1,1,225,}, + {1,160,28,1,26,5,29,1,26,43,27,3,26,4,27,4,11,1,1,64,28,1,27,48,9,4,27,12,10,1,27,1,1,225,}, + {1,160,28,1,26,1,27,1,26,2,29,1,26,43,27,4,26,4,27,4,12,1,1,63,9,1,27,28,26,1,27,20,9,4,27,8,9,1,27,3,9,1,28,1,1,225,}, + {1,160,28,1,29,1,27,1,26,2,29,1,26,41,27,7,26,2,27,1,26,1,27,3,29,1,1,63,29,1,27,26,26,3,27,19,9,6,27,6,9,2,27,2,9,2,28,1,1,225,}, + {1,160,27,1,29,1,27,1,26,45,27,6,26,2,27,5,29,1,1,63,28,1,27,4,9,1,27,21,26,3,27,17,9,9,27,5,9,2,27,1,9,4,1,3,11,1,17,1,12,1,6,1,27,1,28,1,10,1,28,1,27,3,10,1,17,1,11,1,1,208,}, + {1,160,27,1,29,1,26,48,27,4,26,2,27,6,1,62,9,1,27,6,9,2,27,17,26,4,27,18,9,12,27,1,9,6,10,1,27,1,11,1,9,1,27,1,28,1,29,1,27,3,29,2,28,8,27,2,1,205,}, + {1,160,27,1,29,1,26,45,27,1,26,1,27,13,1,62,29,1,27,5,9,3,27,18,26,1,27,19,9,21,28,1,27,1,9,3,27,5,29,1,28,12,10,1,17,1,1,201,}, + {1,160,27,1,29,1,26,43,27,17,1,62,28,1,27,4,9,3,27,19,26,2,27,15,9,24,12,4,9,2,27,3,29,1,28,16,9,1,11,1,1,198,}, + {1,160,27,1,29,1,26,42,27,17,29,1,12,1,1,60,7,1,27,4,9,4,27,19,26,2,27,15,9,24,12,4,9,2,27,3,29,1,28,15,29,2,28,2,27,1,11,1,1,195,}, + {1,160,27,1,28,1,26,42,27,17,29,1,1,61,6,1,27,3,9,4,27,37,9,23,12,5,9,2,27,3,28,17,29,1,27,2,29,1,28,2,9,1,12,1,1,192,}, + {1,160,27,1,28,1,26,40,27,19,12,1,1,61,27,4,9,3,27,38,9,20,12,7,9,2,27,3,29,1,28,19,27,4,29,1,28,2,27,1,12,1,1,189,}, + {1,160,27,1,28,1,26,37,27,22,12,1,1,61,9,1,27,3,9,1,27,37,9,14,12,16,9,2,27,2,29,1,28,2,29,1,28,18,27,6,26,1,28,2,27,1,12,1,1,186,}, + {1,160,27,1,28,1,26,32,27,2,26,2,27,22,29,1,12,1,1,59,11,1,10,1,28,1,12,1,27,39,9,11,12,20,9,1,27,2,26,1,29,2,28,4,29,1,28,17,26,1,27,7,28,2,27,1,12,1,1,183,}, + {1,160,27,1,28,1,27,1,26,26,27,2,26,1,27,28,28,1,1,60,17,1,27,1,9,1,12,2,9,1,27,37,9,9,12,14,11,5,12,3,27,3,26,4,29,5,26,1,29,2,26,1,29,4,28,9,27,9,29,1,28,2,27,1,12,1,1,180,}, + {1,160,27,1,28,1,26,27,27,31,28,1,1,61,29,1,12,5,9,2,27,32,9,8,12,18,11,3,12,3,9,1,27,2,26,7,29,4,26,7,29,1,26,1,29,1,28,7,26,1,27,10,29,1,28,2,29,1,9,1,1,177,}, + {1,160,29,1,28,1,26,21,27,36,29,1,27,1,1,60,11,1,27,1,9,1,12,7,9,2,27,27,9,8,12,11,11,7,12,1,11,3,12,3,9,1,27,2,29,1,26,8,29,2,26,1,29,2,26,2,27,4,26,3,29,1,28,6,29,1,26,1,27,10,26,2,28,3,10,1,11,1,1,173,}, + {1,160,12,1,28,1,26,4,27,1,26,9,27,44,10,1,1,60,9,1,12,2,9,1,12,9,9,1,27,23,9,7,12,10,11,7,17,1,12,9,27,2,26,2,27,2,26,13,27,10,29,1,28,5,29,2,27,9,26,4,29,2,28,1,29,2,17,1,1,170,}, + {1,160,11,1,28,1,26,13,27,45,10,1,1,60,28,1,12,1,9,1,12,14,9,1,27,12,10,1,9,8,12,5,17,1,11,16,12,7,9,1,27,3,26,2,27,3,26,13,27,1,26,1,27,5,26,2,27,2,29,1,28,7,26,1,27,11,26,2,29,1,26,1,28,3,10,1,1,168,}, + {1,160,11,1,28,1,26,2,27,1,26,4,27,1,26,2,27,49,1,59,12,1,10,1,12,2,9,1,12,16,9,3,27,2,9,3,12,5,11,26,12,5,9,2,27,2,26,2,27,3,26,5,27,1,26,8,29,1,26,4,27,9,26,2,29,1,28,6,29,1,26,1,27,8,26,2,27,2,26,1,27,1,29,2,28,2,29,1,1,166,}, + {1,161,28,1,29,1,27,1,26,2,27,1,26,1,27,52,28,1,1,59,27,1,12,1,9,2,12,1,9,1,12,27,11,23,12,5,9,3,27,3,26,2,27,3,26,7,27,1,26,7,29,1,28,3,29,2,26,1,27,8,26,2,27,1,29,1,28,8,29,1,27,5,26,1,27,5,26,1,27,1,26,1,27,1,26,1,29,1,28,1,27,1,11,1,1,163,}, + {1,161,29,1,27,3,26,2,27,53,28,1,1,59,27,1,12,3,9,1,12,30,11,17,12,5,9,3,27,3,26,4,27,2,26,2,27,4,26,13,29,2,28,3,29,1,27,10,26,1,27,1,26,1,28,9,29,1,27,11,26,1,27,2,26,1,27,1,28,4,12,1,1,160,}, + {1,161,9,1,28,1,27,57,28,1,1,59,29,1,9,1,12,1,9,1,12,47,9,3,27,12,26,1,27,2,26,1,27,4,26,18,29,1,28,3,26,2,27,9,26,1,29,1,28,10,29,2,27,13,26,1,28,3,29,1,1,159,}, + {1,162,29,1,27,29,9,19,27,2,9,1,27,3,9,1,27,2,29,1,1,58,17,1,27,1,12,34,9,2,27,3,9,8,27,12,26,2,27,11,26,21,29,1,26,1,29,2,28,2,26,1,27,5,26,2,27,1,29,1,28,12,29,2,26,1,27,1,26,2,28,4,29,1,26,2,27,1,26,1,28,4,1,157,}, + {1,162,12,1,28,1,27,12,9,7,12,29,9,8,10,1,1,58,12,1,9,1,12,1,9,1,12,17,9,14,27,22,26,15,27,3,26,25,29,1,28,2,29,2,26,2,27,3,26,1,29,1,28,26,29,1,26,1,29,1,28,2,1,156,}, + {1,162,10,1,28,1,27,4,26,3,27,3,9,2,12,13,11,1,12,1,11,1,12,1,11,3,12,13,9,4,12,6,9,1,10,1,1,58,9,1,12,1,9,2,12,16,9,14,27,27,26,44,28,4,29,1,26,1,27,1,29,1,28,31,6,1,1,154,}, + {1,162,29,1,28,12,29,1,27,9,9,10,27,14,26,4,27,2,12,4,27,1,1,59,6,1,12,12,9,1,12,2,9,15,27,7,26,1,27,14,26,43,27,7,26,6,28,4,29,1,28,32,16,1,1,152,}, + {1,161,17,1,28,21,29,9,26,10,29,5,28,1,29,1,28,5,29,1,27,1,10,1,12,1,27,1,11,1,1,59,27,1,12,12,9,2,12,1,9,11,27,12,26,2,27,11,26,43,27,1,26,2,27,8,26,4,29,3,28,10,26,1,28,23,29,1,17,1,1,150,}, + {1,161,27,1,28,53,29,2,28,1,11,1,1,60,27,1,12,15,9,9,27,15,26,4,27,3,26,50,27,6,26,3,27,2,26,2,27,1,26,3,29,2,28,8,26,1,29,2,28,23,9,1,1,1,17,1,1,146,}, + {1,161,28,58,1,60,27,1,12,15,9,9,27,17,26,48,27,15,26,1,27,2,26,1,27,1,26,1,28,10,26,1,29,2,28,1,29,1,26,4,28,19,26,1,28,3,10,1,12,1,11,1,1,143,}, + {1,160,11,1,29,1,28,58,1,59,7,1,12,4,9,1,12,7,9,11,27,17,26,1,27,2,26,53,27,11,26,1,28,13,29,1,26,4,27,1,26,1,27,2,26,2,28,17,29,1,27,1,26,1,29,1,28,4,9,1,1,140,}, + {1,161,27,1,28,38,29,1,28,2,29,1,28,17,12,1,1,57,6,1,12,11,9,11,27,18,26,1,27,2,26,52,27,11,26,1,28,17,26,2,27,3,26,1,27,2,26,1,27,1,26,3,29,1,28,3,29,1,26,2,27,2,26,1,27,1,29,1,28,1,26,1,27,5,29,1,28,2,1,139,}, + {1,160,9,1,28,30,29,1,28,1,29,8,28,1,29,2,28,2,29,1,28,14,27,1,1,57,10,1,12,10,9,11,27,23,26,4,27,5,26,41,27,11,26,1,29,1,28,18,29,1,27,19,26,1,27,3,29,1,28,1,27,5,29,1,27,1,28,1,29,1,1,138,}, + {1,158,11,1,28,31,29,5,26,5,29,2,26,1,29,3,26,1,29,2,28,13,11,1,1,56,12,12,9,11,27,22,26,3,27,7,26,5,27,1,26,33,27,11,26,2,28,21,26,1,27,22,29,1,28,1,27,5,29,2,28,1,1,138,}, + {1,157,10,1,28,6,29,1,28,2,29,1,28,22,29,5,26,9,29,1,26,2,29,1,26,1,29,1,28,13,1,56,12,1,9,1,12,10,9,11,27,32,26,4,27,4,26,32,27,10,26,2,28,23,27,22,28,1,9,1,12,3,9,3,28,1,1,138,}, + {1,156,28,30,29,2,28,2,29,4,26,10,29,1,26,2,29,1,26,1,28,14,27,1,1,56,27,1,12,9,9,11,27,27,26,9,27,5,26,32,27,10,26,2,29,1,28,23,27,18,26,1,27,1,29,1,28,1,29,1,11,4,12,2,7,1,1,138,}, + {1,154,9,1,28,31,29,6,26,11,29,4,26,1,29,1,28,15,11,1,1,55,27,1,12,12,9,8,27,21,26,1,27,5,26,9,27,5,26,34,27,8,26,1,27,1,26,1,28,24,26,1,27,16,26,3,28,1,29,1,11,5,12,1,11,1,1,138,}, + {1,153,27,1,28,3,29,1,28,29,29,3,26,15,29,2,26,1,29,1,28,1,29,3,28,12,1,55,27,1,12,11,9,9,27,21,26,1,27,19,26,4,27,2,26,27,27,10,26,3,28,24,26,1,27,15,26,1,27,1,29,1,28,1,9,1,11,4,12,1,10,1,11,1,1,138,}, + {1,151,11,1,28,32,29,6,26,13,29,5,28,1,29,1,28,15,11,1,1,54,10,1,12,10,9,9,27,37,26,3,27,3,26,9,27,2,26,19,27,12,26,2,27,1,26,1,28,25,27,15,29,1,28,1,9,1,11,4,7,1,6,1,11,1,1,139,}, + {1,150,17,1,28,8,29,1,28,1,29,2,28,12,29,1,28,4,29,3,28,5,29,1,26,14,29,2,26,2,29,1,28,18,1,54,27,1,9,4,12,1,9,1,12,5,9,8,27,48,26,1,27,1,26,2,27,3,26,26,27,3,26,1,27,1,26,4,29,1,28,21,29,1,28,2,29,1,27,14,9,1,11,2,12,1,7,1,9,2,1,1,11,1,1,139,}, + {1,149,9,1,28,7,29,3,28,1,29,2,28,17,29,3,28,5,29,2,26,13,29,2,26,1,29,1,28,19,11,1,1,53,28,1,9,5,12,2,9,3,12,1,9,7,27,50,26,34,27,1,26,5,27,2,26,3,29,1,28,21,26,1,27,2,9,1,10,1,9,1,10,1,9,2,12,3,11,1,12,1,16,1,9,1,6,1,11,2,1,143,}, + {1,148,9,1,28,6,29,2,26,1,29,1,28,21,29,2,28,7,29,1,26,5,29,2,26,5,29,4,28,21,11,1,1,51,12,1,27,1,9,5,12,1,9,11,27,54,26,31,27,2,26,1,27,2,26,12,29,3,28,6,29,2,28,3,29,1,28,2,27,1,12,1,11,9,12,1,29,1,11,1,1,147,}, + {1,146,11,1,28,3,29,1,28,3,29,1,26,3,29,1,28,13,29,1,28,3,29,2,28,12,29,1,26,1,29,1,26,12,29,1,28,21,1,52,12,1,27,1,9,17,27,24,26,3,27,19,26,3,27,7,26,44,27,2,26,4,29,6,26,1,29,2,28,1,29,2,28,2,12,1,11,8,10,1,6,1,1,149,}, + {1,146,29,1,28,6,26,4,29,1,26,1,29,1,28,16,29,2,28,13,29,2,26,11,29,1,28,22,9,1,1,52,28,1,27,4,10,1,27,1,9,10,27,25,26,3,27,27,26,27,27,1,26,11,27,1,26,2,27,2,26,10,27,2,26,1,29,6,26,1,29,1,28,1,9,1,11,2,1,1,11,1,1,2,12,1,28,1,9,2,1,149,}, + {1,144,11,1,29,1,28,5,29,2,26,3,29,3,28,18,29,1,28,6,29,1,28,7,29,1,26,9,29,2,28,23,29,1,1,53,6,1,29,1,10,2,27,37,26,2,27,46,26,1,27,5,26,9,27,1,26,7,27,1,26,1,27,7,26,9,27,1,26,1,27,1,29,1,27,1,29,2,17,1,11,1,1,1,11,3,10,1,16,1,1,152,}, + {1,144,29,1,28,4,29,1,28,1,26,1,29,1,26,3,29,1,28,1,29,1,28,8,29,2,28,3,29,8,28,4,29,1,28,8,29,1,26,7,29,1,28,26,1,54,11,1,27,2,29,1,27,1,9,1,10,1,27,34,26,2,27,88,9,1,12,4,11,1,1,2,11,1,9,1,7,1,16,1,1,153,}, + {1,143,29,1,28,7,29,2,26,4,29,1,28,9,29,1,28,2,29,1,26,1,29,6,26,2,29,1,28,2,29,1,28,10,29,2,26,5,29,1,28,26,29,1,1,52,16,1,1,4,12,1,6,1,29,3,27,2,9,1,27,24,26,1,27,1,26,4,27,1,26,1,27,7,10,2,9,3,12,7,11,13,17,1,11,1,17,1,11,2,17,1,12,20,11,2,12,13,11,1,12,3,11,1,12,3,11,1,12,3,11,7,1,1,9,1,8,1,16,1,11,2,9,1,1,153,}, + {1,142,29,1,28,7,29,4,26,2,29,2,28,9,29,3,28,1,29,3,28,2,26,9,29,1,28,1,29,1,28,7,29,1,26,4,29,1,26,1,28,12,29,2,28,13,1,62,9,1,10,1,28,1,29,2,28,1,26,1,27,19,26,1,27,1,26,2,27,7,9,1,12,2,11,32,17,1,11,4,17,10,12,1,17,5,12,1,17,2,12,3,17,2,12,1,11,1,17,1,11,2,17,2,11,9,17,1,11,2,17,1,11,4,16,1,9,1,6,1,11,1,1,158,}, + {1,141,28,11,29,3,26,2,29,1,28,4,29,1,28,4,26,2,28,1,29,1,26,1,28,2,29,1,26,5,29,1,28,4,29,3,28,7,29,2,26,3,29,2,28,8,29,6,28,13,11,1,1,68,10,1,9,1,28,1,6,1,28,2,29,1,27,11,26,1,27,7,10,1,9,1,11,13,1,2,11,67,17,1,11,6,16,1,7,1,12,1,1,160,}, + {1,140,29,1,28,11,29,4,26,1,29,1,28,3,29,4,28,2,26,2,28,1,29,1,26,1,28,1,29,1,26,2,28,12,29,2,28,5,29,2,26,3,29,2,28,5,29,3,26,6,29,1,28,12,10,1,1,75,10,2,27,1,28,1,27,1,28,3,29,1,26,1,27,6,9,2,10,1,11,5,1,1,11,1,1,5,11,1,1,2,11,2,1,2,11,4,1,1,11,62,17,1,11,2,10,1,6,1,17,1,1,162,}, + {1,139,27,1,28,15,29,1,26,1,28,4,29,1,28,2,29,1,28,2,29,1,28,2,29,1,28,1,29,1,26,1,29,1,28,20,29,2,26,4,28,5,29,1,26,1,29,1,28,10,29,1,28,10,1,82,11,1,29,1,10,2,28,2,29,1,27,1,9,1,28,1,29,2,7,1,10,1,9,1,16,2,12,1,11,2,1,10,11,1,1,3,11,61,17,1,12,1,9,1,6,1,7,2,12,1,1,164,}, + {1,138,12,1,28,16,26,1,29,1,28,4,29,1,28,2,29,2,28,1,29,2,26,1,29,1,26,1,29,1,28,23,29,1,26,3,29,2,28,2,26,1,29,2,28,23,10,1,1,93,12,1,1,4,8,1,10,1,9,1,8,1,9,1,16,2,9,1,6,1,7,1,9,1,17,1,7,1,9,1,16,1,11,2,1,4,11,3,1,2,11,49,12,1,10,1,7,1,6,1,16,1,9,1,1,1,11,1,1,166,}, + {1,137,11,1,28,16,29,1,26,1,29,1,28,3,29,2,28,1,29,2,28,2,29,1,26,3,28,25,29,2,26,3,28,1,29,2,28,1,29,1,28,25,1,113,8,1,9,1,16,1,10,1,9,1,12,1,6,1,16,1,12,1,11,3,1,2,11,3,1,2,11,37,16,1,6,1,9,1,16,1,9,1,16,1,1,172,}, + {1,136,12,1,28,15,29,1,28,1,29,1,26,1,29,1,28,2,26,1,29,1,26,1,29,3,28,2,29,3,28,25,29,2,26,2,27,1,26,1,28,2,29,2,28,26,12,1,1,111,11,1,1,5,11,1,1,1,11,2,9,1,16,1,8,1,7,1,8,1,6,1,9,1,17,1,11,1,1,4,11,26,1,1,11,1,17,1,9,1,6,1,9,1,7,1,16,1,11,2,1,176,}, + {1,136,27,1,28,16,29,1,26,3,28,2,29,2,26,1,29,1,26,1,29,1,28,1,26,1,29,2,28,27,26,2,27,2,26,1,29,1,26,2,28,28,1,128,12,1,9,1,16,1,6,1,8,1,16,1,6,2,9,2,12,1,11,4,1,6,11,1,1,2,11,2,12,1,16,1,10,1,6,1,16,1,7,2,16,1,9,1,1,183,}, + {1,135,9,1,28,14,29,1,28,1,29,1,26,4,29,2,26,4,29,1,26,2,28,1,26,1,28,24,29,1,28,1,29,2,26,1,27,3,26,1,28,1,26,1,28,29,12,1,1,130,11,1,12,1,1,3,9,1,1,1,10,1,9,2,16,1,12,1,17,2,11,4,6,1,12,2,16,1,9,2,11,1,1,3,9,1,1,186,}, + {1,134,11,1,28,16,29,2,26,3,29,2,28,1,26,4,29,2,26,2,28,25,29,2,26,2,27,4,26,1,29,1,26,1,28,30,1,345,}, + {1,133,11,1,28,16,29,3,26,3,29,2,28,1,29,1,26,4,29,1,26,2,28,25,29,2,26,2,27,4,29,1,28,1,29,1,28,31,11,1,1,343,}, + {1,132,11,1,28,17,26,1,28,1,29,1,26,2,27,1,29,2,28,1,29,1,26,1,29,1,26,1,29,1,26,2,28,26,26,2,27,5,26,1,29,1,26,2,28,32,1,343,}, + {1,132,29,1,28,16,26,1,29,1,28,1,29,2,26,1,27,1,29,6,26,1,29,2,28,27,26,2,27,5,26,1,28,1,29,1,28,34,1,342,}, + {1,131,28,18,26,2,29,3,26,2,28,2,29,2,28,1,29,1,28,1,29,1,28,27,29,1,26,1,27,6,26,2,28,1,26,2,28,33,1,341,}, + {1,128,11,1,29,1,28,18,26,1,29,1,26,2,29,2,26,2,28,2,29,2,26,1,28,1,29,3,28,26,29,1,26,1,27,6,29,1,28,1,29,1,26,3,29,1,28,31,12,1,1,340,}, + {1,125,11,1,29,1,28,20,29,1,26,1,29,2,26,3,27,1,28,2,29,4,28,2,29,1,28,26,26,1,29,1,26,1,27,5,26,2,29,1,26,9,29,2,26,3,29,1,28,13,29,1,28,7,27,1,1,340,}, + {1,124,6,1,28,21,26,1,29,2,28,1,26,5,28,34,29,2,26,2,27,5,26,1,29,1,26,3,29,2,26,2,29,1,26,20,29,2,28,7,27,1,1,340,}, + {1,122,10,1,28,20,29,1,26,1,29,2,28,2,29,1,26,5,28,34,29,1,26,3,27,4,26,1,29,2,26,4,29,2,26,22,29,2,28,7,27,1,1,340,}, + {1,120,11,1,28,9,29,2,26,1,29,3,28,1,29,7,28,4,29,2,26,2,29,1,28,33,29,1,28,1,29,1,26,3,27,5,29,3,26,2,29,1,26,2,29,2,26,3,29,2,26,15,29,1,28,2,29,1,26,2,29,1,26,1,29,1,28,1,1,341,}, + {1,119,9,1,28,12,29,2,28,1,29,1,28,1,29,6,26,1,29,2,28,3,29,3,26,1,28,31,29,1,26,1,29,2,26,3,27,6,28,1,26,1,29,1,26,1,29,2,26,2,29,2,26,2,29,2,26,13,29,3,26,2,29,2,26,1,27,3,9,1,27,1,12,1,1,340,}, + {1,118,9,1,28,12,29,1,28,1,26,1,28,1,26,3,29,2,26,2,29,2,26,1,29,2,26,5,29,1,28,26,29,5,28,1,29,2,26,1,27,1,26,3,27,4,26,1,28,1,26,1,29,1,26,1,29,2,26,2,29,2,26,1,29,2,26,3,29,1,26,16,27,3,12,2,17,1,9,1,16,1,1,340,}, + {1,117,11,1,28,15,26,1,29,1,28,1,29,5,26,10,27,1,26,2,28,12,29,2,28,3,29,1,28,1,29,3,28,1,29,1,26,5,29,1,26,6,27,7,29,1,26,2,29,7,26,19,27,5,12,4,10,1,11,1,1,341,}, + {1,117,28,14,29,2,28,1,26,1,28,1,29,1,26,2,29,1,26,7,27,4,9,3,27,1,29,1,28,6,29,1,28,6,29,1,28,1,29,3,28,1,29,1,28,3,29,1,26,8,27,9,29,1,26,2,29,6,26,16,27,6,9,1,12,2,11,1,12,2,7,2,17,1,1,341,}, + {1,117,28,14,26,1,29,1,26,3,29,1,28,1,26,1,29,1,26,4,27,3,10,1,12,2,11,4,12,1,10,1,27,1,28,9,29,1,26,1,29,1,26,1,29,4,26,2,29,1,26,11,27,9,26,4,29,2,26,1,29,1,26,6,27,3,26,1,27,6,10,1,9,2,12,4,17,1,11,1,12,1,17,1,12,1,7,1,16,1,1,1,11,1,1,341,}, + {1,117,28,11,29,1,26,1,29,1,26,3,29,2,26,1,27,1,26,2,27,1,26,1,27,3,9,1,12,1,11,5,1,2,11,2,12,1,10,1,29,1,28,2,29,1,28,3,26,1,28,1,29,7,26,6,27,1,26,3,27,11,9,2,27,7,26,4,27,5,9,2,12,5,11,2,17,2,12,2,17,2,11,1,12,2,7,1,12,1,1,345,}, + {1,117,11,1,28,7,29,5,26,1,29,1,26,2,27,6,10,1,9,2,12,1,11,8,1,1,11,1,1,1,11,3,12,1,27,1,28,2,29,2,28,2,26,17,27,6,10,1,9,1,12,3,11,4,12,2,17,1,12,12,11,2,12,1,11,1,17,1,11,4,12,3,17,2,12,1,16,1,6,1,10,1,1,1,17,1,1,345,}, + {1,118,12,1,28,4,29,1,27,9,9,3,12,7,11,7,1,7,11,2,12,1,9,1,27,1,29,2,26,4,27,18,9,1,12,3,11,18,17,1,11,1,17,1,12,1,11,2,12,1,11,8,17,2,12,1,7,1,6,1,16,1,1,349,}, + {1,118,11,1,28,1,9,3,10,1,9,1,12,12,17,1,12,3,17,1,11,5,1,2,11,1,12,1,8,1,10,1,16,2,11,1,1,2,11,2,17,1,12,2,9,5,12,10,9,5,12,2,11,9,1,4,11,1,1,1,11,6,17,1,11,1,12,1,17,2,12,1,17,3,11,1,17,1,11,1,17,1,11,2,17,1,16,1,6,1,8,2,16,1,1,351,}, + {1,119,11,1,6,1,10,1,12,6,17,1,12,3,17,4,11,1,17,1,11,6,12,1,17,1,16,1,10,1,9,1,11,1,9,1,1,1,16,1,7,1,11,1,9,2,16,1,11,1,1,1,11,3,12,3,17,1,12,8,17,2,11,2,17,1,12,3,11,6,1,1,11,1,1,12,11,8,17,2,11,4,12,1,9,2,10,1,9,1,11,1,1,355,}, + {1,121,17,1,7,2,9,1,12,1,17,1,12,3,17,2,11,1,17,1,11,3,16,2,8,1,9,1,6,1,16,2,1,14,11,1,10,1,16,2,11,6,12,2,11,2,17,1,12,1,17,2,11,1,17,3,12,1,11,4,1,9,11,1,16,1,12,1,9,1,7,1,6,1,9,1,16,1,12,1,9,3,16,3,9,1,10,2,16,1,9,1,6,1,8,1,9,1,11,1,1,360,}, + {1,122,11,1,1,1,17,1,9,1,7,1,6,1,8,1,10,1,9,1,10,1,8,1,6,1,10,1,9,1,8,1,16,1,11,1,1,1,11,1,16,2,17,1,1,14,11,1,1,1,9,1,1,1,12,1,10,1,6,1,9,1,10,1,16,1,11,14,1,5,11,1,16,1,9,1,16,1,28,1,10,1,29,1,11,1,1,383,}, + {1,168,7,1,8,1,16,1,11,1,7,1,16,1,12,1,11,2,17,1,9,1,11,2,17,1,16,1,8,1,12,1,16,1,10,1,8,1,1,27,16,1,1,362,}, + {1,174,11,1,1,5,11,1,1,1,11,1,1,395,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, + {1,578,}, +} +}) \ No newline at end of file diff --git a/map_gen/presets/dino_island.lua b/map_gen/presets/dino_island.lua new file mode 100644 index 00000000..9f3ad5c8 --- /dev/null +++ b/map_gen/presets/dino_island.lua @@ -0,0 +1,172 @@ +local b = require 'map_gen.shared.builders' +local Event = require 'utils.event' +local Radnom = require 'map_gen.shared.random' + +local seed = 1000 + +Event.on_init( + function() + local rs = game.forces.player.recipes + + rs['electric-mining-drill'].enabled = false + rs['inserter'].enabled = false + end +) + +Event.add( + defines.events.on_research_finished, + function(event) + local effects = event.research.effects + local f = game.forces.player + local rs = f.recipes + + for _, e in ipairs(effects) do + local t = e.type + if t == 'unlock-recipe' then + local rn = e.recipe + if rn:find('inserter') then + rs[rn].enabled = false + end + elseif t == 'stack-inserter-capacity-bonus' then + f.inserter_stack_size_bonus = f.inserter_stack_size_bonus + e.modifier + end + end + end +) + +local dino1 = b.picture(require 'map_gen.data.presets.dino1') +local dino2 = b.picture(require 'map_gen.data.presets.dino2') +local dino4 = b.picture(require 'map_gen.data.presets.dino4') +local dino7 = b.picture(require 'map_gen.data.presets.dino7') +local dino9 = b.picture(require 'map_gen.data.presets.dino9') +local dino13 = b.picture(require 'map_gen.data.presets.dino13') +local dino14 = b.picture(require 'map_gen.data.presets.dino14') +local dino16 = b.picture(require 'map_gen.data.presets.dino16') + +local dino17 = b.picture(require 'map_gen.data.presets.dino17') +local dino18 = b.picture(require 'map_gen.data.presets.dino18') +local dino19 = b.picture(require 'map_gen.data.presets.dino19') +local dino20 = b.picture(require 'map_gen.data.presets.dino20') +local dino21 = b.picture(require 'map_gen.data.presets.dino21') +local dino22 = b.picture(require 'map_gen.data.presets.dino22') + +local dinos = { + dino1, + dino2, + dino4, + dino7, + dino9, + dino13, + dino14, + dino16, + dino17, + dino18, + dino19, + dino20, + dino21, + dino22 +} +local land_dino_count = 8 +local ore_dino_start = 9 +local ore_dino_end = #dinos + +local random = Radnom.new(seed, seed * 2) + +local land_pattern = {} +for r = 1, 50 do + local row = {} + land_pattern[r] = row + for c = 1, 50 do + local x = random:next_int(-256, 256) + local y = random:next_int(-256, 256) + local d = random:next_int(0, 360) + local i = random:next_int(1, land_dino_count) + + local shape = dinos[i] + shape = b.rotate(shape, degrees(d)) + shape = b.translate(shape, x, y) + + row[c] = shape + end +end + +local function value(base, mult, pow) + return function(x, y) + local d = math.sqrt(x * x + y * y) + return base + mult * d ^ pow + end +end + +local function non_transform(shape) + return b.scale(shape, 0.5) +end + +local function uranium_transform(shape) + return b.scale(shape, 0.25) +end + +local function oil_transform(shape) + shape = b.scale(shape, 0.25) + return b.throttle_world_xy(shape, 1, 4, 1, 4) +end + +local function empty_transform() + return b.empty_shape +end + +local ores = { + {transform = non_transform, resource = 'iron-ore', value = value(500, 0.75, 1.1), weight = 16}, + {transform = non_transform, resource = 'copper-ore', value = value(400, 0.75, 1.1), weight = 10}, + {transform = non_transform, resource = 'stone', value = value(250, 0.3, 1.05), weight = 6}, + {transform = non_transform, resource = 'coal', value = value(400, 0.8, 1.075), weight = 16}, + {transform = uranium_transform, resource = 'uranium-ore', value = value(200, 0.3, 1.025), weight = 3}, + {transform = oil_transform, resource = 'crude-oil', value = value(100000, 50, 1.025), weight = 10}, + {transform = empty_transform, weight = 10} +} + +local total_ore_weights = {} +local ore_t = 0 +for _, v in ipairs(ores) do + ore_t = ore_t + v.weight + table.insert(total_ore_weights, ore_t) +end + +local ore_pattern = {} + +for r = 1, 50 do + local row = {} + ore_pattern[r] = row + for c = 1, 50 do + local x = random:next_int(-32, 32) + local y = random:next_int(-32, 32) + local d = random:next_int(0, 360) + local i = random:next_int(ore_dino_start, ore_dino_end) + local shape = dinos[i] + + local ore_data + i = random:next_int(1, ore_t) + index = table.binary_search(total_ore_weights, i) + if (index < 0) then + index = bit32.bnot(index) + end + ore_data = ores[index] + + shape = ore_data.transform(shape) + shape = b.rotate(shape, degrees(d)) + shape = b.translate(shape, x, y) + local ore = b.resource(shape, ore_data.resource, ore_data.value) + + row[c] = ore + end +end + +local map = b.grid_pattern_full_overlap(land_pattern, 50, 50, 640, 640) +map = b.change_tile(map, false, 'deepwater') +map = b.fish(map, 0.0025) + +local ores = b.grid_pattern_full_overlap(ore_pattern, 50, 50, 128, 128) +map = b.apply_entity(map, ores) + +map = b.translate(map, -50, -160) + +return map diff --git a/map_gen/presets/grid_islands.lua b/map_gen/presets/grid_islands.lua index 7a2eac17..3a4beea4 100644 --- a/map_gen/presets/grid_islands.lua +++ b/map_gen/presets/grid_islands.lua @@ -1,66 +1,167 @@ --[[ This map uses custom ore gen. When generating the map, under the resource settings tab use Size = 'None' for all resources. ]] +local b = require 'map_gen.shared.builders' +local Random = require 'map_gen.shared.random' +local ore_seed1 = 1000 +local ore_seed2 = ore_seed1 * 2 -local b = require "map_gen.shared.builders" +local h_track = { + b.line_x(2), + b.translate(b.line_x(2), 0, -3), + b.translate(b.line_x(2), 0, 3), + b.rectangle(2, 10) +} -local square = b.rectangle(160,160) -local circle = b.circle(60) +h_track = b.any(h_track) +h_track = b.single_x_pattern(h_track, 15) -local leg = b.rectangle(32,480) -local head = b.translate (b.oval(32, 64), 0, -64) -local body = b.translate (b.circle(64), 0, 64) +local v_track = { + b.line_y(2), + b.translate(b.line_y(2), -3, 0), + b.translate(b.line_y(2), 3, 0), + b.rectangle(10, 2) +} + +v_track = b.any(v_track) +v_track = b.single_y_pattern(v_track, 15) + +local square = b.rectangle(190, 190) +local circle = b.circle(80) + +local leg = b.rectangle(32, 480) +local head = b.translate(b.oval(32, 64), 0, -64) +local body = b.translate(b.circle(64), 0, 64) local count = 10 local angle = 360 / count -local list = { head, body } +local list = {head, body} for i = 1, (count / 2) - 1 do local shape = b.rotate(leg, degrees(i * angle)) - table.insert( list, shape ) -end + table.insert(list, shape) +end -local spider = b.any(list) +local spider = b.any(list) +local ore_spider = b.scale(spider, 0.125, 0.125) -local patch = b.scale(spider, 0.125, 0.125) -local iron_patch = b.resource(patch, "iron-ore", function(x,y) return 500 + (math.abs(x) + math.abs(y)) end) -local copper_patch = b.resource(patch, "copper-ore",function(x,y) return 400 + (math.abs(x) + math.abs(y)) * 0.8 end) -local coal_patch = b.resource(patch, "coal",function(x,y) return 300 + (math.abs(x) + math.abs(y)) * 0.7 end) -local stone_patch = b.resource(patch, "stone",function(x,y) return 100 + (math.abs(x) + math.abs(y)) * 0.5 end) -local uraniumn_patch = b.resource(b.scale(patch, 0.5,0.5), "uranium-ore",function(x,y) return 100 + (math.abs(x) + math.abs(y)) * 0.2 end) -local oil_patch = b.resource(patch, "crude-oil",function(x,y) return 75000 + (math.abs(x) + math.abs(y)) * 500 end) +local function value(base, mult, pow) + return function(x, y) + local d = math.sqrt(x * x + y * y) + return base + mult * d ^ pow + end +end -local iron_circle = b.apply_entity(circle, iron_patch) -local copper_circle = b.apply_entity(circle, copper_patch) -local coal_circle = b.apply_entity(circle, coal_patch) -local stone_circle = b.apply_entity(circle, stone_patch) -local uraniumn_circle = b.apply_entity(circle, uraniumn_patch) -local oil_circle = b.apply_entity(circle, oil_patch) +local function non_transform(shape) + return shape +end -local start_patch = b.scale(spider, 0.0625, 0.0625) -local start_iron_patch = b.resource(b.translate(start_patch, 48, 0), "iron-ore", function(x,y) return 500 end) -local start_copper_patch = b.resource(b.translate(start_patch, 0, -48), "copper-ore", function(x,y) return 400 end) -local start_stone_patch = b.resource(b.translate(start_patch, -48, 0), "stone", function(x,y) return 200 end) -local start_coal_patch = b.resource(b.translate(start_patch, 0, 48), "coal", function(x,y) return 300 end) +local function uranium_transform(shape) + return b.scale(shape, 0.5) +end -local start_resources = b.any({ start_iron_patch, start_copper_patch, start_stone_patch, start_coal_patch }) -local start = b.apply_entity(b.square_diamond(224), start_resources) +local function oil_transform(shape) + shape = b.scale(shape, 0.5) + return shape +end -pattern = -{ - { square, iron_circle, square, iron_circle, square, stone_circle }, - { coal_circle, square, oil_circle, square, copper_circle, square }, - { square, iron_circle, square, copper_circle, square, coal_circle }, - { stone_circle, square, uraniumn_circle, square, iron_circle, square }, - { square, iron_circle, square, oil_circle, square, copper_circle }, - { copper_circle, square, iron_circle, square, coal_circle, square }, +local ores = { + {transform = non_transform, resource = 'iron-ore', value = value(500, 0.75, 1.1), weight = 16}, + {transform = non_transform, resource = 'copper-ore', value = value(400, 0.75, 1.1), weight = 10}, + {transform = non_transform, resource = 'stone', value = value(250, 0.3, 1.05), weight = 3}, + {transform = non_transform, resource = 'coal', value = value(400, 0.8, 1.075), weight = 5}, + {transform = uranium_transform, resource = 'uranium-ore', value = value(200, 0.3, 1.025), weight = 3}, + {transform = oil_transform, resource = 'crude-oil', value = value(60000, 50, 1.025), weight = 6} } -local map = b.grid_pattern(pattern, 6, 6, 288, 288) -map = b.choose(b.rectangle(288,288), start, map) +local total_ore_weights = {} +local ore_t = 0 +for _, v in ipairs(ores) do + ore_t = ore_t + v.weight + table.insert(total_ore_weights, ore_t) +end -local path = b.path(16) -local paths = b.single_pattern(path, 288, 288) +local random_ore = Random.new(ore_seed1, ore_seed2) +local pattern = {} -map = b.any{map, paths} +for r = 1, 50 do + local row = {} + pattern[r] = row + local odd_r = (r % 2) == 1 + for c = 1, 50 do + local odd_c = (c % 2) == 1 -return map \ No newline at end of file + if odd_r == odd_c then + row[c] = square + else + local i = random_ore:next_int(1, ore_t) + index = table.binary_search(total_ore_weights, i) + if (index < 0) then + index = bit32.bnot(index) + end + local ore_data = ores[index] + + local ore_shape = ore_data.transform(ore_spider) + local ore = b.resource(ore_shape, ore_data.resource, ore_data.value) + + local shape = circle + shape = b.apply_entity(shape, ore) + + row[c] = shape + end + end +end + +local start_patch = b.scale(spider, 0.0625, 0.0625) +local start_iron_patch = + b.resource( + b.translate(start_patch, 64, 0), + 'iron-ore', + function() + return 1500 + end +) +local start_copper_patch = + b.resource( + b.translate(start_patch, 0, -64), + 'copper-ore', + function() + return 1200 + end +) +local start_stone_patch = + b.resource( + b.translate(start_patch, -64, 0), + 'stone', + function() + return 600 + end +) +local start_coal_patch = + b.resource( + b.translate(start_patch, 0, 64), + 'coal', + function() + return 1350 + end +) + +local start_resources = b.any({start_iron_patch, start_copper_patch, start_stone_patch, start_coal_patch}) +local start = b.apply_entity(b.square_diamond(254), start_resources) + +local map = b.grid_pattern(pattern, 50, 50, 288, 288) +map = b.choose(b.rectangle(288, 288), start, map) + +local paths = + b.any { + b.single_y_pattern(h_track, 288), + b.single_x_pattern(v_track, 288) +} + +local sea = b.tile('deepwater') +sea = b.fish(sea, 0.0025) + +map = b.any {map, paths, sea} + +map = b.change_map_gen_collision_tile(map, 'water-tile', 'grass-1') + +return map diff --git a/map_layout.lua b/map_layout.lua index 5d817bcd..c7ea00a1 100644 --- a/map_layout.lua +++ b/map_layout.lua @@ -70,6 +70,7 @@ local tiles_per_tick = 32 --shape = require "map_gen.presets.lines_and_squares" --shape = require "map_gen.presets.spiral_of_spirals" shape = require "map_gen.presets.crash_site" +--shape = require "map_gen.presets.dino_island" --shape = require "map_gen.presets.test" --shapes-- diff --git a/resources/regulars.lua b/resources/regulars.lua index 48c33817..d5e22252 100644 --- a/resources/regulars.lua +++ b/resources/regulars.lua @@ -22,7 +22,6 @@ return { ['Mariocraft2001'] = true, ['Namelesshunter'] = true, ['NbITUK'] = true, - ['NekoBaron'] = true, ['Newcott'] = true, ['Nexarius'] = true, ['PogomanD'] = true, @@ -168,7 +167,6 @@ return { ['leadhades27'] = true, ['legionmammal978'] = true, ['lejnel'] = true, - ['leon55'] = true, ['leviculus'] = true, ['li7ro'] = true, ['lillepallt'] = true, @@ -243,13 +241,11 @@ return { ['snerktk'] = true, ['sonopard'] = true, ['sovietdefender'] = true, - ['spacecat-chan'] = true, ['spatbee'] = true, ['stat0x00'] = true, ['steponitnicejob'] = true, ['stig219'] = true, ['struppi'] = true, - ['swampd0nkey'] = true, ['tarpon907'] = true, ['tcp'] = true, ['teondar'] = true, @@ -420,5 +416,45 @@ return { ['Schidnsepp'] = true, ['Trolzrus'] = true, ['VintageAura'] = true, - ['Recoilless'] = true + ['Recoilless'] = true, + ['SpaceCat-Chan'] = true, + ['Leon55'] = true, + ['tazzyflame'] = true, + ['zbirka'] = true, + ['sadist_hun'] = true, + ['sellarsarem'] = true, + ['LockeCorp'] = true, + ['tiesvrielink'] = true, + ['elahrairah'] = true, + ['pobiega'] = true, + ['Mr.AsianEngineer'] = true, + ['NekoBaron'] = true, + ['Pallando'] = true, + ['RedDagger'] = true, + ['Sbarando'] = true, + ['pixel-perfect'] = true, + ['Aldnoah5566'] = true, + ['LynDone'] = true, + ['PTP17'] = true, + ['Jouster'] = true, + ['Igie'] = true, + ['Bunchofrocks'] = true, + ['Mattyk87'] = true, + ['Vinerr'] = true, + ['mastah_mind'] = true, + ['Empire232'] = true, + ['Sigma1'] = true, + ['NoGames'] = true, + ['WeirdWhirl'] = true, + ['qlimax93'] = true, + ['soporis'] = true, + ['vedolv'] = true, + ['JonathanAtis'] = true, + ['SmotPokin42000'] = true, + ['Theysaywhatnow'] = true, + ['SwampD0nkey'] = true, + ['BTG'] = true, + ['Anubi5'] = true, + ['Slas'] = true, + ['McTheDerp'] = true }