From ee34a08ae5c5d056ae6f7c7ea9895caad66da910 Mon Sep 17 00:00:00 2001 From: Valansch Date: Fri, 10 Nov 2017 13:03:46 +0100 Subject: [PATCH 1/2] Imported Airs uk map --- .../grilledham_map_gen/builders.lua | 78 +- locale/gen_combined/uk.lua | 54 + locale/gen_combined/uk_data.lua | 1006 +++++++++++++++++ locale/gen_misc/rail_grid.lua | 55 +- locale/gen_ores/harmonic_gen.lua | 52 + map_layout.lua | 9 +- 6 files changed, 1247 insertions(+), 7 deletions(-) create mode 100644 locale/gen_combined/uk.lua create mode 100644 locale/gen_combined/uk_data.lua create mode 100644 locale/gen_ores/harmonic_gen.lua diff --git a/locale/gen_combined/grilledham_map_gen/builders.lua b/locale/gen_combined/grilledham_map_gen/builders.lua index eb2401e8..6fe45260 100644 --- a/locale/gen_combined/grilledham_map_gen/builders.lua +++ b/locale/gen_combined/grilledham_map_gen/builders.lua @@ -67,7 +67,61 @@ function oval_builder(x_radius, y_radius) end end -function picture_builder(data, width, height) +local tile_map = +{ + [1] = false, + [2] = true, + [3] = "concrete", + [4] = "deepwater", + [5] = "deepwater-green", + [6] = "dirt", + [7] = "dirt-dark", + [8] = "grass", + [9] = "grass-dry", + [10] = "grass-medium", + [11] = "lab-dark-1", + [12] = "lab-dark-2", + [13] = "out-of-map", + [14] = "red-desert", + [15] = "red-desert-dark", + [16] = "sand", + [17] = "sand-dark", + [18] = "stone-path", + [19] = "water", + [20] = "water-green", +} + +function decompress(pic) + local data = pic.data + local width = pic.width + local height = pic.height + + local uncompressed = {} + + for y = 1, height do + local row = data[y] + local u_row = {} + uncompressed[y] = u_row + local x = 1 + for index = 1, #row, 2 do + local pixel = tile_map[row[index]] + local count = row[index + 1] + + for i = 1, count do + u_row[x] = pixel + x = x + 1 + end + end + end + + return {width = width, height = height, data = uncompressed} +end + +function picture_builder(pic) + local data = pic.data + local width = pic.width + local height = pic.height + -- the plus one is because lua tables are one based. local half_width = math.floor(width / 2) + 1 local half_height = math.floor(height / 2) + 1 @@ -165,6 +219,26 @@ function invert(builder) end end +function throttle_x(builder, x_in, x_size) + return function(x, y, world_x, world_y) + if x % x_size < x_in then + return builder(x, y, world_x, world_y) + else + return false + end + end +end + +function throttle_y(builder, y_in, y_size) + return function(x, y, world_x, world_y) + if y % y_size < y_in then + return builder(x, y, world_x, world_y) + else + return false + end + end +end + function throttle_xy(builder, x_in, x_size, y_in, y_size) return function(x, y, world_x, world_y) if x % x_size < x_in and y % y_size < y_in then @@ -371,7 +445,7 @@ function change_map_gen_tile(builder, old_tile, new_tile) return function (local_x, local_y, world_x, world_y ) local tile, entity = builder(local_x, local_y, world_x, world_y) if type(tile) == "boolean" and tile then - local gen_tile = MAP_GEN_SURFACE.get_tile(world_x, world_y) + local gen_tile = MAP_GEN_SURFACE.get_tile(world_x, world_y).name if old_tile == gen_tile then tile = new_tile end diff --git a/locale/gen_combined/uk.lua b/locale/gen_combined/uk.lua new file mode 100644 index 00000000..e4330337 --- /dev/null +++ b/locale/gen_combined/uk.lua @@ -0,0 +1,54 @@ +require "locale.gen_combined.grilledham_map_gen.builders" + +local pic = require "locale.gen_combined.uk_data" +local pic = decompress(pic) +local map = picture_builder(pic) + +-- this changes the size of the map +map = scale(map, 2, 2) + +-- this moves the map, effectively changing the spawn point. +map = translate(map, 0, 10) + +-- this sets the tile outside the bounds of the map to deepwater, remove this and it will be void. +map = change_tile(map, false, "deepwater") + +function run_combined_module(event) + local area = event.area + local surface = event.surface + MAP_GEN_SURFACE = surface + local tiles = {} + local entities = {} + + local top_x = area.left_top.x + local top_y = area.left_top.y + + -- place tiles over the edge of chunks to reduce tile artefacts on chunk boundaries. + for y = top_y - 1, top_y + 32 do + for x = top_x - 1, top_x + 32 do + + -- local coords need to be 'centered' to allow for correct rotation and scaling. + local tile, entity = map(x + 0.5, y + 0.5, x, y) + + if type(tile) == "boolean" and not tile then + table.insert( tiles, {name = "out-of-map", position = {x, y}} ) + elseif type(tile) == "string" then + table.insert( tiles, {name = tile, position = {x, y}} ) + end + + if entity then + table.insert(entities, entity) + end + end + end + + -- set tiles. + surface.set_tiles(tiles, true) + + -- set entities + for _, v in ipairs(entities) do + if surface.can_place_entity(v) then + surface.create_entity(v) + end + end +end \ No newline at end of file diff --git a/locale/gen_combined/uk_data.lua b/locale/gen_combined/uk_data.lua new file mode 100644 index 00000000..95435ef2 --- /dev/null +++ b/locale/gen_combined/uk_data.lua @@ -0,0 +1,1006 @@ +return { +height = 1000, +width = 802, +data = { + {4,466,19,33,10,9,4,2,19,23,4,269,}, + {4,465,19,33,10,9,4,1,10,2,19,22,4,270,}, + {4,465,19,35,10,9,19,23,4,270,}, + {4,465,19,18,10,2,19,16,10,7,19,23,4,271,}, + {4,466,19,17,10,3,19,13,10,9,19,22,4,272,}, + {4,466,19,16,10,9,19,7,10,8,19,1,10,1,19,21,4,273,}, + {4,467,19,15,10,12,19,7,10,4,19,24,4,273,}, + {4,466,19,16,10,13,19,6,10,4,19,24,4,273,}, + {4,465,19,11,10,1,19,5,10,13,19,6,10,1,9,1,10,2,19,3,4,1,10,3,19,1,10,1,19,15,4,273,}, + {4,464,19,10,10,20,19,8,10,1,19,5,10,6,19,15,4,273,}, + {4,464,19,7,10,23,19,14,10,5,19,16,4,273,}, + {4,464,19,6,10,23,19,17,10,3,19,15,4,274,}, + {4,464,19,6,10,22,19,18,10,6,19,12,4,274,}, + {4,464,19,4,10,14,8,2,10,7,19,17,10,8,19,13,4,273,}, + {4,464,19,4,10,15,8,2,10,4,19,18,10,9,19,13,4,273,}, + {4,464,19,4,10,16,8,1,10,6,19,17,10,1,19,2,10,5,19,13,4,273,}, + {4,455,19,2,4,3,19,8,10,12,8,5,10,7,19,20,10,3,19,9,4,3,19,2,4,273,}, + {4,455,19,2,4,2,19,9,10,15,8,4,10,3,19,8,10,2,19,12,10,1,19,11,4,3,19,2,4,273,}, + {4,455,19,2,4,1,19,10,10,5,8,1,10,2,8,2,10,6,8,4,10,1,19,5,10,6,19,24,4,3,19,2,4,273,}, + {4,455,19,2,4,1,19,10,10,7,8,4,10,4,8,5,10,1,19,4,10,8,19,23,4,4,19,1,4,273,}, + {4,455,19,12,10,8,8,5,10,3,8,2,10,2,4,1,10,1,19,4,10,2,8,1,10,5,19,23,4,278,}, + {4,455,19,12,10,8,8,5,10,4,8,1,10,3,19,4,10,2,8,3,10,4,19,22,4,279,}, + {4,455,19,12,10,8,8,4,10,3,8,2,10,2,19,7,10,7,19,21,4,1,19,1,4,279,}, + {4,455,19,12,10,6,8,1,10,1,8,2,10,1,8,2,10,2,8,1,10,4,19,7,10,6,19,20,4,282,}, + {4,455,19,12,10,10,8,5,10,8,19,1,10,9,19,21,4,281,}, + {4,455,19,12,10,11,8,3,10,14,19,1,10,1,19,2,10,1,19,21,4,281,}, + {4,455,19,12,10,11,8,2,10,3,8,1,10,3,8,1,10,4,15,1,4,1,10,1,19,24,4,283,}, + {4,455,19,12,10,11,8,3,10,2,8,3,10,2,8,3,10,1,8,1,10,2,19,4,10,2,19,18,4,283,}, + {4,455,19,12,10,8,8,1,10,2,8,1,10,1,8,1,10,5,8,4,14,1,8,2,10,7,4,1,10,1,19,16,4,284,}, + {4,455,19,12,10,8,8,1,10,10,8,1,15,1,8,3,14,1,8,1,10,10,19,15,4,284,}, + {4,455,19,13,10,7,8,1,10,7,8,1,10,2,8,7,10,3,8,1,10,6,19,1,10,2,19,11,4,285,}, + {4,455,19,12,10,8,8,1,10,8,8,1,10,3,8,1,10,2,8,7,10,8,19,11,4,285,}, + {4,454,19,14,10,1,19,3,10,3,8,2,10,4,8,1,10,3,8,1,10,5,8,2,10,4,8,1,10,8,19,11,4,285,}, + {4,454,19,16,10,6,8,1,10,1,8,3,15,1,8,2,10,2,19,4,10,1,8,3,10,3,8,1,10,8,19,11,4,285,}, + {4,454,19,13,10,9,8,3,15,2,10,3,19,6,10,2,8,2,10,3,8,1,10,8,19,11,4,285,}, + {4,454,19,12,10,16,19,8,10,2,8,3,10,9,19,13,4,285,}, + {4,454,19,11,10,10,19,1,10,1,19,13,10,2,8,3,10,1,8,2,10,6,19,12,4,286,}, + {4,454,19,10,10,10,19,17,10,2,8,5,10,1,4,1,10,4,19,12,4,286,}, + {4,454,19,9,10,12,19,17,10,5,4,1,10,2,19,1,10,2,19,12,4,287,}, + {4,454,19,9,10,13,19,16,10,8,19,15,4,287,}, + {4,454,19,9,10,8,9,2,10,3,19,17,10,5,19,15,4,289,}, + {4,454,19,11,10,6,9,1,10,1,9,1,10,3,19,14,10,1,19,1,4,1,10,3,19,16,4,289,}, + {4,454,19,11,10,2,9,1,10,1,9,4,8,1,10,3,19,12,4,1,19,1,10,6,19,16,4,289,}, + {4,454,19,12,10,1,9,2,10,1,9,2,10,1,9,1,8,2,10,2,19,11,10,3,4,1,10,3,19,17,4,289,}, + {4,454,19,12,10,4,9,1,10,1,9,1,10,1,8,2,10,3,19,2,10,1,19,6,10,9,19,16,4,289,}, + {4,455,19,12,10,4,9,4,8,1,10,3,19,1,4,1,10,2,19,3,10,11,19,16,4,289,}, + {4,455,19,12,10,5,9,1,10,2,8,1,10,5,4,1,10,1,4,1,19,3,10,9,19,15,4,291,}, + {4,456,19,12,10,14,19,6,10,2,8,2,10,5,19,14,4,291,}, + {4,458,19,11,10,12,19,7,10,6,19,17,4,291,}, + {4,457,19,13,10,10,19,8,10,6,19,17,4,291,}, + {4,457,19,14,10,9,19,9,10,6,19,16,4,291,}, + {4,457,19,15,10,1,19,2,10,2,19,11,10,5,19,18,4,291,}, + {4,457,19,33,10,3,19,16,4,293,}, + {4,457,19,32,10,4,19,16,4,293,}, + {4,457,19,32,10,4,19,12,4,297,}, + {4,458,19,32,10,3,19,11,4,298,}, + {4,459,19,46,4,297,}, + {4,458,19,47,4,297,}, + {4,457,19,44,4,301,}, + {4,457,19,43,4,302,}, + {4,377,19,3,4,77,19,42,4,303,}, + {4,369,19,14,4,63,19,53,4,303,}, + {4,369,19,16,4,59,19,55,4,303,}, + {4,364,19,21,4,58,19,56,4,303,}, + {4,361,19,2,4,1,19,22,4,3,19,1,4,9,19,2,4,41,19,55,4,305,}, + {4,361,19,24,4,2,19,3,4,3,19,2,4,3,19,3,4,8,19,1,4,6,19,1,4,24,19,35,10,1,19,18,4,307,}, + {4,361,19,42,4,1,19,1,4,1,19,1,4,1,19,5,4,1,19,8,4,17,19,25,10,3,19,5,10,3,4,1,10,2,19,17,4,307,}, + {4,358,19,67,4,14,19,1,4,1,19,24,10,21,19,9,4,307,}, + {4,353,19,2,4,3,19,67,4,16,19,24,10,22,19,8,4,307,}, + {4,353,19,2,4,3,19,107,10,21,19,9,4,307,}, + {4,353,19,4,4,1,19,95,10,3,19,7,10,4,8,1,10,18,19,9,4,307,}, + {4,352,19,5,4,1,19,10,10,8,19,69,10,1,19,2,10,19,8,1,10,18,19,9,4,307,}, + {4,354,19,15,10,5,9,2,10,2,19,3,10,1,19,64,10,21,8,2,10,10,8,1,10,6,19,8,4,308,}, + {4,352,19,16,10,4,9,3,8,1,10,3,19,2,10,2,19,58,10,2,19,1,10,22,8,1,10,6,8,1,10,2,8,1,10,1,9,1,10,6,19,10,4,307,}, + {4,352,19,16,10,1,9,5,8,2,9,1,8,1,9,1,10,5,19,55,10,25,8,7,10,3,8,4,10,7,19,10,4,307,}, + {4,352,19,15,10,2,9,2,8,1,9,2,8,1,9,2,8,1,9,1,10,5,19,10,10,4,19,26,10,2,19,1,10,1,19,6,10,2,19,4,10,16,8,1,10,3,8,2,10,5,8,5,10,2,8,1,10,1,8,2,10,7,19,10,4,307,}, + {4,286,19,3,4,8,19,3,4,51,19,13,10,2,19,1,10,2,9,3,15,2,8,2,9,1,8,1,9,1,8,1,15,1,8,2,10,3,19,7,10,6,19,24,10,32,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,4,8,13,10,5,19,10,4,308,}, + {4,285,19,16,4,49,19,14,10,3,9,3,8,4,9,1,8,2,9,2,8,2,9,1,10,5,19,6,10,4,9,1,10,3,19,19,10,32,8,4,10,13,8,1,10,1,8,8,10,5,19,8,4,310,}, + {4,285,19,16,4,49,19,14,10,3,9,1,15,2,8,3,10,3,8,2,9,1,8,3,10,7,19,1,10,4,9,2,10,1,9,4,10,2,19,16,10,5,9,1,10,1,9,1,10,1,9,1,10,3,9,2,10,1,9,3,8,1,10,10,8,7,10,1,8,1,10,1,8,5,10,4,8,2,10,1,8,3,10,1,8,2,10,7,19,8,4,310,}, + {4,285,19,16,4,48,19,15,8,1,9,4,8,3,15,6,8,4,9,1,10,3,8,3,10,4,9,4,8,1,9,3,10,3,19,6,10,2,19,1,10,1,19,1,10,6,9,1,10,1,9,1,8,2,10,3,9,7,8,2,15,1,8,2,10,12,8,5,10,4,8,1,10,5,8,3,10,1,8,5,10,6,19,9,4,310,}, + {4,279,19,2,4,1,19,24,4,37,19,20,10,1,8,1,9,1,10,1,8,1,15,1,8,2,15,8,8,3,9,2,8,1,15,1,8,2,10,5,8,7,10,1,9,1,10,2,19,3,10,13,9,4,10,1,9,1,10,2,8,2,10,1,8,2,10,2,9,1,8,2,15,1,8,2,9,1,10,12,8,6,10,1,8,1,10,1,8,12,10,7,19,10,4,310,}, + {4,279,19,2,4,1,19,24,4,37,19,19,10,1,9,4,8,1,15,1,8,4,15,6,8,6,15,2,9,1,10,3,9,2,8,3,15,1,8,1,15,1,8,3,9,1,8,1,19,1,10,8,8,3,10,3,9,4,8,2,9,1,10,1,9,1,8,1,15,1,8,3,9,3,8,1,15,3,8,2,9,1,10,11,8,4,10,1,8,4,10,4,8,2,10,1,8,2,10,1,8,1,10,8,19,10,4,310,}, + {4,279,19,29,4,35,19,19,10,1,9,3,8,1,15,7,8,4,15,1,8,2,15,4,14,1,15,1,10,4,8,2,15,8,8,1,14,1,15,1,10,3,8,1,10,5,8,3,9,2,10,1,9,2,8,1,15,2,9,1,8,1,10,1,9,1,15,5,8,1,10,1,9,1,8,2,15,4,9,1,10,6,8,2,10,4,8,3,10,1,8,5,10,2,8,6,10,1,8,4,10,5,19,10,4,310,}, + {4,279,19,29,4,35,19,18,10,3,9,1,8,2,15,4,14,1,15,8,8,1,15,1,8,1,15,1,14,1,15,1,9,1,10,3,9,1,15,2,14,1,15,3,8,2,15,2,10,1,8,2,10,2,9,4,10,2,9,3,8,1,10,1,8,1,9,3,15,3,8,1,9,1,10,1,8,1,15,3,14,2,8,1,9,4,8,1,15,4,8,1,9,1,10,3,8,1,15,2,8,1,10,2,8,5,10,2,8,3,10,1,8,12,10,5,19,10,4,310,}, + {4,276,19,17,10,1,19,14,4,35,19,18,10,3,8,4,15,8,14,1,15,3,8,1,15,4,8,1,10,3,9,3,15,9,10,2,9,1,10,4,9,1,8,1,9,2,8,5,9,1,8,2,15,4,8,1,9,1,10,1,8,1,15,2,14,3,8,1,9,1,8,2,9,1,15,5,8,2,10,2,8,2,15,3,8,8,10,2,8,5,10,4,8,3,10,2,8,1,10,6,19,9,4,310,}, + {4,273,19,18,10,4,19,13,4,35,19,18,10,1,8,1,15,1,8,4,15,10,8,3,15,1,14,2,15,1,9,1,10,3,9,1,10,1,9,1,15,9,9,1,8,1,9,3,8,1,9,1,8,1,9,1,10,1,9,1,8,5,9,1,8,1,15,4,8,2,10,2,8,1,15,1,14,1,15,3,8,3,15,1,8,1,15,6,8,1,9,2,8,1,15,2,8,1,15,2,8,13,10,6,8,2,10,3,8,4,10,2,19,9,4,310,}, + {4,249,19,8,4,16,19,16,10,7,19,12,4,33,19,20,10,1,8,1,15,2,8,3,15,1,8,2,15,1,14,3,15,3,8,2,15,2,14,2,15,1,10,3,9,1,15,1,9,2,15,4,14,3,15,2,10,1,8,1,9,1,10,1,9,1,8,4,9,1,10,1,9,1,15,2,8,5,15,2,14,1,15,1,8,1,10,2,8,1,15,1,14,3,15,1,8,3,15,8,8,3,15,3,8,3,15,2,8,12,10,5,8,1,10,4,8,2,10,4,19,9,4,310,}, + {4,249,19,8,4,16,19,16,10,7,19,12,4,33,19,21,10,3,15,1,8,1,15,2,14,3,15,1,14,1,15,2,8,1,15,2,14,1,16,1,14,1,15,1,8,1,10,2,9,1,8,1,14,2,9,2,8,1,14,1,15,6,8,1,10,1,9,1,8,4,15,2,14,1,8,1,10,1,9,1,15,1,14,1,15,1,8,2,9,1,8,2,15,2,14,2,15,1,14,1,8,1,15,1,14,1,15,2,8,1,15,1,8,2,15,2,14,1,15,1,14,1,15,5,14,1,15,5,8,1,15,1,14,1,8,6,10,1,8,3,10,2,8,2,10,3,8,1,10,4,8,3,10,5,19,7,4,310,}, + {4,201,19,4,4,4,19,13,4,28,19,37,10,2,9,1,10,1,9,2,10,3,19,13,4,33,19,20,10,3,9,1,8,1,15,10,8,1,15,1,14,1,16,1,14,2,9,1,10,2,9,1,15,1,14,1,15,1,9,1,10,1,15,4,14,3,15,1,8,1,10,1,8,3,15,4,14,1,8,1,9,1,8,1,14,1,15,2,8,5,15,1,8,1,15,1,8,1,14,7,15,1,8,2,15,3,14,1,15,1,14,1,15,9,14,1,9,2,8,3,10,1,8,2,10,3,8,2,10,2,8,3,10,2,8,3,10,3,8,2,10,1,8,1,10,4,19,6,4,311,}, + {4,204,19,21,4,24,19,36,10,2,9,4,8,1,15,1,8,2,10,2,19,12,4,33,19,20,10,4,9,2,15,1,8,1,15,3,8,2,15,1,8,1,15,2,14,3,8,1,9,1,10,1,9,1,8,1,15,2,9,1,10,2,15,8,8,1,9,1,8,2,15,1,14,1,15,2,14,2,8,1,9,2,15,3,8,9,14,2,15,1,14,3,15,2,8,4,15,10,8,1,15,3,8,4,10,3,8,2,10,1,8,2,10,4,8,7,10,1,8,5,10,5,19,7,4,310,}, + {4,204,19,21,4,22,19,37,10,2,9,1,8,1,9,1,15,2,8,2,15,1,8,1,10,2,19,12,4,33,19,21,10,2,9,1,10,2,9,1,15,3,8,6,15,1,14,3,8,4,15,3,10,1,9,1,8,1,15,1,14,1,15,3,14,1,15,1,8,4,15,2,14,1,8,1,15,1,14,2,8,3,15,4,8,2,15,2,8,2,10,1,8,1,15,1,8,1,15,1,14,4,15,1,8,4,15,3,8,1,15,4,8,4,15,2,8,3,10,3,8,6,10,3,8,8,10,3,8,3,10,5,19,10,4,307,}, + {4,201,19,24,4,22,19,35,10,3,9,1,15,4,8,5,9,2,10,1,19,11,4,31,19,23,10,1,8,2,15,1,9,2,15,2,8,1,15,1,8,3,9,1,8,1,14,3,15,6,14,1,15,1,9,1,8,1,15,6,14,1,15,2,8,1,15,2,8,3,15,2,14,2,8,3,15,4,8,1,15,5,8,2,9,1,8,1,15,1,14,4,15,1,8,4,15,5,8,1,15,1,8,2,15,1,8,1,15,1,8,1,15,1,8,2,9,1,10,3,8,1,15,1,14,1,15,1,8,2,10,3,8,1,15,1,8,6,10,3,8,1,10,7,19,11,4,306,}, + {4,198,19,30,4,18,19,36,10,2,9,2,8,1,15,2,8,1,15,5,8,2,9,1,19,11,4,30,19,23,10,1,8,2,15,3,9,1,15,1,8,2,15,2,8,3,9,1,15,1,14,3,15,1,8,1,15,3,14,1,15,1,9,2,8,1,9,1,8,2,15,2,14,2,15,4,8,1,9,1,8,3,15,2,8,2,15,1,14,1,15,3,8,1,15,2,14,2,15,1,8,2,10,1,8,1,15,3,8,1,15,1,8,2,15,1,8,3,15,6,8,1,15,4,8,1,15,1,8,2,9,1,10,2,8,2,15,2,8,3,9,2,8,2,15,2,8,4,10,11,19,12,4,306,}, + {4,197,19,33,4,14,19,37,10,2,9,1,8,1,15,1,8,3,15,4,8,4,10,1,19,12,4,29,19,23,10,1,8,1,9,2,8,7,15,1,14,2,15,3,14,1,17,1,14,1,8,1,9,1,8,2,15,3,9,1,8,2,15,1,10,1,8,1,15,2,14,1,15,3,8,4,15,1,10,1,9,1,8,1,15,1,8,1,15,2,14,1,15,3,8,1,15,1,14,3,15,1,8,1,10,1,8,3,15,2,9,1,10,2,8,1,9,1,8,1,15,4,14,1,15,2,8,3,9,1,8,2,15,1,8,8,14,1,15,3,8,7,15,2,8,2,10,11,19,11,4,307,}, + {4,197,19,34,4,12,19,37,10,3,9,1,15,1,8,1,15,1,8,2,15,3,8,1,9,1,10,1,9,2,10,1,19,12,4,29,19,21,10,6,9,2,15,1,9,1,14,1,15,1,8,1,15,1,14,1,16,1,14,3,15,1,14,1,15,1,8,2,14,1,8,3,15,1,8,1,15,1,14,2,15,1,8,1,15,1,14,1,15,1,8,2,15,1,8,3,15,2,10,1,8,1,14,3,15,1,14,4,15,1,8,1,15,1,14,2,15,2,8,5,15,2,9,1,10,1,9,1,10,2,8,2,15,1,14,1,15,4,8,1,15,2,10,1,8,3,9,3,8,2,15,1,8,1,15,9,8,5,9,1,8,1,10,5,8,2,10,4,19,12,4,306,}, + {4,197,19,35,4,11,19,36,10,1,9,2,8,2,15,2,8,1,15,6,9,3,10,1,19,13,4,29,19,21,10,6,8,1,15,4,8,2,15,1,14,1,16,2,15,1,8,1,15,3,8,1,15,1,8,1,15,2,8,1,15,3,14,1,17,1,14,1,15,1,14,2,15,1,8,3,15,5,10,1,8,1,14,1,17,1,14,6,15,3,14,2,15,1,8,2,15,1,9,1,15,1,8,2,14,1,15,1,8,3,10,1,8,1,9,2,15,1,8,1,10,1,8,3,15,2,10,1,8,1,15,1,8,1,10,3,9,1,10,1,15,6,14,1,15,7,9,1,10,2,8,1,10,1,9,1,8,2,10,6,19,12,4,307,}, + {4,193,19,38,4,8,19,2,4,1,19,35,10,2,9,3,8,3,15,1,14,1,15,1,8,1,15,3,8,3,9,1,10,1,19,16,4,24,19,22,10,7,8,1,15,2,8,1,15,1,8,2,15,2,14,1,16,2,14,2,15,3,8,1,15,2,14,1,15,3,8,1,15,1,14,5,15,1,8,2,15,1,14,2,15,2,14,1,9,1,8,1,14,2,17,1,14,4,15,3,14,4,15,4,9,2,8,1,15,5,8,3,10,1,15,2,8,2,15,2,14,1,15,1,9,3,10,2,8,2,9,1,10,1,15,7,8,1,15,4,8,4,10,1,9,1,8,4,10,6,19,14,4,305,}, + {4,193,19,38,4,8,19,37,10,3,9,1,8,3,15,2,14,2,15,2,14,2,15,2,8,2,10,2,19,16,4,24,19,19,4,1,10,3,9,2,8,1,9,3,8,1,15,4,8,1,15,3,14,1,16,2,17,1,14,1,15,2,8,1,15,9,14,6,15,3,14,3,15,1,14,1,10,1,8,1,14,7,15,3,14,5,15,3,8,2,15,4,14,2,15,1,14,1,15,2,14,1,15,4,14,1,15,1,8,1,10,3,9,2,8,3,15,1,14,1,15,2,8,2,15,2,8,3,15,1,8,5,10,2,8,4,10,5,19,15,4,305,}, + {4,193,19,40,4,5,19,37,10,4,9,1,15,1,8,2,15,1,14,3,15,1,14,4,15,1,8,2,10,2,19,16,4,24,19,18,10,1,4,1,9,3,15,1,9,2,8,1,15,1,8,1,9,1,8,1,14,2,15,1,8,1,15,3,8,1,15,1,14,3,15,1,8,2,15,2,14,2,15,2,14,2,15,1,14,1,15,2,14,3,15,3,14,5,10,1,8,1,14,1,15,2,14,3,15,1,14,7,15,3,8,1,15,2,8,1,15,1,14,1,15,1,14,7,15,5,8,1,9,1,10,1,9,1,10,2,9,1,8,2,15,1,14,3,15,2,8,3,15,2,8,8,10,10,19,15,4,305,}, + {4,193,19,42,4,2,19,38,10,1,8,1,9,3,8,3,15,2,14,1,15,1,14,5,15,1,8,1,9,1,10,2,19,16,4,24,19,21,9,2,10,1,9,1,8,2,15,1,8,1,9,2,14,2,15,3,14,1,16,1,14,2,15,1,14,3,15,5,14,3,15,1,14,2,7,1,14,5,15,3,14,5,15,1,14,7,15,1,14,4,15,1,14,3,15,5,8,1,15,1,14,7,15,1,14,1,15,3,14,1,15,2,8,1,15,1,8,2,10,1,8,1,15,1,8,1,15,2,14,2,15,2,8,3,15,3,8,7,10,9,19,16,4,305,}, + {4,193,19,79,10,5,8,1,15,2,8,3,15,4,14,4,15,2,8,2,9,2,19,16,4,22,19,23,9,4,15,2,8,1,15,1,8,2,15,1,8,1,15,3,14,2,17,1,14,8,15,3,14,3,15,3,14,8,17,1,14,1,8,4,14,6,7,1,15,1,14,9,15,4,8,2,15,1,14,2,15,3,8,3,14,3,15,6,8,2,15,14,8,4,9,1,10,1,9,1,8,1,10,9,19,16,4,305,}, + {4,193,19,75,10,7,8,1,9,2,8,1,15,1,14,1,8,1,15,1,8,2,15,1,14,3,15,3,8,5,10,1,19,15,4,21,19,23,10,2,9,3,8,1,15,1,8,1,15,5,8,4,15,1,14,5,17,1,14,4,15,1,14,3,15,1,14,6,15,2,14,2,17,1,15,7,14,1,7,1,14,2,7,1,15,2,14,10,15,1,8,2,15,1,8,1,15,1,14,3,15,1,8,4,15,4,14,2,15,5,14,1,15,4,8,1,15,8,8,4,10,3,8,2,10,6,19,16,4,307,}, + {4,193,19,74,10,2,8,1,10,4,9,1,8,1,9,1,15,6,8,2,15,1,14,3,15,2,8,1,15,1,8,2,10,2,19,16,4,21,19,24,10,1,9,1,15,1,8,4,15,2,14,1,15,2,9,1,10,3,8,1,15,2,14,1,15,1,14,6,15,6,14,4,15,2,14,4,8,1,15,1,14,9,15,1,8,1,15,1,14,10,15,1,8,2,14,1,15,1,14,2,15,1,14,1,8,1,15,2,8,1,10,1,15,4,14,1,15,1,14,4,15,4,8,1,15,9,8,6,10,1,8,3,10,5,19,17,4,307,}, + {4,193,19,72,10,4,9,1,8,3,10,1,9,1,8,1,15,1,14,1,15,6,8,2,15,9,10,2,19,16,4,21,19,24,10,1,9,1,8,1,15,1,8,4,15,3,14,1,15,3,8,1,15,1,14,3,15,1,8,1,14,3,15,1,9,1,8,4,15,2,14,2,15,1,8,2,15,1,14,2,15,1,8,2,15,1,8,2,14,1,17,2,14,3,15,1,8,1,10,1,14,7,17,2,14,2,15,2,14,5,15,1,8,1,10,1,8,1,14,1,15,1,10,1,15,5,8,1,15,1,14,2,15,2,14,1,15,2,8,2,15,8,8,3,10,2,8,4,10,6,19,17,4,307,}, + {4,191,19,72,10,3,8,3,9,1,8,3,9,1,10,1,9,1,8,1,15,2,14,1,15,5,8,1,15,2,14,1,15,5,10,2,19,17,4,20,19,26,10,1,9,1,15,3,8,2,15,2,8,5,15,1,8,2,15,4,14,3,15,1,14,1,15,2,8,1,15,4,14,1,15,4,14,12,15,3,8,3,15,1,14,2,15,1,8,1,9,1,8,1,15,1,14,2,15,3,14,3,15,1,14,1,15,3,14,2,15,1,8,1,15,7,14,2,15,1,14,2,15,9,8,5,10,1,8,4,10,6,19,20,4,305,}, + {4,192,19,69,10,3,8,5,9,1,8,4,9,1,8,1,15,1,14,1,15,1,14,2,15,3,8,1,15,7,14,1,15,1,10,1,19,18,4,20,19,26,10,2,15,2,8,1,15,5,8,3,10,1,9,1,8,4,14,7,15,10,14,13,8,2,15,4,14,3,8,1,15,1,8,1,10,1,9,1,8,1,15,1,14,7,8,2,14,1,15,3,14,1,15,2,8,1,15,19,8,6,10,4,8,1,10,5,19,16,4,1,19,4,4,305,}, + {4,192,19,68,10,2,9,1,8,1,15,1,8,5,9,1,8,2,15,1,8,1,15,4,14,2,15,12,8,1,10,1,19,18,4,19,19,27,10,2,8,1,15,1,14,2,15,4,14,1,15,1,8,1,9,5,8,1,15,1,14,2,17,1,14,3,15,2,14,1,15,5,14,13,15,1,8,1,10,1,8,1,15,6,8,3,9,1,10,2,15,1,14,6,15,1,14,1,8,1,10,1,15,2,14,2,15,9,14,1,15,8,14,2,15,2,8,7,10,2,8,1,10,6,19,17,4,1,19,4,4,305,}, + {4,192,19,67,10,1,9,1,15,1,9,1,15,2,8,7,15,5,14,2,15,2,14,1,15,4,14,2,15,1,8,1,15,3,9,1,19,19,4,19,19,28,10,1,15,1,14,5,15,2,8,1,15,1,14,3,15,1,9,1,10,1,9,1,15,1,14,6,15,1,8,1,15,2,8,1,15,2,14,1,15,1,14,11,15,1,10,1,9,1,14,1,15,1,14,2,15,1,8,1,10,3,9,1,10,2,9,1,10,1,9,1,14,3,15,5,8,3,15,1,14,1,15,2,8,1,15,1,8,1,15,6,14,1,15,7,14,1,15,2,8,1,15,1,8,6,10,7,19,18,4,3,19,3,4,305,}, + {4,192,19,67,10,1,9,1,15,5,8,4,15,5,14,2,15,1,14,5,15,3,14,2,15,3,8,1,10,2,19,19,4,18,19,29,10,1,8,2,9,2,8,1,15,6,9,1,8,1,15,1,14,1,9,2,8,2,15,1,8,1,15,1,14,2,15,1,8,2,9,1,8,2,15,1,14,1,15,1,14,8,15,1,10,1,8,3,15,1,14,5,9,1,10,2,9,1,10,2,8,1,15,1,9,1,10,1,8,1,15,3,14,3,15,25,14,1,15,2,8,7,10,5,19,20,4,5,19,2,4,305,}, + {4,192,19,67,9,2,8,2,15,2,8,2,15,8,14,2,15,2,14,2,15,1,14,5,15,2,14,1,15,1,9,1,19,21,4,18,19,30,10,1,9,1,10,2,8,1,15,5,8,1,10,1,9,1,15,2,8,1,9,2,8,1,15,3,14,2,15,4,8,2,15,2,14,8,15,1,8,1,15,1,8,1,15,2,14,6,15,1,9,3,8,3,15,2,9,1,10,1,8,1,15,1,8,1,14,3,15,8,8,2,15,17,8,6,10,6,19,20,4,6,19,2,4,305,}, + {4,192,19,63,10,2,19,2,10,1,9,1,8,1,9,1,8,3,15,7,14,8,15,2,14,3,15,3,8,2,10,1,19,21,4,18,19,30,10,3,9,2,8,2,15,2,8,3,15,1,8,1,15,1,8,2,9,2,14,1,15,1,14,1,15,3,14,3,15,4,14,5,15,1,14,2,15,1,7,1,14,5,15,1,14,5,15,1,8,2,14,1,15,1,8,2,15,2,8,1,15,2,8,1,14,3,15,5,14,2,15,1,8,1,15,2,14,1,15,1,14,1,15,12,8,7,10,5,19,21,4,6,19,2,4,305,}, + {4,192,19,63,10,1,9,1,19,2,10,1,9,1,8,5,15,2,8,1,15,2,14,1,15,1,14,3,15,1,14,4,8,1,15,1,14,3,15,2,8,1,10,1,19,7,4,3,19,13,4,18,19,21,10,2,19,2,10,1,19,4,9,1,10,7,8,1,15,2,9,1,14,1,15,3,8,1,9,2,14,3,15,1,9,1,15,1,14,3,15,2,14,1,15,2,14,3,15,2,14,3,15,3,8,3,15,1,14,5,15,2,14,10,8,1,15,1,14,4,15,1,8,1,15,11,14,1,15,9,8,4,9,1,10,1,8,1,10,4,19,22,4,7,19,2,4,305,}, + {4,191,19,64,10,1,9,1,10,4,15,3,9,1,8,2,15,1,8,2,15,4,14,10,15,1,8,1,15,2,8,1,10,1,19,7,9,1,10,2,19,17,4,12,19,16,10,5,19,4,10,3,19,1,10,1,9,1,10,1,9,1,8,1,10,6,9,2,8,2,9,1,8,1,15,1,8,1,15,2,8,2,15,1,10,2,14,1,15,4,14,2,15,3,14,3,15,1,14,1,15,1,14,3,8,1,10,1,8,2,15,1,14,19,15,2,14,4,15,2,14,1,15,5,8,1,15,11,8,1,15,1,8,6,10,3,19,25,4,313,}, + {4,191,19,64,10,2,9,1,10,3,9,1,8,1,15,1,8,4,15,3,14,1,15,5,14,5,7,1,15,1,14,1,8,4,10,1,19,4,10,3,9,1,8,1,10,1,19,17,4,12,19,15,10,3,8,1,10,11,8,1,15,1,8,1,15,1,9,1,10,1,9,1,8,1,9,1,10,2,9,1,15,1,14,1,15,1,8,4,15,2,8,1,15,1,8,2,15,3,14,3,15,3,14,9,8,2,15,3,14,4,15,1,8,1,15,2,14,19,15,1,8,1,15,2,14,2,15,4,8,5,15,3,8,2,9,1,8,5,10,3,19,24,4,315,}, + {4,191,19,54,9,2,10,2,19,2,10,1,19,4,10,1,8,1,9,1,10,3,9,1,15,1,9,1,15,1,8,2,15,2,14,10,15,1,14,1,15,3,8,2,14,1,15,1,19,4,10,3,9,1,8,1,9,1,19,18,4,12,19,16,10,1,8,1,15,2,10,3,9,2,10,3,9,1,10,1,9,1,15,1,14,1,15,2,8,1,9,2,8,2,10,1,9,1,15,1,14,2,8,3,15,2,8,6,15,4,8,1,15,2,14,10,8,1,15,1,14,5,8,2,15,2,8,1,15,1,14,3,15,2,14,2,15,1,14,6,15,1,14,4,8,1,10,1,8,1,14,5,15,2,8,3,15,1,8,1,15,2,8,3,9,4,10,5,19,23,4,316,}, + {4,192,19,53,9,1,14,1,15,1,8,1,10,4,19,3,9,1,8,1,9,2,10,2,9,1,15,3,8,3,15,1,14,10,15,4,8,2,14,3,19,4,10,2,15,2,9,2,19,18,4,11,19,17,10,2,15,2,8,1,9,1,8,1,9,2,10,2,9,1,10,2,9,1,8,1,15,2,14,1,15,2,8,2,15,1,9,1,10,1,9,1,15,1,8,3,15,1,14,1,15,3,8,2,15,1,8,1,14,2,15,1,8,1,9,1,8,1,15,2,14,1,15,2,14,5,15,2,14,5,8,2,15,1,14,4,15,2,14,1,15,4,14,8,15,1,14,1,15,2,8,1,10,1,8,1,14,4,15,5,14,2,15,2,8,2,9,1,10,1,9,2,10,6,19,21,4,319,}, + {4,192,19,53,8,1,15,3,8,2,15,1,14,1,9,1,10,1,9,1,14,1,8,3,15,1,10,2,9,1,15,3,8,1,15,1,14,8,15,3,14,1,15,2,8,1,15,4,14,1,8,1,10,2,8,1,15,5,10,1,19,18,4,10,19,19,10,1,8,2,9,1,8,1,9,8,8,1,15,1,8,2,15,4,8,1,9,1,15,1,8,2,15,3,14,3,15,3,8,1,15,4,14,2,15,1,8,1,15,5,14,6,15,1,14,4,15,1,8,2,15,2,14,3,15,2,8,1,14,1,15,3,14,1,15,1,14,6,15,5,8,1,15,2,14,1,15,1,14,3,15,2,14,1,15,1,14,2,15,2,8,4,9,2,10,6,19,19,4,321,}, + {4,192,19,52,10,1,15,4,8,3,15,1,10,7,8,1,10,2,9,1,15,5,14,2,15,2,14,3,15,4,14,1,15,2,8,4,15,1,8,2,10,2,15,1,14,1,15,2,9,1,10,2,19,18,4,10,19,20,9,1,8,1,10,2,8,4,9,3,8,2,15,7,8,2,9,1,8,5,15,1,14,1,15,5,14,2,8,1,15,2,14,3,15,1,8,1,15,3,14,9,15,2,8,1,15,7,14,2,15,1,14,1,15,6,14,1,15,8,8,1,15,4,14,1,15,11,8,4,9,3,10,4,19,20,4,321,}, + {4,193,19,51,10,1,15,1,14,2,15,1,8,3,10,7,9,1,10,3,9,2,15,4,14,2,15,2,14,5,15,2,14,1,15,1,14,1,8,1,10,3,8,2,10,2,9,1,8,1,15,2,8,1,9,1,19,20,4,9,19,21,10,1,8,2,10,1,8,4,9,1,8,5,15,8,14,2,15,1,8,4,15,1,8,2,15,3,14,2,8,1,15,1,14,1,15,3,8,1,9,1,15,1,14,3,15,1,14,6,15,1,8,2,15,1,14,2,15,2,14,1,15,1,14,2,15,19,8,1,15,11,8,1,15,3,8,3,9,2,10,5,19,19,4,323,}, + {4,193,19,51,10,1,15,1,14,2,8,1,15,3,10,5,8,1,15,1,14,1,15,1,10,4,8,1,15,6,14,7,8,1,15,4,8,1,10,2,19,1,10,3,19,1,8,1,9,3,19,21,4,9,19,22,9,1,8,3,9,3,15,3,8,1,9,1,8,1,9,2,8,1,15,1,14,4,16,2,14,1,15,4,8,4,15,1,14,3,8,1,15,1,14,1,15,3,8,1,9,1,8,1,14,2,15,4,14,3,8,2,15,3,14,6,15,3,8,1,15,5,14,1,15,2,14,3,15,5,14,1,15,3,14,1,15,12,8,1,9,4,10,5,19,18,4,324,}, + {4,193,19,49,9,1,8,2,16,1,14,1,8,1,9,1,8,1,15,1,8,1,15,1,8,2,10,1,9,1,15,6,9,1,10,1,8,1,14,2,15,3,14,7,15,1,8,1,15,1,14,1,15,3,10,2,19,6,10,2,19,22,4,8,19,24,10,3,8,2,9,1,8,1,15,2,8,2,9,2,10,4,8,1,14,1,15,1,14,6,8,1,10,1,8,3,15,3,9,1,10,1,8,3,15,3,8,1,15,4,14,2,8,1,10,1,8,2,15,6,14,1,15,2,14,1,15,5,8,1,15,7,14,1,15,4,14,3,15,1,14,1,15,10,14,1,15,5,8,1,9,1,10,6,19,16,4,327,}, + {4,193,19,49,10,1,15,2,14,2,9,2,8,1,14,2,15,3,8,1,15,7,8,1,9,1,15,1,14,1,15,5,14,1,15,1,14,5,15,3,8,2,15,1,10,1,19,27,4,1,19,3,4,8,19,24,10,4,9,2,8,1,15,2,8,3,9,2,8,1,9,1,10,1,9,1,8,1,9,1,15,1,14,2,15,1,14,2,15,1,8,4,15,1,8,4,10,2,8,2,15,1,8,2,15,1,14,2,15,2,14,1,8,1,10,1,8,1,15,1,8,1,15,1,14,4,15,3,14,4,15,14,14,5,15,6,8,1,15,8,8,3,9,2,10,4,19,17,4,327,}, + {4,193,19,49,8,1,14,1,8,1,15,1,8,1,9,2,8,1,15,1,14,1,8,1,15,1,9,1,8,1,15,14,8,2,15,2,14,5,15,1,8,2,9,1,8,1,15,1,8,1,10,1,19,26,4,1,19,3,4,8,19,24,10,3,8,3,9,1,8,1,15,1,8,1,15,2,8,2,15,2,9,2,10,2,15,4,14,3,15,1,8,8,10,1,9,1,10,2,9,2,8,1,14,4,15,1,14,1,8,1,10,1,8,4,15,2,14,4,15,1,14,1,15,1,14,5,15,6,14,1,15,4,14,6,15,3,8,3,15,7,8,5,10,4,19,18,4,327,}, + {4,194,19,47,10,2,15,5,9,3,15,3,10,1,9,1,15,6,8,1,15,1,8,2,15,1,14,3,15,2,14,1,15,6,8,5,15,1,8,1,10,1,19,26,4,1,19,3,4,8,19,24,10,5,8,1,9,1,8,1,15,5,8,5,9,1,10,1,15,1,14,1,15,1,14,2,17,1,14,1,15,3,8,2,15,2,8,1,15,1,8,2,10,5,15,1,14,5,15,1,8,1,10,1,8,1,15,1,8,1,10,1,15,1,14,1,15,1,14,3,15,5,14,3,15,2,14,2,15,5,14,6,15,4,8,7,15,3,8,2,9,3,10,2,19,20,4,327,}, + {4,196,19,45,10,1,8,2,15,1,8,2,15,1,8,2,9,2,15,2,9,2,15,6,8,2,15,1,8,1,15,1,14,6,15,2,8,1,15,3,8,3,15,1,8,1,10,2,19,27,4,1,19,3,4,6,19,29,10,2,9,3,8,1,15,4,8,4,15,4,14,1,15,2,14,1,17,2,14,3,8,1,15,1,14,2,15,2,8,1,15,1,8,3,10,2,8,1,14,5,15,1,8,1,9,1,8,1,14,1,8,1,10,1,8,1,15,2,14,2,15,3,8,4,14,6,15,5,14,5,15,4,8,2,9,2,8,6,9,2,10,5,19,21,4,327,}, + {4,197,19,43,10,1,8,2,15,2,9,1,8,1,15,3,8,2,15,1,8,1,9,2,8,1,15,1,8,1,15,1,8,5,15,3,14,6,15,1,8,2,15,1,8,6,10,2,19,27,4,1,19,3,4,6,19,28,10,3,9,2,8,2,15,3,8,2,15,1,8,4,15,5,14,2,16,3,14,1,15,2,14,2,15,2,8,1,15,3,8,1,9,1,10,2,14,6,15,1,8,1,10,1,8,2,9,1,8,1,15,1,14,2,15,1,14,1,15,6,14,4,15,7,14,4,15,1,14,2,15,1,8,2,9,1,10,3,9,1,8,1,9,1,10,4,9,1,10,4,19,21,4,327,}, + {4,198,19,42,4,1,8,1,14,1,15,2,8,2,15,1,14,1,15,1,8,6,9,1,8,5,15,2,8,1,15,1,8,1,15,1,14,2,15,1,8,1,15,1,14,2,15,1,8,3,9,2,8,1,10,2,9,2,10,1,19,26,4,1,19,3,4,6,19,28,10,1,8,1,9,1,8,4,15,2,8,2,15,3,8,2,15,6,14,2,16,3,14,1,15,11,8,2,10,1,9,1,15,1,14,5,8,1,10,1,8,4,14,5,15,1,14,3,15,1,14,5,15,1,8,2,15,4,14,6,15,3,8,1,10,1,9,3,10,1,8,1,9,1,10,8,19,18,4,2,19,2,4,327,}, + {4,199,19,41,4,1,8,1,15,4,14,2,8,1,15,1,8,3,15,1,8,1,15,1,8,1,15,7,8,1,9,1,8,2,15,1,8,3,15,1,14,2,8,3,9,1,8,3,10,4,19,27,4,1,19,3,4,6,19,29,10,1,9,2,8,1,15,1,8,1,15,2,8,3,15,4,14,1,15,6,14,2,17,1,14,2,15,3,8,1,15,1,14,1,15,1,8,1,15,2,8,1,15,3,10,1,15,1,14,6,8,4,15,2,14,4,15,4,14,2,15,1,14,1,15,1,8,4,15,8,14,1,15,2,8,1,15,2,8,4,9,1,10,9,19,19,4,2,19,2,4,327,}, + {4,201,19,39,10,1,8,1,15,4,14,1,15,2,8,3,15,3,8,2,14,2,15,1,14,3,8,1,9,1,15,1,8,4,10,1,9,1,15,1,14,1,15,1,8,3,15,2,9,1,10,4,19,27,4,9,19,31,10,1,8,4,15,1,8,1,14,1,15,1,8,4,15,1,14,3,15,4,14,4,17,1,14,1,8,3,15,2,14,2,15,3,8,1,15,2,14,1,8,1,10,2,15,1,14,5,15,1,9,1,10,1,9,2,15,4,14,2,15,3,14,1,17,1,14,3,15,4,8,1,15,6,14,1,15,1,14,1,15,3,8,3,10,1,9,1,8,1,10,5,19,19,4,334,}, + {4,201,19,40,9,1,8,1,15,2,14,3,15,5,14,2,15,1,8,1,14,4,15,1,8,7,15,1,9,1,8,1,15,2,8,3,9,1,10,7,19,27,4,9,19,22,10,1,19,8,9,1,8,1,15,4,8,1,15,2,14,3,15,1,8,1,14,3,15,2,8,1,15,1,14,2,15,2,14,3,15,1,8,2,14,4,15,1,14,1,15,2,14,2,15,1,8,1,10,2,8,2,14,3,15,1,8,1,9,3,8,1,15,1,14,5,15,1,14,7,15,3,8,2,14,3,15,10,8,1,9,1,10,6,19,20,4,334,}, + {4,211,19,30,10,1,8,1,15,1,14,7,15,2,14,2,15,3,14,2,15,1,8,2,9,2,8,2,15,2,14,1,8,1,9,2,8,1,9,4,10,4,9,1,10,3,19,26,4,9,19,21,10,3,19,7,10,1,8,2,15,3,14,1,15,3,14,2,15,2,14,3,15,2,14,4,15,2,14,3,15,2,14,7,15,6,8,1,10,2,9,1,15,4,8,2,9,1,10,2,8,1,14,2,15,1,14,4,15,1,14,4,15,1,8,3,9,1,8,1,15,1,14,3,8,1,15,4,8,2,15,1,8,1,9,1,10,6,19,21,4,334,}, + {4,213,19,27,4,1,10,2,14,3,15,1,14,1,15,4,14,1,15,3,14,2,15,3,8,2,10,2,8,1,15,1,14,1,15,3,8,1,9,3,10,1,8,1,15,1,8,2,15,1,10,1,8,2,10,1,15,1,10,1,19,26,4,7,19,22,10,4,19,4,10,2,8,2,9,3,8,1,15,2,8,2,15,1,14,2,15,1,8,1,15,1,14,1,15,3,14,7,15,2,14,8,15,3,14,1,15,1,14,1,15,2,10,2,9,1,8,3,15,1,8,1,10,3,9,1,14,2,15,2,14,2,15,1,14,4,15,2,8,1,10,3,8,1,15,2,14,1,15,2,8,2,15,2,8,3,9,1,10,7,19,20,4,335,}, + {4,214,19,26,4,1,10,1,8,1,14,3,15,3,9,2,8,1,14,1,15,3,14,2,15,1,8,2,9,2,8,2,15,8,8,5,9,1,8,1,15,1,8,1,15,2,8,1,14,1,10,1,19,26,4,6,19,22,10,2,8,1,9,2,10,6,8,2,9,1,10,3,9,1,14,1,8,1,15,2,8,1,15,1,8,1,9,1,8,1,15,1,8,1,15,3,14,3,15,1,14,1,15,6,14,6,15,4,14,1,15,2,10,4,8,1,15,1,8,1,10,4,8,1,14,3,15,5,14,4,15,1,8,1,9,1,10,2,8,9,14,1,15,2,8,1,9,1,8,1,9,2,10,3,19,19,4,337,}, + {4,214,19,26,4,1,19,1,10,1,8,1,15,2,8,1,15,2,9,4,15,4,14,1,15,2,9,2,8,1,14,3,15,3,14,1,15,1,8,1,15,4,9,1,8,4,15,1,8,2,15,1,9,1,19,28,4,5,19,22,10,1,8,3,15,1,8,1,15,1,9,1,10,1,9,2,8,2,9,1,10,3,9,1,14,1,8,1,15,1,8,3,9,3,8,2,15,5,8,5,15,5,14,6,15,5,8,1,9,1,10,4,8,2,10,4,9,1,14,4,15,6,14,1,15,2,8,2,9,1,8,3,9,1,8,1,9,1,8,5,15,3,8,1,9,2,10,2,19,21,4,337,}, + {4,214,19,30,10,2,9,1,15,1,14,1,15,2,9,3,15,1,14,1,15,3,9,1,10,1,8,1,14,4,15,4,8,1,9,1,8,1,15,1,9,2,8,2,15,3,8,2,9,3,19,29,4,4,19,23,10,1,8,2,15,4,9,1,8,1,15,2,8,1,9,3,8,5,15,2,8,7,15,1,14,1,15,1,8,1,10,2,9,2,8,1,15,3,8,1,15,5,14,1,15,1,8,2,15,4,8,3,10,5,8,1,10,2,8,1,14,4,15,3,8,1,15,4,8,6,9,1,8,2,9,2,8,7,9,1,10,3,19,20,4,339,}, + {4,214,19,31,10,1,8,1,9,2,15,1,8,1,15,7,8,1,10,2,8,1,15,5,8,1,9,7,8,1,15,3,14,1,15,2,8,1,9,1,8,1,10,1,19,29,4,4,19,23,10,3,8,2,15,1,8,1,9,1,8,1,15,2,8,3,15,2,8,1,9,1,15,1,14,5,15,1,8,2,9,1,10,1,9,1,15,2,8,1,9,1,10,2,8,1,15,2,14,1,15,2,8,3,15,1,14,1,15,5,8,1,15,3,9,1,15,1,8,1,10,4,8,1,10,2,8,1,15,1,14,2,15,6,8,1,15,1,8,8,9,3,10,1,9,1,8,2,9,1,10,1,9,1,10,4,19,21,4,339,}, + {4,213,19,31,10,1,8,1,15,1,10,3,9,1,15,3,14,1,15,3,9,2,8,2,15,2,9,1,15,1,8,1,9,4,8,1,15,1,14,1,15,1,8,1,15,2,14,2,15,1,8,2,9,1,10,2,19,56,10,1,8,4,15,3,9,1,10,2,8,1,14,4,8,1,9,1,15,2,14,2,15,2,8,2,15,1,10,1,8,1,15,1,8,1,9,1,8,3,10,1,8,1,15,1,14,2,15,1,8,1,15,5,14,1,15,8,8,1,9,2,8,1,10,2,15,2,8,1,10,2,9,1,8,1,15,9,8,5,15,1,8,5,10,2,8,1,9,1,10,2,8,1,10,3,19,20,4,341,}, + {4,213,19,25,10,1,4,3,19,3,10,1,9,1,15,1,9,2,15,2,14,1,15,5,10,2,9,1,8,3,9,1,8,1,15,1,8,2,15,8,8,2,15,1,8,2,9,4,10,1,19,56,10,3,9,1,15,4,8,1,10,1,9,2,10,1,8,5,15,3,8,4,15,4,8,1,9,1,8,3,9,1,10,1,9,1,15,2,14,1,15,2,8,2,15,3,14,1,15,4,14,6,10,3,8,1,15,1,8,1,9,2,10,1,8,7,15,5,8,1,15,1,8,1,15,1,8,1,15,2,8,2,10,2,8,1,10,3,8,1,10,3,19,20,4,341,}, + {4,213,19,25,4,1,14,1,15,1,4,1,9,1,10,1,19,1,10,1,9,1,15,1,8,2,15,4,8,1,15,3,9,2,8,1,15,3,8,1,10,1,8,1,15,5,8,2,15,3,8,4,15,1,8,2,15,1,9,2,19,55,10,5,8,2,15,3,9,1,8,1,10,4,8,1,15,3,8,6,15,2,14,2,15,2,9,1,10,1,8,1,10,3,9,1,15,1,14,2,15,1,8,1,15,4,14,3,15,3,14,3,15,1,8,1,10,2,9,2,8,4,9,1,8,9,15,4,8,4,15,3,8,1,9,1,10,4,8,1,9,1,10,1,19,16,4,347,}, + {4,213,19,25,4,1,14,1,4,1,9,1,14,1,9,1,10,1,8,1,14,2,15,3,8,4,15,3,8,2,15,4,9,1,10,1,8,1,14,1,15,6,8,1,9,2,10,1,9,2,10,1,15,1,8,1,9,1,8,1,9,1,19,58,10,3,9,2,15,3,8,2,9,1,8,2,10,1,8,1,15,1,14,1,15,4,8,2,15,2,14,1,15,4,8,1,9,1,8,1,10,1,9,2,10,1,15,2,14,1,8,1,14,1,15,2,14,1,15,3,14,7,15,1,9,2,8,1,15,1,8,21,9,2,15,4,8,1,9,1,10,2,8,1,10,3,19,16,4,347,}, + {4,213,19,26,10,1,19,1,4,1,10,1,9,1,10,2,8,1,15,2,14,2,15,3,8,1,15,3,8,1,15,3,8,1,9,1,10,2,8,1,15,2,14,4,8,1,10,10,19,59,10,2,19,2,10,2,9,1,15,4,8,2,9,1,8,2,15,7,8,1,15,1,8,2,15,4,8,1,9,4,8,2,14,2,15,1,9,1,14,4,15,1,8,3,14,4,8,2,9,1,10,1,9,1,8,1,15,2,8,5,15,2,8,13,10,1,9,1,8,1,15,2,8,2,10,6,19,17,4,347,}, + {4,213,19,28,4,1,15,6,14,3,15,6,14,1,15,4,9,2,10,2,8,1,15,7,8,3,9,3,10,1,19,66,10,2,9,1,15,1,14,2,15,2,8,1,9,1,8,1,15,1,8,1,15,3,14,1,15,5,8,4,15,2,9,3,15,3,14,2,15,1,10,1,9,1,8,1,15,1,14,2,15,2,8,1,9,1,8,3,9,1,8,7,15,4,8,1,15,1,8,19,10,1,8,1,10,5,19,20,4,345,}, + {4,213,19,29,8,2,15,1,14,2,15,1,14,2,15,2,14,1,15,3,14,2,15,3,8,1,15,1,9,2,10,1,8,1,14,1,15,5,8,2,15,4,8,1,10,1,19,66,10,1,19,1,10,1,8,1,14,1,15,1,14,2,15,1,8,1,15,4,8,1,15,4,14,3,15,4,8,1,15,1,8,3,15,2,14,3,8,1,9,1,10,1,9,1,8,2,15,1,14,2,8,1,10,1,9,1,8,1,9,2,8,3,9,1,8,3,15,1,14,1,15,1,8,2,15,1,8,5,9,1,10,1,8,11,10,7,19,21,4,345,}, + {4,213,19,30,10,1,15,1,14,5,15,1,14,2,15,3,14,2,15,1,8,4,9,2,10,1,9,1,15,1,14,3,15,9,10,1,19,69,10,1,8,2,14,6,15,8,14,3,15,3,8,5,15,3,8,1,15,1,8,1,9,2,10,3,8,1,15,2,8,5,10,1,8,6,15,5,8,1,15,3,8,4,9,1,10,1,8,5,9,1,8,4,10,5,19,19,4,349,}, + {4,213,19,30,10,2,8,1,14,3,8,2,15,1,8,1,15,2,14,4,15,1,8,3,15,1,8,1,10,1,8,1,15,6,14,1,15,2,8,2,14,1,15,1,10,1,19,72,9,1,8,1,15,1,14,1,15,1,14,2,15,2,8,3,15,4,14,2,15,3,14,2,15,2,8,2,9,1,10,1,8,1,15,1,8,2,9,1,10,1,8,3,10,2,8,1,10,1,8,1,10,1,9,1,8,1,14,2,15,1,8,4,15,3,14,2,15,2,8,5,15,1,8,2,10,1,8,7,15,1,10,3,19,20,4,1,19,1,4,1,19,1,4,345,}, + {4,213,19,31,10,1,8,1,14,1,15,5,14,1,15,1,8,1,15,2,14,4,15,4,10,2,8,1,15,4,14,1,15,6,8,2,19,73,10,1,9,1,15,2,14,2,15,1,8,6,15,1,14,1,15,2,14,4,15,3,8,2,9,1,10,1,9,1,8,2,10,2,8,1,15,1,8,1,10,9,8,3,10,2,8,2,15,2,14,3,15,1,8,9,9,1,10,3,8,3,10,3,19,26,4,345,}, + {4,213,19,32,10,1,9,2,10,1,9,1,10,1,8,1,14,1,15,3,14,1,15,5,8,3,9,1,10,1,9,1,14,1,9,1,8,2,15,8,10,1,19,73,10,2,9,1,8,1,15,1,8,2,15,2,8,1,15,5,14,8,15,1,14,1,15,1,8,2,9,1,8,2,10,2,9,2,10,3,9,1,10,2,9,1,8,1,15,1,8,1,10,5,8,3,15,2,14,1,15,1,8,1,9,5,8,3,15,1,8,1,10,2,8,1,10,1,8,1,10,3,19,27,4,345,}, + {4,213,19,38,10,1,9,2,15,1,14,2,15,6,8,3,10,2,15,2,9,2,8,1,15,2,9,1,10,1,15,2,8,1,10,1,19,73,10,3,9,1,8,1,15,5,8,4,15,2,14,4,15,2,14,5,8,3,15,1,8,2,9,2,10,2,9,1,10,1,9,1,10,3,8,1,10,3,8,2,10,2,9,1,8,3,15,1,8,1,9,1,10,5,9,1,8,2,9,1,8,1,10,2,8,1,10,5,19,27,4,345,}, + {4,213,19,41,10,1,9,1,8,1,15,9,9,3,15,1,9,1,10,1,8,1,15,2,9,1,10,3,19,1,10,1,19,73,10,3,9,1,8,1,15,3,14,2,15,3,8,1,15,3,14,1,15,3,14,6,15,1,8,2,15,3,8,1,15,1,8,2,9,4,10,2,9,2,10,1,15,2,8,1,10,1,9,2,8,2,15,1,8,3,10,5,9,1,8,1,9,1,10,1,8,1,10,3,8,1,10,1,15,1,8,1,10,1,19,27,4,345,}, + {4,213,19,42,10,3,9,1,8,2,15,2,8,1,15,1,14,2,15,1,10,1,15,1,8,1,10,2,8,2,10,2,19,54,10,1,19,12,4,2,10,2,19,6,10,2,8,2,15,3,14,6,15,3,14,3,15,1,14,3,15,1,14,1,15,1,14,1,15,3,8,1,15,7,8,2,9,2,8,1,14,2,8,1,15,2,8,1,10,3,8,3,15,2,8,1,9,2,10,2,9,2,8,2,9,1,10,1,8,1,10,3,8,1,14,1,8,1,19,28,4,345,}, + {4,213,19,32,10,1,4,2,10,1,19,7,10,2,8,1,15,3,8,2,15,3,10,5,19,1,10,1,4,1,10,1,19,54,10,5,19,9,10,2,9,2,10,2,19,1,10,6,8,1,15,2,8,1,15,4,14,1,15,5,14,2,15,2,14,3,15,1,14,3,15,4,8,5,15,2,9,3,15,1,14,2,15,1,10,1,8,1,10,5,8,2,15,2,8,2,10,2,9,2,8,3,9,1,8,2,10,4,8,1,10,1,19,28,4,345,}, + {4,213,19,32,10,1,15,1,14,1,15,1,19,3,10,6,15,2,14,2,15,2,14,1,15,1,10,2,19,5,10,1,19,56,10,1,15,2,8,1,9,1,19,9,10,3,9,1,10,5,9,2,10,2,8,2,15,4,8,2,15,6,14,3,15,3,14,5,15,3,8,4,9,1,15,3,9,1,8,1,15,4,8,1,9,1,10,3,8,2,10,1,8,8,9,1,15,2,9,1,8,2,10,1,8,2,10,5,19,28,4,345,}, + {4,213,19,32,4,1,14,3,10,2,8,1,10,1,15,2,8,1,9,1,8,1,9,1,8,1,15,1,14,1,8,2,14,1,15,2,10,1,19,62,8,3,15,1,14,1,10,1,19,6,10,1,9,1,10,5,15,2,8,1,15,3,9,1,10,3,15,3,8,7,15,2,14,3,15,2,14,5,15,3,8,4,9,2,15,3,8,2,15,4,9,1,8,1,10,6,8,4,15,1,8,1,9,3,8,3,10,2,8,2,15,1,8,1,10,2,8,1,10,1,19,28,4,345,}, + {4,213,19,30,10,1,9,1,10,1,9,1,15,1,10,2,15,1,16,1,14,1,15,1,14,2,15,1,9,1,8,1,15,1,8,1,10,2,9,1,14,4,10,1,19,60,10,1,8,1,15,2,8,1,10,1,19,6,10,2,15,1,8,1,9,1,10,4,15,2,8,1,15,3,8,1,10,3,9,1,15,6,8,1,15,4,14,2,15,1,14,4,15,1,8,1,15,4,8,1,9,1,8,3,9,1,15,2,8,8,10,3,8,5,10,6,9,2,8,1,10,7,8,3,10,1,19,28,4,345,}, + {4,213,19,30,4,2,19,2,10,3,14,1,16,1,14,4,15,3,9,1,10,3,9,2,10,1,9,1,10,1,19,61,10,1,8,1,10,1,8,2,9,1,10,1,19,5,10,1,9,1,15,4,9,1,10,2,15,3,14,1,15,2,8,1,9,1,10,4,9,1,15,1,14,1,15,4,14,1,15,5,14,2,15,4,8,1,15,1,8,4,15,2,8,3,9,1,8,1,9,2,8,4,9,1,8,2,9,1,10,10,8,2,10,2,9,1,10,1,8,2,10,3,8,3,10,2,19,27,4,345,}, + {4,212,19,35,10,2,8,1,15,1,14,5,15,3,8,1,10,5,19,61,10,1,19,2,10,1,8,1,10,1,9,2,8,1,9,1,10,1,19,4,10,2,8,2,15,3,10,3,15,1,9,1,15,1,14,1,15,1,8,3,10,4,8,1,14,1,15,4,14,4,8,1,15,4,8,1,15,2,8,2,15,2,8,2,15,2,8,1,9,1,8,1,9,3,10,1,9,4,8,1,9,1,8,3,10,13,8,3,10,1,8,1,10,1,8,2,14,2,8,1,10,3,19,25,4,345,}, + {4,206,19,36,10,1,19,2,10,1,19,2,9,1,8,2,15,2,14,1,15,5,14,1,15,1,9,1,10,2,19,1,10,3,4,1,19,52,10,3,9,3,19,2,10,1,15,1,8,3,9,1,15,1,9,1,10,5,9,2,8,1,15,1,14,2,9,1,10,5,15,5,8,2,10,2,9,1,15,7,14,2,15,6,8,2,9,1,8,1,15,2,9,2,8,2,9,5,10,1,9,3,10,2,9,2,10,5,8,1,10,13,8,2,10,2,8,1,15,2,8,1,10,1,8,1,10,2,19,24,4,345,}, + {4,203,19,44,10,1,8,1,15,3,14,1,15,9,9,1,19,3,10,1,4,2,19,51,10,3,9,2,8,1,9,1,19,1,10,2,9,2,15,2,9,2,8,2,9,2,10,1,9,1,8,3,15,1,14,1,15,1,9,3,10,4,8,1,15,4,8,1,9,1,10,2,8,1,15,6,14,5,8,1,14,1,15,3,8,3,15,1,9,3,8,1,9,2,8,4,9,6,8,1,10,4,9,1,8,1,10,7,8,1,10,14,14,1,8,1,10,2,19,5,10,2,19,16,4,345,}, + {4,201,19,46,10,1,8,2,15,3,8,1,15,7,8,1,9,1,19,4,4,2,19,51,10,1,9,4,10,7,9,1,15,2,8,2,15,2,9,2,8,1,15,1,8,1,15,3,14,1,15,3,9,2,10,2,9,1,15,5,8,1,10,2,8,1,15,6,14,5,15,1,8,2,15,1,14,2,15,2,8,5,9,2,8,2,15,1,8,1,15,1,8,5,15,1,8,1,9,1,10,2,8,2,9,1,10,6,8,2,10,13,14,1,15,1,10,3,19,4,10,2,19,16,4,345,}, + {4,194,19,1,4,1,19,1,4,1,19,1,4,1,19,45,10,1,8,1,10,1,15,4,8,1,15,3,8,2,15,2,9,2,4,1,10,1,19,56,10,1,9,1,15,1,9,2,8,1,9,1,10,7,15,1,8,1,15,4,8,2,15,1,8,1,15,4,14,1,15,2,8,1,15,1,9,2,8,2,9,1,15,1,14,1,15,2,10,2,9,1,15,2,14,3,15,2,14,4,15,3,14,3,15,3,8,1,9,2,8,1,9,4,15,2,8,8,9,1,10,2,9,1,8,2,9,1,10,6,8,2,10,11,8,2,15,1,8,2,10,7,19,15,4,346,}, + {4,193,19,48,10,4,15,8,14,1,15,1,8,1,15,1,8,1,15,2,8,1,10,2,4,1,19,56,10,1,8,1,15,1,8,3,15,1,14,1,10,6,8,1,15,5,14,1,15,1,8,1,15,3,8,1,15,1,14,1,15,2,8,1,14,1,15,1,8,4,15,1,14,1,15,2,8,1,9,2,8,1,15,6,14,4,15,1,14,5,15,3,8,2,9,2,8,3,9,1,8,3,15,1,8,1,15,2,8,8,9,3,10,3,8,2,10,11,8,6,15,1,8,1,10,3,15,1,10,2,19,15,4,7,19,1,4,5,19,3,4,1,19,24,4,305,}, + {4,193,19,48,10,1,14,2,16,1,14,1,8,4,15,1,14,2,15,1,8,1,15,1,14,1,15,1,14,2,9,1,10,1,19,57,10,1,9,1,8,6,15,1,10,6,9,1,10,1,8,2,15,1,8,1,15,2,8,1,15,1,8,1,15,2,9,1,15,3,8,1,14,2,15,3,8,2,15,4,8,3,9,1,8,2,15,3,14,7,15,1,14,3,15,2,8,5,9,1,8,5,15,5,8,14,10,2,8,1,10,10,8,3,15,1,8,1,10,1,8,3,10,3,19,17,4,5,19,4,4,1,19,30,4,305,}, + {4,192,19,50,10,1,14,1,16,1,14,1,15,5,8,1,15,4,14,1,10,2,8,1,9,1,19,59,10,1,8,6,15,1,10,5,9,1,15,1,10,1,15,4,14,2,15,3,8,1,15,1,8,1,15,3,14,3,15,3,8,3,15,4,8,6,15,1,14,1,15,1,14,5,15,1,8,2,15,1,8,1,15,2,8,3,15,1,8,6,15,5,8,2,15,4,8,8,10,4,8,1,10,5,8,9,10,1,8,4,10,1,19,18,4,3,19,37,4,305,}, + {4,191,19,51,10,2,14,1,15,2,14,1,15,1,8,1,9,1,8,1,15,4,8,1,10,3,19,60,10,1,8,3,15,1,8,1,15,2,10,6,15,1,8,1,15,5,14,1,15,4,8,2,15,1,8,1,15,1,14,2,8,1,9,1,15,3,8,3,15,1,8,4,15,2,8,2,15,2,14,4,15,2,8,1,15,1,8,1,15,1,8,6,15,2,8,3,15,1,8,1,15,4,8,2,10,1,8,2,15,1,8,2,15,4,8,3,9,1,10,2,8,4,10,3,8,5,10,4,8,3,10,3,19,18,4,2,19,42,4,301,}, + {4,190,19,54,8,2,15,1,14,1,15,1,9,2,8,3,15,2,9,1,10,1,19,62,10,1,15,1,8,4,15,1,8,1,9,1,10,5,8,1,15,4,8,3,15,1,8,2,15,1,8,3,10,1,8,2,14,1,15,1,8,1,15,1,14,2,15,6,8,4,9,1,15,1,8,1,15,1,17,1,14,1,15,8,8,2,15,1,8,2,15,3,8,1,15,9,8,1,10,1,9,1,15,6,8,1,9,2,10,3,8,2,10,1,8,1,10,6,8,3,10,6,8,2,10,2,19,67,4,297,}, + {4,189,19,44,4,3,19,8,10,1,8,1,10,1,9,1,8,1,15,1,8,2,15,3,8,1,19,64,10,1,8,2,15,1,8,3,15,1,8,1,10,4,8,1,15,1,14,1,15,3,8,1,9,1,15,1,14,1,15,4,8,1,9,1,8,1,9,1,10,1,14,7,15,2,8,1,15,2,8,3,9,2,15,1,8,1,15,1,16,1,14,1,15,2,14,3,15,14,8,2,15,3,14,1,15,1,8,1,9,1,15,4,8,4,9,2,10,4,8,1,10,8,8,1,10,3,8,1,10,8,19,70,4,294,}, + {4,189,19,44,4,1,15,2,4,1,19,4,4,1,10,2,19,1,10,3,9,1,8,2,15,1,8,2,9,1,10,1,19,64,10,1,15,1,8,1,15,1,8,2,15,1,8,1,15,1,8,1,10,3,15,5,8,1,9,1,10,1,8,1,14,1,15,1,14,1,15,1,14,1,15,3,8,1,10,1,15,1,14,3,15,2,14,1,15,6,8,4,15,3,17,1,14,1,15,2,14,3,15,2,8,1,15,7,14,1,15,2,8,1,9,1,8,3,9,1,8,2,9,1,10,1,9,1,8,3,9,1,8,1,9,1,15,2,8,1,10,3,9,1,10,13,8,3,10,1,8,2,10,2,19,108,4,257,}, + {4,186,19,1,4,1,19,44,10,1,4,1,15,1,14,1,4,1,19,5,4,1,9,1,19,2,10,2,8,1,15,2,9,1,8,1,9,1,10,1,19,1,10,1,19,63,9,1,8,2,15,1,8,1,15,1,8,2,15,3,10,1,9,1,15,2,8,1,15,3,9,1,10,1,8,1,14,1,15,2,14,1,15,3,8,1,15,1,14,1,15,3,14,1,15,2,14,2,15,1,14,2,15,3,8,2,15,8,14,3,15,2,8,1,15,3,8,1,15,2,14,1,15,2,8,2,9,1,8,3,9,1,10,7,9,1,8,3,15,1,8,1,15,1,8,1,10,14,8,7,10,3,19,108,4,257,}, + {4,186,19,47,4,2,15,1,4,1,19,5,4,2,19,4,10,1,8,1,15,1,8,1,10,2,19,66,9,1,15,2,8,1,15,2,8,2,15,4,9,3,15,5,9,2,8,1,14,4,15,4,14,1,8,3,15,3,14,1,15,1,14,2,15,4,8,2,15,1,8,1,15,3,8,1,15,2,14,3,15,8,14,1,15,6,8,4,10,8,8,1,10,2,8,3,10,13,8,9,10,2,19,109,4,3,19,7,4,247,}, + {4,186,19,53,4,1,19,2,4,2,19,4,10,1,4,1,9,1,4,1,19,67,10,1,8,1,15,1,14,1,15,5,8,2,9,2,15,1,8,1,9,1,15,2,14,1,15,2,9,2,8,1,14,4,15,2,8,2,15,2,14,1,15,11,8,4,15,6,14,1,15,1,14,1,15,3,8,1,15,1,14,1,15,8,8,1,15,3,8,2,9,1,10,6,8,1,10,1,8,1,10,2,8,1,10,6,8,1,10,7,8,8,10,2,19,120,4,3,19,1,4,243,}, + {4,185,19,51,10,1,15,2,4,1,19,2,4,3,19,4,10,1,4,1,10,1,19,68,10,1,9,1,15,6,8,1,9,1,10,1,15,2,10,2,8,1,14,2,15,2,8,1,9,1,10,1,8,1,15,1,14,2,15,6,14,1,15,7,14,3,15,1,8,2,9,1,8,2,15,1,14,2,15,3,14,1,15,1,14,1,15,2,8,1,15,1,14,1,15,1,14,2,15,4,8,1,15,6,8,1,9,1,10,6,8,2,10,1,8,4,10,9,8,9,10,3,19,127,4,241,}, + {4,185,19,51,14,3,4,1,19,3,4,1,19,78,10,4,9,1,8,1,9,1,15,1,9,1,15,1,8,1,9,3,15,5,8,1,10,1,9,1,8,1,15,2,8,1,15,1,14,2,8,1,15,2,14,4,15,1,14,1,15,4,8,4,15,2,8,2,15,1,14,1,15,1,8,2,15,2,14,1,15,2,14,2,15,1,14,5,15,1,8,5,9,3,8,2,10,6,8,2,10,7,8,1,10,2,8,4,10,4,8,1,15,1,8,2,10,2,19,132,4,237,}, + {4,185,19,46,10,1,19,2,10,2,14,2,15,1,4,1,19,83,10,5,8,1,15,1,8,1,15,1,8,2,15,1,10,2,9,1,14,2,15,1,9,3,10,1,8,1,15,1,8,1,14,2,15,1,8,1,14,7,15,1,8,3,15,2,8,2,10,1,15,1,8,2,15,3,8,3,15,2,14,2,15,2,14,6,15,1,14,1,15,1,8,1,9,2,10,5,9,1,8,2,10,13,8,5,15,1,8,1,10,4,8,2,10,4,19,32,10,8,19,93,4,236,}, + {4,185,19,45,4,2,10,2,8,1,15,1,14,1,15,1,10,2,19,85,10,3,8,1,10,1,15,2,8,1,15,1,8,1,10,3,9,1,8,1,15,3,9,1,8,1,15,3,14,1,15,1,8,2,14,3,15,1,14,3,8,1,15,6,8,1,10,1,8,2,15,4,8,2,15,1,8,2,15,4,14,5,15,4,9,2,8,1,9,2,10,4,15,1,8,2,9,2,10,7,8,9,10,5,8,2,10,4,19,31,10,10,19,92,4,236,}, + {4,185,19,45,10,2,4,1,10,2,8,1,10,5,19,47,10,2,4,1,19,30,10,1,4,2,9,1,10,4,8,3,15,2,14,1,10,5,15,1,14,2,15,1,14,2,15,1,8,1,15,4,17,1,14,2,15,2,7,1,15,1,8,1,14,2,15,1,14,4,15,1,14,3,15,3,8,7,15,3,14,4,15,2,14,2,9,2,8,3,15,1,8,1,10,2,8,2,9,1,8,1,9,1,10,6,8,1,15,1,8,4,14,2,10,6,8,1,15,2,8,1,10,2,19,27,10,16,19,91,4,236,}, + {4,186,19,45,4,1,10,3,8,1,10,4,19,48,4,1,10,1,4,1,10,1,19,29,9,2,15,1,9,1,10,2,9,1,10,1,9,2,15,1,14,1,15,1,8,1,10,5,8,1,15,1,14,1,15,1,14,2,15,1,8,1,10,1,8,1,15,1,14,5,15,4,17,1,14,8,15,1,8,2,15,2,8,1,15,2,8,3,9,1,8,1,15,1,14,3,8,2,15,3,14,1,15,3,8,1,15,2,8,1,10,1,9,1,10,1,9,4,8,1,10,3,8,1,15,1,8,1,15,1,8,1,10,2,8,1,15,1,10,12,19,28,10,18,19,17,10,8,19,64,4,236,}, + {4,185,19,43,4,1,10,4,8,1,14,1,10,6,19,47,10,1,8,1,10,2,19,28,10,1,8,1,15,3,14,1,8,1,9,1,8,1,9,1,8,2,15,2,8,1,10,5,9,2,15,1,14,1,15,2,14,1,8,1,10,2,8,1,15,1,14,3,17,1,14,1,7,1,14,3,17,1,14,4,16,1,17,1,14,1,15,1,8,3,15,3,14,1,15,2,8,3,15,1,14,2,15,1,8,2,10,1,8,1,15,1,14,1,15,1,14,1,15,1,8,1,15,2,8,1,9,2,10,8,8,5,10,15,19,30,10,8,8,2,10,3,8,1,10,9,19,1,10,3,19,5,10,15,19,23,10,2,19,9,10,10,19,17,4,235,}, + {4,185,19,42,4,1,14,2,15,1,4,1,10,1,14,3,8,1,10,3,19,47,10,1,8,3,10,2,19,27,10,1,15,1,8,2,15,3,8,2,15,2,9,3,15,1,8,2,9,1,10,1,9,2,10,2,8,1,15,1,8,1,9,1,10,5,8,1,15,1,14,3,7,1,14,3,15,1,14,9,15,1,8,1,15,1,14,1,15,2,14,2,15,1,8,1,15,3,8,2,10,3,8,2,15,2,14,1,15,1,8,2,15,1,8,2,9,1,10,8,8,1,10,20,19,25,10,9,8,1,10,8,8,1,10,40,19,15,10,24,19,14,4,235,}, + {4,185,19,38,10,1,15,1,4,2,14,1,16,1,14,6,8,3,10,3,19,45,10,1,8,5,9,1,10,1,19,26,10,1,15,5,8,1,15,2,8,1,15,1,8,2,15,2,8,1,9,1,8,1,9,2,15,1,10,3,8,1,15,2,8,1,15,2,8,1,15,3,14,1,17,1,14,2,17,2,14,1,17,1,14,5,7,1,14,3,15,2,14,5,15,2,8,3,15,2,8,1,15,1,8,1,9,1,10,1,8,1,15,2,14,2,8,5,9,1,10,7,8,1,14,1,8,1,10,3,8,3,10,12,19,18,10,1,19,3,10,1,19,2,10,11,8,1,10,6,8,3,10,6,8,1,10,8,15,1,14,1,10,62,19,15,4,233,}, + {4,185,19,34,10,4,15,1,14,6,15,1,14,2,15,1,8,1,10,6,19,43,10,3,8,3,10,1,8,2,10,2,19,24,10,1,9,1,15,5,8,2,15,7,8,2,15,3,8,1,9,2,10,2,8,1,15,1,14,1,15,1,8,1,15,4,14,2,15,2,7,1,14,1,7,1,14,1,8,3,15,1,14,8,15,2,14,2,15,3,10,1,8,1,15,5,8,1,10,1,8,2,15,1,14,1,15,2,8,2,9,2,10,4,8,6,10,3,8,1,15,1,8,4,10,5,15,1,8,1,10,2,19,17,10,24,8,1,10,2,8,3,10,1,8,5,10,3,8,1,10,4,15,1,8,2,10,63,19,14,4,233,}, + {4,185,19,34,15,1,8,2,15,2,16,2,14,1,15,2,8,1,15,2,14,2,15,1,10,8,19,40,10,1,8,1,10,1,8,7,10,1,19,25,4,1,15,20,8,1,15,3,9,3,8,1,15,2,8,1,15,3,14,1,15,2,8,1,15,2,14,1,15,2,8,4,15,1,8,1,15,3,8,1,15,3,14,5,8,3,15,2,9,1,8,1,14,1,8,1,9,1,8,2,15,4,8,2,9,1,10,1,8,1,10,2,8,3,10,6,8,1,15,1,8,1,10,1,8,3,10,1,8,3,15,1,10,2,19,16,10,10,8,1,15,1,8,1,10,8,8,1,10,3,8,2,15,1,8,4,10,1,8,2,10,5,8,2,10,2,8,1,10,1,15,1,8,2,10,19,8,1,10,44,19,15,4,231,}, + {4,185,19,33,10,1,8,1,15,4,16,1,14,2,15,2,8,1,15,2,8,1,15,1,8,2,10,1,8,1,10,1,8,2,9,1,4,2,19,39,10,1,15,1,8,3,9,1,15,3,8,1,10,4,19,22,9,3,15,1,14,1,15,1,8,1,15,3,8,2,15,1,14,2,15,1,8,1,15,6,14,2,15,1,10,1,9,2,15,4,14,3,15,1,14,1,7,1,15,1,14,1,17,2,14,2,15,1,8,1,10,7,8,1,15,1,8,1,14,1,15,3,14,1,15,3,8,1,15,1,9,1,8,1,14,1,15,5,8,1,9,1,8,3,15,1,8,1,10,4,8,2,10,4,8,3,10,7,8,1,15,1,8,2,10,2,19,15,10,1,15,2,10,8,8,1,14,1,8,1,10,4,8,3,10,2,8,1,10,2,8,1,14,2,15,1,8,2,10,8,8,2,10,2,8,2,10,1,8,3,10,1,8,2,10,11,8,3,10,32,8,3,10,12,19,15,4,231,}, + {4,185,19,32,10,1,8,3,15,1,10,2,15,1,14,1,15,1,8,1,15,1,9,4,8,2,15,1,8,6,15,1,10,1,19,39,10,1,8,1,15,1,8,6,15,2,8,2,9,1,19,23,10,2,9,1,14,1,15,1,8,1,15,5,8,2,15,1,8,2,15,3,8,1,15,5,10,4,8,1,15,3,14,5,15,1,14,2,15,2,14,1,15,4,8,5,15,1,14,1,15,5,8,1,15,1,8,2,9,1,8,1,9,3,15,2,14,1,15,1,8,1,9,2,10,1,9,1,8,8,10,4,8,3,10,9,8,1,10,4,19,14,10,1,8,2,10,10,8,1,10,2,8,1,10,5,8,7,15,1,8,5,10,11,8,2,10,14,8,1,10,3,8,3,10,1,8,1,10,10,8,2,10,17,8,1,10,15,19,14,4,231,}, + {4,185,19,32,10,1,15,1,10,1,8,1,15,1,8,1,9,1,8,2,15,1,8,2,15,1,8,1,9,1,8,1,9,2,15,1,8,1,10,5,4,1,10,1,19,40,9,1,8,8,15,4,10,1,19,24,10,1,15,3,14,1,15,1,8,1,15,2,8,1,10,1,8,5,15,2,8,1,15,3,8,1,15,2,9,2,8,2,15,1,14,2,15,5,14,1,15,2,8,1,15,3,8,1,15,1,14,1,15,1,14,2,8,2,15,2,14,1,15,1,8,2,10,4,9,1,15,2,8,1,9,1,14,2,15,2,8,1,9,2,10,2,9,1,8,1,15,1,8,4,10,4,8,3,10,9,8,1,10,6,19,11,10,3,15,1,10,6,8,2,15,1,8,1,10,1,8,5,10,7,8,1,15,1,8,7,15,1,10,5,8,1,10,5,8,3,10,13,8,2,10,1,8,3,10,4,8,1,10,2,8,2,10,5,8,1,10,35,19,12,4,231,}, + {4,185,19,31,10,3,8,7,15,1,8,1,15,2,8,1,9,1,15,1,9,2,15,1,9,1,10,6,19,41,10,1,8,2,9,1,8,6,15,3,8,1,10,1,19,24,10,1,15,7,8,3,10,1,15,1,8,2,14,1,8,1,15,1,14,1,8,1,15,3,14,1,15,1,8,2,15,4,8,3,15,2,8,1,15,1,14,2,15,3,8,1,15,3,14,2,10,2,8,1,15,1,14,1,15,1,8,2,10,5,15,1,8,1,9,1,8,1,15,2,8,2,9,1,10,2,8,4,15,2,8,2,10,4,8,4,10,7,8,2,10,6,19,11,10,11,8,1,15,2,8,2,10,2,8,3,10,7,8,1,15,1,8,2,10,1,8,1,15,1,8,3,10,5,8,2,10,5,8,1,10,14,8,4,10,5,8,1,10,3,8,2,10,42,19,12,4,230,}, + {4,185,19,30,10,1,15,2,8,1,10,1,8,3,14,1,15,3,8,1,15,2,8,1,9,1,8,3,15,1,8,1,10,1,9,1,10,3,19,42,10,1,8,1,15,1,8,8,15,1,8,1,9,1,10,1,19,24,10,1,9,1,15,3,14,1,15,5,8,1,15,4,8,1,15,1,8,1,15,1,8,1,15,1,14,2,15,1,8,2,15,1,8,4,15,4,8,1,15,1,14,5,15,1,8,2,15,1,8,1,15,1,9,1,8,5,15,3,8,2,9,1,10,13,8,1,15,1,8,5,10,6,8,1,10,6,8,5,10,8,19,7,10,9,8,2,15,1,8,1,15,2,8,3,10,10,8,10,10,5,8,2,10,5,8,2,10,13,8,5,10,6,8,4,10,1,8,4,10,10,8,3,10,1,8,1,10,4,8,2,10,6,8,1,10,10,19,12,4,230,}, + {4,185,19,30,10,1,15,1,14,2,8,1,15,2,8,1,15,7,8,1,10,1,8,1,9,2,15,1,8,1,9,2,10,2,19,29,10,2,19,12,10,1,8,1,15,2,8,1,15,1,8,8,9,1,10,1,19,23,10,2,15,3,8,1,15,1,8,1,15,3,8,1,15,4,8,1,15,1,14,2,15,1,16,2,14,2,15,2,8,1,9,1,8,3,15,4,8,1,14,1,15,2,14,3,15,2,8,1,10,2,9,1,8,1,15,1,8,1,15,4,14,1,15,3,9,1,10,13,8,1,10,3,8,2,10,3,8,1,10,8,8,6,10,6,14,2,15,1,10,8,8,1,10,3,8,2,10,1,8,1,10,2,8,8,10,9,8,3,10,1,8,2,10,1,8,2,10,5,8,2,10,7,8,1,10,14,8,4,10,6,8,3,10,2,8,3,10,1,8,1,10,1,8,1,10,7,8,1,10,7,8,3,10,6,8,1,10,3,8,2,10,5,19,12,4,230,}, + {4,185,19,31,10,1,15,3,8,1,15,9,8,1,10,1,9,2,10,1,9,5,10,2,19,28,9,1,8,1,10,1,19,12,10,1,8,1,15,1,8,8,15,3,10,1,19,24,10,1,15,2,14,1,15,4,14,1,15,2,14,4,15,2,14,3,16,3,14,2,15,1,8,5,15,1,14,3,15,3,14,4,15,2,14,1,15,1,8,3,15,3,14,3,15,1,8,3,15,1,8,1,9,1,8,1,10,9,8,1,10,3,8,1,10,1,8,2,10,1,8,2,10,7,8,6,15,1,8,1,10,5,14,1,15,1,10,7,8,1,14,1,8,3,10,1,8,2,10,2,8,1,10,7,8,3,10,12,8,4,10,15,8,1,10,2,8,9,10,4,8,2,10,1,8,7,10,6,8,4,10,2,8,2,10,4,8,1,10,2,8,1,10,5,8,2,10,2,8,5,10,3,8,1,10,4,15,1,10,1,19,12,4,230,}, + {4,185,19,32,10,1,4,1,14,2,15,1,14,1,15,1,14,2,15,1,8,1,15,1,8,1,9,2,8,1,9,5,8,2,9,1,10,1,19,28,10,1,15,2,10,1,19,11,10,2,8,4,15,3,8,3,15,2,10,1,19,18,10,3,19,3,10,3,15,3,14,4,15,1,14,3,15,3,8,1,15,1,17,1,16,3,17,1,14,1,8,4,15,6,8,3,15,1,14,4,15,3,8,6,15,4,8,8,9,1,10,3,8,1,10,2,8,1,10,3,8,1,15,1,8,3,10,1,8,4,10,4,8,1,10,3,8,1,10,12,8,2,10,1,8,1,10,1,8,1,14,1,8,5,10,1,8,4,10,19,8,4,10,18,8,10,10,5,8,6,10,1,8,1,10,1,8,2,10,6,8,4,10,2,8,2,10,1,8,2,10,2,8,4,10,4,8,7,10,10,14,1,10,1,19,12,4,230,}, + {4,185,19,33,10,1,14,4,15,3,8,5,9,2,8,2,9,2,10,2,8,2,10,1,19,28,10,1,15,1,14,1,8,1,19,11,10,1,9,1,8,5,15,1,14,1,15,1,8,2,15,2,10,1,19,17,10,1,9,1,8,2,10,1,19,3,10,2,9,1,10,1,8,1,15,1,14,5,15,1,8,5,15,1,14,6,15,1,8,1,15,2,14,2,15,1,8,1,9,1,10,1,8,5,15,5,8,8,15,7,8,1,9,1,10,6,8,3,10,5,8,3,10,2,8,2,10,5,8,3,10,1,8,2,10,9,8,1,10,4,8,1,10,3,8,3,10,1,8,2,10,1,8,2,10,20,8,2,10,7,8,1,10,5,8,1,10,7,8,10,10,2,8,1,10,1,8,7,10,5,8,2,10,3,8,1,10,1,8,4,10,1,8,2,10,1,8,11,10,1,8,1,10,2,8,7,10,5,8,1,10,1,15,1,10,1,19,12,4,230,}, + {4,185,19,35,10,1,15,1,14,3,15,1,8,1,9,1,8,3,9,1,10,1,9,1,8,1,9,1,10,5,19,29,8,1,15,2,8,1,10,2,19,9,8,2,15,1,8,1,15,1,8,2,15,1,14,1,15,1,8,1,9,1,8,2,10,1,19,10,4,1,19,6,10,1,8,1,15,1,8,1,4,1,10,1,19,2,10,2,8,1,15,3,14,13,15,2,8,1,10,1,8,1,15,2,14,1,15,4,14,1,15,2,14,1,15,13,8,4,9,2,10,6,9,1,10,2,9,1,10,4,8,3,10,1,8,4,10,1,8,3,10,4,8,1,10,2,8,3,10,1,8,1,10,10,8,1,10,1,8,7,10,7,8,2,10,19,8,1,10,4,9,1,10,17,8,12,10,1,8,4,10,1,8,1,10,1,8,1,10,4,8,4,10,3,8,6,10,1,8,2,10,2,8,11,10,4,8,6,10,5,8,1,10,4,19,11,4,230,}, + {4,185,19,35,10,2,15,1,14,1,16,1,14,2,8,5,9,1,10,1,9,1,10,6,19,28,10,1,8,2,15,1,14,1,10,2,19,8,10,1,15,2,8,2,15,3,14,1,15,1,8,3,9,1,10,2,19,17,10,1,8,1,15,2,8,2,10,13,9,1,14,2,15,1,14,1,15,1,14,1,8,1,15,1,8,2,9,2,8,2,14,3,15,1,8,1,15,3,14,1,15,10,8,2,15,1,8,3,15,1,9,3,10,1,9,7,8,2,10,3,8,6,10,5,8,1,10,4,8,1,10,2,8,2,10,12,8,5,10,1,8,5,10,5,8,2,10,18,8,6,10,6,8,2,10,5,8,1,10,5,8,7,10,1,8,6,10,1,8,1,10,3,8,1,10,1,8,4,10,1,8,2,10,5,8,2,10,1,8,1,10,3,8,2,10,1,8,5,10,2,8,1,10,2,8,1,10,4,8,7,10,9,19,11,4,230,}, + {4,185,19,37,10,1,15,1,16,1,14,1,15,4,8,2,9,4,10,5,19,29,10,1,9,1,8,1,15,1,10,2,19,9,10,1,8,6,15,1,14,1,15,4,10,3,19,8,10,1,19,7,10,1,15,5,9,1,10,13,8,1,14,2,15,3,8,1,15,1,8,2,15,1,8,3,14,1,15,6,14,2,15,4,14,1,15,5,8,3,9,3,8,1,9,1,8,1,9,2,10,1,9,2,8,5,15,1,9,3,10,1,8,6,10,3,8,4,10,1,8,3,10,2,8,1,10,11,8,12,10,4,8,2,10,16,8,1,10,5,8,3,10,6,8,1,10,9,8,11,10,2,8,2,10,2,8,2,10,3,8,9,10,1,8,1,10,3,8,3,10,2,8,2,10,1,8,4,10,1,8,3,10,4,8,3,10,4,8,6,10,6,8,1,10,1,19,12,4,229,}, + {4,185,19,38,10,1,15,1,14,3,15,1,8,1,9,1,10,1,8,4,10,3,9,1,19,31,10,2,8,2,10,2,19,7,10,2,8,1,15,1,8,4,15,1,14,3,15,2,9,1,10,2,19,7,10,2,19,7,9,1,15,3,8,1,15,2,8,1,9,1,10,11,9,1,8,2,15,1,14,1,15,6,14,1,15,1,8,1,15,1,8,1,15,3,14,1,15,8,14,2,15,4,8,1,9,3,8,2,9,6,8,3,15,1,8,4,9,1,10,4,8,1,10,2,8,9,10,2,8,3,10,12,8,4,10,1,8,6,10,6,8,1,10,26,8,3,10,3,8,3,10,6,8,1,10,1,8,2,10,1,8,5,10,7,8,2,10,1,8,1,10,2,8,7,10,3,8,1,10,1,8,9,10,1,8,1,10,4,8,1,10,6,8,2,10,4,8,6,10,2,8,2,10,4,19,12,4,229,}, + {4,185,19,39,10,1,8,1,14,2,15,3,8,1,9,2,10,1,8,2,9,3,10,1,19,31,10,1,8,3,10,1,19,6,10,4,15,1,8,1,15,1,14,1,15,1,8,1,15,1,14,2,15,3,9,1,19,8,10,2,19,6,10,1,9,1,15,5,8,1,15,2,8,1,10,3,9,1,8,5,9,4,8,4,14,2,15,4,8,1,15,2,8,7,15,1,8,3,15,2,14,1,15,1,8,2,15,2,8,2,15,1,8,1,9,1,8,7,15,1,8,2,15,4,8,1,10,1,9,1,10,6,8,3,10,2,8,10,10,7,8,2,10,3,8,2,10,2,8,3,10,5,8,1,10,9,8,1,10,10,8,5,10,22,8,1,10,1,8,2,15,1,8,2,10,7,8,4,10,3,8,6,10,2,8,2,10,1,8,8,10,6,8,6,10,1,8,4,10,4,8,5,10,8,19,12,4,229,}, + {4,185,19,40,4,1,14,3,15,4,8,3,15,1,9,1,8,1,10,1,19,32,10,3,8,2,10,3,19,3,10,3,9,1,8,2,15,3,8,2,15,1,14,2,15,2,10,1,19,8,10,2,19,6,10,1,8,1,15,1,14,1,15,5,8,1,15,1,9,2,10,1,9,1,8,1,9,2,15,1,8,1,9,2,8,5,15,1,14,1,15,3,8,3,15,3,8,1,15,1,8,7,15,1,8,1,15,3,8,1,9,1,10,1,9,2,8,1,9,1,8,6,15,1,8,1,15,2,8,1,9,2,8,1,15,1,8,1,9,1,8,1,9,1,8,1,10,5,8,1,15,1,8,5,10,3,8,2,10,10,15,1,8,2,10,3,8,1,10,9,8,1,10,13,8,2,10,9,8,5,10,20,8,1,10,1,8,4,10,3,8,8,10,4,8,4,10,4,8,1,10,4,8,2,10,8,8,3,10,1,8,1,10,1,8,3,10,1,8,2,10,3,8,8,10,7,19,11,4,229,}, + {4,185,19,40,15,1,14,1,8,1,14,2,15,5,8,1,10,4,19,24,10,2,19,6,10,3,8,3,10,7,9,1,10,1,9,1,8,5,15,2,14,2,15,1,8,1,10,1,19,9,10,1,19,6,10,1,15,1,14,4,15,2,8,2,15,2,8,1,9,1,15,2,8,1,9,1,8,8,14,2,15,2,8,1,15,1,8,3,15,3,8,1,14,1,15,2,14,1,8,2,15,1,14,1,15,2,8,1,15,3,8,1,9,1,8,3,9,1,8,1,15,7,8,2,9,1,10,1,8,1,15,1,8,2,9,1,8,1,9,1,10,5,8,5,10,16,15,1,8,3,10,2,8,2,10,25,8,1,10,10,8,4,10,13,8,2,10,5,8,1,10,1,8,5,10,1,8,10,10,2,8,2,10,2,8,5,10,1,8,4,10,5,8,2,10,4,8,1,10,1,8,2,10,1,8,6,10,3,8,11,10,4,19,15,4,225,}, + {4,185,19,40,8,1,14,1,8,1,14,2,15,2,8,1,15,1,8,1,10,4,19,24,10,1,9,1,10,2,19,1,10,1,19,1,10,1,9,1,10,3,8,1,15,1,8,1,10,1,8,1,10,1,8,1,10,2,15,2,10,2,9,1,15,2,8,1,15,4,8,2,9,1,10,1,19,9,10,1,19,6,9,1,15,1,14,1,15,2,14,3,15,4,8,2,15,1,14,1,15,1,8,1,10,1,9,1,8,1,15,3,8,1,15,1,14,2,15,1,8,2,15,3,8,1,15,1,8,1,9,1,8,1,15,3,14,6,15,3,8,3,15,4,8,2,15,4,8,7,15,3,8,1,9,2,8,2,10,4,8,4,10,16,8,3,10,4,8,1,10,22,8,1,10,6,8,1,10,3,9,1,10,1,9,3,8,3,10,6,8,1,10,5,8,1,10,1,8,1,10,4,8,11,10,2,8,5,10,3,8,8,10,2,8,9,10,2,8,1,10,2,8,1,10,6,8,2,10,1,8,12,10,1,8,2,10,2,8,1,10,2,19,15,4,225,}, + {4,185,19,40,15,1,14,3,8,3,15,1,8,2,10,4,19,24,10,1,9,1,8,1,10,5,9,1,8,1,10,2,8,3,10,5,8,1,15,2,8,1,10,2,8,4,15,3,8,1,15,1,10,3,19,7,10,2,19,6,10,1,15,4,8,1,14,3,15,1,9,2,15,4,14,1,15,1,8,1,15,2,14,3,15,3,14,1,15,1,8,2,15,1,14,1,15,1,8,1,9,3,8,1,15,2,14,9,15,1,8,2,15,3,8,1,9,1,8,3,15,1,8,3,15,1,8,4,15,1,8,8,10,3,8,4,15,1,14,1,8,1,10,8,8,1,14,2,10,3,8,3,10,7,8,1,10,2,8,1,10,3,8,1,10,5,8,1,10,3,8,3,10,2,8,4,9,1,8,1,9,1,10,3,9,1,8,3,15,1,8,1,10,7,8,4,10,9,8,1,10,1,8,6,10,1,8,1,10,5,8,3,10,2,8,9,10,1,8,3,10,1,8,8,10,1,8,1,10,8,8,1,10,1,8,4,10,2,8,7,10,1,8,1,10,1,8,1,10,1,8,2,10,1,19,15,4,225,}, + {4,185,19,40,15,1,14,2,8,1,15,2,8,2,10,4,4,1,10,1,19,23,10,2,15,1,8,2,10,4,8,1,9,4,15,1,8,2,10,3,8,1,9,1,8,1,15,2,9,1,8,2,15,2,8,4,7,1,15,1,8,1,10,2,19,5,10,2,4,2,19,6,9,1,15,5,14,4,15,1,10,1,9,1,8,2,15,3,8,1,15,1,14,2,15,2,14,3,15,5,8,2,9,1,8,1,9,2,8,1,15,1,14,3,15,2,14,2,15,3,8,1,15,2,14,2,15,1,8,2,15,2,8,12,15,2,8,3,9,1,10,4,8,3,10,2,8,3,10,7,14,3,8,2,15,1,8,2,10,1,8,1,10,7,8,2,10,1,8,1,10,1,8,2,10,8,8,3,15,1,8,1,9,1,8,1,9,1,8,1,15,1,8,1,9,1,8,1,9,3,8,2,15,3,8,4,10,3,8,3,10,4,8,2,10,3,8,1,10,1,8,1,10,1,8,4,10,3,8,1,10,6,8,1,10,1,8,4,10,1,8,6,14,1,15,1,8,3,10,1,8,10,10,3,8,1,10,1,8,3,10,2,8,2,10,1,8,7,10,7,8,1,10,3,19,14,4,225,}, + {4,185,19,39,4,1,14,2,8,3,15,1,8,1,9,1,10,4,19,25,10,2,15,1,8,2,10,5,8,2,9,1,8,1,9,1,8,1,10,1,9,1,10,3,8,3,15,1,8,1,15,1,8,1,15,2,8,1,9,1,8,4,15,1,9,1,10,1,19,6,10,2,19,7,9,1,14,1,15,2,14,1,15,6,8,1,9,2,8,1,15,2,8,2,14,2,15,1,14,3,15,2,14,1,15,3,8,5,15,3,8,1,14,3,8,1,15,1,14,2,15,2,8,1,15,1,14,2,15,1,8,2,15,2,8,14,15,2,8,5,10,2,8,2,15,1,8,1,10,1,8,3,10,7,15,1,14,1,8,2,14,2,8,6,10,5,9,1,8,1,9,1,8,3,15,1,8,1,10,8,8,1,15,2,9,1,10,1,8,6,9,1,15,3,8,1,15,1,8,1,15,3,8,5,10,2,8,3,10,3,8,1,10,7,8,6,10,11,8,6,10,1,8,1,15,1,8,3,14,1,15,1,8,6,10,1,8,5,10,4,8,2,10,3,8,6,10,2,8,3,10,13,19,10,4,2,19,2,4,225,}, + {4,185,19,39,9,1,15,1,8,1,10,1,15,1,8,2,9,1,8,1,10,3,19,26,10,2,8,4,10,4,9,1,15,1,8,1,15,1,8,2,9,1,10,3,9,1,8,3,15,1,8,1,15,1,8,1,15,3,8,2,15,1,8,2,15,2,10,1,19,6,10,2,19,7,9,1,14,3,15,1,14,1,15,1,8,2,15,8,14,1,15,4,14,3,15,2,14,2,15,1,8,1,9,2,8,3,15,1,14,2,8,2,15,2,8,1,15,1,14,1,15,1,8,1,15,1,14,1,15,1,14,1,15,1,8,7,15,1,8,5,15,1,8,1,15,1,8,1,15,4,8,1,9,1,8,2,10,4,8,4,10,10,8,1,15,1,8,2,15,1,14,1,8,2,10,8,9,1,8,3,15,4,8,1,10,7,8,5,9,1,8,7,15,2,14,1,15,2,8,1,15,2,8,5,10,2,8,1,10,1,8,2,10,4,8,1,10,7,8,3,10,1,8,1,10,3,8,1,10,3,8,1,10,3,8,21,10,1,8,5,10,2,8,2,10,4,8,7,10,1,8,2,10,13,19,11,4,2,19,2,4,225,}, + {4,185,19,39,9,1,15,1,8,1,15,1,8,1,15,1,8,1,9,1,8,1,9,1,10,1,19,26,10,4,8,3,9,1,10,4,15,5,8,1,9,2,8,1,9,1,8,2,9,1,15,2,8,1,9,1,15,2,14,1,8,4,15,2,9,1,10,1,19,3,10,4,19,8,10,1,15,1,14,2,15,1,8,1,15,1,14,2,15,3,14,1,15,1,8,1,15,8,14,3,15,3,8,4,15,4,14,2,15,1,14,2,15,1,8,1,16,1,14,1,15,2,14,2,15,9,8,1,15,2,8,3,15,4,8,1,15,4,8,1,9,1,10,5,8,1,10,14,8,4,15,2,8,2,10,7,8,3,9,1,15,5,8,2,10,4,9,2,8,5,9,1,8,5,9,2,8,1,15,1,14,1,15,2,8,1,9,1,8,3,10,5,8,4,10,4,8,2,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,9,10,2,8,8,10,1,8,16,10,5,8,1,10,5,8,2,10,19,19,12,4,2,19,2,4,225,}, + {4,185,19,39,4,1,8,2,15,1,8,3,9,1,10,3,19,26,10,1,8,2,10,1,15,1,8,3,10,3,9,2,15,5,8,2,15,1,8,1,15,1,8,1,9,1,15,1,8,1,9,1,8,1,15,2,8,3,15,1,8,1,15,2,9,1,19,4,10,4,19,8,10,1,9,1,15,2,8,2,15,8,8,1,15,3,8,5,15,3,8,1,9,2,8,3,15,2,14,2,15,2,14,5,15,1,14,7,15,3,14,6,15,1,14,1,15,1,14,1,15,5,8,1,15,1,8,3,9,1,10,1,8,1,10,7,8,1,10,12,8,5,10,7,8,4,15,5,8,3,9,1,10,3,8,3,9,1,8,3,9,4,8,5,9,1,8,1,15,1,8,1,9,2,8,1,9,1,10,8,8,3,10,3,8,6,10,4,8,3,10,5,8,5,10,1,8,8,10,2,8,12,10,1,8,4,10,3,8,3,10,5,8,2,10,6,8,1,10,5,8,1,10,5,19,12,4,2,19,2,4,225,}, + {4,185,19,39,9,1,15,3,8,3,9,1,10,4,19,25,10,1,8,1,9,1,15,2,8,4,9,2,15,1,8,2,15,3,8,1,15,6,10,1,15,1,8,1,9,1,15,1,8,7,15,2,9,1,10,1,19,3,10,3,19,11,10,1,9,1,8,3,15,11,8,3,15,4,8,1,9,2,15,5,14,10,15,2,14,4,15,1,8,1,15,4,14,4,15,5,14,1,15,2,8,1,15,2,8,1,9,2,10,24,8,3,10,5,8,1,10,3,8,3,15,4,14,1,15,1,8,3,9,1,10,2,9,1,8,2,9,2,8,4,9,1,8,3,15,1,8,6,9,2,8,2,10,2,8,2,10,1,8,1,10,5,8,1,10,3,8,1,15,1,10,1,8,2,10,3,8,1,10,1,8,2,10,7,8,12,10,4,8,10,10,2,8,2,10,1,14,1,8,1,10,1,8,2,10,3,8,7,10,2,8,4,10,1,8,2,10,7,19,12,4,230,}, + {4,185,19,39,10,1,8,5,15,1,8,2,10,1,8,1,10,2,19,24,9,2,8,1,15,3,8,12,15,1,14,3,15,1,8,1,9,1,8,2,10,1,8,7,15,2,8,1,10,1,19,3,10,4,19,12,10,1,8,1,15,12,8,1,15,1,8,1,15,1,14,1,15,5,8,1,15,1,14,1,15,3,14,8,15,1,8,2,15,4,8,1,15,1,8,1,15,1,14,1,15,2,14,3,15,3,8,1,15,4,8,2,15,1,8,3,10,15,8,1,10,2,8,1,10,6,8,3,10,4,8,2,10,2,8,1,15,1,8,1,15,2,14,3,15,1,8,2,9,1,8,1,9,3,8,12,15,1,8,2,9,3,8,1,9,2,10,1,9,1,10,3,8,4,10,4,8,1,15,1,10,4,8,3,10,4,8,1,10,11,8,9,10,1,8,1,10,3,8,10,10,1,8,7,10,2,8,1,10,5,8,1,10,9,8,1,10,1,8,2,10,2,8,2,10,3,19,12,4,230,}, + {4,185,19,40,10,1,15,3,8,3,9,1,8,1,10,1,4,1,10,1,19,25,10,2,14,1,15,2,8,12,15,2,14,1,15,3,8,3,9,1,10,1,8,1,15,2,8,3,15,1,10,2,19,4,10,1,8,2,10,1,19,12,8,1,15,7,8,2,15,1,14,1,15,2,8,1,15,2,14,1,15,2,8,1,9,1,8,2,15,4,8,1,15,2,8,1,15,2,14,1,15,1,8,2,15,1,14,1,8,1,10,4,8,2,15,1,8,2,15,5,14,1,15,4,8,5,9,2,10,27,8,1,10,6,8,1,10,3,8,4,15,1,14,3,15,1,8,2,9,1,8,3,15,2,8,1,15,1,8,5,15,3,8,3,9,5,8,1,9,1,10,6,8,2,10,6,8,1,10,5,8,2,10,4,8,5,10,6,8,3,10,1,8,5,10,5,8,9,10,3,8,13,10,2,8,2,10,3,8,1,10,1,8,6,10,8,19,12,4,230,}, + {4,185,19,40,8,1,14,3,15,2,8,1,10,3,19,28,10,1,15,3,8,4,15,2,8,3,15,2,8,1,15,3,9,1,8,1,15,1,8,4,9,1,8,1,15,2,8,3,9,1,10,2,19,4,10,1,8,1,15,1,8,1,19,12,10,1,8,2,15,4,8,1,15,2,14,2,15,1,8,1,15,4,14,1,15,1,8,1,10,1,9,1,8,1,15,1,14,1,15,3,14,4,17,3,7,1,15,1,14,2,15,3,8,2,15,1,14,1,15,2,8,1,15,3,14,1,15,1,8,1,15,1,8,2,9,1,10,2,9,3,10,16,8,2,10,17,8,2,10,4,8,3,15,1,14,2,15,3,8,7,15,2,8,1,9,1,10,1,9,1,8,1,15,1,8,1,15,1,8,4,9,1,8,1,9,2,8,3,10,2,8,2,10,3,8,1,10,2,8,1,10,16,8,2,10,6,8,12,10,2,8,11,10,1,8,6,10,2,8,3,10,8,8,1,10,2,8,7,10,7,19,13,4,230,}, + {4,193,19,31,10,1,14,3,15,2,8,1,10,5,4,1,19,26,10,2,15,3,8,1,15,1,8,4,15,2,10,1,8,3,15,1,8,3,15,1,8,1,15,1,14,3,15,1,14,1,15,2,8,2,10,3,9,1,10,1,19,2,10,2,8,2,10,1,19,11,10,1,8,1,15,2,14,2,15,3,14,2,8,1,9,1,8,3,9,1,15,2,8,1,10,3,8,1,14,3,15,1,14,3,15,2,14,1,15,1,14,4,15,10,8,2,15,1,8,4,9,1,10,1,9,2,10,1,9,1,8,3,9,3,10,1,8,2,10,12,8,1,10,8,8,1,10,7,8,2,10,2,9,1,8,1,9,1,8,2,15,2,14,1,15,1,8,2,15,1,8,1,9,1,8,3,15,1,8,1,15,1,8,1,9,3,8,3,15,1,8,7,10,1,8,2,10,2,15,1,10,4,8,1,10,7,8,3,10,9,8,2,10,6,8,1,10,3,8,4,10,2,8,2,10,3,8,1,10,2,8,6,10,1,8,2,10,1,8,10,10,3,8,1,10,2,8,3,10,2,8,2,15,2,8,2,10,7,19,15,4,229,}, + {4,193,19,30,10,2,15,2,8,4,10,4,4,2,19,26,10,2,8,1,15,3,8,1,15,1,8,3,10,3,8,1,10,2,15,1,8,5,14,6,15,1,8,5,15,1,9,1,10,1,19,2,10,1,8,3,10,1,19,9,10,2,9,1,15,4,14,4,15,1,9,1,10,3,9,1,8,2,15,1,9,1,10,3,9,1,15,4,14,3,15,1,14,2,15,1,8,1,15,1,14,2,15,2,8,1,15,3,14,1,15,1,14,1,15,2,8,4,9,5,10,1,9,1,8,6,15,1,8,1,10,3,8,1,10,3,9,1,10,3,9,1,10,18,8,2,10,4,9,1,8,2,9,1,8,1,15,2,8,1,9,2,8,1,14,1,15,1,8,4,15,1,8,1,15,2,8,4,15,2,8,6,10,11,8,2,10,6,8,4,10,8,8,3,10,10,8,3,10,4,8,1,10,10,8,2,10,1,8,12,10,4,8,3,10,2,8,8,10,1,8,4,10,3,19,14,4,230,}, + {4,193,19,29,10,1,14,1,15,1,10,2,8,4,9,1,10,2,19,30,10,1,8,1,15,2,14,3,15,1,10,5,9,1,10,2,15,3,8,2,15,1,14,4,15,2,7,1,15,2,8,1,15,2,8,2,10,2,19,1,10,2,8,2,10,1,19,10,10,1,8,1,15,1,14,1,15,3,14,1,15,2,10,4,9,1,15,3,8,1,10,4,9,1,8,2,15,3,14,4,17,2,14,3,15,1,14,3,15,9,8,1,9,2,8,2,9,1,8,1,15,1,8,1,15,8,8,2,9,1,10,1,8,1,9,1,10,1,9,3,10,1,9,2,10,17,8,2,10,3,9,4,10,3,8,1,15,1,9,1,10,1,9,1,15,3,8,7,15,2,8,5,9,1,8,4,10,7,8,1,10,4,8,1,10,2,8,2,10,2,8,2,15,1,8,3,10,3,8,1,14,2,15,1,8,3,10,2,8,1,10,6,8,2,10,8,8,7,10,1,8,2,10,2,8,11,10,1,8,3,10,1,8,2,10,3,8,7,10,3,8,1,10,1,8,1,10,2,19,15,4,230,}, + {4,195,19,27,4,1,14,2,10,1,8,1,15,2,8,1,15,1,10,2,19,32,10,1,9,1,15,3,14,1,15,1,8,1,10,3,19,1,10,3,15,3,8,1,15,1,8,2,15,1,8,1,9,1,10,1,8,3,15,3,8,2,10,3,19,1,10,1,9,1,8,2,10,2,19,10,10,1,15,2,8,1,15,1,14,1,15,1,9,1,10,2,19,2,9,1,15,2,8,2,9,1,10,3,9,1,8,2,9,1,8,1,14,1,15,2,14,1,15,11,14,1,15,3,14,2,15,2,14,1,15,4,8,2,15,2,14,1,8,1,15,3,14,2,15,1,9,4,8,3,9,6,8,1,9,1,10,16,8,1,10,3,9,5,10,1,9,1,8,3,10,3,9,1,8,9,15,1,8,6,10,1,9,1,8,1,10,1,8,2,10,5,8,1,10,4,8,6,10,2,8,1,15,1,8,3,10,5,8,4,10,3,8,1,10,8,8,1,10,8,8,11,10,1,8,4,10,1,8,14,10,1,8,4,15,1,14,1,8,4,10,5,19,15,4,231,}, + {4,196,19,27,15,1,14,1,10,3,8,4,10,2,19,33,9,1,15,3,14,1,15,1,8,1,10,1,19,4,10,1,9,1,8,1,15,2,8,1,15,3,8,2,10,2,8,2,15,1,14,2,15,2,8,1,10,1,19,2,10,2,15,1,8,2,10,1,19,11,8,1,14,1,15,2,14,1,8,1,10,2,19,3,9,1,4,1,9,1,10,5,15,3,8,2,15,1,14,3,15,2,14,2,15,1,8,2,15,2,14,2,15,2,14,6,15,1,14,1,15,2,14,2,15,1,8,1,15,1,14,1,8,1,10,1,9,1,15,1,14,2,15,1,8,1,9,1,10,2,9,1,15,1,8,1,9,1,10,1,9,1,8,1,9,3,8,1,10,2,8,1,10,15,8,3,15,2,8,3,9,1,8,5,9,1,10,1,9,1,8,1,15,1,8,13,9,1,10,1,8,2,10,2,8,1,10,3,8,2,10,2,8,3,10,1,8,4,10,3,8,3,10,2,8,3,10,3,8,1,15,1,8,2,10,12,8,2,10,5,8,6,10,1,8,1,15,2,8,20,10,1,8,9,10,8,19,15,4,231,}, + {4,197,19,26,10,1,14,1,15,1,10,2,9,1,8,1,15,1,8,1,10,2,19,34,9,1,8,1,15,4,10,1,19,6,10,1,8,3,15,2,8,3,10,2,9,1,8,2,15,2,14,2,15,1,10,2,19,1,10,2,15,2,8,1,10,1,19,11,10,1,15,1,8,3,10,1,19,5,10,1,19,1,10,5,15,5,14,3,15,2,14,1,15,5,8,1,15,2,14,12,15,4,8,4,9,1,10,2,9,1,8,1,15,1,8,1,10,1,9,1,10,1,8,3,10,2,9,1,8,2,9,1,10,1,9,1,8,3,10,16,8,1,9,1,8,1,15,5,8,2,9,1,8,6,15,4,8,1,15,1,8,1,9,2,8,1,9,1,8,2,9,1,8,1,9,1,10,1,8,2,10,6,8,1,10,3,15,1,8,1,10,3,8,3,10,6,9,1,10,1,8,2,9,1,8,6,10,12,8,5,10,1,8,1,10,1,8,8,14,1,15,1,8,21,10,1,8,5,10,5,8,1,10,4,19,16,4,231,}, + {4,199,19,25,14,2,15,2,8,1,15,2,8,1,10,4,19,33,10,3,9,2,10,1,19,3,10,2,19,1,10,3,8,1,15,1,8,1,15,2,8,1,10,2,9,1,8,2,9,2,14,2,15,1,9,1,10,1,19,1,10,1,9,1,8,1,15,1,8,1,10,1,19,9,10,1,19,6,10,1,19,1,10,2,19,4,10,1,8,1,10,2,8,1,15,1,8,3,15,1,14,2,8,3,15,6,14,14,15,4,8,1,9,2,8,3,9,2,10,3,8,1,10,2,8,3,10,5,8,1,10,3,8,2,15,1,10,18,9,1,8,2,15,1,14,1,15,1,8,2,10,1,8,3,10,1,8,4,15,2,14,2,8,2,9,1,8,1,9,1,8,1,9,3,10,1,8,1,10,12,8,2,10,3,8,3,10,5,9,3,8,1,9,1,8,3,10,2,8,3,10,5,8,5,15,3,8,2,15,1,8,38,15,1,8,3,10,2,8,2,10,3,19,16,4,232,}, + {4,199,19,25,15,2,8,1,15,2,8,1,9,1,8,1,15,1,9,1,10,1,19,37,10,2,19,4,10,7,8,1,15,3,14,1,8,3,15,3,8,1,15,4,8,1,10,3,9,1,8,1,10,1,19,10,4,1,19,8,10,7,8,1,10,2,9,1,15,1,8,2,15,4,8,1,9,1,8,1,15,2,14,2,15,1,14,2,17,1,14,2,16,1,14,8,8,1,10,5,8,2,15,4,8,1,9,1,8,2,9,1,10,1,8,1,10,4,8,1,10,8,8,2,10,17,9,1,8,3,15,1,14,1,15,2,8,4,15,1,8,2,15,1,14,1,15,3,8,3,9,1,8,2,9,1,10,1,9,1,8,1,9,1,10,1,8,1,10,7,8,1,10,3,8,3,10,2,8,1,10,1,8,1,10,3,8,6,9,2,8,2,9,1,10,1,8,5,10,2,8,2,10,1,8,4,10,1,8,4,14,1,8,3,10,3,8,9,10,1,8,7,14,1,15,1,8,9,10,2,8,6,10,7,19,15,4,233,}, + {4,199,19,25,15,3,8,3,15,2,9,1,10,1,19,47,10,2,8,1,10,2,8,1,15,1,8,1,15,1,8,3,15,1,14,1,15,1,8,1,15,5,10,7,19,17,10,7,8,2,10,1,8,1,10,1,8,1,15,2,14,1,15,8,14,1,15,1,14,8,8,2,15,1,8,1,15,1,8,2,10,5,9,1,15,2,14,3,15,1,9,2,8,1,9,1,8,2,10,30,9,1,10,2,8,3,15,1,14,1,15,3,8,1,10,1,8,4,15,1,14,1,15,1,14,2,8,1,9,5,10,1,9,1,8,4,10,7,8,1,10,2,8,1,10,1,8,4,10,3,8,3,10,1,8,4,9,3,8,6,15,3,8,1,10,1,8,3,10,1,8,24,10,1,8,2,10,1,8,21,10,2,8,1,10,7,19,14,4,235,}, + {4,199,19,25,14,2,8,1,10,1,9,1,15,3,8,1,10,2,19,45,10,2,8,3,10,2,8,1,14,1,15,5,14,1,15,5,9,2,10,10,19,14,10,1,8,1,10,4,8,6,15,2,8,4,14,4,15,5,14,6,15,1,8,2,15,1,8,2,10,4,9,1,8,1,15,1,8,2,15,2,14,1,15,1,8,1,9,1,10,2,8,1,15,2,8,2,10,5,8,1,9,1,10,13,8,2,10,4,8,3,10,1,9,1,8,1,15,3,14,1,15,3,8,7,14,3,8,1,9,1,10,1,9,1,8,2,10,1,9,1,8,5,10,7,8,2,10,1,8,6,10,2,8,4,9,1,8,1,15,1,8,2,9,3,8,5,15,5,8,4,10,1,8,19,10,1,8,7,10,1,8,18,10,1,8,3,10,1,8,2,10,1,8,1,14,1,10,2,19,15,4,235,}, + {4,201,19,23,14,2,8,1,10,1,9,1,8,2,15,2,9,2,19,44,10,2,15,1,8,4,10,2,8,2,15,1,14,4,15,4,8,1,10,2,8,1,9,1,10,3,8,2,15,1,8,2,10,1,19,12,10,2,8,1,10,4,8,3,10,1,9,1,8,2,9,1,10,2,9,2,8,1,14,14,15,4,14,1,8,3,15,3,14,2,15,3,8,1,9,1,10,1,9,2,10,1,9,1,15,3,9,3,8,1,9,2,8,1,14,1,15,1,8,1,9,2,10,8,8,6,10,1,8,2,9,1,10,2,9,1,8,2,15,3,8,10,15,1,14,1,15,1,9,1,8,2,10,1,9,1,8,1,10,1,8,1,15,1,8,4,10,7,8,2,10,1,8,6,10,2,8,1,10,1,8,2,10,1,8,1,15,1,8,2,9,2,8,9,15,2,8,1,10,1,8,7,10,2,8,1,10,5,8,1,10,1,8,5,10,7,8,4,10,1,8,15,10,1,8,3,10,1,8,2,10,1,8,1,14,1,10,1,19,14,4,237,}, + {4,201,19,23,14,1,15,1,8,4,9,2,8,2,9,2,4,1,19,42,10,1,15,1,14,1,15,3,8,2,9,2,8,3,15,1,8,4,15,1,8,3,15,2,8,2,9,1,10,1,8,1,15,2,10,3,19,12,10,1,8,4,10,2,8,5,15,2,8,1,9,1,8,5,15,1,14,3,15,2,8,1,15,2,14,3,15,1,7,1,14,1,7,1,15,1,14,1,8,1,15,1,14,7,15,1,10,5,8,1,9,1,8,6,15,5,14,1,15,3,8,1,9,1,8,1,10,6,8,1,10,2,8,2,9,2,8,2,10,3,8,1,15,2,8,1,15,1,8,1,9,1,10,1,8,8,9,1,15,1,8,1,9,1,8,2,10,2,8,1,10,1,8,1,15,1,8,1,10,8,8,8,10,3,8,2,10,2,8,4,15,2,8,14,9,1,10,4,8,3,10,12,8,2,10,8,8,4,10,1,8,1,10,1,8,9,10,1,8,4,10,2,8,5,10,4,19,14,4,237,}, + {4,202,19,21,10,1,8,8,15,1,8,1,4,2,9,1,19,42,10,1,15,7,8,1,9,1,15,5,8,3,15,1,8,2,15,1,14,1,15,1,8,1,15,1,9,1,10,2,8,1,15,3,9,1,19,11,10,1,8,1,15,4,8,1,10,1,8,5,9,9,8,2,15,1,8,2,15,3,7,1,14,9,15,2,14,2,15,1,14,1,15,1,14,1,8,1,10,4,9,1,10,1,9,1,8,1,9,3,8,2,15,3,14,2,15,2,8,1,15,4,8,1,10,10,8,4,9,3,8,1,15,4,8,2,9,1,10,1,9,1,8,1,9,1,8,4,9,2,8,1,9,1,10,6,8,5,10,2,8,1,10,4,8,5,15,1,8,4,10,1,8,1,10,3,8,9,9,2,8,3,9,3,8,1,9,1,8,1,9,1,10,1,9,2,8,2,10,1,8,2,10,11,8,1,10,10,8,5,14,1,8,9,10,1,8,3,10,6,8,3,10,2,19,14,4,238,}, + {4,202,19,20,10,1,8,1,10,1,8,6,15,2,9,2,10,1,19,43,10,2,8,1,15,5,14,1,15,1,14,3,15,5,8,2,15,1,14,2,15,1,9,2,10,4,8,1,15,2,8,1,19,12,10,1,9,1,10,1,9,1,10,3,9,1,8,3,10,4,9,2,8,8,15,2,14,12,15,5,14,2,9,1,10,8,9,3,8,1,15,1,8,2,15,2,14,2,15,5,8,1,9,2,10,7,8,1,10,1,8,3,9,1,8,1,15,1,8,1,15,7,8,1,9,2,8,1,10,2,8,3,9,2,10,7,8,3,10,2,8,1,10,2,8,2,10,3,8,2,9,2,8,8,10,1,8,4,10,1,8,2,15,1,8,2,9,4,8,6,9,2,10,1,9,1,10,3,8,3,15,1,10,8,8,1,10,2,8,2,10,9,8,2,10,1,8,19,10,1,8,1,10,6,19,15,4,238,}, + {4,201,19,21,10,1,15,1,8,1,15,2,8,4,9,1,10,3,19,45,10,1,15,4,14,11,15,1,8,3,15,1,14,2,8,1,9,1,15,1,8,2,10,5,19,3,10,2,19,4,10,1,19,1,10,13,9,1,10,1,8,1,15,6,8,1,15,6,14,10,15,3,14,1,15,1,14,1,15,2,10,3,8,1,10,5,9,1,8,1,9,1,15,9,8,1,15,1,8,1,15,2,9,1,10,8,8,2,10,1,8,5,15,5,8,1,15,2,8,9,9,2,10,14,8,2,10,3,9,1,8,4,9,1,8,4,10,1,8,6,15,1,8,2,15,1,8,2,9,1,10,3,9,1,8,2,9,1,8,2,9,2,10,1,9,1,10,1,9,1,10,2,8,1,15,1,8,1,15,1,10,7,8,4,15,2,8,1,10,8,8,2,10,2,8,1,10,2,8,8,10,1,8,5,10,6,8,1,10,2,19,14,4,239,}, + {4,202,19,20,10,1,14,2,15,1,8,3,15,3,9,1,10,1,19,46,10,1,15,8,8,4,15,1,14,1,15,3,8,2,15,1,14,2,8,1,9,2,15,3,8,1,10,3,19,7,10,1,8,1,15,1,8,1,10,15,15,1,14,1,15,1,8,2,15,3,14,6,7,3,14,7,8,1,14,3,15,2,9,3,10,1,9,1,10,4,8,2,15,1,8,1,15,3,8,2,15,4,14,2,15,1,8,1,15,1,9,1,10,12,9,1,8,2,15,1,8,1,15,3,8,4,15,1,8,1,9,2,8,3,15,1,8,1,9,3,8,2,10,9,15,2,8,2,10,5,8,1,15,2,8,6,10,1,8,4,10,2,8,4,10,1,9,1,10,1,9,1,10,2,8,7,10,1,9,1,8,1,9,1,10,3,8,1,15,1,8,2,10,7,8,1,15,3,8,1,15,1,8,1,10,8,8,5,10,1,8,10,10,1,8,9,10,1,14,1,10,2,19,14,4,239,}, + {4,200,19,22,10,1,14,1,15,2,8,1,15,5,9,1,10,1,19,47,10,1,8,1,14,1,15,2,14,1,8,1,10,2,8,3,14,2,15,2,9,1,8,2,15,2,14,1,8,1,15,2,9,1,8,1,15,1,8,4,10,6,9,1,10,2,15,1,8,1,10,4,9,2,10,5,8,1,10,4,8,1,15,2,8,1,15,3,8,1,15,1,14,6,17,1,14,4,17,1,14,2,8,1,9,1,10,1,9,1,8,2,9,1,8,1,15,1,8,1,9,1,10,1,9,1,10,1,8,1,15,2,8,1,15,1,8,2,15,1,10,1,8,1,15,1,14,6,15,2,10,8,8,2,10,1,9,1,8,1,10,1,9,1,8,3,15,4,8,3,15,1,8,5,15,1,8,2,9,2,10,2,9,1,10,9,8,1,10,7,8,5,9,2,8,5,15,2,8,10,10,2,8,2,9,2,8,5,10,1,8,2,10,4,8,2,10,8,8,3,15,3,10,14,8,2,14,1,15,1,8,1,10,2,8,2,10,2,8,4,10,1,8,2,10,7,19,12,4,241,}, + {4,201,19,20,10,1,15,1,8,1,15,1,8,1,9,1,15,4,8,1,10,2,19,47,10,2,15,2,14,1,15,1,8,1,10,2,8,3,15,4,8,1,15,1,8,1,15,2,8,1,15,3,14,1,15,1,8,2,15,2,8,2,10,2,9,1,8,3,9,2,8,2,10,1,8,2,9,1,8,1,10,5,8,3,10,4,8,2,15,2,14,1,8,3,15,1,14,1,7,1,14,1,17,1,14,1,17,1,14,6,15,1,8,1,10,3,9,3,15,2,8,3,15,1,8,2,15,3,14,1,15,1,8,1,15,1,8,1,15,4,14,3,15,1,8,1,9,1,10,9,8,1,10,2,9,1,8,5,15,3,8,1,15,4,8,3,15,1,8,5,10,1,9,1,10,19,8,1,15,1,8,2,9,1,8,3,9,1,10,2,8,2,15,1,8,8,9,1,10,1,9,1,10,8,8,2,10,1,8,4,10,1,8,2,15,1,10,5,8,2,10,1,8,6,10,8,8,3,10,1,8,7,10,3,8,1,10,2,8,1,10,1,8,3,10,1,8,1,10,6,19,13,4,241,}, + {4,201,19,20,15,2,10,1,15,1,8,1,9,1,8,1,15,4,10,2,19,49,9,1,8,1,15,1,8,1,10,1,8,3,15,2,9,1,8,1,15,5,14,2,8,1,14,1,15,2,14,2,15,1,8,7,15,5,8,4,15,2,8,1,10,5,8,5,10,5,8,2,15,1,8,1,9,1,8,4,14,10,15,1,8,3,9,2,8,2,15,2,8,2,15,3,8,1,15,4,14,1,15,1,14,7,15,2,8,1,10,10,8,6,15,2,8,1,15,3,8,1,15,5,8,3,15,1,8,4,9,2,10,1,9,1,10,1,9,2,10,15,8,1,15,3,8,4,10,3,8,3,9,1,8,4,9,1,8,2,10,7,8,1,10,4,8,3,15,1,8,2,10,3,8,2,10,4,8,5,10,1,8,4,10,7,8,7,10,1,8,7,10,1,8,2,10,1,8,2,10,4,8,3,10,2,19,13,4,241,}, + {4,201,19,20,10,1,15,1,10,1,8,1,14,1,8,1,9,1,10,2,9,1,8,1,9,1,19,51,10,5,8,2,15,3,8,1,15,1,8,4,15,1,14,1,15,2,8,2,14,3,15,1,8,2,15,1,8,1,15,14,10,2,8,1,15,6,8,2,10,5,9,1,10,1,9,1,8,2,15,1,8,2,14,1,7,1,15,2,7,1,14,1,15,2,14,1,15,1,8,2,15,2,8,5,15,1,8,2,15,1,14,1,15,1,8,5,15,3,14,4,15,1,8,1,15,1,8,1,9,1,10,11,8,3,15,6,8,1,15,6,8,3,15,3,8,3,9,2,8,1,15,1,8,1,15,1,8,1,10,16,8,2,15,3,8,2,9,1,10,1,8,3,10,2,8,3,9,1,10,1,8,1,9,1,10,2,8,1,9,1,10,4,8,1,10,3,8,1,15,1,8,1,15,2,8,1,10,3,8,1,10,1,8,1,10,5,8,4,15,2,8,3,10,4,8,1,10,2,8,4,10,1,8,1,10,2,8,4,10,1,8,1,10,2,8,3,10,5,8,3,10,2,19,13,4,241,}, + {4,201,19,21,10,2,15,1,8,2,9,1,8,1,9,1,10,3,19,51,10,2,8,2,15,1,8,3,15,2,8,3,15,1,8,1,15,2,8,1,15,1,8,1,9,1,8,1,9,1,15,1,14,1,15,1,8,7,15,1,14,1,15,3,8,3,15,2,8,1,10,3,8,7,10,6,8,2,15,1,9,1,15,1,14,9,7,1,15,1,7,1,15,3,14,1,15,2,8,2,15,1,8,1,15,1,8,1,15,2,14,1,15,1,8,1,15,1,14,1,15,2,14,3,15,2,8,1,9,3,10,8,8,3,9,3,8,4,15,12,8,1,9,1,8,2,15,3,8,2,10,1,9,1,8,1,15,3,8,1,10,6,8,2,10,2,8,1,10,7,9,1,8,2,9,2,8,11,9,1,8,1,9,2,10,8,8,1,10,4,8,1,15,1,8,1,10,1,8,7,10,4,8,1,10,1,8,2,15,2,8,3,10,1,8,3,10,2,8,4,10,3,8,8,10,2,8,3,10,2,8,1,10,1,8,3,10,2,19,13,4,242,}, + {4,201,19,21,10,1,8,2,15,4,9,1,10,3,19,52,10,1,15,1,14,3,15,2,14,1,15,1,8,1,9,2,8,4,9,1,15,2,8,2,9,1,8,5,9,2,8,3,15,1,14,1,15,1,8,5,15,2,8,1,10,4,15,1,8,2,15,1,8,2,10,3,9,1,8,2,15,3,8,2,14,15,15,5,14,1,15,2,14,5,15,1,14,3,15,3,8,2,10,3,9,2,10,6,9,1,10,2,8,1,15,1,8,2,9,1,8,4,15,7,14,1,15,4,8,5,15,2,8,1,9,3,8,1,15,1,8,2,10,18,9,1,10,1,9,2,10,2,9,3,8,2,9,1,8,5,10,1,9,1,8,2,10,1,9,1,8,3,10,3,8,1,10,5,8,1,10,2,8,3,15,1,8,2,15,1,8,1,10,3,8,2,15,1,8,5,10,8,8,1,10,1,8,1,10,4,8,7,10,1,8,1,14,2,8,1,10,2,8,3,10,4,19,13,4,242,}, + {4,201,19,21,10,1,15,1,8,2,15,2,14,1,8,1,9,2,10,1,19,53,9,1,14,3,15,2,14,2,15,1,8,3,10,1,8,3,15,1,14,1,15,1,14,1,15,1,9,1,15,1,8,4,9,1,8,3,15,1,14,1,8,1,9,1,15,1,8,1,15,1,14,2,15,1,9,1,10,3,8,5,15,1,8,2,9,1,8,1,15,2,8,3,15,1,8,1,15,4,14,4,7,1,14,7,15,1,7,1,14,4,15,1,14,5,15,3,14,1,15,3,8,1,9,1,10,3,8,1,15,2,10,9,8,7,15,9,14,1,15,4,8,5,15,1,8,2,9,4,8,3,10,2,8,2,10,13,8,1,9,1,10,2,9,4,10,1,9,1,8,1,9,1,8,1,10,1,8,3,9,1,10,1,9,2,8,1,10,4,8,1,10,4,8,1,10,4,8,1,10,2,8,5,10,1,8,3,10,1,8,8,10,11,8,3,10,2,8,3,15,1,8,3,10,1,8,1,14,2,15,1,10,2,8,4,10,2,19,14,4,242,}, + {4,201,19,21,10,1,14,1,15,3,9,1,8,1,15,2,8,1,10,1,19,53,9,1,14,2,8,1,10,1,9,1,14,1,15,2,14,1,15,1,9,1,10,2,15,2,14,3,15,1,10,3,15,1,8,1,9,1,8,5,14,1,15,1,9,1,8,2,15,1,14,2,15,1,10,4,9,1,10,3,8,4,9,1,8,1,15,3,8,1,15,1,14,3,17,1,14,2,8,1,7,1,14,7,15,1,14,1,7,1,15,4,14,2,15,4,14,3,9,3,8,4,9,1,10,4,15,2,8,1,10,6,8,1,10,2,8,2,15,7,14,1,15,4,8,1,15,2,14,1,8,2,15,1,8,2,15,1,8,2,15,1,8,5,9,2,8,1,9,1,10,2,8,2,10,17,9,1,15,2,9,4,8,1,9,1,10,1,9,1,8,3,10,3,9,1,10,4,8,1,10,5,8,2,10,3,8,2,15,1,8,2,10,4,8,2,10,2,8,1,10,1,8,4,10,6,8,1,10,3,8,6,10,1,8,4,10,2,8,1,10,1,8,2,15,1,14,1,8,1,10,3,8,2,10,1,19,15,4,242,}, + {4,201,19,21,10,1,14,1,15,2,8,1,15,3,9,1,10,2,19,54,10,4,8,1,14,6,10,4,15,3,8,1,10,3,9,1,8,2,15,2,8,4,15,1,9,1,8,1,15,1,14,1,15,1,8,1,10,4,9,1,15,1,8,1,9,1,10,2,8,4,9,1,8,1,14,1,15,2,8,2,15,1,14,3,7,1,14,1,15,1,7,2,14,5,7,1,14,1,15,5,8,1,15,1,14,5,15,1,8,1,10,1,9,1,8,4,9,1,10,3,8,1,15,1,14,1,15,1,10,6,8,4,15,15,8,1,15,4,8,9,9,4,8,1,9,1,8,1,9,1,10,1,8,2,10,15,9,2,8,2,9,1,8,1,9,1,8,2,9,1,8,1,9,1,10,1,8,1,9,2,10,1,9,1,10,1,9,3,10,13,8,3,10,9,8,2,10,2,8,2,10,1,8,1,10,5,8,9,10,1,8,3,10,2,8,1,10,4,8,2,15,2,8,2,15,2,8,1,10,1,19,14,4,243,}, + {4,201,19,21,10,1,14,1,15,1,8,2,15,3,8,1,9,1,10,2,19,56,10,1,8,1,15,3,8,2,10,5,8,1,15,1,8,1,9,1,10,1,19,1,10,4,9,1,10,2,9,1,10,1,8,2,9,2,8,1,9,1,10,6,8,1,14,1,15,1,14,1,15,1,8,3,15,1,8,2,14,2,15,3,8,2,15,1,7,2,8,2,7,1,14,11,15,2,8,2,15,3,14,1,15,2,8,3,10,3,9,2,8,1,15,3,14,3,9,1,10,7,8,2,9,1,8,5,15,5,14,2,15,2,14,1,15,6,8,6,15,1,8,1,15,1,8,2,9,2,10,1,8,2,9,1,10,16,9,2,15,3,8,1,9,4,8,1,10,1,9,1,8,2,9,3,8,2,9,1,8,2,10,6,8,1,10,6,8,1,10,11,8,3,10,1,8,2,10,5,8,8,15,1,8,1,10,2,8,4,10,3,8,1,10,3,8,4,15,3,10,2,19,14,4,243,}, + {4,201,19,21,10,1,15,1,8,1,15,4,8,3,9,1,10,1,19,55,10,1,9,1,10,8,19,2,10,1,8,3,10,1,19,3,10,7,9,1,8,1,15,1,8,1,10,3,19,3,10,1,9,1,8,2,15,1,14,3,15,3,14,1,15,1,7,1,14,4,7,1,15,1,8,5,15,1,8,1,7,1,14,2,7,1,14,7,15,1,8,2,15,1,14,4,8,4,9,1,10,4,9,1,15,3,14,2,15,1,8,1,10,8,9,1,8,2,9,4,15,10,14,1,15,4,8,3,15,6,8,1,15,1,8,1,9,1,8,1,10,2,9,1,10,15,9,1,10,1,9,1,15,5,8,2,9,1,8,1,9,3,8,4,9,1,8,1,15,2,8,3,9,1,10,5,8,1,10,3,8,1,10,13,8,2,15,1,8,4,10,5,8,10,10,6,8,3,10,3,8,1,10,1,8,2,15,1,14,1,15,1,8,1,10,2,19,15,4,242,}, + {4,201,19,22,10,2,8,1,15,2,8,2,9,2,10,2,19,55,10,1,19,1,10,4,8,1,15,1,19,5,9,1,8,1,10,1,19,5,10,3,8,2,15,3,14,1,8,1,10,1,19,6,9,1,15,1,8,2,15,1,14,3,15,1,14,2,15,1,14,1,15,1,14,5,7,2,8,3,7,1,15,1,7,1,15,2,14,1,15,1,8,1,15,1,14,1,17,1,14,4,17,1,14,4,15,1,8,4,9,1,10,3,9,1,10,2,9,2,14,1,8,1,10,6,9,5,8,1,15,1,8,2,9,1,8,1,15,2,14,1,15,7,14,1,15,5,8,5,15,3,8,2,9,2,10,2,8,2,10,15,9,2,8,1,15,1,9,1,15,1,8,2,15,1,8,1,15,1,9,2,10,1,9,3,8,4,9,1,8,1,9,2,8,2,10,4,8,2,10,3,8,1,10,4,8,5,10,3,8,4,10,1,8,1,10,2,8,3,10,3,8,1,10,2,8,4,10,8,8,9,14,3,8,1,15,1,8,1,10,1,19,16,4,241,}, + {4,201,19,22,9,1,8,4,10,5,19,60,10,1,9,2,10,1,19,5,9,1,8,1,9,1,19,5,10,2,8,1,15,1,14,3,15,2,8,1,10,1,19,6,10,2,9,1,10,1,8,1,15,1,14,5,15,1,14,1,7,1,14,8,7,1,8,3,15,1,8,1,15,1,8,2,15,2,8,1,9,1,8,1,15,2,8,1,10,1,8,1,15,3,8,8,15,2,8,1,9,1,10,1,9,1,8,2,10,3,9,1,8,1,9,3,8,1,9,2,8,1,15,2,8,2,15,10,14,1,15,2,14,3,15,2,8,2,15,1,8,1,15,1,8,2,15,1,8,1,9,1,10,2,8,2,10,15,9,1,10,1,9,1,8,2,9,2,8,1,15,2,8,2,9,4,10,1,8,1,9,1,8,1,9,4,10,1,9,1,8,1,9,1,10,5,8,1,10,7,8,6,10,1,8,3,10,4,8,2,10,1,8,4,10,1,8,4,10,1,8,6,10,6,15,1,14,1,15,1,8,5,15,3,14,3,10,1,19,16,4,241,}, + {4,201,19,22,10,1,9,1,15,2,8,2,10,4,19,60,10,3,19,6,9,2,10,1,19,4,10,3,15,3,14,1,8,4,10,1,19,8,10,4,8,1,14,4,15,1,14,6,7,1,14,2,7,1,14,3,7,1,15,2,7,1,15,1,8,2,15,1,10,1,9,1,10,2,8,2,10,1,9,1,8,8,15,1,14,1,15,3,8,1,10,5,8,1,10,2,8,1,15,1,8,1,9,2,8,1,15,1,8,3,15,1,8,1,15,2,8,2,15,5,14,4,15,1,14,3,15,4,8,7,10,16,9,1,10,1,9,1,8,1,15,1,9,1,15,1,14,1,15,1,8,2,15,1,8,3,9,4,10,1,9,4,10,1,9,2,8,1,9,2,10,4,9,1,10,2,8,3,10,4,8,1,15,1,10,3,8,6,10,4,8,5,10,4,8,2,10,6,8,2,10,1,8,3,10,1,8,4,10,2,8,2,10,1,8,2,15,1,14,1,15,1,8,2,10,1,19,15,4,241,}, + {4,201,19,23,15,1,14,1,15,1,8,3,15,1,8,2,10,1,19,60,10,2,19,6,4,1,10,1,19,4,10,2,9,2,15,1,8,2,15,1,8,1,10,1,8,2,10,1,19,8,10,6,15,2,8,1,15,3,14,7,15,1,7,1,14,1,17,1,14,1,7,1,14,3,15,1,8,2,15,1,8,6,15,1,8,1,9,1,8,4,15,3,14,3,15,1,9,1,10,6,8,1,9,3,8,1,9,1,15,4,8,1,15,1,8,1,15,1,8,4,15,4,14,5,15,1,14,4,15,2,8,1,15,1,8,4,9,1,10,2,8,2,10,13,8,3,15,1,14,1,8,1,14,2,15,3,8,3,9,4,10,2,9,2,10,2,9,2,8,1,9,2,10,4,9,1,10,1,9,1,8,1,15,1,8,2,10,4,8,2,10,3,8,1,10,1,8,4,10,2,8,4,10,5,8,1,10,11,8,4,10,1,8,3,10,4,8,1,10,1,8,1,15,1,14,1,15,1,8,3,10,1,19,15,4,241,}, + {4,199,19,25,14,2,8,4,15,1,8,1,10,1,9,1,10,1,19,73,10,1,8,1,15,1,8,2,15,1,8,6,10,1,19,7,10,2,8,1,10,5,9,2,8,1,10,1,15,3,14,1,17,2,14,1,17,1,14,1,15,1,7,1,14,1,16,1,17,1,16,1,17,1,16,1,14,1,8,2,15,1,14,3,15,1,14,2,15,1,9,1,8,2,9,1,8,1,15,1,14,6,8,1,9,1,10,4,8,2,9,1,10,1,9,1,8,3,15,1,8,1,15,1,8,1,15,2,8,1,15,1,8,2,15,4,14,12,15,1,8,4,9,1,8,3,9,1,10,9,9,1,8,2,9,1,15,1,8,1,9,1,8,2,15,1,14,2,8,1,14,2,8,1,15,1,8,4,9,4,10,1,9,2,10,1,9,2,8,1,9,2,10,2,9,1,10,2,9,1,8,1,9,2,8,1,14,2,15,1,8,2,10,2,8,1,10,3,8,1,10,2,8,4,10,2,8,4,10,5,8,1,10,11,8,3,10,2,8,1,10,2,8,4,10,1,8,3,15,1,14,4,10,1,19,15,4,241,}, + {4,199,19,25,10,1,15,1,8,1,15,1,8,1,15,3,8,1,9,1,4,1,19,73,10,1,9,1,15,1,8,4,15,1,8,1,10,2,19,5,10,2,8,1,9,1,8,1,15,2,8,1,10,4,8,1,15,2,14,1,8,1,9,1,10,2,8,1,7,1,14,2,15,2,8,1,15,1,14,1,7,1,15,1,14,4,15,1,14,7,8,1,10,1,9,1,8,1,15,2,14,7,15,1,8,1,9,1,10,1,8,1,9,1,8,1,9,1,8,5,15,1,8,1,15,1,8,2,15,1,8,1,15,1,8,1,15,5,14,12,15,2,8,2,9,1,8,1,9,1,8,5,10,8,8,2,15,3,8,2,15,1,14,4,8,1,15,1,8,1,9,1,8,3,15,4,8,1,15,2,8,1,9,1,10,1,9,3,10,2,9,5,10,1,9,1,8,3,15,2,14,3,8,1,10,3,8,4,10,1,8,2,10,5,8,3,10,3,8,4,10,9,8,7,10,1,8,11,14,3,10,1,19,16,4,4,19,1,4,235,}, + {4,199,19,25,10,11,19,73,10,1,15,2,8,5,10,2,19,6,10,1,8,1,15,4,14,2,15,1,8,1,10,3,8,3,9,1,10,3,8,1,15,1,14,5,7,2,15,1,7,1,15,2,8,1,15,2,14,1,15,3,8,3,9,2,8,1,15,3,14,7,15,1,8,3,9,1,8,5,15,1,8,3,15,1,8,4,15,1,8,2,15,1,8,1,15,3,14,4,15,1,14,4,15,1,14,1,15,3,8,3,9,1,8,3,10,6,8,1,10,2,8,1,9,1,8,1,15,2,8,2,15,2,14,4,8,1,14,1,8,2,15,1,8,2,15,1,14,2,15,2,14,3,15,1,8,1,9,2,10,1,9,1,10,1,9,1,8,1,9,2,8,7,15,1,8,1,15,1,14,1,8,2,10,4,8,2,10,8,8,1,10,1,8,1,10,1,8,1,10,2,8,5,10,9,8,4,10,3,8,7,10,3,8,2,14,1,15,1,19,18,4,3,19,1,4,235,}, + {4,199,19,28,10,4,8,1,19,76,9,1,15,1,8,1,15,1,8,4,10,1,19,6,10,1,8,2,15,1,14,6,15,1,10,3,9,1,10,1,9,1,8,5,15,1,14,3,17,1,14,5,8,1,7,1,14,1,15,2,7,1,8,2,9,1,10,5,8,1,14,4,15,2,14,1,15,1,14,1,15,1,8,1,9,1,8,1,9,1,10,1,8,1,15,6,14,1,15,3,8,2,15,2,8,1,15,1,8,1,15,4,14,9,15,1,8,7,9,1,8,3,10,6,8,1,10,2,8,3,15,1,9,2,8,1,15,2,14,2,17,1,14,1,8,1,14,1,15,2,14,1,15,2,14,2,16,1,14,1,15,1,14,2,8,4,9,1,10,2,9,2,8,6,9,1,8,4,10,1,15,1,8,1,10,16,8,2,10,1,8,2,10,2,8,4,10,10,8,1,10,1,8,2,10,3,8,3,10,7,8,2,10,2,19,19,4,1,19,2,4,235,}, + {4,198,19,29,10,1,4,2,15,1,14,1,19,75,10,1,8,1,14,1,8,1,15,1,14,1,15,1,8,1,10,1,19,6,10,1,8,1,15,1,8,2,14,3,15,4,8,3,15,3,14,9,17,1,14,5,15,1,14,6,15,1,8,3,9,2,10,1,15,2,8,4,9,2,8,1,15,1,8,1,10,4,9,1,8,1,15,1,14,1,15,2,14,3,15,7,8,1,15,6,14,6,15,2,8,2,9,4,8,1,9,1,8,1,10,1,8,3,10,9,15,4,8,2,15,2,14,3,16,1,14,1,15,1,14,1,15,2,14,2,15,1,14,1,16,3,14,1,16,1,8,2,9,9,8,1,15,1,8,1,9,1,10,2,9,1,10,1,8,4,10,11,8,1,10,7,8,1,10,6,8,1,10,8,8,1,10,2,8,1,10,2,8,2,10,2,8,3,10,4,8,4,15,1,10,2,19,22,4,235,}, + {4,197,19,30,10,2,4,1,14,2,19,76,10,1,15,1,9,1,8,3,10,2,19,5,10,1,8,1,15,2,8,2,15,1,7,1,14,5,8,3,15,2,14,1,15,1,8,1,15,1,14,2,15,5,8,1,10,2,8,1,14,2,17,1,14,8,15,1,8,1,10,1,8,1,10,9,9,1,10,1,9,1,10,1,9,2,15,2,14,3,15,2,14,4,15,1,14,2,15,1,8,1,15,1,14,2,15,4,14,2,15,5,8,7,15,4,8,3,10,7,8,2,15,2,14,1,15,1,9,1,15,1,14,5,16,2,14,1,15,2,8,1,15,3,14,1,16,1,14,4,9,2,10,1,9,3,8,3,10,2,8,3,10,6,8,2,10,12,8,1,10,7,8,1,10,15,8,1,10,3,8,3,10,3,8,4,10,3,8,1,15,1,8,3,10,1,19,23,4,235,}, + {4,197,19,25,10,3,19,2,4,1,19,1,10,1,4,2,19,43,10,1,4,3,19,27,10,1,9,1,8,1,15,1,8,4,10,1,19,5,10,1,8,1,15,1,14,2,15,1,8,5,14,6,15,3,8,1,15,1,14,6,15,1,9,1,10,3,9,1,8,1,9,1,15,2,14,2,15,5,8,1,10,13,9,1,10,1,9,3,15,2,14,2,15,4,14,6,15,1,8,1,15,1,14,2,15,12,8,1,15,1,8,4,15,2,8,3,10,8,8,2,15,1,8,1,15,2,8,1,9,1,14,1,16,2,15,1,8,1,14,1,16,2,14,2,8,2,15,1,8,1,15,1,14,1,16,1,15,1,8,1,15,2,9,8,8,1,10,1,8,1,10,1,9,1,10,7,8,2,10,34,8,1,15,1,10,3,8,1,10,1,8,1,10,3,8,5,10,1,8,1,10,1,8,2,15,1,8,1,4,1,10,1,19,20,4,1,19,2,4,235,}, + {4,197,19,24,4,3,15,1,10,1,19,1,4,1,19,44,10,4,4,4,19,6,10,4,19,16,10,1,15,4,8,2,9,1,19,6,10,1,8,1,14,2,15,1,14,2,8,4,7,1,14,4,7,1,15,4,14,6,15,1,8,1,9,1,10,1,8,3,10,2,9,1,8,1,15,1,8,1,9,1,10,1,9,5,10,6,8,3,10,1,9,1,8,1,9,1,10,1,9,2,8,1,15,8,14,6,15,3,14,2,15,2,14,3,15,2,14,2,15,1,8,1,15,3,8,9,10,6,8,1,10,1,8,2,15,1,8,2,14,1,15,1,8,1,14,1,16,1,14,1,15,1,8,1,15,1,14,4,15,1,8,1,15,1,8,1,15,1,14,1,16,1,15,1,9,2,15,1,8,1,9,1,8,1,9,2,10,2,9,1,8,1,9,2,10,2,8,3,10,40,8,2,10,3,8,1,10,2,8,1,10,2,8,4,10,1,8,2,10,2,8,1,15,1,10,2,19,20,4,3,19,1,4,235,}, + {4,197,19,24,15,1,14,1,10,1,14,1,15,1,19,1,4,1,19,44,4,1,9,1,10,1,19,3,4,2,10,1,19,4,10,1,9,1,15,2,8,1,10,1,19,15,9,1,14,1,15,1,8,1,15,1,10,3,19,6,10,2,15,3,14,2,8,2,15,2,17,1,14,1,7,2,14,1,7,1,14,3,17,1,14,3,17,1,14,1,15,1,10,1,15,1,14,1,15,4,8,2,15,3,9,6,10,1,9,1,8,2,10,4,8,1,15,1,8,2,15,1,14,1,9,1,10,2,9,1,8,1,15,7,14,2,15,1,14,1,17,1,14,2,15,7,14,3,15,3,8,1,9,1,8,1,15,1,8,2,9,1,8,6,10,1,9,1,8,2,10,8,9,1,15,1,14,6,17,1,14,3,15,2,8,1,15,2,8,2,15,1,9,1,8,1,15,1,8,1,9,3,8,1,9,3,10,2,9,1,10,1,8,2,10,2,8,1,10,9,8,1,10,32,8,1,10,7,8,2,10,2,8,8,10,1,8,2,10,4,19,17,4,4,19,1,4,235,}, + {4,195,19,26,10,1,15,1,10,1,4,1,19,59,9,1,15,1,14,1,15,3,8,1,10,1,19,14,10,1,8,1,15,1,8,2,10,2,19,9,10,1,8,2,10,3,8,1,14,2,7,1,8,5,14,1,7,1,15,1,8,2,15,2,8,2,15,3,14,3,16,1,14,2,15,1,8,4,15,3,8,2,9,2,10,1,9,1,10,6,8,1,15,3,8,1,10,3,9,1,8,1,14,1,15,1,8,1,15,2,14,2,17,1,14,4,15,4,10,1,15,1,14,1,15,2,14,2,15,3,8,3,15,2,8,5,9,2,10,3,9,2,10,7,9,1,8,1,15,1,14,9,15,1,8,2,15,1,8,3,9,4,10,2,9,5,8,1,9,1,10,3,9,1,10,2,8,1,10,50,8,2,10,5,8,2,10,3,8,1,10,1,8,2,10,2,19,23,4,237,}, + {4,195,19,25,10,1,14,2,10,2,19,58,10,1,9,1,15,3,14,3,15,1,8,1,10,1,19,13,10,1,8,1,10,3,19,11,10,5,8,5,7,1,14,2,7,1,14,2,7,4,14,1,15,2,7,1,14,9,15,2,8,1,15,3,14,1,15,2,8,2,9,1,8,1,15,1,8,1,9,1,10,1,9,1,15,4,8,1,10,1,9,1,8,3,15,1,14,2,15,3,14,4,15,2,14,1,15,1,8,1,15,1,8,2,15,12,8,6,9,6,8,1,9,2,10,1,9,2,10,1,9,4,15,1,14,6,15,3,8,1,15,3,8,2,9,5,10,1,9,1,10,1,9,1,10,2,9,2,10,1,9,1,8,4,10,13,8,1,10,25,8,2,10,10,8,2,10,8,8,2,10,2,8,2,10,3,19,22,4,238,}, + {4,193,19,26,10,1,14,3,10,1,19,58,10,2,8,1,15,5,14,1,15,1,9,1,10,1,19,14,10,2,19,1,10,1,19,8,10,1,19,4,10,3,8,2,15,1,8,1,15,1,7,1,14,1,17,1,14,3,7,1,14,1,7,2,14,1,7,1,14,1,17,1,14,9,15,4,14,2,15,1,14,2,15,1,8,2,15,4,8,2,15,3,10,3,9,1,8,1,15,1,14,4,15,2,14,5,15,4,8,2,15,1,8,3,15,2,8,2,15,1,8,2,15,2,8,4,9,4,10,1,9,10,10,2,9,2,10,1,8,1,14,3,15,1,14,2,15,2,8,2,15,1,8,3,9,5,10,5,9,3,10,1,9,1,10,1,8,2,10,15,8,2,9,1,10,21,8,3,14,1,8,3,10,6,8,1,14,1,8,1,10,10,8,1,10,1,8,1,10,4,19,22,4,238,}, + {4,193,19,25,8,3,15,1,10,3,19,57,10,1,15,1,8,2,15,2,8,3,9,1,10,2,19,25,10,9,8,1,14,5,7,1,14,2,7,2,8,1,7,1,15,2,7,1,14,5,7,1,14,3,15,1,14,1,15,10,8,3,15,2,14,3,15,2,8,1,9,1,10,2,8,2,15,1,14,4,15,1,8,1,15,1,14,1,17,1,14,4,15,1,8,1,15,1,8,4,9,1,8,2,15,1,8,1,9,1,8,7,9,1,8,1,10,2,9,15,8,1,9,1,8,1,15,1,14,3,15,1,14,1,17,1,14,3,15,2,8,1,15,2,8,2,15,1,9,1,10,1,9,1,10,3,9,2,8,2,10,20,8,3,9,1,8,2,9,1,10,16,8,1,10,2,8,4,10,7,8,2,10,6,8,1,10,4,8,3,10,2,19,24,4,238,}, + {4,193,19,24,8,1,14,1,15,1,8,3,10,2,19,56,9,1,15,1,14,5,15,1,7,1,8,2,15,1,9,1,10,1,19,23,10,1,8,1,15,3,14,1,8,1,10,3,8,1,14,7,15,1,7,1,15,1,14,3,17,1,14,1,17,1,7,2,14,2,7,1,14,1,7,1,14,3,15,3,14,7,15,2,14,6,15,1,8,1,10,3,8,1,15,2,14,5,15,2,14,7,15,1,8,8,15,2,8,1,9,1,8,2,9,1,8,6,9,2,8,3,9,7,8,1,9,3,10,1,9,3,8,1,15,1,8,4,15,1,14,2,15,2,9,1,8,1,15,3,8,2,9,1,10,7,9,1,8,1,10,10,9,1,10,5,8,2,9,1,10,1,8,2,9,1,10,1,9,2,10,2,8,1,10,7,9,1,10,18,8,1,10,10,8,2,10,3,8,1,10,2,19,25,4,238,}, + {4,193,19,24,8,1,14,1,8,5,10,2,19,55,10,2,8,1,14,4,15,2,8,2,15,1,9,1,19,23,10,2,8,1,15,3,14,1,8,1,10,4,8,1,14,2,15,1,8,1,9,1,10,1,9,1,8,2,14,4,7,1,14,20,15,3,14,3,15,2,14,1,8,2,10,3,8,1,15,1,8,1,15,4,14,1,15,2,14,1,15,1,8,1,15,2,8,1,15,4,14,1,15,1,8,1,15,2,14,1,15,2,8,1,9,1,8,1,9,2,8,4,9,2,8,1,9,2,8,2,9,7,15,1,8,1,9,5,15,1,8,7,15,3,8,1,15,4,9,4,10,1,9,1,10,6,8,2,10,10,9,1,10,4,9,5,8,1,9,2,10,44,8,1,10,5,19,25,4,238,}, + {4,193,19,24,10,1,8,6,10,2,19,57,10,1,15,1,14,2,15,2,8,4,10,1,19,23,10,2,8,1,9,1,8,2,15,2,8,1,9,1,10,4,15,1,8,1,10,2,9,1,8,1,15,1,14,2,15,1,7,1,14,1,15,1,7,1,14,1,15,1,7,1,14,4,7,1,15,2,8,1,15,3,14,5,15,1,14,4,8,1,15,2,14,1,8,1,10,3,8,1,15,2,8,1,9,1,8,2,15,4,8,1,15,6,14,5,15,1,14,2,15,3,8,1,9,1,8,4,9,3,8,1,9,1,8,1,9,3,8,1,9,1,10,1,9,4,8,2,9,6,8,5,15,1,8,7,15,1,8,2,9,2,10,5,8,1,10,4,8,2,10,13,9,1,10,2,9,2,10,1,9,3,10,46,8,3,4,1,10,1,19,25,4,238,}, + {4,193,19,23,10,3,8,1,15,1,8,2,10,2,19,58,10,2,8,1,15,2,8,3,15,1,8,1,10,1,19,23,10,1,8,2,10,1,8,1,15,4,8,1,10,5,8,2,14,1,15,1,14,2,17,1,14,3,15,3,8,1,10,1,8,1,15,1,14,1,7,1,8,1,10,7,9,1,8,3,15,1,8,1,14,3,15,2,14,3,9,1,10,2,15,2,8,3,15,1,8,2,15,1,8,1,15,7,14,1,15,1,14,5,15,1,14,2,15,1,8,2,9,1,10,1,9,1,15,1,8,1,10,3,8,4,9,7,8,1,9,1,8,1,15,2,8,3,15,1,8,2,9,3,8,1,15,1,8,1,15,1,8,4,15,2,8,2,9,2,10,12,8,1,10,7,9,1,10,2,9,2,10,1,9,3,8,1,9,6,10,16,9,3,10,26,8,3,10,2,19,24,4,239,}, + {4,193,19,21,10,2,8,3,15,1,14,1,15,1,9,1,19,61,10,2,8,1,15,1,8,2,15,2,8,1,10,1,19,22,10,2,8,2,10,6,15,1,9,1,15,2,8,1,14,8,15,3,14,1,7,1,14,1,8,1,10,1,7,1,14,1,15,2,14,1,15,1,8,4,9,1,10,7,8,1,15,1,14,1,8,1,15,1,14,2,10,5,8,4,15,1,14,1,15,5,14,4,15,1,14,2,8,3,15,1,14,1,15,1,9,1,10,2,9,1,10,4,9,1,8,1,9,1,10,2,8,1,15,2,9,2,10,1,9,1,8,1,9,1,10,1,9,2,8,8,15,2,8,3,15,1,8,1,15,2,14,3,15,3,8,1,15,1,8,1,9,2,10,4,8,1,10,6,9,1,10,2,9,8,10,2,9,2,8,2,9,3,10,1,9,1,10,16,9,1,10,8,8,1,10,16,8,7,10,2,19,23,4,241,}, + {4,193,19,20,10,2,8,5,15,1,9,1,10,1,19,62,10,1,15,1,14,3,8,1,10,2,19,24,10,1,8,1,9,1,10,15,9,2,8,1,15,1,14,4,15,2,8,2,15,9,8,2,9,1,10,2,9,3,10,5,8,2,10,4,8,1,15,2,8,2,15,1,8,2,15,1,14,3,15,3,14,5,7,1,15,2,14,1,8,1,10,1,9,1,10,1,8,8,9,2,10,1,8,1,15,2,9,4,8,3,9,4,8,2,9,1,8,3,15,1,8,1,15,1,8,12,9,1,8,1,9,8,10,1,9,1,10,2,9,7,8,1,9,1,8,1,15,2,8,1,9,3,8,1,9,8,10,1,9,1,10,6,9,1,10,3,9,1,10,2,9,1,10,1,9,1,10,1,9,3,10,1,9,2,10,13,8,2,10,1,8,2,10,7,19,23,4,241,}, + {4,193,19,21,10,2,8,1,10,5,19,64,10,1,9,1,15,1,14,1,8,1,10,1,19,24,10,1,8,2,9,1,10,15,9,1,10,1,8,2,15,1,7,2,15,2,8,1,15,1,7,1,14,4,15,8,8,1,15,1,8,3,10,9,8,3,15,1,14,1,15,1,14,1,15,1,8,2,14,3,15,4,14,8,8,1,10,3,8,1,15,2,8,2,15,2,9,5,8,1,15,1,8,1,9,1,8,1,9,3,15,2,8,1,9,1,10,1,8,3,9,1,8,1,15,2,8,2,15,2,8,2,15,1,8,1,9,6,15,1,8,2,9,3,8,1,9,1,10,1,9,4,10,1,9,1,8,1,9,1,10,1,9,1,10,1,9,2,15,1,14,4,15,1,9,9,8,1,9,1,10,2,9,2,8,1,10,2,9,2,10,1,9,1,10,1,9,2,10,1,9,2,10,2,9,2,8,1,9,3,8,1,9,1,10,10,8,5,10,1,8,2,10,6,19,23,4,241,}, + {4,193,19,21,10,6,19,68,10,1,15,1,10,2,19,24,10,1,15,2,8,2,10,1,9,1,8,4,9,3,8,5,15,3,8,1,15,1,7,1,15,2,7,1,15,1,14,1,7,1,14,4,7,1,14,9,15,1,8,1,9,1,10,3,8,1,10,5,8,1,15,1,8,1,15,1,14,1,15,1,14,2,15,4,8,1,15,1,14,5,17,1,14,3,15,1,9,1,10,1,9,3,8,1,14,2,15,1,8,3,9,2,8,1,9,2,8,2,9,1,8,3,9,1,8,1,15,4,8,2,15,8,8,3,15,2,8,5,9,3,8,1,15,1,8,1,15,2,8,2,9,1,8,1,9,4,10,1,8,1,9,1,8,1,9,3,15,1,14,4,15,2,9,3,10,1,9,2,8,4,9,2,10,1,9,1,8,1,9,2,10,4,9,2,8,1,9,2,10,1,9,4,15,1,8,1,15,1,9,3,10,10,8,6,10,1,8,3,10,4,19,24,4,241,}, + {4,191,19,23,10,1,15,1,10,3,19,80,10,3,19,14,10,1,15,2,8,3,15,1,8,3,15,2,14,4,15,1,8,1,15,3,8,2,7,1,14,3,17,2,7,2,14,9,15,4,8,3,9,2,8,4,10,2,9,1,10,1,8,3,15,1,8,3,15,2,8,1,9,1,15,1,8,2,14,2,15,2,14,4,15,1,10,2,8,1,14,1,8,3,15,3,8,4,15,1,8,1,10,1,9,1,8,1,9,1,8,1,9,3,8,1,15,3,8,1,15,11,8,2,15,2,14,5,15,1,8,1,9,1,8,4,15,1,14,1,15,1,8,1,15,1,8,1,10,1,9,1,10,2,9,1,8,1,9,2,8,1,9,2,15,4,9,1,8,2,9,2,10,2,9,2,8,1,9,2,8,1,9,1,10,1,9,1,10,5,9,3,8,3,10,2,9,5,8,1,9,3,10,10,8,1,15,1,8,10,10,4,19,24,4,241,}, + {4,190,19,24,10,1,9,1,15,1,10,2,19,79,10,4,19,12,10,3,8,1,15,6,8,1,15,2,14,2,8,2,15,3,14,6,17,1,14,10,17,1,14,3,7,1,15,3,8,3,15,1,14,1,15,1,8,4,10,2,8,1,10,1,8,1,15,2,8,5,15,1,8,2,7,1,15,1,14,3,15,3,14,2,8,1,9,1,10,1,9,1,14,2,15,2,8,1,15,2,14,1,15,1,8,2,15,2,9,1,10,1,9,1,8,1,9,1,8,2,9,1,8,1,15,5,8,2,15,2,8,1,15,2,8,1,15,4,8,2,15,6,8,1,9,4,8,2,15,3,8,1,15,1,9,5,8,3,9,1,8,4,15,1,14,1,15,1,8,1,9,8,8,2,9,1,8,1,9,4,10,3,9,3,8,3,10,2,8,4,9,7,10,8,8,8,15,1,8,2,10,1,8,1,10,4,19,24,4,241,}, + {4,190,19,25,10,1,4,1,10,1,19,79,10,5,19,12,10,4,8,1,15,9,8,1,15,6,8,1,15,1,14,2,7,1,14,12,7,3,15,3,8,4,15,1,14,1,15,2,8,3,10,2,8,1,10,1,15,1,14,2,8,6,15,1,8,1,15,1,8,1,15,1,14,2,15,1,8,2,15,1,8,3,15,10,8,2,15,2,8,1,10,2,9,2,8,2,14,1,15,1,14,1,15,5,9,1,10,1,8,5,15,1,8,2,15,1,8,9,9,4,8,3,15,3,8,1,9,4,8,2,15,1,9,1,8,3,14,1,15,1,8,1,15,1,14,2,15,1,8,1,10,1,9,5,8,3,15,1,8,1,9,5,10,2,9,1,8,2,9,1,8,3,10,1,8,11,9,1,10,7,8,10,10,4,8,1,10,2,19,24,4,241,}, + {4,190,19,106,4,1,10,5,19,11,10,5,8,3,15,2,8,4,15,4,8,3,10,1,8,1,15,2,7,1,14,1,7,1,15,1,8,1,15,1,14,2,17,1,7,1,14,3,15,2,7,1,14,3,15,1,8,8,15,1,8,1,10,3,8,1,10,1,8,1,15,4,8,3,15,1,8,3,9,1,8,2,15,1,8,1,9,2,8,1,9,1,15,1,14,2,8,2,15,1,8,1,15,1,14,1,15,1,14,1,15,1,8,2,15,2,10,2,8,1,9,1,8,1,15,1,8,1,14,4,8,1,15,4,8,1,9,1,8,1,15,1,8,6,15,1,8,4,9,3,8,1,9,1,8,1,9,3,8,3,15,3,9,3,8,2,15,2,8,2,14,1,7,1,14,3,15,1,14,1,15,1,8,1,9,1,8,6,15,1,8,1,15,2,8,3,10,1,9,2,10,3,8,2,10,1,8,14,9,2,10,1,8,3,10,4,8,10,10,6,19,24,4,241,}, + {4,191,19,106,10,5,19,12,4,1,10,1,8,1,15,1,8,2,10,1,8,1,10,2,9,1,8,2,15,1,14,3,15,1,14,7,17,1,14,2,8,1,7,1,14,2,15,1,14,1,15,1,8,2,15,2,14,1,15,2,8,3,15,2,14,1,8,1,10,3,8,2,10,2,8,1,15,1,8,2,10,1,8,2,15,1,8,2,14,3,8,1,10,1,8,1,9,4,10,3,9,1,15,1,14,7,15,1,14,1,15,1,8,1,15,1,14,1,15,1,10,1,9,3,8,3,14,4,15,1,8,3,14,1,15,1,8,8,9,1,8,8,9,3,8,1,9,1,8,5,15,1,14,1,8,3,9,2,8,1,15,1,8,1,15,1,8,1,14,3,17,1,14,2,16,1,14,1,8,4,15,1,14,1,15,3,14,2,8,4,9,2,10,1,9,1,8,6,15,2,8,3,9,1,8,9,10,1,8,3,10,4,8,3,14,1,8,5,10,7,19,20,4,245,}, + {4,191,19,106,10,4,19,13,4,1,9,2,10,1,19,1,10,5,8,1,15,1,8,1,15,2,14,2,10,1,8,1,15,1,14,11,15,1,8,4,15,1,14,1,15,1,8,1,15,6,14,2,15,1,8,2,10,4,8,4,10,3,8,2,10,1,8,1,15,2,8,1,10,2,15,1,9,1,10,2,9,3,8,2,14,3,15,1,8,2,15,1,14,1,15,3,8,3,10,2,8,1,9,2,8,2,15,1,14,3,15,3,9,1,8,12,15,3,8,1,9,1,8,1,9,1,8,1,9,7,8,9,9,1,8,1,15,1,8,1,15,1,8,1,14,7,15,1,8,2,15,2,8,1,15,4,14,1,15,1,8,4,9,4,8,7,15,2,8,2,10,1,8,8,10,2,8,4,10,1,8,5,14,1,7,1,8,5,10,5,19,21,4,245,}, + {4,191,19,55,4,3,19,48,10,4,19,13,4,2,10,2,19,3,10,3,8,1,9,1,10,1,9,1,8,1,15,2,8,3,15,1,7,1,15,1,14,5,15,2,8,2,9,1,8,1,15,1,14,1,15,1,14,1,8,1,9,1,8,4,15,1,8,1,15,5,10,3,8,1,10,7,8,4,15,2,9,1,10,1,8,2,9,1,10,3,9,3,15,1,14,3,15,2,8,1,15,4,8,1,15,1,8,2,10,2,9,1,8,1,9,2,8,1,15,1,14,4,15,2,8,8,9,1,8,3,15,4,14,1,15,2,8,4,9,8,8,2,15,3,8,6,15,1,14,2,7,1,14,2,7,1,14,1,15,1,8,6,15,1,14,3,15,4,8,1,9,7,8,6,15,1,8,2,10,1,8,5,10,2,8,7,15,1,14,2,7,1,14,2,8,5,10,6,19,19,4,247,}, + {4,191,19,54,4,5,19,72,10,1,9,1,15,1,10,2,9,1,8,1,15,1,7,4,15,1,8,3,14,2,15,1,9,1,8,2,10,1,9,1,8,2,15,1,14,2,15,1,9,1,8,1,9,1,10,2,8,4,15,3,10,12,8,1,15,3,8,3,9,6,10,4,14,3,15,1,7,1,14,1,15,7,8,1,9,1,10,1,9,1,8,1,9,4,15,1,14,4,15,1,14,1,15,3,8,1,15,1,8,4,9,1,8,3,15,2,14,4,15,1,8,4,10,1,9,3,8,4,15,1,8,1,15,3,8,3,9,1,8,2,14,2,15,1,7,2,14,3,15,1,8,1,10,2,9,1,8,1,14,3,15,1,8,1,14,4,8,2,9,2,8,1,9,1,8,12,10,2,8,1,10,2,8,1,15,1,8,4,15,1,14,1,8,1,14,3,8,1,14,1,8,3,10,1,8,2,10,4,19,20,4,247,}, + {4,191,19,54,4,6,19,71,10,1,9,1,15,1,8,2,15,1,14,1,7,1,15,1,7,1,14,4,7,1,14,3,8,1,10,1,8,3,9,2,8,2,9,1,8,2,9,1,8,1,9,3,8,1,15,1,14,1,8,1,14,2,8,1,10,12,8,2,15,2,8,1,15,1,8,1,9,1,10,1,9,1,8,2,9,2,10,2,9,1,14,2,15,1,7,1,15,1,8,2,15,6,9,1,10,1,9,5,8,2,15,1,14,3,15,3,8,1,15,1,8,2,15,1,8,5,15,2,8,1,15,3,14,4,8,1,15,1,8,1,9,1,10,1,9,3,8,7,15,1,14,1,8,6,15,1,14,4,7,1,14,3,8,1,10,4,8,5,15,1,14,3,8,2,9,2,8,1,10,1,9,1,8,2,15,1,8,6,10,1,8,2,10,2,8,1,15,2,8,4,15,1,14,2,8,2,14,1,8,6,10,7,19,18,4,249,}, + {4,191,19,54,4,6,19,71,10,4,8,1,15,1,14,2,7,1,14,2,17,1,14,4,8,1,10,2,8,1,15,2,8,4,10,2,8,1,9,1,10,6,8,3,15,1,8,2,10,7,8,1,10,3,8,3,15,1,8,1,15,2,8,2,15,1,8,2,15,1,8,4,15,1,14,1,15,3,14,1,15,1,8,1,15,5,8,1,10,2,9,1,15,2,9,1,8,4,15,9,8,1,15,8,8,4,15,2,8,1,15,2,8,2,9,2,8,3,15,1,14,1,15,1,8,1,9,3,8,1,15,1,8,3,15,3,14,4,15,2,14,3,15,1,8,1,15,2,8,7,15,3,8,2,9,1,8,2,9,1,8,8,10,4,8,2,10,1,8,1,15,2,8,5,14,1,15,1,8,1,7,1,14,1,8,7,10,5,19,19,4,249,}, + {4,191,19,52,4,10,19,40,4,2,19,23,10,6,8,2,14,2,17,1,14,1,7,1,17,1,14,5,15,1,10,2,8,1,14,3,8,2,15,1,14,1,8,2,9,1,10,7,8,3,10,1,8,3,10,5,8,6,14,1,8,7,15,1,8,2,15,5,14,1,15,2,8,1,14,4,15,1,8,5,9,2,8,1,15,2,8,1,15,1,8,4,15,4,14,1,15,3,8,1,15,7,14,1,8,2,9,1,8,4,15,2,8,2,15,1,8,2,9,1,8,2,14,2,8,5,15,1,8,3,15,2,14,2,7,1,15,1,7,1,15,2,14,3,8,11,15,1,8,9,9,1,8,5,10,5,8,3,10,1,8,3,15,2,8,4,15,1,14,1,8,7,10,1,8,1,10,3,19,16,4,1,19,3,4,249,}, + {4,191,19,50,4,12,19,39,4,3,19,22,10,3,9,1,8,1,15,3,14,2,17,2,14,1,7,1,14,1,7,1,14,4,8,1,10,1,8,1,14,3,15,1,8,2,14,2,8,2,10,1,15,1,9,1,8,1,15,1,8,2,15,1,8,1,10,3,8,1,15,1,8,1,9,1,10,2,8,1,14,1,15,2,14,2,15,1,14,3,15,1,8,1,9,2,15,1,14,2,15,3,14,3,15,1,8,2,15,1,14,2,17,2,14,1,15,1,8,2,15,2,8,1,9,1,15,4,8,6,15,4,14,1,15,1,14,1,15,2,8,1,15,4,14,1,15,1,8,4,9,3,8,4,15,3,9,2,8,2,15,1,14,1,15,2,8,9,14,2,15,1,8,1,7,1,8,10,10,1,8,3,9,1,8,1,15,3,8,8,9,1,8,4,10,4,8,1,10,1,8,7,15,2,8,4,14,1,8,5,10,2,8,1,10,4,19,16,4,1,19,3,4,249,}, + {4,189,19,50,4,17,19,60,10,1,8,2,15,3,14,1,15,3,14,2,7,1,8,2,15,1,14,1,15,1,8,1,15,1,9,1,10,1,7,1,14,4,7,1,15,1,7,1,15,2,10,2,9,1,8,2,15,1,8,2,15,1,14,3,8,1,10,1,15,1,8,5,14,2,17,1,14,6,16,1,14,1,15,1,8,1,15,1,14,3,15,2,14,4,15,1,14,1,15,1,14,1,16,1,17,1,14,1,15,3,8,2,15,2,9,1,10,1,8,1,15,1,14,2,15,1,8,1,9,1,8,3,15,1,14,1,15,2,14,1,15,1,14,1,15,1,8,1,15,4,14,1,15,4,8,8,9,2,8,3,9,1,8,1,10,1,8,1,15,2,14,3,8,3,15,1,8,3,14,2,8,1,15,1,8,3,9,1,8,3,15,1,8,1,9,1,10,1,9,1,8,2,10,3,8,10,9,1,10,1,8,4,10,2,8,3,10,2,15,2,8,20,10,2,19,14,4,256,}, + {4,189,19,50,4,18,19,59,10,1,8,2,15,2,14,1,15,1,8,1,7,1,14,1,7,4,14,4,8,1,10,1,9,1,14,7,17,1,7,1,15,1,7,1,15,2,8,3,15,2,14,5,10,1,8,3,15,1,8,1,10,1,8,1,14,6,17,1,16,2,17,1,14,1,15,1,8,1,14,2,15,1,10,1,8,1,15,2,14,1,15,3,14,1,15,1,14,1,15,3,14,3,8,1,15,1,8,1,10,1,9,1,8,1,15,6,8,4,9,1,8,6,15,1,8,2,15,5,8,2,15,1,8,8,10,2,9,4,8,1,9,1,8,2,15,2,14,3,8,13,10,1,8,3,15,1,8,1,10,3,8,4,10,1,8,10,9,1,8,15,15,1,14,1,8,7,10,1,8,6,10,5,19,13,4,257,}, + {4,189,19,50,4,18,19,58,10,1,9,1,10,1,8,2,15,1,14,2,15,3,7,1,14,1,15,1,7,1,14,2,15,1,8,1,10,2,8,2,14,13,15,1,14,1,15,1,8,2,14,2,15,1,8,1,10,1,8,4,15,2,14,4,16,1,14,2,17,1,16,1,14,2,15,3,14,2,15,1,10,1,15,1,14,3,8,2,15,1,14,1,15,2,8,2,15,1,14,4,15,1,9,1,10,1,8,4,15,1,8,1,15,2,8,1,9,2,8,1,9,1,8,6,15,1,8,1,15,2,8,1,15,2,8,7,9,1,8,3,10,2,8,2,9,1,10,1,9,2,8,4,15,1,14,1,15,1,14,1,8,5,15,1,8,9,10,1,8,3,9,2,8,9,9,1,8,2,10,1,9,1,8,1,9,1,8,2,10,2,8,1,10,1,8,4,10,1,8,3,10,2,8,1,15,1,10,1,8,1,10,1,8,12,10,3,19,14,4,257,}, + {4,189,19,50,4,18,19,59,10,4,8,2,14,1,15,1,8,3,15,1,8,1,15,1,14,1,15,1,8,1,10,2,9,1,8,3,14,3,15,1,7,1,15,2,14,8,8,2,14,1,15,1,10,3,8,1,15,1,9,1,8,1,15,1,14,4,17,1,14,7,15,2,14,2,8,1,10,2,14,4,15,9,14,4,8,1,10,1,8,1,15,1,8,4,15,2,9,2,8,1,15,1,8,2,15,1,8,1,15,1,8,1,9,1,8,2,9,1,8,2,15,3,8,1,9,1,10,2,8,3,10,1,8,8,9,1,8,1,10,1,9,1,8,9,15,1,8,5,15,2,8,4,9,1,10,1,8,14,10,1,8,6,10,1,8,1,10,3,8,3,10,2,8,4,10,1,8,3,10,1,8,13,10,3,19,15,4,257,}, + {4,190,19,48,4,19,19,59,10,5,9,1,10,1,9,1,8,2,9,1,8,2,14,1,15,1,10,4,15,3,8,2,14,4,15,1,14,1,15,2,10,2,8,1,15,1,14,5,9,1,10,2,15,2,8,1,10,1,8,2,15,1,14,9,17,1,14,2,15,1,14,1,15,1,8,3,14,2,15,1,14,1,15,1,8,1,10,2,8,2,15,1,14,1,15,3,14,2,10,2,15,2,8,4,15,1,8,1,15,2,14,2,15,1,14,1,15,1,8,4,9,2,8,1,9,1,8,1,15,1,14,1,15,1,9,1,10,6,8,3,15,2,8,5,9,1,10,1,8,2,9,1,8,4,9,1,8,1,10,1,15,2,8,3,15,1,14,1,15,1,8,4,10,2,8,5,9,2,8,3,10,2,8,6,10,1,8,1,10,1,8,1,10,4,8,2,10,3,8,13,15,1,8,1,10,1,8,5,10,3,19,16,4,257,}, + {4,190,19,47,4,20,19,53,10,3,19,2,10,1,8,2,10,1,8,1,15,2,8,2,15,1,14,1,15,1,14,2,15,1,8,1,10,1,8,1,15,1,14,2,15,1,10,2,8,1,15,2,14,11,15,1,14,2,8,1,10,2,9,1,8,1,15,1,8,1,10,1,9,1,8,2,15,4,14,2,15,2,7,1,15,1,14,12,8,1,10,2,8,2,15,7,9,1,10,1,9,1,15,1,8,2,15,1,8,3,15,4,14,2,15,1,8,2,9,1,8,3,9,1,15,1,9,2,8,1,15,1,8,2,10,6,8,4,15,1,8,7,9,1,8,1,10,1,9,1,8,4,10,1,9,1,8,2,10,1,8,2,15,1,14,1,8,3,10,1,8,1,10,1,8,3,9,2,8,1,9,1,10,3,8,1,10,3,8,4,10,3,8,1,10,2,8,2,10,2,8,3,10,1,8,3,15,3,8,3,15,2,8,9,10,3,19,17,4,257,}, + {4,190,19,46,4,22,19,42,10,3,19,2,10,6,8,1,10,1,19,1,10,2,8,5,15,2,8,3,15,1,14,1,15,1,9,1,10,2,8,3,15,1,10,2,8,5,15,1,14,4,7,3,15,1,8,3,10,4,8,1,15,3,8,3,15,1,14,1,8,1,15,2,14,1,15,1,8,2,15,1,8,1,14,1,15,4,14,1,15,1,14,5,8,3,15,8,8,1,10,1,9,1,8,1,15,1,8,1,15,1,8,5,15,5,8,1,9,2,10,1,9,1,8,2,9,1,8,2,9,3,8,2,10,5,8,10,15,1,8,2,10,1,8,1,9,1,10,1,9,1,8,6,10,1,9,1,8,3,15,1,10,1,8,2,10,1,8,5,10,3,9,1,10,2,9,1,10,3,8,3,10,6,8,4,10,1,8,14,15,3,8,3,15,1,8,1,15,1,8,1,10,3,19,17,4,258,}, + {4,190,19,46,4,23,19,38,10,3,9,1,8,1,10,6,8,1,10,1,8,1,9,1,8,1,10,3,8,1,15,2,8,9,9,1,10,2,9,1,10,4,8,2,15,1,8,3,15,3,14,2,15,1,8,5,15,1,10,4,8,3,15,1,14,2,8,3,15,2,14,3,15,1,14,1,15,3,14,1,15,10,14,3,15,2,14,1,15,5,8,2,10,1,15,5,8,3,15,4,14,1,15,1,8,1,10,5,8,2,9,1,10,1,9,2,8,4,10,6,8,3,10,2,8,2,15,1,8,4,10,1,8,1,10,3,8,2,10,1,8,1,15,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,2,8,1,10,1,9,1,10,1,8,2,10,10,8,1,10,1,8,1,10,2,8,5,15,2,8,12,15,1,8,5,15,1,8,2,10,2,19,19,4,258,}, + {4,190,19,45,4,22,19,39,10,1,15,4,8,6,10,2,8,1,15,3,8,1,10,2,9,1,15,1,8,1,15,1,8,2,9,1,15,2,9,1,10,8,8,1,9,1,8,1,15,1,14,5,15,1,8,2,7,1,15,2,8,2,7,1,14,1,15,1,10,4,8,1,15,1,8,1,14,3,15,4,7,1,14,8,15,4,14,1,15,1,14,2,15,1,8,1,15,1,14,4,15,1,14,1,15,2,8,1,15,2,8,1,10,1,8,1,15,1,14,1,15,5,7,1,15,2,14,4,15,1,9,4,8,1,15,1,8,1,10,2,9,1,8,3,10,5,8,1,10,1,8,2,10,2,8,2,10,2,9,1,10,2,8,3,10,5,8,3,15,1,8,1,10,3,8,2,10,2,8,4,10,6,8,1,10,9,8,1,10,2,8,1,10,2,8,7,15,2,8,10,15,1,8,1,15,1,8,6,10,3,19,20,4,257,}, + {4,190,19,45,4,20,19,41,10,1,8,3,15,1,8,6,10,1,8,2,15,2,8,3,10,1,8,6,9,1,8,3,10,1,9,3,15,1,8,1,9,2,8,1,15,1,14,1,15,1,14,7,7,1,14,1,7,1,14,5,10,5,15,4,14,2,17,1,14,1,7,1,15,1,7,1,15,2,14,3,15,1,8,2,15,2,14,6,15,2,14,3,15,2,14,1,15,7,10,2,8,1,15,3,14,1,15,3,14,5,15,1,8,1,9,3,10,3,9,1,10,1,9,1,8,1,9,1,8,1,9,1,10,7,8,2,10,19,8,8,10,2,8,4,10,5,8,1,10,3,8,1,10,1,8,1,10,6,8,7,15,1,10,4,8,10,10,1,8,9,10,3,19,20,4,257,}, + {4,191,19,44,4,17,19,43,10,2,8,2,15,1,8,4,14,1,8,1,9,1,10,1,9,1,8,2,15,2,8,4,15,1,8,1,15,1,8,3,9,1,8,2,15,3,14,3,15,2,8,1,15,1,8,3,15,1,7,1,14,1,15,1,8,1,15,1,8,1,7,1,15,1,14,4,8,1,10,3,8,2,10,1,9,1,8,3,15,1,8,4,14,2,15,1,14,2,15,2,8,1,15,2,14,12,15,1,14,3,15,1,14,2,15,1,14,1,15,1,10,2,8,1,14,1,15,2,14,6,15,4,8,4,10,29,8,1,10,7,8,2,15,1,8,2,15,1,8,2,10,3,8,5,10,10,8,1,10,3,8,1,10,1,8,8,10,1,8,1,10,3,8,2,10,1,8,8,10,1,8,5,15,3,10,2,19,21,4,257,}, + {4,191,19,44,4,14,19,46,10,1,15,1,8,5,15,1,8,3,10,3,9,1,8,1,15,4,8,2,15,3,8,3,10,1,8,1,15,1,14,8,15,1,9,2,8,2,15,1,7,3,8,1,15,1,8,1,15,2,8,1,15,2,8,1,10,4,8,1,10,3,8,9,15,3,14,1,15,2,14,11,15,3,14,7,15,5,10,1,8,1,15,2,8,1,15,1,8,1,15,1,14,2,15,1,8,8,9,1,10,1,8,1,10,21,8,2,10,1,8,3,10,7,8,2,15,1,8,6,10,3,8,2,10,1,8,1,10,7,8,1,10,2,8,2,10,2,8,1,10,1,8,12,10,1,8,5,10,1,8,9,10,2,8,1,14,2,10,2,19,21,4,257,}, + {4,192,19,43,4,11,19,49,10,1,15,3,8,2,15,3,8,2,10,2,8,4,15,7,8,4,9,1,8,2,14,8,8,1,10,1,8,2,14,5,7,3,14,1,8,4,10,10,8,1,15,2,14,2,15,1,8,1,10,2,8,2,15,2,14,11,15,1,8,2,15,1,14,7,15,2,8,2,14,1,8,1,15,2,8,2,9,2,8,1,14,1,15,1,8,3,9,2,8,1,15,1,8,2,10,25,15,1,8,3,10,9,8,3,10,2,8,1,10,1,8,1,10,12,8,1,10,1,8,5,10,2,8,1,10,1,8,15,15,1,8,6,10,2,8,4,10,3,14,1,15,1,10,2,19,19,4,259,}, + {4,192,19,43,4,10,19,50,10,1,9,1,15,7,8,4,15,2,8,2,15,2,14,2,15,2,14,1,8,1,9,1,10,6,8,1,15,1,14,3,8,3,9,1,15,1,14,3,15,2,14,1,15,2,14,2,15,2,8,1,10,8,15,2,8,4,9,1,10,1,8,1,9,2,8,1,15,2,8,1,9,1,8,2,10,8,9,1,8,3,15,6,14,4,15,1,8,1,14,1,15,2,8,3,10,3,9,1,10,7,15,1,8,1,10,8,9,1,10,17,8,2,10,12,8,1,10,4,8,3,10,10,8,1,10,2,8,1,10,3,8,3,15,1,8,5,10,1,8,6,15,1,8,4,15,2,8,4,10,1,8,3,10,1,8,1,10,3,14,1,8,1,10,1,19,20,4,259,}, + {4,192,19,43,4,10,19,51,10,1,9,1,8,2,9,1,10,4,8,1,14,2,8,1,15,1,8,3,15,2,14,1,15,3,9,1,10,7,9,1,8,1,15,3,10,2,8,2,15,2,14,1,15,1,8,1,15,1,14,5,15,1,8,1,10,10,8,1,10,2,9,1,10,4,8,1,15,1,8,6,15,1,8,1,9,2,8,1,9,2,8,2,15,2,8,1,15,3,8,1,15,3,14,4,15,3,8,2,10,14,8,2,10,8,8,1,10,32,8,1,10,4,8,3,10,11,8,30,10,2,8,3,10,2,8,2,10,1,8,1,15,1,10,2,19,20,4,259,}, + {4,193,19,42,4,10,19,33,4,3,19,16,10,1,9,2,10,1,19,5,9,1,8,1,10,5,9,1,8,1,15,2,8,2,10,4,15,1,8,1,10,10,8,1,15,2,8,3,15,1,14,5,8,1,10,15,9,1,8,1,15,4,14,1,15,9,8,1,15,7,8,1,15,2,8,3,14,1,15,4,14,1,15,1,8,2,10,16,8,1,9,1,10,5,9,1,8,1,9,1,10,5,9,1,10,12,8,1,10,4,8,1,10,8,8,2,10,2,8,1,10,1,8,2,10,3,8,1,10,3,8,1,10,3,8,8,10,1,8,16,10,4,8,1,10,2,8,4,10,1,8,5,10,2,19,20,4,259,}, + {4,193,19,37,4,13,19,33,10,1,9,1,15,2,9,1,19,27,10,1,19,2,10,10,8,3,15,1,8,1,10,1,8,1,10,4,9,2,8,2,15,1,8,2,15,1,8,2,7,1,15,1,14,1,15,1,8,1,10,15,9,2,15,1,14,2,8,1,15,1,14,4,15,1,14,1,15,3,14,2,15,1,14,2,15,7,8,1,10,1,8,1,15,1,8,1,9,1,10,2,8,1,15,2,8,2,15,1,8,1,10,10,8,1,9,1,8,1,9,1,10,5,9,1,10,7,9,1,10,1,9,1,10,12,8,2,10,2,8,2,10,7,8,1,10,4,8,4,10,4,8,3,10,3,8,7,10,1,8,5,10,1,8,9,15,1,8,1,10,4,8,1,10,2,15,1,8,8,9,1,10,2,19,18,4,261,}, + {4,193,19,37,4,12,19,33,10,1,15,1,14,1,15,1,8,1,9,1,19,31,10,9,8,3,15,2,8,1,15,3,9,2,8,1,15,2,8,2,14,1,15,1,7,3,14,3,8,1,10,7,8,1,14,2,10,1,8,3,10,2,9,2,8,1,15,1,8,3,15,2,14,3,15,2,14,9,15,5,8,2,15,1,14,1,8,1,9,1,10,1,9,1,8,5,10,11,9,1,8,1,15,1,8,1,9,1,10,2,9,1,15,1,8,1,9,2,10,2,9,1,10,1,9,1,8,3,10,4,8,1,10,1,8,1,10,1,8,2,10,4,8,2,10,1,8,2,10,8,8,1,10,5,8,2,10,5,8,11,10,1,8,4,15,1,8,2,15,2,8,5,15,2,8,2,10,2,8,1,10,2,8,3,15,1,8,4,14,1,8,1,10,3,19,19,4,261,}, + {4,195,19,35,4,11,19,33,10,1,8,1,15,3,8,1,10,1,19,30,10,6,9,1,8,6,14,2,15,3,14,1,15,2,14,2,15,2,14,8,15,1,10,8,15,1,14,2,8,1,15,1,14,1,15,1,10,1,8,1,15,4,8,3,15,1,14,3,15,1,8,1,15,1,14,1,15,1,14,10,15,1,8,3,15,1,14,1,15,1,9,1,10,1,9,1,10,1,9,2,14,1,8,2,10,1,9,1,10,7,9,1,8,4,9,2,10,1,9,1,8,1,9,1,10,3,9,1,8,1,10,1,9,1,8,3,10,10,8,1,10,2,8,5,10,11,8,1,10,1,8,2,15,1,8,4,10,2,8,6,10,1,8,1,10,2,8,5,10,1,8,4,15,2,8,3,10,3,8,2,15,1,8,2,10,2,8,1,15,1,8,1,15,1,8,5,10,3,19,20,4,261,}, + {4,195,19,34,4,8,19,36,10,1,8,5,10,1,19,17,10,5,19,6,10,1,19,1,10,6,8,1,15,1,14,1,15,1,14,1,8,3,14,5,15,2,14,11,8,2,10,3,19,1,10,3,8,1,10,2,15,1,14,1,8,1,15,2,8,1,10,1,8,1,14,6,15,16,14,3,15,1,8,2,15,2,14,2,15,1,9,1,10,4,9,1,15,1,8,2,9,1,10,6,9,3,8,6,9,1,10,1,9,1,10,1,9,1,10,1,8,4,10,1,8,1,10,6,8,2,10,6,8,1,10,1,8,5,10,11,8,1,10,1,8,2,10,3,8,23,15,3,8,3,10,2,8,4,10,1,8,4,15,1,8,6,10,3,19,20,4,261,}, + {4,197,19,32,4,7,19,36,10,1,8,3,15,2,8,1,10,1,19,16,10,8,19,4,10,2,8,1,15,2,8,1,10,3,8,1,15,1,14,3,15,1,14,1,15,1,14,6,15,3,14,1,7,1,15,1,14,4,8,1,10,4,19,4,10,4,8,1,15,1,8,3,10,1,8,2,14,1,15,1,8,1,14,2,17,1,14,8,15,6,8,1,15,1,14,2,15,1,8,1,15,1,14,1,15,5,9,1,10,4,9,1,8,2,9,3,10,4,9,1,8,1,9,1,8,1,15,2,8,2,15,3,8,8,10,9,8,1,10,10,8,4,10,18,8,1,10,1,8,4,10,1,8,11,15,1,8,5,15,2,8,7,10,2,8,11,15,1,10,3,19,19,4,262,}, + {4,197,19,31,4,7,19,34,10,3,8,4,15,1,8,1,10,2,19,15,10,4,8,1,10,5,19,3,10,2,8,1,15,1,14,2,9,1,10,3,8,1,15,1,14,12,15,1,7,2,15,1,8,1,15,1,14,2,15,1,10,3,19,5,10,8,8,4,15,1,14,2,15,1,14,2,17,1,16,2,14,6,15,2,8,2,15,5,14,1,15,3,14,1,15,1,9,3,10,3,9,1,8,1,9,2,8,2,9,1,8,1,9,2,8,1,9,4,8,1,15,1,14,3,15,1,14,4,15,1,8,6,10,3,8,2,10,17,8,1,10,6,9,1,8,2,10,5,8,1,10,6,8,15,10,1,8,2,15,1,8,4,15,1,14,1,15,1,8,12,10,1,8,4,10,1,8,1,10,2,19,20,4,262,}, + {4,199,19,26,4,8,19,36,10,2,8,1,15,4,8,1,10,3,19,15,10,3,8,1,15,1,8,1,10,2,8,1,10,1,19,3,10,4,8,2,9,4,8,2,15,3,14,7,7,1,14,1,7,1,14,2,15,1,8,4,10,3,19,6,10,4,8,1,15,1,8,7,15,1,14,3,7,1,14,1,7,1,14,5,7,1,14,2,7,1,15,1,7,1,15,1,14,2,15,1,8,1,15,1,14,4,15,1,8,1,10,1,9,1,10,2,9,2,8,3,15,1,8,2,9,5,8,3,15,1,14,3,7,1,15,2,14,3,15,1,8,2,15,1,8,3,10,2,8,7,10,14,8,1,10,3,8,1,10,2,8,3,10,3,8,1,10,6,8,15,10,3,8,1,15,4,8,22,10,4,19,19,4,262,}, + {4,199,19,25,4,9,19,36,10,1,8,1,15,3,14,1,15,1,10,2,19,14,10,6,8,1,14,1,8,1,10,2,8,1,10,1,19,4,10,4,8,5,9,1,8,2,15,1,14,5,7,3,14,4,7,1,15,2,8,1,9,1,10,3,19,5,10,6,8,1,15,1,14,1,8,7,14,4,8,2,14,12,7,1,15,1,8,1,10,1,14,6,8,2,10,1,9,2,8,4,14,2,15,1,8,3,9,3,8,4,14,2,7,1,8,3,15,1,14,1,15,1,8,4,10,7,8,1,10,4,8,1,10,11,8,1,10,4,8,1,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,1,10,2,8,14,15,2,8,3,10,2,15,2,8,1,15,2,8,1,10,2,8,14,10,1,8,1,10,1,8,3,10,2,19,20,4,262,}, + {4,201,19,24,4,8,19,35,10,2,8,3,15,1,8,1,9,1,10,1,19,13,10,8,8,1,14,2,8,1,10,5,19,2,10,4,8,1,15,2,14,1,15,1,8,1,9,1,8,1,15,2,14,5,7,1,15,1,7,1,14,2,7,1,14,1,15,1,14,1,15,1,10,2,19,7,10,2,8,6,14,1,8,2,15,1,14,2,15,2,14,3,15,1,8,1,7,2,14,3,17,2,14,6,15,1,8,3,14,6,15,2,9,2,8,3,15,2,14,2,15,2,8,6,15,2,8,2,15,1,8,1,10,2,8,5,10,33,8,15,15,1,8,8,15,2,14,1,8,5,10,2,8,4,15,1,8,1,10,3,8,12,10,2,8,1,10,2,8,1,10,3,19,19,4,263,}, + {4,201,19,24,4,8,19,34,10,1,9,1,14,2,15,1,14,1,9,1,10,2,19,13,10,8,8,1,10,1,8,1,10,14,8,1,15,1,14,2,15,1,9,1,10,3,8,1,15,1,7,1,14,1,7,2,8,1,7,1,14,3,16,1,15,1,14,1,15,1,10,1,19,7,10,2,8,4,14,3,8,3,15,1,14,3,17,1,14,1,8,4,14,3,7,1,15,1,14,6,15,2,8,3,14,3,15,1,14,1,15,6,8,2,14,4,15,3,14,1,15,2,8,2,9,1,8,5,10,2,8,2,10,25,9,1,10,13,8,17,15,1,8,4,15,2,8,2,10,4,8,1,10,3,8,1,10,2,8,16,10,1,8,1,10,6,19,20,4,263,}, + {4,203,19,6,4,22,19,35,10,2,9,1,15,1,10,4,19,15,10,2,8,2,10,3,8,5,10,1,8,2,10,3,8,1,10,7,8,3,15,1,8,1,9,1,10,2,8,1,14,3,7,1,8,2,7,1,14,3,17,1,14,2,8,1,19,7,10,2,8,2,15,2,14,4,10,1,8,1,9,1,8,1,14,4,15,1,9,1,10,1,8,2,15,1,7,1,14,2,15,1,14,5,15,3,7,1,15,2,14,3,15,3,14,4,15,1,8,5,15,1,8,3,15,2,8,1,9,4,8,2,15,2,8,2,15,2,8,3,10,2,8,1,10,21,9,1,10,11,8,3,10,2,8,12,15,1,8,5,15,1,8,3,10,1,8,4,10,2,8,5,15,1,8,15,10,2,8,1,10,2,19,21,4,263,}, + {4,203,19,6,4,22,19,34,10,1,15,1,4,1,10,3,19,18,10,3,8,4,9,2,8,3,10,2,15,3,8,1,10,10,8,1,10,5,15,1,14,4,7,2,14,5,16,1,15,1,10,1,19,6,10,3,8,2,15,1,8,2,14,1,15,2,8,3,15,1,14,3,8,1,9,2,8,2,15,2,14,1,7,1,14,5,15,1,7,2,15,4,14,4,15,3,14,5,15,1,8,1,15,1,8,1,15,1,14,1,15,2,8,1,15,2,8,3,10,1,8,2,14,4,7,1,14,3,15,2,10,11,8,2,10,7,15,2,10,1,15,1,8,1,10,13,8,5,10,1,8,1,10,2,8,10,10,1,8,4,10,1,8,4,10,3,8,1,15,1,8,1,10,2,8,5,15,1,8,3,10,1,8,7,10,4,19,21,4,263,}, + {4,205,19,4,4,22,19,34,10,1,15,1,4,1,19,21,10,2,8,1,15,2,14,1,8,2,10,1,8,2,10,4,15,1,8,2,10,1,8,1,10,14,8,1,15,1,14,9,15,1,16,1,8,1,19,2,10,1,19,1,10,5,8,3,14,2,15,1,8,3,14,7,15,1,8,1,15,1,14,1,15,2,14,4,17,2,14,11,15,3,7,1,14,5,17,1,14,1,15,2,14,2,15,1,14,3,15,1,8,6,15,1,14,3,7,3,14,3,8,1,10,6,8,1,10,2,8,1,10,1,8,2,10,6,8,1,15,2,8,3,10,13,8,7,10,2,8,1,10,1,8,7,10,1,8,4,10,3,8,1,10,5,8,14,10,2,8,6,10,3,19,20,4,265,}, + {4,205,19,4,4,21,19,33,10,3,19,23,10,1,8,1,15,1,14,5,8,5,10,3,8,1,15,1,14,2,8,1,10,13,8,2,14,2,7,1,14,7,10,2,19,2,10,2,4,1,10,6,8,2,15,1,8,2,10,1,8,1,15,2,14,4,15,2,8,2,15,1,8,1,14,4,16,2,14,3,16,1,17,1,14,3,15,1,8,2,15,1,14,1,15,1,7,1,14,4,17,1,14,3,7,2,14,9,15,1,14,1,8,1,15,2,7,4,8,2,7,1,14,2,10,7,8,2,9,1,8,3,9,1,8,2,10,7,8,1,10,2,8,1,10,10,8,9,10,1,8,15,10,12,8,5,10,4,8,2,10,3,8,2,10,5,19,21,4,265,}, + {4,207,19,2,4,21,19,32,10,3,19,23,10,1,8,1,15,1,14,7,15,1,8,3,10,3,8,1,10,17,8,1,15,1,14,5,7,1,14,3,15,1,10,2,19,2,10,14,9,1,8,2,15,1,14,5,15,1,8,1,9,2,8,1,14,1,15,1,14,7,15,2,8,3,10,1,8,1,7,1,14,6,7,3,8,5,15,1,8,1,7,1,15,1,8,2,15,1,14,3,15,1,8,3,15,1,7,2,14,1,7,2,14,2,8,1,10,4,15,1,8,7,9,1,10,1,8,6,10,5,8,2,10,11,8,6,10,4,8,6,10,1,8,2,10,3,8,3,10,5,8,13,10,2,8,5,10,5,19,21,4,267,}, + {4,207,19,2,4,21,19,27,10,5,9,1,15,1,9,1,19,22,10,2,9,1,15,7,14,4,15,1,8,1,10,1,8,2,10,1,8,2,10,14,15,1,14,1,15,1,7,1,14,2,7,1,14,2,15,1,8,1,10,3,19,2,10,14,8,1,7,1,8,1,14,6,15,1,8,1,15,3,14,6,15,3,8,5,10,1,8,1,15,1,14,1,8,1,14,5,7,1,8,2,15,1,8,2,15,1,8,2,15,1,8,3,15,1,14,4,15,1,8,1,15,1,7,1,14,5,7,1,8,1,10,3,8,6,9,1,8,2,9,1,10,1,8,1,10,1,8,3,10,6,8,2,10,1,8,1,10,3,8,2,10,7,8,4,10,4,8,2,15,2,8,2,10,2,8,1,10,4,8,1,15,1,8,1,10,2,8,12,10,2,8,1,10,2,8,1,10,1,8,2,10,5,19,22,4,267,}, + {4,230,19,21,10,8,8,1,15,1,10,2,4,2,19,24,4,1,8,1,9,1,8,3,10,1,8,1,15,1,14,4,8,2,10,2,9,1,8,1,15,1,8,1,10,13,8,1,15,1,14,7,8,1,10,18,8,2,15,1,14,7,8,2,15,2,14,7,15,1,8,1,15,1,14,1,8,1,15,2,14,1,15,1,8,1,15,1,14,1,15,1,8,1,14,3,17,1,7,1,8,2,7,3,14,1,7,1,15,2,8,5,7,2,14,2,8,1,7,3,14,5,8,1,10,4,15,2,14,2,8,7,10,2,8,2,10,7,8,4,10,4,8,1,10,6,8,4,10,1,8,2,10,2,8,1,15,2,8,4,10,6,8,6,10,1,8,10,10,1,8,3,10,3,8,2,10,3,19,19,4,272,}, + {4,230,19,20,4,1,14,1,15,1,8,1,10,1,8,2,10,4,19,33,10,3,8,1,15,1,14,3,15,1,8,1,9,1,10,4,8,1,15,1,8,1,10,13,14,5,15,1,10,1,19,2,10,17,8,2,15,1,7,1,14,4,15,2,9,2,15,2,14,7,15,2,14,7,8,1,15,1,14,4,7,1,14,1,7,1,8,2,14,2,7,2,15,2,8,4,15,2,8,3,7,4,14,6,15,1,10,3,8,4,15,2,8,6,9,1,10,5,8,10,9,1,10,3,8,4,10,6,8,1,10,2,8,2,10,1,8,2,15,1,8,4,10,1,8,8,10,1,8,2,10,1,8,3,15,1,8,7,10,1,8,6,10,3,19,19,4,273,}, + {4,230,19,19,10,1,15,2,8,2,15,1,8,5,10,1,19,33,10,4,8,2,14,4,15,1,8,1,10,9,8,2,10,1,19,2,10,7,14,2,9,1,10,1,19,3,10,3,8,1,10,13,8,1,14,1,17,1,14,3,15,1,8,1,9,2,10,1,9,1,15,3,14,2,17,1,14,6,15,4,14,1,15,1,8,2,15,1,14,5,7,2,8,1,7,1,14,2,7,2,14,7,7,1,15,1,7,1,14,4,7,1,8,1,15,1,14,1,15,1,8,1,10,4,15,2,8,2,15,1,8,7,10,5,8,11,10,2,8,12,10,3,8,9,10,4,8,1,10,1,8,7,10,1,8,2,10,1,8,4,10,1,8,10,10,2,19,20,4,273,}, + {4,230,19,19,15,2,10,1,8,1,10,1,8,1,15,1,8,1,15,2,10,2,19,33,10,5,9,1,15,1,14,4,15,1,10,1,8,1,10,6,8,2,15,2,9,1,10,8,8,1,9,1,10,1,19,4,10,2,15,1,4,1,10,1,19,1,10,3,15,1,10,6,9,1,15,1,14,5,15,1,8,1,10,2,8,2,14,1,15,1,14,6,15,1,14,5,8,1,15,1,8,3,15,1,14,2,17,1,7,2,14,5,17,2,14,4,15,2,14,2,15,1,8,1,15,1,14,5,15,1,14,1,15,1,8,2,10,4,8,1,15,1,14,1,8,9,10,4,8,3,10,1,8,6,10,3,8,1,10,1,8,10,15,1,8,3,10,1,8,8,10,2,8,2,10,2,8,6,10,2,8,1,10,1,8,2,15,1,8,13,10,2,19,21,4,273,}, + {4,230,19,18,10,1,8,2,10,1,8,2,15,2,10,4,19,33,10,7,8,1,14,3,15,1,8,1,10,4,8,1,10,2,15,1,14,1,15,3,8,2,9,1,10,3,19,2,10,6,19,1,10,2,15,1,10,1,19,4,10,7,8,4,14,5,15,1,10,3,8,1,15,1,14,6,7,2,14,2,15,1,7,1,14,1,15,2,8,4,15,1,14,2,7,4,8,1,7,1,14,1,17,1,14,1,17,1,14,3,15,1,8,1,15,1,8,6,15,3,8,3,10,5,8,2,15,1,14,2,15,1,8,2,15,1,8,7,10,2,8,2,10,1,8,6,10,1,8,1,10,2,8,5,10,3,8,4,15,1,8,11,10,2,8,2,10,3,8,3,10,4,8,1,14,1,8,1,15,2,8,3,15,2,8,3,15,1,8,4,10,2,19,22,4,273,}, + {4,230,19,18,10,1,8,2,10,1,8,3,10,3,19,32,4,3,10,2,9,1,10,4,8,2,9,1,8,1,10,7,8,1,14,3,15,2,14,1,15,2,8,1,10,1,8,1,10,1,19,2,10,2,19,1,10,1,19,3,10,4,19,7,10,1,8,6,15,1,14,1,15,4,8,1,10,2,15,1,8,2,15,1,14,3,7,1,14,5,8,3,10,1,8,1,9,2,8,2,15,1,8,1,10,1,8,1,7,1,14,1,7,1,8,1,14,4,7,2,15,1,7,2,15,1,8,11,10,5,8,2,15,3,14,2,15,1,8,1,15,1,14,1,8,9,10,2,8,5,10,3,8,8,10,2,8,6,10,2,8,1,15,1,8,2,10,1,8,3,10,1,8,1,10,2,8,1,10,3,8,7,14,3,15,1,10,1,8,2,14,3,8,3,15,1,8,4,10,2,19,22,4,273,}, + {4,230,19,18,10,2,15,1,8,2,10,5,19,36,10,1,9,2,10,11,9,1,10,3,15,1,14,1,15,1,9,1,8,1,15,1,14,2,7,1,14,2,8,1,10,2,19,7,10,3,19,5,10,5,8,1,10,2,8,3,15,1,14,4,8,1,10,2,8,1,14,2,8,1,7,1,8,1,7,1,8,1,7,1,14,3,7,1,15,1,14,3,10,2,8,1,15,1,14,2,15,1,8,1,7,4,14,3,17,1,14,1,7,1,8,2,15,3,8,2,15,2,8,3,10,7,8,3,15,2,8,2,15,1,14,1,15,2,8,18,10,2,8,9,10,1,8,8,15,3,8,5,10,2,8,5,10,1,8,5,15,4,14,1,15,1,8,2,15,3,14,1,8,2,10,5,15,1,14,1,10,1,19,23,4,273,}, + {4,230,19,18,10,2,14,1,15,1,8,2,10,2,19,38,10,1,4,1,10,3,19,5,10,2,9,1,10,1,8,2,9,1,15,1,8,2,15,1,8,4,14,3,15,1,8,3,10,2,19,5,4,1,19,7,10,4,8,1,10,7,15,1,14,2,15,1,10,1,9,1,8,1,15,1,14,1,7,1,8,1,7,2,8,2,7,1,14,2,7,2,14,1,7,1,8,2,10,1,9,1,8,2,15,1,14,3,7,4,17,1,7,7,8,1,15,1,7,1,14,1,7,2,15,1,8,1,15,2,8,1,10,6,8,5,9,1,8,2,15,3,8,1,9,1,8,2,9,1,8,2,10,2,8,4,10,1,8,4,10,2,8,6,10,1,8,7,15,1,8,1,10,1,8,1,15,1,8,3,15,1,8,2,10,4,8,3,10,2,8,2,15,1,8,1,15,1,8,1,15,1,8,1,15,1,8,1,14,1,15,1,10,14,19,24,4,273,}, + {4,230,19,19,10,2,8,2,15,1,10,1,19,46,10,5,15,4,14,1,15,1,8,2,14,1,15,2,8,2,7,1,14,5,15,1,8,1,10,2,19,13,10,12,8,1,15,1,8,1,9,1,8,1,14,3,7,2,14,2,7,3,14,1,7,2,15,1,8,3,10,2,8,1,15,1,14,1,15,2,14,1,15,1,8,1,15,1,14,4,7,3,14,2,15,2,7,1,14,8,8,1,10,6,8,3,15,1,8,1,9,3,8,1,15,1,14,1,9,1,8,4,10,1,8,2,10,2,8,1,10,1,9,1,10,1,8,2,10,3,8,7,10,1,8,1,10,2,8,14,10,3,8,9,15,1,8,4,10,2,8,1,15,1,8,1,10,11,19,23,4,277,}, + {4,230,19,19,10,5,4,1,19,46,10,1,9,1,10,1,8,1,15,1,14,1,15,1,14,8,7,1,15,1,8,1,14,7,15,1,8,1,10,2,19,10,10,4,8,7,10,6,8,1,14,2,15,1,7,1,14,3,7,1,14,3,7,1,8,6,10,2,8,1,14,2,8,5,15,1,14,8,7,1,15,2,14,2,15,1,7,2,14,2,15,1,8,1,10,6,9,1,8,2,15,2,8,1,10,1,9,1,8,3,15,1,8,6,10,5,8,2,15,1,8,1,10,2,8,1,10,2,8,4,10,1,8,1,10,6,8,13,10,3,8,10,10,11,8,1,10,6,19,24,4,277,}, + {4,230,19,70,10,1,15,3,14,2,15,1,14,4,15,2,14,1,15,2,14,2,7,1,14,6,8,2,10,1,8,1,10,1,19,8,10,5,8,4,10,6,8,2,10,2,8,1,15,1,14,1,8,5,7,1,17,1,14,1,7,1,8,3,15,1,8,1,14,1,8,1,10,3,8,7,15,1,14,1,7,1,14,5,7,2,14,1,15,1,14,2,8,1,7,2,15,1,8,3,10,5,8,4,15,2,8,1,9,1,8,1,9,2,8,8,10,6,8,1,15,2,8,2,10,5,8,2,10,9,8,2,10,6,8,17,10,18,19,22,4,279,}, + {4,230,19,69,10,1,8,1,15,2,14,11,15,1,14,3,15,1,14,7,8,1,10,3,19,8,10,5,8,7,10,2,8,1,10,1,8,1,10,1,9,1,8,1,14,1,17,1,14,2,7,3,14,2,7,1,8,3,15,1,14,2,8,4,9,1,8,8,15,1,8,1,14,4,15,2,14,2,15,4,8,5,10,6,8,1,15,1,14,3,8,4,10,2,9,1,8,1,15,1,8,3,10,5,8,2,10,2,8,2,15,1,10,1,8,3,10,3,8,1,10,6,8,1,10,1,8,4,10,4,8,16,10,13,8,1,10,5,15,1,19,19,4,1,19,2,4,279,}, + {4,230,19,69,10,1,8,1,15,1,14,16,8,2,14,2,15,1,8,3,15,1,10,3,19,7,10,6,8,2,10,3,8,2,10,2,8,2,9,1,10,2,8,1,14,1,16,2,17,1,14,1,7,2,14,1,7,1,8,2,15,2,14,1,15,2,8,3,9,1,8,1,14,3,8,3,10,1,8,3,15,2,7,1,15,2,8,2,15,1,8,10,9,1,10,1,9,1,8,2,15,2,14,1,15,1,8,4,9,1,10,1,9,1,10,2,8,4,15,1,8,1,10,4,8,1,10,1,8,8,10,7,8,27,10,14,8,3,10,4,4,1,10,1,19,18,4,282,}, + {4,230,19,69,10,1,8,1,15,3,14,7,7,1,14,6,8,2,15,1,8,3,10,2,14,1,15,1,10,1,19,6,10,8,8,2,10,8,8,1,10,3,8,1,15,1,14,1,17,1,15,1,7,2,15,1,8,3,10,1,15,4,8,1,10,1,9,1,15,1,10,1,8,1,15,1,14,3,15,1,8,1,10,1,8,2,9,1,8,1,9,1,8,4,10,1,8,1,10,2,8,6,15,1,8,3,9,1,8,1,15,1,8,1,15,3,8,1,15,2,8,1,10,1,8,2,10,4,15,1,8,5,10,4,8,8,10,4,8,2,10,1,8,5,10,2,8,17,15,1,8,2,10,13,8,3,10,7,19,18,4,282,}, + {4,230,19,67,10,2,8,4,10,1,8,1,14,1,8,2,14,2,8,3,14,4,15,3,8,1,15,2,8,1,10,2,14,1,15,1,10,1,19,5,10,6,8,1,10,3,8,1,10,2,8,2,15,1,8,2,10,1,8,2,10,1,8,5,14,4,8,1,10,10,8,1,10,1,8,1,14,3,15,3,8,2,15,1,10,2,8,2,15,1,8,5,10,1,9,1,8,4,15,1,8,1,15,1,8,1,15,1,8,2,15,1,8,2,15,1,14,2,15,2,8,1,10,1,8,1,15,1,8,1,10,3,8,3,10,1,8,2,10,2,8,3,10,1,8,21,15,3,8,2,10,3,8,3,10,1,8,4,15,1,8,1,10,17,8,2,10,5,19,19,4,281,}, + {4,230,19,67,9,1,15,1,14,1,15,1,8,1,10,2,9,1,8,1,10,2,8,5,15,1,8,1,15,2,8,1,15,3,14,1,8,1,10,6,19,4,10,2,15,1,10,4,8,1,10,4,15,1,8,6,15,2,8,1,15,1,8,3,15,1,8,3,10,1,8,1,10,4,8,3,10,4,8,1,15,1,14,4,7,1,15,1,14,1,9,1,8,2,10,1,9,1,8,5,15,1,14,2,8,6,15,2,8,3,15,2,8,1,10,15,8,2,10,7,8,1,10,3,8,2,10,2,8,14,10,1,8,2,15,2,8,1,10,3,8,6,10,1,8,2,14,1,8,1,10,9,8,3,10,2,8,5,10,4,19,20,4,281,}, + {4,231,19,65,10,1,8,1,15,4,8,1,10,6,9,1,8,1,15,1,8,4,14,1,15,3,14,1,15,1,10,6,19,5,4,2,10,6,8,1,10,3,8,1,15,2,8,3,15,1,8,4,15,1,8,2,15,1,8,1,10,9,8,6,15,1,14,5,15,2,14,1,8,2,15,1,8,7,14,2,15,1,14,1,8,10,15,1,10,18,8,1,10,3,8,2,10,3,8,5,10,2,8,6,10,1,8,1,15,1,8,5,10,2,8,4,10,4,8,9,10,8,8,3,10,1,8,1,10,1,8,7,10,3,19,20,4,281,}, + {4,231,19,65,10,1,15,2,8,2,15,1,8,1,10,7,8,1,14,2,8,2,15,1,14,1,15,1,8,4,10,1,8,1,14,1,15,1,10,1,19,9,10,9,8,4,15,2,8,2,10,2,8,1,15,2,8,1,10,10,9,1,8,3,7,2,14,7,7,1,8,1,14,1,8,1,7,1,14,1,7,2,8,3,14,1,7,1,15,1,8,2,14,1,8,4,15,1,8,3,15,2,8,1,10,5,8,1,10,1,9,1,10,1,8,1,10,9,8,4,10,3,8,1,10,1,8,4,10,2,8,5,10,3,8,1,10,2,8,2,10,3,8,5,10,2,8,6,15,1,8,1,10,7,8,1,10,2,8,5,10,1,8,8,10,2,19,23,4,278,}, + {4,231,19,65,10,1,8,1,9,1,10,9,9,1,8,2,15,1,14,2,15,3,8,2,10,1,9,1,8,2,15,1,14,1,15,1,10,1,19,9,10,1,8,1,10,7,8,2,15,1,8,2,15,2,8,1,10,3,15,1,8,1,10,8,9,1,10,2,8,1,15,1,14,11,7,1,15,1,7,2,15,1,14,2,7,1,15,2,14,1,15,1,7,1,14,4,8,1,10,1,8,9,10,4,8,2,9,1,10,1,8,1,15,2,8,1,10,12,8,4,10,1,8,3,10,1,8,2,10,2,8,2,10,2,8,1,10,6,8,1,10,1,8,3,10,7,15,2,8,1,10,5,8,1,10,1,8,3,10,1,8,12,10,5,19,27,4,274,}, + {4,231,19,53,4,1,10,1,19,11,10,8,8,1,15,1,8,1,10,1,8,1,15,1,14,3,15,1,9,1,10,1,9,1,8,3,15,3,8,1,10,1,19,10,10,10,8,1,15,3,8,1,15,1,8,2,10,2,8,2,10,7,8,4,14,12,7,1,15,1,7,1,15,1,14,1,8,2,15,1,14,5,7,2,14,3,8,4,10,3,8,2,10,5,8,1,10,2,8,3,15,3,8,5,10,1,8,1,10,6,8,1,10,1,8,5,10,1,8,2,10,2,8,1,10,2,8,2,10,4,8,1,10,1,8,3,10,1,8,1,10,2,8,3,10,2,8,2,10,4,8,3,10,1,8,1,10,1,8,8,10,1,8,5,10,2,8,2,10,1,19,27,4,274,}, + {4,233,19,50,10,7,19,4,10,8,8,4,14,1,15,1,10,1,8,1,15,1,14,1,15,2,10,4,15,3,14,1,15,1,8,1,10,1,19,10,10,7,8,2,10,2,8,2,14,1,15,2,14,2,15,1,8,1,10,1,8,1,10,1,8,1,10,3,8,1,10,2,9,1,14,13,7,1,15,1,8,1,15,4,14,1,8,1,15,1,14,3,15,1,14,6,8,1,10,13,15,1,8,3,14,1,8,2,15,1,14,1,15,1,8,4,10,1,8,2,10,6,8,10,10,1,8,1,10,2,8,2,10,1,8,4,10,4,8,1,10,2,8,6,10,4,8,3,10,2,8,8,10,1,8,2,10,1,8,9,10,2,19,25,4,275,}, + {4,233,19,49,4,3,10,2,8,1,10,4,19,1,10,7,8,3,10,2,8,1,15,3,14,2,15,1,8,1,10,4,8,1,14,1,15,2,9,1,10,1,19,10,10,8,15,3,8,5,15,1,14,4,15,1,10,9,15,3,14,3,8,1,7,1,14,4,17,1,14,1,7,1,14,1,7,1,15,3,8,2,15,1,14,9,15,1,8,3,10,3,8,1,15,1,8,1,10,7,8,1,14,5,15,1,14,2,15,3,8,7,10,5,8,16,10,1,8,1,10,8,8,4,10,2,8,2,10,3,8,1,10,3,8,15,10,2,8,2,10,1,8,3,10,5,19,22,4,274,}, + {4,235,19,47,4,2,10,3,8,3,10,4,8,2,10,1,8,6,10,1,8,2,14,2,8,2,14,2,9,1,19,1,10,1,19,1,10,1,15,1,14,1,15,1,8,1,10,1,19,10,10,7,8,3,10,3,8,1,15,1,14,3,15,5,8,1,10,1,8,3,10,3,8,1,14,2,8,2,15,2,8,1,9,1,15,1,14,3,15,1,7,2,14,4,8,4,15,1,14,4,17,1,14,2,8,1,10,3,8,3,15,3,8,2,9,1,10,5,8,1,14,4,15,1,8,2,14,2,15,1,8,1,15,1,8,3,15,2,8,7,10,1,8,18,10,7,8,3,10,7,8,6,10,1,8,2,10,1,8,9,10,1,8,2,10,1,8,2,10,3,8,1,10,6,19,20,4,273,}, + {4,235,19,47,4,2,10,3,8,3,10,4,8,3,10,2,8,1,15,2,8,1,10,2,8,1,15,2,8,1,10,3,19,4,10,1,4,1,9,1,10,1,19,10,10,11,8,3,15,1,8,1,14,3,8,1,9,1,8,4,10,1,8,1,15,2,8,4,15,2,8,1,15,1,14,2,8,2,14,5,8,1,15,1,8,1,15,1,14,2,15,1,8,4,14,5,17,1,15,1,8,6,14,3,15,1,14,1,15,2,10,6,8,1,14,1,7,1,14,1,7,2,15,3,8,7,15,3,8,1,10,4,8,1,10,2,8,7,10,1,8,7,10,7,8,3,10,7,8,1,10,2,8,1,10,3,8,10,10,1,8,6,10,2,8,3,10,1,8,1,10,6,19,20,4,273,}, + {4,237,19,45,4,1,10,4,8,5,10,3,8,1,10,5,8,3,10,1,15,2,8,1,10,2,19,6,10,3,19,10,10,2,8,1,10,9,15,4,8,2,15,2,8,3,9,1,10,2,9,1,15,1,14,1,15,2,8,1,15,1,8,3,15,1,14,2,8,4,15,1,14,3,8,1,15,1,7,3,14,1,15,1,8,5,14,5,8,2,7,1,15,1,8,3,15,1,8,3,15,1,14,1,8,1,10,4,8,2,15,1,14,1,7,2,14,1,7,2,15,1,8,2,15,1,8,1,15,1,8,3,15,3,8,1,10,4,8,18,10,1,8,1,10,2,8,7,10,2,8,1,10,5,8,25,10,1,8,1,10,2,8,1,10,7,19,20,4,271,}, + {4,237,19,47,10,3,8,3,10,2,8,4,10,12,19,21,10,2,8,1,10,9,8,7,15,1,8,3,10,3,8,1,15,4,14,1,15,1,8,1,9,2,8,1,14,2,8,4,14,3,15,1,8,1,15,1,14,3,15,1,8,3,10,1,8,2,15,1,14,4,7,1,14,3,15,1,8,4,15,1,14,1,8,1,15,1,10,6,8,1,14,2,15,2,14,2,7,1,15,2,8,8,15,1,8,2,10,3,8,13,10,4,8,3,10,3,8,1,10,2,8,1,10,1,8,2,10,1,8,4,10,3,8,4,10,3,8,2,10,1,8,2,10,1,8,6,10,1,8,4,10,2,8,6,10,5,19,20,4,271,}, + {4,240,19,45,10,2,8,1,10,1,8,2,9,1,8,1,15,1,8,1,10,5,19,29,10,2,8,1,10,13,8,2,10,1,8,4,10,3,15,4,14,3,15,1,10,1,8,1,14,2,15,1,10,2,8,1,15,1,17,1,14,1,8,2,7,4,15,1,8,1,15,1,14,1,15,1,8,6,14,1,15,1,14,9,7,3,14,1,15,1,8,1,10,4,8,1,15,3,7,1,14,1,7,1,15,1,8,5,10,1,8,7,10,3,8,4,10,3,8,4,10,6,8,1,10,7,8,5,10,1,8,12,10,2,8,1,10,1,8,1,10,4,8,4,10,1,8,4,10,2,8,2,10,11,19,20,4,270,}, + {4,241,19,45,10,4,9,1,10,1,4,1,10,1,19,35,10,15,8,2,10,9,8,1,15,1,8,1,15,1,14,1,15,2,8,1,10,1,8,1,14,1,15,1,8,1,10,3,8,1,14,1,15,1,8,1,7,1,14,2,7,1,15,1,8,2,14,3,8,1,9,1,8,1,14,1,15,1,8,2,10,1,8,1,14,3,8,1,15,1,14,8,15,1,8,1,10,5,8,1,14,1,15,1,14,1,7,2,15,1,8,4,10,1,8,2,10,1,8,3,10,3,8,12,10,1,8,1,10,2,8,1,10,6,8,2,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,7,10,3,8,17,10,9,8,1,10,5,19,20,4,269,}, + {4,244,19,46,10,2,19,37,10,5,8,1,15,1,10,4,8,1,15,1,8,1,10,12,8,3,15,1,14,1,8,3,10,1,8,1,14,1,8,1,10,3,8,5,14,2,7,1,15,1,7,2,8,1,15,1,14,2,8,1,10,1,8,1,14,2,8,2,10,2,8,1,15,1,14,1,15,3,14,1,15,1,14,1,15,1,14,1,15,1,14,3,10,4,8,4,7,1,14,3,8,10,10,5,8,9,10,4,8,2,14,1,8,1,10,5,8,4,10,1,8,3,10,2,8,1,10,1,8,9,10,2,8,13,10,1,8,2,10,2,8,2,10,1,8,3,10,2,8,1,10,5,19,22,4,267,}, + {4,245,19,85,4,1,10,9,8,2,10,12,8,2,15,1,8,3,9,1,8,3,15,2,10,7,8,1,14,1,17,1,14,2,7,2,14,1,8,2,14,2,8,4,15,1,14,2,8,1,10,3,8,5,15,1,8,4,15,3,8,1,10,2,8,1,15,1,8,6,15,2,8,8,10,3,8,4,10,1,8,7,10,2,8,3,15,1,14,1,8,1,10,7,8,13,10,1,8,16,10,1,8,3,10,2,8,8,10,2,8,4,10,2,19,23,4,267,}, + {4,249,19,81,10,10,8,1,10,4,8,2,10,6,8,7,10,1,8,1,10,2,8,1,10,7,8,1,14,2,17,1,14,2,7,1,15,1,8,3,15,2,10,1,8,3,14,2,15,1,8,1,10,10,9,2,10,2,8,2,14,1,8,1,10,5,8,4,15,6,8,2,10,3,8,2,10,2,8,12,15,1,8,1,15,1,8,1,15,1,8,1,10,6,8,6,15,1,8,3,10,8,8,5,10,1,8,3,10,2,8,16,10,1,8,4,10,4,19,22,4,267,}, + {4,249,19,80,10,11,8,2,10,12,8,5,15,1,8,2,9,1,10,9,8,1,10,3,8,3,7,1,15,1,8,4,10,4,8,3,10,1,8,2,10,1,9,1,10,9,8,2,10,1,8,2,10,5,8,5,15,1,8,5,10,2,8,9,10,4,8,4,15,1,14,1,15,1,14,1,8,1,10,2,8,1,10,3,8,1,10,1,8,8,10,1,8,2,10,1,8,1,10,1,8,2,10,1,8,5,10,1,8,1,10,1,8,1,10,3,8,10,10,1,8,5,10,2,8,2,10,4,19,23,4,267,}, + {4,260,19,66,10,1,19,1,10,3,19,1,10,7,8,5,10,10,8,5,10,1,15,1,10,11,15,2,8,3,7,1,14,2,7,1,8,3,10,4,8,1,15,2,8,1,10,1,8,1,9,1,8,5,10,9,8,3,10,8,8,3,10,3,8,1,10,2,8,2,10,1,8,7,10,2,8,2,15,1,8,3,15,1,8,1,15,2,8,1,10,1,8,2,10,1,8,11,15,1,10,3,8,1,10,1,8,1,10,3,8,2,10,1,8,4,10,4,8,7,10,2,8,1,10,2,8,8,10,2,19,26,4,266,}, + {4,259,19,66,10,2,19,1,10,3,19,4,10,2,8,7,10,9,9,1,8,1,15,1,8,1,10,15,15,1,14,3,15,1,14,6,8,1,10,4,8,1,15,4,9,1,10,2,8,4,10,21,8,1,10,4,8,1,10,3,8,1,10,1,8,10,15,1,14,1,15,1,8,19,10,2,8,4,10,2,8,1,10,3,8,3,10,3,8,1,15,1,8,1,10,1,8,1,10,4,8,1,10,1,8,3,10,2,8,4,10,1,8,1,15,2,9,1,10,2,19,27,4,266,}, + {4,259,19,66,4,1,10,1,19,1,10,2,4,1,10,1,19,2,10,3,8,4,15,1,8,1,10,8,8,1,10,2,8,2,10,12,8,1,10,3,8,4,10,1,8,3,14,2,8,2,10,5,8,2,15,1,14,1,9,1,10,3,9,1,8,3,10,19,8,1,10,9,8,2,10,2,8,9,15,1,8,8,10,1,8,1,10,1,8,9,10,3,8,1,10,1,8,1,10,4,8,4,10,1,8,5,10,1,8,5,10,4,8,2,10,1,8,1,10,1,8,6,10,2,19,29,4,266,}, + {4,259,19,67,10,2,19,2,10,1,19,3,10,2,8,1,10,2,8,3,10,14,8,1,10,1,8,2,10,7,8,1,15,1,14,2,15,1,8,1,10,1,8,3,10,1,8,2,14,1,8,2,10,6,15,2,8,1,14,1,15,1,8,1,10,3,8,4,10,23,8,2,10,3,8,2,10,2,8,9,15,1,8,4,10,4,8,11,10,5,8,2,10,2,8,5,10,1,8,12,10,5,8,1,10,1,8,1,10,8,19,30,4,266,}, + {4,261,19,65,10,1,19,3,10,1,19,3,10,4,8,5,10,13,8,1,10,3,8,1,10,5,8,1,10,2,8,1,15,1,8,1,10,2,8,1,14,1,15,1,14,1,8,4,10,2,8,1,10,3,9,1,15,2,8,2,15,1,10,3,9,1,10,1,8,4,10,8,8,1,10,1,8,1,10,1,8,2,10,2,8,2,10,1,8,1,10,2,8,1,10,1,8,5,10,3,8,1,15,2,8,4,15,3,8,5,10,1,8,2,10,1,8,10,10,5,8,14,15,2,8,1,10,1,8,1,14,1,8,1,10,7,8,2,10,1,8,1,10,2,19,33,4,266,}, + {4,261,19,64,4,1,15,1,10,1,19,2,10,1,19,3,10,7,8,3,10,11,8,3,10,7,15,1,8,1,10,3,8,3,10,1,8,1,15,2,14,1,8,1,10,4,8,1,15,1,8,1,10,3,8,1,15,1,8,3,10,19,8,12,10,3,8,1,10,2,8,2,10,2,8,2,15,2,8,1,15,1,8,1,15,4,8,1,15,1,8,1,10,2,8,2,10,1,8,10,10,5,8,2,10,2,8,14,15,1,4,1,10,1,19,5,10,6,19,36,4,265,}, + {4,263,19,61,4,2,15,1,10,2,19,3,10,3,8,1,10,6,8,1,10,2,8,2,15,1,8,1,10,2,9,1,10,3,8,3,15,1,8,1,10,4,8,3,10,3,8,1,15,1,8,1,10,3,8,2,15,1,8,1,10,3,15,1,14,1,15,1,10,3,8,1,15,2,8,3,10,1,8,1,10,18,8,10,10,1,8,2,10,4,8,5,15,7,8,5,10,2,8,2,10,1,8,12,10,2,8,3,10,1,8,5,15,1,8,3,10,3,8,3,15,1,10,1,19,48,4,265,}, + {4,263,19,60,10,1,4,1,15,2,10,1,19,4,10,7,8,1,10,3,8,2,15,1,8,2,10,1,9,1,8,6,10,9,8,1,10,2,8,1,10,1,8,3,10,2,8,2,15,1,8,2,10,2,8,1,14,2,15,1,9,1,10,3,15,2,10,21,8,1,10,1,8,10,10,2,8,1,10,4,8,6,15,2,8,10,10,3,8,3,10,1,8,2,10,1,8,6,10,2,8,3,10,1,8,3,10,1,8,6,10,2,8,1,10,2,4,1,19,49,4,265,}, + {4,263,19,63,4,1,10,1,19,4,10,7,8,2,10,3,8,11,15,1,8,2,10,10,8,1,10,1,8,2,10,4,8,1,15,2,10,3,8,1,15,4,10,4,8,4,10,21,8,11,10,1,8,12,15,1,8,5,10,1,8,3,10,1,8,6,10,7,8,1,10,1,8,1,10,2,8,14,10,3,19,51,4,265,}, + {4,263,19,63,10,1,19,5,10,5,8,1,10,1,8,9,10,1,9,1,8,2,15,4,10,12,8,3,10,1,9,2,10,2,8,1,15,1,8,1,10,3,8,1,15,1,8,1,15,1,8,2,10,3,8,4,10,19,8,12,10,1,8,20,10,1,8,1,10,1,8,1,10,1,8,3,10,11,8,1,10,1,8,14,10,3,19,52,4,265,}, + {4,265,19,60,10,2,19,5,10,1,19,1,10,3,8,1,10,1,8,4,10,3,8,2,10,1,8,1,14,3,15,1,8,1,10,13,8,1,14,1,8,4,10,2,8,2,10,4,8,2,15,1,8,3,10,3,8,3,10,19,8,31,10,2,8,5,10,6,8,2,10,10,8,13,10,2,19,53,4,265,}, + {4,265,19,57,10,3,15,1,9,1,19,7,10,2,8,1,10,1,8,5,10,3,8,3,15,1,14,2,15,1,8,1,10,13,8,1,15,3,8,1,15,1,10,8,8,3,15,1,8,4,10,23,8,1,10,1,8,12,10,2,8,13,15,1,8,1,10,3,8,5,10,3,8,2,10,1,8,2,10,6,8,2,10,1,8,6,10,1,8,6,10,2,19,54,4,265,}, + {4,265,19,32,10,2,4,1,19,22,10,1,8,1,15,2,10,1,19,7,10,2,8,2,10,1,8,1,10,1,8,2,10,2,8,1,10,2,8,1,15,2,8,2,10,4,8,2,10,10,8,1,15,3,10,8,8,1,15,2,8,5,10,4,9,1,10,15,8,8,10,1,8,5,10,5,8,13,15,1,8,3,10,3,8,3,10,1,8,4,10,2,8,1,10,3,8,10,10,1,8,5,14,1,8,1,10,2,19,55,4,265,}, + {4,265,19,32,4,1,10,2,19,20,10,1,8,1,15,4,10,1,19,7,10,3,8,1,10,1,8,2,10,1,8,3,10,1,8,1,10,1,8,2,10,10,8,3,10,7,15,1,14,1,15,1,10,8,8,1,15,1,14,1,8,5,10,7,8,2,10,1,8,2,10,6,8,2,10,1,8,9,10,4,8,1,10,6,8,7,10,3,8,2,10,1,8,3,10,3,8,7,10,1,8,5,10,2,8,7,10,1,8,2,10,1,8,1,10,2,8,1,10,2,19,56,4,265,}, + {4,266,19,30,10,3,19,20,10,1,9,1,15,5,10,1,19,7,10,4,8,2,10,4,8,1,10,3,8,1,10,11,8,3,10,8,15,1,8,1,10,6,8,10,10,7,8,5,15,1,8,1,10,5,8,1,10,1,8,1,10,6,8,2,10,3,8,7,10,2,8,6,10,2,8,7,10,2,8,4,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,4,8,9,10,6,19,56,4,265,}, + {4,266,19,29,10,4,19,19,10,1,9,1,15,5,10,2,19,7,10,5,8,1,10,21,8,1,10,1,8,1,10,6,8,1,15,1,8,1,10,5,8,2,15,2,8,8,10,6,8,1,10,1,8,2,15,1,8,3,10,1,8,1,10,2,8,3,10,7,8,2,10,6,8,3,10,1,8,25,10,2,8,5,10,2,8,10,10,1,8,1,10,1,8,1,10,3,19,56,4,265,}, + {4,268,19,25,10,6,19,18,10,1,9,1,15,1,8,1,15,3,8,1,10,2,19,7,10,3,8,1,10,1,8,2,10,19,8,1,15,1,8,2,10,2,8,1,10,5,15,2,10,4,8,2,15,1,14,1,15,1,8,2,7,2,8,2,10,11,8,1,10,2,8,7,10,5,8,1,10,1,8,5,10,9,8,7,10,5,8,1,10,1,8,1,10,3,8,1,10,8,8,6,15,1,8,2,10,3,8,2,10,1,8,2,10,1,8,2,4,1,10,1,19,61,4,261,}, + {4,269,19,24,10,5,19,17,10,2,9,1,8,1,15,1,14,1,15,3,10,2,19,6,10,26,8,1,10,3,8,1,15,1,9,1,15,3,10,4,8,2,10,4,8,4,15,1,8,6,10,13,8,20,10,5,8,1,10,3,8,8,10,1,8,4,10,6,8,2,10,2,8,3,10,1,8,1,15,1,8,1,15,4,8,6,10,1,8,1,10,2,8,1,10,1,15,1,10,2,19,61,4,261,}, + {4,269,19,24,8,1,10,1,8,1,10,2,19,16,10,2,8,2,15,2,14,1,15,2,8,1,10,1,19,6,10,23,8,1,10,1,8,1,15,1,8,1,9,1,10,2,8,1,14,1,10,1,8,2,15,1,10,11,8,2,10,1,8,8,10,12,8,6,10,1,8,1,10,1,8,6,15,1,8,6,10,1,8,4,10,2,8,13,10,6,8,2,10,2,8,7,15,1,14,1,15,1,8,2,10,1,8,4,10,1,8,3,10,4,19,60,4,263,}, + {4,269,19,23,10,1,14,1,8,2,10,1,19,16,10,1,8,2,15,3,8,1,15,2,14,1,10,2,19,6,4,1,10,21,8,2,10,1,14,1,15,1,10,1,8,4,15,1,8,4,10,12,8,1,10,1,8,7,10,10,8,6,10,1,8,3,10,3,8,3,10,1,8,1,14,1,15,1,8,5,10,1,8,1,10,1,8,2,10,1,8,1,10,2,8,8,10,2,8,3,10,5,8,1,10,2,8,5,10,2,8,1,15,2,8,2,10,2,8,1,10,1,8,1,10,7,19,20,10,2,15,2,8,4,10,5,19,28,4,263,}, + {4,269,19,23,10,1,14,1,8,2,10,1,19,15,10,1,8,1,14,1,15,3,14,1,15,4,10,1,19,6,10,23,8,2,10,1,15,1,10,2,15,1,8,1,10,2,8,3,15,1,8,1,10,2,8,2,10,8,8,4,10,1,8,3,10,10,8,2,10,1,8,1,10,1,8,1,10,1,8,2,10,5,8,3,10,1,8,2,10,11,8,2,10,1,8,2,10,3,8,2,10,2,8,4,10,11,8,3,10,2,8,6,15,1,8,1,10,7,19,21,10,2,8,1,15,1,8,7,15,1,8,1,10,3,19,24,4,265,}, + {4,269,19,23,10,1,14,1,15,1,8,1,10,1,19,14,10,1,15,1,14,2,15,4,8,4,10,1,19,6,10,26,8,1,10,2,14,1,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,2,8,2,10,9,8,1,10,1,8,1,10,1,8,1,10,10,8,3,10,3,8,1,10,1,8,4,10,1,8,6,10,14,8,7,10,1,8,8,10,14,8,3,14,1,8,5,10,3,19,25,10,1,8,4,10,1,8,2,10,3,8,2,15,1,8,1,10,2,19,24,4,265,}, + {4,267,19,25,10,1,8,1,15,1,9,1,10,1,19,13,10,1,15,1,14,2,15,4,8,4,10,1,19,7,10,25,8,1,10,2,8,1,15,1,10,3,8,2,10,6,8,1,10,3,19,1,10,19,8,2,10,1,8,1,10,2,8,1,10,1,8,3,10,1,8,4,10,1,8,2,10,12,8,1,10,2,8,9,15,2,8,7,15,1,8,1,10,12,8,1,14,1,8,3,10,3,19,1,10,1,19,24,10,1,15,1,14,1,8,2,10,1,8,3,10,2,8,3,15,2,8,1,10,2,19,23,4,265,}, + {4,267,19,24,10,2,9,1,15,1,10,1,19,13,10,1,9,1,14,2,8,3,15,2,8,1,15,1,8,1,10,1,19,7,10,15,4,1,10,10,8,1,10,2,8,1,15,1,8,2,10,2,15,1,8,2,10,8,19,2,10,16,8,3,10,1,8,1,10,4,8,1,10,1,8,2,10,1,8,1,15,2,8,2,10,2,8,4,10,12,8,9,15,1,8,4,14,4,8,1,10,13,15,2,8,1,10,4,19,25,10,2,14,1,15,1,8,1,10,1,8,10,10,6,19,21,4,265,}, + {4,267,19,26,15,1,10,1,19,14,10,1,8,1,15,5,14,4,8,1,19,7,4,1,10,13,19,1,10,3,19,2,10,7,8,1,10,3,8,1,10,1,8,1,10,3,8,2,10,8,19,2,4,1,10,6,8,2,10,1,8,1,10,6,8,3,10,1,8,1,10,2,8,1,10,1,8,1,10,3,8,2,15,1,8,7,10,9,8,1,10,2,8,3,10,1,8,2,10,2,8,3,15,2,8,1,14,5,15,1,8,1,10,1,8,3,10,16,19,24,10,1,15,1,14,1,10,1,8,2,10,1,8,7,10,3,8,1,10,6,19,23,4,261,}, + {4,267,19,26,4,1,19,15,8,1,15,2,8,1,15,5,14,1,15,1,10,1,19,7,10,14,19,1,10,2,19,3,10,11,15,1,8,1,10,4,8,2,10,8,19,2,10,10,8,1,10,6,8,3,10,1,8,1,10,5,8,1,10,3,8,6,15,1,8,4,10,4,8,4,10,1,8,5,10,1,8,2,10,3,8,4,15,2,8,1,15,2,8,3,15,1,8,3,10,15,19,23,10,2,8,3,10,1,8,4,10,2,8,9,10,6,19,21,4,261,}, + {4,268,19,40,9,1,15,1,14,1,8,2,15,2,14,1,15,1,8,3,10,1,19,6,10,8,8,1,10,6,19,6,10,11,8,1,10,8,8,1,10,5,19,3,10,10,8,1,10,1,8,2,10,2,8,2,10,3,8,1,10,5,8,1,10,4,8,2,15,1,8,3,15,1,8,10,10,1,8,10,10,3,8,2,10,1,8,2,10,4,8,5,10,1,8,2,10,1,8,1,10,11,19,3,10,4,19,16,10,6,8,3,10,1,8,4,10,1,8,4,10,1,8,1,10,3,8,1,10,3,19,21,4,3,19,1,4,256,}, + {4,267,19,41,9,1,15,2,8,2,14,1,15,1,14,1,15,3,10,1,19,7,10,6,8,1,15,1,8,2,10,5,19,6,10,3,8,1,10,5,8,1,10,16,19,4,10,9,8,1,10,2,8,1,10,2,8,2,10,3,8,1,10,2,8,2,10,1,8,2,10,4,8,16,10,2,8,1,10,1,8,1,10,3,8,3,10,3,8,2,10,1,8,1,15,1,8,1,10,3,8,1,10,1,8,2,10,2,8,3,10,2,8,8,10,8,8,1,10,3,19,12,10,6,8,10,10,1,8,3,10,3,8,2,10,6,19,24,4,255,}, + {4,267,19,41,10,2,15,3,8,1,10,1,8,4,19,7,10,6,8,2,15,3,10,5,19,6,10,3,8,1,10,5,8,1,10,1,8,1,10,5,8,1,15,1,8,2,10,6,19,4,10,10,8,2,10,2,8,3,10,1,8,2,10,1,8,2,10,14,8,1,10,1,8,8,10,2,8,2,14,1,8,2,10,1,8,1,10,6,8,8,10,2,8,2,10,1,8,3,10,3,8,2,10,2,8,5,10,4,8,1,14,1,8,2,15,2,10,2,19,9,10,5,8,9,10,1,8,4,10,12,8,1,10,2,19,24,4,254,}, + {4,266,19,42,10,3,9,2,10,2,8,1,15,1,8,1,10,1,19,7,10,1,9,1,10,3,8,3,15,1,8,3,10,1,8,1,10,2,19,6,10,3,8,1,10,3,8,1,10,2,8,3,10,4,8,1,15,2,8,1,10,3,8,1,10,2,19,4,10,10,8,3,10,1,8,3,10,1,8,1,10,2,8,2,10,4,8,2,10,7,8,2,10,1,8,5,10,1,8,3,10,1,8,5,10,10,8,6,10,2,8,16,10,5,8,2,14,1,8,3,15,1,8,1,10,2,19,4,10,1,19,1,10,6,8,6,15,2,8,1,10,3,8,6,10,4,8,2,10,7,19,24,4,253,}, + {4,266,19,43,10,4,8,2,15,2,10,1,19,8,10,5,8,8,15,1,8,1,10,2,19,5,10,1,8,2,10,3,8,2,10,3,9,1,8,1,10,5,15,1,8,2,10,3,8,1,10,1,19,2,10,14,8,3,10,1,8,1,15,1,10,1,8,1,10,2,8,4,10,1,8,4,10,1,8,2,10,2,8,3,10,1,8,2,10,1,8,1,10,3,8,5,10,5,8,1,10,3,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,6,8,16,10,2,8,1,15,1,8,2,14,1,15,1,8,1,15,1,10,9,8,2,10,1,8,18,10,1,8,2,10,1,8,4,10,8,19,22,4,253,}, + {4,266,19,40,10,1,9,2,8,1,15,4,14,1,8,2,9,1,19,8,10,4,8,2,15,1,8,4,10,2,15,1,8,1,10,2,19,5,10,6,8,2,10,2,8,2,15,1,8,1,10,3,8,1,15,3,10,3,15,1,10,1,19,2,10,3,4,1,8,1,15,3,10,8,8,1,10,1,14,1,15,1,10,1,8,1,10,4,8,7,10,1,8,3,10,1,8,1,10,4,8,9,15,1,14,1,10,5,8,2,10,1,8,9,10,1,8,2,10,6,8,2,10,1,8,7,14,2,15,1,8,2,15,1,8,2,15,1,8,5,14,2,15,1,8,1,10,1,8,4,10,1,8,6,10,1,8,2,15,1,8,1,10,1,8,7,10,1,8,2,10,16,19,26,4,248,}, + {4,263,19,36,10,2,19,4,9,1,15,4,9,1,8,1,15,2,14,1,15,1,8,1,10,1,19,8,10,3,8,4,10,1,8,1,10,3,8,1,14,1,15,1,8,1,10,1,19,5,10,7,15,1,10,2,8,2,14,1,8,1,10,3,8,4,10,5,19,1,10,3,8,1,10,3,8,3,10,13,8,3,10,1,8,2,10,1,8,6,10,2,8,12,14,1,8,3,14,1,8,1,10,8,8,2,10,1,8,11,10,1,8,9,14,1,15,1,8,3,10,1,8,1,15,1,8,2,14,1,15,1,8,1,10,1,8,2,15,1,14,3,10,1,15,1,8,1,10,1,8,1,10,2,8,1,15,1,8,4,10,1,8,14,10,1,8,3,10,14,19,28,4,245,}, + {4,263,19,33,10,3,8,1,10,1,19,3,10,1,15,1,14,1,15,3,8,1,15,5,10,1,19,10,10,7,9,1,10,1,8,2,15,2,8,1,10,2,19,5,10,7,8,1,10,3,8,1,15,1,8,2,10,3,8,2,10,4,19,3,10,2,8,1,10,3,8,1,10,1,8,2,10,15,8,7,10,1,8,3,10,4,8,2,10,1,8,7,15,1,8,5,10,11,8,7,10,1,8,1,10,1,8,1,10,3,8,3,10,1,8,3,15,1,8,6,14,2,8,9,15,2,8,5,10,1,8,7,10,2,8,3,10,3,8,6,10,3,8,1,10,1,8,1,10,5,8,1,10,10,19,25,4,245,}, + {4,263,19,32,10,2,8,2,15,1,9,1,19,2,10,2,14,2,15,3,8,1,15,4,8,1,10,1,19,10,10,2,8,1,10,5,15,6,8,1,10,1,19,5,10,13,8,2,10,9,19,4,10,1,8,1,10,1,8,1,10,5,8,7,10,4,8,9,15,1,8,6,10,2,8,3,10,2,8,4,10,1,8,5,10,13,8,6,10,1,8,3,10,2,8,4,15,1,8,1,10,2,8,8,15,2,8,2,15,1,8,11,10,1,8,9,10,1,8,3,10,3,8,4,10,1,8,2,10,3,8,5,10,20,19,19,4,245,}, + {4,263,19,31,10,2,8,1,15,3,9,1,10,4,14,2,8,1,9,3,8,2,14,1,15,1,8,1,10,1,19,10,10,6,9,1,8,1,14,3,8,3,10,2,19,4,10,25,19,3,10,10,8,9,10,3,8,4,10,1,8,1,15,2,14,2,15,1,8,1,15,2,8,7,10,1,8,3,10,2,8,2,10,1,8,2,10,15,8,5,10,1,8,8,14,1,15,1,8,1,10,2,8,1,10,1,8,1,10,2,8,6,15,1,8,5,15,1,8,1,15,1,8,4,10,1,8,5,10,1,8,1,10,4,8,2,10,4,8,1,10,3,8,2,10,2,15,3,8,1,10,23,19,17,4,245,}, + {4,263,19,25,10,1,19,2,10,3,8,1,15,4,14,1,8,1,10,2,9,1,15,1,14,2,15,6,14,1,15,1,8,1,10,1,19,10,10,5,8,3,14,3,8,1,10,5,19,3,10,9,8,1,10,2,8,1,10,11,19,3,10,6,8,2,10,3,8,7,10,1,8,1,10,3,8,7,14,1,15,2,14,1,15,1,8,2,15,3,8,5,10,1,8,3,10,1,8,1,10,1,8,4,10,1,8,2,10,1,8,1,10,8,8,1,10,1,8,13,15,1,8,1,10,1,8,5,10,1,8,5,10,2,8,7,15,1,8,2,10,1,8,1,15,1,8,9,10,2,8,1,10,1,8,1,10,1,8,2,10,4,8,1,10,3,8,2,15,2,8,2,10,23,19,20,4,241,}, + {4,263,19,24,10,6,8,1,15,3,8,2,15,1,8,1,10,2,8,1,14,1,15,3,14,1,15,1,8,1,15,2,8,2,10,1,19,13,10,3,8,2,9,1,15,2,8,2,10,5,19,3,10,9,8,5,10,10,19,3,4,1,10,4,8,3,10,2,8,1,10,1,8,7,10,1,8,2,10,3,8,2,14,1,8,3,15,1,8,1,15,2,8,4,14,2,15,1,8,11,10,1,8,6,10,5,8,1,10,2,8,1,10,1,8,5,14,2,8,8,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,10,10,1,8,1,15,1,10,1,8,20,10,5,8,5,10,7,8,1,10,16,19,19,4,241,}, + {4,263,19,23,10,2,8,1,10,2,8,2,15,4,8,1,10,2,9,1,10,2,9,1,14,2,15,4,8,2,15,1,8,1,10,1,19,15,10,1,8,3,10,1,14,2,8,2,10,5,19,5,10,8,8,1,15,1,8,3,10,8,19,4,4,1,10,2,8,5,10,1,9,1,10,1,8,6,10,1,8,2,10,1,8,2,10,1,8,3,14,1,8,2,15,1,8,1,15,1,14,1,8,1,15,1,8,2,15,1,14,4,8,7,10,1,8,5,15,2,8,1,10,12,8,1,10,1,8,2,14,2,8,1,10,2,8,2,15,1,8,5,10,2,8,2,10,1,8,8,10,1,8,4,15,1,8,9,10,1,8,13,10,2,8,1,10,5,8,1,15,1,8,4,10,3,8,4,10,17,19,19,4,241,}, + {4,263,19,22,10,1,8,1,15,3,14,1,15,1,8,2,15,2,8,2,10,1,8,2,10,2,9,1,15,1,14,1,8,5,9,1,8,1,9,1,10,1,19,15,10,1,14,1,15,2,8,1,14,1,15,1,8,1,10,4,8,1,9,1,10,1,19,4,10,9,8,5,10,2,19,1,10,4,19,4,10,4,8,1,15,2,8,2,10,2,8,4,10,1,8,5,10,1,8,5,10,1,15,1,14,2,15,1,14,2,15,3,8,1,15,1,14,4,15,1,14,3,15,1,8,2,10,1,15,1,14,2,8,1,15,1,14,2,8,2,10,5,8,1,10,2,8,1,10,2,8,1,10,2,8,7,15,1,8,5,10,1,8,2,10,1,8,1,10,3,8,5,10,2,8,1,15,1,8,7,15,1,14,1,8,3,10,1,8,1,15,1,8,2,10,1,8,1,10,1,8,2,10,1,8,3,10,7,8,2,15,1,8,1,10,3,8,8,10,18,19,18,4,240,}, + {4,262,19,23,10,1,15,2,14,1,15,2,8,1,15,6,8,2,10,3,9,1,14,1,15,2,8,5,10,1,19,16,10,2,15,1,8,2,15,1,14,1,8,3,10,4,8,1,10,1,19,4,10,11,8,2,10,3,19,9,4,1,10,2,8,6,9,1,10,1,8,1,10,3,8,1,10,5,8,2,10,2,8,3,15,1,8,1,15,1,14,12,8,1,14,4,8,4,15,1,14,2,15,2,8,1,10,4,8,2,10,4,8,2,10,1,8,4,10,2,8,3,10,1,8,1,10,1,8,5,10,2,8,3,10,5,8,1,10,1,8,5,10,2,8,9,10,2,8,3,10,1,8,5,10,2,8,3,10,5,8,3,10,3,8,1,10,18,8,2,10,6,19,33,4,225,}, + {4,262,19,19,10,3,8,2,15,4,8,1,15,4,14,1,15,1,8,5,10,2,15,3,8,4,10,2,19,15,10,3,8,2,15,1,8,4,10,1,8,1,10,6,19,5,10,9,8,1,15,1,8,1,10,3,19,8,10,3,8,6,9,1,8,2,10,4,8,13,14,5,15,3,14,6,8,1,15,3,14,1,8,1,10,1,8,1,14,3,15,1,8,3,10,4,8,2,10,2,8,2,10,3,8,1,14,1,15,1,10,1,8,1,10,1,8,7,10,1,8,6,10,2,8,4,10,2,8,3,10,3,8,1,10,1,8,7,10,1,8,2,10,1,8,8,10,4,8,1,10,6,9,1,8,3,10,3,8,2,10,5,8,1,10,6,8,1,10,12,19,32,4,225,}, + {4,261,19,20,10,1,8,3,15,3,14,1,8,1,15,4,8,1,15,1,8,1,10,2,8,1,10,3,8,1,15,2,14,1,8,4,10,2,19,15,10,3,8,3,10,1,8,2,10,2,8,1,10,6,19,8,10,1,4,1,19,1,10,3,8,2,10,4,19,8,4,1,10,2,8,10,10,3,8,19,10,1,8,1,14,6,8,1,14,2,15,1,14,1,15,1,8,1,15,1,8,1,15,1,8,7,10,1,8,3,10,7,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,7,10,2,8,1,10,1,8,3,10,1,8,5,10,1,8,2,15,1,8,9,10,1,8,3,10,1,8,4,10,8,9,4,10,2,8,5,10,1,8,2,10,3,8,1,10,6,8,1,10,1,8,1,10,11,19,32,4,225,}, + {4,261,19,20,10,3,8,1,15,3,14,1,8,1,15,3,8,4,10,1,8,1,10,1,8,1,10,2,8,1,15,1,14,2,15,1,8,1,15,1,8,1,10,1,19,16,10,19,19,7,10,2,19,3,10,5,8,1,10,2,19,7,10,2,8,12,10,2,8,2,10,1,8,1,10,1,8,5,10,1,8,4,10,1,8,3,10,1,15,1,8,2,14,4,15,1,14,2,15,3,14,2,8,2,15,3,8,2,14,1,8,2,10,5,8,1,10,6,8,1,10,2,8,2,10,1,8,2,10,4,8,2,10,7,8,5,10,1,8,15,10,2,8,2,10,2,8,1,10,1,8,1,10,8,9,2,8,2,9,3,8,5,10,1,8,4,10,1,8,3,10,1,8,1,10,2,8,3,10,3,8,2,10,7,19,31,4,225,}, + {4,261,19,20,8,1,10,1,8,2,15,4,8,2,15,1,8,5,10,7,15,2,14,1,15,3,8,1,10,1,19,16,10,20,19,7,10,1,19,2,10,2,8,1,10,1,8,1,10,4,19,8,10,1,8,8,15,1,8,3,10,1,8,11,10,1,8,2,10,3,8,3,10,1,15,1,14,1,8,1,15,1,14,1,15,1,8,2,14,3,8,4,15,1,14,4,8,2,15,1,14,1,8,2,10,4,8,1,15,1,10,5,8,1,10,2,8,4,10,5,8,1,10,3,8,1,10,3,8,1,15,3,8,1,10,2,8,8,10,3,8,3,10,1,8,1,10,1,8,2,10,2,8,1,10,2,8,1,10,3,8,1,10,2,8,6,9,1,8,7,10,1,8,2,10,1,8,5,10,1,8,3,10,14,19,34,4,222,}, + {4,261,19,19,10,1,8,1,10,2,8,3,15,2,8,2,15,1,8,6,10,6,8,1,15,5,8,1,10,1,19,16,10,20,19,11,10,2,8,1,10,5,19,8,10,1,8,6,15,2,14,1,8,14,10,4,8,1,10,1,8,2,15,1,8,1,10,1,15,2,8,5,14,1,15,1,8,3,10,2,8,2,14,5,8,5,10,3,8,2,15,1,8,3,10,2,8,2,10,9,8,3,10,1,8,2,10,2,8,2,15,2,8,1,10,1,8,1,10,2,8,5,10,7,8,1,10,1,8,3,10,4,8,5,10,1,8,8,9,1,8,7,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,1,10,2,8,1,10,1,8,4,10,9,19,36,4,219,}, + {4,261,19,19,10,1,8,1,10,2,8,2,15,4,8,7,10,4,8,1,10,3,8,2,15,1,8,2,10,1,19,17,10,20,19,12,10,4,8,1,10,3,19,7,10,1,8,6,15,2,8,2,15,1,8,5,10,1,8,4,10,3,8,1,10,1,8,1,10,1,8,3,15,1,8,5,10,1,8,8,10,1,8,2,10,2,8,2,14,1,15,1,8,4,10,1,8,1,10,3,8,5,10,2,8,1,10,10,8,1,15,2,8,1,10,3,8,16,10,2,8,1,10,2,8,2,10,1,8,2,10,5,8,4,10,1,8,4,10,1,9,1,8,5,9,1,8,4,10,2,8,2,10,1,8,2,10,1,8,2,10,6,8,5,10,9,19,38,4,217,}, + {4,261,19,18,10,1,9,1,8,1,10,2,8,2,15,3,8,3,10,1,8,3,10,1,8,1,10,1,8,3,10,6,8,1,10,2,19,17,10,15,8,1,10,5,19,11,10,8,19,7,10,1,8,9,15,1,8,4,10,3,8,1,10,1,8,3,10,2,8,13,10,1,8,2,10,1,8,3,10,1,8,3,10,3,8,4,14,1,8,3,10,4,8,3,10,5,8,1,10,3,8,2,10,3,8,25,10,2,8,1,10,3,8,1,10,4,8,2,10,3,8,9,10,1,8,5,10,2,8,3,10,4,8,4,10,1,8,2,10,3,8,1,10,1,8,1,10,1,8,1,10,2,8,3,10,4,8,1,10,2,19,37,4,217,}, + {4,261,19,19,10,1,8,1,10,1,8,7,15,1,8,2,10,3,8,1,15,1,8,1,15,3,8,1,10,2,19,3,10,1,19,20,10,15,8,1,10,5,19,8,10,10,19,5,10,5,8,7,15,1,8,9,10,4,8,6,10,2,8,16,14,1,15,1,8,3,14,3,8,3,10,1,8,1,15,1,10,13,8,7,10,1,8,13,10,3,8,1,10,1,8,3,10,1,8,4,10,1,8,3,10,3,8,4,10,3,8,6,10,2,8,3,15,2,8,8,10,2,8,3,10,7,8,4,10,14,19,40,4,213,}, + {4,261,19,19,10,1,8,2,10,1,8,3,10,5,8,1,14,1,8,5,15,1,14,1,15,2,9,1,10,2,19,25,10,12,8,4,10,3,19,12,10,1,8,2,10,2,4,1,19,4,10,7,8,4,10,3,8,7,10,2,8,1,10,1,8,19,15,1,8,2,10,1,8,3,14,1,15,2,8,2,10,2,8,1,14,2,15,1,8,4,10,5,8,1,15,1,8,8,10,1,8,4,15,1,8,8,10,7,8,1,10,2,8,2,10,4,8,1,15,1,8,1,15,1,8,2,10,2,8,2,10,4,8,3,10,1,8,8,15,1,8,1,10,4,8,2,10,2,8,5,10,2,8,4,10,6,8,10,10,3,19,40,4,213,}, + {4,261,19,19,10,1,8,2,10,1,8,2,10,6,8,1,14,1,15,1,8,5,15,1,14,1,15,1,8,1,10,2,19,25,10,8,8,2,10,1,8,1,10,7,19,12,10,3,8,2,10,2,19,3,10,7,8,4,10,3,8,4,10,2,8,1,10,1,8,1,10,1,8,7,10,1,8,9,10,1,8,2,14,1,8,2,10,2,8,7,10,2,8,2,15,1,14,1,8,5,10,4,8,3,10,2,8,6,10,1,8,2,15,1,8,5,15,1,8,4,10,5,8,1,10,1,8,5,10,2,8,1,15,3,8,2,10,3,8,2,10,7,8,4,15,1,8,4,15,1,8,1,10,5,8,5,15,1,8,2,10,1,8,4,10,6,8,3,10,2,8,3,10,1,8,2,10,4,19,40,4,212,}, + {4,261,19,19,10,2,8,1,10,1,8,1,10,7,8,5,10,1,8,1,15,2,14,1,15,1,8,1,10,2,19,25,10,8,15,1,8,2,10,6,19,16,10,1,8,2,10,2,19,3,10,6,8,4,10,3,8,3,10,1,8,4,10,2,8,5,10,1,8,1,10,1,8,15,15,1,8,1,10,1,8,6,10,1,8,1,10,3,8,5,10,5,8,1,10,5,8,2,10,1,8,3,10,1,8,15,10,2,8,11,15,2,8,2,10,4,8,2,10,2,8,11,10,3,8,3,10,1,8,1,10,1,8,3,15,1,8,5,10,1,8,1,10,2,8,11,10,11,19,41,4,211,}, + {4,261,19,19,10,4,8,2,10,5,8,2,10,1,8,5,15,5,8,1,10,1,19,26,10,3,8,1,10,2,8,1,15,1,14,1,8,3,10,2,19,18,10,5,19,3,10,6,8,4,10,1,8,1,10,1,8,3,10,1,8,4,10,3,8,5,10,3,8,3,10,1,8,10,14,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,5,8,2,10,1,8,5,10,2,8,2,10,4,8,8,15,2,8,1,10,1,8,2,15,2,8,9,10,1,8,1,15,1,8,3,15,1,8,7,10,4,8,2,10,1,8,13,10,5,8,1,10,1,8,7,10,1,8,18,10,3,8,1,10,7,19,40,4,211,}, + {4,261,19,18,10,5,8,1,10,4,8,1,10,1,8,5,9,1,8,5,15,2,8,1,10,1,19,26,10,7,8,2,15,1,8,1,10,2,19,20,10,3,19,5,10,5,8,3,10,2,8,5,10,1,8,13,10,3,8,13,14,1,8,1,10,1,8,13,10,1,8,5,10,1,8,3,10,1,8,1,10,3,8,3,10,2,8,2,15,1,14,1,8,5,15,1,8,1,10,3,8,2,10,4,8,3,10,2,8,6,15,2,8,2,10,1,8,7,10,1,8,5,10,4,8,3,10,4,8,7,10,1,8,9,10,3,8,7,10,1,8,2,10,1,8,3,10,4,19,41,4,209,}, + {4,261,19,17,10,5,8,2,10,4,8,4,15,1,8,2,15,3,8,6,10,2,19,24,10,3,8,1,10,5,8,3,10,1,19,21,10,3,19,5,10,2,8,2,10,1,8,2,10,1,8,6,10,2,8,3,10,1,8,4,10,1,8,1,10,2,8,1,10,2,8,2,10,1,8,1,10,1,8,8,10,1,8,16,10,1,8,8,10,1,8,4,10,4,8,5,15,1,8,7,10,2,8,5,10,2,8,1,10,3,8,1,10,2,8,8,10,1,8,7,10,1,8,2,10,1,8,2,10,4,8,3,10,3,8,2,10,2,8,4,10,1,8,2,10,4,8,2,10,1,8,5,10,1,8,3,10,1,8,3,10,1,8,3,10,5,19,40,4,209,}, + {4,261,19,17,10,1,15,1,8,1,10,5,19,1,10,2,8,2,15,3,8,2,15,1,14,1,15,7,8,1,10,1,19,17,10,2,19,5,10,3,8,1,10,8,19,8,10,2,19,21,10,1,8,2,10,6,8,1,10,1,8,2,10,1,8,7,10,1,8,4,10,1,8,1,10,1,8,2,10,3,8,4,10,3,8,13,10,1,8,1,14,1,8,1,10,1,8,8,10,6,8,1,10,5,8,13,10,3,8,3,10,1,8,2,10,3,8,1,10,4,8,4,10,2,8,4,10,1,8,3,10,1,8,4,10,4,8,4,10,2,8,5,10,1,8,1,10,3,8,3,10,1,8,23,10,1,8,1,10,4,19,38,4,209,}, + {4,261,19,17,15,1,14,1,10,6,19,1,10,3,14,2,15,2,8,3,14,2,15,2,8,1,15,1,8,2,10,2,19,24,10,2,8,2,10,8,19,8,8,1,10,3,19,19,10,1,8,1,10,1,8,2,10,3,8,1,10,2,8,3,10,1,8,1,10,1,8,7,10,1,8,2,10,4,8,2,15,2,8,1,10,1,8,2,10,2,8,1,10,1,8,9,10,1,8,11,10,6,8,4,10,3,8,15,10,1,8,2,10,1,8,2,10,1,8,2,10,1,8,3,10,6,8,2,10,1,9,1,10,1,8,3,10,5,8,7,10,4,8,4,10,1,8,4,10,1,8,2,10,1,8,2,10,1,8,2,10,1,8,7,10,1,8,18,10,4,19,37,4,207,}, + {4,261,19,17,4,1,10,7,19,3,10,2,8,1,15,5,14,2,15,4,8,1,15,1,10,2,19,16,10,1,4,1,19,5,10,7,8,1,10,4,19,7,10,2,8,3,10,3,19,17,10,2,8,2,10,4,8,2,10,1,8,1,10,6,8,5,10,1,8,1,10,2,8,1,10,1,8,1,10,2,8,2,15,1,8,1,10,9,8,5,10,1,8,1,10,1,8,4,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,9,10,1,8,2,10,4,8,3,10,3,8,1,10,1,8,2,10,7,8,3,10,1,8,1,10,2,8,2,10,3,8,3,10,2,8,1,10,1,8,3,10,10,8,1,10,1,8,1,10,2,8,2,10,2,8,1,10,1,8,9,10,2,8,12,10,1,8,3,15,1,8,1,10,4,19,34,4,207,}, + {4,261,19,16,4,1,10,5,19,6,10,2,8,1,14,1,15,2,14,1,15,9,8,1,10,1,19,16,10,1,4,2,19,2,10,14,19,7,10,1,8,3,15,2,8,1,10,2,19,17,10,1,8,2,10,4,8,2,10,1,8,1,10,3,8,4,10,1,8,2,10,1,8,4,10,1,8,10,10,3,8,1,10,4,8,6,10,2,8,6,10,1,8,2,10,1,8,3,10,1,8,2,10,1,8,14,10,1,8,1,10,2,8,4,10,1,8,1,15,1,8,1,10,3,8,1,10,1,8,2,10,7,15,2,10,4,8,1,10,2,8,4,10,2,8,1,10,3,8,4,10,1,8,1,10,6,8,7,10,2,8,1,10,1,8,10,10,1,8,16,15,1,14,2,15,2,8,1,10,2,19,33,4,207,}, + {4,261,19,16,4,2,10,2,19,8,10,2,8,1,15,2,8,1,15,1,8,1,14,1,15,2,8,1,15,3,8,1,15,1,10,1,19,15,10,3,19,3,10,3,8,1,10,5,8,3,10,1,19,6,10,2,8,1,15,1,8,6,10,2,19,15,10,3,8,3,10,1,8,1,10,1,8,1,10,1,8,2,10,4,8,3,10,1,8,6,10,2,8,3,15,1,8,5,15,2,8,2,10,5,8,6,10,2,8,15,10,1,8,7,10,1,8,6,10,1,8,1,10,2,8,1,10,2,8,5,10,3,8,4,10,6,8,1,15,2,10,7,8,2,10,1,8,1,10,6,8,3,10,1,8,1,10,1,8,4,10,6,8,3,10,2,8,1,10,1,8,9,10,1,8,2,14,2,8,5,10,2,8,4,10,2,8,2,15,1,14,3,10,2,19,33,4,207,}, + {4,261,19,16,10,1,4,1,19,12,10,2,8,3,15,3,8,1,15,4,8,2,10,1,19,15,10,2,4,1,19,3,10,3,8,2,10,3,15,1,14,3,10,1,19,5,10,1,8,2,9,1,15,3,9,1,10,1,9,1,8,2,10,1,19,17,10,2,8,5,10,1,8,1,10,1,8,1,10,3,8,1,10,2,8,9,10,2,8,3,10,2,8,3,15,1,8,1,10,7,8,1,10,1,8,2,10,3,8,11,10,2,8,6,10,1,8,5,10,1,8,7,10,2,8,2,10,2,8,11,10,7,8,6,10,3,8,7,10,2,8,5,10,1,8,5,10,5,8,4,10,1,8,1,10,2,8,8,10,1,8,1,10,1,8,7,10,2,8,4,10,2,8,7,10,2,19,33,4,207,}, + {4,261,19,31,10,1,15,2,8,2,7,1,15,1,8,2,15,1,8,2,10,2,19,16,10,3,19,2,10,4,8,1,10,4,8,1,10,1,8,2,10,1,19,5,10,1,8,2,9,1,8,1,15,1,8,2,10,2,8,2,10,2,19,16,10,3,8,3,10,1,8,5,10,3,8,1,10,6,8,2,10,1,8,1,10,1,8,3,10,3,8,1,10,6,8,1,10,3,8,4,10,1,8,4,10,1,8,10,10,2,8,4,10,3,8,4,10,1,8,7,10,2,8,2,10,3,8,9,10,7,8,1,15,1,8,2,15,1,8,1,10,4,8,8,10,2,8,2,10,4,8,1,10,1,8,1,10,2,8,3,10,2,8,2,10,1,8,8,10,1,8,6,10,1,8,1,10,4,8,2,10,2,8,5,10,1,8,4,10,4,19,33,4,207,}, + {4,261,19,30,10,2,8,1,15,1,8,8,10,2,19,18,10,1,19,3,10,2,8,1,10,11,19,4,10,1,8,7,15,1,8,1,9,2,8,2,10,1,19,18,10,1,8,1,15,1,8,2,10,1,8,4,10,2,8,1,10,1,8,1,10,1,8,5,10,1,8,1,10,1,8,4,10,9,8,2,10,2,8,8,10,1,8,8,10,1,8,1,10,5,8,3,10,3,8,3,10,3,8,1,10,1,8,8,10,4,8,3,10,1,8,2,10,1,8,1,10,6,8,3,10,2,8,1,10,6,8,12,10,1,8,3,10,3,8,1,10,1,8,14,10,1,8,4,10,1,8,3,10,1,8,1,10,5,8,8,10,1,8,3,10,6,19,31,4,207,}, + {4,261,19,30,10,3,8,7,10,3,19,19,10,1,19,4,10,12,19,5,10,1,8,3,15,3,14,1,15,1,8,2,10,4,19,18,4,1,15,1,14,1,8,7,10,3,8,2,10,1,8,7,10,1,8,2,10,1,8,3,10,7,8,1,10,3,8,6,10,2,8,2,10,1,8,5,10,1,8,4,10,2,8,7,10,1,8,3,10,2,8,11,10,3,8,5,10,2,8,6,10,1,8,1,10,4,8,1,10,3,8,4,10,1,8,14,10,5,8,11,15,1,8,3,10,3,8,1,10,2,8,1,10,1,8,4,10,4,8,4,10,4,8,3,10,2,8,1,14,1,10,2,19,31,4,207,}, + {4,241,19,5,4,15,19,29,10,4,8,2,10,1,8,1,10,5,19,25,10,2,8,1,10,1,15,2,10,6,19,5,10,1,8,3,15,1,8,1,15,3,8,1,9,2,8,2,10,1,19,18,10,2,14,2,15,1,8,7,10,3,8,1,10,1,8,5,10,3,8,1,10,2,8,2,10,3,8,2,10,3,8,8,10,1,8,1,10,3,8,5,10,1,8,4,10,3,8,4,10,1,8,6,10,2,8,10,10,4,8,3,10,1,8,1,10,2,8,7,10,8,8,1,10,1,8,3,10,2,8,2,10,2,8,4,10,1,8,4,10,6,8,10,10,6,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,5,8,2,10,7,8,2,10,4,8,1,10,4,19,29,4,207,}, + {4,241,19,2,4,18,19,28,10,3,8,1,10,6,19,28,10,2,8,2,10,1,8,2,10,6,19,4,10,3,8,1,14,2,15,1,14,1,15,2,8,5,10,1,19,21,10,2,15,1,14,1,15,1,8,6,10,1,8,1,10,1,8,6,10,1,8,3,10,1,8,3,10,1,8,4,10,1,8,10,10,5,8,4,10,1,8,19,10,1,8,13,10,2,8,7,10,1,8,3,10,2,8,2,10,7,8,3,10,2,8,5,10,7,8,7,10,1,8,4,10,1,8,6,10,4,8,1,10,1,8,1,10,1,8,5,10,6,8,1,10,1,8,4,10,5,8,3,15,2,10,4,19,28,4,207,}, + {4,241,19,2,4,18,19,28,10,3,8,2,10,2,19,1,10,1,19,29,10,5,8,1,10,7,19,4,10,3,15,1,14,2,15,1,14,1,15,2,8,3,15,1,8,1,10,1,19,23,10,2,8,3,15,2,8,2,10,1,8,28,10,2,8,1,10,7,8,1,10,3,8,1,10,1,8,6,10,1,8,3,10,1,8,1,10,1,8,18,10,2,8,1,10,1,8,4,10,7,8,1,10,8,8,5,10,2,8,4,10,3,8,1,10,3,8,5,10,2,8,4,10,1,8,2,10,2,8,4,10,1,8,7,10,5,8,2,10,1,8,1,10,2,8,4,10,5,8,4,15,1,8,1,10,4,19,27,4,207,}, + {4,232,19,12,4,17,19,28,10,6,19,32,10,7,8,1,10,5,19,4,10,3,8,1,15,1,14,3,15,2,8,5,10,2,19,24,10,2,8,1,14,1,15,1,8,2,10,2,8,4,15,2,10,1,8,14,10,2,8,1,10,1,8,1,10,8,8,1,10,6,8,8,10,2,8,1,10,5,8,13,10,1,8,3,10,15,8,1,10,8,8,3,10,4,8,9,10,3,8,7,15,1,8,1,10,1,8,2,10,5,8,3,10,3,8,1,10,1,8,1,10,1,8,1,10,4,8,1,10,1,8,1,10,5,8,2,10,5,8,3,10,1,8,4,10,3,19,26,4,207,}, + {4,225,19,21,4,15,19,28,10,2,9,1,10,3,19,32,10,7,8,1,10,6,19,4,10,3,8,1,14,2,15,1,14,1,15,2,14,1,15,1,8,1,10,3,19,24,10,2,8,1,15,2,8,2,10,3,8,1,14,3,15,1,8,8,10,6,8,3,10,1,8,2,10,7,8,1,10,6,8,9,10,9,8,13,10,1,8,1,10,26,8,1,10,3,8,4,10,2,8,1,10,7,8,5,15,1,8,3,10,1,8,2,10,1,8,2,10,1,8,1,15,1,8,2,10,3,8,3,10,2,8,1,10,1,8,6,10,4,8,3,10,4,8,4,10,1,8,2,10,1,8,1,10,3,19,25,4,207,}, + {4,222,19,25,4,14,19,28,10,5,19,33,10,4,8,4,10,6,19,4,10,2,8,1,15,3,8,1,14,5,8,1,10,2,19,26,10,2,8,3,10,1,8,6,14,1,8,1,10,1,8,8,10,5,8,3,10,2,8,1,10,12,8,3,15,1,8,4,10,2,8,1,10,3,8,2,10,2,8,4,10,1,8,2,10,1,8,2,10,4,8,2,10,17,8,1,10,12,8,4,10,10,8,5,15,1,8,4,10,2,8,10,10,2,8,3,10,1,8,1,10,1,8,8,10,3,8,4,10,3,8,4,10,1,8,2,10,1,8,2,10,3,19,24,4,207,}, + {4,217,19,32,4,14,19,26,10,4,19,33,10,4,8,2,15,3,10,6,19,5,10,1,8,1,15,2,8,1,9,1,15,1,14,1,15,3,8,2,10,1,19,26,10,3,8,3,10,1,8,7,10,1,8,3,10,1,8,2,10,5,8,5,10,1,8,2,10,5,8,3,10,3,8,1,15,2,8,6,10,1,8,3,10,1,8,8,10,10,8,3,10,6,8,2,10,7,8,1,10,9,8,2,10,5,8,1,10,5,8,1,10,8,8,5,10,1,8,2,10,1,8,5,10,1,8,9,10,2,8,3,10,4,8,10,10,1,8,1,10,3,8,1,10,1,8,1,10,1,8,3,10,3,19,24,4,207,}, + {4,217,19,32,4,14,19,62,10,1,4,1,10,3,8,2,15,3,10,5,19,7,10,1,8,2,9,2,15,1,8,4,10,1,8,2,10,1,19,26,10,2,8,2,10,2,8,1,10,2,8,1,10,3,8,1,10,1,8,3,10,2,8,1,10,2,8,7,9,1,10,1,8,1,10,3,8,1,10,1,15,3,8,3,10,1,8,2,10,1,8,2,10,2,8,2,15,2,8,11,10,2,8,1,10,1,8,1,10,5,8,1,10,7,8,1,10,12,8,1,10,5,8,2,10,8,8,4,10,2,8,4,10,2,8,2,10,6,8,1,10,2,8,3,10,1,8,1,10,2,8,1,10,1,8,2,10,1,8,2,10,2,8,2,10,4,8,11,10,1,8,2,10,2,8,2,10,1,8,2,10,1,8,1,10,3,19,23,4,207,}, + {4,215,19,36,4,12,19,63,10,4,8,1,15,3,8,1,10,4,19,8,10,4,8,1,10,11,19,25,10,1,14,1,8,9,10,1,8,1,10,3,8,7,15,1,8,1,15,1,8,10,15,4,8,2,15,1,8,2,10,2,8,3,10,1,8,1,15,1,14,1,15,1,14,1,8,1,10,4,8,3,10,3,8,3,10,1,8,1,10,4,8,2,10,6,8,3,10,5,8,2,10,2,8,4,10,3,8,1,10,1,8,1,10,1,8,10,10,3,8,2,10,1,8,11,10,1,8,5,10,1,8,4,10,1,8,3,10,1,8,2,10,1,8,2,10,3,8,6,10,2,8,4,10,2,8,1,10,7,8,1,10,3,19,21,4,209,}, + {4,215,19,36,4,12,19,62,10,1,4,1,10,2,15,2,14,2,15,1,8,1,10,4,19,8,10,4,8,1,10,11,19,24,10,2,8,4,10,1,8,5,10,1,8,4,10,2,8,1,10,1,8,4,15,1,14,1,15,2,8,1,14,1,15,1,8,1,14,1,15,3,14,1,15,1,8,4,14,1,15,1,8,1,14,1,8,3,10,2,8,1,15,1,14,2,15,1,8,3,10,1,8,2,10,2,8,7,15,1,8,2,15,1,8,2,10,4,8,4,10,8,8,4,15,3,8,2,10,4,8,19,10,8,8,1,10,2,8,1,10,6,8,1,10,1,8,10,10,4,8,3,10,7,8,2,10,4,8,4,10,1,8,1,10,1,14,1,10,1,19,21,4,209,}, + {4,215,19,40,4,10,19,60,10,1,8,1,10,4,15,1,8,3,10,5,19,7,10,3,8,2,10,10,19,25,10,2,15,1,8,7,10,3,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,2,15,3,8,2,14,2,15,2,8,2,15,1,8,1,14,1,8,3,15,1,14,1,15,1,14,1,15,2,8,5,14,3,15,2,8,1,10,1,8,3,10,1,8,8,15,3,14,1,8,1,9,1,10,2,8,3,15,1,8,3,10,7,8,6,15,1,8,2,10,4,8,1,10,2,8,1,10,3,8,5,10,1,8,3,10,2,8,2,10,1,8,3,10,2,8,9,10,3,8,7,10,1,8,3,10,1,8,2,10,3,8,1,10,4,8,1,10,6,8,1,10,1,8,7,14,1,10,1,19,21,4,209,}, + {4,215,19,40,4,10,19,60,10,6,8,2,10,6,19,8,10,4,8,1,10,10,19,26,10,1,14,1,8,1,10,1,8,2,10,1,8,8,10,1,8,5,10,2,8,2,15,1,8,3,14,1,8,1,14,1,8,5,15,1,8,1,14,1,15,1,8,5,15,1,8,5,15,2,14,1,8,2,10,2,8,2,10,1,8,7,15,6,8,1,10,2,8,1,15,1,8,2,15,3,8,2,10,2,8,1,10,1,8,5,15,1,8,6,10,4,8,2,10,3,8,2,10,1,8,7,10,1,8,4,10,8,8,2,10,2,8,2,10,2,8,1,10,1,8,3,10,1,8,3,10,1,8,2,10,1,8,3,10,1,8,2,10,3,8,2,10,5,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,14,1,10,1,19,21,4,209,}, + {4,215,19,40,4,10,19,60,10,6,8,1,10,7,19,8,10,15,19,27,15,1,8,1,10,1,15,1,8,9,10,1,8,4,10,4,8,2,15,1,8,3,15,1,8,4,10,1,8,4,15,3,8,2,10,1,8,1,15,2,8,2,15,1,14,2,15,1,14,1,8,3,10,1,8,6,10,2,8,6,15,1,14,1,15,1,8,1,10,2,8,3,14,1,15,2,8,2,10,1,8,3,15,6,8,8,10,1,8,3,10,3,8,2,10,1,8,10,10,7,8,8,10,1,8,5,15,1,8,5,10,2,8,6,10,1,8,1,10,2,8,3,10,6,8,2,10,6,8,1,10,2,19,21,4,209,}, + {4,214,19,41,4,10,19,60,10,13,19,9,10,1,8,2,10,13,19,26,10,2,14,2,8,6,10,2,8,1,10,2,8,3,10,5,8,15,15,4,8,1,10,1,14,2,15,1,8,4,15,5,8,5,10,4,8,1,15,2,8,1,15,1,8,3,15,2,8,2,10,1,8,2,15,1,14,2,15,2,8,5,15,1,14,1,15,1,8,5,15,1,8,8,10,3,8,4,10,1,8,7,10,6,8,11,10,2,8,1,10,1,8,2,15,2,8,2,15,1,8,2,10,1,8,5,10,1,8,1,10,3,8,3,10,13,8,2,10,3,19,20,4,209,}, + {4,209,19,48,4,8,19,60,10,13,19,9,10,2,8,1,10,13,19,27,10,1,14,2,8,6,10,1,8,1,10,3,8,1,10,3,8,1,10,4,8,3,10,1,8,3,15,5,8,4,10,2,8,2,15,1,8,3,10,2,8,1,15,1,8,4,15,2,8,4,10,3,8,1,15,3,8,9,14,2,15,4,8,1,15,2,8,4,15,1,8,5,15,1,8,3,10,2,8,2,10,4,8,3,10,2,8,9,10,10,8,6,10,1,8,3,10,1,8,1,15,2,8,4,10,2,8,7,10,1,8,1,10,1,8,2,10,7,8,1,10,5,8,3,10,3,19,20,4,209,}, + {4,209,19,48,4,9,19,59,10,5,8,1,10,7,19,10,10,6,8,1,10,8,19,27,10,2,8,9,10,8,8,2,10,2,8,3,10,1,8,2,14,2,15,1,8,1,15,2,8,2,10,4,8,1,15,1,8,4,10,1,8,8,15,1,8,12,10,1,8,2,10,1,8,3,14,2,8,6,14,1,15,1,8,1,10,2,8,4,15,3,14,1,8,3,10,1,8,4,10,3,8,10,10,1,8,4,10,4,8,4,10,2,8,2,10,1,8,2,10,1,8,3,10,1,8,1,15,2,8,3,10,2,8,8,10,1,8,5,10,5,8,1,10,1,8,1,10,5,8,1,10,1,8,1,10,3,19,19,4,209,}, + {4,207,19,51,4,10,19,57,10,13,19,11,10,4,8,1,10,9,19,27,10,1,8,4,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,2,10,2,8,5,15,4,8,5,10,3,8,1,14,2,8,1,14,2,8,6,10,3,8,4,15,1,8,1,14,1,8,1,10,2,8,2,10,3,8,1,15,1,8,2,10,1,8,1,14,3,8,3,10,1,8,3,10,4,8,2,15,1,8,1,14,1,15,1,8,1,15,1,8,1,10,2,8,2,15,1,8,3,10,1,8,4,10,1,8,3,10,3,8,4,10,3,8,10,10,2,8,2,10,1,8,4,15,2,8,3,10,2,8,2,10,1,8,5,10,2,8,4,10,4,8,4,10,2,8,2,10,6,19,23,4,205,}, + {4,206,19,52,4,11,19,57,10,6,8,2,10,3,19,13,10,3,8,1,10,9,19,27,10,1,14,2,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,5,8,4,10,1,8,7,15,1,8,6,10,2,8,1,15,1,14,1,7,1,15,1,14,1,7,1,8,5,10,3,8,4,15,1,8,1,15,1,8,3,15,1,8,1,10,2,15,1,14,2,10,3,8,12,10,4,8,5,10,1,8,1,10,2,8,1,10,1,8,5,10,3,8,9,10,1,8,2,10,6,8,17,15,3,8,2,15,2,8,2,10,3,8,9,10,2,8,2,10,3,8,9,10,2,19,23,4,205,}, + {4,173,19,4,4,28,19,54,4,6,19,1,4,5,19,55,10,4,8,1,10,6,19,13,10,2,8,1,10,10,19,26,10,1,8,1,14,1,8,2,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,4,8,5,10,4,15,1,8,2,15,1,14,1,15,3,14,1,15,1,10,2,8,2,14,5,15,1,8,11,15,2,8,1,14,1,15,2,8,1,15,1,10,1,8,2,14,2,8,1,10,2,8,2,7,1,14,2,15,1,14,2,15,1,8,4,10,4,8,7,10,4,8,4,10,4,8,9,10,1,8,1,10,1,8,1,10,5,8,7,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,3,15,1,8,6,10,5,8,4,10,1,8,6,10,1,8,6,10,8,19,23,4,205,}, + {4,173,19,6,4,25,19,56,4,5,19,1,4,6,19,53,10,2,8,1,10,1,8,2,10,6,19,13,10,1,15,2,8,1,10,10,19,24,10,2,8,5,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,3,10,2,8,4,15,1,14,1,15,1,8,1,15,1,14,1,8,1,10,1,8,1,14,3,7,1,14,2,15,1,8,4,15,1,8,3,10,1,8,2,15,9,8,3,14,2,15,1,8,1,10,1,8,1,7,1,14,6,8,6,10,2,8,8,10,4,15,1,8,3,10,3,8,9,10,3,8,3,10,3,8,4,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,2,15,1,8,4,10,1,8,2,10,3,8,4,10,1,8,5,10,3,8,3,10,1,8,3,10,2,8,1,10,4,19,23,4,205,}, + {4,166,19,18,4,9,19,68,4,4,19,1,4,6,19,53,10,12,19,14,10,2,8,1,15,1,8,1,10,4,4,1,10,1,4,1,19,25,10,2,8,5,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,6,10,1,8,2,14,2,15,1,8,2,9,1,8,2,14,7,8,3,14,2,15,2,8,1,10,1,8,2,15,1,14,1,15,1,8,1,15,5,8,1,10,2,15,1,14,3,8,2,14,6,15,1,8,7,15,1,14,1,8,4,15,3,8,1,10,2,15,3,8,11,10,6,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,3,8,15,10,2,8,5,15,1,8,8,10,1,8,3,10,3,8,10,10,1,8,1,10,2,19,23,4,205,}, + {4,164,19,21,4,7,19,69,4,4,19,1,4,5,19,54,10,2,8,1,10,1,8,1,10,1,8,1,10,4,19,17,10,2,15,2,9,1,10,1,19,2,4,2,19,24,10,3,8,3,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,2,10,1,8,4,10,1,8,3,10,2,8,4,14,2,15,1,8,2,10,1,8,2,14,6,8,1,14,1,8,1,15,1,14,4,8,2,15,1,14,3,8,3,14,2,15,1,14,1,10,4,8,2,14,1,7,2,14,5,8,6,14,1,15,2,14,1,15,1,8,2,15,1,14,5,10,2,15,1,8,15,10,5,8,3,10,8,8,11,15,1,8,2,10,3,8,6,10,1,8,9,10,3,8,10,10,5,19,23,4,205,}, + {4,161,19,163,10,2,8,1,10,1,8,4,10,4,19,18,10,4,19,27,10,2,8,6,10,1,8,1,10,3,8,1,10,2,8,4,10,1,8,2,10,1,8,7,10,1,8,5,14,1,8,3,10,1,8,2,15,1,14,2,15,1,14,1,8,5,14,1,8,5,15,2,14,1,15,1,8,6,14,1,15,1,8,1,10,1,8,2,14,8,7,1,8,3,14,2,8,1,14,1,15,2,14,1,8,3,14,2,15,2,8,2,10,2,8,14,10,1,8,2,10,5,8,2,10,2,8,4,10,3,8,1,10,1,8,3,10,1,8,4,14,1,8,1,10,1,8,1,10,1,8,4,15,1,8,17,10,4,8,7,10,2,19,25,4,203,}, + {4,161,19,163,10,3,8,1,10,1,8,3,10,4,19,48,10,2,15,1,8,5,10,2,8,3,10,2,8,1,10,1,8,5,10,1,8,2,15,1,8,2,10,2,8,1,10,1,8,1,10,1,8,9,15,1,8,2,14,1,8,1,14,2,8,4,15,1,8,6,15,3,14,1,15,1,14,1,15,1,8,1,10,2,15,2,8,4,14,8,8,4,14,2,15,2,8,2,15,1,10,3,15,2,8,3,10,1,8,1,10,1,8,2,10,1,8,9,10,5,8,2,10,3,8,2,10,1,8,2,10,1,8,2,10,4,8,8,14,1,15,1,8,3,10,2,8,4,15,1,8,7,10,1,8,9,10,4,8,7,10,1,19,25,4,203,}, + {4,160,19,164,10,4,8,3,10,6,19,46,10,4,8,4,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,2,10,3,8,6,10,1,8,2,10,2,8,2,10,1,8,1,15,1,14,1,15,1,8,1,15,2,8,1,15,1,8,14,15,1,14,5,8,1,10,5,8,1,15,1,14,5,7,1,14,1,7,2,8,1,10,1,8,1,14,3,8,2,10,2,8,1,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,2,15,1,8,1,10,1,8,10,10,1,8,3,10,1,8,2,10,1,8,2,10,4,8,4,10,1,8,2,10,1,8,7,14,1,8,4,10,3,8,11,10,2,8,7,10,3,8,4,10,2,8,3,10,2,19,22,4,205,}, + {4,160,19,164,10,5,8,1,10,7,19,45,10,6,8,2,10,2,8,1,10,1,8,1,10,1,8,1,10,5,8,2,10,8,15,1,8,3,10,1,8,6,15,2,14,1,8,12,14,1,8,2,10,1,8,4,14,4,15,1,14,1,8,1,10,1,8,2,10,2,8,1,15,1,14,5,7,1,8,3,10,1,8,1,14,3,15,1,8,2,10,5,8,1,10,1,8,1,10,2,8,2,10,1,8,2,10,1,8,10,10,1,8,6,10,2,8,2,10,4,8,2,10,4,8,3,15,1,14,5,8,4,10,6,8,7,10,1,8,10,10,1,8,7,10,1,8,3,10,1,19,23,4,205,}, + {4,159,19,165,10,13,19,45,10,4,8,1,10,1,8,2,10,2,8,2,10,3,8,1,10,4,8,2,10,4,8,1,10,3,15,1,8,3,10,3,8,1,10,2,8,3,15,1,10,2,8,5,10,1,8,2,15,1,14,3,8,6,15,1,8,4,14,1,15,2,14,2,8,1,10,2,8,1,15,1,8,1,14,1,8,1,14,1,8,3,7,1,8,2,14,3,15,2,10,8,8,1,10,3,8,26,10,4,8,2,10,1,8,1,10,1,8,6,15,1,8,1,14,1,15,1,10,1,8,1,15,1,8,3,10,3,8,1,15,2,8,2,10,3,8,2,10,4,8,3,10,3,8,6,10,2,8,2,10,2,19,23,4,205,}, + {4,158,19,67,10,1,19,98,10,13,19,45,10,3,8,4,10,19,8,1,15,1,10,1,8,3,10,1,8,10,10,2,8,8,15,4,8,4,14,1,15,2,14,1,15,1,8,3,14,5,15,1,8,1,10,1,8,9,15,2,8,1,15,3,8,2,10,15,8,23,10,6,8,1,10,3,8,4,14,1,8,4,10,1,8,1,14,1,15,1,8,3,10,2,8,1,15,1,8,5,10,2,8,2,10,3,8,3,10,4,8,1,10,6,8,2,10,2,19,23,4,205,}, + {4,157,19,68,10,3,19,96,10,14,19,43,10,2,8,1,10,1,8,5,10,1,8,1,10,8,8,1,10,7,8,18,10,5,8,11,14,2,15,2,14,1,15,1,8,3,15,1,14,2,15,2,10,4,8,8,15,1,14,1,15,1,8,4,10,14,8,21,10,1,8,2,10,13,8,5,7,1,8,1,14,1,8,4,15,2,8,2,15,1,8,5,10,1,8,3,10,6,8,1,10,1,8,1,10,2,8,3,10,4,8,2,10,2,19,23,4,2,19,2,4,201,}, + {4,157,19,68,10,1,15,3,10,4,19,89,10,15,19,44,10,5,8,3,10,1,8,6,10,3,8,2,10,1,8,7,10,1,8,8,15,2,8,2,15,2,8,6,10,2,8,5,15,1,8,4,14,3,8,1,15,2,8,4,15,2,8,2,10,4,8,6,10,1,8,1,14,1,15,1,8,1,15,1,8,3,10,14,8,1,15,1,14,1,8,7,10,1,8,6,10,2,8,1,10,1,8,3,10,12,8,2,14,4,15,1,8,1,15,1,8,3,15,1,8,5,10,3,8,7,10,5,8,1,10,2,8,2,10,1,8,1,10,3,8,4,10,2,19,23,4,1,19,3,4,201,}, + {4,157,19,69,10,1,8,3,10,4,19,88,10,15,19,44,10,5,8,6,10,1,8,2,10,4,8,4,15,1,8,1,15,1,8,1,10,4,8,1,15,2,8,3,10,1,8,1,15,1,8,1,15,1,8,2,10,1,8,2,15,1,8,2,10,2,8,6,15,1,8,1,15,1,8,1,15,2,14,5,8,2,10,1,8,1,15,1,10,6,8,3,15,1,8,2,10,1,8,1,15,1,10,2,14,1,15,1,8,1,10,1,8,3,10,13,8,5,10,1,8,7,15,1,8,1,10,11,8,3,15,3,8,6,14,2,8,3,15,3,8,8,10,1,8,1,10,1,8,4,10,5,8,1,10,3,8,1,10,3,8,1,10,3,8,4,10,1,19,27,4,201,}, + {4,157,19,69,10,2,8,1,10,1,8,2,10,5,19,84,10,16,19,43,10,5,8,9,10,7,8,1,15,3,14,1,15,1,10,4,8,1,14,1,8,3,10,3,8,1,15,2,8,7,15,1,8,4,10,2,8,3,15,3,8,2,15,1,14,5,15,1,8,1,15,1,8,1,10,5,8,2,10,1,8,1,10,3,8,3,15,3,10,3,15,1,14,1,8,1,10,11,8,6,10,2,8,7,15,1,8,1,10,12,8,1,15,1,14,1,15,4,8,3,14,1,8,3,15,1,8,1,15,1,8,1,15,2,8,1,10,3,8,3,10,1,8,7,10,8,8,1,10,4,8,1,10,2,8,4,10,2,19,26,4,201,}, + {4,155,19,71,10,3,8,2,10,3,8,1,10,1,8,1,10,1,19,84,10,11,8,2,10,1,19,42,10,4,8,1,10,3,8,2,10,1,8,1,10,1,8,1,10,9,8,3,15,2,8,2,10,4,8,3,10,3,8,2,15,3,8,6,15,1,8,16,14,7,8,1,10,7,8,2,10,4,8,1,10,1,8,1,14,1,10,4,8,1,14,1,10,2,15,1,10,9,15,2,8,2,15,1,8,1,10,2,8,6,10,1,14,1,10,13,8,1,15,2,8,4,10,2,15,1,14,1,8,4,15,1,8,2,15,1,14,1,8,1,10,4,8,2,10,1,8,6,10,7,8,4,10,2,8,2,10,1,8,2,10,1,8,2,10,4,19,24,4,201,}, + {4,155,19,72,10,1,8,3,10,2,8,1,10,5,19,82,10,8,8,4,10,2,19,42,10,2,8,2,10,7,8,4,10,8,8,2,10,1,8,3,10,1,8,1,10,5,8,1,10,3,8,2,14,2,15,1,8,1,10,3,8,1,15,3,8,13,10,2,8,2,14,6,8,1,10,1,8,1,10,4,8,5,10,5,8,1,10,5,8,2,10,10,8,1,15,3,8,1,15,1,8,1,10,1,8,2,10,6,8,1,10,15,8,1,10,6,8,1,15,2,8,7,15,1,8,2,10,4,8,1,10,1,8,6,10,8,8,1,10,1,8,7,10,2,8,4,10,1,19,25,4,201,}, + {4,155,19,70,4,1,8,2,14,2,8,1,10,1,8,3,10,4,19,82,10,8,8,3,10,2,19,43,10,1,8,3,10,7,8,2,10,8,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,7,8,1,10,4,8,1,15,1,14,1,15,1,8,1,10,3,15,5,8,1,15,2,14,1,8,2,10,1,8,5,10,1,8,3,15,1,14,6,8,2,10,3,8,5,10,13,8,1,10,10,15,3,8,1,15,1,8,1,10,2,15,1,8,1,10,31,8,2,15,1,8,1,14,1,15,1,8,3,15,1,8,2,10,4,8,2,10,1,8,3,10,8,8,2,10,1,8,2,10,1,8,6,10,3,8,1,10,2,19,24,4,201,}, + {4,155,19,70,10,1,14,3,8,1,10,1,8,6,10,2,19,54,10,1,4,1,10,1,4,1,19,26,10,10,19,44,10,2,8,3,10,7,8,2,10,1,8,1,10,2,8,3,15,1,8,2,10,1,8,3,10,13,8,2,15,2,8,1,10,3,15,2,8,1,15,1,14,1,15,4,8,5,10,3,8,1,10,1,8,3,15,2,14,4,8,2,10,3,8,5,10,1,8,2,10,7,8,1,10,13,8,3,15,2,8,1,10,1,8,1,15,1,10,7,8,1,10,1,8,2,10,21,8,1,15,4,8,2,15,2,8,3,10,3,8,3,10,1,8,1,10,1,8,3,10,5,8,3,10,1,8,2,10,2,8,1,10,2,8,4,10,3,19,25,4,201,}, + {4,154,19,70,10,1,8,1,14,1,8,3,10,1,8,1,10,2,8,4,10,3,19,52,10,3,4,2,19,80,10,2,8,1,10,9,8,3,10,4,8,3,10,1,8,2,15,1,10,3,8,1,10,9,8,4,15,1,8,1,10,3,15,1,14,3,15,1,8,9,10,2,8,7,15,1,14,4,15,2,8,1,10,1,8,9,10,3,8,1,10,7,8,2,10,1,8,2,10,6,8,2,15,1,14,1,15,1,8,4,10,1,8,2,15,1,8,1,10,3,8,1,15,1,10,3,8,1,10,17,8,1,15,2,8,3,10,1,8,1,15,1,8,1,10,1,8,3,10,2,8,1,10,1,8,2,10,4,8,2,10,2,8,1,10,1,8,1,10,7,8,1,10,2,8,4,10,2,19,25,4,201,}, + {4,154,19,65,10,5,15,1,14,2,8,4,10,3,8,1,10,1,8,3,10,3,19,55,4,1,19,80,10,1,8,2,10,3,8,1,10,1,8,2,10,3,8,1,10,1,8,1,10,2,8,3,10,2,8,1,15,1,8,1,10,2,15,2,8,4,10,4,8,6,14,1,15,1,8,1,10,1,8,1,15,1,14,2,15,1,8,2,15,1,8,2,10,3,8,1,10,3,8,1,10,2,8,3,14,5,15,1,8,1,10,3,8,7,10,4,8,1,10,5,8,2,14,1,15,1,10,1,8,1,14,1,8,1,10,4,8,1,15,1,8,1,15,3,8,1,15,3,14,1,15,3,8,1,10,2,8,2,14,1,15,1,10,20,8,3,10,1,8,1,10,1,8,9,10,3,8,1,10,6,8,3,10,7,8,1,10,1,8,7,10,1,8,1,10,2,19,24,4,201,}, + {4,153,19,56,4,1,19,7,10,2,8,2,10,3,8,1,10,1,8,1,10,1,8,3,10,1,8,9,10,3,19,53,4,1,19,79,10,2,8,2,10,14,8,1,10,3,8,2,15,1,14,1,15,1,8,2,14,2,8,1,15,2,8,1,9,1,10,1,8,3,14,1,15,1,14,1,8,3,15,1,8,1,10,2,8,11,10,4,8,2,10,2,8,4,14,3,15,1,10,4,8,9,10,3,8,1,10,5,8,1,14,1,15,1,8,1,10,1,14,2,8,1,10,4,8,1,14,1,15,1,8,3,15,2,14,2,15,3,14,1,8,3,15,1,14,3,10,8,8,2,10,5,9,1,10,3,8,1,15,1,8,7,14,1,8,6,10,11,8,1,10,4,8,1,10,3,8,5,10,1,8,3,10,1,15,1,10,1,19,25,4,201,}, + {4,153,19,54,10,4,19,6,10,1,8,1,15,1,10,2,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,3,10,1,8,4,10,1,8,1,10,4,19,50,4,1,19,79,10,2,8,2,10,14,8,1,10,5,15,1,14,2,8,1,10,2,8,1,15,1,14,2,8,1,10,3,8,1,14,2,8,2,15,1,8,1,10,1,8,2,10,5,8,1,15,1,8,4,10,7,8,7,14,2,15,1,8,1,10,4,8,8,10,1,8,4,10,5,15,1,14,1,10,3,14,1,15,1,8,1,10,4,15,2,8,4,15,3,8,3,14,2,8,2,10,1,8,2,14,1,15,2,8,1,10,5,8,4,10,1,8,6,10,3,8,7,14,1,15,4,8,1,10,9,8,2,10,10,8,1,10,4,8,1,14,1,15,1,8,2,15,1,10,1,19,25,4,201,}, + {4,151,19,54,10,6,19,6,10,6,8,6,10,3,8,3,10,2,8,3,10,9,19,128,8,3,10,21,14,1,15,1,8,2,10,3,15,1,14,1,15,1,8,1,10,2,8,1,15,1,14,1,15,1,8,4,10,1,8,3,10,4,8,1,15,1,8,6,10,4,8,6,15,1,8,1,15,1,14,1,8,1,10,3,8,7,10,1,8,1,10,1,8,4,10,5,8,2,14,1,10,3,15,1,8,2,10,3,8,2,15,1,8,3,15,1,8,7,15,2,8,1,10,3,15,1,8,1,10,1,8,2,10,4,8,1,10,2,8,1,10,1,8,1,15,4,8,1,10,3,8,1,15,1,8,5,15,1,14,1,15,1,8,3,10,9,8,2,10,9,8,1,10,1,8,5,14,1,15,1,8,3,10,1,19,25,4,201,}, + {4,151,19,49,10,1,19,2,10,4,8,1,10,4,19,5,10,6,8,4,10,1,8,11,10,12,19,29,10,1,19,96,15,1,8,2,10,5,8,3,10,1,8,3,10,9,14,1,15,1,8,2,10,3,8,3,10,3,15,1,14,2,8,5,10,8,8,3,10,2,8,2,10,3,8,11,15,1,10,4,8,1,14,1,8,4,10,1,8,7,10,11,8,1,15,2,10,3,8,1,15,2,8,13,10,16,8,2,15,4,14,1,15,1,8,2,10,1,8,7,15,2,8,5,10,7,8,4,10,1,8,1,10,4,8,1,10,3,8,4,10,1,8,2,10,1,8,1,10,3,19,24,4,201,}, + {4,149,19,50,10,13,19,4,10,6,8,16,10,1,8,2,10,12,19,25,10,2,8,1,10,2,19,2,10,1,4,1,10,1,19,88,10,1,8,3,10,2,8,3,10,5,8,2,10,8,8,1,14,1,15,1,8,2,10,7,8,2,14,4,8,4,10,6,8,1,15,2,8,16,10,4,8,1,10,4,15,1,14,1,8,1,10,2,8,4,10,3,8,2,10,11,8,1,15,2,10,3,8,1,15,2,8,9,7,1,15,1,8,3,10,2,8,2,10,8,8,1,10,4,15,1,8,5,10,4,8,2,15,1,8,6,10,9,8,3,10,1,8,1,10,7,8,1,10,3,8,5,14,1,15,1,8,2,15,2,10,1,19,24,4,201,}, + {4,149,19,48,10,2,15,1,8,2,15,2,10,9,19,2,10,4,8,7,10,1,8,7,10,1,8,6,10,3,8,3,10,6,19,23,10,2,4,1,8,1,10,6,8,1,10,2,19,87,10,1,8,3,10,1,8,2,10,12,8,2,10,2,8,1,15,1,14,1,15,3,10,4,8,4,15,1,14,1,15,3,10,1,8,4,10,4,8,3,15,1,8,1,10,1,8,14,10,10,14,1,8,1,10,3,8,4,10,3,8,3,10,8,8,1,15,2,8,1,10,2,8,8,14,1,8,4,14,1,8,4,10,1,8,3,10,10,9,1,10,3,8,2,10,4,8,4,15,1,8,3,10,1,8,2,10,1,8,1,10,1,8,1,10,9,8,3,10,8,8,5,10,1,8,4,10,1,15,1,8,1,10,1,19,24,4,201,}, + {4,147,19,48,10,4,8,1,15,1,8,3,10,2,8,1,10,1,8,1,10,1,8,1,10,2,19,2,10,2,8,1,10,1,8,6,10,1,8,13,10,1,8,1,10,2,8,9,4,1,19,18,10,1,19,1,10,4,8,3,10,1,8,3,10,1,8,3,10,1,8,1,4,1,10,1,19,6,10,2,19,75,10,3,8,1,10,1,8,2,10,1,8,4,10,6,8,7,15,1,14,1,8,2,15,1,10,3,8,3,15,1,8,1,15,1,8,1,15,1,8,2,10,2,8,1,10,1,8,1,10,2,8,3,10,1,8,4,10,1,8,5,10,1,8,7,10,10,8,2,10,3,8,12,10,1,8,1,10,4,8,1,15,3,8,3,15,1,8,6,14,1,8,3,7,1,14,1,15,1,8,3,10,1,8,1,10,1,8,1,10,19,8,1,14,2,8,6,10,1,8,8,10,7,8,2,10,1,8,1,10,9,8,2,10,4,8,1,15,2,8,2,10,2,19,23,4,201,}, + {4,147,19,41,10,2,19,6,10,1,15,1,10,4,8,1,10,4,8,1,10,1,8,2,10,1,19,3,10,2,8,4,15,1,8,19,10,2,8,4,10,1,8,1,10,4,19,16,10,6,8,14,10,14,19,72,10,1,8,4,10,1,8,1,10,1,8,3,10,6,8,2,15,3,8,2,9,1,10,1,15,1,9,1,10,1,9,1,10,2,8,1,15,1,14,1,15,2,8,6,10,1,8,3,10,3,8,5,10,1,8,2,10,2,8,3,10,3,8,6,10,11,8,2,10,1,8,14,10,5,8,3,15,1,8,8,14,2,15,1,8,3,14,2,15,2,8,1,10,4,8,2,10,2,8,1,10,15,8,1,15,2,8,7,10,1,8,2,10,2,8,3,10,5,8,1,10,3,8,1,10,6,8,4,10,1,8,1,10,1,8,2,10,2,8,3,10,3,19,20,4,1,19,2,4,201,}, + {4,145,19,42,15,2,8,2,10,2,19,3,10,1,15,1,8,1,10,3,8,2,10,4,8,2,10,2,19,2,10,3,8,20,15,1,8,3,10,2,8,6,10,4,19,14,10,2,14,2,8,1,10,1,8,5,10,5,8,4,10,3,8,6,10,1,8,4,10,3,19,70,10,2,8,3,10,2,8,2,10,1,8,2,10,5,8,1,15,1,8,3,15,2,8,1,9,1,10,1,8,1,10,1,9,1,10,3,8,1,15,3,8,3,10,5,8,1,15,1,10,1,8,1,10,5,8,1,10,4,8,4,10,6,8,4,10,12,8,7,10,1,8,7,10,4,8,1,10,2,8,5,10,2,8,4,14,2,8,4,14,1,15,1,8,3,10,5,8,1,10,11,8,2,10,6,8,1,15,1,8,4,10,3,8,2,10,4,8,4,10,5,8,1,10,1,8,6,10,1,8,4,10,1,8,7,10,1,8,2,10,3,19,18,4,205,}, + {4,145,19,41,10,1,15,1,14,3,10,2,19,4,10,1,15,1,8,1,10,7,8,2,10,1,8,2,10,1,19,2,10,2,8,12,15,1,8,2,9,1,8,8,10,1,8,4,10,3,19,1,10,3,19,12,10,1,4,1,10,1,8,12,10,4,8,3,10,3,8,3,10,1,8,3,10,1,8,5,10,2,19,68,10,2,8,2,10,1,8,5,10,7,8,2,10,1,8,1,10,1,9,1,8,1,14,1,15,1,8,4,15,1,8,1,10,1,8,1,15,2,8,1,10,1,8,1,10,1,15,1,10,5,8,1,15,1,10,1,8,1,15,1,8,1,10,7,8,4,10,1,8,2,10,3,8,4,10,11,8,8,10,2,8,8,10,2,8,2,10,3,8,2,10,1,8,6,14,1,8,1,14,1,15,1,8,2,15,1,14,1,8,2,10,25,8,1,10,1,8,1,15,2,8,4,10,1,8,1,10,1,8,2,10,4,8,3,10,2,8,4,10,2,8,1,10,2,8,1,10,1,8,14,10,3,4,1,10,1,19,18,4,205,}, + {4,137,19,1,4,4,19,43,10,2,15,1,8,1,14,2,8,1,10,6,8,3,10,9,8,1,15,1,8,1,10,4,8,9,10,1,8,2,15,1,8,4,15,2,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,3,19,3,8,1,15,1,10,4,19,7,10,2,8,1,10,1,8,5,10,1,8,7,10,5,8,2,10,3,8,2,10,4,8,2,10,2,8,2,10,3,19,67,10,2,8,8,10,6,8,3,10,2,8,1,10,2,8,1,14,1,15,2,8,2,15,1,8,2,10,1,15,3,10,9,8,1,15,2,8,4,10,3,8,3,10,2,8,2,10,3,8,5,10,1,8,1,10,3,8,2,10,3,8,3,10,1,8,8,10,2,8,4,10,1,8,4,10,1,8,2,10,4,8,8,15,1,8,1,15,1,7,1,8,1,7,1,14,1,8,3,10,24,8,5,15,3,8,5,10,6,8,1,10,2,8,5,10,2,8,8,10,2,8,6,10,1,15,1,8,1,10,1,8,1,10,1,8,1,10,2,19,16,4,207,}, + {4,137,19,1,4,4,19,37,4,2,10,5,15,1,14,1,8,1,10,1,8,4,15,1,10,3,8,4,10,7,8,1,10,1,8,2,10,5,8,8,10,1,8,7,15,2,8,1,10,1,8,4,10,2,19,6,8,1,14,1,8,1,10,4,19,4,10,4,8,12,10,9,8,2,10,2,8,3,10,8,8,3,10,2,19,66,10,2,8,3,10,11,8,2,10,1,8,1,10,1,8,1,10,1,8,2,14,1,15,3,14,2,8,1,9,1,10,1,15,2,10,10,8,6,10,3,8,8,10,4,8,4,10,1,8,1,10,3,8,1,10,3,8,4,10,2,8,7,10,2,8,1,10,1,8,11,10,4,8,8,14,6,8,4,10,21,8,2,15,1,8,5,15,1,8,2,10,2,8,1,10,1,8,4,10,6,8,14,10,3,8,1,10,1,8,2,15,1,8,4,15,1,8,2,10,1,19,17,4,207,}, + {4,137,19,1,4,4,19,36,10,1,14,2,10,2,15,1,8,1,10,2,8,1,10,2,8,3,15,1,14,1,8,1,10,1,8,1,14,1,15,1,8,4,10,5,8,1,10,2,8,1,10,6,8,6,15,1,8,3,10,1,8,1,14,1,15,1,8,8,10,2,19,7,8,1,14,1,8,5,15,2,8,2,15,1,8,15,10,4,8,5,10,4,8,5,10,11,19,65,10,2,8,2,10,5,8,2,10,11,8,4,14,6,15,1,10,2,8,1,14,1,15,1,10,4,8,2,10,2,8,2,15,1,8,1,10,5,8,5,10,2,8,1,10,2,8,8,10,1,8,1,10,4,8,7,10,1,8,5,10,1,8,14,15,1,8,1,10,4,8,3,10,1,8,3,15,1,14,6,8,3,10,22,8,2,10,2,8,10,10,1,8,1,10,1,8,2,10,1,8,1,10,5,8,1,10,4,8,5,10,1,8,5,10,3,8,7,10,3,19,17,4,207,}, + {4,137,19,1,4,4,19,28,4,2,10,3,19,3,10,1,14,2,8,5,10,1,8,1,10,1,8,3,10,3,8,2,14,2,8,3,10,1,8,1,10,5,8,2,10,1,8,2,10,6,8,8,15,1,8,2,15,1,8,4,10,1,8,3,10,3,19,6,10,2,8,5,15,1,8,20,10,4,8,5,10,4,8,6,10,6,8,2,10,3,19,63,10,3,8,2,10,5,8,3,10,10,8,4,14,6,15,1,8,2,14,3,10,4,15,1,8,3,10,1,8,3,10,7,8,1,10,1,15,1,8,2,10,3,8,7,10,1,8,1,10,5,8,13,10,2,8,2,10,1,8,2,10,1,8,1,10,1,8,8,10,3,8,1,15,1,8,5,14,3,8,2,14,1,8,3,15,1,8,1,10,27,8,1,10,2,8,4,10,2,8,1,10,4,8,2,10,5,8,1,10,3,8,5,10,1,8,1,10,2,8,3,10,1,8,1,10,1,8,8,10,1,19,17,4,207,}, + {4,137,19,1,4,4,19,28,10,1,9,1,8,3,10,4,14,2,8,2,10,2,8,4,10,2,8,2,10,1,8,2,14,1,8,1,15,1,8,3,10,7,8,3,10,1,8,1,10,7,8,4,15,1,8,5,15,1,8,5,10,2,19,10,8,7,10,1,8,18,10,1,8,2,10,1,8,2,10,2,8,3,10,2,8,6,10,13,19,62,10,2,8,5,10,3,8,4,15,2,10,7,8,1,10,1,8,3,14,3,7,1,14,2,8,3,14,2,15,1,10,4,8,1,15,1,8,2,10,1,8,2,10,3,8,1,10,6,14,1,8,5,10,1,8,7,10,1,8,1,10,1,8,15,10,3,8,5,10,1,8,1,10,2,8,13,10,1,8,10,10,1,8,1,10,27,15,1,8,7,10,2,8,1,10,1,8,1,10,2,8,4,10,1,8,4,10,1,8,1,10,4,8,4,10,4,8,7,10,1,8,2,10,3,19,17,4,207,}, + {4,137,19,1,4,4,19,28,8,1,15,1,8,3,15,7,8,1,10,1,8,6,10,1,8,4,15,1,8,7,10,1,8,1,10,4,8,2,10,2,8,2,10,5,8,11,15,2,10,1,8,2,10,2,19,11,8,4,10,2,8,8,10,1,8,11,10,2,8,7,10,1,8,7,10,15,19,62,10,1,8,3,10,1,8,2,10,2,8,2,10,1,8,1,15,1,14,2,10,10,8,2,14,1,8,1,15,1,14,3,8,2,10,2,8,2,10,4,8,2,10,2,8,2,10,1,8,4,10,4,8,1,10,1,8,1,10,2,8,3,10,2,8,10,10,1,8,13,10,2,8,8,10,2,8,7,15,1,8,3,10,1,8,2,10,1,8,3,10,5,8,2,10,27,8,2,15,1,8,2,10,1,8,4,10,2,8,4,10,3,8,3,10,1,8,1,10,4,8,2,10,1,8,6,10,1,8,11,10,5,19,15,4,207,}, + {4,137,19,33,8,1,14,1,15,5,8,2,15,1,8,11,10,3,8,1,10,1,15,1,8,1,15,2,8,3,10,1,8,1,10,4,8,1,10,1,8,1,10,8,8,1,15,1,8,3,10,2,8,1,15,1,8,3,10,1,8,3,10,1,19,12,8,3,10,4,8,1,10,2,8,1,10,1,8,1,10,2,8,1,10,1,8,8,10,4,8,14,10,4,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,3,19,61,10,2,8,1,10,3,8,2,10,1,8,6,14,2,8,1,10,7,8,2,15,1,14,9,8,6,10,2,8,4,10,3,8,4,10,3,8,3,10,3,8,2,10,2,8,7,10,2,8,2,10,1,8,1,10,1,8,6,10,1,8,4,10,1,8,8,10,1,8,3,10,4,8,1,15,3,8,4,15,2,8,3,10,7,8,3,10,15,8,4,10,4,8,2,10,2,8,6,10,5,8,2,10,3,8,2,10,1,8,1,10,8,8,14,15,1,8,1,10,2,8,1,15,1,10,3,19,15,4,207,}, + {4,137,19,32,10,1,8,1,15,3,8,12,15,1,8,8,10,1,15,1,8,1,10,1,8,4,10,6,8,1,10,1,8,2,10,7,8,1,14,1,8,7,10,3,8,3,10,1,19,12,10,1,8,2,10,10,8,1,10,2,8,3,10,2,8,4,10,6,8,2,10,1,8,9,10,5,8,2,10,1,8,1,10,4,8,1,10,1,19,62,10,4,8,9,10,1,8,1,14,1,16,1,14,1,8,1,10,8,8,3,14,2,8,1,14,4,10,2,15,1,14,4,8,3,10,4,8,4,10,4,8,3,10,2,8,1,10,3,8,3,10,3,8,1,10,3,8,10,10,1,8,5,10,1,8,3,10,1,8,4,10,3,8,3,10,1,8,2,10,1,8,9,10,7,8,1,10,7,8,1,10,5,8,1,10,4,8,5,10,7,8,1,10,2,8,4,10,2,8,1,10,2,8,2,10,2,8,4,10,1,8,1,10,7,8,2,10,2,8,12,10,2,8,4,10,1,19,15,4,207,}, + {4,135,19,33,8,1,15,1,8,1,15,1,8,1,15,3,8,10,15,2,8,6,15,1,8,2,10,1,8,4,10,1,8,1,10,6,8,2,10,4,8,1,10,3,8,6,10,5,8,4,10,1,19,11,10,2,8,3,10,11,8,1,10,1,8,1,10,3,8,4,10,1,8,2,10,3,8,5,10,1,8,7,10,6,8,2,10,3,8,2,10,1,19,62,10,1,8,1,10,2,8,1,10,1,8,2,10,6,8,2,14,1,15,1,10,11,8,4,14,3,15,1,10,2,8,1,14,1,15,3,8,1,14,1,8,1,10,3,8,2,10,1,8,2,10,2,8,3,10,4,8,1,10,2,8,5,10,3,8,1,10,1,8,16,10,1,8,4,10,1,8,5,10,1,8,3,10,1,8,2,10,3,8,6,15,1,8,2,10,6,8,2,10,4,8,1,10,1,8,1,10,6,8,1,10,4,8,4,10,1,8,1,10,5,8,1,10,2,8,4,10,4,8,3,10,2,8,4,10,1,8,1,10,5,8,1,10,2,8,1,10,2,8,4,10,1,8,4,15,2,8,2,10,2,8,1,10,3,19,16,4,206,}, + {4,135,19,31,10,2,9,1,14,1,15,1,8,1,15,2,8,2,9,1,8,5,15,2,8,1,15,1,8,1,15,5,8,1,15,2,8,3,15,1,8,2,10,1,8,1,10,17,8,5,10,3,8,1,10,2,8,4,10,1,19,11,10,1,8,4,10,7,8,1,10,5,8,2,10,7,8,3,10,1,8,2,10,1,8,11,10,6,8,2,10,2,8,2,10,1,4,1,19,62,10,14,8,3,10,11,8,1,10,1,8,2,14,5,8,1,10,2,8,5,15,1,8,2,10,2,8,7,14,1,8,1,10,6,8,9,10,3,8,1,10,1,8,12,10,4,8,2,10,2,8,2,10,1,8,2,10,4,8,3,10,3,8,3,10,2,8,3,10,2,8,2,10,3,8,2,10,3,8,3,10,3,8,3,10,9,8,2,10,8,8,3,10,1,8,1,10,1,8,2,10,3,8,3,10,2,8,3,10,1,8,1,10,6,8,1,10,1,8,5,10,4,8,1,15,1,14,2,8,2,10,7,19,15,4,206,}, + {4,135,19,31,4,1,10,1,8,1,16,1,15,3,8,5,15,2,8,3,15,1,8,4,15,1,14,1,15,4,8,3,15,2,8,1,10,3,8,1,10,15,8,6,10,1,8,8,10,1,19,12,8,1,15,1,8,4,10,1,8,2,10,2,8,1,10,4,8,1,10,1,8,5,10,4,8,6,10,1,8,5,10,1,8,1,10,1,8,3,10,6,8,2,10,2,8,2,10,2,19,61,10,4,8,1,10,2,8,2,10,6,8,1,10,3,8,2,10,12,8,2,14,3,8,1,10,1,8,1,10,8,8,11,10,5,8,1,10,6,8,16,10,2,8,2,10,3,8,3,10,2,8,1,10,2,8,2,10,2,8,4,10,4,8,3,10,3,8,2,10,3,8,1,10,1,8,1,10,9,8,3,15,2,8,1,10,2,8,1,10,3,8,3,15,1,8,2,10,1,8,1,10,5,8,6,10,3,8,1,10,1,8,2,10,4,8,1,10,5,8,1,10,2,8,3,10,1,8,4,10,2,8,1,10,1,8,2,15,2,8,4,10,5,19,15,4,206,}, + {4,135,19,31,10,2,15,1,14,2,8,6,15,3,8,3,15,1,8,4,15,1,8,2,14,1,15,6,8,1,10,2,8,1,10,1,8,6,10,10,8,13,10,3,19,11,10,1,8,9,10,1,8,1,10,5,8,6,10,1,8,1,10,2,8,7,10,1,8,13,10,4,8,3,10,2,8,2,10,1,19,61,10,4,8,1,10,2,8,3,10,6,8,1,10,2,8,1,10,13,8,2,15,2,8,1,10,1,8,4,10,6,8,5,10,1,8,3,10,1,8,1,10,4,8,1,10,1,8,10,10,1,8,2,10,2,8,7,10,2,8,2,10,2,8,2,10,4,8,1,10,2,8,3,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,3,8,1,10,1,8,3,10,2,8,1,10,1,8,3,10,3,8,6,15,2,10,7,15,2,14,2,8,3,15,1,8,1,10,4,8,4,10,6,8,3,10,7,8,2,10,1,8,1,10,2,8,2,10,2,8,2,10,1,8,1,10,1,8,4,10,1,8,2,10,1,8,3,10,5,19,15,4,206,}, + {4,135,19,32,10,1,15,1,14,2,15,2,8,2,15,3,8,1,15,3,8,8,15,3,8,1,15,2,8,1,15,1,8,3,10,1,8,1,10,3,8,2,10,2,8,2,10,5,8,15,10,4,19,9,10,3,8,8,10,1,8,1,10,5,8,22,10,1,8,1,10,1,8,4,10,7,8,4,10,3,19,60,10,7,8,6,10,12,8,1,10,7,8,1,15,1,14,2,8,1,10,2,8,1,10,9,8,1,10,2,8,6,10,1,8,2,10,3,8,1,10,3,8,5,10,1,8,5,10,2,8,11,10,1,8,1,10,6,8,1,10,2,8,3,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,9,10,1,8,5,10,2,8,9,10,1,8,5,10,1,8,1,15,1,14,2,15,1,8,3,10,8,8,1,10,2,8,1,10,1,8,4,10,1,8,1,10,5,8,2,10,1,8,1,10,3,8,1,10,4,8,3,10,1,8,6,10,1,8,4,10,1,8,1,10,4,19,14,4,206,}, + {4,135,19,30,10,1,19,1,10,1,8,1,15,3,8,2,15,2,14,2,15,1,8,3,9,3,8,4,15,2,14,1,15,2,14,1,15,1,8,7,10,4,8,2,10,9,8,15,10,7,19,5,10,2,8,11,10,6,8,3,10,1,8,15,10,1,8,2,10,1,8,1,10,1,8,3,10,6,8,6,10,5,19,57,10,6,8,8,10,19,8,1,14,3,15,2,8,1,10,17,8,1,10,8,8,1,10,2,8,29,10,3,8,2,10,2,8,8,10,2,8,1,10,3,8,4,10,1,8,4,10,1,8,5,10,1,8,3,10,1,8,4,15,1,14,1,8,3,15,1,8,1,10,1,8,1,15,4,8,1,10,9,8,3,10,1,8,1,10,2,8,3,10,2,8,1,10,1,8,2,10,2,8,1,10,4,8,1,10,2,8,2,10,2,8,2,10,4,8,3,10,1,8,3,10,7,19,14,4,206,}, + {4,135,19,31,10,1,8,1,14,1,15,2,8,4,15,1,14,1,15,2,8,2,9,1,10,1,9,1,8,4,15,5,14,2,15,1,8,8,10,2,8,2,10,1,8,1,10,11,8,3,14,1,8,7,10,3,8,1,14,1,8,1,15,1,8,1,10,6,8,12,10,5,8,1,10,1,8,1,10,1,8,18,10,1,8,1,10,2,8,3,10,5,9,1,8,3,10,1,8,3,10,2,8,2,10,1,19,30,4,4,19,21,10,7,8,3,10,1,8,5,10,18,8,1,15,1,8,3,14,1,15,1,9,1,10,1,8,3,10,4,8,1,10,6,8,2,10,6,8,4,10,5,8,17,10,3,8,10,10,1,8,1,10,1,8,9,10,1,8,3,10,1,8,3,10,1,8,3,10,2,8,1,10,1,8,8,10,3,8,1,14,2,8,1,10,1,8,2,15,1,8,2,9,2,10,1,8,2,10,5,8,1,14,3,15,1,8,4,10,1,8,2,10,5,8,2,10,8,8,1,10,2,8,1,10,1,8,1,10,2,8,2,10,3,8,3,10,2,8,1,10,6,8,1,10,1,19,14,4,206,}, + {4,135,19,27,10,5,15,1,14,1,8,4,15,1,8,1,9,2,8,2,15,1,8,4,15,2,8,1,15,1,14,1,15,1,9,1,8,1,15,1,14,3,8,5,10,1,8,8,10,1,8,3,10,5,8,5,14,1,8,7,10,1,8,2,14,1,15,1,8,1,15,1,14,1,10,2,8,2,10,1,8,13,10,5,8,1,10,2,8,6,10,1,8,20,10,4,8,2,15,1,8,4,10,2,8,2,14,1,15,1,19,28,4,7,19,20,10,7,8,7,15,2,10,10,8,2,10,6,8,1,14,1,8,2,15,3,8,2,10,7,8,1,10,7,8,2,10,1,8,1,10,4,8,1,10,3,8,11,10,3,8,7,10,4,8,6,10,1,8,19,10,1,8,5,10,2,8,2,10,1,8,6,10,1,8,5,15,1,8,4,15,1,14,1,15,1,8,3,10,1,8,1,10,7,14,1,15,1,8,1,15,1,8,3,10,3,8,1,10,2,8,2,10,3,8,1,10,1,8,2,10,7,8,2,10,1,8,1,10,1,8,3,15,1,8,3,15,1,8,10,10,2,19,13,4,206,}, + {4,135,19,27,10,1,8,2,10,2,15,8,8,1,9,2,10,1,8,2,15,4,14,3,15,1,8,2,15,1,14,3,15,1,8,1,15,2,10,1,8,6,10,1,8,1,10,1,8,1,10,1,8,3,10,4,8,10,15,1,8,2,10,2,8,1,15,1,8,23,10,4,8,2,10,1,8,28,10,3,8,1,10,1,8,8,15,1,14,1,15,1,10,1,19,29,4,8,19,18,10,7,8,2,15,1,8,1,15,3,8,1,15,1,10,3,8,1,10,6,8,2,15,1,10,6,15,1,10,1,8,1,15,3,10,2,8,1,10,15,8,4,10,2,8,3,10,1,8,4,10,3,8,1,10,1,8,4,10,2,8,7,10,5,8,4,10,1,8,1,10,1,8,1,10,2,8,2,10,2,8,3,10,1,8,3,10,1,8,1,10,2,8,5,10,2,8,2,10,1,8,1,10,1,8,5,10,2,8,7,10,1,8,1,14,2,8,6,10,7,15,1,8,7,10,1,8,2,10,4,8,1,10,3,8,2,10,5,8,1,10,4,8,1,10,1,8,2,10,1,8,4,15,2,8,7,14,1,8,1,10,1,8,1,10,2,19,17,4,201,}, + {4,135,19,20,10,1,19,6,10,1,15,1,14,1,8,2,15,8,8,3,10,1,9,1,8,1,15,1,14,6,15,1,8,2,15,1,14,2,15,2,8,4,10,1,8,8,10,1,8,2,10,5,8,13,10,3,8,12,10,1,8,13,10,4,8,8,10,1,8,1,10,1,8,20,10,1,8,5,10,2,8,3,15,4,10,1,19,29,4,9,19,16,10,7,8,2,15,3,14,1,8,4,10,2,8,2,10,8,8,1,10,7,8,4,10,2,8,2,10,8,8,1,10,13,8,3,10,6,8,6,10,4,8,6,10,5,8,6,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,3,10,2,8,7,10,8,8,9,10,1,8,1,15,1,8,11,10,1,8,10,10,1,8,3,10,1,8,1,10,2,8,1,10,8,8,9,10,2,8,4,15,1,8,1,15,1,8,6,14,1,8,3,10,3,19,16,4,201,}, + {4,135,19,19,10,4,19,4,10,1,8,1,15,1,8,3,15,10,9,1,8,3,15,1,14,4,15,2,8,1,15,4,10,2,8,1,10,2,8,1,10,2,8,8,10,6,8,29,10,1,8,6,10,1,8,6,10,3,8,38,10,2,9,1,15,2,14,1,15,2,8,1,10,1,19,32,4,1,19,21,10,6,8,2,15,2,14,2,15,1,8,1,10,4,8,1,15,1,14,1,10,23,8,1,10,4,8,1,10,3,8,1,10,5,8,1,10,6,8,10,14,1,8,5,10,4,8,1,10,1,8,4,10,1,8,2,10,3,8,4,10,3,8,12,10,2,8,3,10,2,8,6,10,1,8,1,10,1,8,2,10,5,8,8,10,5,8,7,10,1,8,1,10,1,8,13,10,4,8,3,10,1,8,2,10,3,8,2,10,1,8,2,10,1,8,1,10,1,8,8,15,1,14,1,15,2,8,1,15,1,8,3,15,1,8,3,10,2,19,17,4,201,}, + {4,135,19,20,10,2,9,1,10,1,19,1,10,1,8,6,15,7,8,1,15,2,8,2,15,2,8,1,15,1,14,4,15,3,14,2,15,1,8,1,10,1,8,1,15,1,8,1,10,1,8,1,10,1,8,5,10,3,8,1,10,4,8,10,10,1,8,16,10,1,8,1,10,3,8,3,10,1,8,8,10,3,8,4,10,1,8,7,10,2,8,5,10,3,8,14,15,1,8,2,9,1,8,2,15,1,14,2,8,1,15,1,8,1,10,2,19,49,10,3,19,1,10,7,8,3,15,1,8,4,10,3,8,1,14,2,10,16,8,1,10,6,8,1,10,4,8,1,10,5,8,2,10,2,8,1,10,5,8,1,10,2,8,9,10,1,8,3,10,6,8,8,10,4,8,3,10,2,8,9,10,4,8,1,10,1,8,3,10,2,14,1,8,4,10,2,8,1,10,1,8,2,10,6,8,7,10,3,8,6,10,7,8,5,10,1,8,1,10,1,8,3,10,8,8,4,10,4,8,13,15,3,8,1,15,1,8,2,14,1,8,2,15,1,8,2,10,4,19,16,4,201,}, + {4,135,19,20,10,2,8,1,10,3,8,3,15,1,8,1,15,2,8,1,15,1,8,2,15,6,8,1,15,1,14,1,15,2,14,9,8,1,10,3,8,1,10,1,8,1,10,1,8,6,10,1,8,3,10,3,8,29,10,3,8,1,10,5,8,2,10,1,8,6,10,3,8,2,10,1,8,1,10,1,8,4,10,2,8,6,10,3,8,22,15,1,8,2,10,3,19,48,10,14,8,4,15,1,8,1,10,3,8,1,15,2,10,12,8,1,10,2,8,2,10,5,8,2,15,2,8,1,10,6,8,2,10,8,8,3,10,1,8,1,10,1,8,4,10,1,8,6,10,6,8,11,10,1,8,2,10,1,8,13,10,1,8,7,10,1,8,5,10,2,8,19,10,1,8,4,10,1,8,2,10,1,8,5,10,1,8,3,10,1,8,1,10,1,8,1,10,4,8,4,10,1,8,6,10,5,8,11,15,1,14,1,8,5,15,1,14,1,15,4,8,2,10,1,8,1,10,1,19,16,4,201,}, + {4,135,19,19,10,1,15,3,10,5,8,1,15,1,8,4,15,2,8,1,15,5,14,1,15,3,14,5,15,1,14,4,15,1,8,1,10,2,8,1,10,4,8,1,10,1,8,8,10,3,8,29,10,8,8,10,10,3,8,2,10,2,8,7,10,1,8,4,10,4,8,23,15,1,8,1,10,4,19,47,10,14,8,1,15,3,8,2,10,2,8,4,10,12,8,1,10,3,8,1,10,5,8,1,15,1,14,1,15,1,8,1,10,6,15,1,8,1,10,2,8,1,10,3,8,1,10,1,8,1,10,1,8,15,10,6,8,3,15,1,8,7,15,1,8,8,15,1,8,1,15,1,8,3,15,1,8,5,15,1,8,6,10,1,8,1,10,4,8,1,10,1,8,7,10,1,8,1,10,1,8,6,10,3,8,1,10,6,8,7,10,1,8,1,10,1,8,1,10,1,8,2,10,4,8,6,10,1,8,3,10,1,8,2,10,3,8,3,10,1,8,6,15,2,8,1,15,3,14,1,15,1,14,1,15,1,14,1,15,2,8,3,10,3,19,14,4,201,}, + {4,135,19,19,10,1,4,1,15,2,8,1,10,1,8,1,10,1,8,1,15,3,8,2,15,2,8,2,15,7,14,5,15,3,14,2,15,2,8,5,10,2,8,12,10,1,8,15,10,1,8,14,10,4,8,1,10,1,8,11,10,4,8,3,10,1,8,8,10,1,8,24,10,5,8,5,10,3,19,47,10,12,8,9,10,1,8,2,10,14,8,1,10,9,8,1,15,3,8,1,10,5,8,1,14,1,8,2,10,4,8,3,10,1,8,8,10,1,8,2,10,1,8,3,10,7,8,1,10,1,8,1,15,1,8,6,14,3,15,1,8,17,15,1,14,1,15,2,8,6,10,1,8,1,10,2,8,3,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,9,10,2,8,1,10,4,8,11,10,1,8,1,10,4,8,6,10,2,8,6,10,3,8,1,10,1,8,1,10,1,8,2,15,1,8,3,15,1,8,1,14,4,8,1,14,1,15,5,8,1,10,4,19,14,4,201,}, + {4,135,19,22,10,1,19,2,10,4,8,1,15,3,8,1,15,2,8,2,15,2,14,1,15,1,14,8,15,2,14,2,15,1,8,7,10,4,8,3,14,1,8,16,10,1,8,2,10,1,8,17,10,3,8,1,10,2,8,2,10,2,8,6,10,3,8,1,10,2,8,11,10,1,8,13,10,1,8,7,10,1,8,2,10,4,8,7,4,1,10,1,19,45,10,12,8,2,15,2,8,7,15,1,8,1,10,13,8,5,10,6,8,1,15,1,8,1,15,1,8,1,10,4,8,1,15,3,8,1,10,5,8,3,10,1,8,2,10,1,8,11,10,9,8,1,15,3,14,8,8,16,14,4,8,10,10,1,8,6,10,3,8,1,10,2,8,1,10,2,8,1,10,2,8,3,10,4,8,1,10,9,8,1,10,6,8,1,10,3,8,1,10,6,8,3,10,4,8,5,10,1,8,1,10,2,8,1,15,1,14,2,8,1,14,1,15,1,14,2,15,2,8,1,15,1,8,5,10,5,19,13,4,201,}, + {4,133,19,27,10,5,8,1,15,1,8,2,9,1,8,1,15,3,8,1,15,1,14,5,15,5,14,2,8,1,15,1,8,2,15,2,8,29,10,2,8,16,10,3,8,3,10,1,8,9,10,3,8,1,10,1,8,10,10,1,8,25,10,1,8,1,10,3,8,9,4,2,19,44,10,10,8,2,10,1,8,10,15,1,8,2,10,5,8,1,10,7,8,5,10,5,8,2,15,1,8,2,10,4,8,2,15,1,8,1,10,5,8,2,10,1,8,5,10,1,8,6,10,2,8,2,10,9,8,1,15,3,14,6,15,1,8,8,15,2,8,4,15,1,8,1,14,4,15,2,8,6,10,1,8,2,10,1,8,4,10,3,8,1,10,1,8,1,10,1,8,2,10,3,8,1,10,1,8,3,10,2,8,2,10,3,8,5,10,1,8,1,10,3,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,6,8,1,10,7,8,2,10,1,8,1,10,1,8,1,10,1,8,7,14,1,8,1,14,2,8,4,15,1,8,5,10,4,19,13,4,201,}, + {4,133,19,27,10,1,9,1,10,3,8,1,15,1,8,1,9,1,8,1,15,6,14,6,15,1,14,4,15,1,8,4,15,2,8,17,10,1,8,4,10,2,8,3,10,4,8,9,10,1,8,6,10,3,8,8,10,1,8,5,10,1,8,14,10,1,8,8,10,2,8,5,10,1,8,10,10,3,8,10,10,2,19,43,10,13,8,14,10,4,8,4,10,3,8,6,10,5,8,1,15,1,14,1,8,2,10,4,8,1,10,1,8,2,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,5,10,2,8,1,10,2,8,1,10,10,8,2,15,3,14,5,15,1,8,3,15,2,8,3,14,1,15,1,8,6,14,5,15,1,8,4,10,2,8,4,10,1,8,5,10,2,8,3,10,2,8,2,10,4,8,3,10,3,8,9,10,2,8,1,10,2,8,1,10,1,8,7,10,4,8,1,10,2,8,2,10,7,8,1,10,2,8,2,10,1,8,1,10,1,8,4,15,1,14,1,15,1,8,2,15,3,8,3,10,6,19,13,4,201,}, + {4,133,19,27,10,1,9,1,10,2,8,1,15,2,8,3,15,2,14,15,15,2,8,3,15,2,8,27,10,2,8,13,10,2,8,4,10,2,8,5,10,1,8,2,10,1,8,5,15,3,8,11,10,1,8,2,10,1,8,6,10,4,8,15,10,2,8,7,10,2,8,2,4,1,19,43,10,11,8,1,10,1,8,6,10,1,8,2,10,1,8,4,10,3,8,4,10,1,8,1,10,3,8,8,10,2,8,1,15,2,8,1,10,7,8,1,10,3,8,3,10,5,8,1,10,1,8,4,10,2,8,1,10,2,8,1,10,1,8,1,10,7,8,3,15,6,14,1,15,2,8,1,9,1,8,1,15,1,8,3,15,1,14,1,8,8,14,3,15,1,8,9,10,1,8,1,10,2,8,4,10,2,8,3,10,2,8,2,10,2,8,6,10,2,8,9,10,1,8,10,10,1,8,1,10,9,8,2,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,7,14,2,8,3,14,2,8,1,10,1,8,4,10,3,19,14,4,201,}, + {4,133,19,27,10,1,4,1,8,3,15,2,8,3,15,3,14,13,15,1,8,5,15,1,8,7,10,1,8,20,10,2,8,11,10,1,8,1,10,1,8,21,15,2,8,1,10,2,8,11,10,1,8,7,10,4,8,21,10,1,8,2,10,1,8,4,10,1,19,42,10,11,8,1,10,3,8,3,10,1,8,3,10,1,8,4,10,2,8,3,10,1,8,3,10,3,8,4,10,2,8,8,10,1,8,3,10,2,8,3,10,2,8,2,10,1,8,1,10,1,8,2,10,3,8,4,10,2,8,1,10,2,8,1,10,1,8,2,10,1,8,2,10,3,8,6,15,2,14,2,15,1,8,1,9,1,8,3,9,1,8,1,15,3,8,2,10,4,8,11,14,3,10,2,8,2,10,1,8,6,10,1,8,1,10,1,8,4,10,1,8,6,10,1,8,1,10,2,8,8,10,1,8,2,10,1,8,1,10,2,8,1,10,5,8,1,10,2,8,1,10,1,8,1,10,5,8,4,10,2,8,2,10,5,8,1,10,1,8,1,10,2,14,2,15,2,8,2,15,1,8,1,10,1,8,3,15,1,8,2,10,2,19,13,4,201,}, + {4,133,19,27,10,1,15,1,9,1,10,1,8,1,15,3,8,4,15,1,14,1,15,1,14,2,15,2,14,5,15,1,14,2,15,1,8,3,15,2,8,9,10,3,8,16,10,1,8,13,10,1,8,12,10,1,8,12,10,1,8,9,10,6,8,9,10,1,8,20,10,1,8,1,10,2,8,3,15,1,10,1,19,43,10,10,8,1,10,3,8,1,10,4,8,1,10,3,8,2,10,1,8,4,10,3,8,1,10,4,8,4,10,2,8,5,10,1,8,3,15,1,8,2,10,2,8,3,10,3,8,1,10,1,8,12,10,1,8,1,10,3,8,2,10,1,8,3,10,3,8,15,10,1,8,1,15,1,14,2,8,4,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,10,10,1,8,3,10,1,8,4,10,2,8,3,10,1,8,6,10,1,8,3,10,1,8,7,10,2,8,5,10,4,8,2,10,3,8,3,10,1,8,1,10,5,8,4,10,9,8,1,10,3,8,1,14,1,8,2,15,1,8,3,15,1,14,1,8,2,14,2,8,2,10,1,19,13,4,201,}, + {4,133,19,27,10,4,8,1,14,1,15,1,14,1,15,1,8,1,15,1,8,1,14,2,15,6,14,1,15,2,14,6,15,6,8,5,10,1,8,1,10,3,8,6,10,1,8,23,10,1,8,40,10,1,8,20,10,1,8,7,10,1,8,2,10,1,8,6,10,3,19,41,10,10,8,1,10,3,8,1,10,5,8,1,10,1,8,3,10,5,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,3,8,2,10,1,8,5,10,1,8,5,10,2,8,3,10,7,8,1,10,1,8,1,10,1,8,4,10,1,8,1,10,2,8,1,10,3,8,2,10,2,8,1,10,3,8,3,15,1,8,2,10,1,9,1,10,2,8,4,10,1,9,1,10,1,14,1,15,1,14,2,8,4,10,2,8,1,10,1,8,2,10,1,8,11,10,1,8,1,10,1,8,1,10,4,8,1,10,1,8,1,10,1,8,2,10,2,8,3,10,1,9,1,8,14,10,2,8,2,10,1,8,2,10,5,8,1,10,4,8,1,10,1,8,1,10,2,8,1,10,2,8,2,10,1,8,3,10,6,8,2,10,1,8,2,10,4,8,1,15,2,8,1,15,2,8,4,15,2,8,1,10,1,19,13,4,201,}, + {4,133,19,29,10,2,8,1,15,2,14,2,15,3,14,3,15,3,8,1,15,1,14,1,15,5,14,5,15,1,8,9,10,1,8,3,10,1,8,4,10,3,8,8,10,1,8,15,10,1,8,13,10,1,8,2,10,1,8,2,15,1,8,1,15,2,8,10,10,5,8,23,10,1,8,16,10,1,4,1,19,41,10,7,8,5,10,2,8,2,10,1,8,7,10,1,8,1,10,9,8,4,10,2,8,9,10,1,8,5,10,1,8,1,10,1,8,2,10,1,8,5,10,1,8,4,10,1,8,1,10,4,8,3,10,6,8,2,10,1,8,6,10,3,8,4,15,1,8,1,10,1,8,2,15,3,14,1,15,2,8,9,10,1,8,8,15,1,8,1,10,1,8,1,10,3,8,8,10,2,8,4,10,1,9,1,8,12,10,3,8,3,10,1,8,1,10,5,8,1,10,7,8,1,10,5,8,5,10,2,8,1,10,2,8,5,10,2,8,9,10,2,8,6,10,1,19,13,4,201,}, + {4,133,19,30,10,2,8,2,15,2,8,1,15,3,14,2,15,2,8,2,15,1,14,2,8,2,15,1,8,4,15,2,8,1,15,1,8,1,15,1,8,2,15,3,8,1,10,2,8,2,10,2,8,13,10,2,8,28,10,1,8,6,15,1,8,2,15,1,8,34,10,1,8,1,10,1,8,11,10,1,8,7,10,1,19,41,10,7,8,2,10,1,8,2,10,2,8,9,10,1,8,2,10,2,8,2,10,6,8,3,10,2,8,11,10,2,8,2,10,1,8,12,10,1,8,2,10,6,8,3,10,1,8,1,10,4,8,6,14,1,8,1,10,9,8,1,10,1,8,4,15,2,8,4,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,8,15,1,14,1,8,5,10,2,8,5,10,1,8,4,9,1,8,1,9,1,10,1,8,10,10,3,8,6,10,4,8,1,10,1,8,2,10,7,8,7,10,1,8,1,10,5,8,5,10,1,8,4,15,2,8,5,10,1,8,1,15,2,8,1,10,3,19,13,4,201,}, + {4,127,19,37,10,1,15,1,8,1,15,1,8,3,15,1,8,3,15,7,8,5,15,1,8,1,15,1,8,3,15,1,14,1,15,2,8,24,10,2,8,12,10,1,8,2,10,1,8,12,10,5,8,1,15,1,8,2,9,1,8,3,10,1,8,8,10,1,8,1,10,2,8,16,10,1,8,2,10,1,8,1,10,1,8,11,14,1,8,2,10,2,8,2,10,3,19,40,10,9,8,2,10,1,8,7,10,2,8,1,10,2,8,1,10,7,8,6,10,2,8,14,10,1,8,1,10,2,8,7,10,1,8,2,10,9,8,4,10,3,8,2,15,1,14,6,8,1,10,11,8,1,15,1,8,7,10,4,8,3,10,1,8,18,10,3,8,2,10,3,8,12,10,1,8,14,10,2,8,1,10,10,8,1,10,2,8,4,10,8,8,5,10,3,8,4,10,3,8,2,10,1,8,5,10,2,19,15,4,199,}, + {4,127,19,36,10,2,14,1,15,1,8,6,9,2,15,3,14,1,15,2,8,1,15,1,8,1,15,2,8,4,15,1,8,2,15,1,14,1,15,1,8,1,15,1,8,2,10,1,8,31,10,1,8,6,10,1,8,1,10,1,8,8,10,6,8,3,9,1,10,2,8,8,10,1,8,6,10,3,8,16,10,1,8,9,15,1,8,2,10,1,15,1,8,3,10,1,8,4,10,2,19,39,10,9,8,1,10,2,8,2,10,2,8,1,15,1,8,2,10,4,8,1,10,1,8,1,10,4,8,1,10,1,8,5,10,1,8,6,10,2,8,3,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,10,10,2,8,2,10,5,8,2,10,1,8,3,10,2,8,1,14,5,8,2,10,10,8,2,15,1,8,7,10,4,8,6,10,1,8,20,10,4,8,9,10,1,8,18,10,1,8,1,10,1,8,2,10,11,8,2,10,3,8,4,10,2,8,6,10,2,8,5,10,1,8,6,10,6,19,14,4,199,}, + {4,125,19,37,10,3,14,2,8,2,15,1,8,4,9,3,15,1,8,8,15,2,8,4,15,5,8,3,10,1,8,33,10,3,8,1,10,1,8,2,10,2,8,3,10,1,8,4,10,1,8,1,10,2,8,1,15,1,8,3,10,2,8,14,10,4,8,15,10,2,8,11,10,1,9,1,8,5,10,1,8,2,15,2,8,1,10,1,19,39,10,7,8,1,10,1,8,2,10,1,8,3,10,1,8,2,10,2,8,2,10,1,8,2,10,5,8,2,10,3,8,5,15,1,8,3,10,3,8,3,10,1,8,1,10,2,8,1,10,1,8,2,10,1,8,4,10,2,8,4,10,5,8,6,10,5,8,1,15,1,14,1,15,1,8,1,10,13,8,1,15,1,8,7,10,5,8,6,10,1,8,1,10,1,8,9,10,1,8,8,10,3,8,3,9,1,8,1,9,1,8,10,15,1,8,4,15,1,8,4,10,3,8,4,10,5,8,1,10,6,8,1,10,3,8,14,10,1,8,4,10,1,8,1,15,2,8,4,10,2,8,1,10,2,19,14,4,199,}, + {4,125,19,35,10,1,19,1,15,1,14,1,10,1,14,1,15,1,8,6,15,2,9,2,15,1,8,3,9,1,8,5,15,2,8,3,15,3,8,54,10,1,8,3,10,2,8,1,15,1,8,4,10,1,8,11,10,4,8,3,10,1,8,16,10,1,8,7,10,1,8,5,15,1,8,6,15,1,14,1,15,1,10,1,4,3,19,36,10,9,8,2,10,1,8,1,15,1,8,1,10,5,8,5,10,10,8,5,14,1,8,2,10,12,8,5,10,1,8,3,10,3,8,1,10,1,8,1,10,3,8,5,10,24,8,1,15,1,8,3,10,1,8,4,10,4,8,14,10,1,8,3,10,1,8,5,10,1,8,3,10,2,8,1,10,1,8,1,10,1,9,1,8,19,10,2,8,2,10,2,8,4,10,3,8,1,10,11,8,4,10,1,8,5,10,1,8,1,10,5,8,8,10,1,8,3,10,1,8,1,10,2,19,15,4,198,}, + {4,123,19,35,10,3,8,1,10,3,8,3,10,1,8,1,10,1,8,2,15,6,8,11,15,1,8,1,15,3,8,4,10,1,8,6,10,1,8,11,14,1,8,30,9,1,8,3,10,1,8,19,10,4,8,2,10,2,8,7,10,1,8,31,10,3,8,1,10,1,4,1,19,35,10,8,8,2,10,1,8,1,10,3,19,4,10,3,8,3,10,9,8,6,14,1,8,3,10,11,8,9,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,5,10,25,8,12,10,1,8,14,10,1,8,9,10,3,8,1,10,1,8,15,10,1,8,4,15,1,8,5,10,1,8,9,10,9,8,2,10,4,8,7,10,1,8,1,10,1,8,1,10,1,8,1,10,3,8,2,10,5,15,1,8,3,10,2,8,2,10,3,19,15,4,197,}, + {4,123,19,32,10,5,8,2,10,3,8,3,10,1,8,1,10,1,8,1,15,3,8,1,15,4,8,8,15,2,8,1,15,1,8,2,15,1,8,9,10,1,8,1,10,1,8,30,15,1,8,8,15,1,8,4,15,2,8,4,10,1,8,9,10,3,8,3,10,1,8,5,10,2,8,38,10,4,8,2,10,1,19,37,10,8,8,1,10,2,19,7,10,15,8,10,10,4,19,1,10,6,8,3,10,1,8,1,10,1,8,4,10,1,8,2,10,1,8,8,10,7,4,1,10,1,4,1,10,13,8,10,10,1,8,10,10,1,8,4,10,4,8,5,10,1,8,1,10,5,8,1,10,2,8,18,15,3,8,16,10,1,8,4,10,3,8,2,10,3,8,4,10,1,8,4,10,1,8,2,10,1,8,1,10,1,8,2,10,4,8,5,10,7,19,15,4,197,}, + {4,121,19,34,10,3,8,2,10,1,8,5,15,1,8,4,15,4,8,2,15,3,8,46,10,2,8,8,15,1,8,8,15,1,14,1,15,1,8,2,15,2,14,1,8,10,10,1,8,3,10,2,8,38,10,4,8,3,10,1,8,2,10,1,8,1,10,5,8,2,10,1,19,37,10,6,8,2,10,1,19,11,10,13,8,4,10,2,8,2,10,3,19,4,10,4,8,7,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,4,10,5,19,3,4,1,10,16,8,8,10,2,8,11,10,1,8,3,10,2,8,1,10,2,8,3,10,2,8,2,10,1,8,3,10,1,8,1,10,1,8,15,10,1,8,15,10,1,8,6,10,1,8,4,10,2,8,4,10,2,8,1,10,1,8,6,10,2,8,1,10,1,8,2,10,1,8,2,10,2,8,4,10,1,8,2,10,6,4,1,19,15,4,197,}, + {4,121,19,35,10,1,8,1,14,1,8,1,10,1,8,4,15,1,14,1,8,1,15,5,8,3,15,5,8,9,15,2,8,4,10,1,8,29,10,3,8,5,15,3,8,4,15,2,14,1,15,1,14,2,8,2,15,1,8,1,15,2,8,1,15,1,8,6,10,4,14,1,8,2,10,1,8,10,10,2,8,21,10,3,8,4,10,7,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,4,1,19,38,10,8,19,13,10,3,8,1,10,8,8,1,10,1,8,1,10,2,8,3,10,2,19,7,10,2,8,6,10,4,8,10,10,4,19,4,4,3,19,1,4,1,19,3,10,9,8,4,10,3,8,5,10,1,8,8,10,3,8,5,10,2,8,2,10,3,8,1,10,2,8,2,10,1,8,1,10,2,8,2,10,1,8,7,15,2,8,10,15,1,8,2,10,1,8,4,10,2,8,1,9,1,8,4,10,4,8,4,10,4,8,2,10,2,8,1,10,1,8,2,10,2,8,1,10,4,8,2,10,2,8,1,10,1,8,1,10,1,8,3,10,2,8,2,10,3,19,15,4,197,}, + {4,119,19,38,10,1,8,1,14,2,15,1,8,1,15,2,8,2,15,1,8,1,10,1,8,7,15,2,8,3,15,2,8,5,15,2,8,16,10,1,8,21,15,1,8,7,15,11,8,1,14,1,15,2,8,1,15,1,8,1,15,1,8,4,10,2,8,2,10,1,8,3,10,2,8,9,10,2,8,4,10,1,8,2,10,1,8,1,10,1,8,15,10,1,8,3,10,2,8,3,10,1,8,3,10,1,8,1,10,1,8,2,10,1,8,2,19,39,10,7,19,14,10,4,8,2,10,1,8,1,10,3,8,2,10,2,8,5,4,2,19,7,10,2,8,5,10,2,8,10,10,4,19,15,10,7,8,10,10,2,8,6,10,2,8,1,10,2,8,5,10,1,8,1,10,4,8,1,10,1,8,1,10,3,8,1,10,2,8,25,15,1,8,3,10,1,8,4,15,2,8,1,10,1,8,2,10,1,9,1,10,3,8,1,10,8,8,4,10,2,8,2,10,2,8,1,10,2,8,4,10,2,8,8,10,5,19,19,4,193,}, + {4,119,19,36,10,3,8,1,15,1,14,2,8,4,10,1,8,2,10,1,8,1,15,2,8,6,15,1,8,1,15,2,8,1,15,1,8,4,15,3,8,35,10,1,8,9,15,9,8,8,15,2,8,6,10,1,8,6,10,1,8,4,10,2,8,3,10,2,8,4,10,4,8,2,10,1,8,21,10,1,8,1,10,1,8,1,10,1,8,1,10,5,8,2,10,1,19,39,10,7,19,16,10,4,8,3,10,7,8,2,4,2,10,1,19,9,10,2,8,4,10,3,8,6,10,5,19,18,10,7,8,6,10,2,8,3,10,2,8,1,10,1,8,5,10,3,8,1,10,1,8,2,10,1,8,2,10,6,8,1,10,1,8,2,10,2,8,25,15,1,8,3,10,4,8,2,15,1,8,6,9,1,10,1,8,3,10,7,8,1,10,1,8,14,10,1,8,4,10,1,8,1,10,1,8,4,10,5,19,18,4,193,}, + {4,117,19,36,10,1,19,1,10,1,8,2,15,2,8,1,14,1,8,2,15,1,8,5,10,1,8,1,15,1,8,7,15,4,14,1,8,3,15,4,8,2,15,2,8,2,10,1,8,7,10,1,8,4,10,1,8,14,10,3,8,7,15,1,8,1,15,1,8,11,10,1,8,24,10,1,8,3,10,2,8,5,10,1,8,2,10,2,8,6,10,2,8,17,10,1,8,1,10,6,8,2,4,1,19,40,10,6,19,17,10,4,8,1,10,3,8,1,10,5,8,2,10,1,19,10,10,2,4,2,8,1,4,1,10,2,8,6,10,3,19,22,10,6,8,6,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,3,10,1,8,3,10,1,8,1,10,1,8,3,10,3,8,2,10,1,8,5,10,3,8,12,15,1,14,1,15,1,8,9,15,1,8,9,15,1,8,9,10,3,8,3,10,2,8,1,10,4,8,7,10,2,8,11,10,2,8,2,10,5,19,18,4,193,}, + {4,117,19,34,10,5,15,1,14,1,15,1,8,5,15,2,8,5,15,5,8,2,9,1,8,2,15,1,14,1,15,2,8,1,15,2,14,2,15,2,8,1,15,1,14,1,15,1,8,1,10,4,8,2,10,1,8,2,10,1,8,19,10,2,8,18,10,3,8,2,10,1,8,27,10,1,8,10,10,3,8,4,10,3,8,12,10,1,8,1,10,1,8,3,10,3,8,1,10,1,8,3,4,1,19,41,10,5,19,19,10,12,8,2,10,2,19,10,10,7,4,1,10,1,4,2,8,1,4,1,10,2,19,24,10,5,8,7,10,1,8,1,10,2,8,1,10,1,8,2,10,3,8,1,10,1,8,4,10,1,8,1,10,2,8,2,10,4,8,3,10,1,8,3,10,2,8,10,15,2,8,1,15,1,8,16,15,2,8,1,15,1,8,1,15,1,8,6,15,1,8,1,10,4,8,1,10,5,8,1,10,1,8,1,10,2,8,3,10,1,8,2,10,1,8,1,10,1,8,12,15,2,10,4,19,18,4,193,}, + {4,115,19,32,10,1,9,1,8,2,10,4,8,6,15,1,8,7,15,4,10,1,8,1,15,2,8,4,15,1,14,1,15,1,8,1,14,6,15,2,8,1,15,1,8,1,10,8,8,2,10,1,8,2,10,1,8,15,10,1,8,9,10,1,8,10,10,1,8,2,15,1,8,7,10,1,8,32,10,1,8,7,10,2,8,10,10,1,8,2,10,2,8,1,10,1,8,2,10,4,8,3,10,1,19,41,10,5,19,20,10,4,8,1,10,5,8,4,10,1,19,17,10,6,19,26,10,6,8,10,10,1,8,1,10,1,8,1,10,4,8,7,10,2,8,1,10,4,8,1,10,1,8,7,10,1,8,1,10,1,8,4,10,1,8,23,15,3,8,9,10,1,8,2,10,10,8,2,10,2,8,1,10,3,8,5,10,2,8,1,10,1,8,3,10,1,8,1,10,2,8,1,14,2,8,1,10,3,19,18,4,193,}, + {4,115,19,31,10,2,8,1,9,1,15,1,8,2,9,1,8,2,10,1,8,10,15,1,8,1,15,2,14,1,15,1,9,1,8,4,15,2,8,2,14,6,15,1,14,1,15,1,14,2,15,2,8,1,9,1,8,1,10,1,8,2,10,1,8,1,10,1,8,4,10,2,8,36,10,1,8,51,10,1,8,11,10,1,8,3,10,3,8,2,10,3,8,1,10,1,8,1,4,1,10,1,19,42,10,4,19,20,10,11,8,2,10,2,19,49,10,6,8,1,10,1,8,8,10,1,8,4,10,2,8,5,10,1,8,1,10,4,8,3,10,2,8,1,10,1,8,4,10,3,8,5,10,1,8,1,10,1,8,19,15,1,8,3,15,1,8,5,10,2,8,3,10,1,8,1,10,9,8,4,10,2,8,1,10,3,8,6,10,2,8,4,10,2,8,4,15,1,8,1,10,4,19,21,4,189,}, + {4,113,19,32,10,2,8,1,9,1,8,4,15,1,8,1,9,1,10,1,8,1,15,1,8,7,15,1,8,1,15,2,14,2,15,7,14,1,15,2,14,5,15,1,14,1,15,6,8,8,10,2,8,2,10,2,8,11,10,1,8,22,10,1,8,1,10,1,8,2,15,1,8,4,15,2,8,1,15,5,8,17,19,3,8,29,10,1,8,1,10,1,8,1,10,3,8,7,10,3,19,2,4,1,19,40,10,3,19,22,10,13,19,49,10,5,8,2,10,1,8,4,10,1,8,1,10,2,8,4,10,1,8,8,10,5,8,2,10,1,8,4,10,1,8,2,10,4,8,7,10,1,8,7,15,1,8,9,15,2,8,11,10,1,8,1,10,2,8,2,10,7,8,6,10,6,8,1,10,1,8,4,10,2,8,9,10,1,8,1,10,6,19,20,4,189,}, + {4,114,19,29,10,2,9,4,8,3,10,1,15,1,8,5,15,3,8,7,14,2,15,2,8,2,15,1,14,2,15,3,14,2,15,1,14,6,15,1,8,1,15,3,8,2,15,1,8,2,15,2,8,1,10,6,8,39,15,1,8,1,15,10,8,3,15,2,8,6,10,1,8,1,10,1,8,3,19,4,8,7,10,1,8,1,10,1,8,13,10,2,8,6,10,1,8,2,10,2,8,8,10,1,19,3,4,1,19,40,10,3,19,22,10,9,8,1,10,3,19,49,10,4,8,3,10,4,8,1,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,3,8,1,10,5,8,2,14,1,8,1,10,2,8,2,10,2,8,11,15,1,14,1,8,3,15,2,8,4,15,1,8,2,15,1,8,6,10,3,8,3,10,2,8,2,10,2,8,1,10,6,8,10,10,5,8,3,10,2,8,11,10,1,8,1,10,6,19,20,4,188,}, + {4,119,19,24,10,1,8,9,15,1,8,4,15,2,8,1,15,1,8,1,15,2,8,4,15,5,8,1,15,6,8,3,15,3,14,4,15,1,8,1,15,1,8,2,10,2,8,2,15,1,14,1,15,2,8,13,10,1,8,3,10,1,8,7,10,2,8,1,10,1,8,1,10,1,8,2,10,1,8,8,15,7,8,1,10,1,8,1,14,1,8,4,15,2,8,8,10,1,8,5,19,4,8,8,19,5,8,1,14,2,10,2,8,11,10,2,8,2,10,4,8,3,15,1,8,1,4,1,10,1,19,4,4,1,19,41,10,2,19,24,10,10,19,50,10,3,8,7,10,3,8,1,10,2,8,1,10,3,8,9,10,7,8,1,10,2,8,2,10,4,8,2,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,4,15,3,14,1,15,1,8,1,15,4,8,1,15,1,8,5,15,1,8,5,15,1,8,8,10,1,8,1,10,1,8,1,10,7,8,3,10,6,8,2,10,1,8,6,15,1,8,1,10,1,8,2,10,2,8,2,10,7,19,20,4,3,19,9,4,175,}, + {4,119,19,24,10,1,15,2,8,2,15,1,8,3,15,2,8,1,15,1,14,1,15,1,8,1,15,3,8,7,15,1,8,2,15,2,8,2,15,4,8,2,15,2,8,1,10,1,8,1,15,1,14,3,15,2,8,1,10,4,8,2,15,2,8,18,10,3,8,6,10,2,8,1,10,1,8,1,10,3,8,11,15,2,14,1,15,1,8,2,10,3,8,12,10,1,8,1,10,1,8,1,10,1,8,3,19,5,8,6,19,6,8,1,14,1,8,15,10,1,8,2,10,1,8,3,15,2,8,1,4,2,10,1,19,48,10,2,19,23,10,10,19,50,10,1,8,5,10,3,8,2,10,1,8,3,10,2,8,1,10,1,8,2,10,1,8,5,15,1,14,1,15,1,8,1,10,3,8,1,10,1,8,1,10,1,8,2,10,4,8,1,10,4,8,3,10,1,8,8,7,2,15,3,8,1,15,2,8,3,15,1,8,1,15,2,8,2,15,1,8,4,14,1,15,1,8,11,10,9,8,7,10,1,8,1,10,1,8,8,15,1,8,7,10,9,19,19,4,3,19,8,4,175,}, + {4,119,19,21,10,4,15,1,8,2,15,1,8,3,15,5,14,1,15,1,8,2,15,3,8,3,10,1,8,2,15,2,8,2,15,1,8,1,15,1,8,1,15,3,8,4,10,3,8,1,15,2,14,3,8,1,10,4,8,16,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,2,10,5,8,12,15,4,8,1,10,3,8,14,10,1,8,1,10,1,8,2,4,1,19,18,8,8,10,1,8,14,4,3,19,51,10,2,19,25,10,8,19,50,10,1,8,1,15,1,8,4,10,1,8,3,10,1,8,2,10,2,8,1,10,1,8,4,10,1,8,4,14,3,8,1,10,2,8,1,10,5,8,1,10,4,8,2,10,4,8,5,10,1,8,1,10,1,8,1,15,2,14,1,15,1,14,2,15,1,8,4,15,2,8,1,15,2,8,2,15,1,8,2,14,1,8,1,14,1,8,10,10,10,8,2,10,1,8,10,15,1,8,6,14,2,8,5,10,1,8,1,10,1,8,1,10,3,8,1,15,1,10,2,19,18,4,1,19,12,4,173,}, + {4,119,19,20,10,2,8,3,15,2,8,3,15,1,8,3,15,9,8,5,10,2,8,4,15,2,8,7,10,5,8,2,15,4,8,1,10,4,8,1,10,1,8,2,10,2,8,6,10,1,8,10,10,3,8,8,10,7,8,10,15,1,8,17,10,1,8,1,10,1,8,2,10,1,8,4,19,17,8,10,10,1,8,5,10,1,8,6,4,1,10,1,19,53,10,2,19,27,10,6,19,50,10,1,8,7,10,1,8,5,10,2,8,9,15,1,8,1,14,2,15,1,8,3,10,7,8,2,10,2,8,1,10,6,8,3,10,1,8,2,10,1,8,3,14,4,8,5,15,1,14,1,8,1,15,2,8,2,14,1,8,9,10,1,8,4,10,11,8,1,10,1,8,10,15,1,8,4,15,1,14,1,8,1,15,2,8,4,10,2,8,1,10,6,8,1,15,1,10,2,19,30,4,173,}, + {4,119,19,21,10,2,8,2,15,1,8,4,15,1,8,8,15,2,8,22,10,5,8,2,15,1,14,2,15,1,8,1,10,4,8,3,10,3,8,16,10,4,8,8,10,5,8,31,10,1,8,7,4,1,19,16,8,22,4,1,10,1,19,6,4,1,19,50,10,1,19,28,10,3,19,49,10,5,8,3,10,1,8,3,10,7,8,3,10,1,8,2,10,1,8,1,14,1,8,7,10,11,8,2,10,4,8,3,10,1,8,1,10,2,8,1,10,1,8,2,14,4,15,1,8,2,9,2,8,1,15,2,14,1,15,1,8,2,14,1,15,1,8,1,15,3,8,3,9,1,10,16,8,16,15,1,8,1,15,2,8,6,10,2,8,1,10,2,8,1,10,6,19,33,4,171,}, + {4,119,19,22,10,1,8,5,15,2,8,11,15,1,10,1,8,11,10,1,8,3,10,2,8,1,10,2,8,2,10,3,8,2,15,3,8,2,10,4,15,3,8,1,10,1,8,18,10,4,8,7,10,5,8,6,15,3,8,2,10,1,8,17,10,1,8,3,10,1,8,2,10,1,8,3,19,16,8,3,10,1,8,8,10,1,8,2,14,3,8,2,15,1,8,1,10,1,4,1,19,6,4,1,19,4,10,1,19,1,10,2,4,1,10,1,19,40,10,1,19,29,10,1,19,49,10,2,8,1,10,3,8,7,10,11,8,2,10,1,8,7,10,1,8,1,10,4,8,1,10,4,8,1,10,1,8,1,10,3,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,4,15,1,14,5,15,1,8,1,9,1,8,4,15,2,8,3,15,1,8,2,14,1,15,1,8,3,9,1,10,13,8,2,10,4,8,9,10,1,8,4,10,1,8,7,10,3,8,1,10,1,8,1,10,3,8,1,10,2,19,33,4,171,}, + {4,119,19,21,10,2,8,3,9,1,8,10,15,1,8,16,10,1,8,3,10,1,8,2,10,1,8,9,15,2,8,1,9,1,10,3,8,1,15,1,14,1,15,2,8,19,10,1,8,10,10,4,8,6,15,1,8,21,10,2,8,1,10,1,8,1,10,1,8,7,19,15,10,1,8,12,10,2,8,1,15,1,14,2,8,2,14,1,10,2,19,2,4,1,19,2,4,4,19,3,10,2,8,1,15,2,10,4,19,117,10,2,8,10,10,3,8,1,10,6,8,1,10,2,8,1,10,1,9,1,10,1,8,1,15,1,14,1,8,5,10,8,8,1,10,1,8,3,10,1,8,2,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,5,14,3,8,5,10,1,9,1,8,8,15,1,8,5,10,1,8,2,10,10,8,1,10,3,8,1,10,1,8,2,10,1,8,8,10,4,8,7,10,2,8,3,10,4,8,2,10,2,19,34,4,169,}, + {4,119,19,22,10,2,8,1,15,1,8,12,15,2,8,1,15,1,8,6,10,2,8,9,10,2,8,5,10,1,8,3,15,3,8,2,10,3,8,1,14,3,8,19,10,2,8,10,10,3,8,9,10,3,8,1,10,1,8,16,10,2,8,1,10,1,8,1,10,1,8,6,19,15,8,3,14,1,8,8,10,1,8,5,10,1,8,2,15,1,10,4,19,2,10,5,4,1,10,1,15,1,14,1,15,4,8,2,10,2,19,117,10,1,8,1,15,1,8,7,10,1,8,2,10,1,8,5,10,5,8,3,10,1,9,1,15,1,14,3,8,5,10,4,8,1,10,1,8,2,10,2,8,12,10,1,8,5,15,1,14,2,15,1,8,3,15,2,8,1,10,1,8,8,15,2,8,1,15,2,8,1,10,1,8,1,15,1,10,9,8,1,10,2,8,3,10,1,8,2,10,1,8,2,10,2,8,6,10,5,8,3,10,1,8,1,10,2,8,2,10,2,8,3,10,3,19,34,4,169,}, + {4,119,19,24,10,2,8,1,15,2,8,6,15,2,8,1,15,3,8,2,10,1,8,2,10,1,8,2,10,1,8,4,10,1,8,5,10,1,8,2,10,1,8,7,14,1,15,1,8,2,10,3,8,1,10,1,8,20,10,2,8,10,10,1,8,4,10,1,8,4,10,5,8,12,10,2,8,1,10,1,8,4,10,1,8,7,10,1,8,3,19,13,8,5,10,1,8,16,10,7,8,3,10,1,8,3,15,1,14,2,8,6,10,1,19,116,10,1,8,7,10,1,8,4,10,1,8,4,10,1,8,1,10,6,8,1,15,1,8,2,14,2,15,2,8,5,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,6,10,3,8,1,10,1,8,1,10,3,8,9,15,5,8,13,10,2,8,1,10,10,8,2,10,4,8,7,10,3,8,3,10,1,8,3,10,1,8,3,10,4,8,1,10,3,8,3,14,1,8,1,10,3,19,31,4,170,}, + {4,119,19,26,10,3,8,6,15,1,8,1,15,3,8,2,14,1,8,1,10,1,8,2,10,1,8,2,10,3,8,4,10,5,8,5,10,1,8,3,15,4,8,1,10,2,8,9,10,2,8,11,10,1,8,16,10,2,8,22,10,1,8,2,14,1,8,3,10,1,8,1,10,1,8,6,15,1,8,1,19,13,8,5,10,1,8,16,10,4,8,1,10,4,8,1,10,1,8,2,10,1,8,1,15,1,8,7,10,1,19,116,10,1,15,1,8,1,10,2,8,3,10,1,8,12,10,5,8,1,15,1,8,2,15,2,8,6,10,3,8,3,10,1,8,4,10,4,8,1,10,5,8,15,15,4,8,13,10,2,8,1,10,8,8,1,10,5,8,10,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,4,10,4,8,7,14,1,15,1,8,1,10,3,19,31,4,169,}, + {4,119,19,27,10,2,8,2,10,2,15,4,8,1,10,3,15,1,8,1,10,4,8,1,10,5,8,3,10,3,8,1,10,2,8,4,10,1,8,4,15,2,14,1,8,2,10,3,8,1,10,2,8,4,10,3,8,2,10,2,8,6,10,1,8,2,10,1,8,1,10,1,8,2,10,1,8,9,10,1,8,21,10,1,8,9,10,1,8,1,10,1,8,1,10,1,8,5,19,13,8,4,10,1,8,16,15,1,8,2,14,2,8,3,10,1,8,1,10,2,8,2,10,1,8,9,10,1,19,116,10,1,8,1,10,1,8,1,10,7,8,9,10,6,8,4,15,1,8,7,10,3,8,2,10,1,8,5,10,3,8,3,10,4,8,6,10,1,8,11,15,1,8,5,10,1,8,10,10,5,8,3,10,3,8,19,10,5,8,3,10,1,8,4,15,2,8,5,15,1,8,1,10,1,8,1,10,4,19,32,4,165,}, + {4,119,19,28,10,1,4,1,10,1,19,1,10,2,8,1,10,3,19,2,10,9,19,2,10,8,8,1,10,2,8,2,10,1,8,3,15,3,14,1,15,2,10,5,14,1,10,2,8,3,10,4,8,1,10,4,8,6,10,1,8,6,10,1,8,9,10,2,8,21,10,1,8,4,10,2,8,3,10,1,8,6,15,1,8,1,19,12,8,5,10,1,8,10,10,1,8,4,15,1,14,2,8,1,14,2,8,1,10,1,8,3,10,2,8,2,10,1,8,9,10,1,19,117,10,2,8,3,10,4,8,10,10,6,8,12,10,2,8,5,10,2,8,7,10,1,8,4,10,1,8,1,10,1,8,4,10,1,8,10,15,2,8,2,9,1,10,1,9,1,10,1,8,10,10,3,8,4,10,4,8,11,14,1,8,3,15,1,8,2,10,1,8,1,10,2,8,7,10,1,8,4,15,2,8,2,15,1,8,1,10,3,8,1,15,1,10,3,19,30,4,165,}, + {4,119,19,34,10,1,19,1,10,2,19,2,4,1,10,1,19,3,10,2,4,1,19,3,4,3,19,3,10,2,8,5,10,1,8,3,15,5,9,1,10,5,14,1,10,3,8,2,10,2,8,3,10,4,8,1,10,2,8,2,10,1,8,3,10,1,8,5,15,1,8,29,10,1,8,2,10,1,8,1,10,2,8,2,10,1,8,9,19,15,8,6,10,1,8,11,15,1,14,5,8,3,10,1,15,1,8,15,10,2,19,116,10,2,8,3,10,3,8,3,10,1,8,5,10,6,8,2,10,1,8,1,10,2,8,14,10,4,8,2,10,2,8,2,10,1,8,4,10,4,8,2,10,2,8,5,14,2,15,1,8,5,9,4,10,1,8,3,15,1,8,2,10,2,8,3,10,3,8,3,10,7,8,3,10,2,8,6,14,2,8,1,10,1,8,7,10,1,8,4,10,1,8,1,15,1,14,1,8,3,14,3,15,3,8,2,10,3,19,32,4,163,}, + {4,119,19,40,4,2,19,4,10,1,19,4,4,2,19,4,10,2,8,12,15,1,8,1,10,5,8,1,15,1,8,2,10,2,8,1,10,10,8,7,10,1,8,7,15,1,8,24,10,2,8,6,10,1,8,1,10,2,8,2,10,1,8,1,10,1,8,5,19,17,8,2,10,1,8,14,14,5,8,5,15,1,8,5,15,1,8,4,10,1,8,5,10,1,19,116,10,2,8,2,10,3,8,9,10,10,8,1,10,1,8,6,15,1,8,8,10,3,8,4,10,1,8,2,10,1,8,5,10,3,8,3,10,3,8,2,15,1,14,3,15,1,8,7,10,1,8,6,10,2,8,4,10,2,8,1,10,1,8,6,10,3,8,3,10,1,8,7,15,1,14,1,8,4,10,1,8,11,14,3,8,2,14,2,15,1,8,1,15,1,14,1,15,1,8,3,10,3,19,30,4,163,}, + {4,119,19,1,4,1,19,56,10,1,8,6,10,1,8,3,10,3,8,2,10,5,8,4,10,12,8,3,10,1,8,14,10,2,8,2,10,1,8,16,10,2,8,9,10,1,8,2,10,1,8,1,10,1,8,5,19,18,8,13,10,1,8,1,15,2,14,2,15,2,8,1,14,1,15,1,8,2,15,1,8,5,14,4,8,3,10,1,8,1,10,1,8,2,10,1,4,1,19,101,4,1,19,12,10,9,8,3,10,2,8,3,10,2,8,2,10,1,8,2,10,5,8,3,15,1,14,1,15,1,14,2,8,5,10,4,8,4,10,4,8,1,10,3,8,1,10,2,8,5,10,3,8,2,15,1,14,1,15,2,14,1,8,4,15,2,8,1,10,1,8,5,10,2,8,2,10,1,8,1,10,4,8,1,10,2,8,6,10,1,8,4,10,1,8,7,14,1,8,2,10,3,8,8,15,1,8,1,15,2,14,2,15,1,8,1,15,1,14,2,15,1,14,3,8,2,10,6,19,30,4,161,}, + {4,116,19,1,4,4,19,40,4,1,19,2,10,1,19,10,4,2,10,1,8,4,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,1,15,1,8,1,10,3,8,1,10,1,8,1,10,3,8,1,10,1,8,8,10,6,8,13,10,2,8,4,10,1,8,13,10,1,8,8,10,1,8,2,10,1,8,1,10,1,8,2,10,1,8,5,19,18,8,2,10,1,8,13,14,2,15,1,8,2,15,1,14,2,10,1,8,3,15,1,8,1,15,1,8,1,14,3,8,6,10,1,8,2,15,1,8,1,10,1,19,98,4,5,19,10,10,2,8,2,10,6,8,2,10,3,8,2,10,1,8,1,15,2,8,3,10,6,8,2,14,5,8,4,10,5,8,4,10,1,8,1,10,4,8,2,10,2,8,1,10,1,8,1,10,1,8,8,15,1,14,1,15,2,8,11,10,1,8,1,10,2,8,3,10,1,8,1,10,5,8,3,10,5,8,6,10,1,8,7,10,1,8,1,10,1,8,7,15,1,14,2,15,2,14,5,8,1,15,1,14,2,17,1,14,2,10,2,8,1,10,8,19,28,4,160,}, + {4,79,19,2,4,8,19,4,4,21,19,47,10,1,19,13,4,1,15,1,8,6,10,2,8,1,10,1,8,2,10,2,8,3,10,2,8,1,15,1,8,1,10,1,8,1,10,1,8,1,10,2,8,2,10,1,8,2,10,1,8,2,10,5,8,2,10,3,8,3,10,1,8,3,10,2,8,30,10,1,8,8,10,1,8,1,10,1,19,17,8,7,10,1,8,2,10,1,8,3,15,1,14,1,15,4,8,1,10,1,8,10,15,4,8,9,10,1,8,2,4,1,19,26,4,3,19,66,4,8,19,10,10,8,8,1,10,4,8,3,10,2,15,3,10,1,8,3,10,5,8,2,15,1,14,2,8,1,15,2,8,1,10,5,8,3,15,1,8,2,10,1,8,1,10,3,8,1,10,3,8,2,10,1,8,2,10,2,8,6,15,1,14,2,15,1,8,3,14,2,8,1,9,1,8,3,15,1,8,4,10,3,8,2,10,4,8,2,10,5,8,2,10,3,8,2,10,3,8,6,10,1,8,1,15,1,8,2,10,1,8,7,15,1,14,2,15,3,14,4,8,3,10,15,19,26,4,159,}, + {4,80,19,1,4,8,19,3,4,22,19,61,8,1,15,1,8,6,10,3,8,5,15,2,10,4,8,3,10,1,8,2,10,2,8,11,10,4,8,1,10,1,8,51,19,20,8,3,10,1,8,2,10,1,8,1,10,1,8,4,15,1,8,2,14,1,8,13,15,3,8,2,10,4,8,8,10,1,19,25,4,3,19,66,4,7,19,11,10,3,8,1,10,9,8,3,10,2,15,2,8,6,10,3,8,4,14,3,8,2,10,3,8,10,10,2,8,3,10,1,8,1,10,2,8,1,10,2,8,1,10,1,8,8,14,2,8,4,14,1,8,13,10,2,8,2,10,1,8,1,10,1,8,3,10,8,8,4,10,1,8,8,10,1,8,2,10,1,8,3,10,1,8,4,15,1,14,2,15,1,8,1,15,1,14,3,8,2,10,21,19,22,4,159,}, + {4,80,19,1,4,8,19,2,4,26,19,58,10,1,15,1,8,6,10,4,8,1,15,2,8,1,15,1,8,1,10,2,8,1,10,1,8,6,10,3,8,1,10,1,8,8,10,1,8,3,10,1,8,27,10,3,8,21,19,17,10,1,8,1,19,2,8,5,10,1,8,2,10,1,8,21,15,3,8,1,10,2,19,2,10,2,8,7,10,1,19,25,4,3,19,8,4,4,19,54,4,7,19,10,10,10,8,1,10,3,8,4,10,1,8,1,15,1,8,1,15,1,8,4,10,2,8,3,10,1,8,1,14,3,8,2,10,2,8,1,15,2,8,1,14,1,8,6,10,1,8,4,10,1,8,1,10,2,8,1,10,2,8,1,10,3,8,1,10,1,8,1,10,1,8,2,15,2,8,19,10,1,8,2,10,3,8,1,10,1,8,1,10,3,8,1,10,9,8,5,15,1,8,5,10,1,8,2,10,1,8,4,14,2,15,5,14,2,15,1,8,1,10,1,8,1,10,4,8,1,10,16,19,23,4,157,}, + {4,80,19,5,4,4,19,3,4,25,19,56,10,3,8,8,10,3,8,1,15,2,8,2,10,1,8,1,10,2,8,2,10,4,8,4,10,1,8,19,10,1,8,4,4,1,8,15,10,4,8,20,10,1,19,17,10,1,8,5,10,1,8,13,10,2,8,13,15,2,8,1,10,3,19,2,10,1,8,7,10,1,19,25,4,3,19,8,4,4,19,54,4,6,19,11,10,2,8,2,10,9,8,1,15,1,8,12,10,1,15,1,8,3,10,1,8,1,14,3,15,1,8,3,15,2,8,7,10,2,8,1,10,1,8,4,10,2,8,3,10,2,8,1,10,4,8,2,10,2,8,14,15,6,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,2,10,2,8,1,10,3,8,1,10,2,8,3,10,1,8,3,15,3,8,12,14,2,8,2,15,3,8,5,10,4,8,2,10,17,19,22,4,157,}, + {4,79,19,18,4,25,19,50,10,2,8,12,10,1,8,1,15,2,8,1,9,1,8,2,10,9,8,4,10,1,8,13,10,1,8,25,10,3,8,21,19,19,8,5,10,1,8,2,10,1,8,28,10,3,19,2,10,1,8,7,10,1,19,25,4,15,19,54,4,6,19,11,10,2,8,1,10,11,8,3,15,2,10,2,8,2,14,1,8,2,15,1,8,1,15,3,8,1,10,1,8,4,15,1,8,8,7,1,8,2,10,3,8,2,10,2,8,2,10,2,8,1,10,1,8,6,10,2,8,1,10,3,8,3,10,3,8,8,15,1,14,1,15,1,8,1,15,1,8,8,10,2,8,2,10,2,8,1,10,1,8,13,15,1,14,1,15,1,8,6,10,1,8,2,15,1,8,6,15,1,8,13,10,19,19,21,4,155,}, + {4,73,19,24,4,25,19,50,10,1,8,1,15,1,8,1,10,1,8,3,10,1,8,4,15,1,8,2,15,3,10,13,8,4,10,1,8,63,19,16,8,1,10,1,8,5,10,1,8,33,10,2,19,1,10,3,8,5,10,1,19,25,4,15,19,54,4,6,19,11,10,4,8,6,10,7,8,1,15,1,8,3,15,1,8,1,14,2,8,1,15,1,8,2,15,1,8,1,10,1,8,2,15,1,14,1,8,8,14,2,8,1,10,2,8,2,10,1,8,3,10,1,8,2,10,2,8,1,10,3,8,1,10,1,8,1,10,3,8,1,10,4,8,1,10,5,8,14,10,1,8,8,10,1,8,3,10,1,8,1,10,2,8,6,10,2,8,2,14,1,15,3,8,7,15,1,8,3,15,2,8,8,10,1,8,1,10,1,8,1,10,24,19,19,4,155,}, + {4,65,19,48,4,9,19,50,10,1,8,6,10,6,15,1,8,1,15,1,8,1,15,2,10,14,8,3,10,1,8,37,10,2,8,25,19,15,10,1,8,2,10,2,8,9,14,2,8,25,10,1,4,1,19,4,8,5,10,1,19,25,4,13,19,56,4,6,19,11,10,5,8,1,10,3,8,4,10,4,8,3,15,2,8,2,14,2,8,1,15,1,8,2,14,1,15,1,8,3,14,2,8,1,14,2,8,4,14,3,8,1,10,1,8,1,14,1,8,16,10,3,8,1,10,3,8,2,10,1,8,1,10,3,8,13,10,1,8,2,10,1,8,11,10,3,8,1,10,1,8,4,10,1,8,1,10,1,8,4,15,2,8,10,15,1,8,1,15,1,8,6,10,2,8,1,10,14,8,1,10,13,19,20,4,153,}, + {4,64,19,49,4,9,19,49,10,2,8,2,10,1,8,3,10,5,8,2,14,1,8,2,10,9,19,2,10,4,8,19,10,2,8,7,10,1,8,13,10,1,8,27,19,5,10,1,19,2,8,1,19,6,10,1,8,4,10,1,8,6,15,1,14,3,8,24,4,1,10,1,19,4,8,5,10,2,19,24,4,13,19,56,4,6,19,11,10,9,8,2,15,1,14,2,8,2,10,3,8,4,14,2,8,4,14,3,15,1,8,2,14,1,8,1,14,2,7,1,8,3,7,1,8,1,14,1,7,1,8,5,14,1,15,1,8,3,14,1,8,3,15,1,8,1,15,1,8,6,10,1,8,1,10,3,8,1,10,1,8,1,10,3,8,5,14,2,15,2,8,4,10,4,8,11,10,3,8,2,10,1,8,4,10,2,8,4,10,1,8,14,10,1,8,5,10,2,8,1,10,11,8,1,10,1,8,2,10,13,19,20,4,153,}, + {4,49,19,8,4,1,19,55,4,1,19,57,8,1,14,1,8,2,10,1,8,2,10,7,8,2,10,3,19,2,10,1,19,10,10,2,8,25,10,1,8,1,10,1,8,11,10,2,8,4,14,2,8,4,10,2,8,13,10,1,8,9,19,1,8,1,10,1,19,3,8,16,15,1,14,1,8,24,4,1,10,1,19,4,10,2,8,3,15,1,8,1,19,22,4,15,19,56,4,7,19,10,10,10,15,1,14,4,8,3,14,1,17,1,14,3,17,1,14,1,8,2,14,1,8,2,15,1,14,2,8,1,14,5,8,10,15,1,7,1,14,2,8,3,15,1,8,1,10,2,8,2,15,1,14,1,15,1,8,4,10,4,8,5,10,1,8,2,10,1,8,2,15,1,14,2,8,6,10,4,8,4,10,1,8,3,10,1,8,7,10,4,8,1,10,2,8,2,10,1,8,5,10,1,8,20,10,1,8,1,10,17,8,1,10,11,19,19,4,151,}, + {4,49,19,122,15,1,14,1,15,1,8,4,10,5,8,4,10,4,19,6,10,1,19,5,10,3,8,13,10,3,8,1,10,1,8,57,10,1,8,2,19,1,10,1,8,43,10,2,19,4,10,1,8,4,15,1,8,1,4,1,19,21,4,15,19,56,4,6,19,11,10,4,8,1,10,5,8,2,15,1,14,9,17,1,16,1,14,5,7,2,14,1,8,3,15,1,14,4,8,2,14,3,7,1,8,2,7,1,14,4,8,7,10,1,8,2,14,4,15,1,8,4,10,3,8,2,10,3,8,5,15,1,8,8,10,3,8,1,10,3,8,1,10,1,8,6,10,1,8,5,10,1,8,3,10,1,8,2,10,1,8,2,10,1,8,1,10,2,8,2,10,1,8,5,10,2,8,2,10,1,8,7,10,5,8,1,10,26,19,18,4,151,}, + {4,50,19,111,10,1,19,5,10,4,8,13,10,2,8,1,10,12,19,5,10,2,8,12,10,1,8,1,10,1,8,12,10,1,8,1,10,1,8,26,14,1,8,67,10,2,19,4,10,1,8,4,4,2,19,21,4,15,19,56,4,6,19,12,10,4,8,1,10,1,8,6,14,9,7,3,14,3,8,1,14,2,15,1,8,5,14,3,8,1,14,4,8,1,7,1,15,1,7,1,14,2,7,2,8,10,15,3,8,1,15,1,8,4,10,3,8,1,10,1,8,8,15,1,8,2,9,1,8,3,15,2,8,2,10,6,8,1,10,1,8,8,10,1,8,2,10,1,8,3,10,1,8,2,10,1,8,4,10,2,8,1,10,1,8,4,10,6,8,9,10,3,8,2,10,28,19,18,4,149,}, + {4,50,19,109,10,4,19,1,10,5,8,1,10,1,8,1,10,3,8,1,10,2,8,4,10,2,8,1,10,14,19,5,10,2,8,22,10,1,8,58,15,1,8,16,10,1,8,25,10,2,19,3,10,2,8,4,10,1,4,1,19,21,4,13,19,58,4,6,19,13,10,6,8,2,10,1,8,1,15,1,14,7,7,1,8,3,7,1,14,8,8,3,15,3,14,1,8,1,15,1,14,1,7,1,8,2,14,1,7,2,14,2,7,3,15,1,8,1,7,1,8,4,10,2,8,4,15,1,14,1,8,1,14,1,8,3,10,1,8,1,10,1,8,1,15,2,8,5,15,2,8,1,9,3,8,2,14,1,8,4,10,5,8,4,10,2,8,7,10,1,8,5,10,3,8,2,10,3,8,1,10,2,8,5,10,1,8,1,10,1,8,9,10,12,8,2,10,3,8,2,10,15,19,17,4,149,}, + {4,50,19,109,10,1,14,2,15,1,8,2,10,3,8,1,10,1,8,2,10,7,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,12,4,1,10,1,19,3,10,1,8,1,4,1,8,18,10,2,8,3,10,1,8,7,10,1,8,46,10,1,8,18,10,1,8,17,10,1,8,1,10,3,8,3,10,2,19,3,10,1,8,5,4,2,19,21,4,13,19,58,4,6,19,13,10,6,8,6,14,1,8,1,14,4,8,1,15,1,14,1,7,1,14,1,17,2,14,6,8,3,15,1,8,1,15,2,8,2,15,1,8,3,14,1,7,2,14,2,7,2,14,1,7,2,14,2,8,3,10,1,8,1,10,1,8,2,14,2,15,2,14,1,8,7,15,2,8,4,15,3,8,2,9,3,8,4,15,1,8,4,10,1,8,6,10,5,8,14,10,6,8,2,10,1,8,1,10,1,8,1,10,1,8,8,10,1,8,1,10,10,8,2,10,1,8,1,10,4,8,4,10,1,8,1,10,10,19,19,4,147,}, + {4,50,19,109,10,1,14,1,8,3,10,18,8,1,10,2,8,1,10,16,19,3,10,1,8,3,10,1,8,13,10,5,8,3,10,1,8,5,10,3,8,16,10,1,8,1,10,1,8,24,14,1,8,20,10,1,8,16,10,1,8,8,10,2,19,3,10,2,8,3,15,1,8,1,19,22,4,13,19,58,4,6,19,13,10,4,8,1,10,2,8,1,10,3,8,2,14,3,8,3,7,1,14,2,17,1,16,1,17,1,14,2,8,6,10,1,8,13,7,3,14,1,7,3,8,1,15,1,8,6,10,1,8,1,15,1,14,1,8,11,15,3,14,1,15,1,8,1,15,1,14,1,15,1,8,1,9,2,8,4,15,3,8,3,10,1,8,5,10,6,8,1,10,3,8,4,10,1,8,5,10,10,8,1,10,1,8,9,10,12,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,2,8,2,10,11,19,18,4,147,}, + {4,50,19,109,10,1,15,1,10,3,8,1,10,1,8,2,10,1,8,2,10,13,8,1,10,19,19,2,10,2,8,14,10,1,8,1,10,3,8,2,10,1,8,6,10,4,8,16,10,2,8,1,10,1,8,22,14,2,8,42,10,1,8,3,10,1,19,3,10,3,8,4,10,1,19,22,4,13,19,58,4,6,19,14,10,3,8,2,10,5,8,2,15,2,8,3,7,1,14,1,17,1,14,1,17,2,16,1,14,2,8,6,10,1,8,8,14,1,8,6,7,4,8,9,10,2,8,5,10,1,8,6,15,1,14,1,15,1,8,3,15,1,14,2,15,1,8,1,9,3,8,7,10,2,8,7,10,8,8,2,10,1,8,1,10,1,8,7,10,1,8,2,10,1,8,2,10,1,8,13,10,1,8,1,10,13,8,2,10,6,8,2,10,12,19,20,4,145,}, + {4,50,19,108,10,2,8,5,10,5,8,1,10,12,8,1,10,1,8,1,10,2,8,1,10,1,8,2,10,8,8,1,10,4,19,2,10,4,8,7,10,1,8,5,10,2,8,1,10,4,8,6,10,3,8,4,10,2,8,12,10,1,8,66,10,2,8,2,10,2,19,2,10,3,8,4,10,1,19,23,4,13,19,58,4,8,19,13,10,2,15,1,8,1,10,6,8,1,10,1,8,3,14,3,17,5,14,1,7,1,15,1,8,1,15,1,8,2,10,2,8,2,10,1,8,5,14,1,8,6,7,2,8,6,10,1,8,1,15,1,8,15,15,1,8,2,15,2,8,1,7,1,15,1,8,1,14,1,15,1,8,3,9,1,8,7,9,1,8,9,10,6,8,3,10,1,8,11,10,3,8,1,10,3,8,5,10,1,8,1,10,19,8,2,10,20,19,18,4,147,}, + {4,50,19,106,10,1,8,2,10,1,8,4,10,1,8,1,10,2,8,1,10,1,8,3,10,11,8,1,10,2,8,2,10,8,8,4,10,1,8,1,10,2,19,3,10,2,8,1,10,1,8,10,10,1,8,3,10,2,8,2,10,2,8,7,10,1,8,4,10,4,8,13,10,1,8,67,10,1,19,3,10,2,8,5,10,1,19,24,4,9,19,28,10,3,19,28,4,11,19,13,8,1,14,1,8,1,10,9,15,1,14,8,17,1,16,1,17,1,14,2,8,3,10,6,8,3,14,1,8,8,15,1,14,1,8,1,10,1,8,5,14,1,15,1,14,7,8,7,15,1,8,2,15,1,8,4,15,1,8,3,10,1,8,2,10,1,8,5,15,1,8,9,10,2,8,2,10,1,8,15,10,3,8,1,10,2,8,8,10,22,8,1,10,8,8,1,10,12,19,16,4,148,}, + {4,49,19,105,10,1,4,1,8,5,10,1,8,1,10,6,8,3,10,2,8,1,10,1,8,1,10,18,8,1,10,6,8,1,10,3,19,1,10,3,8,1,10,1,8,19,10,1,8,2,4,1,8,3,10,4,8,1,10,3,8,4,10,1,8,31,10,1,8,46,10,1,19,3,10,1,8,6,4,1,19,24,4,9,19,26,10,8,19,25,4,11,19,13,10,8,8,1,10,4,8,1,14,4,7,1,14,6,7,1,8,2,10,1,8,1,10,1,8,1,10,5,8,2,15,1,8,12,15,1,8,3,14,1,7,1,8,1,7,2,14,4,7,1,8,6,14,1,15,1,8,14,10,1,8,8,10,4,8,1,10,3,8,2,10,1,8,15,10,3,8,1,10,2,8,7,10,32,8,1,10,13,19,15,4,148,}, + {4,49,19,105,10,1,8,5,10,1,8,2,10,1,8,8,10,1,8,6,10,7,8,1,10,12,8,1,10,1,8,1,10,8,8,1,10,1,8,26,10,2,8,2,10,3,8,84,4,1,10,1,19,2,10,2,8,5,4,1,19,26,4,6,19,26,10,4,8,2,4,1,10,2,19,25,4,11,19,15,10,3,8,1,10,3,8,1,10,2,8,8,14,3,17,1,14,2,15,1,8,4,10,6,8,12,10,1,8,2,14,1,8,4,15,1,14,8,7,1,8,5,14,2,15,1,8,9,10,1,8,2,10,6,8,3,10,4,8,3,10,3,8,1,10,3,8,7,10,1,8,1,10,1,8,4,10,2,8,9,10,16,8,1,10,16,8,1,10,14,19,14,4,148,}, + {4,49,19,103,10,2,8,5,10,1,8,5,15,2,8,7,10,1,8,1,10,1,8,2,10,5,8,2,10,1,8,2,10,5,8,3,10,1,8,1,10,1,8,1,10,1,8,4,10,6,8,25,10,1,8,1,10,1,8,3,10,1,8,3,10,2,8,2,10,1,8,12,10,1,8,57,10,1,8,6,10,6,8,5,4,1,19,26,4,6,19,25,10,2,8,1,10,2,8,3,10,1,19,26,4,11,19,15,10,7,8,12,15,1,14,2,17,1,14,2,8,1,10,3,8,1,10,5,8,13,10,1,8,2,15,1,8,4,14,4,7,1,14,1,8,1,7,1,14,1,7,1,14,1,7,1,8,2,7,2,8,15,10,1,8,4,10,1,8,6,10,1,8,2,10,2,8,1,10,1,8,7,10,1,8,1,10,3,8,1,10,1,8,3,10,3,8,5,10,9,8,1,10,8,8,2,10,3,8,2,10,9,8,1,10,16,19,14,4,147,}, + {4,47,19,103,10,2,8,7,10,1,8,5,15,2,8,2,10,1,8,9,10,6,8,1,10,3,8,1,10,3,8,5,10,4,8,1,10,1,8,3,10,3,8,1,10,1,8,22,10,4,8,2,10,4,8,6,10,3,8,13,10,1,8,4,10,1,8,14,10,1,8,15,10,1,8,22,10,1,8,1,10,5,8,1,10,2,8,4,10,1,19,27,4,2,19,27,10,3,8,5,10,1,8,1,10,1,19,26,4,12,19,15,10,5,8,1,10,4,8,2,14,2,8,6,7,1,14,3,8,1,10,3,8,1,10,5,8,4,10,1,8,1,10,2,8,3,10,1,8,2,10,2,8,3,10,1,8,1,14,1,15,1,14,2,8,6,14,2,7,1,8,1,7,1,8,1,7,1,14,4,8,9,15,1,8,3,10,4,8,5,10,1,8,12,10,2,8,1,10,1,8,3,10,2,8,3,10,1,8,6,10,19,8,2,10,1,8,4,10,25,19,15,4,146,}, + {4,46,19,102,10,1,4,1,10,1,8,5,10,3,8,7,15,1,8,1,9,1,10,2,8,1,10,2,8,7,10,4,8,1,10,2,8,9,10,1,8,1,10,3,8,1,10,1,8,3,10,2,8,24,10,4,8,3,10,4,8,7,10,1,8,1,10,1,8,13,10,1,8,2,10,1,8,1,10,1,8,23,10,1,8,1,10,1,8,27,10,1,8,1,10,1,8,5,10,2,8,3,10,1,19,27,4,2,19,26,10,2,8,9,10,1,19,26,4,12,19,15,10,1,8,1,10,1,8,1,10,6,8,1,15,1,14,2,8,3,7,1,8,1,14,3,15,1,8,1,10,4,8,1,10,5,8,3,10,1,8,1,10,3,8,1,10,1,8,4,10,3,8,2,10,1,8,3,15,1,7,1,8,6,14,2,7,1,8,1,14,7,15,1,8,4,15,2,8,2,15,1,8,1,10,10,8,4,15,1,8,12,10,1,8,4,10,1,8,4,10,1,8,6,10,22,8,4,10,10,8,1,10,14,19,15,4,145,}, + {4,44,19,104,10,1,15,1,8,3,10,1,8,2,10,3,8,1,15,1,8,1,15,2,8,4,10,3,8,1,10,1,9,1,8,2,15,1,8,5,10,5,8,4,10,2,8,1,10,6,8,1,10,4,8,2,10,2,8,8,10,1,8,8,10,2,8,2,10,5,8,1,15,4,8,2,10,2,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,31,10,1,8,39,10,2,8,8,10,2,8,2,10,2,4,1,19,25,4,2,19,26,10,1,8,4,10,3,8,3,10,1,19,26,4,13,19,14,10,2,8,2,10,3,8,2,15,4,8,1,14,1,8,4,14,3,15,1,10,8,8,1,10,2,8,6,10,1,8,1,10,1,8,3,10,3,8,3,10,1,8,5,15,1,8,6,14,3,15,1,14,8,8,11,10,5,8,1,10,3,8,4,14,1,8,3,10,1,8,7,10,1,8,2,10,1,8,2,10,1,8,10,10,11,8,1,10,12,8,2,10,26,19,15,4,145,}, + {4,44,19,103,4,1,10,1,15,2,8,3,10,2,8,6,14,1,15,1,8,3,10,2,8,12,10,4,8,1,10,2,8,3,10,2,8,2,10,4,8,4,10,2,8,4,10,1,8,5,10,2,8,7,10,1,8,1,10,2,8,2,10,3,8,3,15,5,10,4,8,7,10,4,8,1,10,1,8,1,10,1,8,12,10,1,8,38,10,2,8,12,10,1,8,9,10,2,4,2,10,1,4,1,19,26,4,2,19,26,10,1,8,9,10,2,19,26,4,13,19,15,10,1,8,2,10,4,8,1,15,3,8,1,15,1,8,4,14,1,15,1,14,1,15,1,8,1,10,8,8,1,10,2,8,4,10,1,8,1,10,1,8,1,10,1,8,7,10,1,8,5,15,1,8,5,7,1,8,2,14,2,7,4,14,2,7,1,14,3,8,3,10,1,8,4,10,1,8,3,10,1,8,1,10,1,8,1,10,4,8,11,10,1,8,1,10,1,8,2,10,1,8,10,10,1,8,4,10,21,8,1,10,4,8,1,10,27,19,14,4,145,}, + {4,39,19,2,4,1,19,37,10,3,19,66,4,2,8,11,15,2,8,1,10,2,8,6,10,3,8,5,10,13,8,2,15,1,8,2,10,5,8,9,10,1,8,14,10,1,8,3,10,3,8,1,15,4,14,1,15,1,10,3,8,5,10,1,8,1,10,3,8,2,10,3,8,3,10,1,8,1,10,1,8,2,10,1,8,16,10,1,8,12,10,1,8,18,10,2,8,5,10,1,8,12,10,3,19,28,4,1,19,26,10,1,8,4,10,4,8,2,4,1,10,1,19,26,4,15,19,14,10,5,8,3,15,3,8,2,10,1,8,1,15,3,14,1,8,2,10,11,8,3,10,1,8,2,10,1,8,3,14,1,8,7,15,1,8,1,10,1,8,1,14,2,8,5,14,3,7,1,15,4,7,3,14,2,8,9,10,2,8,1,10,1,8,4,10,1,8,2,10,2,8,4,10,2,8,4,10,1,8,3,10,1,8,1,10,1,8,3,10,1,8,10,10,17,8,2,10,35,19,15,4,144,}, + {4,39,19,39,8,1,14,1,15,3,10,2,19,1,10,1,19,61,10,1,4,1,10,4,8,7,10,1,8,2,10,1,8,7,10,1,8,5,10,3,8,3,10,8,8,1,10,1,8,3,10,8,8,5,10,3,8,17,10,5,8,2,15,3,8,1,10,4,8,4,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,4,10,1,8,4,10,2,8,29,14,1,8,16,10,3,8,17,10,2,19,29,4,1,19,26,10,1,8,3,10,5,8,2,10,2,19,26,4,15,19,14,10,2,8,1,10,3,8,3,15,1,8,8,10,1,8,1,10,14,8,3,10,1,8,2,10,1,8,4,10,1,8,2,10,1,8,5,14,1,8,5,14,3,7,1,8,1,15,1,7,1,8,6,14,1,8,1,15,1,8,15,15,2,8,2,10,2,8,1,10,1,8,1,10,1,8,6,10,1,8,1,10,2,8,11,10,1,8,1,10,1,8,2,10,3,8,1,10,35,8,1,10,15,19,14,4,144,}, + {4,39,19,37,10,1,8,1,15,3,14,1,15,3,8,2,10,4,15,1,8,2,9,1,10,1,19,1,10,4,19,3,10,1,19,2,10,3,19,39,4,1,19,1,10,3,8,15,10,1,8,1,10,2,8,3,10,1,8,1,10,3,8,1,10,1,8,1,10,3,8,1,10,5,8,1,10,2,8,1,10,7,8,1,10,1,8,3,10,4,8,14,10,10,8,4,10,2,8,6,10,2,8,3,10,4,8,4,10,1,8,3,10,2,8,9,10,1,8,16,10,1,8,22,10,2,8,15,15,1,8,1,4,1,19,30,4,1,19,25,10,2,8,2,10,7,8,1,10,2,19,26,4,15,19,15,10,4,8,3,15,1,8,8,10,1,8,3,10,1,8,1,10,9,8,5,10,1,8,5,10,3,8,1,10,2,8,9,10,1,8,2,14,3,8,1,15,1,8,14,15,1,8,17,10,2,8,2,10,2,8,19,10,1,8,3,10,2,8,2,10,34,8,2,10,10,8,1,10,4,19,15,4,143,}, + {4,39,19,37,10,1,14,4,15,1,14,4,15,1,8,1,9,1,8,1,15,2,8,1,15,1,8,2,9,3,8,1,9,1,10,12,19,36,10,1,19,1,10,4,8,12,10,1,8,1,10,1,8,2,10,1,8,8,10,3,8,3,10,7,8,6,10,1,8,4,10,1,8,1,10,1,8,3,10,3,8,13,10,1,8,1,10,9,8,2,10,1,8,9,10,1,8,3,10,3,8,1,10,1,8,1,10,1,8,15,10,2,8,9,10,1,8,29,10,1,8,5,10,1,8,10,15,1,8,1,4,1,19,30,4,1,19,25,10,2,8,3,10,11,4,1,10,1,19,22,4,15,19,15,4,1,10,1,8,1,10,2,8,1,15,2,8,2,10,2,8,7,10,2,8,1,10,3,8,1,10,6,8,4,10,1,8,9,10,3,8,2,10,1,8,2,10,1,8,19,10,1,8,6,10,1,8,9,10,1,8,6,10,1,8,3,10,1,8,12,10,1,8,2,10,1,8,1,10,1,8,5,10,1,8,1,10,16,8,1,10,1,8,1,10,15,8,2,10,1,8,1,10,8,8,2,10,5,19,16,4,142,}, + {4,39,19,28,10,2,19,8,10,1,14,3,15,2,14,1,15,4,8,1,9,3,15,3,8,1,15,1,8,2,15,2,8,3,10,3,8,3,10,3,19,15,10,1,19,22,10,7,8,11,10,1,8,2,10,2,8,1,10,1,8,5,10,3,8,1,10,3,8,1,10,9,8,6,10,1,8,1,10,1,8,6,10,1,8,2,10,1,8,8,10,14,8,34,10,1,8,3,10,1,8,9,10,1,8,47,4,1,19,31,4,1,19,25,10,1,8,2,10,13,4,1,10,1,19,22,4,15,19,15,10,4,8,3,15,1,8,2,10,3,8,3,10,1,8,3,10,1,8,1,10,1,8,1,10,8,8,3,10,2,8,3,10,1,8,2,10,1,8,2,10,4,8,5,10,1,8,23,10,1,8,3,10,2,8,2,10,2,8,2,10,3,8,7,10,2,8,6,10,1,8,5,10,4,8,3,10,1,8,6,10,17,8,3,10,2,8,3,10,10,8,1,10,9,8,1,10,7,19,16,4,141,}, + {4,39,19,27,10,1,8,2,10,1,19,7,10,1,8,1,14,1,15,1,8,1,15,7,8,2,9,1,15,1,14,1,15,7,8,7,10,3,8,2,10,1,19,11,10,9,19,17,10,1,8,1,14,1,8,3,10,4,8,11,10,1,8,3,10,1,8,3,10,3,8,1,10,1,8,2,10,6,8,1,10,7,8,3,10,1,8,2,10,1,8,4,10,1,8,1,10,2,8,8,10,1,8,1,10,1,8,1,10,10,8,7,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,80,10,2,19,31,4,1,19,24,10,2,8,1,10,14,19,24,4,15,19,15,4,1,10,1,8,1,10,2,8,6,10,2,8,7,10,1,8,1,10,1,8,1,10,8,8,2,10,2,8,4,10,1,8,9,10,1,8,9,15,1,8,4,7,1,8,12,10,1,8,2,15,1,8,3,10,2,8,4,10,3,8,1,10,1,8,12,10,1,8,6,10,4,8,3,10,2,8,3,10,17,8,5,10,2,8,7,10,1,8,2,10,22,19,15,4,141,}, + {4,39,19,25,10,2,8,1,15,2,8,1,10,1,19,5,10,3,8,2,15,2,8,1,15,2,8,3,15,2,9,1,8,2,15,1,8,1,15,4,8,9,10,1,8,3,15,2,10,1,19,9,10,1,8,7,10,1,19,8,10,1,19,7,10,2,8,15,10,1,8,3,10,1,8,2,10,3,8,2,10,8,8,1,10,4,8,1,10,7,8,6,10,1,8,4,10,1,8,1,10,2,8,9,10,3,8,1,10,5,8,17,10,1,8,1,10,2,8,18,10,1,8,38,10,1,8,19,14,1,8,2,10,1,19,32,4,1,19,23,10,2,8,1,10,8,8,2,10,5,19,24,4,15,19,15,10,5,8,5,10,3,8,2,10,1,8,4,10,1,8,1,10,2,8,1,10,5,8,5,10,2,8,8,10,1,8,12,10,1,8,1,15,2,8,3,14,2,8,7,14,1,8,2,10,2,8,11,10,2,8,7,10,1,8,5,10,1,8,1,10,2,8,7,10,3,8,2,10,3,8,2,10,5,8,4,10,9,8,3,10,5,8,8,10,9,8,1,10,5,8,1,10,4,8,1,10,2,19,15,4,141,}, + {4,39,19,24,10,1,15,5,8,1,10,5,19,1,10,1,8,7,15,7,9,1,8,1,15,3,8,1,15,2,8,1,9,2,8,3,10,2,8,6,14,1,15,1,10,1,19,9,10,1,8,5,10,1,8,2,10,3,19,3,10,1,4,3,10,7,8,1,14,1,10,1,8,5,14,1,8,3,10,3,8,1,10,5,8,2,10,2,8,1,10,1,8,2,10,3,8,1,10,10,8,2,10,2,8,2,10,2,8,1,10,1,8,2,4,1,8,6,10,4,8,7,10,4,8,1,10,3,8,12,10,2,8,8,10,1,8,1,10,1,8,52,10,4,8,20,10,2,19,32,4,1,19,23,10,1,8,2,10,7,8,2,10,6,19,23,4,16,19,15,10,6,8,4,10,1,8,3,10,1,8,2,10,1,8,2,10,1,8,2,10,10,8,1,10,2,8,1,10,1,8,8,10,1,8,18,14,3,8,6,14,1,8,12,10,1,8,1,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,6,10,4,8,4,10,1,8,3,10,2,8,1,10,1,8,4,10,3,8,2,10,1,8,9,10,1,8,4,10,1,8,8,10,4,8,2,10,4,8,2,10,1,8,1,10,5,19,15,4,1,19,1,4,139,}, + {4,39,19,24,10,1,15,1,8,2,15,1,8,2,14,1,8,3,10,2,8,2,15,2,8,5,15,2,8,3,15,1,8,1,15,1,8,1,15,1,8,1,15,2,14,2,9,3,10,1,8,1,10,3,8,6,10,2,19,8,10,1,8,7,10,1,8,3,10,5,8,4,10,1,8,3,10,1,8,1,14,1,8,1,10,2,8,5,14,1,8,1,10,8,8,3,10,2,8,1,10,1,8,2,10,2,8,4,10,4,8,2,10,2,8,1,10,1,8,7,10,3,8,6,10,7,8,10,10,3,8,10,10,1,8,6,10,1,8,6,10,1,8,16,10,1,8,22,14,1,8,12,10,1,8,1,10,3,8,7,15,2,8,9,14,1,8,1,10,1,19,56,10,3,8,1,10,5,8,4,10,5,19,25,4,17,19,14,10,5,8,1,10,4,8,4,10,2,8,4,10,7,8,3,10,3,8,5,10,1,8,4,10,1,8,3,10,2,8,12,7,1,8,3,7,1,8,1,15,1,8,5,14,1,8,16,10,1,8,2,10,4,8,1,10,2,8,3,10,6,8,6,10,2,8,5,10,1,8,3,10,2,8,1,10,1,8,7,10,4,8,16,15,1,8,2,10,1,8,2,10,3,8,4,10,2,8,3,10,1,8,2,10,5,19,20,4,135,}, + {4,39,19,23,4,1,8,5,15,1,8,5,10,2,8,1,15,3,8,5,15,3,8,1,15,5,8,1,9,1,8,1,9,1,8,1,15,1,9,1,8,1,15,3,8,2,10,3,8,2,10,1,8,2,10,1,19,7,10,2,8,6,10,2,8,16,10,4,8,9,10,8,8,3,10,1,8,3,10,1,8,9,10,1,8,1,10,3,8,5,10,1,8,3,10,4,8,6,10,8,8,5,10,2,8,3,10,2,8,14,10,1,8,48,14,3,8,13,10,1,8,7,4,3,14,1,15,2,8,6,10,1,8,1,4,1,19,57,10,2,8,2,10,5,8,4,10,4,19,26,4,15,19,1,4,1,19,14,10,5,8,1,10,4,8,6,10,1,8,3,10,6,8,1,10,1,8,1,10,6,8,1,10,1,8,1,10,1,8,9,10,2,8,2,15,1,8,2,7,2,15,1,8,7,14,3,8,1,7,1,8,1,7,1,8,1,14,1,8,3,15,1,8,2,14,1,8,8,10,1,8,1,10,10,8,2,10,3,8,11,10,1,8,4,10,2,8,2,10,3,8,7,10,1,8,2,10,3,8,7,10,3,8,1,10,1,8,6,10,1,8,2,10,4,8,9,10,1,8,3,14,1,8,1,10,2,19,19,4,135,}, + {4,37,19,25,4,1,15,1,14,1,8,3,15,1,8,2,15,1,8,1,10,2,8,2,15,2,8,2,15,3,8,2,15,2,8,1,15,4,8,2,9,1,8,1,15,1,8,1,9,3,15,2,8,4,10,3,8,5,10,1,19,5,10,2,8,7,10,3,8,12,10,2,8,2,10,4,8,8,10,9,8,1,10,6,8,5,10,3,8,4,10,1,8,5,10,1,8,6,10,3,8,5,10,8,8,5,10,1,8,13,10,1,8,1,10,1,8,12,10,1,8,18,10,1,8,45,10,1,4,2,10,1,4,1,10,5,8,1,10,2,4,1,19,57,10,1,8,1,15,1,8,2,10,4,8,4,10,2,8,2,10,1,19,26,4,15,19,17,10,3,8,2,10,4,15,3,8,3,10,1,8,7,10,2,8,3,10,3,8,1,10,2,8,12,10,2,8,5,7,4,8,1,7,1,14,2,8,3,7,1,15,1,14,4,8,20,10,10,8,3,10,1,8,6,10,1,8,5,10,1,8,4,10,1,8,6,10,2,8,1,10,1,8,2,10,9,8,11,10,1,8,9,10,2,8,10,10,2,15,1,14,1,15,1,10,3,19,18,4,135,}, + {4,37,19,25,4,1,8,2,15,2,8,2,15,1,10,1,8,1,10,3,8,1,15,3,8,1,15,1,8,5,15,1,8,4,15,1,8,1,9,1,10,3,8,1,9,1,10,1,8,1,15,1,8,1,15,2,8,2,10,4,8,5,15,1,10,1,19,3,10,2,8,8,10,3,8,17,10,4,8,6,10,4,8,2,10,1,8,1,10,1,8,2,10,3,8,1,10,3,8,5,10,4,8,2,10,2,8,9,15,1,8,1,10,4,8,5,10,8,8,9,10,2,8,6,10,3,8,7,10,5,8,2,10,1,8,17,10,1,8,42,15,1,8,1,10,1,4,1,10,1,19,7,10,3,19,57,10,3,8,2,10,8,8,3,10,1,8,1,10,2,19,26,4,15,19,17,10,4,8,1,10,3,8,1,15,1,14,1,15,1,8,1,10,2,8,8,10,3,8,5,10,3,8,1,14,2,10,2,8,4,10,1,8,2,10,2,8,7,14,1,7,1,8,1,7,1,14,1,7,1,8,1,7,2,14,2,8,2,14,1,8,3,7,1,8,14,10,1,8,3,10,7,8,1,10,1,8,15,10,3,8,1,10,1,8,9,10,10,8,3,10,2,8,18,10,1,8,4,10,1,8,11,15,1,8,1,10,5,19,17,4,134,}, + {4,33,19,29,10,3,14,2,8,2,15,1,10,5,8,1,15,3,8,1,15,2,8,1,15,1,8,1,15,2,8,2,9,2,15,1,8,1,9,2,10,1,9,4,14,1,15,4,8,10,15,1,14,1,10,6,8,6,10,1,8,2,10,1,8,11,10,1,8,6,10,4,8,5,10,1,8,2,10,2,8,3,10,1,8,2,10,2,8,2,10,4,8,6,10,6,8,5,15,2,8,2,15,1,8,3,10,3,8,2,10,1,8,4,4,1,10,6,8,15,10,3,8,4,10,2,8,1,10,4,8,5,10,1,8,12,10,1,8,1,10,4,8,41,15,1,8,1,10,1,19,68,10,1,8,3,10,16,19,27,4,15,19,18,10,5,8,2,15,1,14,1,15,2,8,1,10,2,8,8,10,3,8,4,10,2,8,3,14,1,8,9,10,1,8,2,10,2,8,1,14,1,8,3,7,4,14,1,7,1,8,1,7,1,8,4,10,1,8,4,15,1,14,2,8,3,7,1,8,12,10,10,8,3,10,1,8,7,10,1,8,17,10,10,8,2,10,2,8,5,10,1,8,4,10,1,8,1,10,1,8,5,10,1,8,3,10,1,8,10,10,1,8,2,10,7,19,17,4,133,}, + {4,33,19,27,10,5,8,2,10,2,8,2,10,4,8,1,15,2,8,1,9,1,8,5,15,4,9,2,15,1,8,2,15,3,8,1,15,2,14,1,15,3,8,11,14,5,15,1,14,2,8,5,10,1,8,9,10,1,8,1,10,1,8,2,10,2,8,2,10,1,8,3,10,1,8,1,10,1,8,4,10,2,8,10,10,11,8,1,10,2,8,2,10,1,8,1,10,3,8,9,15,1,8,1,15,1,8,1,10,1,8,5,10,3,8,3,10,4,8,17,10,1,8,9,10,2,8,1,10,1,8,2,10,1,8,2,10,1,8,8,10,1,8,2,10,3,8,1,10,1,8,36,10,4,8,3,10,1,19,68,10,2,8,5,10,5,8,1,10,5,8,1,10,2,19,27,4,16,19,18,10,2,8,4,14,2,15,1,8,2,10,3,8,7,10,2,8,8,14,2,8,10,10,1,8,3,10,1,8,5,14,2,7,3,15,1,8,1,7,1,8,1,14,2,8,1,10,1,8,2,10,2,8,3,14,2,8,3,15,1,8,3,15,1,8,5,10,9,8,2,10,2,8,1,10,3,8,26,10,8,8,2,10,1,8,6,10,2,8,3,10,1,8,9,10,1,8,6,10,1,8,2,10,1,8,1,10,1,8,1,10,8,19,17,4,133,}, + {4,33,19,28,10,1,14,1,8,2,15,1,8,2,10,2,8,6,15,1,8,2,9,1,10,3,15,1,8,2,15,3,9,1,10,1,8,1,9,1,15,2,14,2,15,1,8,1,15,2,8,2,15,1,8,15,15,1,10,1,8,4,10,1,8,18,10,1,8,1,10,9,8,13,10,1,8,1,10,4,8,1,10,5,8,1,10,3,8,1,10,2,8,13,15,2,8,3,10,4,8,3,10,1,8,3,10,4,8,31,10,1,8,11,10,2,8,2,10,2,8,3,10,1,8,36,10,7,19,69,10,2,8,1,10,2,8,1,10,1,8,1,10,3,8,3,10,4,8,1,10,1,19,28,4,16,19,19,10,2,8,4,15,2,8,1,10,4,8,2,10,2,8,3,10,2,8,7,15,2,8,1,10,3,8,11,10,1,8,2,10,1,8,2,14,1,8,1,14,1,7,1,8,8,10,1,8,1,14,1,8,1,14,1,7,1,8,6,14,1,8,10,10,14,8,2,10,2,8,25,10,3,8,2,10,3,8,28,14,1,15,1,10,2,8,7,10,8,19,16,4,133,}, + {4,33,19,29,14,1,15,2,8,1,10,5,8,1,15,4,8,1,15,2,9,1,10,2,8,1,15,1,8,1,9,1,8,2,15,1,9,1,10,1,9,1,10,1,9,1,15,1,14,2,15,1,10,1,15,3,8,7,10,1,8,8,10,1,8,1,10,1,8,15,15,1,8,4,15,1,8,2,10,2,8,2,10,7,8,3,10,1,8,1,10,1,8,8,10,10,8,1,10,4,8,2,10,6,8,1,10,1,8,2,15,1,8,3,15,2,8,2,10,3,8,11,10,4,8,13,10,1,8,1,10,1,8,10,10,1,8,7,10,1,8,8,10,1,8,10,10,1,8,11,14,1,8,15,15,3,8,5,10,4,19,69,10,2,8,1,10,3,8,1,10,3,8,9,10,2,19,27,4,16,19,19,10,1,8,2,10,3,15,1,14,1,15,1,10,2,8,1,10,1,8,8,10,2,8,4,15,1,14,1,8,3,10,1,8,1,10,2,8,1,14,1,8,6,10,1,8,1,10,1,8,5,14,1,8,1,14,2,8,1,7,1,14,1,8,3,15,1,8,2,14,3,15,1,14,1,15,1,7,1,8,8,7,1,8,2,15,1,8,3,9,1,10,10,8,1,10,1,8,1,10,4,8,10,10,2,8,3,10,1,8,5,10,2,8,9,10,2,8,1,10,1,8,6,10,2,8,12,15,1,8,17,10,1,8,1,10,4,19,16,4,133,}, + {4,32,19,29,10,2,15,1,8,1,10,7,15,8,9,1,8,2,15,1,8,1,10,1,9,1,8,1,15,1,8,1,10,2,9,1,8,1,15,4,8,1,9,1,15,1,14,1,15,2,8,6,10,1,8,8,10,1,8,8,10,1,8,4,15,4,8,1,15,3,8,1,15,1,8,2,10,1,8,3,10,4,8,1,10,1,8,11,10,14,8,1,10,1,8,1,10,5,8,1,10,4,8,4,15,1,8,1,15,3,8,2,10,1,8,2,10,2,8,9,10,5,8,5,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,1,10,2,8,1,10,1,8,15,10,2,8,3,10,1,8,23,14,1,8,13,14,1,15,6,8,5,10,2,19,69,10,4,8,3,10,2,8,4,10,1,8,4,10,2,19,26,4,19,19,19,4,1,8,1,10,3,15,1,14,1,8,2,10,2,8,4,14,2,15,1,14,1,8,6,15,1,14,2,8,4,10,2,8,1,10,1,8,7,10,2,8,3,10,1,8,2,14,4,8,1,14,2,8,6,14,2,8,4,15,1,8,7,7,1,8,1,15,1,14,2,8,7,10,8,8,2,10,2,8,10,15,1,8,4,10,1,8,12,10,1,8,2,10,6,8,2,10,2,8,1,10,3,8,11,15,1,8,2,15,2,8,3,15,1,8,5,10,1,8,2,15,1,14,1,8,3,10,4,19,17,4,1,19,2,4,129,}, + {4,32,19,29,10,2,8,1,15,1,8,1,19,1,10,3,14,2,8,1,15,7,8,1,10,2,8,1,15,1,8,1,9,1,8,1,15,1,9,1,10,2,8,1,15,5,8,2,15,1,14,1,8,18,10,1,8,12,15,3,14,1,15,1,8,7,9,1,10,2,8,6,10,1,8,4,10,1,8,3,10,1,8,7,10,12,8,1,10,3,8,6,10,1,8,2,15,1,8,2,15,3,8,5,10,2,8,1,10,1,8,7,10,9,8,1,10,1,8,1,10,1,8,5,10,2,8,1,10,1,8,1,10,1,8,14,10,1,8,8,10,1,8,18,10,2,8,2,14,1,8,12,15,2,8,2,15,2,8,8,10,2,19,66,10,2,8,1,10,3,8,2,10,2,8,1,10,3,8,6,10,1,19,26,4,20,19,19,10,4,8,1,15,1,8,5,10,1,8,5,14,1,17,1,14,1,15,1,8,3,14,5,8,2,10,4,8,9,10,1,8,7,14,1,15,2,8,1,15,1,14,1,8,4,14,1,15,1,14,1,8,13,15,1,14,2,15,1,8,2,9,1,8,5,10,8,8,2,10,1,8,9,15,2,8,2,10,1,8,3,15,1,8,13,10,4,8,1,10,3,8,1,10,1,8,4,10,2,8,3,14,1,8,9,14,1,8,9,15,2,8,9,10,3,19,16,4,1,19,2,4,129,}, + {4,31,19,30,10,1,14,1,8,1,10,2,19,3,10,2,15,2,8,1,15,4,8,3,9,2,15,3,8,1,9,1,15,1,10,3,8,1,15,4,8,3,15,2,8,17,10,1,8,8,10,1,8,3,15,1,8,2,15,1,14,1,8,1,15,6,8,1,15,1,8,6,10,1,8,1,10,1,8,12,10,2,8,2,10,17,8,1,10,1,8,10,15,2,8,1,10,7,8,4,10,1,8,4,10,6,8,1,10,1,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,15,10,1,8,24,10,3,8,2,14,1,8,12,15,2,8,1,15,1,14,1,15,2,8,6,10,3,19,66,10,10,8,2,10,2,8,4,10,2,19,27,4,20,19,20,10,2,8,1,15,1,8,11,15,1,14,3,15,1,8,3,15,1,14,2,15,2,8,2,10,2,8,4,10,1,8,14,15,1,14,2,8,1,15,4,8,1,15,1,8,1,15,2,8,2,15,1,8,7,10,1,8,2,15,1,14,1,15,1,8,10,10,6,8,2,10,1,8,1,10,1,8,1,10,1,8,10,10,1,8,18,10,5,8,2,10,2,8,23,14,2,8,2,15,1,14,4,15,1,8,2,15,1,8,4,10,5,19,16,4,130,}, + {4,30,19,31,10,1,14,1,8,1,10,1,19,5,10,1,8,3,15,4,8,1,9,2,8,2,15,2,8,3,15,1,9,1,10,2,8,3,15,2,8,1,9,1,8,2,15,2,8,1,15,1,8,27,15,1,8,3,15,1,8,1,15,1,14,4,15,1,14,1,15,1,8,4,10,1,8,2,10,3,8,13,10,7,8,2,10,5,19,2,10,3,8,15,10,3,8,1,10,3,8,9,10,9,8,2,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,38,10,2,8,3,10,1,8,21,14,1,15,2,8,1,9,2,10,1,9,1,10,4,19,68,4,1,10,9,8,6,10,2,19,28,4,20,19,20,10,2,14,1,15,1,8,5,14,1,8,1,10,2,8,1,14,3,8,1,14,8,15,1,8,1,15,1,8,2,10,2,8,1,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,6,14,2,15,1,14,4,15,1,8,2,15,1,14,1,8,13,14,1,8,11,10,7,8,1,10,1,8,1,10,3,8,10,10,2,8,3,10,1,8,1,10,1,8,12,10,4,8,32,15,1,14,3,8,7,10,8,19,14,4,130,}, + {4,29,19,32,10,1,8,2,10,1,19,5,10,1,15,8,9,1,8,1,9,1,15,1,14,1,15,2,14,1,15,3,8,8,9,1,8,2,15,3,8,24,10,1,15,1,8,1,15,1,14,1,8,2,9,1,8,1,15,2,14,1,15,4,14,1,8,21,10,11,8,2,10,4,19,3,10,4,8,5,15,1,8,5,10,8,8,10,10,7,8,2,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,1,10,4,8,15,10,1,8,19,10,1,8,1,10,2,8,16,10,3,8,3,15,1,8,2,10,4,8,1,10,1,8,1,10,1,19,39,4,2,19,27,10,9,8,4,15,1,14,1,8,1,10,1,19,29,4,21,19,19,10,2,8,2,15,1,8,4,14,1,8,3,15,1,14,2,8,1,15,1,14,4,17,1,14,7,15,1,8,1,10,1,8,4,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,3,15,1,14,5,8,2,15,3,8,20,15,1,8,1,10,2,8,2,10,7,8,1,10,1,8,1,10,1,8,11,10,2,8,3,10,3,8,9,10,1,8,2,10,2,8,6,10,2,8,7,15,2,8,18,14,1,8,7,15,1,8,1,10,9,19,11,4,131,}, + {4,29,19,31,8,1,14,1,15,1,8,1,10,1,19,4,10,2,15,1,14,2,8,1,15,4,10,1,9,2,8,1,15,4,8,1,15,3,8,2,15,2,8,1,9,1,8,2,9,1,8,2,15,2,8,23,10,2,8,1,15,2,14,1,15,1,8,1,9,2,15,4,14,1,15,1,8,11,10,1,8,12,10,3,8,3,10,4,8,3,10,3,19,4,10,3,8,9,10,8,8,3,10,2,8,8,10,8,8,1,10,1,8,1,10,1,8,1,10,3,8,4,10,4,8,18,10,1,8,2,10,1,8,15,10,3,8,15,10,3,8,13,10,1,19,38,4,3,19,27,10,5,8,1,10,4,8,5,10,1,19,30,4,21,19,19,10,2,8,1,15,2,8,7,15,1,14,1,15,2,8,1,15,1,14,8,15,1,8,1,15,1,14,2,8,6,10,1,8,3,10,1,8,1,10,1,8,4,10,1,8,3,10,2,8,2,14,2,15,1,14,1,8,3,15,1,8,1,15,1,8,4,15,1,8,18,10,8,8,1,10,1,8,1,10,4,8,11,10,2,8,1,10,3,8,10,10,2,8,1,10,4,8,3,10,3,8,7,14,1,15,1,8,9,15,1,8,15,15,2,8,1,10,10,19,11,4,130,}, + {4,29,19,31,15,1,14,1,8,2,10,1,19,5,10,1,8,1,14,2,15,1,8,2,15,2,9,5,8,3,10,1,8,1,15,2,8,2,15,1,8,2,9,1,8,1,9,1,8,2,15,3,8,24,10,1,8,2,15,3,8,1,9,2,15,6,8,4,10,1,8,25,10,5,8,3,10,3,19,2,10,2,8,3,15,1,8,6,10,4,8,4,10,1,8,2,10,3,8,3,10,1,8,7,10,4,8,1,10,1,8,1,10,1,8,2,10,1,8,5,10,1,8,1,10,1,8,7,10,1,8,14,10,2,8,15,10,3,8,6,10,1,8,6,10,3,8,8,10,1,8,6,10,1,19,37,4,6,19,25,10,3,8,6,10,1,8,2,10,2,19,32,4,21,19,20,10,1,8,1,14,2,15,1,8,7,14,1,8,2,14,1,15,1,14,8,15,1,8,1,14,4,8,2,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,1,10,2,8,4,10,1,8,1,10,1,8,9,15,1,8,3,15,5,8,1,15,1,8,5,9,1,8,1,9,1,10,3,8,1,10,10,8,2,10,4,8,13,10,1,8,15,10,4,8,8,10,3,8,4,15,1,8,11,15,1,8,17,10,11,19,10,4,129,}, + {4,29,19,31,10,1,15,1,14,1,8,1,10,1,19,5,10,1,8,1,14,2,8,4,15,1,8,6,15,2,8,1,15,3,8,1,9,1,15,2,8,6,15,3,8,30,9,1,8,2,15,4,8,4,10,1,8,7,10,2,8,6,10,1,8,7,10,1,8,3,10,6,8,2,10,4,19,1,10,3,8,2,15,1,8,4,10,2,8,3,10,6,8,3,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,5,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,5,10,1,8,3,10,4,8,1,10,5,8,1,10,3,8,7,10,3,8,13,10,3,8,5,10,1,8,8,10,2,8,3,15,1,8,1,15,1,8,8,15,1,10,1,19,37,4,6,19,24,10,2,8,11,10,1,19,32,4,22,19,20,10,1,15,1,14,2,15,1,8,5,15,1,8,1,15,1,8,2,15,1,8,1,15,2,14,5,15,1,8,1,15,4,8,3,10,1,8,2,10,1,8,3,10,5,8,1,10,3,8,3,10,1,8,1,10,1,8,9,15,1,8,2,15,2,14,3,15,1,8,10,9,1,10,4,8,1,10,9,8,2,10,5,8,2,10,2,8,5,10,2,8,2,10,2,8,15,10,2,8,3,15,1,8,2,10,2,8,6,15,2,8,16,15,1,8,15,10,7,19,10,4,129,}, + {4,25,19,35,10,1,15,3,10,1,19,5,10,1,8,1,14,2,15,1,8,9,15,1,14,1,15,1,8,1,15,2,8,3,15,1,14,2,15,5,8,1,15,1,8,7,10,2,8,6,15,1,8,6,10,1,8,6,15,1,8,19,10,3,8,12,10,1,8,1,10,2,8,3,10,2,8,2,10,6,19,2,10,2,8,7,10,9,8,1,10,3,8,7,10,2,8,1,10,2,8,6,10,3,8,3,10,2,8,3,4,1,8,1,10,2,8,3,10,7,8,15,10,2,8,2,10,1,8,11,10,1,8,6,10,3,8,5,10,3,8,3,15,1,8,9,15,1,8,1,10,1,19,36,4,7,19,23,10,2,8,10,10,3,19,36,4,18,19,20,10,2,14,3,8,13,15,2,14,2,15,2,8,1,15,4,8,6,10,2,8,1,10,8,8,9,10,1,8,13,15,1,8,1,15,1,14,1,15,1,8,1,10,1,8,4,15,1,14,1,8,1,10,5,8,2,10,6,8,1,10,7,8,2,10,1,8,2,10,2,8,5,10,2,8,2,10,1,8,10,10,2,8,3,10,2,8,5,10,2,8,1,10,1,8,21,15,1,8,11,15,1,10,1,8,1,10,2,8,1,10,4,19,13,4,128,}, + {4,25,19,35,4,1,15,1,4,2,10,1,19,4,10,1,15,1,14,1,15,3,8,3,15,1,8,2,9,2,8,1,15,1,14,2,8,4,9,1,8,1,14,3,15,7,8,7,10,3,8,8,10,1,8,4,10,1,8,11,10,4,8,9,10,1,8,1,10,1,8,14,10,1,8,9,10,2,8,2,10,6,8,7,10,7,8,1,10,1,8,2,10,3,8,4,10,5,8,1,10,1,8,3,10,1,8,1,10,4,8,3,10,1,8,1,10,1,8,2,10,1,8,1,10,2,8,2,10,6,8,3,10,1,8,1,10,2,8,9,10,3,8,1,10,1,8,9,10,2,8,7,10,3,8,1,10,6,8,7,10,1,8,7,10,2,19,37,4,7,19,22,10,2,8,9,10,3,19,38,4,18,19,21,10,2,8,1,14,1,8,2,15,1,8,3,10,4,8,3,15,2,14,2,8,1,10,1,8,2,15,3,8,1,10,1,8,6,10,4,8,1,10,1,8,1,10,1,8,15,10,2,8,7,15,1,14,1,8,4,10,2,8,3,14,2,15,1,8,1,10,4,8,1,10,4,8,1,10,1,8,1,10,5,8,6,10,4,8,5,10,3,8,7,10,2,8,16,10,1,8,1,10,1,8,5,10,3,8,2,15,1,8,9,7,1,14,3,8,10,10,1,8,1,10,1,8,3,10,2,19,14,4,128,}, + {4,25,19,44,10,1,15,2,8,1,15,2,8,5,9,1,8,1,15,2,14,2,15,1,8,6,15,6,14,1,15,2,8,2,10,1,8,4,10,2,19,2,10,1,8,11,10,4,8,2,9,1,8,2,10,2,8,1,10,5,8,9,10,3,8,13,10,2,8,5,10,1,8,3,10,9,8,7,10,7,8,2,10,1,8,8,10,3,8,5,10,1,8,3,10,2,8,9,10,1,8,1,10,1,8,1,10,2,8,1,10,5,8,1,10,1,8,8,10,1,8,6,10,1,8,1,10,1,8,1,10,3,8,8,10,2,8,6,10,3,8,2,10,6,8,7,10,1,8,7,19,38,4,8,19,22,10,1,8,1,15,1,10,4,8,2,14,1,15,1,10,2,19,37,4,20,19,21,10,3,8,1,10,2,8,2,10,7,8,1,15,2,8,1,10,2,8,10,10,13,8,1,10,1,8,1,10,4,8,22,14,1,8,5,15,1,8,2,10,5,8,1,10,2,8,5,10,4,8,1,10,4,8,1,10,3,8,8,10,1,8,26,10,2,8,2,15,2,8,2,10,2,8,5,15,1,8,4,14,1,15,1,8,4,14,1,8,10,10,1,8,5,4,1,19,15,4,128,}, + {4,25,19,44,10,1,14,2,15,1,8,3,15,1,8,5,15,1,8,1,14,3,15,1,8,8,15,6,8,1,10,2,8,4,10,1,19,4,10,2,8,6,10,2,8,4,15,1,14,1,15,1,8,1,9,1,8,5,10,3,8,8,10,1,8,1,10,1,8,15,10,2,8,8,10,2,8,1,10,11,8,2,10,2,8,1,10,1,8,1,10,1,8,1,10,2,8,10,10,2,8,11,10,4,8,4,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,3,10,1,8,7,10,1,8,2,10,1,8,7,10,2,8,17,10,3,8,3,10,5,15,2,8,10,4,1,8,1,10,1,19,38,4,8,19,22,10,7,8,1,10,4,19,38,4,20,19,22,10,1,8,2,10,2,8,1,10,8,8,2,10,3,8,1,10,2,15,1,14,1,15,1,8,1,10,1,8,3,10,1,8,3,10,2,8,3,10,1,8,6,10,4,8,15,15,2,8,6,10,2,8,11,15,2,10,3,8,2,10,5,8,8,10,2,8,13,10,1,8,8,15,1,8,16,15,1,8,8,15,2,8,3,15,1,14,1,8,4,14,1,8,8,15,1,8,4,10,1,8,1,15,1,10,2,19,15,4,128,}, + {4,25,19,44,10,3,8,1,10,2,8,1,15,3,8,3,15,3,14,2,15,4,8,1,9,1,10,2,8,1,15,1,8,2,15,2,8,5,10,1,8,3,10,1,19,3,10,2,8,7,10,1,8,3,15,1,14,3,15,1,8,3,10,1,8,1,10,1,8,29,10,3,8,2,10,2,8,1,10,6,8,1,10,7,8,1,10,1,8,1,10,3,8,4,10,1,8,6,10,7,8,2,10,3,8,1,10,3,8,1,10,5,8,2,10,2,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,9,10,1,8,35,10,6,8,1,4,1,10,3,8,1,4,1,8,1,15,1,8,5,15,1,8,2,10,2,19,37,4,10,19,22,10,4,19,1,10,6,19,37,4,22,19,23,4,1,15,2,8,1,10,4,4,1,10,1,4,2,10,8,8,1,14,4,8,6,10,2,8,5,10,1,8,6,10,4,8,2,10,1,8,3,10,1,8,5,15,1,8,4,15,1,8,6,10,1,8,7,15,1,8,3,14,2,10,7,8,1,10,1,8,3,10,2,8,15,10,2,8,2,10,1,8,2,10,1,8,3,10,1,8,20,10,4,8,2,15,2,8,7,14,2,8,10,15,1,8,7,10,1,19,16,4,128,}, + {4,25,19,47,10,3,8,1,15,8,14,3,15,3,8,1,10,3,9,1,8,1,15,2,8,1,15,1,8,3,10,1,8,6,10,1,19,2,10,4,8,2,10,2,8,6,15,1,14,2,15,1,8,4,10,2,8,28,10,1,8,1,10,5,8,1,10,8,8,1,10,7,8,1,10,2,8,1,10,1,8,1,10,3,8,6,10,9,8,2,10,4,8,1,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,9,10,2,8,16,10,1,8,4,10,1,8,27,10,4,8,1,10,8,8,4,15,2,4,2,19,39,4,10,19,21,10,2,19,9,10,1,19,37,4,22,19,23,10,1,4,1,10,7,4,1,10,1,4,1,10,8,8,1,14,1,15,1,16,1,14,1,15,1,8,2,10,2,8,1,10,3,8,13,10,2,8,6,10,2,8,1,10,1,8,6,10,1,8,1,14,1,8,13,15,1,8,5,10,4,8,5,10,7,8,1,10,1,8,4,10,2,8,6,10,1,8,2,10,1,8,13,15,1,8,1,10,2,8,5,15,1,8,6,10,1,8,2,15,3,8,2,14,1,8,4,14,2,8,9,10,1,8,6,10,3,19,16,4,128,}, + {4,25,19,47,10,3,15,3,8,2,15,1,8,1,15,2,14,5,15,2,9,1,10,3,8,2,15,1,8,8,10,1,8,2,10,2,19,3,10,2,8,3,10,5,8,2,15,3,8,38,10,7,8,3,10,4,8,1,10,2,8,1,10,1,8,1,10,6,8,1,10,3,8,2,10,1,8,1,10,1,8,1,10,4,8,2,10,1,8,7,10,1,8,1,10,5,8,13,10,2,8,1,10,1,8,4,10,1,8,6,10,4,8,34,10,1,8,4,4,1,10,6,4,1,8,2,15,1,8,1,4,2,19,38,4,12,19,68,4,24,19,25,4,1,10,5,4,3,10,6,8,1,10,2,8,1,14,1,15,1,14,2,15,2,8,2,10,2,8,1,10,3,8,6,15,4,8,1,15,1,8,4,10,1,8,13,10,2,8,12,10,1,8,5,10,2,8,7,10,3,8,8,10,3,8,13,10,1,8,2,10,1,8,20,10,1,8,6,14,1,8,1,10,1,8,1,15,1,8,4,14,1,15,1,8,1,14,3,8,7,10,1,8,1,10,3,8,2,10,3,19,16,4,128,}, + {4,25,19,48,10,1,8,1,15,1,8,3,15,1,8,2,15,2,14,3,15,1,14,1,15,1,14,1,8,1,9,1,10,2,8,5,9,1,8,4,10,2,8,2,10,2,19,3,10,3,8,3,10,3,8,7,10,1,8,1,15,1,8,1,10,1,8,1,10,1,8,2,10,3,8,23,10,1,8,2,10,13,8,1,10,4,8,1,10,6,8,1,10,4,8,6,10,3,8,2,10,1,8,2,10,1,8,7,10,4,8,14,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,4,10,3,8,2,10,1,8,31,10,1,8,5,10,1,8,1,10,5,8,1,14,1,15,1,4,1,19,40,4,12,19,68,4,24,19,25,4,1,10,1,19,1,10,4,4,4,10,1,4,1,10,4,8,1,14,2,8,9,10,5,8,7,15,1,8,12,10,2,8,10,10,2,8,4,10,5,8,2,10,5,8,9,10,4,8,6,10,3,8,2,10,1,8,10,10,1,8,12,10,2,8,7,10,4,8,5,14,1,15,1,10,1,8,1,15,2,8,1,15,1,8,1,14,2,8,1,14,4,8,7,10,4,8,2,10,3,19,16,4,128,}, + {4,25,19,43,10,3,19,2,10,1,8,5,15,2,8,1,15,3,14,2,15,1,14,3,8,2,9,2,10,2,8,3,10,4,8,1,10,3,8,2,10,1,19,2,10,1,19,1,10,2,8,1,10,1,8,1,10,2,8,2,15,1,8,5,10,2,8,3,10,1,8,3,10,1,8,18,10,1,8,8,10,18,8,1,10,1,8,1,10,10,8,1,10,2,8,1,10,3,8,3,10,1,8,1,10,1,8,5,10,1,8,1,10,6,8,14,10,1,8,2,10,1,8,3,10,3,8,2,10,2,8,5,10,1,8,1,10,1,8,15,10,1,8,24,10,3,4,1,8,1,4,1,19,36,4,17,19,66,4,24,19,1,4,3,19,26,10,3,4,3,10,1,4,2,10,5,8,1,14,2,8,4,10,1,8,5,10,5,8,3,9,1,8,1,15,2,8,3,15,2,8,2,10,1,8,5,10,1,8,8,10,1,8,1,10,1,8,5,10,11,8,3,10,1,8,7,10,1,8,3,10,5,8,1,10,1,8,3,10,1,8,5,10,1,8,4,10,1,8,12,10,4,8,5,10,2,8,7,15,2,8,7,15,1,14,2,8,11,10,2,8,1,10,1,8,2,10,3,19,14,4,130,}, + {4,25,19,35,10,6,19,1,10,1,8,1,15,1,10,5,9,1,15,9,14,1,15,2,14,3,8,4,10,2,8,2,10,4,9,1,8,3,10,2,8,1,10,2,19,3,10,2,8,2,10,4,8,7,10,3,8,17,10,1,8,12,10,1,8,1,10,1,8,2,10,9,8,1,10,7,8,7,10,1,8,1,10,4,8,1,10,6,8,6,10,1,8,1,10,1,8,3,10,8,8,14,10,1,8,1,10,3,8,5,10,5,8,3,10,1,8,7,10,1,8,1,10,1,8,1,10,2,8,13,14,2,8,9,10,1,8,5,10,2,19,39,4,17,19,66,4,24,19,1,4,3,19,26,10,1,4,1,10,2,4,1,10,1,4,1,10,6,8,2,14,2,15,1,8,7,10,1,8,4,10,1,8,3,9,1,8,6,10,1,8,3,10,2,8,2,10,1,8,3,10,1,8,9,10,1,8,3,10,18,8,4,10,1,8,6,10,1,8,2,10,2,8,11,10,1,8,3,10,2,8,12,10,1,8,9,10,3,8,8,15,1,8,1,10,1,15,1,8,2,14,2,8,2,10,1,8,8,10,1,8,4,10,4,19,14,4,130,}, + {4,25,19,31,10,7,8,1,15,1,8,2,9,1,8,1,9,1,15,1,8,1,10,4,8,2,15,2,14,1,15,1,8,1,15,1,14,1,15,2,14,1,15,1,14,2,15,1,8,1,9,1,8,3,15,1,8,1,9,1,10,1,9,1,8,2,15,1,8,6,10,1,19,5,10,1,8,1,10,3,8,2,15,1,8,6,10,1,8,11,10,1,8,1,10,1,8,3,10,1,8,5,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,13,8,1,10,7,8,1,10,1,8,7,10,3,8,1,10,7,8,2,10,1,8,4,10,4,8,1,10,5,8,15,10,1,8,3,10,1,8,7,10,5,8,30,14,2,15,1,8,3,15,1,8,4,10,1,8,5,4,1,19,40,4,17,19,64,4,26,19,1,4,3,19,25,10,4,4,2,10,1,4,1,10,1,4,1,10,4,8,1,14,1,15,3,8,23,10,1,8,2,10,3,8,4,10,2,8,1,10,1,8,5,10,3,8,1,10,1,8,2,10,14,8,1,10,3,8,5,10,3,8,7,10,1,8,11,10,2,8,2,10,3,8,2,10,1,8,6,10,1,8,11,10,1,8,1,10,1,8,12,15,1,8,2,15,1,8,3,15,2,8,6,10,1,8,4,10,4,19,14,4,130,}, + {4,25,19,31,10,2,15,1,8,1,10,1,8,1,15,1,8,1,15,6,8,1,10,3,8,1,15,2,8,2,14,1,15,4,14,3,15,2,8,1,15,2,8,3,9,1,10,1,15,2,8,1,10,1,9,1,8,10,19,5,10,3,8,1,10,1,8,6,10,1,8,12,10,2,8,2,10,1,8,3,10,2,8,7,10,1,8,6,10,5,8,1,10,6,8,5,10,3,8,5,10,1,8,1,10,2,8,1,10,1,8,3,10,3,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,3,8,1,10,1,8,1,10,4,8,17,10,1,8,6,10,1,8,1,10,1,8,2,10,3,8,30,14,2,8,3,10,1,8,4,15,1,8,6,10,1,4,1,19,40,4,16,19,64,4,26,19,1,4,3,19,25,10,7,4,1,10,6,8,1,14,2,8,20,15,1,8,2,10,2,8,3,10,3,8,6,10,1,8,4,10,2,8,2,10,2,8,4,10,2,8,2,10,1,8,4,10,3,8,2,10,1,8,27,15,1,8,6,10,1,8,11,10,1,8,5,15,1,8,24,15,2,8,1,15,1,8,13,10,2,19,15,4,129,}, + {4,25,19,30,10,2,15,1,14,1,15,2,14,1,15,1,8,3,15,2,14,1,15,2,10,3,8,1,14,1,15,1,8,1,15,7,14,2,15,3,14,2,15,1,8,4,15,1,14,1,15,1,8,1,9,1,8,7,10,1,8,1,10,1,19,1,10,3,19,1,10,4,8,16,10,2,8,10,10,3,8,4,10,1,8,8,10,2,8,2,10,1,8,1,10,5,8,2,10,1,8,2,10,2,8,6,10,1,8,1,10,6,8,2,10,2,8,1,10,3,8,1,10,1,8,1,10,1,8,3,10,1,8,5,10,4,8,2,10,2,8,14,10,1,8,3,10,1,8,2,10,2,8,2,10,3,8,31,14,1,8,3,4,2,10,3,8,1,10,2,8,2,10,1,4,2,19,39,4,18,19,62,4,28,19,1,4,3,19,25,10,15,15,2,8,6,10,2,8,1,10,1,8,2,10,1,8,9,10,2,8,3,10,2,8,2,10,1,8,3,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,11,10,7,8,1,10,4,8,17,10,3,8,4,10,1,8,10,15,1,8,2,15,1,8,10,15,1,8,9,15,1,14,1,8,26,10,1,8,2,10,1,19,15,4,129,}, + {4,25,19,29,10,1,9,1,15,3,8,1,15,1,8,1,15,1,10,1,8,2,15,5,8,1,10,3,8,4,15,2,14,1,15,1,9,1,8,1,14,1,15,1,8,1,14,4,15,3,14,1,15,1,14,3,15,4,8,5,10,2,9,1,10,4,19,3,10,1,8,2,10,5,8,5,10,1,8,3,10,1,8,3,10,1,8,4,10,1,8,6,10,2,8,3,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,5,10,4,8,2,10,4,8,6,10,1,8,1,10,5,8,1,10,9,8,7,10,2,8,5,10,2,8,6,14,1,8,12,10,3,8,2,10,1,8,2,10,2,8,18,10,1,8,3,10,1,8,12,14,1,15,1,8,1,10,1,4,2,19,3,10,5,19,42,4,18,19,62,4,28,19,1,4,3,19,28,10,13,8,7,10,1,8,1,10,2,8,3,10,1,8,7,10,3,8,13,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,15,10,11,8,1,10,1,8,14,10,1,8,3,15,1,8,2,10,1,8,35,15,4,8,10,10,2,8,2,10,2,8,2,10,1,8,2,10,1,8,2,10,3,19,15,4,129,}, + {4,25,19,30,9,2,10,1,8,1,10,5,8,1,15,1,8,2,15,2,8,1,10,7,8,2,14,1,15,1,8,1,10,1,8,1,15,2,8,1,15,1,8,3,15,1,14,3,8,1,15,1,14,2,15,4,8,5,10,2,8,3,10,2,19,1,10,1,19,1,10,1,8,1,10,5,8,5,10,1,8,3,10,1,8,3,10,1,8,3,10,2,8,6,10,1,8,1,10,1,8,2,10,8,8,3,10,1,8,10,10,4,8,2,10,1,8,2,10,1,8,1,10,4,8,1,10,3,8,1,10,3,8,1,10,1,8,1,10,1,8,6,10,2,8,6,10,2,8,3,10,1,8,2,14,1,8,5,10,1,8,3,10,1,8,2,10,1,8,6,10,2,8,6,10,1,8,6,10,3,8,8,10,1,8,11,15,1,8,2,10,1,4,2,19,44,4,1,19,3,4,20,19,60,4,30,19,1,4,3,19,28,10,10,8,1,10,2,8,5,10,1,8,1,10,1,8,1,10,2,8,1,10,8,8,2,10,2,8,10,10,5,8,1,10,1,8,1,10,1,8,8,10,2,8,10,10,7,8,3,10,3,8,19,15,3,8,6,15,3,8,6,10,1,8,7,15,1,8,1,15,1,8,10,15,1,14,2,8,10,10,3,8,2,10,2,8,4,10,1,8,2,10,4,19,14,4,129,}, + {4,25,19,30,10,1,19,2,10,1,19,2,10,4,8,3,15,3,8,1,10,5,8,1,10,2,8,2,9,1,8,2,15,1,14,2,8,5,15,1,8,1,15,1,8,2,14,1,15,1,8,1,15,1,14,1,15,1,8,1,15,3,8,8,10,7,8,5,10,1,8,2,10,1,8,1,10,1,8,6,10,1,8,3,10,1,8,10,10,3,8,1,10,5,8,15,10,3,8,7,10,5,8,2,10,2,8,1,10,2,8,2,10,1,8,1,10,1,8,14,10,1,8,4,4,1,8,14,10,1,8,3,10,1,8,2,10,2,8,1,10,1,8,7,10,1,8,4,10,2,8,8,10,1,8,11,15,2,8,1,4,2,19,45,4,1,19,1,4,1,19,1,4,20,19,60,4,30,19,1,4,3,19,30,10,6,8,3,15,1,8,6,10,1,8,1,10,1,8,1,10,2,8,1,10,7,8,3,10,3,8,9,10,2,8,1,10,2,8,1,10,1,8,2,10,3,8,1,10,2,8,19,10,2,8,1,10,1,8,2,10,3,8,30,15,1,8,1,10,1,8,1,15,4,8,8,15,1,8,9,15,2,14,1,15,2,8,14,10,2,8,5,10,6,19,14,4,129,}, + {4,28,19,36,10,1,9,1,15,1,14,1,15,4,8,7,10,1,8,4,15,2,14,2,15,1,8,6,15,2,8,1,15,2,8,2,15,1,8,1,15,4,8,7,15,1,8,1,10,4,8,2,10,1,8,1,10,1,8,17,10,3,8,10,10,1,8,1,10,5,8,16,10,1,8,6,10,1,8,2,10,3,8,1,10,1,8,4,10,1,8,11,10,3,8,1,10,1,8,3,10,1,8,1,10,3,8,2,10,1,8,16,10,1,8,4,10,2,8,11,10,2,8,1,10,2,8,21,15,1,10,1,4,2,19,38,4,33,19,56,4,32,19,32,10,1,19,1,10,3,8,1,10,1,8,1,14,3,15,1,8,1,15,1,8,4,10,1,8,3,10,1,8,2,10,7,8,1,10,1,8,3,10,1,8,9,10,4,8,1,10,1,8,6,10,1,8,3,10,1,8,20,10,5,8,4,10,1,8,1,10,2,8,1,10,1,8,18,15,1,8,5,15,2,8,1,14,1,15,1,8,7,15,1,8,11,14,2,8,2,15,1,8,1,15,1,14,1,8,7,10,2,8,3,10,1,8,7,10,1,8,1,10,1,19,13,4,2,19,7,4,121,}, + {4,29,19,35,4,1,8,1,15,1,14,3,15,1,8,3,15,1,8,1,9,1,8,1,14,1,15,1,8,5,15,1,14,3,15,4,8,2,15,2,8,1,15,2,8,1,15,2,8,1,15,1,8,1,15,3,8,2,10,1,8,6,10,3,8,17,10,1,8,1,10,1,8,2,10,4,8,9,10,1,8,1,10,5,8,23,10,1,8,3,10,3,8,1,10,1,8,4,10,1,8,9,10,5,8,3,10,1,8,2,10,4,8,1,10,1,8,17,10,1,8,4,10,1,8,15,10,1,8,22,10,1,4,2,19,38,4,33,19,56,4,32,19,34,10,3,8,2,14,1,15,1,14,1,15,2,8,4,10,1,8,1,10,1,8,3,10,1,8,2,10,10,8,10,10,1,8,3,10,3,8,1,10,1,8,3,10,2,8,2,10,3,8,1,10,1,8,13,10,1,8,7,10,3,8,1,10,1,8,6,10,1,8,9,10,1,8,17,15,1,8,8,15,1,8,12,14,1,15,1,8,2,15,1,8,3,15,2,8,1,10,1,8,1,10,1,8,2,10,3,8,6,10,1,8,3,10,2,19,12,4,2,19,7,4,121,}, + {4,29,19,35,10,1,8,1,15,1,14,3,15,2,8,2,15,3,8,1,10,2,8,2,15,1,14,1,15,3,14,1,15,1,14,2,15,1,8,1,10,2,8,2,15,1,8,4,10,2,8,3,15,2,8,2,10,1,8,3,10,2,8,27,10,1,8,4,10,1,8,7,10,5,8,9,10,3,8,9,10,2,8,1,10,2,8,1,10,1,8,1,10,1,8,19,10,1,8,1,10,2,8,1,10,1,8,2,10,3,8,39,10,1,8,18,10,1,8,5,4,1,8,1,4,1,19,39,4,33,19,54,4,34,19,34,10,3,15,1,14,1,15,1,14,1,15,2,8,5,10,1,8,3,10,3,8,2,10,9,8,4,10,2,8,4,10,8,8,1,10,1,8,6,10,3,8,1,10,3,8,14,10,2,8,9,10,2,8,1,10,1,8,2,10,1,8,24,15,1,8,4,15,1,14,1,15,1,8,7,15,1,14,2,8,6,14,2,15,1,8,10,10,2,8,2,10,4,8,3,15,1,8,3,10,4,19,13,4,1,19,7,4,121,}, + {4,30,19,34,10,1,9,2,8,1,14,2,15,1,8,2,15,2,8,7,15,1,14,1,15,6,14,1,15,1,8,1,10,2,15,1,8,1,15,1,8,2,15,1,8,1,10,2,8,4,10,2,8,1,10,1,8,1,10,3,8,27,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,2,10,7,8,5,10,1,8,3,10,1,8,9,10,6,8,1,10,2,8,1,10,1,8,8,10,1,8,7,10,1,8,3,10,1,8,7,10,1,8,1,10,1,8,39,10,1,8,10,10,1,8,12,10,1,4,1,19,39,4,35,19,51,4,35,19,35,10,1,8,1,14,2,8,9,10,1,8,1,10,1,8,2,10,2,8,2,10,7,8,12,10,2,8,2,10,1,8,1,10,2,8,4,14,1,8,3,10,3,8,1,10,2,8,8,10,2,8,1,10,2,8,9,10,1,8,1,10,2,8,26,10,2,8,22,10,1,8,19,10,2,8,6,15,1,8,5,10,1,8,1,10,1,19,20,4,122,}, + {4,31,19,35,10,2,15,2,8,8,15,2,8,1,15,4,8,1,15,6,8,1,10,1,8,1,15,1,8,1,15,1,8,2,15,1,8,1,10,2,8,4,10,1,8,2,10,1,8,30,10,1,8,2,10,2,8,8,10,3,8,1,10,4,8,3,10,1,8,16,10,1,8,2,10,1,8,1,10,2,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,9,10,1,8,7,10,1,8,1,10,1,8,21,10,1,8,6,10,2,8,8,10,1,8,2,10,2,8,20,10,2,19,39,4,35,19,50,4,46,19,25,10,2,14,2,8,11,10,1,8,4,10,5,8,8,10,1,8,1,10,1,8,11,10,1,8,5,14,1,8,5,10,2,8,1,10,1,8,8,10,8,8,1,10,1,8,12,10,1,8,8,10,2,8,2,15,1,8,1,10,1,8,7,10,1,8,7,10,2,8,15,10,1,8,9,15,1,8,20,10,2,8,1,10,1,19,20,4,122,}, + {4,32,19,35,10,2,8,4,15,1,8,2,15,4,8,6,9,1,8,4,10,4,8,7,10,2,8,1,10,5,8,1,10,3,8,20,10,1,8,1,10,1,8,2,10,5,8,1,10,1,8,1,10,1,8,12,10,1,8,2,10,1,8,3,10,3,8,19,10,2,8,2,10,1,8,2,10,3,8,21,4,1,8,3,10,1,8,5,10,1,8,10,10,1,8,1,10,1,8,9,10,1,8,11,10,1,8,21,10,2,19,36,4,39,19,49,4,46,19,25,10,2,14,2,15,1,8,10,10,1,8,6,10,2,8,7,10,1,8,3,10,1,8,3,10,2,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,3,8,1,10,2,8,9,10,9,8,2,10,1,8,1,10,2,8,5,10,3,8,6,10,1,8,9,15,1,8,6,10,1,8,4,15,1,8,11,15,2,8,21,10,2,8,6,10,1,8,2,15,1,8,1,10,7,19,20,4,121,}, + {4,33,19,35,10,1,8,3,15,6,14,2,10,2,19,2,10,11,8,1,10,1,8,5,10,1,8,4,10,5,8,24,10,1,8,1,10,4,8,24,10,1,8,2,10,1,8,18,10,2,8,3,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,1,10,1,8,17,10,1,8,5,10,1,8,7,10,1,8,26,14,1,8,23,10,2,19,34,4,41,19,46,4,49,19,25,10,1,8,2,15,1,8,8,10,1,8,1,10,1,8,5,10,3,8,10,10,1,8,1,10,1,8,4,15,1,8,4,10,1,8,4,10,3,8,1,10,4,8,4,10,1,8,5,10,1,8,2,10,5,8,5,10,7,8,12,10,1,8,4,10,2,8,9,10,1,8,2,10,1,8,1,15,1,8,5,10,1,8,13,10,2,8,8,10,1,8,8,10,1,8,8,10,7,19,20,4,121,}, + {4,33,19,35,10,3,8,2,15,3,14,2,15,1,8,1,10,1,19,4,10,10,8,4,10,1,8,2,10,1,8,2,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,25,10,3,8,1,10,2,8,16,10,4,8,2,10,3,8,18,10,3,8,1,10,2,8,2,10,4,8,1,10,2,8,1,10,1,8,9,10,4,8,3,10,2,8,1,10,1,8,5,10,1,8,5,10,2,8,5,10,1,8,37,10,1,8,7,4,1,10,2,19,31,4,42,19,51,4,45,19,24,10,1,14,1,8,1,14,1,8,16,10,1,8,1,10,4,8,5,10,1,8,1,10,2,8,3,10,1,8,1,14,1,8,10,10,1,8,6,10,1,8,3,10,2,8,1,10,1,8,3,14,1,8,2,10,2,8,1,10,1,8,15,10,1,8,8,10,3,8,4,10,1,8,11,10,1,8,2,10,1,8,5,10,3,8,2,10,1,8,22,15,1,8,2,10,2,8,3,10,3,8,7,10,3,19,19,4,121,}, + {4,33,19,36,10,7,4,1,10,3,19,11,10,4,8,8,10,2,8,15,10,1,8,2,10,3,8,14,10,3,8,1,10,2,8,3,10,1,8,12,10,1,8,3,10,2,8,15,10,2,8,2,10,6,8,1,10,1,8,1,10,2,8,5,10,1,8,3,10,2,8,4,10,4,8,1,10,3,8,8,10,1,8,13,10,1,8,13,10,1,8,5,10,1,8,27,4,3,19,27,4,48,19,40,4,53,19,23,10,1,14,1,15,1,8,9,10,1,8,1,10,1,8,4,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,2,10,5,8,1,10,1,8,24,10,2,8,6,14,1,15,1,8,13,14,1,8,4,10,1,8,5,10,1,8,4,10,3,8,1,15,1,8,2,10,1,8,1,10,1,8,10,10,1,8,2,10,1,8,5,10,1,8,1,10,1,8,15,15,2,8,7,15,1,8,2,10,1,8,4,10,3,8,6,10,5,19,16,4,123,}, + {4,33,19,58,10,4,8,9,10,1,8,2,15,1,10,1,8,1,14,2,8,11,10,3,8,14,10,4,8,13,10,1,8,1,10,1,8,2,10,7,8,2,10,1,8,10,10,13,8,3,10,3,8,3,10,1,8,3,10,1,8,4,10,8,8,18,10,1,8,1,10,1,8,2,10,1,8,47,4,1,10,1,4,1,19,26,4,48,19,40,4,54,19,21,10,2,14,1,8,8,10,1,8,4,10,3,8,2,10,1,8,4,10,1,8,3,10,7,8,24,10,5,8,6,10,1,8,11,14,1,8,12,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,6,10,1,8,7,10,1,8,3,10,1,8,10,10,1,8,6,15,2,8,2,15,2,8,2,14,1,15,1,8,13,15,1,8,3,10,1,8,1,10,3,8,3,10,4,19,18,4,121,}, + {4,33,19,58,10,4,8,10,10,1,8,4,14,2,15,1,10,1,8,4,10,1,8,1,10,1,8,2,10,2,8,16,10,2,8,3,10,2,8,13,10,3,8,1,10,3,8,2,10,3,8,9,10,12,8,8,10,1,8,2,10,4,8,4,10,5,8,22,10,1,8,6,10,1,8,45,4,1,19,27,4,48,19,38,4,57,19,20,10,2,15,1,8,13,10,3,8,2,10,1,8,2,10,1,8,1,10,2,8,1,10,1,8,1,10,8,8,13,14,1,8,7,10,5,8,6,10,2,8,8,10,1,8,8,10,1,8,8,10,2,8,1,15,1,8,4,15,1,8,7,10,2,8,1,10,1,8,3,10,1,8,10,10,1,8,7,15,2,8,2,15,1,14,2,15,2,8,7,10,1,8,1,15,1,8,8,10,1,8,1,10,1,8,5,10,4,19,17,4,121,}, + {4,33,19,55,4,2,10,1,4,1,10,1,8,11,10,4,8,2,15,1,8,6,10,2,8,4,10,1,8,1,10,1,8,16,10,3,8,2,10,1,8,3,10,1,8,2,10,1,8,4,10,1,8,2,10,3,8,4,10,1,8,15,10,9,8,1,10,1,8,17,10,3,8,24,10,1,8,3,10,1,8,2,10,3,8,43,10,1,19,27,4,50,19,36,4,58,19,20,10,1,14,1,8,3,10,1,8,10,10,1,8,1,10,1,8,4,10,1,8,1,10,2,8,4,10,1,8,1,10,1,8,2,10,2,8,21,10,4,8,8,10,1,8,1,10,3,8,4,10,3,8,6,10,1,8,3,10,1,8,1,10,1,8,7,10,2,8,40,15,2,14,1,8,3,10,1,8,5,15,1,8,19,10,3,19,16,4,121,}, + {4,37,19,51,4,2,10,2,8,11,10,2,8,7,10,1,8,11,10,1,8,2,10,1,8,1,10,1,8,14,10,1,8,1,10,2,8,5,10,3,8,2,10,1,8,2,10,1,8,6,10,3,8,12,10,6,8,2,10,2,8,6,10,1,8,5,10,1,8,1,10,1,8,5,10,3,8,7,10,4,8,1,10,3,8,10,10,4,8,3,10,1,8,12,10,1,8,8,10,1,8,22,10,1,19,27,4,53,19,22,4,5,19,4,4,61,19,18,10,2,14,1,15,1,8,2,10,2,8,12,10,1,8,2,10,1,8,3,10,1,8,2,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,19,10,1,8,7,10,1,8,3,10,1,8,8,15,2,8,3,10,1,8,14,15,1,8,3,10,1,8,42,10,1,8,2,14,1,8,12,15,1,8,10,10,1,8,4,10,5,19,15,4,121,}, + {4,37,19,31,10,2,4,1,19,19,10,2,8,9,10,1,8,24,10,1,8,1,10,1,8,17,10,2,8,6,10,1,8,2,10,6,8,14,10,1,8,6,10,4,8,1,10,1,8,1,10,1,8,8,10,1,8,5,10,3,8,1,10,1,8,2,10,4,8,7,10,1,8,2,10,5,8,9,10,4,8,4,10,1,8,12,10,1,8,18,10,1,8,10,10,2,19,27,4,60,19,4,4,16,19,4,4,64,19,15,10,2,15,1,8,2,10,2,8,6,10,1,8,2,10,2,8,1,10,1,8,4,10,2,8,1,10,1,8,4,10,1,8,1,10,5,8,12,14,1,8,8,9,1,8,3,10,1,8,1,10,2,8,8,10,1,8,6,10,1,8,5,10,1,8,6,15,1,14,1,15,2,8,1,10,3,8,3,15,2,8,5,15,2,8,5,15,1,8,18,15,1,8,4,10,1,8,2,15,3,8,12,10,1,8,10,10,1,8,3,10,4,19,15,4,121,}, + {4,37,19,29,10,3,15,1,10,1,19,17,10,4,8,13,10,1,8,39,10,1,8,2,10,1,8,3,10,1,8,3,10,6,8,23,10,3,8,2,10,3,8,10,10,3,8,1,10,2,8,2,10,1,8,3,15,1,8,3,4,1,8,4,10,1,8,1,10,7,8,10,10,3,8,2,10,1,8,12,10,1,8,6,10,1,8,1,10,1,8,13,10,1,8,7,4,1,10,1,19,27,4,148,19,15,10,2,14,1,8,2,10,1,8,10,10,2,8,3,10,1,8,3,10,3,8,1,10,1,8,1,10,2,8,1,10,2,8,1,10,1,8,2,10,1,8,3,10,1,8,7,14,1,8,3,15,2,8,2,9,1,8,7,10,1,8,15,15,1,8,6,15,3,8,3,15,1,14,1,8,2,10,3,8,10,15,1,8,1,15,1,8,6,10,1,8,16,14,1,15,1,8,7,15,1,8,8,10,1,8,1,15,1,8,16,10,6,19,14,4,121,}, + {4,38,19,27,10,1,15,1,14,1,15,1,14,1,9,1,19,17,10,6,8,51,10,1,8,2,10,2,8,2,10,1,8,1,10,3,8,1,10,2,8,3,10,3,8,9,10,1,8,1,10,1,8,8,10,1,8,4,10,3,8,1,10,1,8,24,10,1,8,5,10,7,8,11,10,1,8,3,10,3,8,4,10,1,8,5,10,1,8,3,10,1,8,15,10,1,8,10,15,1,4,1,10,1,19,26,4,148,19,15,10,1,8,1,14,3,8,3,10,1,8,13,14,2,8,1,10,1,8,1,10,3,8,1,10,6,8,1,10,1,8,1,10,2,8,3,15,1,8,7,10,1,8,1,15,2,8,3,14,1,9,1,8,7,10,1,8,6,14,4,15,1,8,1,15,2,8,1,15,1,8,4,14,4,8,1,15,1,8,1,15,1,8,5,15,2,8,2,15,1,8,1,15,3,8,2,10,3,8,13,15,1,8,13,15,1,8,3,15,2,8,3,15,1,8,5,15,1,14,1,15,2,14,1,15,1,8,6,10,3,8,1,10,3,8,2,10,3,19,15,4,120,}, + {4,39,19,26,10,3,4,4,19,16,10,6,8,32,10,1,8,21,10,1,8,2,10,3,8,1,10,3,8,2,10,1,8,1,10,4,8,8,10,1,8,2,10,1,8,1,10,1,8,7,10,1,8,3,10,1,8,1,10,4,8,28,10,6,8,1,10,2,8,2,10,1,8,11,10,4,8,1,10,1,8,1,10,1,8,4,10,2,8,16,10,2,8,14,10,1,4,1,19,28,4,146,19,14,10,2,8,1,15,3,8,3,10,1,8,1,15,1,8,1,10,1,8,11,14,1,8,2,10,1,8,1,10,2,8,16,14,2,8,4,15,1,14,2,8,8,15,2,8,1,10,1,8,8,14,5,8,3,14,1,8,3,14,5,16,1,14,1,8,6,15,2,8,4,15,1,8,2,14,1,15,1,8,2,10,1,8,1,10,1,8,23,10,1,8,2,15,1,8,1,10,1,8,5,15,1,8,6,15,3,14,2,15,3,8,1,10,2,8,2,10,1,8,1,10,1,8,3,10,1,8,1,10,4,19,19,4,115,}, + {4,38,19,41,4,2,10,13,8,31,10,1,8,23,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,17,10,1,8,3,10,1,8,1,10,1,8,6,10,2,8,1,10,8,8,14,10,2,8,9,10,1,8,1,10,10,8,15,10,3,8,2,10,1,8,5,10,1,8,1,10,1,8,15,10,1,8,14,10,1,19,29,4,146,19,14,10,1,8,1,15,1,8,22,16,1,8,1,10,2,8,7,10,1,8,7,15,1,8,3,14,1,15,3,8,1,10,1,8,2,15,1,8,1,15,1,8,6,15,2,8,10,15,1,8,1,15,1,14,2,15,1,8,6,15,1,14,3,16,2,14,1,8,12,15,2,8,1,15,2,8,2,10,1,8,44,15,2,14,4,15,1,8,1,10,1,8,1,10,1,8,2,10,2,8,2,10,3,8,1,10,4,19,18,4,115,}, + {4,38,19,39,10,4,4,1,10,3,8,1,10,3,8,2,10,4,8,1,10,1,8,7,10,1,8,1,10,1,8,19,10,1,8,18,10,1,8,2,10,1,8,1,10,3,8,3,10,1,8,14,10,1,8,5,10,1,8,1,10,1,8,8,10,5,8,1,10,4,8,6,10,1,8,6,10,1,8,1,10,1,8,6,10,1,8,2,10,5,8,3,10,3,8,14,10,3,8,3,10,2,8,5,10,1,8,3,10,1,8,26,15,2,10,1,19,30,4,146,19,13,10,1,8,1,15,1,8,18,15,1,14,1,8,1,15,1,8,5,14,2,8,7,10,1,8,2,14,2,8,10,15,1,8,1,10,2,8,1,14,1,8,7,15,2,8,8,15,1,8,1,15,1,14,2,8,1,10,1,8,5,15,1,14,5,8,4,15,1,8,3,15,1,8,21,15,1,8,2,10,1,8,3,10,1,8,15,10,1,8,7,15,1,8,4,15,2,14,4,15,1,8,5,10,2,8,1,10,2,8,3,10,4,19,20,4,113,}, + {4,37,19,37,10,3,8,2,15,1,8,2,15,1,8,1,15,3,8,5,10,4,8,7,10,1,8,1,10,1,8,19,10,1,8,20,10,1,8,3,10,3,8,3,10,2,8,21,10,1,8,9,10,1,8,5,10,2,8,8,10,2,8,2,10,1,8,12,10,5,8,3,10,4,8,7,10,1,8,9,10,1,8,9,10,2,8,2,10,1,8,28,19,31,4,146,19,2,4,1,19,10,10,1,8,1,14,1,15,1,8,2,10,2,8,8,14,1,8,1,14,2,8,1,14,3,8,13,16,1,8,1,10,2,8,1,14,2,8,4,15,2,8,3,10,1,8,1,15,1,8,3,15,1,8,2,10,3,8,1,10,1,8,11,14,2,15,1,8,9,15,1,8,3,14,1,8,3,10,1,8,2,10,1,8,13,15,1,8,2,15,2,8,13,15,1,8,3,10,1,8,4,10,3,8,14,15,2,14,3,17,1,14,2,8,1,15,1,8,3,15,1,10,2,8,1,10,2,8,2,10,4,15,1,10,1,19,19,4,113,}, + {4,36,19,37,10,1,8,1,15,1,8,1,15,1,8,2,10,2,8,2,15,2,14,2,15,1,8,5,10,1,8,3,10,1,8,3,10,1,8,24,10,1,8,6,10,1,8,16,10,2,8,4,10,1,8,16,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,3,10,2,8,3,10,2,8,9,10,1,8,1,10,1,8,1,10,3,8,5,10,2,8,5,10,4,8,3,10,3,8,3,10,1,8,3,10,1,8,2,10,1,8,5,10,1,8,7,10,1,8,3,10,1,8,1,10,1,8,29,15,1,19,31,4,146,19,1,4,2,19,10,10,1,15,1,14,2,15,1,8,5,14,2,15,1,8,5,14,2,8,1,15,2,8,5,10,1,8,1,10,3,8,2,14,3,8,15,10,1,8,3,10,1,8,4,10,2,8,1,10,3,8,10,14,2,8,7,15,1,8,3,10,1,8,2,15,2,8,1,10,1,8,1,10,1,8,1,10,1,8,13,15,1,8,2,15,1,8,6,10,1,8,7,15,1,8,6,15,1,8,1,10,2,8,2,10,1,8,2,15,1,8,8,15,2,14,8,17,2,14,1,8,2,10,1,8,2,10,2,8,2,10,7,19,18,4,113,}, + {4,36,19,37,10,1,8,9,15,1,8,1,15,1,14,2,8,1,9,1,10,1,8,12,10,1,8,3,10,2,8,35,10,1,8,6,10,4,8,1,10,1,8,23,10,1,8,3,10,1,8,2,10,8,8,2,10,1,8,7,10,4,8,2,4,1,10,1,8,4,10,1,8,1,10,1,8,3,10,4,8,3,10,1,8,1,10,1,8,1,10,1,8,6,10,2,8,15,10,1,8,3,10,2,8,29,15,1,10,1,19,30,4,149,19,10,10,1,9,1,14,3,8,5,14,3,8,15,10,2,8,4,15,1,14,3,8,24,10,2,8,4,10,1,8,9,15,3,8,6,14,1,15,1,8,2,10,1,15,1,8,1,10,1,15,1,8,1,10,6,8,21,15,1,8,6,15,2,8,19,15,1,8,7,15,1,14,6,17,1,16,2,17,1,15,1,8,5,10,2,8,1,10,8,19,18,4,112,}, + {4,35,19,38,10,1,14,1,8,8,15,2,8,1,15,1,14,1,8,11,15,2,8,2,10,1,8,3,10,3,8,33,10,1,8,8,10,4,8,22,10,2,8,3,10,12,8,1,10,2,8,8,10,2,8,4,10,1,8,1,10,1,8,5,10,1,8,2,10,4,8,5,10,1,8,1,10,1,8,21,10,1,8,1,10,1,8,3,10,1,8,27,10,1,8,2,15,1,19,33,4,147,19,10,10,1,8,1,15,6,8,1,10,1,8,1,14,1,8,16,10,5,8,4,16,1,14,1,8,1,10,1,8,11,15,1,8,9,10,1,8,2,10,1,8,10,10,1,8,4,14,1,8,5,14,2,15,1,8,2,15,2,8,3,10,2,8,3,15,5,8,14,15,1,8,2,15,2,8,3,15,2,8,21,14,1,8,6,7,1,14,12,15,1,8,2,15,1,8,1,10,5,8,1,10,1,8,1,10,4,19,17,4,112,}, + {4,35,19,38,10,1,8,7,9,1,8,1,14,2,8,1,15,1,14,5,15,1,8,5,15,1,14,2,8,4,15,1,8,2,10,3,8,1,10,1,8,36,10,2,8,2,10,1,8,1,10,2,8,4,10,1,8,20,10,15,8,2,15,1,8,11,10,7,8,5,10,3,8,3,10,1,8,4,10,1,8,54,14,1,8,3,14,1,10,1,19,32,4,146,19,11,10,2,9,1,8,2,14,3,8,5,14,1,15,1,8,9,14,1,16,1,14,1,10,2,8,8,14,1,8,6,10,1,8,9,15,2,8,1,10,1,8,2,10,1,8,3,10,3,8,4,15,1,14,1,15,1,8,3,10,1,8,9,10,1,15,2,8,1,15,1,14,1,15,1,8,5,14,1,15,1,14,2,15,1,8,2,15,1,14,1,15,1,8,12,15,1,8,8,10,1,8,2,15,2,8,7,15,1,8,1,15,1,14,8,7,1,8,5,14,12,15,1,8,3,15,1,8,1,10,2,8,1,10,3,8,2,10,1,8,1,10,2,19,17,4,112,}, + {4,34,19,26,4,1,15,1,4,1,19,10,10,2,8,7,15,1,8,1,15,3,8,3,15,1,14,1,8,1,15,2,14,1,15,1,14,3,15,4,8,1,14,1,15,1,10,4,8,1,10,3,8,64,10,2,8,2,10,15,8,8,10,1,8,6,10,5,8,4,10,3,8,9,10,1,8,15,10,2,8,3,10,2,8,16,14,1,8,12,14,2,8,1,14,1,8,3,15,1,10,1,19,32,4,146,19,11,10,2,9,1,8,1,15,2,14,2,15,2,8,1,15,1,14,3,8,7,15,1,14,1,8,1,14,1,8,2,10,2,8,6,15,1,8,4,10,1,8,13,15,1,8,8,10,3,8,7,14,1,8,2,10,2,8,4,14,1,8,1,15,2,14,1,8,1,10,1,8,3,15,1,8,1,14,1,8,1,10,2,8,1,14,2,15,2,8,3,15,1,8,1,15,1,8,2,15,5,8,3,15,3,8,9,15,1,14,1,8,2,15,1,8,1,10,1,8,5,15,1,14,4,17,1,14,4,7,1,14,11,8,2,14,3,8,7,15,1,8,1,10,2,8,2,10,2,8,1,10,3,19,16,4,112,}, + {4,34,19,26,4,1,14,1,4,1,19,10,10,1,14,1,15,1,8,3,15,4,8,1,15,1,14,1,15,1,8,3,15,2,8,1,15,5,14,1,15,2,8,1,15,3,14,1,15,1,8,1,10,3,8,3,10,2,8,5,10,1,8,57,10,1,8,4,10,1,8,1,10,7,8,2,10,3,8,3,10,1,8,1,10,1,8,1,10,1,8,8,10,3,8,6,10,3,8,25,10,1,8,4,10,1,8,29,14,1,8,6,14,1,10,1,19,32,4,146,19,11,10,3,8,1,14,2,15,4,14,2,8,1,15,1,8,8,14,2,8,4,10,1,8,4,10,1,8,2,14,1,8,5,10,1,8,2,15,1,8,9,15,1,8,4,15,2,8,2,10,1,8,3,10,1,8,9,15,1,8,1,10,1,8,3,14,1,15,1,14,2,8,11,15,1,14,2,8,1,15,3,8,1,15,4,8,3,15,4,8,4,15,2,8,6,15,2,14,1,8,10,15,1,8,4,14,8,15,1,14,3,8,1,7,2,14,1,8,1,15,1,8,2,14,2,15,3,8,8,10,1,8,2,10,7,19,15,4,112,}, + {4,34,19,25,10,1,4,3,19,10,10,1,15,3,8,2,14,4,15,3,8,4,15,1,8,1,15,4,8,1,15,3,8,3,15,1,14,2,15,1,8,1,10,3,8,1,15,1,8,2,10,1,8,68,10,4,8,1,10,4,8,1,10,1,8,1,10,1,8,6,10,2,8,11,10,1,8,1,10,1,8,2,10,5,8,7,10,1,8,2,10,1,8,1,10,1,8,11,10,1,8,14,14,2,8,8,10,1,8,2,10,1,8,7,10,3,8,4,15,1,10,1,19,32,4,147,19,11,10,2,8,1,14,2,15,4,14,1,8,11,14,1,15,1,8,9,10,2,8,1,15,2,8,15,15,1,8,2,15,1,8,11,10,1,8,1,10,3,8,5,15,1,8,14,15,1,14,1,15,1,8,4,15,1,8,1,15,1,8,1,15,1,8,4,15,2,8,5,15,3,8,4,15,1,8,5,15,4,8,2,10,1,8,9,15,1,8,2,7,1,8,1,14,5,15,1,8,1,7,1,8,11,14,4,8,9,10,1,8,2,10,6,19,15,4,112,}, + {4,33,19,40,10,1,14,3,8,1,10,1,14,1,15,5,8,3,9,1,8,1,15,3,14,2,8,1,15,5,8,2,15,1,14,1,15,2,10,4,8,1,14,1,8,6,10,1,8,51,10,1,8,12,10,2,8,3,10,6,8,9,10,1,8,1,10,1,8,8,10,3,8,2,10,5,8,7,10,1,8,1,10,1,8,3,10,1,8,8,10,1,8,3,10,1,8,1,10,1,8,10,10,1,14,1,8,7,10,1,8,7,10,1,8,2,14,1,8,8,15,1,10,1,19,33,4,143,19,14,10,1,9,1,15,1,14,1,15,4,8,15,14,1,8,7,10,4,8,2,15,1,8,14,15,1,8,2,15,1,8,4,10,2,8,2,10,2,8,1,10,1,8,7,10,1,8,1,10,1,8,3,15,1,8,2,14,1,8,1,15,2,14,7,8,1,10,1,8,4,14,1,15,1,8,2,15,1,8,2,15,3,8,5,15,1,8,1,15,1,14,1,8,9,15,3,8,9,15,1,8,2,14,1,8,2,14,1,8,2,14,4,7,1,8,1,14,1,8,11,14,4,8,6,10,2,8,1,10,1,8,2,10,7,19,14,4,112,}, + {4,33,19,40,10,1,14,1,15,2,8,2,15,1,14,11,15,1,14,1,15,2,8,1,15,4,14,1,15,1,14,3,15,1,8,1,10,4,8,1,15,1,8,5,10,1,8,24,10,1,8,28,10,1,8,4,10,1,8,6,10,1,8,3,10,1,8,1,10,6,8,8,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,6,10,6,8,1,10,1,8,4,10,3,8,4,10,1,8,1,10,1,8,1,10,1,8,5,10,3,8,13,14,1,8,6,10,1,8,7,14,2,8,7,10,1,8,3,10,2,19,33,4,139,19,16,10,2,8,1,14,2,15,3,8,3,10,2,8,11,14,1,15,1,8,3,10,1,8,21,15,1,8,1,15,1,8,2,15,2,8,1,15,2,8,5,10,1,8,3,10,1,8,5,10,1,8,1,10,1,8,2,10,1,8,8,14,1,8,2,14,3,8,4,10,1,8,1,15,1,8,4,10,1,8,3,15,1,8,4,15,1,8,2,15,1,14,1,8,30,14,1,8,2,14,3,8,12,14,5,8,5,10,1,8,2,10,1,8,2,10,2,8,1,10,5,19,13,4,112,}, + {4,33,19,40,10,1,14,1,15,1,8,1,15,2,8,1,15,3,14,1,17,1,14,8,15,4,14,1,15,7,9,1,10,2,19,1,10,2,8,2,14,1,8,2,10,1,8,25,10,1,8,29,10,1,8,13,10,3,8,2,10,6,8,1,10,1,8,7,10,2,8,5,10,2,8,4,10,9,8,3,10,1,8,1,10,4,8,3,10,1,8,1,10,1,8,1,10,1,8,6,10,1,8,14,14,1,8,15,14,1,8,2,10,1,8,9,10,1,19,33,4,138,19,17,10,2,15,1,14,1,15,2,8,4,10,1,8,1,10,2,8,12,15,1,8,1,10,2,8,3,14,2,15,2,8,1,10,2,8,9,15,2,8,1,15,1,8,4,15,2,8,2,14,1,15,1,8,5,10,1,8,3,10,2,8,4,15,2,8,3,10,1,8,2,10,1,8,1,10,1,8,12,10,1,8,11,10,1,8,6,15,2,8,2,10,1,8,1,10,1,8,2,10,2,8,18,15,1,8,2,7,1,8,1,14,3,8,12,14,7,15,2,8,3,10,2,8,5,10,1,8,1,10,3,19,13,4,112,}, + {4,33,19,40,10,1,15,1,14,1,15,3,8,4,14,1,16,2,14,3,15,2,14,1,15,1,8,2,15,5,8,5,10,3,19,1,10,3,8,3,10,2,8,3,10,1,8,44,10,1,8,19,10,1,19,2,10,1,8,3,10,6,8,2,10,2,8,1,10,3,8,3,10,6,8,3,10,3,8,2,10,6,8,1,10,1,8,1,10,5,8,1,10,1,4,1,8,1,10,1,8,1,10,1,8,14,10,2,8,1,10,1,8,4,14,2,8,9,10,1,8,3,10,1,8,12,4,1,10,1,19,33,4,137,19,18,10,2,14,2,15,2,8,1,10,3,8,3,10,1,8,15,10,1,8,3,14,2,15,2,8,1,10,3,8,8,15,1,8,7,15,1,8,3,15,2,8,1,15,1,8,4,10,2,8,7,15,1,14,1,8,1,15,1,8,1,10,2,8,1,10,1,8,5,15,1,8,1,10,2,8,5,10,1,8,7,15,1,8,7,15,1,8,6,10,1,8,4,10,2,8,38,14,8,8,11,10,1,8,1,10,4,19,12,4,112,}, + {4,33,19,41,10,1,14,4,17,1,14,2,8,1,15,1,8,5,9,1,10,1,8,1,15,1,8,2,15,1,9,1,15,4,8,1,15,2,8,1,10,2,19,3,10,1,4,1,10,3,8,5,10,1,8,8,10,1,8,11,10,1,8,23,10,1,8,5,10,1,8,5,10,1,8,5,10,3,19,1,10,1,8,4,10,6,8,2,10,4,8,1,10,1,8,5,10,6,8,2,10,1,8,3,10,1,8,2,10,2,8,4,10,1,8,9,10,1,8,1,10,2,8,5,10,1,8,5,10,4,8,4,14,3,8,6,10,1,8,2,10,1,8,16,15,1,10,1,19,33,4,136,19,20,15,1,14,3,15,1,8,1,10,4,8,18,10,2,8,2,14,1,15,1,8,2,10,1,8,2,10,2,8,7,15,1,8,7,15,2,8,4,15,3,8,3,10,1,8,6,15,1,14,1,8,4,10,1,8,5,10,1,8,5,10,1,8,2,10,1,8,2,10,3,8,2,15,1,8,2,15,1,8,20,10,2,8,5,14,1,8,10,15,2,8,7,10,1,8,3,15,4,8,4,14,1,17,1,14,1,8,2,14,4,8,9,15,1,8,3,10,4,19,11,4,113,}, + {4,33,19,20,10,2,4,1,10,1,4,1,19,16,10,1,8,1,15,1,14,6,15,1,14,1,15,1,8,1,14,2,8,5,15,1,8,1,15,2,14,1,15,1,14,1,15,2,8,2,10,1,19,4,10,2,8,54,10,2,8,14,10,1,8,1,10,1,19,2,10,2,8,3,10,7,8,13,10,2,8,2,10,1,8,1,10,1,8,5,10,1,8,3,10,1,8,9,10,1,8,1,10,2,8,1,10,2,8,13,10,2,8,5,14,1,8,12,10,1,8,17,10,2,19,33,4,52,19,18,4,8,19,8,4,46,19,21,10,1,8,1,14,1,8,1,14,2,15,1,8,1,10,4,8,17,10,2,8,1,15,2,8,2,10,1,8,1,10,3,8,10,10,1,8,3,15,2,8,1,10,1,8,4,15,1,14,2,15,1,8,19,10,1,8,7,10,1,8,3,10,2,8,2,14,1,8,1,15,1,8,2,15,1,8,3,15,1,8,10,10,1,8,4,15,2,10,5,8,1,15,1,8,23,15,2,8,8,14,2,8,1,14,6,15,3,8,4,15,4,14,1,15,1,8,1,10,3,19,13,4,110,}, + {4,32,19,20,10,2,4,1,9,2,4,1,19,16,10,2,8,1,14,5,15,2,14,4,15,1,14,1,15,3,14,3,15,1,8,1,15,2,14,1,15,1,8,2,10,2,19,4,10,2,8,57,10,1,8,7,14,1,8,6,4,1,19,2,10,1,8,3,10,1,8,1,10,6,8,3,10,1,8,10,10,6,8,10,10,2,8,6,10,3,8,37,10,1,8,19,10,1,19,33,4,52,19,18,4,8,19,10,4,44,19,20,10,1,8,1,15,2,8,5,10,1,8,11,10,1,8,9,10,2,8,8,10,1,8,4,10,1,8,2,10,1,8,4,15,2,14,1,15,1,8,4,15,2,8,1,15,4,8,1,10,2,8,6,10,2,8,1,10,1,8,1,10,1,8,4,10,1,8,2,10,2,8,1,10,1,8,3,10,2,8,4,15,2,8,3,15,1,8,14,10,2,8,2,14,1,8,2,10,3,8,10,15,1,14,1,15,1,8,14,15,2,8,7,15,3,14,4,7,1,15,1,14,2,8,1,15,1,8,5,15,3,8,3,10,2,19,13,4,110,}, + {4,32,19,18,10,1,19,1,10,1,4,5,19,10,10,2,19,3,10,5,9,1,15,1,14,1,15,1,14,9,15,1,14,5,8,1,15,4,8,1,10,1,19,5,10,2,8,45,10,1,8,1,10,1,8,9,10,1,8,11,10,2,8,2,10,2,19,1,10,1,8,1,15,1,8,2,10,7,8,15,10,2,8,1,10,3,8,9,10,1,8,6,10,3,8,4,10,1,8,35,10,1,8,17,4,1,10,1,19,32,4,51,19,19,4,5,19,15,4,40,19,22,10,1,15,1,14,1,8,3,10,1,8,24,10,1,8,3,15,1,8,10,10,1,8,5,10,1,8,2,15,1,14,2,8,4,15,1,14,1,15,4,8,3,10,1,8,9,10,1,8,5,10,1,8,2,10,2,8,1,10,1,8,10,15,1,8,1,10,1,8,2,14,1,8,17,14,1,15,1,8,3,10,2,8,1,15,1,8,8,15,1,14,2,8,24,15,1,8,1,15,1,14,4,8,1,7,1,15,1,8,1,15,1,8,7,15,1,8,1,15,1,8,1,9,1,10,1,19,14,4,109,}, + {4,32,19,18,4,1,19,14,4,1,15,1,9,1,10,2,19,1,10,1,19,1,10,1,8,2,14,1,15,3,10,1,8,4,10,1,8,1,14,6,15,1,14,5,15,2,8,1,10,2,19,5,10,2,8,44,10,1,8,1,10,1,8,1,10,2,8,17,10,3,8,3,10,2,19,1,10,1,8,4,10,7,8,2,10,1,8,12,10,3,8,2,10,2,8,2,10,1,8,14,10,1,8,1,10,1,8,9,10,1,8,8,10,1,8,36,15,1,14,1,8,1,10,1,19,31,4,50,19,20,4,3,19,20,4,37,19,22,10,1,15,1,14,1,15,1,8,1,10,2,8,6,15,1,8,8,10,1,8,4,10,1,8,2,10,1,8,2,15,2,8,16,10,1,8,5,15,1,14,1,15,1,8,1,10,1,8,1,15,1,14,1,15,3,8,1,10,1,8,1,10,1,8,4,10,2,8,10,10,1,8,7,10,1,8,3,10,1,8,2,15,3,8,2,14,1,15,2,8,17,15,1,8,5,15,1,8,7,15,1,8,2,15,1,14,2,8,12,15,3,8,12,14,3,7,1,8,2,14,1,8,1,15,1,8,1,15,2,8,7,10,2,19,14,4,109,}, + {4,32,19,33,10,2,15,1,8,1,10,3,8,2,14,1,15,2,8,2,14,2,8,1,15,1,14,1,15,1,8,2,14,11,15,1,10,6,19,4,10,2,8,20,14,1,8,29,10,1,8,3,10,1,8,12,10,1,8,5,10,2,19,1,10,3,8,3,10,6,8,12,10,1,8,2,10,2,8,3,10,2,8,1,10,3,8,21,10,1,8,15,10,1,8,34,15,1,10,3,19,30,4,48,19,46,4,36,19,21,10,2,8,1,14,1,15,1,10,2,8,2,10,1,8,4,14,1,8,19,15,1,8,5,15,2,8,1,15,1,8,4,14,2,8,3,15,3,8,6,15,1,8,1,15,3,8,2,15,1,8,13,10,1,8,5,10,1,8,1,10,2,8,4,10,2,8,6,15,1,14,1,15,1,14,2,8,2,15,2,8,4,10,1,8,5,15,1,8,1,15,1,8,5,15,1,8,2,10,1,8,7,15,1,8,3,14,2,15,1,8,12,14,2,16,1,14,1,8,12,15,1,8,2,15,2,14,1,15,1,8,1,15,2,8,7,10,2,19,15,4,108,}, + {4,32,19,32,10,3,15,2,8,5,15,2,14,1,15,1,8,1,15,1,14,1,15,1,8,1,15,1,14,2,15,1,14,8,8,1,15,4,14,1,15,1,10,3,19,4,10,1,8,7,14,1,8,1,14,1,8,1,14,1,8,9,14,1,8,23,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,2,10,1,8,16,10,2,19,5,10,2,8,1,10,6,8,1,10,1,8,10,10,1,8,10,10,4,8,11,10,1,8,1,10,1,8,2,10,7,8,51,10,3,19,28,4,48,19,46,4,34,19,1,4,1,19,21,10,1,8,1,10,1,8,2,10,1,8,15,10,1,8,8,10,1,8,2,15,1,14,2,8,4,14,2,8,1,14,1,15,1,8,3,15,1,14,2,15,2,14,1,15,1,8,4,15,1,8,7,15,3,8,6,10,1,8,2,10,1,8,9,10,1,8,1,10,2,8,9,15,1,8,1,10,1,8,2,15,2,8,6,15,2,8,6,15,1,14,2,8,3,15,2,8,3,10,2,8,11,15,1,14,3,8,1,10,2,8,5,10,1,8,2,15,1,14,1,16,1,14,1,8,13,14,6,15,4,8,1,10,4,8,1,10,3,19,14,4,108,}, + {4,32,19,26,10,1,19,3,10,6,8,2,15,1,14,1,15,1,14,1,15,2,14,3,8,5,14,3,8,1,14,4,15,1,8,1,10,2,8,1,15,5,10,8,8,30,10,1,8,13,10,1,8,4,10,1,8,2,10,8,8,1,10,1,8,12,10,2,19,4,10,2,8,2,10,4,8,2,10,1,8,3,10,3,8,4,10,1,8,5,10,1,8,4,10,5,8,9,10,1,8,4,10,8,8,13,10,1,8,38,15,1,10,2,19,27,4,46,19,50,4,30,19,3,4,1,19,20,10,2,8,1,10,1,8,2,10,3,8,26,14,1,15,1,8,3,10,1,8,1,15,1,8,8,14,2,8,4,15,1,8,3,15,1,8,7,15,2,8,2,15,2,8,1,10,1,8,14,10,3,8,5,14,2,8,2,15,1,8,1,10,1,8,3,15,1,10,1,8,4,15,1,14,2,8,7,15,4,8,3,10,1,8,14,15,1,8,1,15,2,14,1,8,2,10,1,8,6,15,1,8,18,14,2,17,2,14,3,15,1,8,3,10,8,19,17,4,105,}, + {4,32,19,26,10,2,19,1,10,1,15,1,8,3,10,4,8,1,15,5,8,2,15,1,8,4,14,4,15,1,8,1,15,1,14,3,15,2,14,2,15,1,8,1,10,10,8,22,10,1,8,10,14,1,8,20,10,4,8,1,10,2,8,4,14,1,8,11,19,3,10,2,8,2,10,4,8,1,10,1,8,1,10,2,8,2,10,6,8,6,10,1,8,6,10,4,8,2,10,2,8,4,10,1,8,6,10,6,8,55,10,1,19,27,4,46,19,50,4,30,19,3,4,1,19,20,10,3,8,4,10,2,8,2,10,1,8,1,15,1,8,5,15,2,8,2,10,4,8,2,10,2,8,6,10,1,8,3,14,2,8,1,15,1,8,2,14,1,15,1,8,5,15,1,8,2,14,2,8,2,15,3,8,21,10,1,8,3,10,1,8,2,10,2,8,2,15,1,8,11,15,1,8,4,15,4,8,5,15,1,8,4,15,1,8,3,10,2,8,1,15,1,14,2,15,1,8,10,15,4,8,8,15,1,8,7,10,2,8,6,10,1,8,5,7,1,14,4,15,1,8,2,10,2,9,1,10,5,19,18,4,105,}, + {4,32,19,25,10,1,15,1,10,4,8,4,10,4,8,4,14,1,15,2,14,1,8,1,15,2,8,1,14,1,15,1,14,1,15,1,14,1,8,1,14,1,8,1,14,4,8,5,10,9,8,49,10,3,8,1,10,8,8,7,14,1,8,8,10,1,8,1,10,1,19,1,10,1,4,1,10,7,8,4,10,10,8,1,10,1,8,1,10,1,8,7,10,4,8,7,10,1,8,1,10,1,8,3,10,1,8,1,10,5,8,52,14,3,10,1,19,27,4,44,19,58,4,22,19,4,4,2,19,20,10,1,8,5,10,2,8,18,15,1,14,2,15,1,8,2,15,1,8,9,15,1,8,2,10,1,8,8,15,1,8,1,15,1,14,1,15,1,8,1,14,3,8,6,15,1,8,3,15,2,8,14,10,2,8,2,10,2,8,1,15,1,14,2,15,1,8,4,15,1,14,1,8,4,15,2,8,4,15,2,8,3,10,1,14,1,15,2,8,4,15,1,10,3,8,1,15,5,8,8,15,2,8,7,15,3,8,1,15,2,8,9,15,1,14,1,8,7,14,4,7,1,14,3,8,2,10,8,19,18,4,105,}, + {4,32,19,25,10,1,14,1,9,1,8,3,15,1,8,1,15,2,10,1,9,1,10,1,8,1,15,2,14,3,8,3,15,1,14,2,15,1,14,4,15,2,8,2,14,6,15,1,8,2,15,2,8,1,10,2,8,1,10,3,8,50,10,12,8,1,10,1,8,13,10,1,8,1,10,1,19,2,10,8,8,6,10,1,8,1,10,4,8,2,10,1,8,18,10,1,8,4,10,1,8,6,10,4,8,15,10,2,8,36,15,1,14,1,8,1,19,28,4,43,19,58,4,22,19,4,4,2,19,20,10,1,8,1,15,1,8,2,15,1,8,1,10,1,8,12,15,2,8,4,14,2,8,2,14,1,15,1,8,10,15,1,14,1,8,13,14,5,15,2,8,14,10,4,8,11,10,1,8,4,14,2,15,1,8,4,14,1,15,1,8,2,15,1,8,1,10,1,8,4,15,3,8,3,14,1,15,1,14,3,8,3,10,4,8,1,15,1,8,5,15,1,8,5,15,2,8,3,10,1,8,6,15,1,8,7,10,1,8,4,14,1,8,10,7,1,8,2,14,1,17,1,15,1,10,9,19,18,4,105,}, + {4,32,19,25,4,1,15,1,14,1,15,6,14,1,8,4,14,2,15,1,14,2,8,1,15,2,14,2,15,2,14,3,15,2,14,1,8,2,14,9,15,1,14,1,15,1,8,2,15,1,8,1,10,6,8,45,10,4,8,1,10,3,8,1,10,1,8,4,10,1,8,14,15,1,10,1,19,5,10,3,8,5,10,5,8,1,10,2,8,4,10,1,8,11,15,1,14,1,8,6,10,3,8,8,10,4,8,18,10,1,8,17,10,2,8,11,15,1,8,2,15,1,14,1,8,1,19,28,4,41,19,60,4,20,19,28,10,1,15,1,14,1,15,1,8,3,10,1,8,4,15,1,8,8,15,3,8,3,14,1,15,1,8,2,15,1,8,4,15,1,8,3,14,1,8,1,14,3,8,1,10,1,8,1,15,1,8,3,10,1,8,4,15,1,14,4,8,11,15,1,8,4,10,5,8,10,10,2,8,11,15,1,8,3,10,3,8,1,10,1,15,2,8,1,14,1,8,1,15,3,8,1,14,3,15,1,8,1,10,5,8,4,15,1,8,2,15,1,8,5,15,1,14,1,8,2,10,2,8,2,15,2,8,12,10,2,8,2,15,1,8,2,10,1,8,5,14,1,8,3,14,3,15,1,8,1,10,7,19,20,4,103,}, + {4,32,19,26,4,1,8,4,15,5,8,8,15,1,17,1,16,1,14,1,15,1,8,1,9,1,15,1,14,3,15,1,14,2,8,3,14,2,15,1,8,3,15,1,10,1,15,1,14,3,8,1,10,9,8,35,10,1,8,26,14,1,8,9,4,1,10,1,19,5,10,2,8,6,10,2,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,11,14,1,15,1,8,3,10,5,8,1,10,1,8,8,10,2,8,33,10,1,8,16,14,5,10,1,19,28,4,42,19,61,4,18,19,28,10,1,8,1,14,2,15,1,8,2,10,2,8,2,15,2,8,5,10,1,8,2,14,1,15,1,8,5,15,1,8,10,15,1,14,1,8,2,14,1,15,1,8,3,14,1,8,1,10,2,8,5,15,1,14,3,8,1,10,1,8,7,15,6,8,4,15,1,8,1,10,2,8,10,10,5,8,2,10,1,8,2,15,1,8,2,15,1,8,2,10,1,8,1,10,1,8,1,10,1,8,3,14,1,15,3,8,4,15,1,8,2,10,2,8,11,15,1,8,5,15,1,8,5,15,3,8,13,10,1,8,5,10,2,8,3,15,1,8,5,10,1,15,1,14,1,15,1,10,8,19,19,4,103,}, + {4,32,19,26,4,1,10,3,8,4,15,2,8,6,14,6,17,1,15,1,8,1,10,1,15,1,14,3,15,1,8,1,15,2,14,1,15,2,14,3,8,2,10,1,8,1,15,1,10,4,19,2,10,3,19,1,10,2,8,42,10,1,8,2,10,1,8,20,10,3,8,4,10,1,19,5,10,1,8,3,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,4,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,11,10,4,8,1,10,1,8,9,10,3,8,4,10,1,8,23,14,1,8,7,14,1,8,14,15,1,14,2,8,1,10,1,19,28,4,41,19,65,4,13,19,28,10,4,8,1,14,1,8,2,10,2,8,2,15,4,8,11,10,1,8,14,15,1,8,2,15,1,8,1,15,1,14,1,15,1,14,1,8,5,15,2,8,2,14,3,8,6,10,2,8,2,15,5,14,2,15,1,8,3,10,1,8,1,10,1,8,11,10,2,8,2,10,1,8,3,15,1,8,2,15,1,8,5,10,1,8,4,15,1,14,2,15,1,8,4,15,1,8,3,10,1,8,7,15,1,8,3,15,1,8,9,14,1,8,3,15,1,8,29,10,2,15,1,8,3,15,2,10,5,19,19,4,103,}, + {4,32,19,26,10,4,8,4,15,3,8,4,14,1,15,1,14,7,15,1,10,1,8,1,14,6,15,5,8,1,15,2,8,1,10,5,19,8,10,3,8,6,14,1,8,33,10,1,8,1,10,1,8,1,10,1,8,5,10,2,8,1,10,3,8,9,10,3,8,3,10,1,19,6,10,1,8,3,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,11,10,3,8,1,10,1,8,11,10,2,8,3,10,1,8,46,10,1,8,3,10,1,19,29,4,39,19,70,4,10,19,28,10,5,15,1,8,2,10,1,8,1,10,1,8,4,15,3,8,7,10,1,8,3,15,2,8,6,15,2,8,9,15,1,8,1,15,1,8,4,15,1,14,2,15,2,8,1,15,1,8,6,10,4,8,3,15,4,14,2,15,1,8,3,10,4,8,4,10,1,8,13,15,1,8,8,14,2,8,3,14,2,8,2,15,1,8,2,15,1,8,13,10,1,8,6,15,2,8,3,14,1,15,1,8,5,10,1,8,8,15,1,8,6,7,1,8,11,10,1,8,3,14,1,15,1,14,1,15,1,8,1,10,4,19,19,4,102,}, + {4,32,19,29,10,1,9,1,8,4,15,2,8,3,15,5,14,3,15,1,14,1,15,1,10,1,8,1,15,2,14,4,15,3,8,1,15,1,8,2,15,2,10,5,19,7,4,1,10,3,8,5,14,1,8,35,10,1,8,10,10,4,8,9,10,3,8,2,4,1,10,1,19,5,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,16,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,10,10,1,8,43,10,1,8,3,10,1,19,29,4,37,19,72,4,8,19,30,10,5,8,1,15,1,8,2,15,1,8,5,15,1,14,1,15,2,8,1,10,1,8,7,10,1,8,1,15,2,8,6,14,1,8,7,10,1,8,3,15,3,14,1,15,1,14,4,15,1,8,2,15,1,14,1,15,1,8,3,10,3,8,10,15,1,8,2,10,9,8,6,10,1,8,5,10,2,8,4,15,2,8,2,15,1,14,2,15,2,8,1,14,1,15,1,8,1,15,1,8,3,15,2,8,15,10,2,8,3,15,1,8,3,7,1,15,1,8,1,15,1,8,3,10,1,8,1,10,1,8,6,15,3,8,1,15,1,8,1,15,1,14,1,8,11,10,1,8,6,14,2,15,1,10,3,19,19,4,102,}, + {4,33,19,29,10,3,8,3,15,3,8,1,15,1,14,2,15,2,14,4,15,2,8,1,15,2,14,1,8,1,14,2,15,1,8,1,15,2,14,2,15,1,10,8,19,8,10,3,8,1,14,1,8,3,14,1,8,39,10,2,8,6,10,2,8,16,4,1,19,5,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,5,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,6,10,4,8,6,10,2,8,1,10,1,8,3,10,5,8,10,10,1,8,26,10,2,8,14,10,1,8,2,15,1,10,1,19,30,4,36,19,72,4,13,19,25,10,6,14,2,15,1,8,2,14,2,15,3,14,3,8,1,10,3,8,6,10,3,8,1,14,1,8,2,10,1,8,4,14,1,8,5,15,1,14,1,15,1,14,8,8,3,15,1,14,3,15,1,8,1,10,2,8,2,10,3,8,1,10,1,9,1,10,15,8,4,10,2,8,5,10,1,8,2,10,1,8,2,10,1,8,1,14,1,8,7,15,1,8,4,14,1,8,3,15,1,14,2,15,1,8,3,10,1,8,1,15,1,8,7,10,4,8,12,10,1,8,1,10,2,8,6,15,1,14,4,8,2,14,1,8,5,10,3,8,10,14,2,8,1,10,3,19,18,4,102,}, + {4,33,19,30,10,1,8,1,10,2,8,2,15,3,8,1,15,2,8,1,15,1,14,4,8,1,10,1,8,1,14,2,15,3,14,6,15,2,8,4,10,3,8,1,10,4,19,4,10,3,8,3,14,1,8,41,10,2,8,3,10,1,8,1,10,2,8,1,10,1,8,15,10,2,19,4,10,2,8,3,10,2,8,1,10,1,8,1,10,1,8,1,10,3,8,1,10,1,8,2,10,1,8,2,10,1,8,7,10,4,8,9,10,1,8,2,10,2,8,17,10,2,8,2,10,1,8,19,10,1,8,14,14,1,8,3,15,1,10,1,19,29,4,39,19,70,4,4,19,4,4,3,19,26,10,7,14,3,15,1,14,3,8,1,15,1,8,1,15,1,16,1,14,1,8,2,10,1,8,7,14,2,8,1,10,1,15,2,8,7,10,3,8,3,14,1,16,3,14,8,15,1,8,1,14,3,8,1,15,1,8,2,10,4,8,2,10,2,9,2,10,1,9,3,10,7,8,2,10,1,8,3,10,2,8,2,15,1,8,1,10,1,8,2,10,2,8,3,15,2,8,2,15,2,8,4,10,1,8,1,10,1,8,2,15,1,8,3,15,2,14,1,15,1,8,5,15,1,8,5,10,4,8,9,14,1,15,1,8,3,10,1,8,1,10,1,8,4,10,1,8,1,15,2,8,2,15,1,8,8,10,2,8,12,15,1,14,1,8,1,10,2,19,19,4,101,}, + {4,33,19,30,10,2,8,8,15,1,8,1,9,1,8,5,9,2,8,1,15,3,8,3,14,3,15,3,8,2,10,1,8,3,10,2,8,2,10,2,19,5,10,2,8,6,14,1,8,2,14,1,8,31,10,2,8,3,10,1,8,2,10,1,8,2,10,5,8,15,10,3,19,3,10,4,8,1,10,2,8,6,10,1,8,1,10,1,8,4,10,1,8,1,10,3,8,3,10,5,4,1,8,6,10,1,8,28,10,3,8,13,10,1,8,3,10,1,8,12,14,2,8,3,10,2,19,30,4,39,19,72,4,1,19,5,4,2,19,28,10,6,8,1,14,6,8,1,14,1,15,2,14,2,10,1,8,9,15,1,14,1,15,1,8,9,10,4,8,3,15,1,16,3,14,7,15,3,14,2,15,1,8,11,9,1,8,3,9,2,10,2,9,3,10,7,8,2,10,4,8,2,10,2,8,7,15,1,8,6,14,2,8,3,10,1,8,2,15,1,8,3,15,2,8,12,10,4,8,2,10,1,8,6,15,1,8,5,10,3,8,6,15,1,8,2,15,2,8,8,10,1,8,12,14,2,8,1,10,2,19,19,4,101,}, + {4,33,19,26,10,7,15,2,8,2,15,4,8,1,9,1,8,6,15,1,8,2,15,1,8,1,9,1,8,1,15,1,14,2,15,1,8,4,9,1,10,1,15,1,8,4,14,1,10,4,19,3,10,3,8,12,14,1,8,1,14,1,8,2,14,1,8,23,10,2,8,7,10,1,8,1,10,7,8,13,10,3,19,1,10,9,8,12,10,1,8,2,10,1,8,4,10,6,4,1,8,11,10,1,8,24,10,2,8,7,10,1,8,4,10,1,8,16,14,3,10,2,8,1,10,2,19,30,4,39,19,110,10,6,15,1,14,4,15,1,14,2,8,1,14,1,8,1,10,2,8,3,14,4,8,3,14,1,8,2,10,1,8,6,10,2,8,1,10,2,8,3,14,1,16,1,14,3,15,3,14,1,15,3,8,1,15,1,8,1,15,3,8,10,15,2,8,1,9,2,10,1,8,3,9,1,10,10,8,1,10,3,8,5,10,1,8,1,14,1,15,1,8,2,10,1,8,1,10,1,8,3,14,2,8,7,10,1,8,3,15,1,8,7,15,1,8,4,10,2,8,16,10,1,8,1,10,1,8,8,15,1,8,1,15,3,8,6,10,1,8,14,15,1,14,1,8,1,10,1,19,19,4,101,}, + {4,33,19,25,10,1,15,3,10,4,8,2,15,1,8,3,15,2,14,1,15,2,8,1,15,1,14,1,15,2,14,1,15,3,9,1,10,1,8,2,15,2,8,1,15,2,8,1,9,1,8,6,15,1,14,1,8,1,10,4,19,2,10,5,8,3,14,1,8,4,14,1,8,3,14,1,8,15,10,2,8,19,10,1,8,1,10,6,8,2,14,1,8,11,10,6,8,1,10,1,8,1,10,3,8,6,10,1,8,1,10,1,8,11,10,5,8,12,10,1,8,27,10,1,8,26,14,4,8,5,10,1,19,30,4,38,19,107,10,2,19,2,10,6,8,1,14,2,15,1,14,1,15,1,14,1,15,1,10,1,8,3,10,1,8,1,10,1,8,1,14,1,16,1,14,2,8,6,10,1,8,1,10,1,8,1,15,1,8,11,15,1,8,2,15,1,8,2,15,2,14,2,15,1,8,1,14,1,8,2,15,2,8,9,15,4,8,1,15,1,8,3,9,2,10,8,8,1,10,4,8,1,15,1,8,2,10,1,8,2,14,3,15,1,8,7,15,1,14,1,8,3,10,1,8,2,10,3,8,1,15,2,8,3,10,1,8,7,10,1,8,2,15,1,8,17,10,1,8,2,10,1,8,6,15,3,14,1,8,22,14,2,10,1,19,19,4,101,}, + {4,33,19,25,10,2,8,1,10,2,8,1,10,1,8,5,9,1,8,1,15,5,8,1,15,3,14,1,15,3,8,1,9,2,8,3,15,1,14,3,8,2,15,1,8,1,15,1,8,2,15,2,14,1,15,1,8,2,10,10,8,5,14,1,8,8,14,1,8,3,14,1,8,32,10,6,8,4,14,1,8,9,10,2,8,6,10,2,8,2,10,1,8,5,10,1,8,11,10,6,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,4,10,2,8,46,10,1,8,2,14,3,8,1,15,1,8,3,15,1,10,1,19,30,4,36,19,32,10,3,19,76,10,5,8,1,15,1,8,1,10,1,16,1,14,1,15,5,8,1,15,1,8,1,10,4,8,2,15,1,14,1,8,11,14,2,8,2,10,1,15,1,14,2,8,5,10,1,8,2,10,1,8,1,15,2,14,3,8,1,14,1,8,12,10,1,9,1,8,1,15,3,8,2,10,2,8,1,15,1,8,1,10,5,8,4,10,2,8,9,14,1,15,1,8,4,15,1,14,1,8,9,15,2,8,14,10,1,8,8,10,3,8,8,10,2,8,11,15,2,8,24,15,1,8,1,10,2,19,18,4,101,}, + {4,33,19,24,10,1,15,1,14,2,10,1,8,1,15,3,8,6,15,2,8,5,15,6,8,2,15,1,8,1,15,3,14,2,15,5,14,1,15,2,8,1,15,3,8,3,10,12,8,8,14,1,8,7,14,1,8,31,10,5,8,24,10,1,8,2,10,1,8,3,10,4,8,1,10,1,8,9,10,1,8,1,10,2,8,1,10,1,8,2,10,1,8,3,10,1,8,1,10,4,8,4,10,1,8,4,10,2,8,14,10,2,8,27,14,3,8,6,10,1,19,30,4,36,19,30,10,9,19,71,10,5,15,2,14,2,8,1,17,1,14,2,15,6,8,3,14,2,15,1,8,1,14,1,15,1,8,6,14,1,8,4,15,2,8,2,10,1,14,3,8,12,14,2,15,2,14,1,8,3,10,3,8,4,10,4,9,1,8,1,9,1,8,1,15,1,8,1,10,2,9,1,8,2,10,6,8,5,15,2,8,5,15,2,8,4,15,1,8,2,14,1,8,1,15,1,8,1,10,3,8,4,15,2,8,23,10,1,8,10,10,1,8,2,10,2,8,6,15,1,14,1,8,25,15,2,14,1,10,1,19,18,4,101,}, + {4,35,19,22,10,1,8,1,15,2,8,3,10,2,8,5,15,2,8,1,10,1,8,2,9,2,8,1,15,5,8,1,15,1,14,1,15,1,14,2,15,1,14,2,15,5,14,1,15,2,8,2,10,1,8,2,15,1,8,1,10,1,8,2,10,10,8,3,10,1,8,6,14,1,8,3,14,1,8,1,14,1,8,1,14,1,8,30,10,4,8,22,10,2,8,5,10,1,8,1,10,1,8,1,10,1,8,8,10,1,8,5,10,1,8,8,10,6,8,8,10,1,8,1,10,1,8,13,10,2,8,22,14,10,8,4,15,2,10,1,19,29,4,35,19,26,10,8,8,1,10,10,19,64,10,3,8,1,10,1,8,1,15,1,14,10,15,2,14,1,15,1,8,1,14,4,8,1,15,1,14,1,15,2,8,4,14,2,8,7,10,1,8,8,10,1,8,9,14,1,8,5,10,1,8,6,10,2,8,2,9,1,10,2,9,1,15,1,8,2,10,3,8,1,10,6,8,5,14,2,8,2,15,2,14,1,15,1,14,1,8,3,10,1,8,1,15,1,8,5,10,2,8,4,15,1,8,19,10,2,8,6,10,1,8,15,10,1,8,4,15,1,8,26,14,2,10,2,19,17,4,101,}, + {4,35,19,22,10,1,19,1,10,8,8,4,15,1,8,1,9,1,10,1,14,1,8,1,10,2,8,1,15,13,14,2,15,2,14,4,15,1,8,1,10,2,8,1,15,2,8,7,15,1,8,3,10,4,8,4,14,1,8,1,14,1,8,3,14,1,8,2,14,1,8,2,14,1,8,25,10,1,8,5,10,7,8,12,10,2,8,6,10,1,8,9,10,2,8,1,10,1,8,9,10,3,8,1,10,1,8,6,10,6,8,6,10,2,8,3,10,1,8,33,14,1,8,2,14,4,15,1,14,5,8,1,15,1,8,1,14,3,10,1,19,1,10,1,19,27,4,35,19,26,10,5,8,12,10,3,19,60,10,1,19,1,10,2,14,3,8,1,14,2,15,1,14,8,16,1,14,1,8,1,15,1,8,1,15,1,14,2,8,4,10,1,8,7,14,2,8,1,15,1,8,2,10,1,8,11,15,1,8,1,10,1,8,2,15,1,8,1,14,3,8,4,10,1,8,7,10,2,8,1,15,1,10,3,15,2,8,1,10,8,8,3,10,1,8,4,14,1,15,1,8,1,15,1,14,4,15,1,10,1,8,1,15,1,8,2,15,3,8,3,10,3,8,2,15,2,8,3,10,1,8,13,15,1,14,1,8,9,15,1,8,6,10,1,8,8,10,2,8,32,10,1,19,17,4,101,}, + {4,35,19,30,10,1,8,1,15,1,8,1,15,2,9,1,10,2,15,1,10,5,8,3,15,1,14,1,15,3,8,4,15,1,8,3,15,2,14,6,8,1,14,4,15,1,8,1,10,1,8,1,10,1,8,7,10,2,8,8,14,1,8,1,14,1,8,4,14,3,8,12,10,1,8,14,10,1,8,2,10,5,8,16,10,2,8,6,10,1,8,7,10,1,8,13,10,3,8,4,10,1,8,1,10,6,8,6,10,3,8,1,10,1,8,34,14,3,8,2,15,1,14,14,15,1,10,1,19,27,4,36,19,26,10,2,4,1,10,1,8,10,10,1,8,1,10,1,8,1,4,1,10,2,19,57,10,1,19,3,10,1,14,3,15,1,8,1,15,1,14,1,15,1,8,1,10,1,15,1,14,1,15,1,14,3,15,1,14,1,15,1,14,1,8,1,15,1,8,2,15,1,8,2,10,1,8,7,15,1,14,2,8,1,10,1,8,3,10,3,8,5,15,1,8,2,14,2,8,5,14,1,15,1,8,6,10,1,8,6,10,2,8,3,10,3,8,2,10,11,8,1,10,1,8,4,14,6,15,1,8,3,15,1,8,2,15,1,8,8,15,2,8,1,15,1,8,2,14,1,8,14,15,2,8,5,10,1,8,10,10,1,8,8,10,3,8,23,15,1,8,6,14,1,10,3,19,15,4,101,}, + {4,36,19,30,10,2,9,1,15,1,14,1,15,1,10,8,8,1,15,1,8,1,15,1,14,3,15,1,8,1,10,2,8,1,10,3,15,1,14,6,15,1,9,1,8,3,15,2,14,1,15,1,8,2,10,2,8,5,10,4,8,9,14,1,8,1,14,1,8,3,14,1,8,1,14,1,8,30,10,4,8,6,10,1,8,6,10,1,8,1,10,4,8,11,10,1,8,1,10,3,8,1,10,1,8,3,10,1,8,6,10,2,8,4,10,7,8,3,10,1,8,6,10,1,8,9,10,1,8,2,10,1,8,9,14,1,8,6,10,1,8,7,15,1,8,3,14,3,8,2,14,2,8,1,14,1,15,1,14,2,8,1,14,1,15,1,10,2,4,1,19,25,4,36,19,24,10,4,8,1,10,1,8,11,10,1,8,2,10,3,19,60,10,2,14,2,8,3,15,2,8,1,15,1,8,1,15,1,14,1,15,1,14,2,15,1,8,1,15,1,8,1,15,2,8,3,15,1,8,11,14,2,8,10,10,1,8,5,14,1,8,6,14,1,8,1,15,1,14,1,8,11,10,2,8,2,10,2,9,1,10,2,8,2,10,12,8,4,14,5,15,1,14,1,15,1,8,4,15,1,8,6,15,1,8,2,15,1,8,2,15,1,8,1,10,1,15,1,8,2,15,2,8,17,10,1,8,20,10,2,8,15,15,1,14,1,8,13,14,1,8,1,10,1,19,16,4,101,}, + {4,37,19,30,10,2,4,1,15,1,4,1,19,1,10,6,8,1,15,2,8,1,15,1,14,3,15,1,10,2,8,1,10,3,9,1,15,1,14,2,15,1,14,1,15,2,8,1,10,1,8,1,9,1,8,1,15,2,8,5,10,2,8,3,10,6,8,7,14,1,8,10,14,1,8,8,10,1,8,13,10,2,8,4,10,1,8,1,10,1,8,15,10,2,8,1,10,2,8,13,10,1,8,1,10,3,8,10,10,2,8,1,10,1,8,1,10,7,4,1,8,1,10,2,8,1,10,1,8,8,10,2,8,4,10,5,8,9,14,1,8,4,14,1,8,1,10,1,8,12,14,2,15,1,8,1,15,1,8,5,15,1,8,1,10,2,4,1,10,1,4,1,19,25,4,36,19,25,10,4,8,3,10,1,8,1,10,1,8,8,10,4,19,56,10,6,14,2,8,6,15,3,14,1,15,4,8,1,15,2,8,1,15,1,8,1,15,2,8,2,15,3,14,1,15,1,8,4,15,2,8,6,10,1,8,40,10,2,14,1,10,11,8,6,14,1,15,1,8,1,15,3,14,1,8,9,15,4,8,39,10,1,8,9,10,3,8,15,15,1,14,1,8,11,10,1,8,1,15,1,8,1,10,1,19,18,4,99,}, + {4,37,19,33,4,1,19,4,10,1,8,2,15,2,14,1,15,3,14,2,8,2,10,2,8,4,15,5,8,3,15,1,8,1,10,1,8,1,10,1,15,1,8,1,10,1,8,1,15,1,14,1,15,1,8,1,10,3,8,2,10,4,8,8,14,1,8,3,14,1,8,10,10,1,8,1,10,1,8,16,10,1,8,13,10,2,8,6,10,8,8,6,10,1,8,2,10,2,8,1,10,1,8,1,10,3,8,12,10,5,8,1,10,4,8,2,10,1,8,1,10,3,8,13,10,6,8,16,14,1,8,11,15,1,14,3,8,1,15,1,8,2,10,1,8,3,10,3,4,2,19,25,4,36,19,25,10,3,8,5,10,1,8,1,10,3,8,6,10,4,19,49,10,12,14,1,15,2,8,2,10,1,8,2,15,1,14,1,15,3,8,1,15,2,8,1,14,2,15,6,8,1,14,5,8,11,10,2,8,1,10,1,8,3,10,1,8,5,14,3,8,4,10,1,8,6,10,1,8,8,15,5,8,4,10,8,8,1,10,2,8,3,10,1,8,5,15,1,8,2,15,1,8,5,10,1,8,1,15,1,8,4,15,1,8,3,15,1,8,2,15,2,8,15,10,1,8,6,10,2,8,17,10,3,8,9,14,2,8,20,15,1,8,1,10,1,19,17,4,99,}, + {4,33,19,42,10,1,8,2,14,5,15,2,8,1,10,4,8,1,15,1,8,2,15,1,8,1,15,1,14,2,15,3,14,2,8,1,9,1,8,1,10,1,8,2,10,1,14,1,15,1,8,3,10,1,8,2,10,5,8,4,10,1,8,6,14,1,8,5,14,1,8,1,14,1,8,1,14,1,8,7,10,1,8,4,10,1,8,9,10,1,8,6,10,1,8,2,10,2,8,7,10,9,8,6,10,5,8,4,10,3,8,13,10,3,8,2,10,3,8,4,10,2,8,14,10,6,8,16,14,1,8,6,14,2,8,4,14,2,15,2,14,2,10,2,14,1,15,1,10,2,19,2,4,1,19,26,4,36,19,25,10,3,8,4,10,1,8,1,10,5,8,7,10,3,19,45,10,5,8,1,14,3,15,1,10,5,8,2,15,1,8,1,10,1,8,4,15,1,8,3,15,2,8,2,14,7,8,1,15,1,14,6,15,1,8,15,10,2,8,3,10,1,8,1,14,3,8,1,15,1,14,1,8,28,10,5,8,3,10,2,8,13,15,3,8,1,15,1,8,1,15,1,8,10,15,3,8,3,10,1,8,17,10,1,8,35,15,1,8,14,10,1,8,1,10,1,14,1,8,1,10,2,19,18,4,97,}, + {4,33,19,41,10,1,8,2,15,5,14,1,15,1,8,1,10,6,8,1,10,2,15,1,8,1,15,1,8,1,15,1,8,2,15,1,14,2,10,2,8,1,10,1,15,1,8,1,10,1,15,1,8,7,10,7,8,10,14,3,8,10,10,2,8,3,10,1,8,1,10,1,8,1,10,1,8,9,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,1,10,1,8,7,10,10,8,1,10,1,8,2,10,9,8,18,10,2,8,3,10,1,8,6,10,1,8,13,10,9,8,13,10,1,8,4,15,1,8,1,14,3,8,4,14,3,15,1,14,1,15,1,8,1,10,3,19,31,4,36,19,25,10,3,8,4,10,1,8,1,10,5,8,2,10,1,8,1,10,2,8,2,10,2,19,45,10,5,8,1,14,1,8,1,15,1,8,1,10,6,8,1,15,2,8,9,14,2,8,2,15,1,14,1,17,1,16,1,14,2,15,1,8,2,15,1,14,1,15,1,8,1,15,3,8,16,10,1,8,2,10,1,8,3,15,1,8,12,10,1,8,16,10,1,8,9,10,4,8,2,10,1,8,2,10,1,15,1,8,1,15,1,8,5,15,1,8,1,15,1,8,10,10,1,8,7,10,1,8,7,10,1,8,10,10,1,8,34,14,1,8,14,10,2,8,1,15,1,8,1,10,2,19,18,4,97,}, + {4,33,19,41,9,1,8,1,15,3,8,3,15,2,8,1,10,9,8,1,15,2,8,2,9,1,8,1,14,2,15,1,10,2,8,2,15,1,8,2,15,1,8,7,10,8,8,8,14,1,8,3,14,1,8,1,14,1,8,11,10,1,8,4,10,2,8,11,10,1,8,14,10,11,8,3,10,4,8,5,10,1,8,17,10,1,8,1,10,1,8,3,10,1,8,6,10,1,8,10,10,1,8,2,10,9,8,18,14,3,15,1,14,4,15,1,14,3,15,2,14,2,10,4,19,2,4,1,19,27,4,36,19,23,10,4,8,5,10,1,8,2,10,2,8,3,10,2,8,1,10,2,8,2,4,1,10,1,19,21,10,2,19,19,10,5,15,1,8,8,10,5,8,1,14,2,15,1,8,8,14,2,8,2,15,2,14,2,15,3,8,2,14,2,8,1,15,2,8,18,10,1,8,8,10,1,8,21,10,1,8,14,10,5,8,1,10,2,8,6,15,1,8,1,15,1,8,13,15,1,8,1,10,1,8,4,15,1,8,26,15,2,8,3,10,1,8,13,10,1,8,10,14,1,8,12,10,4,8,3,10,3,19,17,4,97,}, + {4,37,19,36,10,1,9,1,15,1,8,3,15,1,8,2,15,2,8,1,10,8,8,2,14,1,8,2,15,1,14,1,15,3,8,1,10,3,9,1,8,1,15,2,14,1,15,3,8,4,10,7,8,10,14,1,8,17,10,1,8,5,10,1,8,24,10,13,8,2,10,3,8,9,10,3,8,8,10,3,8,7,10,4,8,2,10,1,8,5,10,4,8,1,10,8,8,2,10,1,8,20,14,2,8,2,14,1,16,1,14,6,15,2,14,1,15,1,10,1,4,1,10,1,19,31,4,36,19,21,10,1,4,1,10,4,8,4,10,1,8,7,10,1,8,1,10,1,8,1,10,2,8,3,10,2,19,19,10,7,19,14,10,2,15,1,14,1,8,2,15,1,8,1,10,1,8,1,10,1,8,3,14,1,8,4,10,1,8,1,14,2,15,1,8,7,10,1,15,2,10,1,8,3,15,1,8,2,15,2,8,1,15,1,14,2,15,2,8,3,15,1,8,15,10,2,8,34,14,1,17,1,14,1,8,2,10,1,8,5,10,4,8,1,10,2,8,3,10,2,8,6,15,1,8,6,10,1,8,10,14,1,15,2,8,11,10,1,8,13,15,1,8,28,15,2,8,1,10,1,8,15,15,2,10,2,19,17,4,97,}, + {4,38,19,36,10,6,8,1,14,3,10,6,15,1,8,4,15,1,8,1,9,1,8,1,15,7,8,1,10,1,8,1,15,1,8,1,15,1,8,4,15,1,8,3,10,5,8,3,14,1,8,7,14,1,8,1,14,1,8,1,14,2,8,7,10,3,8,1,10,1,8,2,10,2,8,3,10,1,8,7,10,1,8,15,10,7,8,2,10,4,8,3,10,4,8,4,10,1,8,16,10,1,8,5,10,8,8,6,10,5,8,2,10,7,8,1,10,1,8,15,14,1,8,2,14,2,15,1,8,2,14,2,16,1,14,5,15,4,10,4,19,28,4,40,19,16,10,3,4,1,15,1,4,1,8,1,10,3,8,3,10,1,8,2,10,1,8,1,10,1,8,2,10,1,8,2,10,1,8,6,10,6,4,1,10,3,19,11,10,1,14,2,10,5,19,10,10,3,14,3,8,4,10,2,8,3,10,1,8,5,10,1,8,1,14,1,15,2,8,9,15,1,8,1,14,1,15,1,8,1,15,1,8,1,15,3,14,2,15,1,14,1,15,2,8,1,10,1,8,12,10,1,8,35,10,1,8,12,10,2,8,2,10,4,8,3,10,2,8,1,10,1,8,1,10,2,8,1,10,1,8,6,15,1,8,4,14,2,15,1,8,16,10,2,8,8,15,1,8,5,15,1,8,5,10,1,8,14,15,1,8,14,10,1,8,12,15,1,14,1,10,3,19,15,4,98,}, + {4,39,19,35,10,1,4,2,10,3,15,1,8,1,10,10,15,1,8,1,15,10,8,1,15,2,9,1,15,1,14,3,8,2,15,4,8,3,10,3,8,1,14,1,8,1,14,2,8,2,14,6,8,4,14,1,8,19,10,1,8,13,10,2,8,1,10,1,8,4,10,15,8,1,10,7,8,20,10,2,8,4,10,3,8,1,10,4,8,2,10,16,8,2,10,4,8,15,14,4,8,2,14,4,8,1,15,5,14,1,15,1,8,1,10,2,19,29,4,39,19,17,10,4,8,1,14,2,10,2,8,9,10,1,8,3,10,4,8,9,10,4,4,2,10,1,19,10,10,1,8,2,10,6,19,8,10,1,15,1,14,1,15,1,8,12,10,1,8,5,10,1,8,1,15,1,14,1,15,1,8,11,14,2,15,1,8,1,15,1,8,3,15,1,8,1,15,1,8,1,15,1,8,48,10,1,8,2,14,1,8,11,10,10,8,6,10,1,8,7,10,1,8,4,15,2,8,1,15,4,8,6,15,1,8,33,10,1,8,7,15,1,8,18,10,1,8,8,10,2,8,3,15,1,10,4,19,15,4,97,}, + {4,39,19,34,4,1,19,1,10,3,19,1,10,3,19,1,10,9,15,1,8,1,15,2,14,1,15,2,14,1,15,5,8,3,15,1,14,3,8,2,15,1,14,1,15,2,8,8,14,4,8,4,14,2,8,4,14,2,8,1,14,1,8,13,10,1,8,3,10,1,8,1,10,1,8,12,10,19,8,5,10,5,8,17,10,1,8,4,10,1,8,5,10,1,8,2,10,4,8,1,10,13,8,1,10,3,8,4,10,1,8,5,10,2,8,10,14,1,8,1,14,3,15,1,14,1,8,1,15,1,8,1,15,3,14,2,15,2,8,1,10,1,8,1,10,1,19,28,4,39,19,18,10,1,4,2,8,1,15,1,14,1,8,1,10,1,8,6,10,1,8,2,10,1,8,3,10,1,8,1,10,4,8,11,4,2,19,10,10,2,8,2,10,1,8,2,10,11,8,1,14,2,8,2,10,1,8,2,10,1,8,14,15,2,14,2,8,11,14,3,8,2,15,1,8,1,15,1,8,9,10,1,8,7,10,1,8,5,10,1,8,24,10,2,8,2,10,3,14,2,8,12,10,1,8,2,10,2,8,1,10,2,8,10,10,1,8,1,15,1,8,4,10,1,8,2,15,2,8,2,15,2,8,2,10,1,8,2,15,4,8,22,15,1,8,10,10,1,8,11,15,1,8,23,10,1,8,5,10,3,19,15,4,97,}, + {4,39,19,46,10,7,8,4,15,1,14,1,15,2,14,4,15,1,8,1,15,5,14,1,8,1,15,2,14,2,15,2,8,3,14,1,8,3,14,4,8,2,14,1,8,4,10,1,8,4,14,1,8,34,10,17,8,7,10,3,8,1,10,4,8,8,14,1,8,9,10,1,4,1,8,3,10,23,8,2,10,1,8,24,15,1,14,6,8,1,15,2,14,1,15,1,14,1,15,1,8,2,15,1,14,2,10,1,19,24,4,42,19,19,4,1,10,1,4,1,8,2,10,1,8,8,10,1,8,1,10,2,8,5,10,1,8,4,10,5,8,1,4,1,8,1,4,1,10,2,19,8,10,3,8,1,10,1,8,5,10,1,8,1,10,3,8,1,10,4,8,8,10,1,8,7,10,1,8,2,10,1,8,2,15,2,14,2,15,2,8,8,10,2,15,1,14,1,15,4,8,19,10,1,8,21,10,1,8,7,10,3,8,19,10,1,8,6,10,1,8,4,10,2,8,8,15,1,8,10,10,5,8,1,15,2,14,1,8,13,15,1,8,20,10,2,8,1,10,1,8,31,10,2,8,4,10,4,19,15,4,97,}, + {4,39,19,43,10,10,8,1,10,2,8,1,15,2,8,1,15,3,14,1,15,1,8,2,15,2,14,1,8,1,15,7,14,2,15,1,8,2,14,2,15,1,8,1,15,1,14,1,8,1,15,1,8,2,14,2,8,7,14,1,8,36,10,4,8,1,10,12,8,8,10,6,8,20,10,26,8,2,10,2,8,24,14,5,8,6,15,1,8,1,14,1,8,1,15,1,14,2,15,1,4,2,19,20,4,44,19,17,4,1,19,2,10,4,8,10,10,2,8,3,10,3,8,4,10,1,8,2,10,1,8,5,4,1,10,7,19,2,10,3,8,3,10,6,8,1,10,1,8,6,10,2,8,1,10,2,8,6,10,1,8,3,10,2,8,9,15,2,14,1,15,1,8,7,10,1,8,2,15,2,14,2,16,2,14,1,15,1,8,3,10,1,8,16,10,1,8,7,10,1,8,11,14,1,8,1,10,2,8,2,10,3,8,3,10,1,8,4,10,2,8,15,10,1,8,2,10,2,8,3,10,1,8,3,15,1,8,2,15,3,8,1,15,1,14,2,8,2,10,8,8,1,15,3,8,14,15,1,8,19,10,4,8,4,10,1,8,14,15,1,8,18,10,4,19,14,4,97,}, + {4,39,19,44,10,3,4,1,15,1,10,3,8,2,10,2,8,1,15,3,8,3,15,2,8,1,15,6,14,2,15,2,8,1,15,3,8,1,15,2,14,2,15,1,8,1,10,2,8,2,10,1,8,1,14,2,8,3,14,1,8,7,10,1,8,33,10,8,8,2,10,1,8,1,10,3,8,7,10,1,8,1,10,8,8,18,10,13,8,2,10,12,8,3,10,1,8,28,10,1,8,7,14,1,8,2,15,1,14,1,8,1,4,1,19,21,4,4,19,1,4,40,19,20,10,3,8,8,10,1,8,4,10,1,8,3,10,1,8,10,10,1,8,3,4,1,10,1,4,1,10,7,8,1,10,1,8,3,10,6,8,1,10,2,8,3,10,4,8,1,10,3,8,2,10,1,8,5,10,2,8,10,15,1,14,1,15,1,8,8,14,2,8,1,15,2,14,3,15,1,8,5,10,1,8,19,10,1,8,4,10,1,8,11,14,1,8,7,10,2,8,5,14,1,16,2,8,12,10,1,8,2,10,2,8,11,14,1,8,2,15,1,8,1,15,1,8,2,15,2,8,1,10,1,8,1,10,4,8,1,10,2,15,1,8,60,15,1,8,18,15,1,8,1,10,2,19,14,4,97,}, + {4,39,19,44,10,3,15,1,8,1,15,1,10,2,8,2,10,2,8,1,15,1,14,1,15,7,14,1,15,4,14,1,15,1,14,1,15,1,8,1,15,5,8,1,15,1,10,1,4,1,8,1,4,1,19,2,10,3,8,4,14,2,8,8,10,1,8,34,10,8,8,14,10,4,8,1,10,4,8,1,10,1,8,4,10,1,8,11,10,13,8,1,10,13,8,3,10,2,8,27,10,7,8,5,15,1,4,1,19,22,4,3,19,2,4,40,19,17,4,2,19,1,10,3,8,3,15,1,8,3,10,2,8,11,10,1,8,4,10,9,4,2,10,3,8,2,10,2,8,5,10,1,8,6,10,1,8,2,10,3,8,3,10,2,8,2,10,2,8,5,10,2,8,10,15,2,8,9,14,1,16,1,8,2,15,1,14,1,8,8,10,1,8,15,14,1,8,6,10,3,8,19,10,2,8,6,14,2,8,7,14,1,8,4,10,4,8,3,10,1,8,9,15,1,8,9,10,1,8,1,10,2,8,2,10,3,15,1,10,3,8,38,10,5,8,29,10,1,8,5,10,2,19,14,4,97,}, + {4,39,19,44,10,5,14,1,10,2,15,1,8,1,10,2,8,1,15,9,14,1,15,1,8,5,15,2,8,3,15,1,4,2,10,1,4,1,19,6,10,1,8,4,14,2,8,2,14,1,8,7,10,1,8,35,10,1,8,1,10,7,8,7,10,13,8,7,10,4,8,11,10,12,8,1,10,7,8,2,10,2,8,3,10,3,8,14,14,1,8,3,10,1,8,1,10,1,8,1,10,1,8,2,10,9,8,1,14,1,8,2,15,1,4,2,19,21,4,2,19,3,4,40,19,21,10,2,4,1,8,2,15,1,14,1,8,7,10,1,8,14,10,7,8,2,15,1,8,5,10,1,8,4,10,1,8,1,10,1,8,1,10,3,8,1,10,2,8,2,10,1,8,1,10,2,8,2,10,1,8,2,10,2,8,5,10,3,8,1,10,1,8,7,15,1,14,1,15,1,8,31,10,1,8,6,14,1,8,6,10,1,8,1,10,1,8,14,10,3,8,2,10,1,8,11,10,1,8,10,10,6,8,4,14,1,15,1,8,4,15,1,14,1,8,2,10,2,8,1,10,1,8,4,10,7,14,1,15,1,8,11,10,2,8,14,15,3,8,5,10,1,8,1,10,2,8,3,10,3,8,7,15,1,8,19,10,3,8,4,10,4,19,13,4,97,}, + {4,41,19,41,10,4,8,1,15,1,14,1,10,1,19,1,10,4,8,5,15,5,9,1,10,1,19,22,10,1,8,36,10,2,8,17,10,5,8,6,10,12,8,8,10,3,8,1,10,1,8,11,10,2,8,3,10,6,8,3,10,1,8,10,10,6,8,7,14,1,8,1,14,1,8,11,10,13,8,2,10,1,8,1,4,2,19,25,4,40,19,24,10,1,19,1,10,2,15,1,14,1,8,4,10,1,8,3,10,1,8,12,10,6,8,2,10,2,8,4,10,1,8,8,10,1,8,1,10,4,8,1,10,1,8,1,10,2,8,3,10,6,8,2,10,1,8,1,10,4,8,3,10,1,14,3,8,1,10,1,8,6,14,3,8,4,10,1,8,13,10,5,8,4,10,2,8,7,10,3,8,3,10,3,8,1,10,1,8,10,10,2,8,2,10,1,8,1,15,2,8,12,10,1,8,1,10,1,8,2,10,1,8,2,10,1,8,7,15,1,14,1,8,5,14,2,8,1,10,1,8,2,10,2,8,1,10,1,8,5,10,5,15,2,8,10,10,2,8,7,10,1,8,1,15,2,8,4,14,3,8,1,15,1,8,7,10,1,8,2,10,1,8,4,10,1,8,5,10,1,8,9,15,1,8,4,10,2,8,4,10,1,8,2,10,5,19,13,4,97,}, + {4,41,19,43,10,6,19,1,10,14,4,1,19,19,4,4,8,1,15,1,8,7,15,1,14,1,8,45,10,9,8,3,10,3,8,2,10,3,8,2,10,1,8,7,10,6,8,12,10,1,8,2,10,6,8,14,10,1,8,1,10,3,8,22,10,12,8,3,10,2,8,2,10,1,19,25,4,41,19,26,10,1,4,1,8,7,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,6,10,2,8,3,10,3,8,2,10,3,8,2,10,1,8,6,10,2,8,2,10,2,8,2,10,1,8,2,10,1,8,7,10,5,8,5,10,4,8,4,14,1,8,1,10,2,8,5,15,1,14,3,8,18,10,1,8,5,10,2,8,4,10,1,8,10,10,2,8,18,15,5,8,12,10,1,8,2,10,8,8,5,15,2,8,4,15,2,8,2,15,1,8,1,10,1,8,2,10,1,8,3,10,7,8,3,10,1,8,8,10,1,8,5,15,2,8,2,15,1,8,2,15,1,14,1,15,1,8,9,10,3,8,38,10,1,8,2,10,3,19,12,4,97,}, + {4,45,19,52,10,1,19,28,4,2,10,2,8,54,10,7,8,6,10,9,8,1,10,1,8,7,10,3,8,18,10,3,8,18,10,3,8,6,14,1,8,16,10,12,8,7,4,1,19,26,4,40,19,27,10,2,8,6,10,1,8,11,10,1,8,5,10,1,8,4,10,3,8,5,10,1,8,3,10,1,8,3,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,4,8,2,10,1,8,14,10,1,8,2,10,1,8,2,14,2,8,1,14,1,8,24,10,1,8,13,10,3,8,6,10,1,8,17,15,1,8,10,10,1,8,1,10,2,8,1,10,2,8,1,10,5,8,2,10,1,8,3,14,1,8,5,15,3,8,4,10,1,8,4,10,5,8,18,15,2,14,1,8,2,10,1,8,4,15,2,8,12,15,1,8,39,14,1,10,3,19,12,4,97,}, + {4,46,19,81,4,1,10,4,8,27,10,1,8,8,10,1,8,7,10,1,8,8,10,4,8,7,10,12,8,24,10,1,8,3,10,3,8,1,10,1,8,24,14,1,8,15,10,3,8,1,10,1,8,1,10,1,8,1,10,7,8,5,15,1,8,1,10,1,19,25,4,40,19,25,4,1,19,1,10,3,8,5,10,1,8,10,10,2,8,2,10,2,8,5,15,1,8,9,10,1,8,5,10,1,8,1,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,9,10,1,8,8,10,1,8,5,10,1,8,8,14,1,8,2,14,1,8,15,10,1,8,10,14,1,8,1,10,1,8,1,10,2,8,2,10,3,8,5,10,1,8,1,10,1,8,29,10,1,8,1,10,1,8,1,10,2,8,1,10,4,8,1,10,4,8,13,15,1,8,3,14,1,15,1,8,1,10,5,15,1,8,24,14,1,15,1,8,20,10,1,8,25,10,1,8,1,10,1,8,5,14,2,10,3,19,12,4,97,}, + {4,46,19,81,10,1,4,1,10,3,8,53,10,2,8,1,10,1,8,5,10,9,8,1,10,4,8,8,10,1,8,2,10,2,8,13,10,3,8,2,10,3,8,2,10,2,8,1,10,1,8,5,10,1,8,28,10,6,8,3,10,6,8,4,15,2,4,1,19,25,4,40,19,27,10,3,8,11,10,1,8,5,10,1,8,8,15,1,14,2,15,1,8,1,14,2,15,1,8,3,10,2,8,1,10,2,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,2,8,18,10,2,8,3,10,1,8,1,10,1,8,2,10,2,8,2,14,2,15,2,14,1,15,1,14,2,8,20,15,1,14,3,8,11,10,2,8,2,10,2,8,19,10,1,8,8,10,1,8,1,10,1,8,1,10,7,8,4,10,2,8,8,10,2,8,3,15,1,8,3,15,1,8,1,10,2,8,4,15,1,8,7,10,2,8,12,15,1,8,1,15,1,14,2,15,1,8,4,15,1,8,10,10,1,8,35,15,2,14,2,10,3,19,12,4,97,}, + {4,47,19,80,10,5,8,21,10,2,8,34,15,1,8,2,10,9,8,1,10,1,8,13,10,1,8,1,10,4,8,12,10,6,8,1,10,1,8,2,10,3,8,1,10,1,8,25,10,1,8,1,14,1,8,4,10,15,8,7,10,1,19,25,4,40,19,29,10,1,8,1,15,1,8,6,10,1,8,1,10,1,8,6,10,2,8,3,10,1,8,3,15,1,14,5,7,2,8,1,15,1,8,1,10,3,8,4,10,4,8,4,10,1,8,1,10,3,8,5,10,1,8,10,10,1,8,2,10,3,8,7,10,1,8,2,15,2,8,25,14,1,8,2,14,2,8,2,14,1,8,2,10,1,8,2,10,1,8,1,10,1,8,11,10,1,8,1,10,1,8,3,10,2,8,6,10,1,8,1,14,1,8,5,10,1,8,2,10,1,8,2,10,1,8,2,10,3,8,5,10,1,8,7,10,1,8,4,10,1,8,2,15,1,8,5,15,2,8,2,15,1,8,7,10,2,8,15,14,1,15,2,8,11,10,5,8,3,10,1,8,20,10,1,8,5,10,2,8,5,14,2,10,3,19,12,4,97,}, + {4,48,19,78,10,6,8,21,10,4,8,12,10,1,8,14,10,1,8,7,10,7,8,12,10,1,8,7,10,2,8,7,10,2,8,4,10,7,8,3,10,2,8,14,15,1,8,13,10,1,8,3,10,18,8,1,10,1,8,5,10,2,19,24,4,40,19,29,10,1,4,1,8,4,14,1,10,1,8,6,10,2,8,8,10,1,8,2,10,1,8,1,15,1,14,4,8,4,10,1,8,1,10,2,8,2,10,3,8,5,10,1,8,2,10,1,8,1,10,1,8,5,10,2,8,8,10,1,8,1,10,1,8,3,10,2,8,8,10,2,14,2,8,19,10,3,8,4,10,2,8,1,10,1,8,1,14,2,8,4,10,1,8,11,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,1,10,3,8,12,10,1,8,1,10,3,8,2,10,3,8,2,10,1,8,2,10,1,8,4,15,1,8,2,10,1,8,5,10,1,15,2,8,2,10,1,15,1,8,1,10,1,8,4,15,1,8,6,10,1,8,7,15,1,8,6,10,1,8,2,15,1,8,3,15,2,8,2,15,2,8,2,10,3,8,7,10,1,8,19,10,1,8,5,10,2,8,1,10,1,8,4,14,1,10,4,19,11,4,97,}, + {4,49,19,73,4,1,10,1,19,2,10,6,8,19,10,1,8,6,10,1,8,21,10,5,8,7,10,5,8,1,10,1,8,1,10,1,8,18,10,1,8,7,10,5,8,15,10,1,8,11,14,2,8,16,10,2,8,1,10,1,8,1,10,4,8,1,10,1,9,1,8,2,10,8,8,3,10,3,19,24,4,40,19,31,10,1,8,3,14,1,10,1,8,6,10,2,8,7,10,1,8,6,14,5,8,5,10,2,8,4,10,1,8,7,10,1,8,3,10,1,8,4,10,2,8,8,10,1,8,2,10,1,8,2,10,2,8,10,14,2,8,23,10,2,8,3,10,2,8,20,10,2,8,1,10,2,8,3,10,4,8,3,10,2,8,4,10,2,8,1,10,2,8,2,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,4,14,1,15,2,8,4,10,2,15,1,8,3,15,1,8,1,15,1,8,3,10,3,8,9,10,2,8,25,14,2,8,2,10,2,8,10,10,2,8,14,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,4,10,1,8,3,14,1,10,4,19,12,4,96,}, + {4,49,19,63,10,1,19,8,10,1,4,2,10,3,8,1,15,1,10,4,8,15,10,1,8,3,10,1,8,8,10,1,8,2,4,1,10,1,8,8,10,1,8,4,10,5,8,9,10,2,8,4,10,2,8,26,10,4,8,31,10,1,8,12,10,2,8,3,10,5,8,1,15,2,8,2,15,1,8,1,10,5,8,2,10,1,8,4,10,1,19,25,4,39,19,32,10,5,8,1,15,1,8,2,10,2,8,8,10,1,8,3,15,1,8,3,14,5,8,1,10,1,8,1,15,1,8,1,10,1,8,7,10,1,8,7,10,2,8,2,10,2,8,3,10,1,8,8,10,3,8,2,10,2,8,7,10,1,8,4,10,1,8,23,10,3,8,2,10,1,8,3,14,1,8,15,10,1,8,4,10,1,8,4,10,4,8,11,10,1,8,2,10,3,8,4,10,2,8,1,10,1,8,15,15,2,14,1,15,1,8,1,15,1,8,2,10,4,8,1,10,1,8,2,15,1,8,5,10,1,8,20,15,1,8,2,14,4,15,1,8,7,15,1,8,3,10,2,8,1,15,2,10,1,8,11,10,1,8,1,10,1,8,3,10,2,8,5,15,4,10,3,19,18,4,91,}, + {4,49,19,28,4,3,14,1,15,1,10,1,19,27,4,2,15,1,10,2,19,1,10,1,19,4,4,1,10,2,8,2,10,1,8,4,10,1,8,16,10,14,4,1,8,2,10,1,8,13,10,1,8,2,10,4,8,3,10,1,8,2,10,1,8,1,10,3,8,14,10,2,8,1,10,1,8,12,10,6,8,42,10,3,8,2,10,6,8,3,9,1,15,1,8,1,9,1,10,5,8,6,10,2,19,24,4,39,19,32,10,5,8,1,14,1,8,12,10,1,8,1,15,4,8,1,14,4,7,1,15,1,8,1,10,6,8,6,10,2,8,6,10,2,8,2,10,3,8,2,10,1,8,9,10,2,8,5,10,1,8,1,10,1,8,29,10,1,8,20,10,1,8,9,10,2,8,6,10,4,8,15,10,1,8,21,15,1,8,1,15,2,14,1,15,2,8,3,10,3,8,15,10,2,8,2,15,1,8,15,14,3,8,14,10,2,8,2,10,1,8,18,10,1,8,6,15,1,14,2,10,3,19,20,4,89,}, + {4,49,19,29,4,2,15,2,14,1,10,1,4,2,10,1,4,1,19,22,10,1,14,3,15,1,10,7,8,1,15,3,8,23,10,11,8,1,10,1,8,11,10,1,8,8,10,1,8,2,10,1,8,2,10,1,8,5,10,1,8,11,10,2,8,3,10,5,8,13,10,1,8,30,10,1,8,6,10,1,8,7,10,5,8,2,10,2,8,2,9,1,10,1,9,1,8,2,15,1,8,2,10,3,8,4,10,2,8,2,10,1,19,25,4,40,19,31,10,1,4,1,10,2,15,1,14,1,8,1,10,1,8,8,10,3,8,1,14,2,15,3,14,4,8,3,10,6,8,4,10,2,8,2,10,1,8,3,10,2,8,8,10,1,8,1,10,1,8,8,10,2,8,7,10,2,8,12,10,1,8,2,10,1,8,6,10,1,8,3,10,1,8,7,10,1,8,23,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,10,10,1,8,7,10,1,8,8,10,1,8,11,15,2,14,1,15,4,8,3,10,1,8,2,15,1,8,50,10,1,8,3,10,1,8,26,14,2,10,3,19,30,4,79,}, + {4,49,19,31,4,2,15,1,10,1,15,4,4,1,19,21,4,1,14,4,15,1,8,1,10,4,15,1,8,2,15,1,8,21,10,2,8,3,10,9,8,1,10,1,8,5,10,1,8,24,10,1,8,6,10,2,8,9,10,12,8,31,10,1,8,12,10,2,8,6,10,6,8,2,10,2,8,3,10,2,8,5,10,2,8,5,10,1,8,3,4,1,19,26,4,39,19,32,10,3,15,1,14,1,8,1,10,1,8,6,10,1,8,1,10,3,8,1,15,1,14,1,15,1,14,1,8,4,7,1,8,4,10,6,8,9,15,1,8,3,10,3,8,21,10,1,8,4,10,2,8,2,10,1,8,2,10,1,8,11,10,1,8,2,10,4,8,2,10,1,8,1,10,1,8,2,10,1,8,11,10,1,8,7,10,1,8,5,10,2,8,1,10,2,8,18,10,1,8,24,14,1,8,2,15,1,14,2,8,2,14,2,8,4,15,3,8,8,10,2,8,4,15,1,14,1,8,19,7,1,8,5,15,1,8,7,15,1,8,4,10,1,8,24,10,1,8,2,14,1,10,3,19,32,4,77,}, + {4,52,19,31,4,1,15,2,14,2,4,1,19,1,10,1,19,19,10,1,15,1,14,5,15,1,8,1,10,1,8,1,15,1,14,1,8,3,15,1,8,19,10,3,8,3,10,8,8,5,10,3,8,22,10,1,8,1,10,1,8,3,10,4,8,8,10,14,8,15,10,1,8,15,10,2,8,20,10,6,8,1,10,3,8,1,10,2,8,1,15,1,8,1,10,5,8,9,10,1,19,27,4,39,19,29,4,1,19,2,10,3,8,1,14,1,8,11,10,1,8,2,15,2,14,2,8,6,15,2,8,2,10,4,8,13,10,6,8,1,10,1,8,2,10,1,8,1,10,1,8,11,10,1,8,4,10,2,8,2,10,1,8,17,10,3,8,5,10,1,8,2,10,1,8,15,10,1,8,2,10,2,8,5,10,1,8,1,10,2,8,13,10,1,8,3,10,3,8,3,10,1,8,16,14,1,8,1,14,2,16,1,8,1,15,1,14,2,8,4,14,1,15,1,8,1,15,1,8,1,15,3,10,1,8,6,10,3,8,7,14,1,8,35,10,2,8,18,15,1,8,7,15,1,14,1,10,3,19,36,4,73,}, + {4,52,19,34,4,1,14,1,15,1,9,1,10,1,19,19,10,1,15,3,14,4,15,1,8,1,14,3,8,2,14,3,8,17,10,5,8,2,10,1,8,1,10,1,8,1,10,4,8,6,10,1,8,28,10,4,8,1,10,1,8,5,10,15,8,14,10,5,8,14,10,1,8,4,10,1,8,15,10,4,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,9,2,8,2,10,4,8,4,10,1,8,4,15,1,10,1,4,1,19,26,4,40,19,32,10,2,8,1,14,1,8,6,10,1,8,5,10,1,8,2,15,1,14,2,15,1,8,8,10,6,8,7,15,2,8,1,15,1,8,1,10,8,8,5,10,1,8,16,10,2,8,19,10,3,8,6,10,1,8,5,14,1,8,23,10,3,8,11,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,6,10,2,8,1,14,1,8,2,10,1,8,8,14,1,8,3,14,1,10,1,8,1,14,1,8,3,10,2,8,1,15,1,8,2,15,1,14,1,15,1,8,1,10,1,8,1,10,2,8,9,10,1,8,4,10,1,8,13,7,1,8,18,15,1,8,24,14,2,8,3,14,2,10,2,19,41,4,69,}, + {4,53,19,34,4,3,10,1,19,1,9,1,15,1,4,1,19,14,10,2,8,4,15,3,8,7,15,1,14,3,8,8,10,2,8,6,10,6,8,1,10,1,8,3,10,4,8,6,10,1,8,12,10,1,8,7,10,1,8,6,14,1,8,5,10,1,8,5,10,15,8,13,10,3,8,2,10,2,8,34,10,3,8,1,10,1,8,6,10,9,8,2,10,1,8,1,10,2,8,4,10,1,4,1,19,26,4,41,19,28,4,2,19,2,10,2,8,7,10,1,8,1,10,1,8,6,15,1,14,3,15,1,14,3,8,4,10,6,8,4,15,1,8,1,15,1,8,1,14,1,8,3,10,8,8,1,10,2,8,2,10,1,8,14,10,4,8,15,10,1,8,1,10,1,8,2,10,1,8,4,10,1,8,2,10,1,8,2,10,1,8,2,14,3,8,20,10,3,8,3,10,1,8,8,10,1,8,2,10,3,8,7,10,2,8,3,10,3,8,7,14,1,8,6,15,1,8,3,10,2,8,3,15,2,14,1,15,2,8,9,15,1,8,4,14,2,8,1,10,3,8,19,15,2,8,9,15,1,14,1,15,1,14,1,8,12,10,1,8,6,15,1,8,1,7,1,14,2,8,3,15,1,8,1,10,1,19,1,10,1,19,44,4,65,}, + {4,53,19,35,4,1,10,2,4,1,14,2,4,1,19,13,4,1,8,8,15,1,8,4,15,1,8,4,14,3,8,1,14,3,8,2,10,2,8,7,10,5,8,1,15,1,8,3,10,4,8,7,10,2,8,1,10,1,8,1,10,1,8,1,4,1,10,2,8,1,10,1,8,2,10,1,8,5,10,3,8,5,14,1,8,6,10,1,8,3,10,6,9,1,10,12,8,16,10,1,8,37,10,2,8,4,10,14,8,1,10,2,8,5,4,1,19,26,4,42,19,32,4,1,8,8,10,1,8,5,15,2,8,1,14,3,8,1,15,1,14,2,8,5,10,5,8,1,10,2,8,4,14,2,15,1,8,2,10,12,8,14,10,1,8,1,10,4,8,17,10,5,8,3,10,1,8,4,10,1,8,4,14,3,8,16,10,2,8,3,10,1,8,3,10,1,8,8,10,3,8,2,10,1,8,13,10,2,8,12,15,1,8,5,10,2,8,3,15,1,8,1,14,2,8,13,15,1,14,3,8,2,10,1,8,13,7,1,8,17,14,3,15,1,8,17,15,1,8,7,15,3,10,2,19,46,4,65,}, + {4,55,19,35,4,1,14,1,15,1,4,1,19,3,4,1,19,9,10,1,8,10,14,3,15,1,14,1,8,2,14,5,8,1,14,3,8,2,10,2,8,7,10,4,8,1,10,5,8,2,10,2,8,1,10,2,8,1,10,6,8,1,10,4,19,2,10,4,8,5,10,1,8,13,10,2,8,4,10,10,8,1,10,1,8,1,10,4,8,3,10,2,8,22,10,1,8,10,10,1,8,4,10,1,8,12,10,3,8,2,10,3,8,1,10,7,8,1,10,3,8,4,14,1,8,3,4,1,19,24,4,46,19,30,10,1,8,9,10,2,8,1,15,1,14,1,15,1,14,2,8,1,14,1,15,1,14,2,15,2,8,3,15,1,14,1,8,1,10,5,8,4,15,2,8,3,10,15,8,10,10,1,8,1,10,3,8,2,10,1,8,3,10,2,8,20,10,1,8,2,10,1,8,1,10,2,14,1,8,4,14,1,8,2,10,1,8,3,10,1,8,13,10,1,8,1,10,4,8,8,10,1,8,3,10,1,8,14,10,3,8,13,14,1,8,3,10,2,8,2,10,2,8,1,15,1,14,1,15,1,8,13,14,3,8,36,14,2,8,20,14,2,7,1,8,2,15,1,14,2,15,1,10,1,19,51,4,61,}, + {4,55,19,35,10,1,15,1,4,1,19,2,4,1,15,1,4,1,19,8,10,1,14,2,8,1,10,2,8,6,14,4,15,1,8,5,15,1,14,1,8,2,14,1,8,3,10,1,8,6,10,5,8,6,10,5,8,1,10,3,8,1,10,4,8,1,10,1,19,1,10,1,19,5,10,2,8,6,10,1,8,1,10,1,8,8,10,1,8,9,10,16,8,4,10,1,8,20,10,4,8,8,10,1,8,11,10,2,8,1,10,2,8,3,10,8,8,2,10,1,8,1,10,2,8,3,10,2,8,1,10,2,8,4,10,1,4,1,19,23,4,47,19,24,4,1,19,4,10,2,4,1,8,1,10,2,8,3,15,2,8,4,14,3,8,4,15,1,14,4,8,3,10,6,8,5,15,1,8,4,10,13,8,13,10,3,8,9,14,2,8,6,10,1,8,1,10,1,8,3,10,1,8,2,10,2,8,6,10,1,8,20,15,1,8,5,10,1,8,1,10,1,8,3,10,2,8,7,10,2,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,4,8,3,10,4,8,12,15,1,8,1,10,1,8,6,10,1,8,2,15,2,8,9,10,2,8,3,15,1,8,17,14,1,7,1,14,1,8,35,15,1,8,3,14,3,15,1,14,3,15,1,8,1,10,1,19,1,10,1,19,52,4,58,}, + {4,57,19,34,4,1,19,3,4,1,14,1,4,1,10,1,19,7,10,1,14,2,8,1,10,3,8,5,14,2,8,4,14,2,8,1,15,1,14,2,8,14,10,6,8,1,10,2,8,2,10,2,8,2,10,3,8,2,10,5,15,1,19,1,10,1,19,2,10,2,8,8,10,1,8,1,10,1,8,9,10,1,8,1,10,2,8,5,10,15,8,1,10,2,8,24,10,4,8,21,10,5,8,1,10,1,8,2,10,3,8,1,10,1,8,1,10,2,8,1,10,3,8,6,10,3,8,3,4,2,19,23,4,47,19,29,10,2,8,6,10,2,8,5,14,4,8,1,15,1,8,1,15,1,14,1,15,2,8,2,15,1,8,1,10,7,8,10,10,11,8,3,10,1,8,1,10,1,8,1,10,1,8,5,10,6,8,13,10,1,8,6,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,19,15,1,8,1,15,2,8,11,10,2,8,7,10,1,8,2,10,1,8,5,10,1,8,1,10,4,8,1,10,2,8,3,10,2,8,14,10,4,8,15,15,1,8,2,10,1,8,20,14,4,8,26,15,1,8,8,7,1,14,1,8,2,14,1,7,2,15,2,14,2,8,1,10,2,19,55,4,57,}, + {4,57,19,38,4,3,19,7,10,1,8,19,15,1,8,2,14,1,8,3,14,2,8,6,10,2,8,2,10,7,8,1,10,1,8,2,10,3,8,1,10,11,19,4,10,1,8,15,10,2,8,1,10,1,8,5,10,1,8,5,10,14,8,1,10,1,8,9,14,1,8,13,10,1,8,3,10,3,8,22,10,4,8,3,10,2,9,1,10,1,8,4,10,4,8,4,10,1,8,2,10,3,8,3,10,2,19,23,4,47,19,29,10,2,8,13,14,4,8,1,15,1,8,9,10,1,8,1,10,3,8,2,10,2,8,10,10,1,8,1,10,7,8,2,10,4,8,1,10,1,8,5,10,6,8,3,10,1,8,2,14,1,8,2,14,2,8,3,10,1,8,6,10,1,8,1,10,2,8,4,10,2,8,1,10,2,8,16,15,1,8,1,15,1,14,1,15,1,8,10,10,1,8,11,10,1,8,2,10,1,8,4,10,1,8,1,10,2,8,6,10,1,8,14,10,2,8,3,15,1,8,1,15,1,8,1,15,1,8,6,10,1,8,9,15,3,8,17,7,1,14,1,8,34,7,1,14,4,15,1,8,2,15,1,14,2,15,1,10,2,19,58,4,55,}, + {4,57,19,47,10,1,8,35,10,10,8,2,10,5,8,1,10,13,19,2,10,1,8,16,10,3,8,5,10,1,8,2,10,1,8,2,10,15,8,5,10,3,8,2,14,3,8,16,10,3,8,22,10,4,8,3,10,5,8,2,10,8,8,3,10,3,8,4,10,1,19,24,4,47,19,29,10,2,8,6,15,3,8,2,10,1,8,1,14,3,8,3,10,1,8,5,10,1,8,2,10,4,8,19,10,3,8,6,10,1,8,8,10,7,8,1,10,2,8,5,14,3,8,1,10,1,8,14,10,1,8,1,10,1,8,1,10,2,8,13,10,1,8,2,14,1,15,2,14,2,15,1,8,7,10,2,8,2,10,1,8,5,14,1,8,7,10,1,8,5,10,1,8,1,10,2,8,2,10,1,8,15,10,1,8,1,10,1,8,1,15,4,14,1,15,3,8,10,10,2,8,4,15,2,8,18,14,1,8,4,14,1,8,28,7,1,14,5,8,1,14,3,15,1,8,1,10,2,19,65,4,49,}, + {4,57,19,47,10,1,15,1,8,2,10,1,8,3,10,1,8,1,10,1,8,13,14,1,8,11,10,28,8,1,10,2,19,2,10,1,15,1,8,15,10,4,8,2,10,1,8,7,10,7,8,1,10,5,8,2,10,1,8,4,10,3,8,3,14,2,8,42,10,4,8,2,10,1,8,1,10,4,8,1,10,7,8,4,10,4,8,3,10,1,19,24,4,47,19,28,10,2,8,7,15,2,8,3,10,2,15,1,8,14,10,4,8,6,10,1,8,12,10,2,8,15,10,7,8,1,10,2,8,10,10,2,8,6,10,1,8,2,10,1,8,13,10,2,8,7,10,1,8,2,14,1,15,2,14,1,16,1,14,1,8,7,10,3,8,1,10,2,8,6,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,2,10,2,8,1,10,2,8,17,15,4,8,3,15,2,8,9,15,2,8,29,14,2,15,1,8,17,15,1,14,1,8,6,7,1,14,2,7,1,14,4,8,1,15,3,8,1,10,2,19,66,4,49,}, + {4,57,19,47,10,1,8,4,10,2,8,2,10,3,8,3,14,1,10,1,8,7,14,3,15,1,8,7,10,3,8,2,10,1,8,1,10,10,8,1,10,6,8,1,10,6,19,2,10,1,8,5,10,1,8,12,10,2,8,5,10,1,8,6,10,5,8,4,10,2,8,3,4,1,8,4,10,4,8,13,10,1,8,32,10,4,8,6,10,9,8,5,10,3,8,4,4,1,19,24,4,47,19,28,10,2,8,6,15,2,8,2,15,2,8,1,10,1,8,8,7,1,15,1,14,1,8,6,10,1,8,9,10,1,8,9,10,1,8,1,10,2,8,13,10,2,8,1,10,1,9,1,10,3,8,5,10,1,8,4,10,1,8,6,10,1,8,9,10,1,8,3,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,6,10,1,8,3,14,3,15,1,14,2,15,1,8,10,10,2,8,1,10,1,8,3,10,2,8,2,10,1,8,14,10,1,8,16,15,4,8,4,15,1,8,1,15,1,8,9,15,1,8,8,10,1,8,12,7,1,8,2,15,1,8,5,14,1,15,1,8,19,14,1,8,6,7,1,14,1,7,3,14,2,8,1,15,2,8,2,10,2,19,75,4,41,}, + {4,57,19,47,10,1,8,2,10,3,8,2,10,1,8,1,10,1,8,4,15,1,8,7,14,4,8,9,10,1,8,1,10,14,8,1,10,5,8,2,10,4,19,3,10,1,8,17,10,2,8,6,10,1,8,6,10,8,8,3,10,1,8,8,10,1,8,38,10,1,8,9,10,5,8,2,10,1,8,5,10,7,8,2,10,1,8,1,10,3,8,1,10,1,8,3,10,1,19,24,4,47,19,25,10,4,8,4,10,1,8,2,15,2,8,3,14,1,15,1,8,7,14,2,15,1,8,2,15,1,8,5,10,1,8,10,10,1,8,7,10,1,8,1,10,1,8,14,10,2,8,1,10,6,8,18,10,1,8,6,10,5,8,1,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,3,10,1,8,5,10,1,14,1,15,5,14,1,8,11,10,4,8,6,10,1,8,8,10,1,8,26,15,2,8,1,15,2,8,32,15,1,14,1,7,1,8,1,7,2,8,5,7,1,15,1,8,21,7,1,14,4,7,3,8,1,15,3,8,3,10,2,19,76,4,41,}, + {4,62,19,1,4,1,19,39,10,2,8,5,10,2,8,15,14,2,8,12,10,3,8,1,10,13,8,2,10,1,8,2,10,2,8,1,10,1,19,4,10,1,8,18,10,1,8,4,10,2,8,8,10,6,8,11,10,2,8,2,10,3,8,12,10,2,8,2,14,1,8,22,10,1,8,3,10,1,8,1,10,2,8,5,10,1,8,3,10,10,8,2,10,3,8,5,10,1,19,31,4,32,19,4,4,1,19,2,4,1,19,25,10,4,8,1,15,1,8,1,10,3,8,6,15,4,8,6,14,2,8,2,14,1,15,1,8,3,9,1,8,3,15,1,8,1,14,3,15,1,8,1,10,3,8,1,10,1,8,1,10,3,8,2,10,2,8,12,10,5,8,1,10,4,8,17,10,1,8,2,10,1,8,3,10,1,8,1,10,7,8,6,10,2,8,2,10,1,8,7,10,1,8,1,14,3,8,1,15,1,8,4,10,2,8,4,10,8,8,1,10,1,8,2,10,1,8,5,14,1,8,1,10,1,8,4,10,1,8,10,10,1,8,7,10,1,15,2,8,1,15,2,8,1,15,1,8,24,15,1,8,6,7,1,14,1,8,1,15,1,8,7,15,2,8,7,15,2,8,7,15,1,8,2,15,1,14,2,17,1,14,6,15,1,14,1,15,1,10,4,19,22,10,6,19,1,10,2,19,1,10,9,19,37,4,41,}, + {4,65,19,37,10,1,8,4,10,1,8,2,10,1,8,29,10,11,8,3,10,2,8,2,14,2,15,1,8,1,10,5,19,4,10,1,8,3,10,1,8,9,10,2,8,3,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,6,10,8,8,1,10,1,8,7,10,1,8,1,10,1,8,2,10,5,8,17,15,1,8,3,10,1,8,21,10,1,8,11,10,9,8,1,10,4,8,6,10,1,19,30,4,31,19,33,10,3,8,5,10,2,8,8,15,3,8,2,10,1,8,3,15,1,14,2,8,2,15,2,8,4,15,1,14,1,15,3,14,1,8,4,10,3,8,3,10,6,8,3,10,1,8,23,10,1,8,15,10,1,8,4,10,4,8,1,10,5,8,3,10,1,8,3,10,3,8,7,15,1,16,1,14,3,15,1,8,9,10,6,8,4,10,8,8,1,10,2,8,15,10,1,8,10,15,1,8,1,10,1,8,5,10,1,8,1,10,1,8,18,15,1,8,15,15,1,14,1,8,1,7,1,15,1,8,7,15,1,8,10,14,2,8,1,17,1,14,4,7,1,8,1,15,2,8,1,10,1,19,17,10,12,8,1,10,9,15,1,14,1,15,1,10,6,19,1,10,1,19,32,4,40,}, + {4,65,19,37,10,1,8,31,10,1,8,2,10,6,8,2,10,7,8,2,10,4,8,1,15,1,8,2,10,4,19,5,10,2,8,10,10,3,8,2,10,1,8,4,10,2,8,1,10,1,8,1,10,1,8,6,10,9,8,10,10,1,8,1,10,5,8,46,15,1,8,5,10,1,8,1,10,9,8,2,10,4,8,5,15,1,4,1,10,1,4,1,19,28,4,31,19,33,10,2,8,6,10,2,8,12,10,2,8,4,15,1,8,4,14,1,15,1,8,5,15,1,8,1,14,2,15,1,8,1,10,4,8,5,10,4,8,4,10,1,8,1,10,1,8,2,10,3,8,1,10,4,8,19,10,1,8,3,10,2,8,1,10,1,8,2,10,1,8,21,10,1,8,8,14,2,15,1,8,1,15,1,8,11,10,3,8,9,10,3,8,2,10,2,8,3,10,3,8,17,15,1,8,1,15,3,8,1,15,2,8,13,10,1,8,10,15,1,8,4,14,1,8,5,7,1,8,3,15,1,14,1,8,12,14,1,8,4,14,1,8,2,15,1,8,1,14,2,8,1,14,1,17,1,14,3,8,2,15,1,8,1,10,2,19,17,10,5,8,1,10,1,8,7,10,4,8,2,15,1,8,1,14,2,8,1,15,1,14,3,15,1,10,5,19,32,4,38,}, + {4,65,19,37,10,1,15,1,8,29,10,1,8,2,10,1,8,4,10,18,8,1,10,1,8,1,10,6,19,3,10,2,8,11,10,1,8,3,10,2,8,3,10,1,8,1,10,1,8,10,10,1,8,1,10,6,8,13,10,2,8,3,10,1,8,30,10,2,8,7,10,4,8,1,15,1,14,1,15,1,14,1,8,2,10,17,8,6,15,1,4,2,19,28,4,32,19,30,10,3,8,3,10,3,8,1,10,4,8,5,10,1,8,5,10,3,8,5,15,1,8,2,15,2,8,12,10,1,8,4,15,1,8,10,10,11,8,1,10,1,8,1,10,1,8,1,10,1,8,6,10,1,8,6,10,1,8,1,10,1,8,2,10,1,8,2,10,2,8,5,10,1,8,6,10,1,8,1,10,1,8,2,10,1,8,4,10,2,8,3,10,3,8,9,10,1,8,21,10,1,8,8,10,3,8,17,15,1,14,2,15,1,8,2,15,2,14,2,15,1,8,2,15,1,8,15,10,1,8,2,15,1,8,15,15,2,8,11,14,1,8,3,14,1,15,1,8,3,14,2,7,1,14,3,7,1,14,2,15,3,10,3,19,16,10,4,8,1,15,2,8,1,15,3,8,5,10,2,8,2,15,3,8,2,10,1,8,1,14,4,10,8,19,32,4,35,}, + {4,65,19,35,10,2,15,2,8,10,10,3,8,4,10,3,8,4,10,1,8,3,10,2,8,1,10,3,8,1,10,1,8,1,10,4,8,1,10,5,8,3,10,4,8,2,10,9,19,2,10,2,8,14,10,2,8,5,10,3,8,20,10,1,8,14,10,2,8,30,10,1,8,1,10,1,8,4,10,5,8,1,15,1,14,1,15,2,8,1,10,18,8,6,15,1,4,2,19,23,4,1,19,4,4,32,19,29,10,3,8,1,10,1,8,1,10,3,8,2,10,1,8,14,10,6,8,1,10,1,8,1,15,1,8,8,10,1,8,3,10,2,8,5,15,3,8,9,10,11,8,2,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,35,10,1,8,2,10,2,8,4,10,3,8,25,10,1,8,1,10,1,8,3,10,1,8,5,10,3,8,13,15,1,10,1,8,2,15,4,8,2,14,1,15,3,14,1,15,1,8,6,10,2,8,21,7,1,8,19,14,3,7,1,8,2,7,1,14,1,8,2,15,1,8,1,14,6,8,3,10,4,19,16,10,3,8,6,15,2,8,2,15,1,8,5,10,3,8,4,10,1,8,1,10,1,8,3,10,12,19,27,4,2,19,1,4,32,}, + {4,65,19,35,4,2,15,1,8,28,10,3,8,2,10,7,8,3,10,4,8,1,10,15,15,1,4,1,10,1,19,2,10,1,8,24,10,1,8,6,10,4,8,9,10,1,8,5,10,1,8,9,10,3,8,1,10,4,8,29,10,3,8,9,10,14,8,5,10,1,8,4,4,1,8,1,4,1,10,1,4,1,19,22,4,1,19,4,4,32,19,27,10,7,8,1,10,2,8,2,10,2,8,1,10,1,8,5,10,2,8,3,10,2,8,1,10,5,8,3,10,3,8,4,14,2,8,4,10,3,8,15,10,12,8,3,10,1,8,17,10,1,8,1,10,2,8,3,10,1,8,9,10,3,8,11,10,2,8,6,10,1,8,2,10,1,8,12,10,1,8,16,10,1,8,12,15,1,8,6,15,2,8,5,10,1,15,1,14,4,15,1,10,2,8,3,10,1,8,47,14,1,7,1,14,2,8,2,14,2,7,1,8,2,14,2,8,1,14,2,7,1,8,2,10,5,19,16,10,2,8,6,14,5,8,5,7,1,8,14,10,1,8,2,10,11,19,25,4,1,19,1,4,32,}, + {4,67,19,32,4,2,10,5,8,13,10,1,8,1,10,1,8,4,10,1,8,2,10,4,8,2,10,1,8,1,10,1,8,1,10,5,8,1,10,4,8,4,10,1,8,6,15,1,10,3,4,1,10,2,4,1,19,3,10,1,8,14,10,1,8,4,10,4,8,1,10,1,8,5,10,5,8,3,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,13,10,2,8,2,10,4,8,12,10,1,8,7,10,1,8,9,10,2,8,10,10,8,8,1,10,1,8,15,4,1,10,2,19,22,4,3,19,2,4,32,19,24,10,7,8,1,10,2,8,1,10,2,8,2,10,1,8,3,10,1,8,5,10,1,8,3,10,2,8,1,10,4,8,1,10,1,8,2,15,2,14,3,8,3,14,1,8,3,10,2,8,10,10,1,8,7,10,10,8,7,10,1,8,13,10,1,8,1,10,3,8,3,10,2,8,9,10,1,8,18,10,1,8,1,10,1,8,1,10,1,8,21,10,1,8,1,10,3,8,1,10,1,8,1,10,1,8,8,10,1,8,3,15,2,8,13,15,1,14,2,15,1,8,3,10,2,8,19,15,1,8,32,7,1,14,1,7,1,8,1,7,1,14,3,8,2,14,2,8,1,7,1,14,1,8,3,10,5,19,15,10,2,8,1,15,1,8,5,7,4,8,27,10,12,19,23,4,32,}, + {4,68,19,35,10,4,8,23,10,3,8,1,10,11,8,15,10,3,4,1,10,3,19,3,10,1,4,1,8,21,10,2,8,3,10,1,8,3,10,5,8,11,10,3,8,11,10,2,8,1,10,4,8,1,10,1,8,20,10,1,8,8,10,1,8,1,10,1,8,4,10,2,8,1,10,1,8,1,10,8,8,16,4,1,8,1,10,1,19,23,4,3,19,2,4,32,19,24,10,8,8,1,10,1,8,3,10,1,8,2,10,1,8,7,10,2,8,7,10,6,8,2,15,1,14,2,8,5,15,1,8,11,10,1,8,1,10,1,8,6,10,2,8,2,10,1,8,1,10,7,8,5,10,2,8,16,10,1,8,4,10,1,8,10,10,1,8,4,10,1,8,7,10,1,8,9,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,2,10,2,8,11,10,3,8,1,10,1,8,6,10,1,8,4,15,1,8,2,15,1,14,1,15,1,8,10,15,1,8,1,15,2,14,2,8,1,15,1,8,2,10,1,8,1,15,1,8,9,10,1,8,20,15,1,14,1,8,19,14,3,7,1,8,1,7,1,14,2,8,1,14,4,8,3,15,1,8,2,10,3,4,1,10,1,19,13,10,3,8,1,15,1,8,6,7,1,8,2,7,2,8,10,7,1,8,11,10,1,8,2,10,14,19,20,4,33,}, + {4,69,19,37,10,1,8,18,10,7,8,1,10,1,8,1,10,1,8,1,10,8,8,1,10,3,8,10,10,2,19,8,10,2,8,15,10,3,8,4,10,1,8,3,10,1,8,4,10,3,8,5,10,1,8,1,10,2,8,1,10,1,8,4,10,2,8,12,10,6,8,3,10,1,8,22,10,1,8,2,10,1,8,1,10,1,8,7,10,2,8,1,10,8,8,15,10,1,8,1,4,2,19,22,4,36,19,24,10,12,8,7,10,1,4,1,10,1,4,1,10,2,8,4,10,1,8,1,10,1,8,7,10,3,8,6,15,1,8,2,14,3,15,1,8,10,10,3,8,1,10,1,8,1,10,1,8,1,10,2,8,5,10,2,8,3,10,1,8,1,10,2,8,23,10,1,8,5,10,4,8,1,10,3,8,4,10,1,8,3,10,4,8,7,10,1,8,6,10,1,8,1,10,1,8,1,10,1,8,12,10,3,8,3,10,1,8,10,15,2,14,3,15,1,8,8,15,1,8,2,15,2,8,15,10,1,8,16,14,1,8,4,14,1,8,1,15,1,14,2,8,17,7,1,14,4,8,1,7,1,14,7,8,2,15,1,8,1,14,1,15,1,8,2,10,4,19,13,10,3,14,1,8,3,7,1,8,5,7,1,8,2,7,1,8,4,7,1,8,4,15,1,8,10,10,1,8,1,10,1,8,1,10,4,8,2,10,11,19,17,4,4,19,4,4,25,}, + {4,69,19,36,10,1,8,19,10,6,8,1,10,1,8,3,10,9,8,1,10,3,8,1,10,1,8,2,10,1,8,3,10,1,19,4,10,1,19,7,10,1,8,15,10,2,8,1,10,2,8,2,10,2,8,3,10,1,8,3,10,3,8,1,10,1,8,7,10,1,8,2,10,2,8,6,10,3,8,9,10,4,8,3,10,2,8,33,10,10,8,1,10,1,8,3,10,3,8,8,4,1,8,1,4,1,19,23,4,36,19,23,10,11,8,3,10,1,8,1,10,1,8,2,10,8,8,1,14,2,8,3,15,1,8,1,10,1,8,3,15,1,8,1,10,2,8,6,14,1,8,2,14,2,15,1,8,4,14,1,8,4,10,1,8,1,10,6,8,7,10,1,8,1,10,1,8,6,10,3,8,14,10,2,8,8,10,1,8,6,10,1,8,48,10,2,8,1,10,1,8,1,10,1,8,12,15,1,17,1,14,1,15,1,8,1,15,3,8,3,15,2,8,1,14,1,15,1,8,32,14,5,8,4,14,1,8,19,7,1,14,8,7,1,14,3,8,4,15,2,8,3,10,3,19,7,10,8,8,1,14,2,8,1,7,1,8,3,7,1,8,1,7,1,14,1,7,1,8,3,7,1,8,23,10,2,15,2,8,3,10,10,19,24,4,25,}, + {4,71,19,33,10,1,8,16,10,2,8,2,10,4,8,1,4,1,8,3,10,14,8,3,10,3,8,3,10,5,4,1,10,2,4,2,8,1,10,3,8,14,10,1,8,10,10,1,8,6,10,1,8,10,10,1,8,1,10,1,8,4,10,1,8,1,10,5,8,5,10,4,8,1,10,1,8,4,10,1,8,21,10,2,8,11,10,1,8,1,10,7,8,2,10,6,8,10,14,1,4,2,19,23,4,35,19,23,10,11,8,1,10,1,8,3,10,2,4,1,8,1,10,9,8,1,14,3,10,1,8,4,14,1,15,1,8,8,14,4,8,1,14,2,15,1,8,5,10,3,8,1,10,3,8,1,10,1,8,1,10,1,8,17,10,3,8,14,10,4,8,3,10,1,8,9,10,1,8,44,14,1,8,20,15,1,14,3,8,7,15,1,8,1,15,1,14,1,15,2,8,2,15,1,8,7,10,3,8,14,10,1,8,2,15,2,8,2,14,1,15,1,8,7,15,1,8,16,7,1,14,4,7,4,14,2,7,1,14,2,8,5,10,1,8,2,15,1,8,1,10,3,19,5,4,1,10,7,8,1,15,1,14,1,15,1,14,1,15,1,8,3,14,1,7,3,8,2,7,1,8,24,10,2,8,4,10,2,8,1,10,10,19,23,4,25,}, + {4,71,19,31,10,1,4,1,8,11,10,1,8,6,10,2,8,4,10,2,8,1,10,1,8,3,10,5,8,1,10,7,8,1,10,1,8,4,10,3,8,2,10,3,4,1,10,3,15,2,8,6,10,2,8,27,10,1,8,1,10,1,8,7,10,1,8,1,10,5,8,3,10,5,8,5,10,4,8,4,10,3,8,1,10,1,8,15,10,1,8,15,10,1,8,3,10,5,8,2,10,3,8,3,10,1,8,10,15,1,4,1,10,1,19,23,4,34,19,23,10,11,8,4,10,1,4,1,10,4,19,8,10,2,14,2,15,1,8,2,10,1,8,1,15,2,8,3,15,1,14,1,8,2,15,1,14,4,15,1,14,3,15,1,10,1,8,3,10,7,8,1,10,5,8,3,10,2,8,13,10,2,8,41,10,1,8,2,10,2,8,17,10,1,8,1,10,1,8,11,10,1,8,8,10,1,8,10,15,1,8,6,15,1,8,5,15,1,8,1,10,1,8,1,15,2,8,4,15,1,8,2,10,3,8,1,10,1,8,3,10,1,8,4,10,3,8,1,10,1,8,12,14,1,8,3,15,1,8,15,14,5,17,1,14,7,7,1,15,1,8,8,15,1,8,1,10,2,19,4,10,2,8,2,10,5,8,1,15,1,8,4,7,2,8,2,7,1,14,2,7,1,8,6,7,1,15,1,7,1,8,21,10,1,8,2,10,2,8,3,10,9,19,20,4,26,}, + {4,73,19,28,10,2,8,10,10,1,8,1,10,2,8,3,10,2,8,4,10,1,8,8,10,2,8,6,10,1,8,3,10,1,8,1,10,2,8,1,10,2,8,2,10,10,8,27,10,3,8,4,10,1,8,3,10,2,8,6,10,1,8,1,10,1,8,2,10,2,8,4,10,1,8,1,10,3,8,6,10,2,8,27,10,1,8,13,10,1,8,1,10,1,8,1,10,5,8,3,10,2,8,4,10,1,8,10,10,1,19,24,4,33,19,23,10,11,8,3,10,1,4,1,10,2,19,13,10,1,8,1,14,2,10,1,8,1,10,1,8,4,15,1,14,2,8,3,14,4,8,4,15,1,10,3,8,2,10,13,8,3,10,1,8,12,10,1,8,4,10,1,8,8,10,1,8,16,10,2,8,13,10,4,8,2,10,1,8,31,10,2,8,20,15,1,8,9,10,1,8,1,15,1,8,8,10,1,8,11,10,3,8,5,10,1,8,14,15,1,8,14,14,12,7,2,8,1,14,3,8,8,10,7,8,6,15,1,8,1,15,1,8,4,14,3,8,1,14,3,7,1,8,1,7,2,8,1,7,1,8,2,7,1,15,1,8,29,10,1,8,2,10,1,8,1,10,5,19,18,4,27,}, + {4,73,19,28,4,1,15,2,8,11,10,3,8,19,10,1,8,2,10,1,8,7,10,7,8,6,10,4,8,2,10,1,8,24,10,4,8,6,10,5,8,7,10,1,8,3,10,1,8,3,10,3,8,1,10,1,8,6,10,4,8,37,10,1,8,2,10,1,8,3,10,3,8,1,10,1,8,9,10,3,8,6,4,1,10,2,19,24,4,32,19,23,10,10,8,1,10,1,8,1,10,3,19,15,10,3,8,2,10,2,8,6,15,1,14,1,7,1,8,2,15,1,14,3,8,6,10,1,8,6,10,10,8,13,10,1,8,6,10,1,8,21,10,1,8,4,10,1,8,2,10,1,8,12,10,3,8,2,10,2,8,31,10,1,8,25,15,1,8,2,15,2,8,21,10,1,8,1,10,2,8,35,14,3,7,3,14,1,7,1,14,2,7,2,14,2,7,1,14,4,7,2,8,6,10,7,8,1,10,2,8,2,14,1,15,3,8,4,7,1,8,1,7,1,14,2,8,4,7,1,8,2,14,1,8,6,7,1,8,6,10,1,8,7,15,1,8,3,14,1,8,2,10,1,8,1,10,1,8,5,10,8,19,17,4,27,}, + {4,73,19,28,10,1,8,9,10,3,8,2,10,1,8,2,10,1,8,13,10,1,8,1,10,1,8,1,10,1,8,10,10,1,8,1,10,1,8,1,10,16,8,24,10,4,8,7,10,3,8,11,10,2,8,4,10,1,8,1,10,1,8,5,10,2,8,1,10,2,8,15,14,1,8,18,10,3,8,4,10,1,8,2,10,3,8,1,10,3,8,4,10,1,8,4,10,1,8,1,10,3,8,4,10,1,19,25,4,30,19,24,10,12,8,2,10,2,19,18,10,2,8,8,10,1,8,1,7,1,14,1,8,3,15,1,14,2,15,1,8,1,15,3,8,1,10,1,8,5,10,9,8,18,10,1,8,2,10,2,8,2,14,1,8,23,10,2,8,15,10,1,8,26,10,8,8,2,10,2,8,18,15,1,8,4,15,1,8,5,10,1,8,4,10,1,8,16,10,1,8,37,14,10,7,2,14,2,7,1,14,2,8,8,15,1,8,2,10,1,9,1,10,4,8,1,10,1,8,2,15,1,14,1,15,2,8,8,14,1,8,1,7,1,8,5,7,1,14,1,7,2,8,11,10,1,8,6,15,1,14,1,8,2,15,1,14,1,8,10,10,1,8,1,10,7,19,16,4,27,}, + {4,73,19,28,10,1,8,9,10,3,8,2,10,1,8,2,10,1,8,1,10,1,8,12,10,1,8,14,10,1,8,1,10,12,8,1,10,4,8,24,10,3,8,9,10,2,8,12,10,1,8,1,10,1,8,9,10,1,8,1,10,1,8,1,10,3,8,14,14,3,8,11,10,1,8,2,10,1,8,3,10,1,8,1,10,2,8,2,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,5,10,1,8,2,10,2,8,3,10,2,8,3,10,2,19,25,4,30,19,24,10,9,8,1,10,1,8,3,10,2,19,18,10,2,8,5,10,5,8,1,7,1,8,1,10,2,8,1,15,1,8,2,15,3,8,2,10,1,8,6,10,8,8,1,15,1,8,4,10,1,8,9,10,1,8,1,10,2,8,20,10,1,8,5,10,8,8,7,10,1,8,8,10,2,8,22,10,2,8,2,10,3,8,17,10,1,8,12,15,1,8,1,10,2,8,5,15,1,8,2,10,1,8,12,10,2,8,2,10,1,8,19,15,1,8,12,14,8,7,4,14,2,7,11,14,1,8,4,10,1,8,1,10,2,8,4,15,1,14,2,15,1,8,6,7,4,14,1,8,8,15,1,14,1,8,11,10,2,8,9,15,1,8,14,10,8,19,16,4,25,}, + {4,73,19,28,10,1,8,9,10,8,8,1,10,2,8,10,10,1,8,2,10,1,8,1,4,1,8,4,10,1,8,7,10,3,8,1,10,9,8,2,10,3,8,21,10,1,8,2,10,3,8,11,10,1,8,6,10,1,8,17,10,1,8,3,10,1,8,10,10,1,8,6,14,1,15,1,8,14,10,1,8,7,10,2,8,1,10,4,8,6,10,1,8,1,10,5,8,6,4,1,10,1,19,24,4,32,19,23,10,5,8,1,10,1,8,9,10,1,19,17,10,3,8,7,10,2,8,3,10,4,8,2,15,2,8,3,10,2,15,1,8,5,10,2,8,1,10,5,8,2,10,1,8,14,10,2,8,1,10,1,8,2,10,1,8,14,10,2,8,6,10,1,8,2,10,4,8,4,10,2,8,1,10,1,8,2,10,2,8,4,10,1,8,3,10,1,8,6,15,1,8,15,10,1,8,17,10,1,8,4,10,1,8,7,15,3,8,9,15,1,8,3,10,2,8,3,10,1,8,7,10,1,8,25,10,2,8,8,15,1,8,1,14,7,8,1,14,1,7,2,14,1,7,1,14,1,7,2,8,1,7,1,14,1,7,1,14,1,7,2,14,1,8,12,15,4,8,1,15,1,8,1,10,2,8,4,15,1,8,5,14,1,7,1,8,5,7,1,8,10,10,2,8,8,15,1,8,2,10,2,8,13,10,6,19,19,4,22,}, + {4,71,19,29,10,1,8,11,10,7,8,6,10,3,8,3,10,1,8,2,4,1,8,3,10,1,8,1,10,4,8,3,10,6,8,1,10,2,8,3,10,4,8,2,10,3,8,22,10,4,8,9,10,2,8,7,10,1,8,1,10,1,8,7,10,3,8,5,10,1,8,4,10,1,8,8,10,4,8,7,10,1,8,9,10,1,8,10,10,2,8,1,10,4,8,10,10,4,8,5,4,2,19,25,4,32,19,23,10,4,8,5,10,2,8,3,10,2,19,19,10,2,8,2,10,1,8,9,10,4,8,1,10,1,8,5,10,2,15,1,8,1,15,1,8,3,10,1,8,2,10,4,8,1,10,2,8,11,10,1,8,1,10,1,8,2,10,1,8,1,10,2,8,9,10,1,8,14,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,2,10,1,8,2,10,2,8,2,10,1,8,13,15,1,14,2,8,11,10,1,8,11,10,1,8,4,15,1,8,2,10,1,8,2,10,1,8,3,10,1,8,4,15,1,14,1,16,2,14,1,15,1,8,21,10,1,8,4,10,1,8,2,15,1,8,36,14,7,8,1,14,3,7,1,8,1,7,1,8,1,7,5,14,1,7,1,15,1,8,3,14,1,15,1,8,2,15,4,8,1,15,1,8,2,15,1,8,1,10,3,8,2,7,1,8,6,14,1,7,1,8,5,7,1,8,29,15,1,8,6,10,1,8,1,10,1,8,3,10,4,19,18,4,21,}, + {4,71,19,28,10,2,8,10,10,5,8,3,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,15,10,1,8,3,10,4,8,4,10,2,8,2,10,1,8,2,10,1,8,3,10,2,8,19,10,1,8,3,10,4,8,8,10,2,8,17,10,4,8,5,10,3,8,4,10,1,8,4,10,1,8,2,10,5,8,15,10,1,8,6,10,1,8,3,10,3,8,1,10,1,8,13,10,3,8,5,4,1,19,26,4,32,19,23,4,1,8,2,10,2,4,1,8,1,10,3,8,3,4,1,10,2,19,19,4,1,8,3,10,1,8,6,15,1,8,2,10,6,15,2,8,5,15,2,8,8,9,2,8,3,10,3,8,5,10,1,8,1,10,2,8,1,10,2,8,1,10,2,8,1,10,1,8,2,14,1,8,19,10,1,8,2,10,1,8,5,10,1,8,4,10,1,8,1,10,2,8,5,10,1,8,13,14,2,8,4,10,1,8,5,10,2,8,16,15,1,8,1,10,3,8,3,10,3,8,15,10,1,8,11,10,1,8,1,10,2,8,1,10,1,8,3,10,2,8,7,15,4,8,25,14,2,8,2,14,4,7,3,14,1,7,5,14,1,7,1,14,1,7,3,8,3,7,1,8,8,15,1,8,3,15,1,8,1,10,4,8,2,7,1,8,11,10,1,8,22,15,3,10,3,8,8,15,1,8,5,10,6,19,18,4,21,}, + {4,69,19,29,4,1,10,1,8,12,10,4,8,2,10,3,8,16,10,1,8,3,10,4,8,1,10,5,8,3,10,3,8,1,10,1,8,2,10,1,8,24,10,4,8,1,10,3,8,9,10,2,8,2,10,2,8,5,10,1,8,6,10,3,8,6,10,1,8,2,10,1,8,4,10,5,8,3,10,3,8,22,10,4,8,2,10,1,8,10,10,1,8,1,10,1,8,4,10,1,8,5,10,1,19,27,4,32,19,22,10,1,4,1,8,1,4,1,10,8,8,1,4,1,15,2,4,1,19,19,15,1,14,1,8,12,10,5,8,1,15,2,8,5,14,1,15,1,8,5,15,1,8,2,10,2,8,3,10,3,8,2,10,3,8,3,10,5,8,4,10,1,8,21,10,2,8,20,10,1,8,2,10,2,8,9,10,1,8,12,10,2,8,7,10,1,8,4,10,1,8,1,14,1,16,1,14,1,15,1,8,1,10,4,8,1,10,1,8,3,10,2,8,2,10,1,8,7,15,1,8,7,10,3,8,2,10,5,8,2,10,1,8,13,15,1,8,27,14,2,7,1,14,5,7,2,14,1,7,2,8,1,14,3,7,1,14,1,7,1,8,1,7,3,15,1,8,12,15,1,8,2,10,3,8,5,7,1,14,1,8,9,10,1,8,4,14,1,8,17,15,2,8,4,10,1,8,12,10,3,8,1,10,3,19,17,4,21,}, + {4,68,19,30,10,2,15,1,8,8,10,4,8,1,10,3,8,1,10,4,8,14,10,1,8,1,10,1,8,4,10,1,8,3,10,3,8,1,10,2,8,3,10,1,8,4,10,1,8,25,10,2,8,3,10,1,8,9,10,3,8,1,10,4,8,6,10,1,8,2,10,5,8,19,10,1,8,1,10,3,8,24,10,3,8,7,10,3,8,2,10,2,8,7,10,2,8,2,4,1,10,1,19,27,4,32,19,22,4,2,10,2,19,7,10,2,15,2,4,2,19,19,4,1,14,2,8,8,10,9,15,1,8,3,10,1,8,2,14,2,8,5,15,1,8,1,9,1,10,2,8,3,15,1,8,3,10,4,8,4,10,2,8,1,10,1,8,1,10,1,8,3,10,1,8,34,10,4,8,1,10,1,8,2,10,1,8,15,15,2,8,11,10,1,8,5,10,1,8,5,10,1,8,1,14,1,16,1,14,1,8,23,15,3,8,6,10,1,8,3,10,5,8,3,10,1,8,1,10,1,8,41,14,6,8,1,14,1,7,1,15,1,7,1,14,2,7,1,8,1,7,5,15,1,7,1,8,12,15,1,8,2,10,2,8,4,14,3,8,8,7,1,8,7,14,1,8,17,15,1,8,10,10,1,8,5,10,1,8,4,10,4,19,16,4,21,}, + {4,67,19,31,10,1,8,3,10,1,8,5,10,5,15,1,10,7,8,12,10,1,8,1,10,1,8,9,10,2,8,1,10,5,8,3,10,2,8,3,10,2,8,8,10,5,8,12,10,2,8,2,10,1,8,10,10,1,8,3,10,3,8,3,10,1,8,2,10,1,8,1,10,1,8,2,10,3,8,3,10,1,8,15,10,4,8,6,15,1,8,19,10,3,8,4,10,1,8,3,10,1,8,1,10,3,8,1,10,1,8,8,15,1,8,1,10,1,19,27,4,32,19,23,4,1,19,11,4,2,19,22,10,1,14,1,8,8,10,3,8,1,10,3,8,2,15,1,8,4,10,1,8,1,14,2,8,5,15,1,8,2,10,5,8,1,10,6,8,1,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,10,10,1,8,24,10,2,8,4,10,1,8,20,10,2,8,4,10,1,8,10,10,1,8,1,15,1,8,7,15,1,14,2,8,3,10,2,8,3,15,1,8,2,10,1,8,7,14,1,15,1,8,4,10,1,8,7,10,1,8,8,10,1,8,2,10,2,8,14,14,1,15,1,8,4,10,2,8,11,14,1,8,3,14,2,7,2,14,1,7,1,14,2,7,2,14,3,7,1,14,1,8,1,7,1,14,1,7,1,14,2,8,4,14,2,8,6,15,2,8,7,14,2,7,1,8,7,7,1,8,27,10,1,8,7,15,1,8,6,10,1,8,1,10,1,8,1,10,1,8,1,10,5,19,15,4,21,}, + {4,65,19,33,10,1,8,6,10,6,8,4,10,2,8,3,10,1,8,16,10,4,8,2,10,11,8,5,10,3,8,1,10,2,8,6,10,1,8,2,10,3,8,14,10,1,8,10,10,2,8,1,10,6,8,5,10,1,8,1,10,1,8,1,10,3,8,3,10,1,8,2,10,1,8,15,10,1,8,6,14,2,8,20,10,4,8,2,10,1,8,3,10,5,8,1,10,1,8,9,4,1,10,1,19,27,4,32,19,34,4,1,19,24,10,1,15,1,8,9,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,1,10,2,8,1,15,3,8,8,10,8,8,5,10,3,8,5,10,1,8,3,10,1,8,10,10,1,8,10,10,1,8,7,15,1,8,20,10,1,8,1,10,1,8,1,10,1,8,8,10,4,8,18,15,1,8,1,15,1,8,1,15,1,14,3,8,6,10,1,8,3,10,1,8,3,10,1,8,4,15,1,8,3,10,1,8,1,10,1,8,19,10,1,8,4,15,4,8,7,14,2,8,4,10,2,15,3,8,9,15,1,14,3,8,1,7,2,14,1,7,1,14,2,7,1,15,1,14,2,8,1,14,1,7,3,14,1,8,2,7,1,8,2,14,2,8,1,14,1,15,1,8,5,14,1,15,1,8,4,10,1,8,11,7,1,8,32,10,1,8,9,10,3,8,5,10,6,19,17,4,17,}, + {4,65,19,32,10,2,8,5,10,1,8,1,10,1,8,1,10,1,8,5,10,3,8,3,10,2,8,15,10,3,8,4,10,8,8,2,10,1,8,5,10,1,8,3,10,1,8,5,10,6,8,4,10,1,8,19,10,1,8,4,10,5,8,6,10,1,8,5,10,2,8,3,10,1,8,2,10,1,8,9,10,6,8,5,14,2,8,12,10,1,8,6,10,2,8,3,10,3,8,2,10,1,8,2,10,4,8,4,10,1,8,1,10,1,8,3,10,1,4,2,19,27,4,32,19,28,4,1,19,4,4,1,19,3,4,1,19,21,10,2,15,2,8,4,10,1,8,1,10,2,8,2,10,2,8,2,10,1,8,2,10,1,8,3,15,3,8,10,10,7,8,6,10,1,8,1,10,2,8,4,10,1,8,24,10,1,8,27,10,2,8,12,10,3,8,24,15,3,8,6,10,3,8,18,10,1,8,4,10,4,8,6,10,1,8,9,15,1,14,2,8,1,10,2,8,10,10,1,14,1,15,2,8,1,15,1,8,8,14,4,8,1,7,1,8,1,7,1,8,1,7,1,8,2,7,1,14,1,8,1,7,1,8,3,7,2,8,1,7,1,8,1,7,1,8,1,7,1,8,2,7,1,8,2,15,1,14,1,15,2,8,1,10,1,8,2,10,1,8,7,7,2,8,2,7,1,8,11,15,1,8,16,15,1,8,19,10,1,8,2,10,6,19,17,4,17,}, + {4,65,19,28,10,2,19,2,10,1,8,11,10,3,8,1,10,1,8,6,10,1,8,6,15,1,8,1,14,1,8,14,10,1,8,1,10,3,8,4,10,1,8,1,10,2,8,12,10,8,8,2,10,4,8,20,10,3,8,1,10,2,8,1,10,1,8,7,10,3,8,5,10,1,8,1,10,1,8,1,10,1,8,8,10,1,8,3,10,2,8,26,10,4,8,2,10,3,8,4,10,4,8,6,10,1,8,4,4,3,19,27,4,31,19,32,4,1,19,29,10,1,8,3,14,1,8,1,10,2,8,1,10,4,8,2,10,3,8,2,15,3,8,1,15,1,8,1,10,2,8,4,10,2,8,3,10,4,8,5,10,1,8,1,10,1,8,1,10,1,8,8,10,1,8,17,10,1,8,20,10,2,8,10,10,2,8,2,10,1,8,8,10,4,8,4,15,1,8,21,15,2,8,5,10,1,8,7,15,1,8,7,10,2,8,6,10,1,8,1,10,2,8,6,10,1,8,4,10,1,8,8,14,1,8,1,10,1,8,12,15,2,8,12,15,1,14,2,7,1,8,8,7,1,14,1,8,7,14,1,8,11,15,1,8,14,14,2,8,16,10,2,8,1,15,1,8,9,15,1,8,2,10,1,8,16,10,1,8,4,10,6,19,16,4,17,}, + {4,63,19,28,10,5,4,1,8,1,15,1,8,9,10,1,8,1,10,1,8,2,10,5,8,1,10,1,8,6,15,1,14,4,15,1,8,12,10,6,8,12,10,2,8,5,10,7,8,5,10,3,8,4,10,1,8,20,10,5,8,3,10,7,8,14,10,1,8,1,10,3,8,1,10,1,8,26,10,3,8,7,10,4,8,6,10,1,8,8,4,2,19,27,4,31,19,62,10,1,4,1,8,3,10,4,8,1,10,2,8,3,10,2,8,2,14,1,15,3,8,3,10,2,8,4,10,10,8,3,10,1,8,3,10,4,8,4,10,1,8,24,14,1,15,1,8,3,10,2,8,6,10,2,8,2,10,1,8,23,10,6,8,24,14,2,8,2,15,1,14,1,8,6,10,3,8,3,10,1,8,4,15,1,8,1,10,1,8,7,10,1,8,1,10,1,8,17,15,2,8,31,15,1,8,16,7,1,8,1,14,1,7,2,8,9,15,1,8,10,14,2,8,3,7,1,8,12,15,2,8,17,10,2,8,13,15,1,8,6,10,8,19,15,4,17,}, + {4,61,19,30,10,1,8,1,15,1,8,3,15,1,8,16,10,3,8,1,10,1,8,8,14,4,15,1,8,10,10,3,8,1,10,3,8,7,10,3,8,5,10,1,8,2,10,4,8,1,10,5,8,1,10,1,8,1,10,3,8,19,10,1,8,6,10,3,8,5,10,4,8,1,10,1,8,2,10,1,8,2,10,3,8,8,10,1,8,1,10,1,8,1,10,2,8,13,10,1,8,8,14,1,8,2,10,2,8,21,10,1,8,4,10,1,4,1,10,1,4,1,19,27,4,31,19,63,10,1,8,2,10,9,8,1,10,4,8,9,10,1,8,3,10,1,8,3,10,4,8,6,10,1,8,2,10,3,8,4,10,1,8,26,14,2,8,2,10,1,8,15,15,2,8,18,10,9,8,12,10,4,8,2,10,3,8,14,10,6,8,4,14,2,10,1,8,8,10,1,8,1,10,1,8,12,15,1,8,3,14,2,8,4,10,1,8,44,7,1,14,1,8,10,15,1,14,2,8,3,15,1,14,1,8,4,14,1,8,1,7,1,8,5,7,1,8,3,15,1,8,10,15,1,8,15,10,3,8,3,15,1,8,4,15,1,8,1,15,2,8,1,10,1,8,3,10,9,19,14,4,17,}, + {4,60,19,30,10,2,8,18,10,1,8,6,10,3,8,6,15,1,14,1,15,1,8,1,15,1,14,1,8,11,10,6,8,8,10,3,8,1,10,1,8,6,10,2,8,1,10,8,8,2,10,2,8,2,10,1,8,1,10,1,8,1,10,1,8,18,10,3,8,11,10,4,8,12,10,4,8,1,10,3,8,24,10,2,8,19,10,1,8,3,10,1,8,3,4,2,19,28,4,31,19,64,10,1,15,1,8,1,10,6,8,1,10,3,8,8,10,4,8,2,10,3,8,3,10,4,8,2,10,1,8,1,10,1,8,6,10,1,8,2,10,1,8,1,10,2,8,6,10,5,8,11,10,1,8,2,14,1,8,3,10,1,8,11,15,1,14,1,15,1,8,25,10,6,8,5,10,1,8,2,10,1,8,10,10,1,8,2,10,1,8,13,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,4,10,1,8,3,10,1,8,4,10,2,8,4,10,1,8,5,15,1,8,4,14,2,8,16,15,1,14,1,15,1,8,26,7,1,14,1,7,1,8,13,15,2,8,3,15,1,14,1,8,5,14,1,8,36,10,4,8,3,14,1,15,1,8,3,15,1,8,1,15,1,8,1,10,3,8,3,10,9,19,13,4,17,}, + {4,59,19,31,10,1,8,25,10,2,8,9,15,2,8,1,15,1,8,2,15,1,8,9,10,2,8,1,10,2,8,4,10,1,8,5,10,1,8,1,10,1,8,5,10,12,8,3,10,3,8,1,10,1,8,16,10,1,8,6,10,1,8,6,10,1,8,2,10,6,8,14,10,1,8,3,10,2,8,26,10,1,8,20,10,1,8,1,10,1,8,3,4,1,10,1,4,1,19,25,4,34,19,64,10,1,14,1,8,2,10,4,8,1,10,4,8,3,10,2,8,2,10,1,8,12,10,5,8,1,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,7,10,1,8,4,10,2,8,1,10,3,8,12,15,1,8,6,10,1,8,1,15,1,8,5,15,1,14,3,8,10,10,1,8,15,10,5,8,7,14,1,8,2,15,1,8,4,10,1,8,20,10,6,8,1,10,2,8,4,10,1,8,3,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,12,15,2,8,1,10,1,8,1,15,2,8,12,14,1,8,27,7,1,14,1,7,1,15,1,7,1,8,15,14,2,15,1,8,5,14,2,8,29,10,1,8,4,10,4,8,4,15,1,14,1,8,8,10,1,8,5,10,8,19,13,4,17,}, + {4,59,19,29,10,2,8,19,10,1,8,17,15,3,8,3,14,2,8,9,10,3,8,3,10,2,8,2,10,1,8,4,10,1,8,1,10,1,8,5,10,10,8,1,10,1,8,4,10,1,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,12,10,2,8,8,10,5,8,1,10,3,8,14,10,1,8,2,10,1,8,27,10,2,8,14,10,1,8,3,10,1,8,4,10,1,4,1,10,2,19,24,4,35,19,64,4,1,8,3,10,1,8,2,10,1,8,1,10,10,8,18,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,2,8,4,10,1,8,17,10,1,8,15,15,3,8,3,15,2,8,1,15,2,8,4,10,2,8,2,10,2,8,18,10,1,8,4,10,1,8,2,14,2,15,3,8,1,10,1,8,1,10,1,8,9,15,1,8,6,15,5,8,2,10,8,8,1,10,2,8,4,10,1,8,5,10,1,8,8,15,1,8,24,15,2,8,18,15,2,8,8,14,1,8,18,15,1,14,1,8,5,10,1,8,1,7,2,8,2,14,1,7,2,8,1,14,2,8,2,15,2,8,29,15,2,8,4,10,1,8,11,10,6,19,13,4,17,}, + {4,59,19,29,10,1,8,37,15,1,14,1,15,3,8,1,15,1,14,3,15,1,8,19,10,1,8,9,10,12,8,2,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,12,10,5,8,7,10,1,8,1,10,1,8,4,10,1,8,4,10,2,8,12,10,1,8,29,10,2,8,7,10,1,8,12,10,5,19,25,4,35,19,64,10,1,15,1,8,1,10,4,8,1,15,3,8,2,10,7,8,1,10,1,8,4,10,6,8,9,10,1,8,2,10,4,8,1,10,3,8,1,10,1,8,6,10,1,8,4,10,1,8,2,10,3,8,2,10,3,8,11,15,2,8,5,15,1,8,13,10,1,8,10,10,1,8,2,14,3,8,1,10,2,8,5,10,1,8,1,15,2,8,4,15,1,8,6,15,1,14,1,8,2,15,4,8,1,15,7,14,2,15,1,10,6,8,12,10,1,8,2,10,1,8,7,15,2,8,10,15,1,8,14,15,1,14,1,8,8,10,2,8,7,15,2,8,30,10,1,8,5,10,1,8,4,7,1,14,3,8,29,15,1,8,10,10,4,8,1,10,1,8,8,10,1,8,1,10,1,8,1,10,2,19,12,4,17,}, + {4,58,19,30,4,1,8,5,10,1,8,32,15,2,8,1,15,2,8,1,14,3,8,31,10,7,8,2,10,2,8,1,10,1,8,1,10,1,8,2,10,5,8,1,10,1,8,1,10,1,8,15,10,2,8,5,10,1,8,1,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,15,10,1,8,5,14,1,8,23,10,2,8,15,14,1,8,5,4,1,10,3,19,25,4,35,19,64,10,1,8,1,10,1,8,4,15,2,14,1,15,1,8,1,10,9,8,5,10,8,8,5,10,1,8,2,10,1,8,2,10,10,8,2,10,1,8,3,10,3,8,5,10,2,8,9,15,1,8,1,10,1,8,4,15,1,8,1,15,1,8,2,10,2,8,3,14,1,15,2,8,3,10,2,15,1,8,5,10,3,8,7,15,1,14,3,8,2,15,1,14,1,8,16,15,1,8,5,10,1,8,2,15,1,8,9,15,1,8,3,10,3,8,4,10,1,15,1,8,2,15,2,8,2,10,1,8,5,10,1,8,13,10,2,8,18,15,1,14,1,8,61,15,1,8,23,15,1,8,1,15,1,8,4,15,1,8,10,15,1,8,1,10,1,8,2,10,1,8,6,15,2,10,4,8,1,10,2,19,12,4,17,}, + {4,57,19,28,10,4,8,28,10,2,8,12,15,6,8,1,15,1,14,1,8,26,10,7,8,1,10,4,8,2,10,1,8,1,10,1,8,2,10,1,8,5,10,1,8,15,10,1,8,1,10,2,8,3,10,2,8,3,10,1,8,1,10,1,8,40,10,2,8,9,10,1,8,5,10,2,8,9,14,1,8,2,10,1,8,3,10,1,4,2,19,21,4,35,19,66,10,3,8,9,10,12,8,4,10,6,8,9,10,1,8,3,10,1,8,2,10,1,8,1,10,1,8,10,10,2,8,3,10,1,8,1,10,1,8,17,15,1,8,2,15,1,10,4,8,3,15,1,8,1,15,1,8,3,15,1,8,1,14,1,15,1,8,1,10,1,8,12,15,1,14,3,8,2,15,1,14,1,8,6,15,1,8,3,15,2,8,4,15,1,8,8,10,1,8,10,10,2,8,3,10,2,8,2,15,2,8,3,15,1,8,1,10,1,8,2,10,1,8,15,15,1,8,2,10,3,8,4,15,1,8,2,14,1,7,1,8,9,15,1,8,9,15,1,8,3,15,1,8,2,15,1,8,31,10,1,8,6,14,1,15,1,8,3,14,2,8,24,15,1,8,8,15,1,8,1,15,2,8,3,15,2,8,11,15,2,10,2,8,2,10,4,19,15,4,13,}, + {4,57,19,28,10,2,8,1,10,2,8,12,10,2,8,15,10,1,8,8,15,1,8,4,15,3,8,2,15,1,8,12,15,1,14,1,8,12,10,9,8,1,10,3,8,1,10,1,8,8,10,1,8,20,10,2,8,3,10,7,8,3,10,1,8,37,10,5,8,11,10,2,8,16,4,3,19,22,4,36,19,65,10,1,8,11,10,11,8,8,10,3,8,6,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,2,10,2,8,5,10,3,8,3,10,1,8,1,10,1,8,11,15,2,8,10,10,3,8,2,15,1,8,1,10,1,8,5,15,1,8,17,14,1,8,7,14,1,8,8,15,2,8,12,15,1,8,1,10,2,8,9,10,2,8,7,14,2,15,1,8,2,15,1,8,14,10,2,8,6,10,4,8,4,14,2,8,3,7,1,8,5,15,1,8,5,10,1,8,6,15,2,8,6,15,1,8,20,10,1,8,7,10,3,8,3,15,1,14,1,15,1,8,1,15,1,8,3,14,2,8,30,10,2,8,1,14,1,15,2,8,4,15,1,14,1,8,18,10,3,19,15,4,13,}, + {4,55,19,29,10,2,8,9,10,2,8,20,10,1,8,4,10,2,8,3,15,1,8,21,15,1,14,3,8,2,15,1,8,9,10,4,8,1,10,5,8,1,10,1,8,1,10,2,8,7,10,1,8,5,10,1,8,5,10,1,8,7,10,2,8,6,10,6,8,12,14,1,8,13,10,1,8,14,10,2,8,1,10,1,8,11,10,3,8,1,10,1,8,13,10,1,4,1,10,1,19,23,4,36,19,64,10,1,8,11,10,11,8,9,10,2,8,8,10,2,8,1,10,1,8,7,10,3,8,5,10,2,8,4,10,1,8,13,15,1,8,12,10,1,8,5,10,1,8,4,15,1,8,7,10,3,8,16,14,1,15,1,8,2,15,2,8,4,10,1,8,2,15,1,8,2,10,1,8,6,15,1,8,2,10,2,8,9,10,1,8,7,15,7,8,7,10,1,8,3,10,3,8,7,10,6,8,2,14,2,15,1,8,2,14,2,8,8,15,1,8,26,14,3,8,23,14,2,15,1,8,3,14,1,15,1,14,1,8,1,14,1,15,1,8,25,15,1,8,1,10,2,8,1,14,2,8,5,14,2,8,3,15,2,8,1,15,1,14,1,8,11,10,3,19,14,4,13,}, + {4,55,19,28,4,1,10,1,8,14,15,1,8,21,10,1,8,6,15,1,8,23,14,1,8,18,10,1,8,1,10,8,8,4,10,4,8,11,10,1,8,6,10,3,8,7,10,5,8,11,14,1,8,21,10,2,8,4,10,3,8,4,10,2,8,7,10,3,8,1,10,2,8,12,10,2,19,24,4,40,19,60,10,1,8,6,10,4,8,1,10,7,8,1,10,1,8,11,10,2,8,2,10,1,8,2,10,1,8,5,10,2,8,2,10,2,8,1,10,1,8,1,10,3,8,3,10,3,8,12,10,1,8,17,10,1,8,7,14,2,8,6,15,1,8,19,10,1,8,2,15,1,8,2,15,2,8,4,15,1,8,2,15,1,14,1,8,32,15,1,14,3,15,2,8,2,10,1,8,3,10,5,8,2,10,3,8,3,10,1,8,1,10,6,8,1,15,1,14,3,8,7,10,1,8,31,15,1,14,1,15,1,8,2,15,1,8,19,14,2,8,2,10,2,8,32,14,1,15,1,8,4,15,1,8,5,15,2,8,3,15,1,8,2,15,1,14,1,8,12,10,2,19,14,4,13,}, + {4,55,19,26,4,2,8,16,14,1,8,38,10,1,8,1,10,1,8,32,10,4,8,1,10,3,8,1,10,3,8,7,10,1,8,14,10,3,8,1,10,1,8,3,10,2,8,1,10,1,8,4,10,1,8,31,10,2,8,3,10,6,8,2,10,1,8,26,4,1,10,1,19,24,4,42,19,58,10,1,8,2,10,6,8,1,10,9,8,13,10,5,8,4,10,1,8,2,10,2,8,2,10,3,8,1,10,1,8,2,10,2,8,3,10,2,8,6,10,3,8,2,10,3,8,16,10,2,8,1,10,4,8,2,14,1,15,1,8,4,15,3,8,25,15,1,8,4,10,1,14,1,15,1,8,2,14,1,15,1,8,4,10,1,8,24,15,1,8,2,14,1,15,2,8,1,15,1,8,6,10,2,8,5,10,2,8,6,10,2,8,5,15,2,14,2,8,43,15,2,8,19,14,2,8,3,10,1,8,3,15,1,8,13,15,1,14,1,8,19,15,1,8,5,15,2,8,6,15,1,14,1,8,10,10,1,8,1,10,2,19,14,4,13,}, + {4,54,19,26,10,2,8,1,15,1,8,9,10,6,8,1,15,1,8,3,15,1,8,15,10,1,8,2,15,1,14,1,8,12,10,1,8,27,4,1,8,10,10,1,8,1,10,3,8,1,10,3,8,4,10,1,8,17,10,3,8,7,10,1,8,1,10,1,8,1,10,2,8,31,10,2,8,4,10,6,8,29,10,2,19,24,4,42,19,58,10,1,8,3,10,3,8,3,10,2,8,1,10,6,8,13,10,5,8,3,10,1,8,5,10,1,8,3,10,3,8,3,10,1,8,3,10,3,8,6,10,1,8,1,10,2,8,19,10,9,8,4,15,1,8,1,15,2,8,23,15,3,8,1,15,1,8,2,10,2,15,1,8,3,14,1,15,1,8,9,10,1,8,1,10,1,8,11,15,1,8,3,10,1,8,1,15,1,8,2,15,2,8,10,10,2,8,1,10,1,8,3,10,2,8,17,15,1,7,1,8,20,15,1,8,4,10,2,8,10,15,2,14,3,8,19,15,1,14,1,15,1,8,21,15,1,8,19,15,1,8,2,10,2,8,1,14,1,8,3,15,1,8,3,15,1,8,2,10,1,8,10,10,2,19,14,4,13,}, + {4,54,19,25,10,2,8,5,10,5,4,1,19,5,10,1,19,1,10,1,8,7,10,2,8,4,10,2,8,2,10,2,8,18,10,1,8,39,10,4,8,2,10,3,8,2,10,2,8,14,10,5,8,7,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,8,14,1,8,17,10,1,8,4,10,2,8,5,10,1,8,1,10,1,8,31,10,3,19,23,4,42,19,57,10,1,8,6,10,3,8,4,10,3,8,9,10,3,8,5,10,4,8,12,10,1,8,1,10,2,8,2,10,1,8,11,10,1,8,3,10,3,8,16,10,1,8,1,10,4,8,27,15,1,8,1,15,1,14,2,15,1,8,3,15,1,14,1,8,2,15,2,8,2,15,1,8,2,15,2,8,2,15,1,8,11,10,1,8,2,10,1,8,7,15,1,8,4,15,1,14,1,8,2,15,1,8,6,15,1,8,3,10,2,8,1,10,5,8,19,14,2,8,1,14,1,15,1,8,9,15,2,8,6,15,1,8,2,15,1,8,14,14,2,15,1,14,1,15,2,8,88,15,1,10,2,19,16,4,11,}, + {4,54,19,24,10,2,8,6,10,2,19,12,10,8,8,4,10,4,8,1,10,2,8,16,10,1,8,1,10,2,8,38,10,1,8,1,10,2,8,1,10,4,8,3,10,1,8,14,10,4,8,8,10,1,8,1,10,1,8,30,10,2,8,4,10,1,8,4,10,5,8,5,10,2,8,15,10,2,8,6,10,3,19,23,4,42,19,57,10,1,4,1,8,2,10,2,8,1,10,2,8,5,10,4,8,1,10,1,8,3,10,1,8,2,10,3,8,4,10,3,8,5,10,1,8,6,10,1,8,3,10,3,8,7,10,1,8,3,10,1,8,1,10,1,8,1,10,5,8,3,10,1,8,11,10,5,8,9,15,1,8,5,10,2,8,9,15,5,8,1,15,1,14,2,15,2,8,1,15,2,8,4,15,1,8,3,15,1,8,3,15,2,8,2,10,1,8,1,15,2,8,2,10,1,8,5,10,1,8,2,15,1,8,1,15,1,8,2,15,1,8,4,15,1,14,1,15,1,8,1,14,1,8,10,10,3,8,1,10,4,8,33,15,4,8,1,15,1,8,5,15,1,8,14,15,1,14,1,15,1,8,2,15,1,8,10,15,3,8,7,14,2,8,40,15,2,8,6,10,1,8,5,14,1,8,5,10,1,8,1,10,1,8,3,14,1,10,2,19,16,4,11,}, + {4,53,19,23,10,4,8,5,10,2,19,14,10,4,8,1,10,1,8,1,10,1,8,3,10,2,8,4,10,1,8,16,10,2,8,23,10,1,8,18,10,3,8,1,10,3,8,5,4,1,8,8,10,1,8,3,10,3,8,9,10,2,8,2,10,1,8,4,10,1,8,25,10,1,8,3,10,2,8,2,10,1,8,2,10,3,8,16,10,1,8,7,10,2,8,4,4,4,19,22,4,42,19,58,10,1,8,4,10,1,8,6,10,3,8,7,10,5,8,15,10,1,8,2,10,2,8,3,10,1,8,2,10,2,8,7,10,1,8,4,10,1,8,1,10,6,8,2,10,2,8,11,10,3,8,4,10,1,8,22,14,5,15,2,14,2,15,1,8,2,15,2,8,1,10,1,8,10,15,1,14,1,15,2,8,6,10,1,8,17,15,2,8,1,15,2,14,1,15,1,8,7,10,1,8,1,10,4,8,1,10,1,8,8,10,1,8,26,15,2,8,1,15,1,14,1,8,2,15,1,8,18,15,1,8,2,15,1,14,1,15,1,8,12,15,2,8,6,15,2,8,1,14,1,15,1,8,1,14,1,8,56,10,1,8,3,15,1,14,1,10,2,19,16,4,11,}, + {4,53,19,21,10,2,15,1,8,6,10,3,19,5,4,1,19,8,10,3,8,1,10,1,8,3,10,2,8,1,10,1,8,1,10,1,8,4,10,1,8,15,10,1,8,1,10,1,8,1,10,1,8,45,10,3,8,1,10,1,8,11,10,2,8,14,10,1,8,1,10,1,8,6,10,1,8,26,10,1,8,10,10,1,8,24,10,1,8,7,10,3,19,22,4,42,19,59,10,1,8,2,10,3,8,6,10,2,8,10,10,1,8,10,10,2,8,2,10,1,8,5,10,1,8,7,10,1,8,10,10,1,8,3,10,4,8,4,10,1,8,6,10,3,8,2,10,2,8,6,10,1,8,3,10,1,8,10,15,1,8,4,10,1,8,1,15,1,14,1,15,1,14,4,15,2,14,1,15,2,8,4,10,2,8,2,15,2,8,2,15,1,8,1,10,1,15,2,8,1,15,2,8,25,15,1,8,1,15,4,8,5,10,2,8,3,10,2,8,8,10,1,8,6,15,1,8,22,15,2,14,2,8,22,15,1,8,1,15,3,8,7,15,1,8,14,15,1,8,1,14,2,8,1,14,1,8,12,10,1,8,3,10,1,8,7,15,1,8,34,15,1,14,1,10,3,19,15,4,11,}, + {4,53,19,20,4,2,15,1,8,5,10,2,19,7,10,1,15,2,8,1,10,1,19,2,10,4,8,4,15,1,8,2,10,1,8,1,10,1,8,6,10,1,8,1,10,1,8,5,14,2,8,7,10,1,8,47,10,1,8,1,10,6,8,22,10,1,8,1,10,3,8,1,10,1,8,2,10,1,8,1,10,2,8,19,10,1,8,25,14,1,8,16,10,1,8,1,10,3,8,5,4,2,19,22,4,44,19,57,10,2,8,1,10,2,8,2,10,2,8,4,10,1,8,1,10,3,8,5,10,8,8,10,10,1,8,2,10,3,8,4,10,2,8,1,10,1,8,8,10,1,8,3,10,5,8,5,10,1,8,18,10,1,8,9,14,1,15,1,8,4,15,1,8,5,15,1,14,1,15,1,14,4,8,2,14,1,8,4,15,1,8,2,10,2,8,6,15,1,8,3,10,1,15,3,8,1,10,1,8,19,15,1,8,13,10,1,8,10,10,1,8,1,10,2,8,10,10,4,8,16,14,3,16,1,8,16,15,1,8,7,15,2,14,1,8,7,15,1,8,6,15,1,8,6,10,1,8,1,15,2,8,14,10,1,8,11,15,2,8,16,15,3,8,15,14,2,10,2,19,14,4,13,}, + {4,53,19,20,4,2,10,6,4,1,19,7,8,2,15,1,8,42,10,1,8,41,10,3,8,5,10,1,8,3,10,2,8,26,10,1,8,26,10,2,8,7,10,2,8,6,10,2,8,4,14,2,8,15,10,1,8,9,10,1,8,3,10,1,4,1,19,22,4,44,19,57,10,2,8,9,10,7,8,1,10,1,8,1,10,1,8,2,10,3,8,5,10,1,8,9,10,1,8,1,10,4,8,1,10,1,8,5,10,2,8,4,10,1,8,1,10,1,8,3,10,3,8,4,10,3,8,1,10,1,8,1,10,1,8,25,14,1,15,1,8,5,15,1,8,4,15,2,14,5,15,3,8,2,15,1,8,1,15,1,8,3,10,2,8,3,15,1,8,1,15,1,8,8,10,1,8,9,10,1,8,8,15,2,8,2,15,2,8,10,10,1,8,3,10,1,8,18,10,3,8,18,14,1,8,3,15,1,14,2,15,2,8,11,14,1,15,1,8,4,15,1,8,27,14,2,8,26,15,1,8,17,15,3,8,15,15,2,10,2,19,14,4,13,}, + {4,49,19,1,4,1,19,22,4,1,10,7,4,1,19,6,10,1,8,27,10,1,8,1,10,1,8,55,10,1,8,1,10,1,8,7,10,1,8,3,10,2,8,30,10,1,8,23,10,1,8,1,10,2,8,4,10,1,8,6,10,3,8,2,10,1,8,2,14,1,8,27,14,1,4,3,19,22,4,44,19,4,4,1,19,30,4,1,19,22,10,1,15,1,8,3,10,1,8,2,10,6,8,2,10,2,8,14,10,1,8,1,10,2,8,2,10,1,8,1,10,1,8,1,10,3,8,8,10,1,8,7,10,1,8,4,10,2,8,5,10,4,8,1,10,1,8,10,14,1,8,1,10,3,8,8,15,1,8,2,15,2,8,3,15,3,8,6,14,2,15,2,14,3,15,1,8,3,15,2,8,6,15,2,8,1,15,2,8,4,15,1,10,1,8,2,10,1,8,19,15,1,8,14,10,1,8,2,10,1,8,9,10,3,8,5,10,1,8,1,10,1,8,20,14,2,8,3,15,1,14,1,15,2,8,2,15,1,8,8,14,1,15,1,8,15,10,1,8,2,10,3,8,5,15,1,8,4,15,1,8,1,15,2,10,1,15,1,8,8,10,1,8,8,15,3,8,26,15,1,8,8,10,2,8,4,10,3,19,13,4,13,}, + {4,49,19,28,10,1,19,2,4,1,19,2,4,2,19,3,8,27,10,4,8,28,10,1,8,6,10,1,8,20,10,2,8,8,10,1,8,2,10,1,8,25,10,1,8,2,10,1,8,3,10,1,8,21,10,5,8,12,10,1,8,3,10,1,8,2,14,1,8,11,10,1,8,9,10,3,8,1,10,1,8,2,15,1,10,1,4,1,19,22,4,44,19,4,4,1,19,23,4,8,19,22,4,1,15,2,8,1,10,1,8,3,10,5,8,2,10,6,8,7,10,1,8,6,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,3,10,1,8,11,10,2,8,6,10,3,8,15,10,2,8,17,15,3,8,7,15,3,14,2,15,1,8,5,15,2,8,5,15,1,8,3,15,1,8,1,10,1,8,2,15,1,8,6,10,1,8,6,15,2,8,10,10,1,8,12,10,1,8,14,10,1,8,24,15,1,8,2,15,1,14,2,15,2,8,33,10,1,8,1,15,1,10,3,8,2,10,1,8,2,15,2,8,1,15,2,8,1,10,1,8,1,10,1,8,3,10,1,8,4,15,1,8,9,15,1,8,28,15,1,14,1,15,1,8,7,10,2,8,4,10,3,19,13,4,13,}, + {4,49,19,31,4,1,19,6,10,1,8,5,10,1,8,21,10,2,8,1,10,3,8,10,10,1,8,15,10,1,8,5,10,1,8,19,10,1,8,6,10,1,8,6,10,1,8,13,10,1,8,15,10,1,8,2,10,2,8,10,10,1,8,9,10,2,8,1,10,1,8,11,10,1,8,1,10,1,8,9,14,1,8,3,10,1,8,2,10,1,8,15,10,6,4,1,19,22,4,52,19,20,4,5,19,26,10,1,14,1,15,1,8,4,10,3,8,5,10,5,8,2,10,1,8,3,10,4,8,11,10,1,8,4,10,3,8,2,10,1,8,11,10,3,8,6,10,1,8,14,10,1,8,1,10,1,8,6,15,1,8,6,15,1,8,6,15,1,8,1,15,1,8,4,15,2,14,5,15,1,8,2,15,1,8,1,15,1,14,2,15,1,8,4,15,2,8,1,15,1,8,1,15,1,10,1,8,10,15,4,14,1,15,1,14,1,15,2,8,22,10,1,8,20,10,1,8,6,10,1,8,11,15,3,14,1,17,1,14,1,8,2,15,1,8,4,15,1,8,28,15,2,8,1,10,4,8,4,15,4,10,1,15,1,10,2,8,1,10,1,8,3,15,1,8,57,10,2,19,14,4,13,}, + {4,49,19,38,10,1,8,27,10,6,8,27,10,1,8,5,10,2,8,1,10,1,8,11,10,1,8,1,10,1,8,1,10,1,8,14,10,1,8,1,10,1,8,24,10,3,8,2,10,1,8,20,10,3,8,5,10,2,8,6,10,3,8,9,14,2,8,5,10,2,8,12,10,1,8,5,10,2,19,23,4,52,19,12,4,1,19,7,4,4,19,4,4,2,19,21,10,1,15,1,8,3,10,8,8,3,10,2,8,1,10,2,8,1,10,1,8,3,10,1,8,1,10,1,8,6,10,2,8,12,10,1,8,3,10,1,8,19,10,1,8,16,10,2,8,7,15,1,8,9,15,1,8,2,15,1,8,4,15,1,8,1,15,1,14,2,15,1,8,1,15,2,8,1,10,1,8,2,14,3,15,4,14,3,15,2,14,1,8,12,15,5,8,23,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,4,10,1,8,3,10,3,8,3,10,1,8,1,10,1,8,19,14,1,8,3,15,1,8,28,10,1,8,6,10,5,8,1,15,4,8,1,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,6,10,1,8,1,15,1,8,17,10,1,8,14,15,1,8,2,15,1,8,2,14,1,8,1,15,1,8,8,15,1,8,1,10,2,19,14,4,13,}, + {4,47,19,40,14,1,8,25,10,9,8,4,10,1,8,29,10,1,8,11,10,1,8,30,10,1,8,3,10,1,8,10,10,1,8,1,10,1,8,2,10,1,8,21,10,2,8,5,10,4,8,6,10,2,8,30,10,1,8,4,4,3,19,23,4,61,19,1,4,23,19,18,4,1,15,1,8,2,10,1,8,1,10,2,8,2,10,3,8,1,15,1,8,7,10,1,8,14,10,1,8,18,10,1,8,15,10,1,8,18,10,1,8,11,15,1,8,8,15,1,8,2,15,1,14,1,8,1,15,1,8,1,15,1,14,4,15,1,14,2,8,2,14,7,15,1,14,2,8,1,15,1,14,1,8,12,15,2,8,5,15,1,8,12,10,1,8,5,10,1,8,18,10,1,8,1,14,3,8,1,15,1,8,37,15,1,8,4,15,2,8,8,10,1,8,5,10,1,8,4,10,4,8,1,15,3,8,3,10,1,8,1,10,3,8,1,10,2,8,3,10,4,8,3,15,1,8,13,10,1,8,14,15,5,8,1,15,1,8,2,15,2,8,10,10,3,19,10,4,4,19,1,4,11,}, + {4,47,19,40,14,2,8,23,10,10,8,6,10,1,8,30,14,1,8,1,14,1,8,18,10,4,8,27,10,2,8,9,10,2,8,5,10,1,8,10,10,2,8,5,10,6,8,4,10,3,8,33,4,5,19,23,4,85,19,18,4,1,8,2,10,2,8,1,10,1,8,2,10,1,8,2,10,2,8,3,14,1,7,1,14,1,8,2,10,1,8,2,10,1,8,14,10,1,8,27,10,1,8,2,10,1,8,31,15,1,8,1,10,1,8,7,15,1,14,3,8,1,15,3,8,1,14,3,15,1,14,2,15,1,8,1,14,6,15,4,8,2,15,1,10,1,8,8,10,1,8,2,15,1,14,1,15,2,8,1,15,1,8,1,15,1,8,10,10,1,8,8,10,3,8,17,14,1,16,1,14,3,8,1,10,1,8,21,10,1,8,27,10,1,8,10,10,5,15,2,8,1,15,1,14,1,8,1,10,9,8,4,10,3,8,14,10,1,8,17,15,1,8,19,10,5,19,10,4,3,19,1,4,11,}, + {4,45,19,42,14,1,8,24,10,8,8,1,10,1,8,6,10,1,8,60,10,1,8,9,10,1,8,19,10,1,8,1,10,3,8,6,10,1,8,8,10,2,8,6,10,5,8,4,10,3,8,27,10,1,8,6,10,1,4,3,19,22,4,87,19,18,10,1,8,5,10,1,8,7,14,6,8,1,10,9,8,3,10,2,8,2,10,1,8,2,10,1,8,5,10,3,8,1,10,1,8,1,10,3,8,4,10,1,8,5,14,1,8,4,10,1,8,7,10,1,8,9,10,2,8,11,10,1,8,6,10,1,8,8,14,3,8,2,15,1,14,2,8,1,15,1,8,1,14,6,15,6,8,14,10,1,8,3,15,3,8,1,15,2,8,9,10,1,8,1,10,1,8,3,10,3,8,1,10,2,8,7,10,1,8,10,14,3,15,1,8,22,10,3,8,15,15,1,8,9,10,2,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,3,8,2,15,2,8,3,10,9,8,2,15,1,8,2,10,2,8,1,15,1,8,1,15,1,8,3,10,2,8,11,10,1,8,13,10,2,8,17,10,4,19,11,4,1,19,2,4,11,}, + {4,45,19,41,4,1,8,25,10,9,8,16,10,1,8,1,10,4,8,6,10,1,8,1,10,1,8,17,10,1,8,6,10,1,8,3,10,1,8,3,10,1,8,1,10,1,8,14,4,1,8,14,10,1,8,10,10,1,8,2,10,1,8,10,10,1,8,7,10,2,8,1,10,1,8,3,10,3,8,23,10,1,8,9,10,2,19,25,4,87,19,18,10,1,8,6,10,1,8,3,10,1,8,1,15,1,14,6,8,1,10,9,8,4,10,1,8,1,10,3,8,12,10,5,8,14,10,3,8,3,10,3,8,8,10,4,8,16,10,2,8,1,10,2,8,3,15,2,14,1,8,2,14,1,15,1,14,1,15,1,8,4,15,1,14,3,16,1,14,1,15,1,8,3,15,3,8,1,15,1,8,12,15,1,8,15,10,1,8,3,10,1,8,4,10,1,8,11,10,1,8,8,14,4,15,1,8,1,10,2,8,1,10,1,8,19,10,3,8,2,15,1,8,4,10,1,8,16,10,4,8,4,10,8,8,3,14,1,15,1,8,4,10,7,8,5,10,5,8,2,15,2,8,12,10,2,8,14,10,1,8,18,10,3,19,14,4,11,}, + {4,43,19,41,10,1,8,5,10,1,8,21,10,1,8,2,10,6,8,13,10,1,8,4,10,1,8,8,10,1,8,18,10,1,8,5,4,1,8,2,4,1,8,3,10,1,8,2,10,1,8,1,10,1,8,14,10,1,8,15,10,1,8,5,10,1,8,4,10,1,8,1,10,3,8,6,10,2,8,1,10,1,8,1,10,1,8,2,10,1,8,4,10,3,8,1,10,2,8,24,10,1,8,10,4,1,19,28,4,84,19,19,10,1,8,3,10,1,8,4,10,1,8,5,14,5,8,1,10,5,8,2,10,1,8,7,10,3,8,4,10,4,8,5,10,4,8,7,10,3,8,6,10,1,8,3,10,2,8,9,10,5,8,4,10,1,8,10,10,2,8,1,10,3,8,2,15,2,14,1,8,1,15,1,14,2,15,1,8,3,15,1,10,1,8,2,14,4,15,6,14,1,15,1,8,13,15,2,8,12,14,2,10,1,15,1,14,1,8,1,10,4,8,6,10,3,8,2,14,1,8,3,10,1,8,1,15,1,8,1,10,2,14,1,8,1,14,1,15,1,8,4,10,2,8,2,15,1,8,6,10,2,8,10,10,2,8,23,10,2,8,6,10,3,8,1,10,5,8,2,15,3,8,2,15,1,8,1,10,10,8,1,14,1,8,6,15,1,8,32,10,1,8,16,10,3,19,14,4,11,}, + {4,43,19,39,10,1,8,2,15,1,8,28,10,6,8,14,10,1,8,5,10,1,8,26,10,1,8,2,4,1,8,10,10,3,8,30,10,4,8,3,10,3,8,1,10,1,8,3,10,3,8,1,10,1,8,4,10,2,8,4,10,3,8,5,10,2,8,17,10,2,8,2,10,1,8,4,10,3,8,8,4,1,10,1,19,28,4,84,19,19,10,1,8,2,10,3,8,4,15,3,8,2,15,1,14,4,15,1,8,1,10,4,8,6,10,1,8,4,10,1,8,4,10,1,8,1,10,7,8,1,10,2,8,8,10,3,8,7,10,2,8,2,10,1,8,8,10,1,8,1,10,4,8,3,10,1,8,2,10,2,8,8,10,2,8,1,10,1,8,1,10,1,8,4,15,3,8,11,15,1,14,3,15,1,8,1,14,1,15,2,14,2,8,10,15,4,8,2,15,2,8,9,14,1,16,1,8,3,10,1,8,2,10,1,8,3,10,1,8,5,10,2,8,6,14,1,8,5,15,1,8,4,10,1,8,39,15,2,8,5,10,1,8,2,10,1,8,11,10,3,8,3,15,2,8,2,15,1,8,4,10,9,8,4,15,1,14,1,8,5,10,1,8,3,15,1,8,30,10,1,8,2,10,1,8,7,10,4,19,11,4,1,19,2,4,11,}, + {4,41,19,39,10,3,8,5,14,1,8,3,10,1,8,21,10,7,8,24,10,1,8,11,15,1,8,20,10,1,8,1,10,4,8,18,10,1,8,9,10,5,8,9,10,1,8,1,10,5,8,5,10,3,8,4,10,2,8,5,10,1,8,17,10,2,8,2,10,1,8,5,10,1,8,9,4,1,10,1,19,25,4,88,19,18,10,2,8,3,10,1,8,8,15,1,8,1,14,1,8,2,14,2,15,2,8,1,10,3,8,1,10,1,8,5,10,1,8,3,10,1,8,11,10,3,8,10,10,4,8,2,10,2,8,2,10,1,8,1,10,3,8,3,10,2,8,1,10,3,8,2,10,3,8,6,10,3,8,6,10,2,8,1,10,1,8,5,15,2,8,4,15,1,8,5,15,2,10,1,8,1,15,1,14,3,15,1,8,2,15,1,14,3,15,1,10,1,8,3,10,1,8,4,14,3,15,1,8,2,15,1,8,10,14,2,8,2,10,2,8,1,10,1,8,3,10,2,8,12,14,2,8,1,10,1,8,6,10,2,8,2,10,6,8,32,15,1,14,1,15,1,8,3,15,1,8,8,15,1,8,6,10,1,8,1,10,1,8,2,10,1,8,4,14,1,8,2,15,1,14,1,10,6,8,1,10,6,8,1,15,1,8,4,15,1,8,1,10,1,8,3,15,1,8,29,10,1,8,2,10,2,8,5,10,5,19,10,4,3,19,1,4,11,}, + {4,41,19,38,10,2,8,9,10,2,8,14,10,1,8,10,10,3,8,4,14,1,8,12,10,1,8,3,10,1,8,9,14,1,8,17,4,1,8,1,4,1,8,1,10,1,8,1,10,1,8,1,10,8,8,1,10,1,8,1,10,1,8,22,10,7,8,4,10,1,8,1,10,1,8,3,10,1,8,1,10,4,8,1,10,2,8,1,10,2,8,2,10,3,8,8,10,1,8,15,10,4,8,1,10,2,8,1,10,1,8,12,4,1,19,25,4,88,19,19,10,1,8,3,15,1,8,3,10,4,8,1,15,1,14,1,8,4,14,2,15,1,14,2,8,1,10,1,8,2,10,1,8,6,10,1,8,1,10,2,8,4,10,1,8,8,10,9,8,3,10,8,8,8,10,1,8,1,10,1,8,2,10,2,8,2,10,1,8,8,10,3,8,6,10,5,8,4,10,1,8,3,15,2,8,5,10,1,8,2,10,3,8,2,14,1,8,2,15,1,14,2,8,1,14,1,8,10,15,1,14,1,15,1,14,2,15,2,8,11,10,1,8,3,10,4,8,21,15,1,14,1,8,8,10,4,8,3,10,1,8,9,15,2,8,12,10,1,8,6,15,3,8,14,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,5,15,2,14,1,8,1,10,6,8,2,10,1,8,2,10,2,8,6,14,1,8,38,10,1,8,1,15,1,8,4,10,4,19,10,4,4,19,1,4,11,}, + {4,38,19,35,4,1,10,4,8,1,10,1,8,55,10,2,8,3,10,1,8,32,10,8,8,1,10,1,8,27,10,8,8,9,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,2,10,6,8,26,10,2,8,1,10,3,8,1,10,2,8,10,4,1,10,1,19,25,4,86,19,21,4,1,8,8,10,1,8,13,15,1,8,2,10,1,8,2,10,2,8,6,10,1,8,19,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,3,10,1,8,3,10,3,8,3,10,4,8,3,10,1,8,1,10,1,8,19,10,1,8,4,15,1,8,2,10,1,8,3,10,1,8,4,10,1,8,2,10,1,8,2,10,1,8,4,10,1,8,15,15,2,14,3,15,3,8,2,10,1,8,7,10,1,8,1,14,1,10,2,8,2,10,1,8,4,10,2,8,15,14,2,8,5,10,3,8,1,10,2,8,16,15,1,8,18,15,4,8,2,10,1,8,10,10,5,8,9,15,1,8,3,10,6,15,1,14,1,8,7,10,1,8,2,15,1,8,30,10,2,8,3,10,1,8,11,14,1,10,2,19,10,4,17,}, + {4,39,19,33,4,3,8,1,10,1,8,38,10,4,8,16,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,25,10,2,8,2,10,7,8,30,10,7,8,8,10,1,8,2,10,6,8,4,10,4,8,11,10,2,8,18,10,2,8,5,10,1,8,1,10,1,8,6,10,1,19,26,4,86,19,21,8,5,10,1,8,3,10,3,8,9,10,4,8,26,10,1,8,4,10,1,8,1,10,3,8,1,10,1,8,1,10,4,8,6,10,3,8,3,10,4,8,3,10,2,8,1,10,3,8,10,10,1,8,3,10,1,8,10,10,6,8,2,10,1,8,1,10,1,8,1,14,1,8,8,15,1,8,14,14,3,15,2,8,1,15,2,8,8,10,1,8,4,10,2,8,7,10,3,8,14,14,1,8,5,10,3,8,40,15,2,8,1,10,1,8,10,10,4,8,1,10,3,8,7,15,1,10,9,8,1,14,1,8,6,10,3,8,1,15,1,14,1,8,34,10,1,8,4,10,1,8,6,14,1,10,2,19,10,4,17,}, + {4,37,19,34,4,4,10,1,8,13,10,1,8,24,10,1,8,23,10,1,8,2,10,1,8,4,10,1,8,21,10,1,8,15,10,1,8,26,10,3,8,1,10,1,8,1,10,1,8,4,10,1,8,4,10,6,8,5,10,4,8,8,10,2,8,21,10,3,8,12,10,1,19,27,4,85,19,21,10,1,8,1,14,1,8,3,10,1,8,3,10,3,8,10,15,1,10,3,8,5,10,2,8,17,10,1,8,3,10,1,8,4,10,1,8,1,10,1,8,2,10,4,8,10,10,2,8,2,10,2,8,3,10,3,8,1,10,4,8,7,10,4,8,1,10,2,8,1,10,1,8,7,10,3,8,1,10,1,8,7,15,1,8,19,15,1,14,2,15,2,14,1,15,1,14,1,15,1,8,12,15,1,8,3,10,3,8,4,10,2,8,1,10,1,8,16,14,1,8,7,10,1,8,3,10,1,8,11,15,1,8,35,15,1,8,1,10,1,8,3,10,4,8,6,14,2,8,1,10,8,8,8,10,2,8,39,10,1,8,2,10,5,8,1,10,1,8,2,10,2,19,10,4,17,}, + {4,36,19,36,4,2,15,1,4,1,8,2,14,1,8,25,10,1,8,30,10,1,8,2,10,1,8,4,10,1,8,33,10,15,8,21,10,2,8,13,10,2,8,9,10,1,8,1,10,1,8,32,10,1,8,5,10,1,8,7,10,1,19,27,4,85,19,21,10,1,8,10,10,2,8,6,10,2,8,3,10,4,8,9,10,2,8,29,10,2,8,3,10,1,8,3,10,1,8,1,10,3,8,1,10,3,8,3,10,1,8,2,10,3,8,7,10,5,8,1,10,1,8,4,10,1,8,10,10,1,8,1,14,2,8,9,14,2,8,3,10,1,8,6,10,1,8,1,14,4,15,2,14,1,15,3,8,1,10,1,8,5,10,1,8,1,14,3,8,4,10,4,8,5,10,1,8,11,10,1,8,33,10,2,8,17,10,1,8,1,15,3,8,8,10,2,8,2,10,3,8,4,15,1,8,2,15,1,14,2,8,1,10,10,8,1,15,1,8,37,10,1,8,12,10,1,8,2,10,6,19,11,4,16,}, + {4,34,19,39,4,2,10,2,8,1,15,1,8,59,10,1,8,23,10,3,8,6,10,1,8,5,10,15,8,44,10,1,8,2,10,1,8,1,10,1,8,8,14,3,8,34,10,2,19,27,4,85,19,20,10,2,8,3,10,2,8,2,10,2,8,2,10,2,8,3,10,4,8,3,10,1,15,1,10,3,8,5,10,1,8,1,10,9,8,3,10,3,8,1,10,4,8,4,10,1,8,2,10,1,8,4,10,3,8,1,10,1,8,2,10,2,8,1,10,3,8,3,10,2,8,2,10,2,8,3,10,2,8,5,10,7,8,4,14,1,8,14,15,1,14,1,15,1,8,4,10,1,8,17,15,2,14,1,15,1,8,1,15,3,8,11,14,1,17,1,8,3,10,1,8,28,15,1,8,8,10,2,8,5,15,1,8,7,15,1,8,30,15,3,8,1,10,2,8,3,10,4,8,6,7,1,14,2,15,1,8,1,10,2,8,1,10,4,8,1,15,1,8,2,10,1,8,1,15,1,8,23,14,1,8,10,10,1,8,15,10,6,19,11,4,16,}, + {4,33,19,41,10,4,8,57,10,2,8,2,10,1,8,4,10,2,8,15,10,6,8,10,10,1,8,2,10,11,8,34,10,1,8,6,10,2,8,17,14,2,8,5,10,1,8,5,10,1,8,22,10,2,19,27,4,85,19,20,10,1,4,1,8,2,10,3,8,2,10,2,8,2,10,3,8,1,10,5,8,4,14,1,15,1,8,1,10,2,8,5,10,1,8,2,10,8,8,1,10,1,8,4,10,4,8,2,10,1,8,1,10,1,8,7,10,3,8,3,10,1,8,2,10,4,8,1,10,1,8,5,10,1,8,8,10,1,8,1,10,8,8,4,14,1,8,5,15,1,8,6,10,2,8,1,15,1,8,29,15,2,8,1,10,2,8,3,10,1,8,4,14,1,15,1,10,1,8,2,10,2,8,8,10,5,8,13,14,2,8,9,10,2,8,4,15,1,8,3,15,2,8,6,14,1,15,1,8,22,15,2,8,1,15,1,14,1,15,1,8,2,10,1,8,4,10,3,8,1,15,1,8,5,15,2,8,6,10,2,8,1,15,2,8,7,10,1,8,24,10,1,8,23,10,5,19,11,4,16,}, + {4,33,19,42,10,3,4,1,8,20,10,2,8,1,10,1,8,30,10,1,8,1,10,1,8,2,10,2,8,3,10,3,8,15,10,6,8,2,10,1,8,1,10,1,8,10,10,10,8,39,10,5,8,13,10,3,8,6,10,1,8,2,10,2,8,1,10,1,8,14,10,1,8,7,4,1,19,25,4,88,19,20,10,1,8,1,10,1,8,2,10,1,8,3,10,1,8,7,10,4,8,1,14,6,8,6,10,4,8,2,10,1,8,3,10,2,8,6,10,5,8,1,10,1,8,1,10,2,8,5,10,5,8,2,10,2,8,3,10,5,8,4,10,1,8,2,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,1,10,3,8,1,10,1,8,2,15,1,8,5,15,1,8,3,10,1,8,4,10,2,8,10,10,1,8,16,10,1,8,2,15,1,14,1,8,2,10,1,8,6,15,3,8,1,10,1,8,9,10,1,8,5,10,1,8,14,15,1,14,2,8,15,15,1,8,2,14,1,15,1,8,1,15,1,8,2,14,3,8,11,15,3,8,10,15,2,8,1,15,1,8,7,10,1,8,1,10,1,8,2,15,3,14,1,8,9,10,2,8,2,15,1,14,1,15,3,8,51,10,1,8,2,10,3,19,12,4,16,}, + {4,33,19,43,10,1,4,1,15,3,14,1,8,16,10,2,8,1,10,4,8,18,10,1,8,5,10,2,8,2,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,3,10,2,8,15,10,3,8,1,10,3,8,9,15,1,8,2,15,2,8,2,10,4,8,18,14,3,8,2,10,2,8,19,10,5,8,11,10,4,8,6,10,2,8,1,10,2,8,3,10,1,8,12,10,1,8,1,14,1,8,2,15,2,8,1,10,2,19,24,4,88,19,19,10,2,8,16,10,3,8,1,14,1,8,2,15,1,8,2,14,2,15,1,8,5,10,1,8,1,10,1,8,2,10,1,8,6,10,1,8,5,10,3,8,5,10,2,8,5,10,3,8,6,10,8,8,9,10,5,8,2,10,1,8,2,10,2,8,1,10,1,8,2,14,2,8,3,15,2,8,2,10,2,8,6,10,1,8,1,10,1,8,4,10,1,8,2,10,1,8,20,15,1,8,7,15,2,8,4,10,1,8,7,10,1,8,1,10,1,8,7,10,1,8,8,15,1,8,4,14,3,8,2,14,1,8,9,10,1,8,18,14,1,8,7,14,1,15,1,8,10,15,1,8,1,15,1,8,13,15,1,14,3,10,1,8,5,15,1,8,2,10,1,8,1,15,1,14,1,15,2,8,2,14,1,8,4,15,1,8,11,15,2,8,2,10,1,8,30,10,1,8,1,10,4,19,11,4,17,}, + {4,25,19,51,10,1,8,1,14,1,15,1,8,20,10,7,8,10,10,2,8,2,10,4,8,7,10,1,8,5,10,1,8,4,10,1,8,5,10,1,8,3,10,1,8,5,10,2,8,14,15,3,8,3,10,1,8,3,10,3,8,14,10,1,8,7,10,9,8,29,10,1,8,31,10,1,8,2,10,2,8,1,14,1,4,1,19,25,4,70,19,8,4,2,19,27,10,3,8,6,10,1,8,2,10,2,8,5,10,2,8,3,15,1,14,1,15,1,14,1,15,1,14,2,15,1,8,3,10,3,8,2,10,3,8,2,10,2,8,6,10,1,8,2,10,1,8,7,10,2,8,2,10,2,8,1,10,1,8,8,10,8,8,6,10,5,8,2,10,1,8,4,10,1,8,2,10,1,8,1,15,2,8,3,15,2,8,42,15,1,8,16,15,1,14,1,8,27,15,1,14,1,8,29,16,1,14,1,8,1,15,1,8,1,10,1,8,1,15,2,14,1,8,3,15,2,8,4,15,1,8,3,15,2,8,13,14,1,15,1,14,1,15,1,8,2,10,1,8,3,15,1,8,2,10,2,8,2,15,1,14,1,15,1,14,1,15,1,8,4,15,1,8,38,10,1,8,9,10,1,19,1,10,1,19,12,4,17,}, + {4,25,19,51,10,2,14,1,15,1,8,12,10,3,8,1,10,1,8,20,10,1,8,3,10,5,8,4,10,1,8,12,10,1,8,1,10,2,8,9,10,1,8,2,10,7,8,14,10,2,8,20,10,3,8,2,10,2,8,1,10,6,8,1,10,3,8,32,10,1,8,28,10,4,4,1,14,1,4,2,19,24,4,70,19,8,4,2,19,27,10,1,4,1,8,3,10,1,8,10,10,1,8,1,10,3,8,3,14,8,15,1,8,2,10,4,8,1,10,8,8,6,10,1,8,8,10,4,8,2,10,3,8,9,10,3,8,7,10,1,8,4,10,2,8,1,10,2,8,4,10,1,8,1,10,3,8,2,15,1,8,3,15,2,8,3,10,1,8,24,10,1,8,15,10,1,8,15,14,1,8,11,10,1,8,6,10,1,8,6,15,2,8,7,10,1,8,15,15,1,8,7,16,1,14,1,10,1,8,4,15,3,8,3,15,1,8,8,15,1,8,3,10,1,8,9,15,1,8,1,14,2,8,4,10,1,8,2,15,1,8,2,10,4,8,1,15,1,8,2,15,1,8,21,15,1,8,25,10,2,8,5,4,1,19,13,4,18,}, + {4,24,19,52,10,1,8,1,14,2,8,3,14,1,8,7,10,4,8,1,10,2,8,2,15,2,8,3,10,1,8,11,10,6,8,1,10,2,8,28,10,4,8,2,10,2,8,11,10,3,8,1,10,1,8,1,10,3,8,1,15,1,8,19,10,12,8,5,10,1,8,5,10,3,8,23,10,1,8,20,10,1,8,8,10,1,8,1,15,1,8,1,4,3,19,24,4,68,19,39,10,2,8,4,10,1,8,4,10,6,8,2,10,1,8,1,15,2,14,6,15,1,8,2,15,1,8,2,10,3,8,4,10,5,8,4,10,1,8,8,10,2,8,6,10,4,8,4,10,1,8,4,10,3,8,5,10,1,8,3,10,1,8,8,10,1,8,6,10,1,8,4,15,3,8,4,10,1,8,8,10,2,8,15,10,1,8,1,10,1,8,9,10,3,8,6,10,1,8,6,10,1,8,5,10,1,8,13,10,2,8,1,10,1,8,12,14,1,8,1,10,2,8,21,15,2,8,2,10,1,8,14,10,1,8,6,10,1,8,2,15,2,8,6,15,1,8,1,14,4,8,8,10,4,8,1,15,1,14,1,8,20,15,2,14,2,8,27,10,2,8,1,10,3,19,13,4,18,}, + {4,23,19,52,4,1,10,1,14,5,8,9,10,1,8,1,10,1,8,4,10,2,8,1,14,2,8,1,10,2,8,4,10,1,8,6,10,10,8,4,10,1,8,11,10,1,8,7,10,1,8,1,10,5,8,15,10,6,8,1,10,2,8,22,10,7,8,1,10,2,8,12,10,3,8,1,10,1,8,21,10,2,8,28,10,1,8,1,15,1,10,1,4,2,19,25,4,67,19,39,10,1,4,1,8,1,10,1,8,7,10,7,8,3,15,1,14,8,8,7,10,3,8,3,10,4,8,12,10,2,8,10,10,1,8,3,10,3,8,3,10,3,8,3,10,1,8,2,10,3,8,4,10,1,8,17,15,1,8,15,10,1,8,6,10,2,8,9,10,1,8,19,10,3,8,1,10,1,8,3,10,3,8,3,10,1,8,1,10,1,8,1,10,1,8,8,10,2,8,3,15,1,8,5,15,1,14,1,8,4,10,1,8,24,10,1,8,7,10,1,8,16,10,2,8,1,15,1,8,4,15,1,8,2,14,1,15,2,14,4,8,6,10,3,8,2,15,1,14,3,8,21,14,1,8,29,10,2,8,1,10,2,19,13,4,18,}, + {4,22,19,43,4,3,19,6,10,2,15,1,14,1,15,1,14,2,8,13,10,6,8,16,10,3,8,2,10,5,8,7,10,2,8,7,10,1,8,7,10,3,8,1,10,5,8,15,10,1,8,27,10,7,8,3,10,3,8,11,10,4,8,23,10,1,8,1,10,1,8,8,10,2,8,7,10,1,8,6,15,1,8,1,10,1,8,1,15,1,4,1,10,1,4,1,19,25,4,66,19,39,10,1,4,1,8,2,10,1,8,2,10,2,8,4,10,1,8,2,10,1,8,5,15,1,14,8,15,1,8,6,10,1,8,8,10,1,8,7,10,1,8,16,10,2,8,2,10,3,8,2,10,3,8,8,10,2,8,3,10,1,8,1,10,1,8,6,10,1,8,8,15,2,8,17,14,1,8,4,10,3,8,6,10,2,8,2,10,1,8,7,15,1,8,24,10,1,8,1,10,1,8,3,10,1,8,6,10,1,8,6,14,1,16,1,14,1,8,1,14,1,8,1,10,2,8,1,10,1,8,16,10,1,8,15,10,3,8,14,10,1,8,6,15,1,8,3,14,1,15,1,8,2,14,3,8,2,14,2,8,2,10,3,8,4,15,1,14,1,8,40,10,1,8,10,10,1,8,2,10,1,19,14,4,18,}, + {4,21,19,44,4,1,15,1,4,1,19,6,10,1,4,1,15,1,14,1,8,17,10,4,8,3,10,2,8,4,10,1,8,2,10,2,8,4,10,2,8,4,10,4,8,2,10,1,8,9,10,1,8,10,10,3,8,1,10,6,8,2,10,2,8,1,10,1,8,37,10,6,8,4,10,3,8,10,10,3,8,44,10,1,8,8,10,1,8,2,10,2,19,26,4,65,19,40,10,2,8,3,10,1,8,1,10,1,8,14,15,3,14,5,8,1,14,1,8,2,10,1,8,3,10,1,8,14,10,1,8,4,10,4,8,1,10,1,8,8,10,2,8,2,10,3,8,2,10,4,8,16,10,4,8,3,10,1,8,4,10,1,8,2,15,1,8,17,15,1,14,1,8,11,10,2,8,21,10,1,8,17,10,1,8,17,14,1,15,1,14,3,8,19,10,4,8,5,15,1,8,20,15,2,8,2,10,2,8,5,15,1,8,2,14,2,8,3,14,1,7,1,8,3,14,2,8,15,14,1,8,12,10,1,8,32,10,5,19,14,4,18,}, + {4,21,19,36,10,1,19,7,4,1,14,1,4,1,19,6,4,2,15,1,8,19,15,1,10,1,8,1,15,1,8,2,10,2,8,2,10,2,8,2,10,3,8,4,10,2,8,1,10,4,8,1,10,1,8,1,10,1,8,3,10,2,8,1,10,1,8,3,10,1,8,2,10,1,8,8,10,14,8,1,10,1,8,39,10,5,8,1,15,1,14,1,15,1,10,3,8,8,10,4,8,56,10,1,4,1,19,26,4,64,19,40,10,1,4,1,8,2,10,1,8,2,10,2,8,14,15,3,14,1,15,2,8,1,15,2,14,1,15,1,8,1,10,2,8,3,10,1,8,17,10,8,8,5,10,4,8,2,10,8,8,5,10,1,8,3,10,1,8,8,10,3,8,2,10,2,8,6,15,2,8,3,15,1,8,33,15,1,8,13,10,2,8,13,10,1,8,8,14,1,15,1,8,1,15,1,8,2,15,1,8,9,14,2,15,1,14,3,8,16,10,4,8,20,15,1,8,5,15,2,8,2,10,2,8,4,15,1,8,2,14,2,8,4,14,1,8,3,7,1,14,1,7,1,8,56,10,1,8,3,10,6,19,14,4,18,}, + {4,20,19,35,10,2,15,1,10,1,4,1,19,5,4,1,14,1,4,1,10,1,19,5,10,1,4,2,8,9,14,1,8,9,15,1,8,2,10,1,8,4,10,2,8,4,10,2,8,2,10,3,8,4,10,2,8,3,10,1,8,2,10,5,8,2,10,1,8,2,10,1,8,2,10,1,8,8,10,10,8,23,10,1,8,19,10,1,8,2,10,4,8,3,10,3,8,8,10,6,8,6,14,1,8,9,10,1,8,37,10,3,19,25,4,64,19,40,10,1,4,1,8,5,10,3,8,2,10,1,8,11,15,1,14,2,15,1,8,3,14,4,8,1,10,6,8,14,10,1,8,1,10,7,8,4,10,1,8,1,10,1,8,2,10,1,8,2,10,5,8,8,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,6,10,1,8,2,10,5,8,1,10,1,8,2,14,1,15,1,8,2,15,1,14,1,15,1,8,29,15,1,8,4,15,1,14,2,8,5,10,1,8,5,10,1,8,7,10,1,8,9,10,3,8,1,15,1,8,5,14,1,15,1,8,6,10,1,8,19,15,1,8,3,10,1,8,7,15,2,8,10,15,1,8,10,14,2,8,1,10,2,8,5,14,1,8,4,14,3,7,1,8,2,7,1,14,1,7,3,8,1,7,1,8,5,7,1,8,1,14,1,8,1,14,2,8,46,10,5,19,14,4,19,}, + {4,19,19,33,10,2,8,2,10,1,8,1,10,4,19,2,4,1,15,1,4,5,19,2,4,4,10,3,8,6,14,2,8,20,10,5,8,6,10,4,8,5,10,6,8,11,10,1,8,5,10,2,8,1,10,5,8,2,10,1,8,23,10,1,8,1,10,1,8,1,10,2,8,1,10,4,8,11,10,4,8,1,15,1,8,1,10,4,8,8,10,5,8,3,14,2,8,4,14,1,8,1,14,1,8,4,10,1,8,33,10,2,8,1,10,1,8,1,10,3,19,21,4,2,19,1,4,62,19,40,10,2,4,1,8,2,10,6,8,1,10,1,8,10,10,2,8,3,15,2,8,1,14,1,15,1,8,2,14,1,15,1,10,1,8,2,10,2,8,4,10,1,8,12,10,1,8,1,10,5,8,3,10,5,8,1,10,2,8,2,10,5,8,2,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,7,10,1,8,1,10,1,8,1,10,1,8,3,15,1,8,45,15,3,8,5,10,1,8,1,14,1,8,4,10,2,8,8,10,1,8,9,10,3,8,5,10,1,8,8,10,1,8,28,15,1,8,6,10,2,8,15,15,1,8,7,15,2,8,4,15,1,8,6,7,2,8,1,7,1,8,3,7,1,8,1,7,1,8,4,14,1,8,48,10,5,19,14,4,19,}, + {4,18,19,33,10,1,8,2,14,1,15,2,8,1,10,4,4,2,15,1,8,3,10,3,4,1,10,1,4,3,10,4,8,6,14,2,8,18,10,8,8,1,10,4,8,5,10,1,8,1,10,1,8,3,10,3,8,1,10,1,8,11,10,1,8,7,10,1,8,2,10,2,8,25,10,14,8,1,10,1,8,3,10,2,8,2,10,4,8,2,10,1,8,1,10,4,8,1,10,3,8,5,10,2,8,8,14,4,8,5,10,1,8,28,10,1,8,1,10,1,8,1,10,5,8,1,10,2,8,1,19,21,4,2,19,1,4,62,19,39,10,1,4,1,8,6,10,3,8,5,10,2,8,5,10,3,15,4,8,1,14,2,7,1,8,2,14,2,8,1,10,1,8,2,10,3,8,1,10,2,8,14,10,5,8,4,10,3,8,1,10,4,8,3,10,1,8,1,10,2,8,1,10,1,8,5,10,2,8,4,10,2,8,1,10,3,8,6,10,2,8,1,10,1,8,7,10,1,8,28,10,1,8,7,10,1,8,1,15,2,8,7,15,1,14,1,8,5,10,1,8,9,10,1,8,8,10,1,8,3,15,1,8,9,10,1,8,16,15,3,8,9,10,1,8,23,15,1,8,9,15,1,8,1,14,1,15,1,8,10,7,1,8,3,7,1,8,3,7,1,8,1,7,1,8,1,7,1,15,1,14,1,8,48,10,5,19,14,4,19,}, + {4,17,19,32,10,2,8,1,14,1,15,4,8,2,10,4,8,1,15,1,10,1,8,1,10,12,8,27,10,7,8,1,10,5,8,2,10,2,8,1,10,1,8,4,10,2,8,6,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,1,10,2,8,30,10,21,8,7,10,3,8,1,15,1,8,3,10,8,8,15,14,4,8,19,10,1,8,18,10,1,8,1,10,1,8,5,15,1,4,2,19,19,4,2,19,1,4,60,19,40,10,1,4,1,8,4,10,4,8,9,10,1,8,5,10,2,8,2,15,1,8,2,15,1,14,1,15,1,8,2,14,2,8,5,10,4,8,11,10,1,8,3,10,4,8,2,10,1,8,1,10,9,8,9,10,1,8,2,10,2,8,1,10,1,8,6,10,3,8,6,10,2,8,64,10,1,8,3,10,1,8,1,10,1,8,6,10,1,8,1,10,1,8,5,15,1,14,3,8,38,10,1,8,15,14,1,8,6,14,1,15,1,8,3,15,2,8,3,15,2,14,1,8,2,14,1,8,19,14,3,15,1,8,3,7,1,8,43,10,8,19,13,4,19,}, + {4,17,19,31,10,2,8,1,14,3,15,3,10,1,8,3,10,6,8,2,10,6,9,1,10,1,8,7,15,1,8,3,10,1,8,20,10,4,8,1,10,4,8,1,10,4,8,14,10,4,8,35,10,2,8,3,10,7,8,3,10,8,8,8,10,2,8,2,15,2,8,2,10,3,8,3,10,1,8,16,14,4,8,10,14,1,8,20,10,1,8,1,10,1,8,12,15,1,4,3,19,18,4,2,19,1,4,60,19,38,10,2,4,2,8,1,10,5,8,1,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,3,10,5,8,1,10,2,8,2,14,4,8,3,15,1,8,21,10,3,8,3,10,9,8,8,10,1,8,3,10,1,8,3,10,1,8,8,10,3,8,4,10,2,8,8,15,1,8,19,10,1,8,32,10,2,8,5,10,1,8,17,14,4,8,1,15,1,8,14,15,2,8,6,15,1,14,1,8,8,14,1,8,19,14,1,8,4,14,1,8,2,15,1,8,8,15,1,14,2,8,9,14,1,8,14,14,1,8,10,15,1,8,1,15,1,8,35,10,1,8,1,10,6,19,13,4,19,}, + {4,17,19,29,10,3,8,2,15,1,14,2,15,4,8,6,10,1,8,5,10,3,8,1,10,5,8,3,15,6,8,3,10,1,8,20,10,4,8,2,10,2,8,1,10,2,8,14,10,1,8,35,14,1,8,2,10,1,8,9,10,4,8,1,10,9,8,13,15,2,10,1,8,25,14,1,8,2,14,1,8,36,10,1,8,6,4,1,19,21,4,2,19,1,4,58,19,38,10,3,8,10,10,1,8,1,10,1,8,7,10,1,8,4,15,1,14,1,15,1,8,1,10,3,8,3,14,4,8,2,14,2,8,4,10,1,8,16,10,2,8,3,10,1,8,2,10,5,8,13,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,45,15,1,8,9,10,1,8,21,10,1,8,1,10,3,8,12,10,1,8,8,15,1,8,1,14,1,8,3,15,1,8,3,10,1,8,24,14,1,8,20,10,1,8,6,15,1,8,20,14,1,8,8,10,1,8,16,15,1,8,40,10,4,19,14,4,19,}, + {4,17,19,28,10,3,8,2,15,2,14,2,8,1,15,1,8,5,15,4,8,2,15,1,8,2,10,1,8,3,10,1,8,1,15,1,8,5,14,6,15,1,8,17,10,2,8,1,15,1,8,1,10,5,8,2,10,1,8,2,10,1,8,54,10,1,8,11,10,2,8,4,10,5,8,1,10,1,8,9,10,2,8,3,10,1,8,5,10,1,8,8,10,1,8,28,14,3,15,1,8,1,4,1,8,1,15,3,8,19,10,1,19,21,4,2,19,1,4,58,19,36,10,5,8,2,10,1,8,1,10,1,8,10,10,1,8,1,10,1,8,3,10,1,8,4,14,2,15,1,8,1,10,1,8,3,15,1,14,7,15,1,8,5,10,2,8,11,10,1,8,6,10,1,8,2,10,2,8,3,10,1,8,13,10,1,8,15,10,1,8,2,10,1,8,1,10,1,8,29,10,1,8,5,10,1,8,6,10,1,8,2,15,2,8,8,10,1,8,1,10,1,8,10,10,1,8,22,15,1,14,1,15,1,8,2,15,2,8,2,10,1,8,25,14,3,15,2,8,14,15,1,8,4,15,1,8,2,14,1,15,2,8,3,15,1,8,7,14,1,15,1,8,71,15,1,8,1,10,3,19,14,4,19,}, + {4,17,19,28,10,2,8,1,10,1,8,1,15,1,14,3,8,1,15,1,8,3,15,1,14,1,15,2,14,2,8,1,15,2,8,7,15,1,14,3,15,1,8,2,14,5,15,2,8,2,10,1,8,12,10,2,8,1,10,2,8,1,10,7,8,19,10,1,8,19,10,1,8,17,10,3,8,8,10,2,8,1,10,2,15,1,8,5,10,4,8,10,10,2,8,3,10,1,8,35,10,2,8,4,14,1,8,1,15,1,8,2,10,1,4,1,10,3,8,19,15,1,8,1,10,1,19,21,4,2,19,1,4,56,19,36,10,5,8,2,10,5,8,1,10,1,8,4,10,4,8,5,10,1,8,3,10,1,8,1,15,1,14,2,8,1,10,1,15,2,8,1,14,7,8,1,15,1,8,2,10,1,8,1,10,2,8,12,10,2,8,4,10,1,8,2,10,3,8,3,10,1,8,12,10,1,8,2,10,1,8,3,10,1,8,1,10,1,8,9,10,3,8,1,10,1,8,11,15,1,8,1,15,1,8,16,10,1,8,2,10,1,8,10,14,2,15,1,8,6,10,2,8,4,10,2,8,2,10,1,8,12,10,1,8,14,14,2,15,1,8,20,15,1,8,11,14,1,8,5,15,1,8,7,14,1,8,1,15,1,8,1,15,1,8,6,15,1,14,1,15,2,8,4,15,1,8,1,15,1,8,3,14,2,8,4,10,1,8,9,10,2,8,56,15,2,8,1,10,2,19,14,4,19,}, + {4,16,19,26,10,5,8,2,15,1,8,2,14,2,8,1,14,2,8,3,15,1,8,1,14,3,10,1,8,1,15,3,8,1,15,3,8,1,15,1,14,1,15,1,14,2,15,1,14,4,15,2,8,15,10,3,8,2,10,2,8,2,10,7,8,4,10,1,8,33,10,1,8,17,10,2,8,8,10,1,8,1,10,1,8,1,10,2,14,1,8,1,10,8,8,9,10,2,8,4,10,1,8,1,10,1,8,33,10,3,8,2,15,1,14,1,8,1,10,2,19,3,4,1,19,3,10,2,8,16,15,1,8,1,10,1,19,21,4,2,19,1,4,59,19,33,10,1,4,1,10,1,8,1,10,6,8,1,10,2,8,7,10,5,8,2,10,1,8,2,10,4,15,2,8,1,10,1,15,2,8,1,14,1,15,1,14,2,8,2,14,1,15,1,8,2,10,2,8,2,10,2,8,11,10,2,8,2,10,5,8,1,14,1,8,1,10,2,8,17,10,1,8,13,10,1,8,1,10,2,8,8,10,2,8,21,15,1,8,1,10,4,8,5,14,2,8,4,14,2,8,6,10,2,8,2,10,1,8,7,10,1,8,5,10,2,8,4,10,1,8,13,14,2,15,1,8,2,10,2,8,3,10,2,8,5,15,1,8,4,15,2,8,19,10,1,8,19,15,1,8,7,7,1,14,1,7,1,8,6,10,2,8,8,10,1,8,60,10,2,19,13,4,20,}, + {4,9,19,31,10,1,15,1,8,1,10,3,8,1,15,1,8,10,14,1,15,5,8,1,15,1,8,1,15,1,8,4,14,1,8,1,15,2,14,2,15,1,14,1,15,3,8,26,10,1,8,46,10,2,8,10,10,1,8,15,10,1,8,6,10,8,8,1,10,2,8,11,10,3,8,17,10,1,8,8,14,3,8,5,10,4,8,2,15,2,4,1,19,12,8,1,14,1,15,4,10,6,4,2,15,1,4,1,10,1,19,23,4,34,19,7,4,5,19,4,4,4,19,4,4,3,19,30,10,4,8,2,10,5,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,5,10,1,8,3,10,2,8,1,15,1,14,1,15,1,10,4,8,1,15,1,14,1,15,1,10,1,8,1,15,1,8,2,10,3,8,2,10,2,8,11,10,3,8,1,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,13,10,1,8,4,10,2,8,1,10,1,8,1,10,3,8,10,10,2,8,23,10,3,8,1,14,1,8,23,10,1,8,9,10,1,8,14,10,1,8,11,15,1,14,1,8,5,10,4,8,6,10,1,8,52,7,1,8,1,7,1,14,2,8,1,15,1,8,2,10,1,8,13,10,1,8,20,14,1,8,30,14,1,8,4,10,1,8,2,10,2,19,11,4,22,}, + {4,10,19,30,10,1,15,1,8,2,10,1,8,6,15,2,8,2,15,1,14,5,15,1,14,1,15,1,8,8,15,1,8,1,14,5,15,2,8,99,10,1,8,15,10,1,8,2,10,2,8,8,10,2,8,25,10,1,8,3,14,1,8,2,14,1,8,5,10,5,8,3,4,2,19,12,4,1,10,1,4,1,10,1,4,3,19,6,4,2,10,1,19,24,4,34,19,6,4,5,19,5,4,3,19,37,10,5,8,1,10,1,8,1,10,3,8,1,10,4,8,1,10,1,8,3,10,1,8,1,10,3,8,10,10,1,15,1,8,1,15,1,8,1,10,1,8,2,10,2,15,1,8,2,10,2,8,2,10,5,8,1,10,2,8,1,10,1,8,4,10,1,8,5,10,1,8,2,10,3,8,13,10,1,8,2,10,1,8,5,10,2,8,8,10,1,8,37,10,2,8,4,14,1,15,1,8,17,10,2,8,5,10,1,8,19,10,2,8,13,15,1,8,3,10,5,8,33,15,2,8,5,10,1,8,4,15,1,8,3,14,3,8,1,14,1,8,3,14,2,7,1,8,1,14,2,7,1,8,4,10,1,8,62,15,1,8,6,10,4,19,12,4,22,}, + {4,10,19,30,10,1,15,1,8,8,15,3,14,10,15,1,8,4,10,1,8,2,15,3,14,1,15,1,14,2,15,1,8,100,10,5,8,11,10,1,8,2,10,3,8,10,10,2,8,23,10,1,8,2,14,2,8,1,14,2,8,5,10,6,4,3,19,53,4,34,19,56,10,6,8,2,10,1,8,3,10,2,8,4,10,4,8,1,10,4,8,3,10,3,8,4,15,1,8,4,10,3,8,3,10,3,8,1,10,2,8,4,10,1,8,12,10,4,8,7,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,7,10,8,8,17,10,1,8,20,10,1,8,2,10,2,8,1,14,2,15,2,8,16,10,1,8,1,10,1,8,6,10,1,8,19,10,1,8,11,10,3,8,5,10,4,8,20,15,1,8,10,10,1,8,16,15,1,14,3,8,5,7,1,14,1,8,1,7,1,14,1,7,1,14,1,8,28,14,1,8,35,14,1,8,1,14,1,8,7,10,3,4,1,19,12,4,22,}, + {4,10,19,30,10,1,8,17,15,1,8,6,15,1,8,2,10,1,8,1,15,5,8,3,10,1,8,1,10,1,8,72,10,1,8,23,10,1,8,3,10,3,8,6,10,1,8,20,10,3,8,23,15,2,8,3,14,3,8,1,15,3,10,7,19,55,4,36,19,53,10,11,8,3,10,2,8,2,10,3,8,2,10,1,8,1,10,3,8,3,10,4,8,3,14,2,15,2,8,1,10,3,8,3,10,3,8,2,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,7,14,1,8,3,10,3,8,8,10,1,8,8,10,4,8,5,10,7,8,16,10,3,8,25,14,2,8,48,10,1,8,13,10,3,8,22,15,1,8,2,15,1,8,1,15,1,8,12,10,1,8,3,10,1,8,1,10,1,8,9,15,1,8,9,14,2,7,1,14,1,8,63,15,1,14,3,8,3,15,1,8,4,10,2,19,1,10,1,19,10,4,23,}, + {4,10,19,29,10,2,15,1,8,10,15,1,8,6,15,1,8,2,14,1,8,1,15,4,8,1,15,2,8,1,10,2,9,1,10,6,8,18,10,4,8,1,10,1,8,89,10,1,8,17,10,3,8,14,15,1,8,1,15,1,8,1,15,1,4,1,15,3,8,1,10,3,8,1,15,6,4,1,19,3,4,2,19,55,4,33,19,48,10,2,19,1,10,1,19,3,10,3,8,1,10,1,8,3,10,1,8,1,10,1,8,4,10,2,8,9,10,1,8,4,10,1,8,2,10,2,8,3,15,2,14,2,15,1,8,1,10,2,8,1,15,1,10,4,8,3,10,1,8,1,10,1,8,1,10,3,8,1,10,2,8,3,10,1,8,5,10,3,8,6,10,1,8,6,10,8,8,1,10,2,8,2,10,4,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,2,8,5,10,1,8,2,10,4,8,8,15,1,8,15,15,3,8,18,10,1,8,25,10,2,8,17,10,2,8,2,10,2,8,1,10,1,8,1,10,1,8,12,15,2,8,17,10,1,8,3,15,1,8,1,10,1,8,4,14,2,8,9,7,2,8,3,14,2,8,67,14,2,10,1,8,1,15,1,8,5,10,2,19,1,10,1,19,10,4,23,}, + {4,10,19,23,4,1,19,5,4,1,10,1,8,8,10,3,8,7,15,2,8,3,10,2,4,1,10,2,15,1,14,1,8,1,10,9,8,5,10,1,8,14,15,1,14,1,15,1,8,2,10,1,8,50,10,1,8,3,10,2,8,26,10,1,8,15,10,3,8,4,10,4,8,8,4,1,10,1,4,1,10,4,4,1,10,1,4,1,10,2,4,2,19,3,10,3,4,1,10,1,4,2,10,1,19,4,10,1,19,56,4,33,19,45,10,11,4,1,8,1,10,1,8,2,10,5,8,1,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,2,10,3,8,3,15,2,8,3,15,2,8,1,10,2,8,1,15,1,14,1,10,4,8,5,10,1,8,1,10,1,8,1,10,4,8,3,10,8,8,6,10,1,8,8,10,7,8,1,10,3,8,3,10,1,8,1,15,1,14,1,8,1,10,1,8,2,10,1,8,1,10,2,8,9,10,3,8,43,10,1,8,20,10,1,8,8,10,1,8,4,10,1,8,5,10,1,8,13,10,1,8,9,14,1,8,17,14,1,8,5,10,1,8,2,15,1,8,1,10,1,8,4,14,2,8,9,14,1,7,1,14,1,7,1,8,1,7,1,8,1,7,1,8,66,14,2,10,1,8,7,10,2,19,12,4,23,}, + {4,10,19,23,4,1,19,6,10,1,15,1,8,4,10,2,8,1,10,5,8,1,10,2,15,1,8,1,15,2,8,1,10,1,4,1,10,1,4,2,10,2,8,1,14,1,15,1,10,9,8,4,10,1,8,4,10,1,8,9,15,1,14,2,15,1,8,2,10,1,8,11,10,2,8,2,10,1,8,9,10,1,8,4,10,1,8,7,14,3,8,3,10,1,8,2,10,11,8,3,10,1,8,36,10,3,8,13,10,1,4,2,10,1,19,16,4,2,19,68,4,30,19,46,10,2,8,7,10,1,8,1,10,1,8,2,10,1,8,2,10,3,8,10,10,1,8,4,10,4,8,1,10,4,8,3,15,2,8,2,10,1,8,2,10,3,8,3,10,2,8,6,10,2,8,1,10,1,8,6,10,2,8,2,10,4,8,9,10,2,8,11,10,5,8,7,15,1,8,6,10,1,8,4,10,1,8,5,10,3,8,3,10,1,8,12,15,1,8,46,10,1,8,5,10,1,8,3,10,1,8,7,10,1,8,26,15,1,8,3,15,1,8,26,15,2,8,13,15,1,7,1,8,60,14,1,8,7,15,1,8,1,15,1,14,1,15,1,8,1,10,1,8,1,10,1,8,4,10,3,19,11,4,23,}, + {4,10,19,30,4,1,15,1,4,1,8,2,10,4,4,1,8,1,10,1,4,1,10,1,19,1,10,1,4,1,10,1,4,1,10,1,4,1,10,3,19,3,4,1,10,1,15,1,16,1,14,1,8,1,10,4,15,1,8,7,10,1,8,1,10,1,8,2,10,1,8,13,10,1,8,12,10,1,8,5,10,2,8,4,10,1,8,2,10,1,8,1,10,5,8,7,14,1,8,3,10,2,8,3,10,17,8,20,10,1,8,3,10,2,8,8,10,2,8,11,4,1,10,1,19,90,4,30,19,45,4,1,8,13,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,2,10,1,8,6,10,3,8,1,10,1,8,6,10,1,8,5,15,1,8,2,10,2,8,1,10,1,8,2,10,6,8,6,10,3,8,3,10,1,8,1,10,9,8,19,10,1,8,4,10,6,8,4,10,1,8,7,10,2,8,9,10,4,8,1,10,3,8,1,15,2,8,9,15,2,8,4,15,1,14,2,8,6,10,2,8,2,10,2,8,1,15,1,8,12,10,1,8,15,10,1,8,9,10,1,8,2,10,1,8,2,14,1,8,14,14,1,15,1,8,11,14,1,15,1,8,1,14,1,8,20,10,1,8,72,15,1,8,16,15,1,8,3,10,4,8,3,10,3,19,11,4,23,}, + {4,9,19,2,4,2,19,24,4,1,19,2,4,1,15,2,4,1,10,1,19,22,4,1,10,3,15,1,10,2,15,2,8,10,10,1,8,1,10,1,8,1,10,1,8,17,10,1,8,22,10,3,8,4,10,1,8,15,10,1,8,3,10,7,8,1,10,3,8,25,10,4,8,5,14,1,8,1,10,1,8,10,4,1,8,1,4,1,19,92,4,25,19,47,4,1,10,1,4,2,8,5,10,1,8,5,10,1,8,3,10,1,8,1,10,1,8,2,10,2,8,7,10,1,8,1,10,1,8,1,10,1,8,3,10,2,8,9,10,1,8,2,10,3,8,4,10,2,8,8,10,1,8,4,10,1,8,1,10,1,8,3,10,4,8,3,10,2,8,6,10,4,8,1,10,3,8,7,10,1,8,2,10,1,8,13,10,1,8,6,10,2,8,3,10,4,8,2,10,1,8,3,15,1,14,1,8,1,10,2,8,3,10,1,8,7,15,2,14,2,15,1,8,23,10,2,8,24,10,3,8,15,10,1,8,10,10,1,8,2,14,6,8,7,14,1,8,15,15,1,8,1,15,1,8,4,14,1,8,2,15,1,8,1,7,2,8,1,7,2,8,6,7,1,8,33,14,1,8,9,14,2,8,21,15,1,8,4,10,1,8,3,10,2,19,12,4,23,}, + {4,9,19,2,4,2,19,23,10,1,19,4,4,3,19,23,10,4,9,1,10,2,8,12,10,1,8,45,10,2,8,19,10,3,8,1,10,1,8,1,10,10,8,26,10,2,8,13,14,1,15,1,8,1,4,1,15,1,8,1,4,1,10,1,19,93,4,25,19,47,4,1,8,1,4,1,10,2,8,4,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,1,10,2,8,12,10,1,8,2,10,5,8,8,10,1,8,1,15,1,8,5,10,2,8,1,10,5,8,7,15,2,8,7,10,7,8,16,10,5,8,2,10,3,8,6,15,1,8,2,10,2,8,3,10,1,8,6,10,2,8,1,10,1,8,1,10,5,8,6,15,2,8,15,15,1,14,2,15,2,14,1,8,43,10,1,8,2,10,3,8,32,15,1,14,2,8,8,14,1,8,22,7,1,15,1,7,1,14,1,7,1,15,1,8,4,7,1,8,2,7,1,8,46,15,1,14,1,8,19,10,1,8,6,10,1,8,3,10,1,4,1,19,12,4,23,}, + {4,9,19,2,4,2,19,54,10,3,8,1,10,1,8,6,10,1,8,18,10,1,8,2,10,1,8,5,10,1,8,33,10,1,8,15,10,2,8,2,10,8,8,34,10,1,8,6,15,1,14,1,15,1,8,2,4,2,19,93,4,26,19,48,10,1,8,2,10,1,8,3,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,3,10,2,8,1,10,1,8,5,10,3,8,2,15,2,8,1,10,7,8,2,10,3,8,4,15,1,14,1,8,4,10,1,8,3,10,5,8,16,10,1,8,1,10,3,8,2,10,3,8,4,15,1,8,3,15,1,8,4,15,1,8,1,10,1,8,1,10,2,8,7,10,2,8,1,10,3,8,15,15,1,8,6,14,2,8,9,10,1,8,14,10,2,8,25,10,3,14,1,8,1,10,1,8,3,10,1,8,20,15,1,8,1,10,1,7,1,8,2,14,2,8,9,14,3,8,12,15,1,14,3,8,3,14,4,15,1,7,1,8,15,14,2,8,38,14,2,15,1,8,17,10,2,8,5,15,2,8,1,10,2,19,13,4,23,}, + {4,9,19,2,4,2,19,54,4,1,10,2,14,1,15,1,8,5,10,2,8,21,10,1,8,2,10,1,8,1,10,4,8,13,10,1,8,5,10,1,8,8,10,1,8,2,10,2,8,14,10,2,8,2,10,6,8,25,10,1,8,8,10,5,8,6,15,2,8,1,10,1,19,94,4,25,19,47,10,3,8,2,10,3,8,1,10,2,8,2,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,3,10,1,8,5,10,4,15,1,8,1,15,1,14,1,8,1,10,7,8,1,10,4,8,3,15,1,14,1,8,1,15,2,8,2,10,1,8,4,10,5,8,16,10,1,8,1,10,3,8,1,10,1,8,6,15,1,8,3,14,1,15,1,8,9,10,1,8,9,10,3,8,21,15,1,14,1,15,1,8,8,10,1,8,25,15,1,14,2,8,14,10,3,14,1,8,1,10,2,8,3,10,1,8,22,14,1,15,1,8,1,15,1,8,4,10,1,8,2,10,1,8,3,14,2,8,14,14,3,7,2,14,2,7,2,14,1,8,2,7,1,8,12,15,1,14,1,8,39,14,3,8,12,14,1,8,2,10,3,8,2,15,1,8,3,14,1,8,2,10,1,19,14,4,23,}, + {4,9,19,2,4,2,19,54,10,3,8,2,10,1,8,1,10,1,8,1,10,3,8,3,10,1,8,9,10,2,8,3,15,1,14,1,15,1,8,1,15,1,8,20,10,1,8,12,10,8,8,11,10,4,8,5,10,1,8,1,10,1,8,1,10,1,8,24,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,10,15,1,10,2,19,94,4,24,19,47,10,4,8,1,10,1,8,1,10,4,8,5,10,5,8,1,10,2,8,1,10,1,8,1,10,2,8,1,10,3,8,4,10,1,8,1,10,3,8,4,10,1,8,4,10,4,8,4,10,1,8,2,10,1,8,2,10,7,8,3,14,1,8,2,15,2,8,4,10,1,8,3,10,4,8,2,10,2,8,4,10,1,8,6,10,1,8,3,10,1,8,11,15,1,14,1,15,1,8,4,10,2,8,15,10,2,8,15,10,3,8,1,10,1,8,12,10,1,8,26,14,1,15,1,8,12,10,1,8,1,10,2,8,1,14,1,8,3,10,4,8,4,14,1,15,1,8,3,15,1,8,26,14,1,15,1,8,10,15,1,8,2,15,1,14,5,15,1,7,1,15,1,8,2,14,1,7,1,8,55,14,3,8,12,14,1,8,3,10,1,8,2,14,1,15,3,14,1,8,2,10,2,19,11,4,1,19,2,4,23,}, + {4,9,19,2,4,2,19,52,4,1,19,1,4,1,10,5,8,2,10,4,8,13,10,5,8,1,15,2,8,1,14,1,8,3,10,1,8,2,10,1,8,13,10,1,8,8,10,1,8,3,10,1,8,1,10,6,8,11,10,3,8,3,10,1,8,4,10,1,8,10,10,1,8,9,10,9,8,1,10,1,8,8,10,1,8,8,4,2,19,93,4,24,19,46,10,3,8,5,10,14,8,2,10,1,8,1,10,2,8,1,10,1,8,2,10,4,8,2,10,1,8,2,10,3,8,1,10,1,8,3,10,1,8,1,10,10,8,6,10,4,8,2,15,3,14,1,15,1,8,2,15,1,8,4,10,3,8,1,10,5,8,2,10,2,8,2,10,7,8,10,15,1,8,7,15,1,8,6,10,3,8,8,15,1,8,4,10,2,8,15,10,1,8,3,10,1,8,11,10,1,8,30,15,1,8,10,10,1,8,1,10,2,8,5,10,1,8,1,10,1,8,4,15,1,14,2,8,1,10,1,8,1,14,1,15,4,8,18,10,1,8,3,15,1,8,10,15,2,8,2,14,1,8,1,15,1,14,3,7,1,8,1,7,1,8,2,14,1,7,1,8,47,14,1,8,7,14,2,8,1,15,3,8,15,15,4,8,3,10,2,19,12,4,1,19,2,4,23,}, + {4,9,19,2,4,2,19,51,4,4,10,4,8,4,10,1,8,13,10,1,8,1,10,6,8,4,15,1,8,1,10,2,8,1,10,1,8,1,10,1,8,6,10,1,8,3,10,1,8,3,10,1,8,2,10,1,8,2,10,1,8,6,10,6,8,6,10,1,8,10,10,1,8,14,10,1,8,9,10,9,8,1,10,2,8,6,10,1,8,2,10,1,8,6,10,1,4,2,19,92,4,25,19,45,10,3,8,2,10,3,8,1,10,1,8,1,10,2,8,3,10,1,8,1,10,3,8,1,10,1,8,1,10,1,8,5,10,1,8,1,10,2,8,5,10,1,8,1,10,5,8,2,10,1,8,4,10,7,8,8,10,4,8,2,15,1,14,1,8,1,15,1,8,8,10,3,8,1,10,4,8,7,10,6,8,1,10,2,8,3,10,3,8,3,15,2,8,1,10,1,8,11,10,4,8,6,15,1,8,4,10,1,8,9,15,1,8,20,10,1,8,1,10,1,8,43,10,2,8,13,15,1,8,5,15,1,14,3,8,8,15,1,8,24,15,2,8,2,15,1,14,1,8,1,7,1,14,2,8,1,7,1,8,52,15,1,14,1,8,5,15,1,8,3,14,2,15,2,8,10,7,2,8,3,15,3,8,3,10,2,19,11,4,2,19,2,4,23,}, + {4,9,19,2,4,2,19,50,10,2,4,2,10,2,8,1,10,1,8,1,15,1,8,2,10,1,8,8,10,1,8,1,10,1,8,1,10,11,8,24,10,1,8,7,10,2,8,4,10,1,8,2,10,1,8,1,10,2,8,4,10,3,8,10,10,2,8,8,10,1,8,15,10,1,8,3,10,2,8,3,10,2,8,5,10,1,8,6,10,1,8,2,10,1,19,93,4,26,19,45,10,1,4,1,8,2,10,7,8,1,10,1,8,2,10,1,8,1,10,13,8,3,10,3,8,1,10,2,8,3,10,5,8,12,10,1,8,6,10,6,8,2,15,1,14,1,8,3,15,1,10,1,8,5,10,3,8,2,10,1,8,1,10,2,8,6,10,2,8,1,10,2,8,5,10,1,8,1,10,3,8,12,15,2,8,3,10,2,8,2,10,1,8,9,10,1,8,1,10,1,8,3,10,1,8,3,10,1,8,13,10,2,8,7,10,1,8,1,15,1,8,2,10,1,8,57,15,1,14,1,15,1,8,2,14,1,16,1,14,1,15,1,8,2,14,1,15,1,8,2,10,1,8,4,10,1,8,5,14,1,8,1,14,1,8,8,15,2,8,2,14,1,15,1,8,2,14,2,8,2,7,1,14,1,8,8,7,1,8,53,15,1,8,1,15,1,14,2,15,1,8,11,14,1,8,4,14,2,8,3,10,2,19,12,4,2,19,2,4,23,}, + {4,13,19,45,10,5,8,1,10,2,15,1,8,3,10,1,15,1,8,5,15,1,8,1,15,1,8,5,15,1,8,1,15,1,8,4,10,10,8,1,15,1,8,1,10,1,8,2,14,1,15,1,8,1,10,1,8,2,15,2,14,1,15,1,14,1,8,5,10,1,8,6,14,2,8,1,10,7,8,8,10,1,8,9,10,2,8,16,10,16,8,1,10,1,8,8,10,2,8,8,4,1,19,91,4,25,19,34,10,5,19,5,10,11,8,3,10,1,8,1,10,1,8,10,10,2,8,2,10,1,8,4,10,2,8,1,10,1,8,2,10,2,8,3,10,6,8,1,10,2,8,5,10,1,8,8,10,4,8,2,15,1,14,1,8,8,10,1,8,16,10,4,8,1,10,1,8,1,10,1,8,2,10,2,8,17,10,7,8,3,10,1,8,7,10,4,8,31,15,2,8,22,10,1,8,16,15,1,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,5,15,1,14,1,15,1,8,7,15,1,14,1,15,2,8,23,14,2,15,1,8,6,14,1,8,7,14,1,8,24,15,1,8,35,15,1,8,7,14,3,8,4,14,2,7,1,14,2,15,1,8,3,4,1,19,14,4,27,}, + {4,13,19,45,10,1,9,1,10,2,8,3,10,1,8,1,15,2,8,6,10,2,8,4,15,2,14,2,15,1,8,5,10,1,8,1,10,7,8,1,10,4,8,4,15,1,8,4,15,1,8,1,14,3,15,1,14,2,15,2,8,2,10,2,8,5,10,5,8,39,10,4,8,1,10,3,8,2,10,5,8,11,10,2,8,2,10,1,8,5,10,1,19,91,4,25,19,33,10,1,4,1,10,20,8,5,10,2,8,1,10,3,8,5,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,6,10,7,8,9,10,1,8,1,10,1,8,5,10,1,8,2,10,3,8,1,14,1,8,9,10,1,8,12,10,1,8,2,10,5,8,1,10,1,8,1,10,8,8,1,10,1,8,11,10,4,8,1,10,3,8,13,10,1,8,21,10,1,8,60,10,1,8,4,10,1,8,1,15,1,8,2,14,1,15,1,8,1,15,1,14,1,15,3,8,1,10,1,8,7,15,1,14,1,15,1,8,15,15,1,8,5,15,1,14,2,8,15,7,1,8,58,10,3,8,3,14,3,8,3,15,1,8,3,14,1,15,1,8,3,4,1,10,1,19,14,4,27,}, + {4,12,19,43,10,4,8,4,15,3,8,1,14,1,15,1,8,3,15,1,8,2,10,1,9,1,8,4,15,1,14,2,15,2,14,1,15,3,8,1,15,1,8,3,10,5,8,2,10,3,15,1,8,3,14,1,15,2,8,3,10,1,15,2,8,2,15,1,14,1,15,1,8,2,15,1,8,2,15,2,8,2,10,3,8,1,10,1,8,25,10,1,8,6,10,3,8,5,10,4,8,2,10,2,8,2,10,2,8,1,10,1,8,22,4,1,19,91,4,24,19,34,10,12,4,1,10,9,8,3,10,2,8,1,10,1,8,1,10,2,8,1,10,3,8,8,10,1,8,1,10,1,8,10,10,7,8,4,10,4,8,2,10,1,8,4,10,1,8,4,10,3,8,1,14,1,8,2,10,1,8,4,10,4,8,5,10,1,8,1,10,1,8,1,10,1,8,3,10,5,8,1,10,1,8,3,10,1,8,3,10,3,8,13,10,3,8,2,10,3,8,4,10,2,8,3,10,1,8,17,14,1,8,7,10,1,8,4,10,1,8,5,10,3,8,47,10,1,8,1,10,1,8,2,10,1,8,2,10,1,8,2,15,1,8,1,15,1,14,3,8,1,10,2,8,2,10,1,8,1,10,1,8,19,15,1,8,7,14,2,8,14,15,1,8,66,14,4,8,1,14,1,8,3,14,1,15,1,8,2,4,3,19,14,4,27,}, + {4,9,19,44,10,3,8,4,15,1,8,1,15,2,14,2,8,5,15,3,8,3,15,1,8,1,15,4,14,1,15,2,14,4,15,3,8,1,10,1,8,3,10,1,8,1,10,1,8,3,15,5,14,1,15,1,14,1,15,2,8,1,10,1,8,3,10,2,8,1,15,1,8,6,14,1,8,38,10,3,8,6,10,4,8,6,10,2,8,7,10,1,8,16,10,1,19,91,4,24,19,34,10,7,4,1,8,1,10,4,8,1,10,1,8,1,10,6,8,1,10,1,8,3,10,1,8,1,10,1,8,6,10,1,8,1,10,5,8,2,10,1,8,1,10,2,8,3,10,2,8,2,10,8,8,1,10,2,8,2,10,5,8,1,10,1,8,3,10,1,8,1,10,2,8,1,10,1,8,1,15,1,8,3,10,1,8,1,10,1,8,5,10,4,8,2,10,1,8,1,10,1,8,2,10,1,8,3,10,1,8,4,10,1,8,5,10,1,8,3,10,3,8,3,10,2,8,9,10,2,8,3,10,1,8,4,10,1,8,6,15,1,8,14,14,3,8,11,10,1,8,2,10,1,8,2,10,4,8,2,14,1,8,2,10,1,8,42,10,2,8,3,10,1,8,4,15,4,8,2,10,2,8,2,10,1,8,17,15,3,8,3,15,1,8,2,14,1,8,3,15,2,8,13,14,1,8,15,7,1,8,11,15,2,8,30,15,2,8,6,14,3,8,4,14,2,15,1,8,2,4,3,19,14,4,27,}, + {4,9,19,42,10,2,15,1,14,1,15,1,8,1,15,3,8,3,15,1,14,2,8,4,15,3,14,1,15,6,8,1,15,3,14,6,15,2,9,1,10,1,8,2,14,1,15,1,8,2,10,1,8,3,15,1,14,1,15,3,8,2,15,1,8,1,10,4,15,1,14,2,15,1,10,1,8,4,10,1,8,1,10,1,8,3,10,1,8,27,10,1,8,7,10,1,8,10,10,1,8,15,10,2,8,12,15,1,4,1,8,1,4,1,19,84,4,30,19,35,10,2,8,5,10,1,8,2,10,1,8,1,10,1,8,2,10,4,8,1,10,4,8,5,10,2,8,3,10,7,8,3,10,2,8,3,10,1,8,2,10,17,8,1,10,1,8,3,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,3,14,2,8,1,10,1,8,3,10,1,8,2,10,3,8,5,10,2,8,10,15,2,8,2,10,3,8,4,10,5,8,29,15,1,14,1,15,1,8,22,10,1,8,4,10,1,8,2,10,2,8,4,10,2,8,47,10,1,8,6,10,1,8,3,15,2,8,4,10,1,8,4,10,1,8,12,15,5,14,1,8,2,14,2,8,1,15,2,8,5,10,1,8,12,15,1,8,22,7,1,8,5,15,1,8,31,14,1,15,1,8,1,14,1,8,4,14,1,8,4,14,2,15,1,8,2,4,3,19,14,4,28,}, + {4,12,19,40,10,1,8,10,15,1,14,5,15,1,8,1,15,2,14,2,15,6,8,3,15,2,8,3,15,1,8,2,10,1,8,1,15,2,14,1,15,2,8,6,15,2,8,1,15,1,8,3,10,2,8,2,10,1,15,1,14,1,15,1,10,3,8,4,10,4,8,75,10,3,4,2,19,85,4,30,19,35,10,3,8,1,10,1,8,5,10,3,8,1,10,2,8,2,10,1,8,4,10,1,8,7,10,2,8,3,10,4,8,2,10,1,8,1,10,5,8,1,10,2,8,1,10,10,8,1,10,5,8,4,10,1,8,1,10,1,8,4,10,2,8,1,10,1,8,7,10,1,8,8,10,1,8,2,10,1,8,2,10,1,8,8,10,1,8,5,10,6,8,5,10,2,8,13,10,1,8,5,10,3,8,25,10,2,8,2,10,2,8,1,10,1,8,2,10,3,8,27,10,2,8,28,10,2,8,10,15,1,8,8,10,1,8,18,15,2,8,2,14,1,8,7,10,1,8,7,10,1,8,66,15,1,8,2,14,1,8,2,14,2,8,4,14,3,15,1,8,2,4,3,19,13,4,29,}, + {4,11,19,38,10,1,4,1,10,3,8,1,10,2,8,6,15,3,14,3,15,1,8,2,15,5,8,2,15,4,8,3,15,1,14,1,15,1,8,4,15,1,14,1,15,3,8,1,15,3,8,2,10,3,8,1,15,4,10,2,8,2,10,1,8,3,10,4,8,76,15,1,8,1,15,3,8,1,10,2,19,89,4,24,19,1,4,3,19,35,10,4,8,7,10,3,8,1,10,2,8,18,10,3,8,7,10,5,8,1,10,13,8,3,10,1,8,5,10,1,8,7,10,1,8,7,10,1,8,11,10,1,8,2,10,1,8,10,10,2,8,5,10,5,8,1,10,1,8,4,10,2,8,24,10,3,8,1,10,3,8,1,10,1,8,19,10,1,8,3,10,3,8,7,10,1,8,20,10,1,8,15,10,1,8,3,10,1,8,3,10,1,8,5,10,2,8,3,10,1,8,9,10,2,8,4,10,1,8,19,15,1,8,14,15,1,8,8,15,1,8,54,14,1,15,1,8,7,15,1,8,3,14,8,15,1,8,3,4,2,19,16,4,27,}, + {4,11,19,38,4,2,15,2,8,1,10,4,8,4,15,3,14,2,15,1,8,3,15,6,8,2,15,1,8,1,15,3,8,1,14,4,8,2,15,1,14,1,15,1,14,1,15,1,8,1,15,3,14,2,8,1,10,3,8,2,14,1,15,2,14,1,8,1,10,1,8,2,10,1,8,8,10,1,8,62,10,1,8,8,15,1,8,2,4,1,8,2,15,2,4,1,19,1,10,1,19,81,4,5,19,7,4,20,19,1,4,3,19,33,10,2,4,1,8,6,10,7,8,6,10,1,8,6,10,1,8,9,10,2,8,1,10,2,8,1,10,2,8,1,10,4,8,2,10,7,8,2,10,3,8,4,10,4,8,7,10,1,8,1,10,1,8,9,10,2,8,2,10,1,8,4,10,4,8,10,10,2,8,6,10,7,8,1,10,2,8,1,10,3,8,2,10,1,8,3,10,1,8,17,10,3,8,4,10,1,8,1,10,1,8,15,14,1,8,6,10,2,8,14,10,1,8,14,10,1,8,11,15,1,8,14,10,1,8,1,10,2,8,4,10,2,8,13,10,1,8,13,15,1,8,1,15,1,8,27,14,1,8,23,14,1,8,18,15,1,8,5,14,1,8,5,14,1,8,5,10,1,8,5,14,1,8,1,14,1,16,1,14,4,15,1,8,4,4,2,19,15,4,28,}, + {4,11,19,1,4,1,19,37,10,7,8,2,15,1,8,2,15,1,8,1,15,2,14,1,15,1,8,2,9,1,8,4,15,1,8,1,10,1,8,1,15,1,14,4,15,1,8,3,15,1,8,2,15,1,14,4,15,1,14,3,15,1,8,1,15,2,8,1,15,2,14,1,15,2,8,3,10,2,8,3,10,1,8,32,10,3,8,21,10,1,8,20,15,1,8,1,10,1,4,2,19,1,4,4,19,83,4,32,19,33,10,3,8,1,4,1,8,7,10,4,8,2,10,3,8,5,10,3,8,13,10,1,8,5,10,1,8,1,10,4,8,2,10,8,8,2,10,1,8,7,10,2,8,15,10,2,8,3,10,1,8,3,10,2,8,1,10,4,8,4,10,1,8,3,10,1,8,6,10,2,8,4,10,6,8,5,10,5,8,16,15,2,8,3,10,3,8,1,14,3,8,2,10,1,8,4,10,1,8,3,10,1,8,2,10,1,8,2,14,1,8,2,10,1,8,3,10,2,8,1,14,1,10,1,8,2,10,2,8,4,15,1,8,29,14,1,8,10,10,2,8,6,10,3,8,13,10,1,8,11,15,1,8,2,15,1,14,1,15,1,14,1,8,3,15,2,8,17,15,1,8,13,14,1,8,38,15,1,8,2,14,1,8,9,10,1,8,7,14,10,8,3,4,3,19,14,4,29,}, + {4,11,19,1,4,1,19,34,10,2,19,1,10,3,8,13,15,1,8,6,15,1,8,1,15,1,14,4,8,1,15,1,8,1,15,2,8,2,15,2,14,1,15,1,14,4,15,3,8,1,15,1,8,3,15,1,8,1,15,1,14,1,15,3,8,1,15,1,8,3,10,1,8,14,4,1,8,10,10,1,8,11,10,1,8,11,10,1,8,17,10,1,8,13,4,1,19,1,4,1,19,3,4,3,19,83,4,32,19,32,10,3,8,10,10,2,8,4,10,4,8,5,10,2,8,8,10,2,8,3,10,2,8,6,10,5,8,4,10,4,8,3,10,1,8,7,10,2,8,14,10,3,8,17,10,1,8,6,10,5,8,1,10,4,8,1,10,7,8,5,10,6,8,1,10,1,8,9,15,5,8,4,10,2,8,1,14,2,8,18,10,1,8,2,10,1,8,4,10,1,8,2,10,1,8,3,14,2,8,10,10,1,8,37,10,1,8,19,10,1,8,12,14,1,15,1,8,25,15,2,8,5,15,1,8,5,14,1,8,40,15,1,14,1,8,2,14,4,8,13,15,1,14,7,15,2,8,3,4,1,10,1,19,15,4,29,}, + {4,13,19,33,10,1,4,1,10,6,8,10,10,2,15,1,8,5,15,2,8,2,15,1,14,3,15,1,8,3,15,3,8,1,15,5,8,2,15,2,8,17,10,2,8,2,10,1,8,8,10,1,8,21,10,2,8,1,10,2,8,6,15,1,8,14,14,3,8,16,15,1,8,1,4,2,19,88,4,35,19,31,10,3,8,10,10,1,8,6,10,5,8,1,10,2,8,3,10,1,8,11,10,3,8,2,10,9,8,1,10,1,8,2,10,4,8,1,10,1,8,1,10,1,8,4,10,1,8,4,10,1,8,16,10,4,8,2,10,1,8,2,10,1,8,2,10,1,8,1,10,4,8,2,10,1,8,3,10,4,8,3,10,1,8,2,10,8,8,1,10,1,8,8,10,1,8,10,15,5,8,6,10,1,8,7,10,1,8,3,10,1,8,1,10,1,8,6,14,2,8,2,10,1,8,1,10,1,8,2,10,1,8,4,10,1,8,1,14,2,8,22,15,1,8,12,14,1,8,11,10,2,8,2,10,1,8,2,10,1,8,2,10,2,8,21,15,1,14,1,15,1,8,10,14,1,8,5,15,1,8,9,15,1,8,52,15,2,8,3,14,2,8,1,14,1,8,4,14,1,8,7,7,1,14,6,15,2,14,1,8,3,4,2,19,15,4,29,}, + {4,13,19,30,4,1,10,2,15,2,10,6,8,7,15,1,8,4,15,2,8,7,15,1,14,3,15,1,8,2,15,4,8,2,15,1,8,3,10,1,8,1,10,1,8,1,15,1,8,1,10,2,8,8,10,2,8,2,10,4,8,8,10,1,8,1,10,1,8,20,10,3,8,1,10,3,8,3,15,1,8,1,15,2,8,6,15,1,8,6,14,5,8,15,15,1,8,1,4,2,19,82,4,42,19,28,10,3,8,8,10,1,8,2,10,7,8,1,10,7,8,3,10,3,8,4,10,1,8,1,10,1,8,1,10,1,8,2,10,3,8,2,10,2,8,1,10,1,8,1,10,3,8,2,10,1,8,2,10,1,8,17,10,1,8,1,10,4,8,6,15,1,14,1,8,1,10,4,8,6,10,12,8,1,10,1,8,1,10,1,8,7,10,7,8,5,10,1,8,18,15,1,8,3,10,1,8,4,10,5,8,15,10,1,8,1,17,1,14,1,8,2,10,2,8,1,10,1,8,2,10,1,8,5,15,1,8,4,10,2,8,32,10,1,8,2,14,2,10,2,8,2,10,2,15,1,8,2,10,1,8,2,10,2,8,3,10,1,8,9,15,1,8,10,14,1,8,12,14,1,8,30,14,1,8,50,14,1,8,8,14,9,15,1,8,3,4,1,19,15,4,29,}, + {4,13,19,30,10,2,8,3,10,3,8,9,15,2,8,4,15,1,8,4,15,1,14,2,15,1,14,3,15,1,8,1,10,2,8,4,10,3,8,4,10,3,8,2,10,1,8,3,10,1,8,3,15,2,8,4,10,1,8,1,10,1,8,2,10,2,8,1,10,1,8,2,10,1,8,14,10,3,8,1,10,1,8,3,10,6,8,5,15,1,14,1,8,1,14,1,15,1,8,1,14,2,8,1,14,3,8,4,14,2,8,4,14,2,8,13,15,1,4,1,10,1,19,78,4,44,19,30,10,2,8,1,4,1,8,7,10,2,8,2,10,1,8,1,10,4,8,1,10,1,8,1,10,5,8,5,10,2,8,3,10,2,8,3,10,1,8,1,10,3,8,2,10,9,8,5,10,1,8,17,10,1,8,1,10,6,8,1,10,1,8,2,14,2,8,2,10,2,8,5,10,5,8,2,10,1,8,2,10,2,8,1,10,2,8,4,10,1,8,1,10,1,8,2,10,8,8,4,10,1,8,3,10,5,8,2,10,3,8,8,10,4,8,4,10,3,8,14,15,1,14,1,15,2,14,3,8,1,10,1,8,1,10,2,8,5,10,1,8,13,10,1,8,9,14,1,8,1,10,1,8,12,10,1,8,5,14,2,8,1,10,1,8,4,14,1,8,1,10,2,8,2,10,1,8,2,10,2,8,10,15,1,8,2,15,1,8,3,15,1,14,2,8,2,15,4,8,7,10,1,8,1,15,1,14,2,8,10,10,2,8,15,14,1,8,16,7,1,8,6,10,1,8,12,15,1,8,15,14,2,7,1,8,3,7,1,14,9,15,1,8,3,10,1,19,15,4,29,}, + {4,13,19,29,10,9,8,3,10,1,8,1,10,1,8,1,15,1,8,1,15,2,8,1,15,1,8,6,15,1,14,2,17,1,14,2,8,9,15,1,8,3,10,1,8,7,10,3,8,5,15,1,14,2,15,1,8,2,15,1,8,4,10,4,8,1,10,1,8,1,10,3,8,7,10,1,8,5,10,1,8,1,10,1,8,2,10,1,8,8,15,1,8,3,14,4,8,3,15,1,8,1,10,1,8,6,15,1,14,1,8,4,14,1,15,1,8,12,15,2,4,2,19,60,4,61,19,31,4,1,8,1,15,2,8,9,10,1,8,6,10,3,8,1,10,5,8,2,10,2,8,1,10,2,8,2,10,4,8,7,10,1,8,2,10,3,8,1,10,1,8,3,10,1,8,5,10,1,8,1,10,1,8,5,10,2,8,1,10,1,8,5,10,7,8,5,14,3,7,1,8,7,10,1,8,9,10,1,8,2,10,2,8,2,10,3,8,9,10,5,8,3,10,1,8,3,10,2,8,1,10,5,8,7,15,1,8,1,10,4,8,4,10,3,8,16,14,1,8,3,15,1,10,2,8,1,10,2,8,4,15,1,8,5,10,1,8,7,10,2,8,13,10,1,8,7,15,1,8,5,14,1,8,2,14,1,8,7,14,1,8,2,10,1,8,7,10,1,8,16,14,3,8,2,17,1,14,1,15,1,8,1,15,1,8,6,10,1,8,2,14,2,8,25,15,1,14,2,8,23,10,1,8,8,15,2,8,2,15,1,14,1,8,1,14,1,8,5,7,1,8,7,14,2,8,3,14,10,15,1,8,3,4,1,19,15,4,29,}, + {4,13,19,30,10,5,8,3,10,1,8,6,15,1,8,4,15,2,8,1,10,2,8,1,15,2,14,5,8,6,10,1,8,5,10,3,8,1,10,3,8,2,10,2,8,3,10,1,8,2,15,1,14,3,15,2,8,1,15,2,8,1,10,9,8,5,10,1,8,6,10,1,8,16,14,2,8,1,14,5,8,2,15,1,8,2,10,3,8,26,10,1,4,1,19,43,4,78,19,30,10,2,8,1,4,1,8,10,10,1,8,4,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,3,10,5,8,1,10,1,8,1,10,1,8,2,10,2,8,3,10,1,8,2,10,1,8,4,10,1,8,12,10,1,8,1,10,1,8,1,10,1,8,3,10,4,8,2,10,2,8,3,14,8,8,12,15,1,8,6,10,2,8,1,10,4,8,9,10,5,8,5,10,3,8,4,10,2,8,12,10,3,8,4,10,2,8,5,10,1,8,12,15,1,8,2,10,4,8,4,10,1,15,1,8,20,15,1,8,28,10,1,8,36,14,6,8,10,15,1,8,12,15,1,8,11,7,1,14,2,8,33,14,1,8,3,14,4,8,4,15,1,14,2,7,1,8,8,7,1,15,1,14,8,15,1,8,3,10,1,4,1,19,10,4,4,19,1,4,29,}, + {4,13,19,31,10,1,8,13,14,1,15,2,8,2,15,1,8,1,15,1,8,2,15,5,8,1,15,1,8,9,10,2,8,2,10,9,8,2,15,1,8,2,10,1,8,3,15,1,14,2,15,1,8,2,15,1,8,1,10,3,8,2,10,5,8,9,10,2,8,22,14,4,8,5,10,2,8,1,15,1,8,23,10,2,19,37,4,1,19,8,4,77,19,29,4,4,8,1,10,1,8,1,10,1,4,1,8,1,10,2,8,7,10,2,8,3,10,4,8,4,10,2,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,5,10,2,8,4,10,1,8,1,10,2,8,8,10,2,8,2,10,2,8,4,10,1,8,1,10,2,8,3,10,2,8,3,10,2,8,3,14,9,8,3,15,1,8,2,14,2,8,3,15,1,8,6,10,5,8,2,10,2,8,6,10,4,8,2,10,1,8,4,10,1,8,7,10,3,8,7,10,1,8,2,10,3,8,1,10,1,8,3,10,1,8,5,10,1,8,2,14,3,15,1,8,9,10,2,8,1,10,1,8,10,15,1,8,32,10,1,8,9,10,1,8,9,10,1,8,16,10,1,8,10,15,1,8,3,14,3,15,1,8,1,15,1,8,14,15,1,8,24,14,1,8,11,14,1,8,10,7,1,8,6,15,1,8,1,14,2,8,2,14,1,8,4,14,3,8,1,7,1,8,10,14,7,15,2,8,2,10,2,19,10,4,4,19,1,4,29,}, + {4,16,19,27,10,3,8,6,10,1,8,2,15,1,8,5,15,1,8,3,15,1,8,1,15,5,8,6,10,1,15,1,8,3,10,11,8,2,10,1,8,1,15,1,14,1,8,1,10,1,8,4,15,1,14,1,8,1,14,1,15,1,8,2,10,4,8,1,10,1,8,1,10,3,8,9,10,1,8,12,14,1,8,24,15,1,4,1,8,1,4,1,8,7,14,1,8,4,14,1,8,1,10,4,19,40,4,81,19,34,4,5,19,1,10,1,19,5,10,1,8,4,10,3,8,1,10,1,8,1,10,4,8,2,10,1,8,2,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,4,10,4,8,5,10,2,8,6,14,1,8,7,10,2,8,1,10,1,8,2,10,5,8,6,10,2,8,2,7,1,14,2,7,3,14,4,8,1,14,1,8,3,14,1,15,1,14,1,15,3,8,9,10,4,8,2,10,2,8,2,10,1,8,4,10,3,8,1,10,1,8,1,10,3,8,1,10,2,8,1,10,3,8,15,10,2,8,3,10,2,8,3,10,2,8,6,14,4,8,7,10,1,8,3,10,3,8,2,14,1,8,7,14,1,15,1,8,4,15,1,8,3,15,1,8,4,15,1,8,2,10,1,8,1,14,3,15,1,8,9,10,1,8,13,10,1,8,14,10,1,8,5,10,2,8,8,15,2,8,4,10,2,8,2,15,2,8,6,15,1,8,16,15,2,8,7,10,2,8,18,14,1,8,3,14,3,8,4,15,1,8,16,14,2,8,2,15,1,8,10,14,8,15,2,8,1,10,1,4,1,19,9,4,35,}, + {4,17,19,27,4,1,15,2,8,8,15,3,8,7,15,2,14,1,15,3,14,1,8,4,15,1,8,2,14,1,15,2,8,1,10,10,8,5,15,1,14,1,15,1,8,2,15,2,14,3,15,3,8,4,10,3,8,1,10,1,8,1,10,2,8,35,14,2,8,9,15,1,4,1,10,5,8,6,14,1,8,5,10,2,19,41,4,82,19,47,10,1,8,5,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,4,10,2,8,4,10,2,8,1,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,16,10,3,8,4,10,1,8,2,10,3,8,10,15,1,8,1,14,1,7,1,14,2,7,1,14,3,8,2,15,4,14,1,15,1,14,2,8,2,14,1,8,7,10,6,8,1,10,1,8,2,10,2,8,4,10,8,8,6,10,4,8,7,10,7,8,2,10,5,8,2,10,1,8,2,10,1,8,4,15,2,8,1,14,1,8,6,10,3,8,2,10,2,8,1,15,1,8,9,15,1,8,16,10,2,8,11,15,1,8,27,10,3,8,23,10,2,8,19,10,1,8,16,10,1,8,19,15,1,8,4,15,1,7,1,8,22,14,3,7,1,8,8,14,9,15,2,8,2,10,1,19,10,4,35,}, + {4,17,19,27,4,1,10,4,8,3,10,5,8,2,10,3,8,2,15,2,14,3,15,3,8,4,15,1,8,2,15,1,8,1,10,11,8,3,15,1,8,2,15,1,14,1,15,4,14,2,15,2,8,1,15,1,8,4,10,11,8,8,10,1,8,24,14,2,8,2,10,1,8,5,15,2,10,4,8,8,14,1,8,4,4,1,10,1,19,41,4,83,19,47,10,2,8,2,15,1,8,4,10,1,8,9,10,1,8,7,10,1,8,4,10,1,8,12,10,1,8,7,10,1,8,1,10,1,8,3,10,4,8,1,10,1,8,1,10,1,8,3,10,1,8,6,15,1,14,3,7,3,14,3,8,17,10,9,8,3,10,3,8,3,10,4,8,3,10,1,8,4,10,1,8,2,10,5,8,4,10,6,8,1,10,9,8,9,15,1,14,1,8,8,10,4,8,2,10,2,8,21,15,1,8,6,10,2,8,7,10,1,8,2,15,1,14,1,8,15,10,2,8,16,10,1,8,1,10,1,8,10,10,2,8,6,10,1,8,3,15,1,8,52,7,1,8,30,14,1,8,9,14,7,15,3,8,2,10,2,19,11,4,34,}, + {4,17,19,28,10,4,8,3,10,11,8,1,15,2,8,1,15,3,8,2,10,1,8,1,10,2,8,1,9,1,10,7,8,1,15,3,8,2,10,2,15,3,8,2,15,2,14,1,15,5,8,2,15,1,8,2,15,1,8,3,10,11,8,3,10,1,8,38,15,2,10,3,8,1,15,2,8,8,15,2,8,1,10,1,19,41,4,84,19,47,10,2,8,11,10,2,8,2,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,16,10,1,8,3,10,1,8,7,10,1,8,1,10,1,8,8,10,2,8,2,10,1,8,10,14,1,8,1,15,1,14,4,8,2,15,1,8,4,10,1,8,2,15,2,8,6,10,2,8,3,10,2,8,8,10,1,8,1,10,2,8,11,10,3,8,2,10,1,8,1,10,2,8,2,10,6,8,1,10,4,8,2,10,2,8,8,10,1,8,1,14,2,15,1,8,6,10,3,8,6,10,3,8,1,10,1,8,16,15,1,14,1,8,14,10,1,8,1,10,1,8,1,15,1,8,8,10,2,8,5,10,3,8,3,10,1,8,3,10,1,14,4,8,1,10,1,8,4,14,1,8,3,14,1,8,1,10,2,8,2,10,3,8,9,15,1,8,7,10,1,8,2,10,1,8,3,15,2,8,63,7,1,8,12,14,8,15,1,8,4,4,1,19,12,4,34,}, + {4,17,19,29,10,3,4,1,10,14,8,4,15,1,8,3,15,1,10,13,8,1,15,1,14,1,15,1,8,1,10,1,8,1,15,3,8,3,15,3,14,1,15,1,8,1,15,4,8,2,15,1,8,4,10,8,8,5,10,1,8,36,14,1,8,1,14,1,8,1,10,2,8,1,15,1,14,2,15,1,8,7,15,1,4,1,10,1,19,41,4,83,19,49,10,2,8,3,10,1,8,3,10,1,8,3,10,3,8,2,10,1,8,7,10,1,8,6,10,1,8,25,10,1,8,4,10,3,8,3,10,1,8,1,10,1,8,9,7,1,8,2,15,2,8,6,15,2,8,1,15,4,8,8,14,1,15,1,8,2,15,2,14,1,15,2,8,3,10,1,8,1,10,1,8,1,10,2,8,2,10,1,8,5,10,3,8,4,10,3,8,1,10,14,8,12,14,2,8,5,10,5,8,1,10,3,8,2,10,5,8,17,15,1,8,16,10,1,8,10,10,1,8,3,10,1,8,1,10,3,8,7,10,1,8,1,14,4,8,8,10,1,14,2,8,1,10,3,8,1,10,3,8,20,10,1,8,3,15,1,8,1,15,1,8,46,15,1,8,10,15,2,14,1,8,1,15,1,14,2,7,2,8,9,14,8,8,4,10,1,19,13,4,34,}, + {4,17,19,30,10,6,19,4,10,2,8,7,15,1,14,1,15,1,8,4,9,1,10,5,19,1,10,5,8,1,10,1,8,2,15,1,8,8,15,1,8,2,15,1,14,1,15,1,8,1,15,4,10,1,8,1,15,1,8,2,10,7,8,1,10,3,8,40,14,1,8,5,10,2,8,1,4,1,15,1,8,4,15,1,8,1,10,2,4,3,19,40,4,84,19,49,10,3,8,5,10,1,8,4,10,2,8,4,10,2,8,7,10,1,8,2,10,5,8,22,10,3,8,8,10,1,8,2,10,2,8,15,10,3,8,2,15,1,8,2,15,3,8,1,10,2,8,2,10,2,8,6,15,3,8,5,10,6,8,1,10,1,8,8,10,3,8,1,10,2,8,4,10,4,8,1,10,8,8,12,14,1,8,6,10,2,8,3,10,1,8,2,10,4,8,6,15,2,8,17,15,1,8,24,10,1,8,5,10,1,8,2,10,1,8,5,10,1,8,2,14,1,8,6,10,2,8,5,10,3,8,7,15,1,8,13,15,1,8,44,7,1,8,3,14,3,8,14,15,1,8,1,15,1,8,2,14,4,8,3,14,14,8,2,15,2,8,1,4,1,19,13,4,34,}, + {4,17,19,30,4,2,10,1,4,1,19,6,4,1,9,1,8,4,15,5,8,3,9,1,10,4,19,4,10,3,8,1,15,3,8,2,15,1,8,7,15,1,14,1,15,2,14,1,15,2,8,4,10,1,8,2,15,2,10,2,8,1,10,5,8,1,10,2,8,3,10,1,8,8,10,1,8,34,10,4,4,1,10,1,8,3,4,1,10,1,19,44,4,83,19,51,10,3,8,4,10,1,8,3,10,3,8,3,10,4,8,1,10,1,8,3,10,1,8,3,10,1,8,1,10,3,8,1,10,2,8,5,10,1,8,13,10,4,8,3,14,1,8,10,10,2,8,6,10,3,8,5,10,3,8,1,10,1,8,2,15,1,8,1,10,3,8,5,15,1,8,2,15,1,8,2,15,1,8,3,15,1,8,4,10,3,8,8,10,1,8,1,10,1,8,1,10,1,8,2,10,2,8,3,10,4,8,3,10,8,8,8,10,1,8,13,10,2,8,2,10,3,8,3,15,1,8,3,15,1,14,1,8,5,15,1,8,6,15,1,8,2,14,1,8,1,14,2,8,11,10,1,8,10,10,3,8,1,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,16,10,6,8,6,15,1,8,12,15,2,8,10,10,1,8,2,15,1,8,1,15,1,8,32,14,2,15,1,8,19,14,4,8,2,7,2,14,12,8,1,14,1,15,1,8,1,15,1,4,1,19,15,4,33,}, + {4,17,19,30,4,3,19,5,10,1,4,1,10,2,9,1,15,4,8,5,10,2,19,3,4,1,10,1,19,4,10,3,8,1,15,1,14,1,15,4,8,3,15,1,8,3,15,3,14,2,15,2,8,1,10,2,8,1,10,1,8,3,15,1,10,1,8,2,10,5,8,1,10,2,8,24,10,2,8,21,10,3,4,1,19,1,10,2,4,1,10,1,19,46,4,83,19,50,10,3,8,4,10,1,8,6,10,2,8,2,10,7,8,3,10,2,8,6,10,4,8,8,10,1,8,1,10,1,8,8,10,4,8,10,10,1,8,2,10,1,8,7,10,2,8,6,10,3,8,1,10,1,8,4,10,3,15,1,8,10,15,2,8,1,15,2,8,5,10,4,8,5,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,3,10,3,8,4,10,8,8,5,15,1,8,1,10,2,8,3,10,1,8,3,10,1,8,2,10,1,8,1,10,3,8,3,10,2,8,8,14,1,15,1,8,1,15,1,8,9,14,1,8,4,14,2,8,2,15,1,8,4,10,1,8,2,10,4,8,8,10,4,8,16,10,2,8,11,10,5,8,5,15,1,8,10,15,1,8,18,10,1,8,1,15,2,8,13,7,1,8,3,7,1,8,3,7,1,14,1,7,1,8,16,10,1,8,5,14,2,15,2,14,3,7,1,14,1,7,1,8,1,14,17,8,2,19,16,4,33,}, + {4,17,19,38,4,4,8,1,15,1,14,1,15,1,8,2,10,2,4,1,10,1,19,10,10,2,8,2,15,6,8,6,14,1,15,1,8,1,15,2,14,2,15,1,8,3,10,2,8,8,10,7,8,2,10,1,8,20,10,2,8,22,10,2,19,53,4,80,19,54,10,3,8,2,10,1,8,2,10,1,8,1,10,1,8,2,10,2,8,2,10,1,8,1,10,2,8,11,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,19,10,5,8,5,10,2,8,1,15,1,8,3,10,1,8,7,10,2,15,1,8,3,10,7,8,3,10,2,8,6,15,1,8,5,15,1,8,1,15,1,8,5,15,2,10,3,8,2,10,1,8,6,10,1,8,3,10,1,8,4,10,5,8,2,10,9,8,3,14,2,8,1,10,1,8,4,10,4,8,2,10,1,8,2,10,4,8,8,14,1,8,7,15,1,14,1,15,1,8,8,15,1,8,6,15,1,14,1,15,1,8,1,15,1,8,4,10,3,8,8,10,2,8,6,10,1,8,7,10,1,8,2,10,1,8,4,10,1,8,1,10,2,8,2,10,1,8,12,14,1,15,1,8,7,15,1,8,1,15,2,8,2,10,1,8,2,15,2,8,30,7,1,8,5,14,3,8,21,15,2,14,7,8,2,14,4,17,1,14,11,15,3,8,1,19,15,4,34,}, + {4,17,19,39,10,1,4,1,10,2,8,4,10,2,19,11,10,7,8,2,15,2,14,2,8,8,15,3,8,2,10,1,8,1,10,1,8,9,10,3,8,1,10,5,8,14,10,2,8,2,10,1,8,13,10,1,8,5,10,1,8,7,10,1,19,54,4,80,19,52,10,3,8,1,10,1,8,6,10,1,8,5,10,2,8,1,10,1,8,18,10,1,8,10,10,1,8,2,10,1,8,5,10,5,8,1,10,2,8,4,10,3,8,1,15,1,8,2,10,1,8,5,10,2,8,4,10,2,8,1,10,5,8,3,10,4,8,4,15,1,8,8,10,1,8,2,10,1,8,5,10,5,8,2,10,1,8,1,10,1,8,1,10,4,8,1,10,1,8,2,10,6,8,4,10,8,8,2,14,3,8,3,10,1,8,2,10,3,8,1,10,1,8,5,10,3,8,26,14,3,8,6,14,2,8,5,10,4,8,12,10,1,8,16,10,1,8,4,10,6,8,1,10,1,8,2,10,3,8,3,14,1,16,1,14,1,8,8,15,3,8,10,10,2,8,4,15,1,14,1,8,40,15,2,8,11,14,10,16,1,17,1,14,11,8,3,4,1,19,16,4,33,}, + {4,17,19,42,10,7,19,7,10,6,8,1,10,2,8,1,15,1,8,2,14,1,15,3,8,3,10,1,8,4,15,1,14,1,8,8,10,3,8,3,10,9,8,11,10,1,8,35,4,1,19,51,4,83,19,51,10,3,8,4,10,5,8,2,10,1,8,12,10,1,8,1,10,1,8,15,10,1,8,10,10,8,8,2,10,2,8,3,10,2,8,3,15,1,8,3,10,3,8,2,10,1,8,1,10,4,8,1,10,7,8,1,10,2,8,1,10,4,8,2,15,1,14,1,8,2,15,1,8,5,10,1,8,2,10,5,8,1,10,4,8,1,10,1,8,13,10,6,8,4,10,7,8,2,15,1,14,2,8,5,14,2,8,1,10,1,8,3,10,2,8,2,10,4,8,8,15,1,8,12,15,1,8,5,14,4,8,4,15,1,8,14,15,1,8,4,15,1,8,22,10,1,8,1,10,2,8,5,10,1,8,2,10,1,8,6,15,2,10,2,8,1,15,2,8,3,15,1,14,1,15,1,8,7,10,5,8,4,15,5,8,35,15,3,8,10,15,1,14,10,17,1,16,1,14,10,15,1,8,3,4,1,19,17,4,33,}, + {4,17,19,43,10,5,19,8,9,1,10,4,8,1,15,1,8,1,10,1,8,1,14,1,15,2,14,1,15,1,14,1,15,1,8,1,15,1,8,3,10,2,8,1,15,2,8,4,10,1,8,4,10,2,8,2,10,3,8,1,10,1,8,1,10,3,8,8,10,1,8,3,10,1,8,33,15,1,8,1,4,1,19,48,4,86,19,50,10,2,8,5,10,1,8,1,14,1,8,3,10,1,8,5,10,2,8,4,10,1,8,1,10,1,8,2,10,1,8,12,15,1,8,2,14,3,10,2,8,6,10,3,8,2,10,1,8,2,10,1,8,1,10,2,8,2,10,1,8,3,15,2,8,4,10,2,8,1,10,6,8,1,10,4,8,7,10,2,8,2,10,2,8,3,15,1,8,7,10,2,8,2,10,2,8,1,10,7,8,5,10,1,8,3,10,1,8,5,10,7,8,4,10,4,8,2,15,2,14,2,15,1,8,1,10,2,8,1,10,1,15,1,8,7,10,2,8,2,10,2,8,3,15,2,8,17,15,1,8,2,15,1,8,3,14,3,8,1,15,1,8,9,10,1,8,3,15,2,8,11,10,1,8,5,14,1,8,12,10,1,8,15,15,2,8,7,15,1,8,2,15,3,8,8,10,4,8,1,10,1,8,2,15,1,8,3,15,2,8,22,14,3,8,8,15,2,8,1,15,1,8,8,15,3,14,6,17,1,14,3,17,3,14,10,8,2,19,20,4,33,}, + {4,17,19,53,10,3,8,8,10,1,8,1,14,1,15,2,14,1,15,3,8,2,15,2,8,1,10,3,8,2,10,2,8,7,10,1,8,1,15,1,8,1,10,8,8,18,10,1,8,13,14,1,8,2,14,1,8,10,15,1,4,1,10,1,4,1,19,46,4,88,19,50,10,1,8,8,14,2,8,2,10,1,8,1,10,1,8,3,10,3,8,2,10,1,8,2,10,2,8,5,10,1,4,1,10,1,8,1,4,2,15,2,14,1,15,1,8,2,15,1,14,1,15,1,8,8,10,2,8,2,10,2,8,1,10,1,8,1,10,3,8,15,10,5,8,1,10,6,8,1,10,3,8,4,10,1,8,3,10,2,8,5,10,2,8,2,10,2,8,1,10,2,8,2,10,7,8,6,10,1,8,10,10,5,8,2,10,5,8,3,15,1,8,4,10,2,8,2,10,1,8,7,10,1,8,1,10,4,8,1,10,1,8,1,10,1,8,18,15,1,8,10,14,1,8,1,15,1,8,5,10,1,8,11,14,2,8,13,14,1,8,8,10,2,8,1,10,1,8,12,15,1,8,12,10,1,8,2,15,1,8,8,10,5,8,1,10,2,8,1,15,1,8,25,14,1,15,2,8,20,15,3,8,2,15,1,14,4,17,1,14,1,16,3,17,1,14,10,8,3,19,21,4,33,}, + {4,17,19,51,4,3,15,2,8,3,15,4,8,3,14,4,15,2,8,4,15,1,8,1,10,3,8,1,10,3,8,7,10,1,8,3,10,6,8,2,10,1,8,6,10,1,8,10,10,1,8,13,14,1,8,1,14,1,8,12,4,2,19,47,4,88,19,48,4,1,8,1,15,2,8,12,10,2,8,3,10,3,8,1,10,2,8,2,10,1,8,4,10,4,19,5,10,7,8,1,15,1,14,2,8,5,10,2,8,1,10,4,8,1,10,1,8,1,10,2,8,9,15,1,8,1,10,1,8,3,10,2,8,1,10,15,8,3,10,1,8,1,10,4,8,5,10,1,8,4,10,4,8,1,10,4,8,2,10,1,8,6,10,1,8,11,10,3,8,2,10,5,8,2,14,1,8,7,10,1,8,2,10,1,8,1,10,5,8,1,10,11,8,11,15,1,8,19,10,1,8,15,15,1,14,2,8,22,10,2,8,24,15,2,8,9,10,6,8,5,10,1,8,3,15,1,8,23,14,1,8,6,10,1,8,5,15,1,8,1,15,1,8,8,15,1,8,4,15,1,14,1,16,1,14,15,15,1,8,2,19,23,4,33,}, + {4,17,19,52,10,3,8,5,15,2,14,1,8,3,14,4,15,1,14,2,15,1,14,1,15,1,8,1,10,9,8,11,10,2,8,1,10,1,8,10,10,1,8,9,10,1,8,14,14,1,15,1,8,10,10,3,19,47,4,90,19,49,10,1,4,1,8,1,10,5,8,12,10,2,8,1,10,3,8,1,10,3,8,3,10,3,19,9,10,6,8,2,10,1,8,4,10,1,8,3,10,2,8,1,10,1,8,1,10,2,8,16,10,1,8,1,10,16,8,3,10,2,8,1,10,4,8,2,10,1,8,1,10,1,8,4,10,8,8,3,10,1,8,2,10,2,8,1,10,1,8,12,10,3,8,3,10,3,8,2,14,4,8,7,10,2,8,1,10,7,8,7,10,2,8,12,15,1,8,17,15,1,8,5,10,1,8,8,10,1,8,3,14,1,15,1,8,22,10,4,8,2,10,2,8,1,10,1,8,4,10,1,8,14,15,1,8,8,10,4,8,4,15,1,8,1,10,1,8,3,15,1,8,29,10,1,8,1,10,2,8,19,7,1,14,1,17,1,14,14,4,1,19,26,4,33,}, + {4,18,19,50,10,4,8,5,15,1,14,2,8,1,15,4,8,3,15,3,14,1,9,1,10,9,8,13,10,1,8,13,10,1,8,7,10,1,8,23,10,1,8,2,10,3,19,47,4,91,19,49,10,2,4,1,8,2,10,5,8,10,10,2,8,1,10,1,8,2,10,2,8,1,10,1,8,3,10,2,19,11,10,1,19,2,10,4,8,1,10,1,8,2,10,3,8,3,10,1,8,2,10,1,8,1,10,1,8,10,10,1,8,8,10,4,8,1,10,11,8,1,10,3,8,2,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,3,10,1,8,1,10,2,8,1,10,3,8,5,10,7,8,8,10,7,8,3,15,1,14,4,8,9,10,1,8,1,10,3,8,2,10,2,8,1,14,1,8,13,14,1,8,26,10,1,8,2,10,3,8,6,10,1,8,16,10,1,8,3,14,2,10,1,8,4,10,2,8,1,10,1,8,2,10,1,8,6,10,1,8,13,10,1,8,4,15,1,8,1,10,2,8,3,10,1,8,2,10,1,8,3,15,1,8,1,10,1,8,1,15,1,8,2,15,1,8,2,10,1,8,20,15,1,8,27,14,15,4,1,19,28,4,33,}, + {4,19,19,49,10,3,8,3,15,2,14,2,15,1,8,1,15,2,14,1,15,1,8,4,10,1,8,1,9,1,4,2,19,3,10,6,8,3,10,1,8,12,10,2,8,26,10,1,8,8,10,2,8,2,15,1,8,1,4,2,19,46,4,96,19,51,10,2,4,1,10,12,8,3,10,2,8,5,10,2,8,4,10,2,19,16,4,1,8,2,10,3,8,3,10,2,8,4,14,1,8,8,10,1,8,6,10,2,8,1,10,1,8,1,10,2,8,2,10,13,8,1,10,2,8,5,10,3,8,3,10,2,8,4,10,1,8,1,10,5,8,4,10,4,8,3,10,2,8,2,10,1,8,4,10,6,8,1,15,1,8,1,14,6,8,4,10,1,8,3,10,1,8,2,10,1,8,3,10,3,8,23,14,1,15,1,8,1,10,1,8,19,10,1,8,1,10,2,8,2,14,1,8,22,14,1,8,1,10,1,8,6,10,1,8,1,10,1,8,2,10,2,8,3,10,1,8,6,10,1,8,6,10,2,8,3,10,1,8,13,15,1,8,3,15,1,8,19,10,2,8,5,15,2,8,2,10,1,8,12,10,1,8,11,15,1,14,6,17,1,14,6,4,1,19,29,4,33,}, + {4,19,19,49,10,2,8,5,14,4,15,4,8,1,10,3,8,1,15,1,4,3,19,3,4,2,10,5,8,7,10,1,8,8,10,2,8,36,15,1,8,1,15,1,14,1,4,2,19,47,4,96,19,52,4,2,19,2,8,1,4,1,10,2,8,1,14,3,8,1,10,1,8,15,4,1,10,1,19,19,8,1,15,1,10,2,8,1,14,2,8,2,10,1,15,1,14,2,8,9,10,1,8,5,10,5,8,1,10,15,8,3,10,7,8,1,10,3,8,10,10,6,8,3,10,5,8,4,10,2,8,1,10,10,8,1,15,1,14,2,17,1,14,2,8,8,10,1,8,1,10,2,8,2,10,1,8,2,10,2,8,24,15,2,8,4,10,4,8,7,10,1,8,6,10,1,8,6,15,1,8,22,10,1,8,9,10,2,8,1,10,1,8,1,10,5,8,1,10,1,8,4,10,1,8,3,15,1,8,2,15,1,8,11,15,2,8,1,15,3,14,2,8,1,15,1,8,3,10,1,8,15,10,2,8,5,15,1,8,20,10,1,8,7,14,6,17,1,14,7,4,1,19,30,4,32,}, + {4,19,19,44,4,2,10,5,8,1,15,1,8,2,15,7,14,1,15,1,10,5,4,2,19,6,10,3,8,9,10,1,8,9,10,1,8,32,14,1,15,1,8,4,10,1,4,1,10,1,4,1,19,47,4,99,19,54,4,1,10,1,4,1,8,7,10,1,8,12,10,1,15,1,10,1,19,20,10,1,15,2,14,2,15,1,8,1,10,2,8,2,14,3,15,1,14,1,8,6,10,1,8,3,15,1,8,2,10,1,8,5,10,13,8,2,15,2,8,1,10,10,8,11,10,5,8,1,15,1,8,1,10,5,8,4,10,1,8,1,10,1,8,1,10,6,8,3,15,1,14,1,17,1,14,3,8,4,10,1,8,1,10,1,8,1,10,9,8,2,10,1,8,8,15,1,8,21,10,3,8,1,10,1,8,2,10,1,8,10,14,1,8,2,10,1,15,1,14,2,8,2,10,3,8,8,15,1,8,4,10,1,8,1,10,4,8,7,10,1,8,3,10,6,8,6,10,1,8,5,15,1,8,11,10,1,8,4,15,1,8,2,15,1,14,1,8,4,10,3,8,6,10,1,8,8,10,1,8,8,10,1,8,21,10,1,8,4,14,13,4,1,19,31,4,32,}, + {4,19,19,43,4,2,10,2,8,9,15,2,8,2,10,5,19,12,10,4,8,23,10,3,8,31,10,1,19,49,4,100,19,55,10,1,8,1,14,2,8,2,10,1,8,16,15,1,4,1,19,21,10,1,8,1,15,1,14,1,8,1,10,3,8,2,14,2,8,9,10,2,8,1,15,3,8,4,14,1,8,3,10,13,8,2,15,1,8,1,10,1,8,1,10,7,8,9,10,2,8,1,10,4,8,2,14,1,8,4,10,1,8,3,10,4,8,3,10,2,8,5,15,1,14,2,17,1,14,1,15,1,8,4,10,1,8,3,10,7,8,5,10,1,8,7,15,1,8,8,10,3,8,1,15,1,14,1,8,12,10,1,8,4,15,1,8,1,10,1,8,6,15,1,8,4,14,1,8,21,10,3,8,7,10,2,8,3,10,3,8,3,15,1,8,5,10,6,8,1,15,1,8,4,15,1,14,1,15,1,8,3,10,1,8,4,15,2,8,1,15,1,14,1,8,1,10,1,8,2,10,2,8,15,10,1,8,9,10,2,8,20,10,1,8,4,14,12,4,1,19,31,4,33,}, + {4,20,19,43,4,1,10,3,8,1,10,2,8,3,10,3,8,1,10,4,19,13,10,4,8,24,10,4,8,27,15,2,8,1,10,2,19,47,4,104,19,54,4,1,14,1,15,1,14,1,8,2,10,2,8,1,10,1,8,12,4,1,10,1,19,21,10,7,8,1,10,2,15,1,8,12,15,1,14,3,15,2,8,2,14,1,15,1,10,1,8,1,10,7,8,1,10,4,8,4,10,10,8,5,15,1,8,3,10,1,8,1,10,4,8,3,14,1,8,7,10,6,8,9,14,2,17,2,14,1,8,8,10,1,8,1,10,7,8,17,10,4,8,1,10,2,8,1,14,1,8,16,10,1,8,1,15,1,14,1,8,12,10,1,8,2,15,1,8,14,10,1,8,2,10,2,8,2,10,1,8,6,10,1,8,3,10,3,8,6,10,2,8,1,10,3,8,10,15,1,14,2,15,1,8,8,15,2,14,2,15,1,10,4,8,1,15,1,8,23,10,3,8,25,14,12,19,32,4,33,}, + {4,22,19,42,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,8,19,12,10,3,8,25,10,1,8,28,4,2,8,1,4,1,15,1,8,1,19,49,4,104,19,55,10,1,8,3,10,2,8,5,10,10,19,24,10,4,8,1,15,1,14,1,8,1,10,1,8,3,15,1,8,6,15,1,14,3,15,1,8,5,10,1,8,1,10,1,8,2,10,5,8,9,10,2,8,1,10,1,8,3,10,6,8,6,10,1,8,3,10,4,8,2,15,1,14,1,8,7,10,7,8,4,10,1,8,3,14,1,17,2,14,2,8,14,10,3,8,5,10,1,8,11,10,3,8,2,10,2,8,14,10,1,8,6,14,1,8,11,15,1,8,21,10,2,8,2,10,2,8,7,15,1,10,4,8,6,10,2,8,2,10,2,8,14,15,1,8,8,15,1,14,1,15,1,8,1,10,3,8,1,15,1,14,1,8,24,10,2,8,2,15,3,8,14,10,1,8,1,10,1,8,2,15,1,14,6,17,1,16,1,14,3,8,1,19,32,4,33,}, + {4,23,19,40,10,2,8,5,10,9,19,12,10,2,8,4,10,1,8,1,10,2,8,46,10,4,4,1,10,1,4,3,19,48,4,106,19,54,10,2,8,6,10,11,19,25,10,4,8,1,14,5,8,11,14,1,15,1,14,1,8,1,10,4,8,2,10,9,8,2,10,3,8,5,10,1,8,4,10,2,8,2,10,1,8,1,10,3,8,2,10,3,8,3,10,4,8,11,10,12,8,1,15,1,8,1,14,1,17,2,14,2,8,5,10,1,8,9,10,2,8,3,10,1,8,1,10,1,8,10,10,3,8,3,10,1,8,3,10,2,8,18,10,1,8,9,15,1,8,3,15,2,8,17,10,1,8,10,15,2,8,2,10,3,8,3,10,1,8,2,10,1,8,3,10,5,8,5,10,1,8,3,10,1,8,9,15,2,14,1,8,9,10,2,8,6,10,1,8,11,10,1,8,7,15,2,8,14,10,2,8,1,10,1,8,2,14,9,8,1,19,34,4,33,}, + {4,23,19,36,10,2,19,2,4,1,10,1,8,1,15,1,8,2,15,1,10,2,19,1,10,3,4,2,10,1,19,9,10,4,8,2,10,2,8,3,10,3,8,4,10,1,8,1,10,1,8,16,10,2,8,20,10,2,19,6,4,2,19,48,4,105,19,55,10,3,8,3,10,1,8,1,10,5,19,30,10,3,8,4,14,1,15,1,8,5,10,1,8,3,10,2,8,3,14,2,8,3,15,1,14,2,8,2,10,1,8,1,10,1,8,2,10,2,8,1,15,1,10,3,8,1,15,1,8,3,10,2,8,5,10,2,8,8,10,1,8,1,10,3,8,1,10,3,8,11,10,2,8,4,10,1,8,4,10,1,8,1,14,3,17,1,14,1,8,5,10,1,8,1,10,4,8,5,10,1,8,17,10,4,8,10,10,1,8,16,10,1,8,12,15,4,8,9,15,2,8,4,10,2,8,5,10,1,8,4,15,1,8,1,10,1,8,3,10,6,8,6,10,1,8,1,10,3,8,2,10,2,8,3,15,1,8,1,10,1,8,3,15,3,8,1,15,3,14,1,15,3,8,1,10,1,8,5,10,2,8,5,10,1,8,8,15,1,8,3,10,1,8,2,15,1,8,16,15,1,14,1,15,1,8,5,14,9,8,1,19,35,4,33,}, + {4,25,19,32,10,1,19,1,4,1,10,3,4,1,15,1,8,1,15,1,8,1,10,4,19,2,4,1,19,11,10,3,8,4,10,4,8,1,10,2,8,6,10,2,8,28,14,1,8,1,14,1,8,6,15,1,4,1,10,1,19,50,4,115,19,53,10,5,4,3,10,2,19,33,10,2,8,5,10,4,8,1,10,1,8,4,10,2,8,3,15,1,14,1,8,1,10,1,8,1,14,4,8,1,10,1,8,3,10,3,8,3,10,2,8,5,10,2,8,2,15,1,8,2,10,2,8,2,10,3,8,1,10,3,8,1,10,1,8,2,10,1,8,4,10,1,8,2,15,1,8,19,14,2,17,1,14,2,8,5,10,1,8,2,10,2,8,2,10,1,8,3,10,2,8,15,10,3,8,1,10,1,8,2,10,1,8,4,14,2,8,19,10,1,8,12,15,1,14,1,15,1,8,8,15,3,8,6,10,2,8,3,10,3,8,1,15,1,8,1,10,2,15,1,8,5,10,3,8,5,10,1,8,1,10,1,8,1,10,2,8,4,10,1,8,1,15,3,8,2,15,1,8,3,15,2,14,1,15,1,14,2,15,2,14,1,10,1,8,7,10,2,8,5,10,1,8,10,10,1,8,4,15,2,8,3,15,1,8,1,15,1,8,2,15,1,8,3,15,1,8,2,15,1,14,5,8,2,14,7,15,1,19,36,4,33,}, + {4,25,19,31,10,1,4,3,10,1,4,3,10,1,9,1,15,1,10,2,19,16,10,1,4,1,15,1,8,1,10,7,8,16,10,1,8,4,10,1,8,20,15,1,8,6,4,1,8,1,10,1,19,50,4,115,19,56,10,2,4,2,19,36,10,1,8,1,14,1,8,1,10,3,8,3,10,4,8,2,10,3,4,1,8,1,10,8,14,1,16,1,14,1,10,7,8,4,10,3,8,3,10,1,8,6,10,2,8,4,10,1,8,2,10,2,8,4,10,2,8,1,14,1,8,1,10,2,8,13,10,3,8,4,15,1,17,3,7,1,8,7,10,4,8,3,10,1,8,3,10,2,8,2,10,2,8,8,10,1,8,1,10,1,8,1,10,1,8,2,10,1,8,2,10,1,8,4,14,3,8,2,15,1,8,12,10,1,8,4,15,1,8,10,15,2,8,12,10,2,8,5,10,2,8,3,10,1,8,3,10,2,8,6,10,6,8,1,10,2,8,9,15,2,14,1,15,1,8,11,15,1,14,1,8,2,15,1,8,2,15,1,8,1,15,1,8,3,15,1,14,2,8,1,14,2,8,4,10,2,8,1,15,2,8,1,10,1,8,3,15,2,14,3,15,1,8,12,15,2,8,2,14,2,15,1,8,2,15,1,14,7,8,1,19,36,4,33,}, + {4,27,19,27,4,2,19,1,10,1,19,4,4,1,19,2,10,2,19,14,10,4,9,1,15,2,10,7,8,4,10,1,8,15,4,1,8,1,10,1,8,10,14,1,8,1,14,1,8,5,10,6,8,1,15,1,4,3,19,51,4,115,19,96,10,1,15,1,8,4,10,1,8,1,10,5,8,2,10,4,8,1,10,2,19,5,10,2,8,1,15,2,8,1,10,7,8,3,10,2,8,11,10,2,8,8,14,1,15,1,8,2,10,1,8,8,14,2,15,1,8,4,10,1,8,1,15,1,8,1,10,1,8,2,14,3,8,1,7,1,14,1,17,1,14,1,15,1,8,3,10,1,8,9,10,3,8,1,10,1,8,4,15,1,8,2,10,1,8,8,10,1,8,4,10,5,8,2,10,1,8,3,14,1,8,2,15,1,8,7,10,1,8,4,10,1,8,4,14,1,8,3,10,1,8,21,10,3,8,4,10,1,8,8,15,1,8,10,10,1,8,5,10,5,8,2,15,1,8,1,14,5,8,1,10,2,8,3,15,6,8,4,15,7,14,1,15,1,8,1,15,1,8,2,10,1,8,1,10,1,8,2,10,1,8,2,10,2,8,1,15,1,14,7,8,1,15,2,8,4,15,1,8,4,15,2,8,2,14,1,15,1,8,3,14,6,15,1,8,1,19,36,4,34,}, + {4,27,19,27,4,1,19,26,10,3,8,1,15,1,4,1,10,6,8,7,10,1,8,7,10,1,8,24,15,2,10,7,4,1,8,2,4,2,19,52,4,114,19,96,10,1,15,1,8,1,10,1,8,3,10,5,8,3,10,2,8,1,10,3,19,8,10,3,8,2,10,7,8,6,10,1,8,15,10,1,8,1,14,2,15,1,8,1,10,3,8,1,10,2,8,4,14,4,15,1,14,4,8,6,14,7,8,6,10,1,8,7,10,4,8,4,10,2,8,12,10,1,8,1,10,1,8,2,10,4,8,4,14,1,15,2,14,2,15,1,8,1,10,1,8,7,14,1,15,1,8,4,15,1,8,4,10,1,8,28,10,2,8,13,10,2,8,1,15,1,8,2,10,2,8,3,10,1,8,1,10,1,8,3,15,4,8,3,15,1,14,1,15,2,8,3,15,1,14,1,15,1,8,2,10,1,15,1,14,1,15,1,8,3,14,1,15,5,14,1,15,2,8,13,15,1,14,4,15,4,8,1,15,1,8,5,15,2,8,4,15,3,14,1,8,3,14,3,8,1,14,3,15,1,19,36,4,35,}, + {4,28,19,52,10,1,8,2,15,1,10,1,4,1,10,1,19,2,10,5,8,4,10,1,8,12,10,1,8,2,10,1,8,1,10,2,8,6,15,1,8,7,15,2,4,2,10,1,19,5,4,5,19,42,4,4,19,4,4,116,19,97,10,1,8,3,10,4,8,2,10,2,8,1,10,3,4,2,10,1,19,10,10,1,4,1,8,2,10,1,8,1,10,5,8,3,10,1,8,17,10,1,8,6,10,4,8,5,15,1,14,3,15,2,14,4,8,4,7,2,14,2,17,2,14,2,8,6,10,1,8,9,10,2,8,1,10,1,8,1,10,3,8,1,10,1,8,15,10,3,8,1,10,2,8,2,14,7,8,1,10,1,8,8,14,1,8,13,15,1,14,1,8,1,15,1,8,12,10,1,8,4,10,1,8,3,10,3,8,11,10,9,8,1,10,3,8,3,15,1,14,1,15,1,8,2,15,1,8,1,15,4,14,2,8,4,15,1,8,2,15,1,8,1,15,3,8,3,15,1,14,1,15,6,14,1,15,2,8,5,10,1,8,9,15,1,8,1,10,1,8,1,15,1,8,5,15,2,14,2,15,1,8,2,15,7,14,3,15,2,8,1,15,1,19,38,4,35,}, + {4,30,19,49,4,2,10,2,4,1,10,1,19,4,10,2,8,3,10,1,8,2,10,3,8,21,4,4,8,1,10,1,4,1,10,1,8,2,4,1,15,1,14,1,4,1,19,54,4,4,19,4,4,116,19,97,10,2,8,6,10,7,19,16,4,1,8,1,10,7,8,13,10,1,8,9,10,7,8,2,10,1,8,3,15,2,14,3,8,4,10,1,8,4,14,1,17,3,14,6,8,18,10,1,8,2,10,1,8,3,10,3,8,2,10,1,8,6,10,1,8,7,10,1,8,2,15,1,14,1,15,1,14,3,15,1,8,2,10,1,8,1,10,1,8,9,15,1,8,10,15,1,8,1,14,1,8,1,15,1,8,7,15,1,8,6,10,2,8,16,10,6,8,1,10,1,8,9,15,1,14,1,15,2,8,1,15,1,8,1,14,3,15,3,8,3,15,5,14,1,15,1,14,2,8,2,15,1,14,2,15,3,14,2,15,2,8,1,15,1,8,2,15,2,8,7,10,1,8,3,15,1,8,8,15,1,14,1,15,1,14,2,15,1,8,1,15,1,8,5,14,1,15,1,14,5,4,1,19,39,4,35,}, + {4,31,19,49,4,3,19,5,10,2,8,1,10,1,8,4,10,3,8,2,10,4,8,16,10,3,4,1,19,4,10,3,4,3,19,54,4,4,19,2,4,120,19,96,10,3,8,3,10,1,4,1,10,3,19,18,10,2,8,1,10,1,8,1,10,4,8,4,14,2,8,8,10,1,8,7,10,6,8,3,10,1,8,3,15,2,8,3,15,1,14,1,8,6,14,4,17,1,14,3,17,1,14,6,8,12,15,1,8,3,10,1,8,3,10,2,8,7,10,1,8,2,10,1,8,12,15,1,14,1,8,2,14,1,15,1,8,4,10,1,8,10,15,1,8,1,15,1,8,5,10,1,8,7,15,2,8,12,10,1,8,6,10,1,8,1,10,1,8,2,10,2,8,2,15,1,8,2,10,5,8,1,10,3,8,1,10,1,8,1,15,1,8,3,15,1,14,3,15,1,14,1,15,2,14,2,15,3,8,3,15,1,14,2,15,1,8,1,15,3,14,1,16,1,8,2,15,3,14,1,15,2,14,3,15,2,8,9,15,1,8,1,10,1,8,5,15,2,8,6,15,3,14,2,15,2,8,2,15,1,8,3,15,1,8,4,14,1,15,1,19,40,4,35,}, + {4,32,19,55,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,5,10,5,8,14,4,1,8,1,19,9,4,4,19,51,4,2,19,2,4,4,19,2,4,120,19,98,10,5,19,23,10,1,4,1,10,2,8,1,10,1,8,7,14,1,8,7,10,2,8,4,10,2,8,3,10,2,8,2,10,1,8,11,14,3,7,2,14,6,17,1,14,1,17,1,14,2,17,1,14,3,17,1,14,1,8,2,14,2,15,1,8,7,14,1,8,10,10,2,8,1,10,1,8,4,10,1,8,1,10,1,8,5,10,1,8,1,10,1,8,1,14,1,8,9,10,3,8,9,15,1,8,3,15,2,8,12,15,1,8,10,10,5,8,2,10,2,8,1,10,1,8,6,10,1,8,1,15,1,8,9,10,2,8,8,15,4,14,1,15,2,14,4,15,1,8,1,15,3,14,2,15,5,14,1,16,1,15,2,14,1,15,1,14,3,15,2,14,1,15,1,8,15,15,1,8,2,15,3,8,2,15,4,8,2,15,2,14,2,15,1,8,1,14,2,8,7,15,1,8,1,19,41,4,35,}, + {4,33,19,52,10,4,8,7,10,2,4,3,10,3,8,14,4,3,19,61,4,138,19,121,4,2,10,2,8,9,14,1,8,1,10,2,8,4,10,2,8,1,14,1,8,5,10,1,8,1,10,1,8,6,15,1,8,2,15,1,8,3,15,1,14,15,17,2,14,4,8,3,14,3,8,6,14,1,8,11,10,4,8,5,10,1,8,6,10,4,8,3,10,1,8,6,10,3,8,9,14,1,8,2,15,2,8,22,10,2,8,1,10,4,8,12,10,1,8,8,14,2,8,3,10,1,8,4,15,1,10,1,15,8,14,5,15,1,14,1,15,2,14,5,15,1,14,3,16,1,15,1,14,2,15,1,14,5,15,2,14,1,8,18,14,2,15,1,8,1,15,2,8,5,15,1,8,1,15,1,8,1,14,4,8,5,19,42,4,37,}, + {4,33,19,49,10,4,8,1,10,1,8,1,10,2,8,5,10,1,4,2,19,2,10,3,8,13,10,2,19,62,4,140,19,121,10,3,8,3,10,3,8,2,14,3,8,3,14,1,8,2,10,2,8,4,10,1,8,1,10,2,8,3,15,1,14,2,8,2,15,3,8,3,14,11,17,1,14,2,17,1,14,2,17,1,16,1,17,1,16,1,17,1,14,1,8,3,15,1,14,3,8,7,10,1,8,10,10,1,8,1,10,5,8,6,10,1,8,2,10,1,8,2,10,1,8,3,10,3,8,2,10,1,8,4,10,1,8,7,14,1,8,1,15,1,8,1,15,1,8,6,15,1,8,12,10,1,8,4,10,5,8,3,10,2,8,4,10,3,8,2,15,1,8,1,14,1,8,1,10,1,8,1,14,1,16,2,15,1,8,9,15,2,8,1,15,1,14,2,15,2,8,1,15,1,14,6,15,2,14,8,16,1,14,4,16,2,14,1,16,1,17,1,14,4,8,6,15,1,14,1,8,9,15,1,14,7,8,3,10,1,8,5,15,2,8,2,19,45,4,37,}, + {4,33,19,48,10,2,8,2,10,6,8,2,10,4,19,4,10,4,8,5,10,1,8,4,4,2,10,1,19,63,4,141,19,121,10,2,8,4,10,1,8,3,14,3,8,20,14,1,15,1,8,1,15,5,14,6,17,1,14,4,17,1,14,1,17,1,14,2,17,1,14,2,17,1,16,4,8,5,14,3,8,1,10,1,8,16,10,1,8,13,14,3,8,1,10,3,8,2,10,2,8,8,10,1,8,10,14,1,15,1,8,6,15,1,8,16,10,1,8,1,10,2,8,1,10,1,8,3,10,3,8,4,10,1,8,8,15,3,14,1,15,4,8,4,15,1,14,7,15,2,8,2,15,1,14,1,15,1,14,2,15,3,14,15,15,2,14,3,8,1,15,1,8,8,15,1,14,1,15,1,8,2,14,2,16,2,17,1,14,3,8,12,4,1,19,49,4,37,}, + {4,33,19,48,10,2,15,1,8,1,10,9,19,2,10,1,19,4,10,3,4,1,10,1,8,1,15,2,8,1,10,1,4,1,8,1,4,1,8,2,10,1,19,63,4,144,19,119,10,3,8,2,10,1,8,5,14,2,15,1,8,22,14,1,15,1,14,12,17,1,14,8,17,1,14,1,17,1,16,1,17,1,14,1,8,5,14,2,15,1,8,17,10,3,8,2,10,1,8,9,14,2,15,1,10,4,8,5,14,2,8,11,15,1,8,4,15,1,14,1,8,19,10,2,8,22,15,1,8,2,10,1,8,5,15,1,8,4,15,2,8,1,15,1,14,5,15,1,8,2,15,3,14,2,15,1,14,2,15,1,14,7,15,3,14,1,16,1,14,2,15,1,14,2,15,2,14,3,15,1,8,5,15,2,8,6,15,1,14,3,16,1,14,6,15,4,8,6,19,50,4,37,}, + {4,33,19,46,4,2,8,1,10,4,19,1,10,1,19,1,10,1,19,9,4,1,19,2,10,1,4,1,10,1,8,1,4,1,15,1,4,1,8,1,4,1,10,1,19,1,4,3,19,63,4,150,19,115,10,2,8,5,10,2,8,21,14,1,8,2,14,20,17,2,14,8,8,5,15,3,8,3,15,1,8,1,15,1,8,4,10,2,8,6,10,3,8,2,10,1,8,2,10,2,8,4,10,2,8,2,10,1,8,21,15,1,8,26,10,1,8,1,10,1,8,13,15,1,8,4,10,1,8,9,15,1,8,2,10,1,8,1,15,1,14,1,15,2,14,6,15,3,14,1,8,2,15,2,14,18,15,2,14,1,15,1,8,1,14,4,8,1,14,3,15,1,14,1,15,1,8,1,15,3,8,1,15,1,14,9,15,1,14,6,15,1,8,4,19,51,4,36,}, + {4,33,19,45,4,2,15,2,8,1,10,3,19,16,4,7,19,69,4,151,19,115,10,2,4,1,15,2,8,4,10,1,8,11,10,1,8,1,10,1,8,6,14,1,8,1,14,1,16,1,14,12,17,1,14,1,17,3,14,2,17,2,14,1,8,5,15,2,8,2,10,1,8,1,10,1,15,6,8,7,10,4,8,4,10,3,8,6,10,1,8,2,10,1,8,2,10,1,8,3,10,1,8,8,10,1,8,10,15,1,8,24,10,1,8,3,10,2,8,3,10,1,8,5,10,2,8,7,10,1,8,4,15,1,14,1,15,1,8,1,15,1,8,3,10,2,15,1,14,3,16,1,14,3,15,1,8,1,15,2,14,1,15,2,8,1,15,1,8,1,15,1,14,8,15,1,14,5,8,1,15,3,8,5,14,5,16,3,14,6,15,1,14,3,8,4,10,2,8,4,7,1,14,5,8,3,19,51,4,36,}, + {4,33,19,2,4,2,19,42,4,2,15,1,8,2,4,1,19,17,4,2,19,73,4,152,19,117,10,5,8,1,10,1,8,1,10,1,8,3,10,2,8,4,10,2,8,1,10,1,8,8,14,14,17,1,14,1,17,1,14,1,17,1,14,2,17,1,14,1,8,5,10,1,8,5,10,1,8,2,15,1,14,4,15,1,8,2,10,1,8,11,10,6,8,1,15,1,8,2,15,1,8,3,10,2,8,1,10,1,8,4,10,2,8,15,15,1,8,10,14,2,8,7,10,1,8,1,15,1,8,1,10,7,8,5,15,2,8,2,10,2,8,3,10,1,8,5,15,1,8,3,10,2,8,5,10,2,8,2,15,1,14,1,16,3,14,6,15,1,8,1,15,1,14,1,15,1,8,2,15,1,14,5,15,2,14,1,15,2,8,1,15,1,10,1,15,1,8,3,15,3,8,1,15,2,14,9,17,1,14,1,8,3,14,2,15,1,8,8,7,1,8,4,15,1,14,2,15,2,8,1,19,50,4,36,}, + {4,33,19,2,4,3,19,41,4,2,10,1,4,2,19,18,4,2,19,73,4,162,19,109,10,4,8,1,10,3,8,2,10,1,8,1,10,1,8,2,10,1,8,4,10,1,8,1,10,1,8,3,10,1,8,1,14,1,15,2,14,9,17,2,14,1,17,1,14,6,8,1,10,2,8,1,10,3,8,1,10,1,8,1,10,3,15,2,14,2,15,1,8,1,15,2,8,9,10,1,8,8,10,2,8,1,14,1,8,2,15,1,8,7,10,1,8,33,15,1,8,6,10,2,8,2,10,3,8,2,10,2,8,1,10,2,8,6,10,1,8,1,15,1,8,8,15,1,8,4,10,2,8,2,10,1,8,3,10,3,8,1,14,4,15,4,14,1,15,1,8,7,14,1,15,4,14,1,15,1,8,3,15,2,8,1,15,2,8,2,15,5,14,6,15,2,14,4,15,1,14,2,15,2,8,1,15,1,8,8,7,2,8,1,14,4,8,4,19,50,4,35,}, + {4,37,19,140,4,194,19,78,10,5,8,5,10,2,8,1,10,2,8,1,10,1,8,1,10,2,8,1,10,1,8,3,10,1,8,4,14,10,17,1,14,1,17,1,14,5,15,1,8,4,10,2,8,1,10,5,15,1,14,5,15,1,8,1,15,2,8,9,10,3,8,2,10,2,8,9,10,2,8,22,14,1,8,1,10,1,8,11,10,1,8,2,15,1,8,4,15,1,10,2,8,2,10,1,8,2,10,1,8,15,15,1,8,2,10,1,8,10,10,2,8,1,10,2,8,1,10,2,8,1,10,2,8,1,14,1,15,1,8,5,14,1,8,8,15,3,8,2,15,1,8,3,15,1,8,2,15,2,8,1,15,6,8,1,15,2,14,1,15,1,14,2,15,1,14,7,15,2,8,1,15,2,8,9,14,3,16,1,14,2,8,8,19,46,4,35,}, + {4,37,19,140,4,195,19,77,10,8,8,2,10,6,8,2,10,2,8,5,10,1,8,3,15,1,14,9,17,1,14,1,17,1,14,6,8,13,15,1,14,1,15,1,8,1,15,2,8,1,15,2,8,4,10,3,8,2,10,3,8,3,10,1,8,1,10,1,8,8,10,2,8,23,10,5,8,8,10,3,8,6,10,2,8,5,10,1,8,4,15,1,8,4,14,2,8,1,10,1,8,2,15,1,8,1,10,1,8,2,10,2,8,6,10,5,8,6,10,1,8,3,15,3,8,1,15,1,8,1,15,1,8,4,10,1,8,1,15,1,14,1,15,1,8,5,15,1,8,2,15,1,8,1,15,1,8,4,15,2,8,6,15,1,14,1,15,5,8,1,15,3,8,4,15,1,8,6,15,1,8,3,15,1,14,1,17,1,14,4,8,7,19,27,4,1,19,18,4,34,}, + {4,39,19,130,4,205,19,76,10,7,8,3,10,1,8,3,10,1,8,1,10,2,8,10,7,1,14,9,17,1,14,4,17,1,14,2,8,1,15,1,8,7,10,2,8,2,10,1,8,1,15,5,8,6,10,3,8,2,10,2,8,4,10,1,8,8,10,6,8,24,10,1,8,1,10,3,8,7,10,2,8,7,10,4,8,1,10,2,8,2,10,3,8,3,15,1,14,2,10,1,8,13,10,2,8,2,10,8,8,2,10,1,8,1,15,1,14,2,8,3,15,1,8,5,10,2,8,1,15,3,8,1,15,1,8,5,15,1,8,1,15,1,8,3,15,1,8,14,15,3,8,1,15,2,8,2,15,1,8,5,14,2,8,2,15,1,8,4,15,2,14,2,15,1,8,1,15,1,8,1,15,1,8,6,19,44,4,33,}, + {4,39,19,128,4,210,19,75,10,6,8,3,14,2,8,1,10,6,8,1,14,4,8,4,14,17,8,1,15,1,8,13,15,2,14,1,15,4,8,10,10,1,8,3,10,2,8,9,10,6,8,17,10,3,8,6,10,1,8,18,10,4,8,6,10,2,8,1,15,1,8,1,15,1,14,1,8,3,10,3,8,4,15,2,8,2,10,11,8,4,10,2,8,1,15,1,8,6,15,1,8,2,10,1,8,1,15,3,14,1,15,4,8,10,10,1,8,1,15,1,8,2,14,1,15,1,8,6,15,3,8,2,15,1,8,1,10,1,8,7,15,1,14,1,8,9,14,2,8,2,15,2,8,1,15,1,8,7,19,42,4,33,}, + {4,41,19,125,4,212,19,51,4,3,19,21,10,5,8,13,14,4,15,1,8,1,7,1,14,12,17,2,14,3,8,5,14,1,15,1,8,3,10,2,8,6,15,1,8,3,15,1,8,4,10,1,8,5,10,1,8,2,10,4,8,5,10,1,8,1,10,7,8,12,10,3,8,1,10,5,8,11,10,1,8,7,15,2,8,1,15,3,8,2,10,2,8,6,10,1,8,1,15,1,8,1,10,1,8,2,10,1,8,2,10,1,8,5,14,2,8,2,10,13,8,1,10,3,8,9,15,1,8,3,15,1,8,1,14,2,15,1,14,1,15,1,14,1,15,1,8,9,10,1,8,1,15,1,8,2,15,1,14,1,8,5,15,2,8,6,10,1,8,4,15,1,14,2,15,1,8,3,10,1,8,5,15,1,14,2,8,5,15,2,8,1,15,1,14,2,8,4,19,15,10,8,19,17,4,33,}, + {4,41,19,125,4,213,19,50,4,2,19,23,4,1,10,3,8,1,10,2,8,5,15,3,8,2,14,4,15,1,14,18,8,3,15,1,8,4,10,3,8,25,10,5,8,8,10,2,8,2,10,2,8,2,14,1,8,1,15,1,8,3,15,1,8,3,10,10,8,4,10,1,8,13,15,2,8,2,14,2,15,2,8,3,10,8,8,4,10,1,8,7,10,1,8,1,10,2,8,1,10,16,15,1,8,10,15,3,8,2,15,3,14,4,8,1,15,1,8,4,15,1,8,8,15,1,8,3,15,1,8,11,15,3,14,4,15,1,8,16,14,1,15,1,8,2,14,4,15,1,8,2,19,3,4,1,10,1,4,1,10,1,19,6,10,11,4,1,19,14,4,33,}, + {4,42,19,120,4,216,19,49,4,4,19,26,10,6,8,3,14,3,8,2,15,1,14,1,15,1,14,14,17,2,14,1,8,10,10,4,14,1,15,1,8,5,10,1,8,15,10,5,8,1,10,1,8,15,14,2,8,10,10,1,8,3,10,9,8,3,10,2,8,1,10,1,8,1,10,2,8,10,10,1,8,4,10,1,8,1,10,5,8,2,15,1,8,2,10,1,8,3,10,19,8,6,10,2,8,5,10,1,8,3,15,2,14,1,15,1,14,1,8,1,15,1,14,4,15,1,8,3,10,2,8,11,15,1,8,9,10,1,8,2,10,1,8,2,15,1,14,1,15,4,8,3,15,1,8,7,15,1,14,2,8,8,15,1,14,1,15,1,8,3,19,8,10,1,8,1,10,1,8,8,15,1,8,2,15,1,8,1,10,2,19,13,4,33,}, + {4,43,19,118,4,216,19,48,4,7,19,3,4,2,19,21,10,6,8,2,15,1,8,4,15,2,14,16,17,1,14,1,8,3,14,1,15,1,8,3,15,1,8,1,10,4,14,1,8,4,10,1,8,8,10,2,8,7,10,4,8,5,10,1,8,12,14,1,8,11,10,3,8,2,10,5,8,1,10,2,8,3,10,1,8,4,10,1,8,4,10,2,8,1,10,1,8,3,10,3,8,1,14,2,8,2,10,1,8,1,10,1,8,6,15,1,8,3,15,1,8,1,10,19,8,9,15,1,8,4,15,1,8,2,15,2,8,3,15,1,14,2,15,1,8,2,10,1,8,1,10,3,8,2,15,1,8,3,15,1,8,3,15,1,8,13,10,1,8,2,15,1,8,1,15,3,8,2,15,2,8,1,15,1,8,4,15,1,14,2,15,1,8,9,15,2,8,1,10,4,8,3,15,3,8,1,10,1,8,1,10,1,8,3,15,1,8,2,15,1,8,1,15,1,8,1,14,1,15,2,10,1,19,13,4,33,}, + {4,49,19,104,4,1,19,1,4,1,19,1,4,1,19,1,4,218,19,46,4,14,19,23,10,1,4,1,10,1,4,1,10,1,8,1,10,1,8,3,15,1,14,1,15,2,14,16,8,3,14,2,8,12,10,1,8,2,10,1,8,3,10,1,8,1,10,2,8,2,10,1,8,1,10,1,8,4,10,6,8,14,10,2,8,12,10,1,8,6,10,2,8,17,10,6,8,1,10,1,8,1,10,2,8,1,15,2,8,1,10,1,8,8,10,1,8,2,10,1,8,1,15,1,8,1,10,19,8,5,10,2,8,2,10,2,8,2,15,1,8,8,10,1,8,1,14,2,10,2,8,1,10,1,8,2,10,2,8,17,10,1,8,4,10,2,15,1,8,2,14,1,15,1,8,3,15,1,8,8,15,1,14,1,8,2,10,1,8,8,15,1,8,2,10,1,8,6,15,1,14,2,8,5,15,2,14,2,8,5,14,1,8,1,15,1,4,1,19,14,4,32,}, + {4,49,19,104,4,224,19,45,4,12,19,1,4,1,19,24,10,3,4,2,10,1,8,1,4,1,8,3,15,3,14,15,8,5,14,1,15,1,8,8,14,1,8,6,10,2,8,5,10,1,8,13,10,3,8,2,10,1,8,5,10,2,8,7,10,2,8,3,10,2,8,1,10,1,8,16,10,1,8,6,10,1,8,1,10,3,8,5,10,1,8,6,10,3,8,6,10,6,8,2,10,13,8,4,10,3,8,3,10,3,8,1,10,4,8,7,10,1,8,4,14,1,15,1,8,3,10,2,8,4,10,1,8,4,10,3,8,6,10,1,8,4,10,3,8,3,15,3,8,4,10,1,8,1,15,1,8,3,10,1,8,1,14,2,15,1,8,7,14,1,15,1,8,4,10,1,8,1,15,2,8,2,10,1,8,1,15,3,8,3,15,1,14,4,8,3,15,2,14,1,15,1,8,1,10,1,19,14,4,32,}, + {4,57,19,88,4,228,19,50,4,1,19,1,4,8,19,28,10,2,4,3,10,1,8,4,15,2,14,11,17,1,14,4,8,1,14,3,8,1,15,1,8,9,10,2,8,4,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,8,10,6,8,1,15,1,8,5,10,1,8,2,10,1,8,4,10,2,8,3,10,1,8,28,10,1,8,1,10,3,8,5,10,1,8,3,10,1,8,1,10,4,8,5,10,7,8,2,10,4,8,2,10,6,8,1,10,2,8,2,10,3,8,3,10,3,8,1,10,4,8,2,15,1,8,1,15,1,8,9,10,3,8,6,10,1,8,3,10,3,8,3,10,2,8,1,10,2,8,3,10,1,8,3,14,1,15,1,8,6,15,1,8,9,14,2,15,1,8,10,15,4,8,6,10,1,8,10,14,1,7,1,14,1,15,1,14,1,15,3,8,1,4,1,19,14,4,32,}, + {4,60,19,84,4,228,19,55,4,5,19,29,10,3,4,2,10,1,4,1,8,3,15,2,14,19,15,1,8,2,10,1,8,2,10,1,8,2,10,8,8,1,10,3,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,8,10,1,8,6,14,2,8,2,10,2,8,1,10,1,8,2,10,1,8,2,10,3,8,31,10,4,8,7,10,2,8,1,10,2,8,3,10,1,8,10,10,4,8,1,10,4,8,2,10,7,8,1,10,2,8,1,10,3,8,3,10,3,8,1,10,6,8,5,10,1,8,3,10,6,8,16,10,3,8,1,10,2,8,1,10,2,8,5,15,1,8,5,15,1,8,8,15,1,14,1,15,1,8,3,15,1,8,7,15,1,8,1,15,1,8,3,10,6,8,4,10,1,8,6,14,4,15,2,8,1,10,1,19,14,4,32,}, + {4,62,19,80,4,229,19,89,10,3,4,1,10,1,4,1,8,4,15,2,14,12,17,1,14,4,8,4,10,1,8,6,10,9,8,1,10,2,8,2,10,1,8,8,10,2,8,19,10,1,8,3,10,3,8,2,10,3,8,13,10,1,8,12,10,1,8,2,10,3,8,3,10,1,8,10,10,2,8,8,10,10,8,1,15,1,8,1,10,6,8,2,10,1,8,3,10,1,8,3,10,3,8,4,10,6,8,2,10,2,8,2,10,4,8,1,10,1,8,6,10,1,8,1,10,3,8,4,10,4,8,3,10,2,8,2,10,3,15,3,8,1,15,1,8,3,10,1,8,2,10,2,8,8,15,1,8,7,15,1,8,1,15,1,8,5,10,4,8,12,15,2,14,1,15,1,8,3,4,1,19,14,4,32,}, + {4,65,19,78,4,227,19,90,10,3,4,1,10,1,4,2,8,3,15,2,14,17,8,4,10,3,8,5,10,5,8,1,10,2,8,6,10,1,8,1,10,2,8,2,10,1,8,9,10,1,8,4,14,1,10,2,8,1,10,1,8,3,10,3,8,9,10,1,8,3,10,1,8,8,10,2,8,10,10,2,8,1,15,1,8,1,10,3,8,3,10,1,8,7,10,5,8,6,10,1,8,2,10,1,8,1,10,6,8,3,10,9,8,7,10,2,8,7,10,1,8,6,10,1,8,3,10,1,8,1,10,3,8,1,10,1,8,5,10,1,8,6,15,1,10,1,8,13,15,3,8,7,10,2,8,21,10,3,8,4,10,1,8,1,10,2,8,11,14,2,8,1,4,3,19,14,4,32,}, + {4,65,19,72,4,3,19,5,4,224,19,91,10,3,4,1,10,2,8,3,15,2,14,18,8,4,10,1,8,1,10,4,8,5,10,2,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,1,8,14,10,3,8,6,10,2,8,2,10,1,8,3,10,1,8,3,10,1,8,11,15,1,8,17,10,1,8,2,15,2,8,8,15,1,8,6,10,3,8,12,10,1,8,2,10,3,8,1,10,10,8,2,10,2,8,3,10,2,8,2,10,2,8,5,10,1,8,1,10,3,8,6,10,2,8,1,10,1,8,6,10,1,8,6,15,1,8,16,15,2,8,11,10,1,8,15,10,5,8,2,15,1,8,1,10,3,8,9,15,1,10,1,8,1,14,2,8,1,10,1,4,2,19,14,4,32,}, + {4,65,19,72,4,3,19,5,4,224,19,92,4,1,10,1,4,2,8,5,15,1,14,15,17,1,14,2,8,13,10,3,8,1,10,1,8,3,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,10,10,1,8,7,10,3,8,5,10,5,8,4,10,1,8,8,15,1,8,8,10,2,8,2,10,2,8,14,15,2,8,1,15,1,8,2,10,1,8,5,10,1,8,5,10,1,8,4,10,1,8,1,10,5,8,1,14,1,15,1,8,1,10,10,8,7,10,5,8,7,10,3,8,1,10,2,8,5,10,1,8,2,15,1,8,1,10,2,8,10,10,2,8,2,10,1,8,3,10,1,8,1,10,1,8,3,15,1,8,1,15,1,8,3,10,1,8,9,10,1,8,13,10,5,8,4,10,3,8,5,15,1,8,4,10,1,8,1,14,2,8,1,4,3,19,14,4,32,}, + {4,65,19,64,4,239,19,92,4,1,10,2,4,1,10,1,8,1,10,1,8,1,15,1,14,19,8,11,10,2,8,2,10,2,8,1,10,1,8,2,10,3,8,4,10,1,8,1,10,1,8,2,10,1,8,1,10,1,8,4,10,1,8,1,10,1,8,2,10,1,8,2,14,1,10,1,8,2,10,1,8,2,10,1,8,1,10,1,8,15,14,1,8,2,15,1,8,6,10,3,8,16,14,1,15,1,14,1,15,1,8,7,14,2,8,1,15,1,8,3,10,3,8,5,10,1,8,1,10,3,8,1,14,1,15,1,8,1,10,11,8,7,10,2,8,3,10,1,8,1,10,1,8,2,10,3,8,4,10,1,8,9,10,3,8,1,10,1,8,1,10,3,8,2,10,5,8,1,10,5,8,5,15,1,8,1,15,2,8,5,10,1,8,3,10,2,8,2,10,1,8,2,10,1,8,2,10,3,8,3,10,5,8,2,15,1,8,17,14,1,8,1,10,1,4,3,19,12,4,33,}, + {4,65,19,64,4,239,19,92,10,1,4,1,10,4,8,3,15,2,14,17,8,2,15,1,8,1,15,1,8,1,14,1,15,1,8,5,15,1,8,5,10,5,8,1,10,3,8,5,10,1,8,4,10,1,8,6,10,1,8,2,14,1,8,35,10,1,8,5,15,1,8,11,14,3,8,6,15,1,8,1,14,2,8,1,15,1,8,4,10,2,8,4,10,1,8,2,10,2,8,2,14,1,15,1,8,1,10,9,8,3,10,2,8,1,10,1,8,7,10,5,8,1,10,1,8,3,10,1,8,4,10,1,8,1,10,3,8,1,10,15,8,4,10,3,8,1,15,2,10,2,8,3,15,1,8,5,10,1,8,1,10,1,8,2,10,1,8,11,10,1,8,1,15,1,8,1,10,4,8,9,15,1,8,12,10,1,4,3,19,13,4,33,}, + {4,68,19,61,4,239,19,92,10,5,8,2,15,1,8,1,14,2,15,1,14,17,8,18,10,5,8,6,10,1,8,1,10,1,8,6,10,2,8,4,10,2,8,6,15,1,8,7,15,1,8,13,15,1,8,8,10,2,8,15,14,2,8,5,14,1,15,1,8,1,14,1,15,2,14,1,8,2,10,1,8,2,15,1,8,1,10,1,8,8,10,3,15,2,8,1,10,4,8,12,10,1,8,7,10,5,8,1,10,1,8,4,15,1,8,2,10,1,8,3,10,2,8,1,10,1,8,1,10,13,8,3,10,2,15,1,14,1,8,7,15,1,8,13,10,1,8,1,10,2,8,5,10,1,8,14,10,1,8,15,10,1,4,1,19,14,4,33,}, + {4,71,19,58,4,239,19,91,10,4,4,1,10,2,8,2,15,3,14,17,8,3,15,1,8,1,15,1,8,1,15,1,8,12,10,3,8,6,10,2,8,1,10,1,8,2,10,1,8,3,10,3,8,3,10,1,8,2,10,1,8,29,14,2,8,19,15,1,14,1,8,1,14,1,8,1,10,1,8,3,15,1,8,2,15,1,8,4,10,1,8,6,15,1,8,7,10,3,8,4,10,1,8,7,15,2,8,6,10,3,8,1,10,2,8,1,10,1,8,6,10,2,8,1,15,1,8,4,10,1,8,2,10,13,8,2,10,2,8,19,15,1,8,1,10,1,8,7,10,1,8,1,10,2,8,3,10,1,8,1,10,1,8,24,10,1,8,5,4,1,19,15,4,33,}, + {4,73,19,56,4,239,19,89,10,8,8,3,15,3,14,15,17,1,14,2,15,2,8,3,15,1,8,1,15,1,8,2,15,1,8,14,10,1,8,2,10,2,8,1,10,3,8,4,10,1,8,4,10,2,8,3,10,1,8,27,14,2,8,4,14,1,8,7,10,1,8,2,15,1,8,11,10,1,8,4,15,1,8,11,15,1,8,3,15,1,8,2,10,3,8,2,15,1,8,1,15,1,8,4,10,1,8,2,15,2,8,5,10,8,8,8,10,2,8,3,10,1,8,2,10,1,8,3,10,5,8,1,10,2,8,1,10,2,8,13,10,1,8,12,10,2,8,7,10,3,8,2,10,2,8,6,10,3,8,1,15,1,8,17,15,1,8,3,4,1,19,15,4,33,}, + {4,73,19,56,4,239,19,84,10,2,19,2,10,8,8,3,15,4,14,15,17,1,14,2,15,3,8,1,15,1,8,2,15,1,8,4,15,1,8,7,10,2,8,3,10,1,8,2,10,2,8,2,10,4,8,8,10,1,8,3,10,1,8,7,15,1,8,1,15,1,8,2,15,1,8,18,10,1,8,1,14,1,8,6,14,1,8,1,14,3,8,21,10,1,8,3,10,1,8,3,15,1,8,3,15,1,8,1,10,2,8,4,15,1,8,2,10,1,8,10,10,7,8,7,10,2,8,3,10,1,8,10,10,2,8,7,10,1,8,8,10,1,8,3,14,1,15,1,8,2,15,1,8,11,10,1,8,8,10,5,8,3,10,3,8,1,10,3,8,19,15,1,8,4,19,15,4,33,}, + {4,73,19,40,4,255,19,65,10,10,19,1,10,3,19,4,10,12,8,2,15,2,14,2,15,1,14,13,17,1,14,4,8,2,15,1,8,4,15,1,8,4,15,1,8,10,10,2,8,6,10,1,8,2,10,4,8,1,10,2,8,1,10,1,8,4,10,2,8,10,15,1,8,9,10,1,8,13,14,1,8,6,14,1,8,1,14,2,8,4,10,1,15,1,14,1,8,2,15,1,8,3,10,1,8,6,10,5,8,3,10,1,8,14,10,1,8,10,10,5,8,3,10,6,8,1,10,1,8,25,10,1,8,10,15,1,8,7,15,1,8,8,14,1,8,8,10,1,8,1,10,3,8,2,10,4,8,2,10,3,8,3,10,1,8,18,15,1,4,1,19,14,4,34,}, + {4,69,19,12,4,8,19,21,4,258,19,53,10,39,8,5,15,1,8,1,15,2,14,12,15,1,14,6,8,3,15,1,8,1,15,1,8,1,15,1,8,2,10,1,8,12,10,2,8,5,10,3,8,3,10,3,8,3,10,2,8,6,14,2,8,4,15,1,8,3,15,1,8,9,10,1,8,1,15,1,10,2,8,8,14,1,8,6,14,1,8,9,15,1,8,8,14,1,8,3,10,1,8,4,10,1,15,1,8,5,10,1,8,1,15,1,8,1,10,1,8,4,10,6,8,9,10,3,8,3,10,1,8,1,10,6,8,8,15,1,8,14,10,1,8,1,10,2,8,14,10,2,8,7,10,1,8,2,15,1,8,5,10,2,8,6,10,3,8,8,10,2,8,2,10,2,8,9,15,1,8,6,10,1,8,1,4,1,19,14,4,34,}, + {4,367,19,53,10,42,8,3,15,1,14,2,15,2,14,7,8,6,14,4,8,5,15,1,8,8,10,2,8,8,10,4,8,3,10,3,8,9,10,2,8,3,10,2,8,7,15,1,8,1,15,2,8,6,15,1,8,3,10,1,8,2,10,1,8,9,14,1,8,2,14,1,8,7,10,2,8,3,15,1,8,16,10,1,8,3,10,1,8,12,10,8,8,2,10,1,8,2,10,2,8,1,10,3,8,2,10,9,8,10,10,1,8,13,10,2,8,2,10,2,8,1,10,1,8,1,15,2,8,20,14,1,8,5,10,1,8,8,10,1,8,10,10,3,8,1,10,1,8,12,10,1,8,3,10,1,19,14,4,34,}, + {4,367,19,49,10,48,8,3,15,3,14,1,15,2,8,13,15,1,8,5,15,1,8,7,10,5,8,6,10,4,8,6,10,2,8,2,10,1,8,4,10,9,8,3,10,1,8,2,15,2,8,5,15,1,8,2,15,1,8,2,15,1,8,24,10,1,8,3,14,1,15,1,8,17,10,2,8,9,10,2,8,2,10,7,8,3,10,2,8,4,10,12,8,1,10,2,8,9,10,1,8,11,10,2,8,5,10,2,8,3,15,1,8,22,10,1,8,3,10,1,8,10,15,1,8,7,10,5,8,1,10,2,8,6,10,1,8,1,10,7,19,14,4,34,}, + {4,367,19,49,10,51,8,3,15,1,8,1,10,1,8,1,10,1,8,22,10,3,8,18,10,1,8,2,10,2,8,5,10,1,8,1,10,9,8,18,15,2,8,4,14,2,8,41,10,2,8,3,10,1,8,4,10,4,8,1,10,7,8,4,10,2,8,2,10,12,8,2,10,2,8,7,10,1,8,1,10,1,8,11,10,5,8,2,10,1,8,1,10,5,8,1,10,1,8,18,10,2,8,1,10,3,8,10,15,2,8,7,10,3,8,2,10,2,8,5,10,9,19,14,4,35,}, + {4,367,19,49,10,17,8,1,10,3,8,1,10,19,8,1,10,8,8,1,10,1,8,2,15,1,8,2,10,3,8,11,10,1,8,9,10,4,8,18,10,2,8,2,10,1,8,5,10,3,8,4,10,1,8,1,10,1,8,10,15,1,14,1,8,4,15,1,8,2,15,2,8,2,14,3,8,10,14,2,8,2,15,1,8,21,15,1,8,5,10,1,8,8,10,13,8,3,10,3,8,2,10,1,8,1,10,4,8,2,10,2,8,2,10,1,8,4,10,1,8,2,15,1,8,10,10,3,8,1,10,7,8,5,10,4,8,1,10,1,8,21,10,2,8,2,10,1,8,8,15,1,8,3,10,1,8,3,10,2,8,4,10,2,8,4,10,1,8,3,10,5,19,14,4,35,}, + {4,367,19,49,10,14,8,1,10,2,8,1,10,6,8,3,10,6,8,1,10,14,8,9,10,4,8,11,14,1,15,1,8,1,10,1,8,6,10,6,8,8,10,1,8,1,10,1,8,9,10,1,8,3,10,4,8,4,14,1,8,4,14,1,8,3,10,1,8,3,14,1,8,12,14,1,15,2,8,9,14,3,8,2,15,1,8,5,15,2,8,14,14,1,8,4,10,2,8,8,10,1,8,1,10,1,8,2,10,9,8,2,10,4,8,5,10,1,8,3,10,1,8,8,10,1,8,1,14,3,15,1,8,5,10,6,8,1,10,8,8,1,10,2,8,3,10,4,8,7,10,2,8,11,10,3,8,1,10,3,8,2,15,1,14,1,15,2,8,8,10,3,8,4,10,2,8,2,10,1,8,1,10,1,8,2,10,6,19,13,4,36,}, + {4,367,19,47,10,19,8,2,10,1,8,2,10,4,8,5,10,2,8,1,10,2,8,1,10,3,8,1,10,7,8,1,10,2,8,1,10,3,8,1,10,1,8,1,10,4,8,10,14,2,8,1,10,3,8,7,10,3,8,10,10,2,8,4,10,1,8,1,10,1,8,4,10,4,8,8,14,1,8,11,15,1,8,6,15,1,8,3,15,1,14,1,8,2,15,1,8,5,15,2,14,1,8,7,15,2,8,14,15,1,8,7,10,3,8,7,10,4,8,1,10,15,8,5,10,3,8,1,10,2,8,1,10,1,8,4,10,2,8,1,15,1,16,2,14,1,8,3,10,1,8,8,10,3,8,1,10,1,8,3,10,3,8,3,10,3,8,7,10,1,8,1,10,2,8,2,10,3,8,6,10,1,8,1,10,3,8,3,14,3,15,1,8,16,10,1,8,2,10,10,19,14,4,36,}, + {4,367,19,47,10,6,8,2,10,10,8,4,10,5,8,1,10,1,8,1,10,7,8,1,10,1,8,1,10,1,8,4,10,6,8,3,10,3,8,1,10,1,8,1,10,5,8,2,10,1,8,6,14,2,8,1,10,2,8,4,10,2,8,14,10,2,8,4,10,2,8,5,10,3,8,9,14,1,15,1,8,1,10,5,8,15,14,2,8,3,15,1,8,7,14,1,8,5,10,1,8,5,15,4,14,1,15,1,8,6,14,1,8,5,10,1,8,1,10,3,8,8,10,3,8,1,10,12,8,1,10,1,8,4,10,1,8,1,10,2,8,2,10,1,8,2,10,1,15,1,8,1,10,4,8,2,14,3,8,2,10,3,8,4,10,7,8,18,10,1,8,2,10,8,8,7,10,1,8,1,10,1,8,5,14,2,15,1,8,18,10,9,19,15,4,37,}, + {4,367,19,47,10,6,8,2,10,5,8,1,10,3,8,5,10,1,8,1,10,4,8,3,10,7,8,1,10,2,8,3,10,2,8,3,10,9,8,1,10,1,8,1,10,8,8,5,14,2,8,2,10,3,8,8,14,2,8,16,10,1,8,3,10,4,8,8,14,1,8,3,10,5,8,14,14,1,8,2,15,1,8,10,14,1,8,13,14,2,15,1,8,14,10,4,8,5,10,1,8,1,10,11,8,1,10,5,8,8,10,1,8,4,10,1,8,9,15,1,8,1,14,1,15,1,10,1,8,2,10,3,8,3,10,2,8,2,10,1,8,1,10,2,8,3,10,4,8,4,10,2,8,7,10,7,8,1,10,1,8,2,10,1,8,11,15,1,8,16,10,1,8,1,10,8,8,1,10,1,19,16,4,37,}, + {4,369,19,45,10,3,8,1,10,1,8,1,10,1,8,1,10,4,8,1,10,3,8,1,10,1,8,6,10,1,8,4,10,8,8,2,10,5,8,2,10,12,8,1,10,9,8,6,14,1,8,2,10,1,8,3,10,1,8,16,10,2,8,9,10,1,8,2,10,5,8,16,15,2,8,2,10,4,8,6,14,1,8,8,10,2,8,1,15,1,8,4,10,1,8,2,10,1,8,8,14,1,15,1,8,14,10,2,8,2,10,6,8,3,10,14,8,7,10,2,8,3,10,3,8,2,10,2,8,6,15,1,8,4,10,3,8,1,10,5,8,7,10,5,8,2,10,6,8,8,10,7,8,2,10,3,8,3,10,1,8,5,15,2,8,12,10,2,8,3,10,8,19,16,4,38,}, + {4,369,19,44,10,2,4,1,10,1,8,7,10,1,8,2,10,3,8,1,10,2,8,4,10,1,8,10,10,1,8,1,10,6,8,1,10,1,8,3,10,1,8,1,10,12,8,2,10,9,8,6,10,1,8,8,10,1,8,3,10,1,8,1,10,1,8,5,10,1,8,7,10,1,8,3,10,4,8,17,15,1,14,1,15,1,8,1,10,5,8,1,15,1,8,4,14,1,8,11,14,1,8,15,15,1,8,16,10,2,8,2,10,3,8,4,10,17,8,5,10,1,8,1,10,2,8,1,10,5,8,4,10,3,8,3,10,3,8,2,10,6,8,10,10,11,8,8,10,2,8,1,10,6,8,3,10,2,8,3,10,2,8,3,15,3,8,7,15,1,8,8,10,6,19,18,4,38,}, + {4,369,19,44,10,2,8,2,10,2,8,8,10,2,8,2,10,1,8,4,10,1,8,4,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,10,8,3,10,3,8,1,10,9,8,2,10,7,8,7,10,1,8,3,10,1,8,3,10,1,8,1,10,1,8,2,10,3,8,3,10,2,8,7,10,1,8,4,10,4,8,13,10,1,8,2,10,1,8,2,15,1,8,23,14,2,15,1,8,1,15,1,8,1,10,1,8,26,10,2,8,1,10,1,8,1,10,3,8,3,10,10,8,1,10,1,8,3,10,5,8,2,10,2,8,3,10,2,8,1,10,3,8,4,10,3,8,1,10,15,8,1,10,5,8,1,10,2,8,1,10,1,8,1,10,6,8,3,10,1,8,3,10,1,8,1,10,2,8,2,10,6,8,1,10,2,8,5,10,3,8,17,15,1,8,2,10,5,19,18,4,39,}, + {4,369,19,45,10,6,8,5,14,1,8,12,15,1,8,2,10,3,8,1,10,1,8,1,10,1,8,1,10,9,8,1,10,1,8,5,10,2,8,1,10,4,8,1,10,4,8,1,10,4,8,2,10,2,8,3,10,1,8,3,10,1,8,3,10,1,8,3,10,1,8,1,10,1,8,1,10,3,8,5,10,1,8,6,10,1,8,2,10,1,8,2,10,3,8,2,10,1,8,4,10,2,8,1,10,9,8,13,15,1,8,3,10,1,8,4,10,1,8,3,14,1,8,30,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,5,8,1,10,4,8,1,10,2,8,4,10,4,8,2,10,2,8,7,10,2,8,2,10,5,8,1,10,24,8,1,10,1,8,2,10,1,8,1,10,3,8,1,10,8,8,2,10,6,8,1,10,1,8,2,10,2,8,6,10,3,8,7,15,1,8,1,10,1,8,2,10,2,8,3,10,6,19,16,4,41,}, + {4,369,19,44,10,8,8,15,10,1,8,9,10,1,8,1,10,3,8,5,10,1,8,2,10,2,8,3,10,2,8,1,10,5,8,1,10,4,8,3,10,2,8,2,10,1,8,7,10,2,8,3,10,2,8,1,10,1,8,1,10,1,8,2,10,4,8,1,10,1,8,10,10,2,8,3,10,1,8,1,10,3,8,5,10,6,8,2,10,1,8,3,10,1,8,12,14,1,15,1,8,1,10,2,8,2,10,4,8,5,10,1,8,2,15,1,8,3,10,3,8,20,10,1,8,1,10,1,8,4,10,14,8,3,10,6,8,2,10,1,8,9,15,1,8,1,10,15,8,1,10,12,8,1,10,6,8,4,10,9,8,3,10,1,8,1,10,2,8,24,10,1,8,1,15,2,4,1,10,2,4,4,10,1,19,19,4,41,}, + {4,369,19,44,10,4,8,10,10,1,8,5,10,1,8,7,10,1,8,6,10,3,8,1,10,3,8,1,10,7,8,1,10,2,8,1,10,2,8,1,10,3,8,1,10,1,8,5,10,1,8,4,10,1,8,11,10,1,8,7,10,4,8,4,10,1,8,7,10,1,8,3,10,2,8,9,10,6,8,7,10,2,8,2,15,1,8,1,15,1,8,4,15,2,8,3,10,7,8,1,10,4,8,8,10,1,8,5,15,1,8,9,10,1,8,2,10,4,8,8,10,13,8,3,10,8,8,1,10,1,8,9,10,15,8,1,10,11,8,3,10,8,8,1,10,3,8,2,10,3,8,5,10,1,8,3,10,2,8,6,10,2,8,12,10,1,8,4,4,1,10,1,4,1,10,2,4,1,10,1,19,20,4,41,}, + {4,369,19,44,10,2,8,10,10,1,8,2,10,1,8,3,10,2,8,2,10,1,8,5,10,1,8,1,10,1,8,3,10,16,8,2,10,3,8,2,10,1,8,25,10,1,8,7,10,3,8,3,10,1,8,1,10,1,8,4,10,1,8,7,10,1,8,6,10,2,8,1,10,4,8,2,10,3,8,6,15,1,14,3,15,1,8,4,15,1,8,2,10,14,8,3,10,2,8,1,15,1,14,1,8,10,14,1,8,11,10,1,8,2,10,3,8,3,10,3,8,1,10,8,8,4,10,10,8,8,10,2,8,3,10,4,8,2,10,5,8,1,10,11,8,1,10,2,8,4,10,2,8,1,10,1,8,1,10,1,8,5,10,1,8,3,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,19,10,3,8,3,4,1,10,1,4,2,10,1,19,21,4,43,}, + {4,369,19,43,10,3,8,1,10,5,8,1,10,1,8,1,10,1,8,3,10,2,8,3,10,1,8,4,10,1,8,3,10,2,8,1,10,1,8,3,10,1,8,7,10,3,8,2,10,3,8,1,10,3,8,2,10,2,8,4,10,2,8,15,10,4,8,8,10,3,8,2,10,2,8,1,10,1,8,4,10,2,8,1,10,1,8,2,10,1,8,3,10,1,8,4,10,1,8,1,10,1,8,3,10,5,8,7,15,2,8,10,10,2,8,4,10,1,8,2,10,5,8,1,10,1,8,5,15,2,8,5,15,2,14,2,8,6,10,1,8,3,10,7,8,3,10,3,8,3,10,3,8,2,10,1,8,4,10,3,8,3,10,2,8,1,10,1,8,2,10,1,8,10,10,1,8,7,10,2,8,2,10,11,8,5,10,3,8,8,10,3,8,3,10,2,8,3,10,1,8,21,10,2,8,1,10,2,4,2,10,3,4,1,19,19,4,45,}, + {4,370,19,42,10,4,8,2,10,2,8,6,10,3,8,3,10,1,8,4,10,1,8,3,10,2,8,1,10,5,8,1,10,1,8,3,10,5,8,3,10,3,8,1,10,3,8,1,10,2,8,10,14,1,15,1,8,8,10,4,8,15,10,1,8,5,10,4,8,1,10,2,8,12,10,2,8,2,10,5,8,2,15,1,8,5,15,1,8,2,15,1,8,2,14,1,8,11,10,1,8,3,10,1,8,1,10,2,8,12,14,1,8,4,15,1,8,3,10,1,8,1,10,1,8,2,10,2,8,1,10,1,8,1,10,2,8,1,10,15,8,4,10,2,8,1,10,3,8,5,10,1,8,1,10,1,8,4,10,2,8,2,10,1,8,6,10,2,8,1,10,1,8,1,10,8,8,1,10,1,8,5,10,1,8,3,10,6,8,3,10,5,8,10,10,3,8,11,10,1,8,2,10,1,8,3,4,5,10,2,19,19,4,46,}, + {4,370,19,27,10,4,19,10,10,4,8,5,10,2,8,1,10,1,8,3,10,1,8,1,10,1,8,11,10,2,8,1,10,4,8,1,10,7,8,1,10,2,8,1,10,1,8,1,10,3,8,1,10,3,8,1,10,3,8,8,15,4,8,3,10,3,8,2,10,3,8,10,10,1,8,2,15,1,14,1,8,7,10,1,8,10,10,1,8,3,10,1,8,1,10,1,8,2,10,4,8,1,10,2,8,2,14,1,15,1,14,1,8,25,10,3,8,4,10,3,8,7,14,1,8,12,10,1,8,4,10,2,8,2,10,17,8,1,10,1,8,3,10,2,8,2,10,1,8,4,10,2,8,3,10,2,8,2,10,5,8,2,10,2,8,5,10,4,8,1,10,4,8,3,10,1,8,8,10,2,8,2,10,1,8,1,10,2,8,1,10,3,8,21,10,1,8,2,10,1,8,1,14,1,4,1,8,1,4,6,19,20,4,46,}, + {4,371,19,26,10,8,19,5,10,3,8,8,10,1,8,5,10,1,8,3,10,1,8,14,10,3,8,3,10,4,8,5,10,1,8,4,10,8,8,7,15,2,8,6,10,1,8,1,10,1,8,1,10,2,8,2,10,1,8,11,14,2,8,3,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,3,10,3,8,1,10,1,8,2,10,1,8,10,14,1,8,5,14,1,15,1,8,9,10,1,8,8,10,2,8,3,10,8,8,3,15,1,14,1,8,1,10,1,8,23,10,2,8,2,10,9,8,1,10,5,8,7,10,2,8,1,10,1,8,1,10,2,8,1,10,4,8,5,10,1,8,4,10,3,8,10,10,1,8,6,10,3,8,1,10,1,8,15,10,1,8,17,10,1,8,1,14,1,8,1,4,6,19,20,4,47,}, + {4,371,19,25,10,16,8,2,10,3,8,2,10,2,8,5,10,1,8,1,10,1,8,1,10,2,8,8,10,1,8,3,10,1,8,2,10,3,8,2,10,7,8,1,10,3,8,1,10,1,8,3,10,5,8,3,10,1,8,12,10,4,8,1,10,1,8,24,10,1,8,12,10,4,8,6,10,1,8,18,15,1,8,5,10,1,8,1,10,6,8,1,10,2,8,3,10,4,8,1,10,3,8,12,10,1,8,7,10,1,8,3,10,1,8,10,10,4,8,1,10,2,8,2,10,5,8,3,10,2,8,12,10,1,8,1,10,1,8,7,10,1,8,2,10,2,8,2,10,1,8,6,10,1,8,4,10,7,8,2,10,2,8,16,14,1,8,13,10,1,8,2,4,6,19,19,4,49,}, + {4,373,19,23,10,16,8,1,10,4,8,1,10,2,8,3,10,2,8,5,10,1,8,4,10,2,8,10,10,6,8,1,10,8,8,1,10,2,8,2,10,2,8,1,10,3,8,5,10,2,8,1,10,1,8,4,10,7,8,12,10,1,8,16,10,3,8,8,10,2,8,2,10,1,8,3,10,1,8,6,10,1,8,9,15,1,14,1,8,7,10,2,8,1,10,1,8,4,10,4,8,3,10,2,8,3,10,3,8,14,10,1,8,4,10,1,8,3,10,1,8,3,10,1,8,5,10,1,8,6,15,2,8,2,10,4,8,2,10,3,8,7,10,1,8,6,10,1,8,2,10,2,8,5,10,2,8,3,10,2,8,6,10,6,8,3,10,2,8,1,10,2,8,1,10,1,8,8,10,1,8,2,10,3,8,2,15,1,8,16,10,1,4,4,19,19,4,49,}, + {4,373,19,23,10,12,8,1,10,7,8,1,10,4,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,1,10,2,8,8,10,14,8,1,10,1,8,1,10,2,8,2,10,1,8,1,10,3,8,10,10,6,8,1,10,1,8,1,10,2,8,21,10,1,8,2,10,1,8,3,10,4,8,4,10,1,8,4,10,1,8,9,10,4,8,17,10,3,8,6,10,4,8,8,15,1,8,1,10,4,8,6,15,1,8,10,10,1,8,3,10,1,8,5,10,1,8,1,10,2,8,1,10,3,8,3,15,1,8,3,10,2,8,3,10,4,8,16,10,2,8,5,10,1,8,10,10,3,8,2,10,2,8,2,10,1,8,1,10,6,8,12,10,3,8,15,15,1,8,1,10,1,4,1,10,1,4,3,19,18,4,51,}, + {4,375,19,21,10,20,8,1,10,2,8,8,10,1,8,2,10,2,8,1,10,1,8,1,10,1,8,3,10,1,8,1,10,2,8,2,10,4,8,3,10,9,8,1,10,4,8,1,10,1,8,3,10,1,8,1,10,1,8,4,10,2,8,2,10,5,8,29,10,1,8,1,10,1,8,2,10,4,8,3,10,1,8,5,10,1,8,7,14,1,8,2,10,2,8,13,10,2,8,2,10,10,8,1,10,1,8,1,10,1,8,4,10,2,8,2,15,1,14,1,8,2,10,1,8,1,10,1,8,12,15,1,8,1,10,1,8,1,10,6,8,7,10,2,8,1,10,6,8,3,10,1,8,6,10,1,8,19,10,2,8,3,10,3,8,10,10,4,8,3,10,10,8,4,10,3,8,1,10,1,8,2,10,3,8,15,15,1,8,1,10,4,4,1,19,16,4,54,}, + {4,375,19,21,10,12,8,1,10,3,8,1,10,4,8,6,10,1,8,3,10,1,8,3,10,4,8,3,10,2,8,2,10,1,8,5,10,2,8,3,10,13,8,1,10,2,8,2,10,14,8,3,10,1,8,4,10,3,8,7,10,1,8,1,10,1,8,2,10,2,8,2,14,2,8,5,10,1,8,1,10,2,8,7,10,2,8,3,10,1,8,2,10,1,8,2,14,1,8,3,10,1,8,8,15,1,8,2,14,1,8,1,10,2,8,2,10,7,8,2,10,1,8,2,10,1,8,4,10,6,8,6,10,4,8,10,10,2,8,1,10,6,8,1,10,1,8,6,10,2,8,1,10,4,8,3,10,4,8,22,15,1,14,1,8,6,10,1,8,13,10,2,8,6,10,7,8,4,10,4,8,2,10,2,8,5,15,1,8,6,10,1,8,4,15,1,14,1,8,1,10,1,4,1,10,1,19,20,4,51,}, + {4,377,19,19,10,20,8,4,10,1,8,3,10,1,8,3,10,2,8,3,10,3,8,4,10,4,8,1,10,4,8,2,10,1,8,1,10,1,8,3,10,9,8,1,10,2,8,2,10,19,8,2,10,1,8,12,10,1,8,2,14,2,8,2,15,1,8,3,15,1,8,1,10,6,8,2,10,2,8,4,10,1,8,6,10,3,8,7,15,1,8,9,10,1,8,2,10,14,8,2,10,1,14,1,15,1,8,1,10,3,8,1,15,1,10,2,8,1,10,1,8,11,10,1,8,9,10,1,8,3,10,1,8,2,10,3,8,2,10,2,8,1,10,3,8,2,10,4,8,3,10,3,8,4,10,2,8,3,10,1,8,9,10,1,8,6,10,1,8,1,10,1,8,8,10,1,8,1,10,1,8,1,10,1,8,4,10,1,8,2,10,2,8,1,10,4,8,3,10,4,8,1,10,1,8,1,10,1,8,5,14,1,8,1,10,1,8,5,15,1,8,1,10,1,14,2,8,1,10,3,19,18,4,53,}, + {4,377,19,19,10,18,8,4,10,2,8,2,10,2,8,1,10,1,8,5,10,1,8,1,10,1,8,1,10,4,8,4,10,1,8,2,10,2,8,1,10,1,8,1,10,1,8,1,10,1,8,4,10,6,8,1,10,1,8,2,10,2,8,1,10,19,8,6,10,1,8,22,10,1,8,1,10,4,8,2,10,1,8,1,10,1,8,5,10,2,8,22,10,1,8,3,10,9,8,1,10,1,8,1,10,2,8,2,15,1,14,1,15,1,8,5,10,1,8,14,10,1,8,8,15,1,8,7,10,9,8,2,10,2,8,1,10,3,8,2,10,6,8,2,10,2,8,1,10,1,8,2,10,1,8,8,10,1,8,6,10,1,8,9,10,5,8,5,10,1,8,2,10,8,8,1,10,3,8,3,10,1,8,6,14,2,8,4,14,4,10,2,8,1,14,1,8,1,10,1,4,1,10,1,19,18,4,53,}, + {4,379,19,17,10,13,8,1,10,4,8,8,10,2,8,6,10,3,8,1,10,1,8,1,10,1,8,4,10,3,8,1,10,1,8,3,10,1,8,1,10,2,8,4,10,1,8,7,10,1,8,4,10,1,8,1,10,1,8,1,10,6,8,1,10,9,8,22,10,1,8,1,10,7,8,3,10,3,8,1,10,3,8,4,10,1,8,11,15,1,8,3,15,1,8,2,10,1,8,2,10,1,8,1,10,1,8,4,10,10,8,6,14,3,10,1,8,3,10,1,8,9,10,4,8,1,10,1,8,8,14,1,8,7,10,1,8,6,10,2,8,3,10,4,8,2,10,3,8,6,10,3,8,11,10,2,8,11,10,1,8,2,10,1,8,3,10,3,8,3,10,1,8,6,10,7,8,6,10,1,8,6,14,2,8,4,14,4,8,2,15,1,14,1,15,1,10,2,19,11,4,3,19,1,4,57,}, + {4,379,19,16,10,16,8,1,10,2,8,3,10,1,8,3,10,4,8,1,10,2,8,1,10,5,8,5,10,6,8,3,10,1,8,3,10,4,8,1,10,1,8,18,10,4,8,1,10,1,8,2,10,4,8,1,10,1,8,1,10,1,8,9,10,1,8,1,10,1,8,9,10,1,8,1,10,3,8,1,10,2,8,1,10,1,8,1,10,4,8,2,10,2,8,24,10,2,8,6,10,11,8,4,14,2,16,1,14,1,8,1,14,2,15,1,8,6,10,3,8,1,10,6,8,5,15,1,8,3,10,1,8,3,10,4,15,2,8,1,10,1,8,1,15,1,8,2,15,2,8,1,10,4,8,3,10,2,8,7,10,2,8,8,10,1,8,4,10,3,8,11,10,7,8,2,10,2,8,4,10,1,8,1,10,3,8,2,10,3,8,6,10,1,8,3,14,1,8,1,10,10,14,3,15,1,10,2,19,11,4,4,19,1,4,57,}, + {4,380,19,15,10,6,8,1,10,11,8,4,10,1,8,2,10,2,8,2,10,2,8,3,10,1,8,1,10,4,8,1,10,9,8,2,10,2,8,2,10,7,8,2,10,1,8,1,10,1,8,1,10,1,8,8,10,15,8,2,10,1,8,2,10,3,8,1,10,5,8,1,10,1,8,4,10,1,8,2,10,1,8,1,10,1,8,6,10,2,8,1,10,1,8,2,10,1,8,3,10,1,8,2,10,2,8,17,10,1,8,2,10,4,8,4,10,13,8,4,10,1,8,1,14,4,15,1,8,3,10,1,8,2,10,3,8,3,10,4,8,2,15,2,8,1,15,1,8,3,10,2,8,2,10,3,8,3,10,2,8,1,10,5,8,1,10,4,8,5,10,1,8,4,10,1,8,1,10,4,8,11,10,2,8,1,10,1,8,3,14,1,8,4,14,1,8,1,10,5,8,1,10,1,8,1,10,3,8,3,10,1,8,1,10,4,8,3,10,3,8,5,10,1,8,2,10,1,8,1,4,2,10,3,4,1,10,5,4,1,10,5,19,11,4,4,19,1,4,57,}, + {4,380,19,15,10,11,8,1,10,1,8,2,10,1,8,1,10,5,8,6,10,6,8,3,10,6,8,1,10,1,8,1,10,1,8,12,10,1,8,1,10,4,8,1,10,2,8,12,10,7,8,1,10,5,8,4,10,3,8,1,10,1,8,1,10,3,8,7,10,4,8,1,10,1,8,1,10,1,8,1,10,1,8,4,10,2,8,2,10,2,8,3,10,1,8,1,10,1,8,1,10,1,8,15,10,2,8,1,10,5,8,5,10,15,8,1,10,1,8,2,14,3,8,1,15,1,8,3,10,1,8,1,10,4,8,4,10,3,8,1,15,2,8,2,10,9,8,5,10,7,8,3,10,3,8,1,15,2,8,7,10,3,8,16,10,1,8,4,10,1,8,8,10,2,8,3,10,5,8,2,10,1,8,1,10,4,8,1,10,4,8,2,10,4,8,2,10,1,4,1,10,1,19,7,4,1,19,5,10,1,19,13,4,62,}, + {4,380,19,15,10,10,8,4,10,1,8,1,10,1,8,3,10,1,8,2,10,1,8,2,14,1,10,7,8,2,10,2,8,1,10,5,8,1,10,2,8,14,10,1,8,1,10,3,8,9,10,5,8,1,10,2,8,1,10,9,8,4,10,3,8,3,10,1,8,8,10,5,8,1,10,1,8,1,10,2,8,1,10,1,8,2,10,2,8,7,10,1,8,1,10,3,8,17,10,2,8,1,10,6,8,2,10,19,8,2,15,1,8,6,10,1,8,2,10,3,8,4,10,3,8,1,15,2,8,3,10,1,8,1,10,2,8,2,10,2,8,6,10,3,8,1,10,2,8,3,10,3,8,1,15,1,14,2,15,2,8,14,10,1,8,5,10,1,8,8,10,1,8,15,10,1,8,2,10,1,8,1,10,6,8,6,10,1,8,1,10,1,8,2,10,1,4,2,19,28,4,62,}, + {4,380,19,15,10,10,8,2,10,2,8,1,10,1,8,5,10,4,8,1,10,4,8,1,10,3,8,1,10,3,8,2,10,5,8,2,10,2,8,10,10,3,8,1,10,3,8,9,10,5,8,1,10,3,8,2,10,7,8,2,15,1,14,1,8,4,10,1,8,9,10,1,8,4,10,1,8,2,10,2,8,2,10,2,8,1,10,2,8,1,10,2,8,3,10,1,8,1,10,3,8,4,15,1,8,2,15,1,8,3,10,1,8,6,10,1,8,5,10,3,8,2,10,11,8,1,10,7,8,1,10,1,8,1,10,2,15,1,8,2,10,1,8,1,15,4,8,7,10,2,8,3,14,1,15,1,8,1,10,2,8,18,10,5,8,2,15,1,8,1,14,1,8,8,14,2,8,18,14,1,8,1,10,3,8,5,10,1,8,1,10,1,8,2,15,1,8,7,10,4,8,10,10,1,8,1,4,1,10,1,4,1,19,29,4,62,}, + {4,376,19,18,10,13,8,7,10,1,8,2,10,3,8,1,10,3,8,2,10,1,8,4,10,7,8,3,10,1,8,1,10,3,8,1,10,1,8,8,10,2,8,1,10,1,8,2,10,1,8,4,10,1,8,3,10,2,8,4,10,1,8,2,10,2,8,3,10,4,8,3,10,3,8,4,10,1,8,4,10,1,8,1,10,2,8,2,10,3,8,3,10,5,8,2,10,1,8,3,10,1,8,2,10,1,8,5,10,1,8,14,10,2,8,1,10,1,8,2,10,4,8,2,10,21,8,1,10,3,15,1,14,1,8,3,14,2,8,1,15,2,8,1,15,1,14,1,15,1,8,1,15,1,8,2,15,1,8,1,15,1,14,2,8,1,15,1,8,8,10,1,8,1,14,1,8,5,10,2,8,1,10,1,8,4,10,4,8,5,10,1,8,9,14,1,8,16,10,1,8,1,10,3,8,2,10,1,8,2,14,2,8,2,15,1,8,4,10,3,8,7,15,1,8,1,15,1,4,2,10,1,19,29,4,65,}, + {4,375,19,19,10,12,8,1,10,1,8,8,10,3,8,2,10,3,8,1,10,1,8,1,10,1,8,4,10,6,8,3,10,1,8,3,10,5,8,3,10,1,8,2,10,2,8,1,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,3,10,3,8,2,10,3,8,1,10,4,8,1,10,4,8,4,10,3,8,11,10,7,8,4,10,3,8,8,10,3,8,12,14,1,8,7,10,1,8,1,10,1,8,2,10,4,8,2,10,21,8,2,10,2,8,3,10,1,8,1,14,1,15,1,8,1,15,1,14,1,15,1,8,1,14,2,15,1,14,2,15,2,14,4,8,1,14,1,15,1,8,1,15,1,8,6,15,3,8,6,10,2,8,5,10,5,8,9,15,2,8,3,15,1,8,11,10,1,8,3,10,4,8,3,10,3,8,1,14,1,15,1,8,5,10,1,8,5,15,1,14,1,15,1,8,1,4,1,10,1,4,3,19,31,4,65,}, + {4,365,19,4,4,4,19,21,10,1,4,1,10,10,8,6,10,1,8,4,10,2,8,1,10,4,8,1,10,1,8,4,10,3,8,5,10,2,8,1,10,1,8,2,10,5,8,5,10,4,8,1,10,2,8,6,10,1,8,3,10,1,8,1,10,2,8,1,10,2,8,2,10,2,8,1,10,4,8,4,10,4,8,3,10,1,8,3,10,1,8,5,10,1,8,3,10,3,8,1,10,2,8,1,10,3,8,2,10,4,8,2,10,3,8,11,14,1,8,8,10,1,8,4,10,1,8,1,10,1,8,2,10,21,8,2,14,2,10,3,8,1,15,2,8,1,15,1,14,2,15,1,8,1,15,1,8,1,15,1,14,2,15,3,14,1,8,2,10,1,8,9,15,1,14,2,8,6,15,1,8,1,10,1,8,6,10,3,8,10,14,3,15,3,8,11,10,1,8,3,10,1,8,1,10,2,8,4,10,2,8,17,10,4,19,33,4,65,}, + {4,365,19,4,4,1,19,24,10,1,4,1,10,9,8,5,10,3,8,3,10,9,8,3,10,1,8,4,10,2,8,1,10,2,8,1,10,2,8,2,10,4,8,8,10,3,8,10,10,1,8,1,10,3,8,4,10,1,8,2,10,2,8,5,10,1,8,6,10,3,8,15,10,1,8,2,10,1,8,4,10,2,8,2,10,5,8,2,10,4,8,3,14,1,15,1,8,4,10,1,8,2,15,1,8,5,10,2,8,5,10,1,8,2,10,21,8,1,14,1,16,1,14,1,15,1,8,2,15,1,8,3,14,1,15,2,14,1,15,1,10,2,8,1,14,3,15,1,8,1,10,1,8,2,10,1,8,2,10,1,8,6,14,2,8,5,14,1,8,2,15,1,8,5,10,3,8,3,15,2,8,1,15,1,14,2,8,3,14,7,15,1,8,20,10,2,8,1,10,2,8,2,10,1,8,6,15,1,8,1,4,1,10,6,19,33,4,66,}, + {4,363,19,31,10,10,8,7,10,4,8,1,10,7,8,4,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,2,10,6,8,2,10,6,8,8,10,1,8,5,10,4,8,1,10,1,8,1,10,1,8,1,10,4,8,4,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,25,10,1,8,3,10,2,8,4,10,4,8,4,15,1,8,8,10,1,8,3,10,4,8,1,10,1,8,1,10,3,8,2,10,3,8,1,10,13,8,2,10,2,8,2,14,1,15,1,14,2,10,3,8,3,15,1,14,3,8,1,10,1,8,1,14,4,10,2,8,11,14,2,8,2,14,1,8,1,14,3,8,3,15,1,14,3,15,2,8,1,15,2,8,2,15,1,8,1,15,2,14,1,15,1,10,11,8,1,14,2,15,1,8,1,14,1,8,11,10,1,8,1,10,3,8,1,10,1,8,1,15,1,8,4,15,1,4,1,8,1,10,1,4,1,10,5,19,34,4,68,}, + {4,363,19,31,10,10,8,6,10,7,8,1,10,11,8,1,10,1,8,2,10,3,8,6,10,1,8,4,10,1,8,1,10,1,8,1,10,1,8,3,10,1,8,7,10,4,8,8,10,1,8,1,10,1,8,1,10,4,8,4,10,2,8,2,10,1,8,2,10,2,8,5,10,1,8,5,10,1,8,9,15,1,8,2,10,1,8,32,10,1,8,1,10,23,8,1,10,1,8,1,10,5,8,1,14,2,8,1,10,2,8,1,10,1,8,2,14,4,8,1,14,5,8,1,10,2,8,5,15,1,8,6,15,1,8,1,15,1,14,1,15,1,14,3,8,6,14,3,8,3,15,1,8,1,15,1,8,1,10,6,19,8,10,1,4,1,10,2,4,1,10,1,14,1,8,12,10,1,8,1,10,1,8,8,15,1,4,3,10,7,19,33,4,69,}, + {4,361,19,33,10,3,8,1,10,6,8,2,10,1,8,1,10,20,8,3,10,2,8,4,10,1,8,8,10,1,8,7,10,1,8,6,10,5,8,3,10,1,8,8,10,3,8,5,10,1,8,1,10,1,8,1,10,3,8,1,10,2,8,2,10,1,8,9,10,1,8,14,10,1,8,15,10,1,8,3,10,1,8,1,10,1,8,6,15,1,8,2,10,1,8,3,10,2,8,1,10,3,8,2,10,13,8,2,10,5,14,1,8,1,10,3,8,1,4,1,10,2,15,1,14,9,8,16,15,1,14,3,15,1,14,1,15,1,8,4,10,3,8,2,10,4,4,1,10,5,19,15,10,2,4,1,10,3,8,1,10,1,8,5,10,1,8,2,10,2,8,7,15,1,4,4,10,3,4,1,19,32,4,73,}, + {4,361,19,33,10,3,8,1,10,12,8,1,10,18,8,1,10,1,8,1,10,2,8,1,10,1,8,5,10,2,8,1,10,1,8,6,10,1,8,8,10,1,8,1,10,3,8,1,10,1,8,2,10,1,8,3,10,1,8,4,10,3,8,3,10,1,8,3,10,1,8,1,10,6,8,5,10,1,8,1,10,1,8,1,10,1,8,1,10,4,8,1,10,1,8,12,15,1,8,19,10,1,8,9,10,1,8,1,15,1,8,1,10,2,15,1,8,6,10,5,8,2,10,1,8,2,10,2,8,2,10,2,8,2,10,2,8,1,10,2,8,1,10,1,4,3,8,2,14,1,15,1,14,1,15,1,4,1,15,1,14,4,15,3,8,1,10,1,8,4,15,1,8,2,14,1,15,1,8,2,14,1,15,1,8,4,10,5,19,1,10,6,19,22,10,5,15,1,10,1,8,1,15,1,10,10,8,3,15,1,14,1,4,3,10,2,4,2,10,1,19,30,4,76,}, + {4,359,19,35,10,2,8,1,10,17,8,4,10,1,8,9,10,7,8,5,10,1,8,7,10,2,8,11,10,2,8,1,10,1,8,1,10,2,8,7,10,2,8,2,10,1,8,3,10,3,8,5,10,9,8,1,10,1,8,3,10,1,8,2,10,3,8,4,15,1,8,4,15,1,8,4,14,1,15,1,8,15,10,2,8,5,10,2,8,2,10,1,8,3,14,2,8,1,10,1,8,1,14,1,15,1,8,2,10,2,8,7,10,1,8,2,10,2,8,5,10,3,4,1,10,1,4,2,10,1,4,7,8,1,4,1,8,1,4,4,19,4,4,2,15,1,14,1,15,2,8,1,15,1,14,2,8,3,14,2,15,1,10,6,19,33,10,10,8,1,10,5,8,6,10,1,4,2,10,1,4,1,10,1,19,27,4,81,}, + {4,359,19,34,10,22,8,2,10,3,8,5,10,7,8,1,10,1,8,1,10,1,8,3,10,6,8,2,10,1,8,1,10,5,8,4,10,1,8,6,10,1,8,2,10,2,8,3,10,6,8,2,10,5,8,1,10,8,8,1,10,1,8,4,10,1,8,1,10,1,8,5,10,2,8,1,10,1,8,8,15,1,8,2,10,1,8,9,15,1,8,2,10,1,8,2,10,1,8,1,10,2,8,6,10,2,8,3,15,1,8,4,10,1,8,1,15,1,8,3,10,3,8,9,10,1,8,6,10,3,8,1,10,1,4,4,10,1,4,5,19,11,4,1,19,1,10,1,4,1,8,3,14,2,15,2,8,2,10,5,19,43,10,1,4,1,10,7,8,1,10,3,8,1,4,2,10,1,4,1,10,1,4,1,19,29,4,81,}, + {4,357,19,34,10,4,8,1,10,13,8,5,10,1,8,2,10,1,8,2,10,4,8,5,10,3,8,5,10,7,8,1,10,10,8,3,10,1,8,8,10,2,8,2,10,1,8,1,10,6,8,1,10,3,8,3,10,8,8,6,10,1,8,5,10,1,8,1,10,3,8,10,15,1,8,2,10,1,8,12,10,2,8,1,10,1,8,11,15,1,8,2,15,2,8,5,15,1,8,1,10,1,8,1,10,1,8,4,10,1,8,3,15,1,8,2,4,1,10,1,8,1,4,1,10,5,4,1,8,1,4,1,14,1,15,1,8,1,4,1,10,1,4,3,10,1,4,2,19,15,4,1,8,1,15,1,14,1,8,4,10,2,19,49,10,9,4,2,10,3,19,32,4,81,}, + {4,354,19,36,10,5,8,1,10,11,8,1,10,1,8,5,10,3,8,1,10,1,8,1,10,5,8,5,10,2,8,1,10,2,8,2,10,8,8,2,10,9,8,5,10,1,8,2,10,1,8,1,10,1,8,1,10,1,8,4,10,6,8,1,10,2,8,4,10,5,8,1,10,2,8,1,10,2,8,2,10,2,8,2,10,5,8,2,10,1,8,10,15,2,8,14,10,4,8,6,10,1,8,1,14,4,15,1,8,2,15,1,8,1,15,1,8,2,15,1,8,5,14,3,8,8,10,10,8,2,14,1,15,1,8,1,10,3,4,1,10,2,4,2,19,17,10,1,8,1,15,1,8,2,10,2,19,52,10,3,4,2,10,2,4,2,10,1,19,34,4,81,}, + {4,353,19,36,10,10,8,1,10,9,8,1,10,1,8,3,10,3,8,1,10,1,8,2,10,1,8,6,10,4,8,4,10,1,8,1,10,1,8,2,10,3,8,2,10,1,8,2,10,6,8,3,15,1,14,1,15,1,8,1,15,1,14,1,8,1,10,1,8,1,10,2,8,4,10,9,8,4,10,1,8,1,10,4,8,1,4,1,10,1,4,1,10,1,4,2,10,6,8,1,10,2,8,1,10,1,8,2,10,1,8,1,10,1,8,10,10,2,8,1,10,1,8,1,10,4,8,3,10,5,8,7,14,4,15,1,8,3,15,2,14,3,15,1,14,2,15,2,14,1,15,1,14,1,15,1,14,1,15,1,8,4,10,8,8,1,10,2,8,5,10,5,4,1,8,1,4,1,19,6,4,2,19,1,4,1,19,2,4,1,19,4,10,2,15,1,14,1,8,1,10,1,19,55,10,2,4,4,10,1,19,35,4,81,}, + {4,353,19,36,10,9,8,3,10,2,8,1,10,4,8,1,10,3,8,3,10,1,8,6,10,1,8,3,10,2,8,2,10,5,8,5,10,1,8,3,10,2,8,1,10,1,8,1,10,3,8,1,10,2,8,1,15,4,14,1,15,1,8,4,10,4,8,3,10,3,8,1,10,5,8,8,10,4,4,3,10,3,4,1,10,1,8,2,10,1,8,1,10,1,8,3,10,1,8,1,10,1,8,2,10,1,8,13,10,1,8,1,10,3,8,2,10,6,8,2,10,1,8,1,15,2,8,1,14,1,8,1,15,1,8,3,15,1,14,1,15,4,14,1,15,3,10,1,4,2,10,2,8,1,4,1,15,1,8,3,10,7,8,5,10,1,8,4,10,1,8,1,10,1,8,2,15,2,8,1,4,1,19,5,4,2,19,1,4,1,19,2,4,1,19,4,10,2,4,3,19,59,4,3,19,36,4,81,}, + {4,353,19,35,10,10,8,7,10,1,8,1,10,5,8,1,10,3,8,3,10,1,8,1,10,6,8,4,10,1,8,3,10,1,8,7,10,1,8,1,10,10,8,2,15,5,8,4,10,3,8,2,10,2,8,4,10,5,8,4,10,1,8,1,10,5,19,6,10,4,8,2,10,3,8,1,10,1,8,2,10,1,8,8,15,1,8,10,10,1,8,3,10,4,8,1,10,1,8,3,10,1,8,4,10,1,8,2,10,1,8,1,15,1,8,1,4,4,15,1,8,1,4,1,10,3,19,5,4,2,8,1,4,1,10,7,8,5,10,2,8,4,10,1,8,7,4,1,19,3,4,3,19,1,4,1,19,110,4,81,}, + {4,353,19,34,10,3,8,1,10,7,8,5,10,1,8,3,10,4,8,2,10,4,8,1,10,1,8,9,15,2,8,10,10,5,8,1,10,8,8,2,15,1,14,1,15,2,8,3,15,1,8,2,10,4,8,2,10,1,8,6,10,1,8,3,10,1,8,2,10,4,19,12,10,1,4,1,8,1,10,4,8,4,10,4,8,4,14,1,8,5,14,1,8,4,10,1,8,1,15,1,8,1,10,2,8,3,10,2,8,1,10,13,19,5,10,1,19,7,4,1,19,2,4,1,10,5,8,9,10,2,8,5,10,1,8,6,10,1,19,105,4,3,19,7,4,84,}, + {4,345,19,40,10,4,8,2,10,2,8,1,10,3,8,1,10,1,8,3,10,1,8,3,10,2,8,2,10,2,8,1,10,3,8,2,10,5,8,1,10,1,8,3,15,1,8,4,10,4,8,2,10,7,8,3,10,4,8,9,15,1,8,3,10,4,8,2,10,1,8,9,10,2,19,21,4,2,10,1,8,1,10,1,8,2,10,2,8,1,10,1,8,10,14,3,8,2,10,1,8,4,10,1,14,1,15,1,8,3,10,12,19,19,10,3,8,1,15,1,8,16,10,2,8,8,4,1,19,101,4,96,}, + {4,345,19,40,10,3,8,5,10,1,8,1,10,2,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,1,10,1,8,4,10,3,8,1,10,4,8,2,10,2,8,9,10,3,8,1,10,15,8,13,10,2,8,1,10,1,8,5,10,6,4,1,10,1,19,22,10,2,4,1,10,4,8,1,10,2,8,15,10,2,8,11,10,10,19,21,10,1,4,1,8,24,10,1,8,1,4,2,19,101,4,97,}, + {4,345,19,38,10,2,8,1,10,1,8,3,10,1,8,3,10,2,8,4,10,2,8,2,10,2,8,1,10,1,8,3,10,7,8,3,10,3,8,10,10,7,8,3,10,9,8,13,10,1,8,5,10,7,19,28,10,5,8,2,10,1,8,13,10,2,8,7,10,4,8,2,10,9,4,1,19,21,4,1,8,1,4,1,10,1,8,4,10,5,8,3,10,1,8,5,10,1,8,4,4,1,8,1,19,102,4,97,}, + {4,345,19,37,10,1,15,1,4,1,8,5,10,1,8,3,10,2,8,5,10,1,8,2,10,3,8,1,10,1,8,3,10,2,8,3,10,2,8,3,10,1,8,11,10,5,8,4,10,10,8,11,10,3,8,5,10,6,19,31,10,5,8,14,10,1,8,7,10,16,4,1,19,21,4,3,10,2,8,4,10,2,8,5,10,1,8,5,10,1,8,4,4,1,19,101,4,99,}, + {4,345,19,37,10,1,4,1,8,10,10,1,8,3,10,1,8,1,10,2,8,1,10,4,8,1,10,1,8,2,10,3,8,3,10,5,8,1,10,1,8,10,10,2,8,1,10,1,8,3,10,1,8,1,10,13,8,3,10,1,8,5,10,4,8,2,10,3,19,37,10,1,4,1,10,2,8,7,15,1,8,11,14,1,8,2,10,17,19,23,10,3,8,20,19,103,4,99,}, + {4,345,19,37,10,1,8,5,10,2,8,8,10,1,8,2,10,1,8,1,10,4,8,1,10,1,8,1,10,13,8,11,10,2,8,1,10,2,8,1,10,10,8,2,10,4,8,3,10,4,8,3,10,2,8,2,10,3,19,39,10,5,8,6,14,1,8,10,15,1,8,2,10,8,8,2,10,7,19,24,10,3,8,13,10,1,8,4,19,1,10,1,19,68,4,1,19,33,4,99,}, + {4,345,19,36,10,2,8,5,10,4,8,2,10,1,8,3,10,1,8,1,10,1,8,1,10,1,8,5,10,1,8,1,10,7,8,1,10,5,8,10,10,3,8,1,10,13,8,2,10,5,8,2,10,1,8,1,10,2,8,1,15,2,8,1,10,5,19,42,10,3,8,7,4,1,10,1,4,1,8,5,15,2,8,5,10,2,8,2,10,1,8,1,10,1,8,1,10,2,8,2,10,3,19,26,10,2,4,1,10,2,8,14,19,69,4,2,19,11,4,3,19,11,4,2,19,8,4,97,}, + {4,345,19,36,10,1,8,7,10,3,8,3,10,2,8,3,10,1,8,1,10,1,8,7,10,4,8,1,10,3,8,1,10,2,8,1,10,3,8,9,10,1,8,3,10,12,8,2,10,1,8,2,10,4,8,3,10,1,8,4,10,4,19,44,10,2,8,4,14,1,4,1,10,7,4,3,8,1,10,1,4,1,10,2,8,1,10,9,8,3,10,2,19,29,10,4,8,1,15,1,8,2,10,1,8,3,10,1,8,3,10,2,19,46,4,3,19,18,4,3,19,11,4,9,19,6,4,2,19,7,4,97,}, + {4,345,19,34,10,3,8,11,14,1,10,1,8,4,10,2,8,1,10,1,8,6,10,1,8,1,10,4,8,6,10,1,8,2,10,1,8,10,10,1,8,2,10,9,8,3,10,1,8,4,10,2,8,5,10,3,8,1,10,4,19,46,10,2,8,1,14,1,15,2,10,1,19,5,10,1,4,1,10,1,4,2,10,1,19,1,10,8,4,1,10,2,8,5,10,1,19,31,10,4,8,11,19,37,4,167,}, + {4,345,19,30,10,6,8,16,10,2,8,4,10,1,8,3,10,4,8,4,10,3,8,1,10,2,8,1,10,1,8,2,10,1,8,9,10,15,8,1,10,1,8,2,10,4,8,4,10,4,4,1,10,2,19,48,10,1,8,1,14,2,4,1,10,1,19,10,4,1,19,6,10,4,4,1,10,7,19,32,10,5,8,8,4,1,19,37,4,167,}, + {4,344,19,28,10,6,8,1,10,1,8,4,10,1,8,3,10,1,8,5,15,1,8,1,10,4,8,3,10,2,8,2,10,1,8,1,10,6,8,6,10,1,8,1,10,1,8,9,10,1,8,2,10,1,8,1,10,9,8,1,10,1,8,1,14,1,8,3,10,1,8,1,10,3,8,2,10,5,19,52,10,1,15,1,14,1,4,1,10,1,19,20,10,1,4,2,10,6,19,33,10,5,8,5,10,1,19,35,4,171,}, + {4,343,19,29,10,2,8,1,10,1,8,7,10,2,8,3,10,2,8,1,10,2,8,2,10,2,8,1,10,4,8,1,10,2,8,1,10,1,8,2,10,5,8,1,10,1,8,3,10,1,8,2,10,1,8,10,10,2,8,1,10,1,8,3,10,7,8,4,14,1,8,1,10,1,8,1,10,3,8,2,10,4,19,55,4,5,19,21,10,2,19,41,4,1,10,3,19,39,4,171,}, + {4,342,19,28,10,3,8,10,10,1,8,1,10,3,8,2,10,4,8,1,10,3,8,1,10,4,8,3,10,3,8,1,10,3,8,4,10,2,8,6,15,1,8,5,10,1,8,1,10,4,8,1,10,7,8,1,10,2,8,1,10,2,16,1,14,1,10,1,8,1,10,1,8,4,10,3,19,58,14,2,4,1,19,66,10,7,19,32,4,173,}, + {4,341,19,26,10,1,19,1,10,2,14,2,15,1,8,3,10,1,8,1,10,1,8,1,10,1,8,4,10,2,8,3,10,3,8,1,10,5,8,1,10,2,8,1,10,1,8,1,10,3,8,3,10,1,8,1,10,1,8,13,10,2,8,4,10,3,8,2,10,9,8,1,10,1,8,1,14,2,10,1,8,6,10,2,19,35,4,2,19,22,15,1,14,1,4,1,19,105,4,173,}, + {4,341,19,25,4,2,10,2,8,1,14,2,8,8,10,1,8,9,10,2,8,2,10,6,8,1,10,3,8,6,10,6,8,5,10,4,8,9,10,3,8,1,10,5,8,2,10,2,8,2,14,1,8,5,10,1,8,1,10,4,19,32,4,1,19,1,4,6,19,19,4,1,14,1,4,1,19,104,4,174,}, + {4,340,19,26,4,1,14,3,8,6,10,1,8,5,10,1,8,4,10,1,8,5,10,6,8,3,10,2,8,1,10,1,8,2,10,4,8,1,10,6,8,1,10,1,8,3,10,2,8,9,10,3,8,1,10,4,8,3,10,1,8,1,10,1,8,1,15,1,8,3,10,2,8,1,10,4,19,32,4,8,19,19,4,4,19,105,4,173,}, + {4,341,19,25,10,1,15,1,8,1,15,2,8,4,10,1,8,12,10,2,8,2,10,4,8,1,10,3,8,1,10,2,8,2,10,1,8,1,10,1,8,1,10,3,8,3,10,7,8,2,10,2,8,10,10,6,8,8,10,1,8,3,10,2,8,1,10,3,19,30,4,12,19,19,4,2,19,99,4,180,}, + {4,341,19,25,10,1,8,11,10,1,8,5,10,5,8,2,10,1,8,1,10,2,8,3,10,1,8,2,10,1,8,1,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,4,10,7,8,3,10,1,8,1,10,1,8,8,10,6,8,2,10,1,8,2,10,1,8,5,10,2,8,2,10,3,19,30,4,11,19,20,4,1,19,99,4,181,}, + {4,341,19,24,10,2,8,1,10,1,8,8,10,4,8,1,10,3,8,2,10,1,8,3,10,1,8,2,10,1,8,2,10,2,8,2,10,1,8,4,10,2,8,7,10,9,8,2,10,3,8,1,15,1,8,4,10,1,8,1,10,7,8,2,10,2,8,4,10,2,8,3,10,3,19,30,4,11,19,120,4,181,}, + {4,341,19,24,10,1,8,7,10,3,8,1,10,3,8,2,10,4,8,1,10,6,8,1,10,3,8,1,10,1,8,1,10,1,8,6,10,3,8,2,10,1,8,5,10,10,8,10,10,4,8,1,10,1,8,3,10,1,8,5,10,1,8,4,10,2,19,30,4,11,19,119,4,182,}, + {4,338,19,27,10,1,8,2,15,1,8,3,10,3,8,2,10,3,8,1,10,4,8,2,10,3,8,1,10,1,8,2,10,2,8,10,10,4,8,6,10,1,8,1,10,2,8,1,10,1,8,1,10,1,8,2,10,1,8,11,10,4,8,6,10,1,8,9,10,1,19,31,4,11,19,118,4,183,}, + {4,337,19,28,10,1,8,7,10,3,8,1,10,7,8,1,14,1,8,1,10,1,8,2,10,3,8,2,10,2,8,4,10,1,8,1,10,2,8,2,10,3,8,3,10,2,8,3,10,5,8,15,10,3,8,1,10,2,8,6,10,2,8,4,14,1,8,1,4,1,19,31,4,11,19,118,4,183,}, + {4,337,19,28,10,1,8,4,10,3,8,1,10,3,8,2,10,3,8,3,14,1,8,1,10,2,8,1,10,6,8,10,10,3,8,3,10,1,8,1,10,1,8,1,10,1,8,1,10,2,8,3,10,1,8,2,14,2,8,8,10,2,8,4,10,2,8,1,10,3,8,2,10,2,8,5,10,1,4,1,19,31,4,13,19,116,4,183,}, + {4,337,19,28,8,1,14,1,8,1,15,1,8,1,10,2,8,4,10,2,8,2,10,2,8,2,10,1,8,2,10,10,8,12,10,1,8,5,10,1,8,2,10,1,8,4,10,2,8,1,14,2,15,2,8,1,10,1,8,10,10,1,8,2,10,3,8,2,10,2,8,4,10,3,19,31,4,13,19,55,4,3,19,58,4,183,}, + {4,331,19,33,10,1,8,1,15,1,8,1,15,1,8,1,10,1,8,2,10,2,8,1,10,2,8,2,10,1,8,1,10,3,8,1,10,4,8,1,10,1,8,1,10,1,8,2,10,4,8,2,10,1,8,3,10,1,8,2,10,1,8,2,10,2,8,7,15,1,8,1,10,1,8,2,14,1,17,1,14,2,8,1,10,2,8,3,10,1,8,9,10,6,8,1,15,1,8,1,10,3,19,31,4,16,19,40,4,22,19,50,4,185,}, + {4,331,19,31,10,3,8,6,14,1,8,2,10,1,8,5,10,1,8,2,10,4,8,2,10,1,8,3,10,1,8,2,10,3,8,1,10,1,8,2,10,1,8,3,10,1,8,4,10,1,8,2,10,5,8,1,15,1,8,1,10,2,8,1,14,3,8,2,10,3,8,4,10,1,8,2,10,1,8,4,10,2,8,2,10,1,8,2,14,1,8,1,10,4,19,30,4,16,19,40,4,22,19,50,4,185,}, + {4,329,19,31,10,2,8,1,15,1,14,2,8,6,10,1,8,3,10,1,8,3,10,1,8,1,10,4,8,2,10,2,8,2,10,2,8,1,10,3,8,1,10,2,8,2,10,3,8,5,10,1,8,4,10,1,8,4,14,1,8,1,10,2,8,1,15,1,8,5,10,2,8,10,10,3,8,1,10,2,8,2,14,2,8,1,10,3,19,31,4,18,19,38,4,24,19,44,4,189,}, + {4,329,19,30,10,2,15,1,14,4,8,7,10,2,8,3,10,1,8,6,10,1,8,1,10,4,8,1,10,1,8,2,10,3,8,2,10,1,8,3,10,2,8,12,14,1,15,2,14,1,15,1,8,4,10,8,8,10,10,1,8,1,10,5,8,3,10,2,4,2,19,30,4,18,19,38,4,26,19,41,4,190,}, + {4,322,19,37,10,1,8,1,14,1,8,1,14,1,15,1,8,9,10,2,8,1,10,1,8,2,15,1,8,2,10,6,8,6,10,6,8,7,10,2,8,5,10,2,14,2,15,2,14,1,15,1,8,10,10,1,8,6,10,1,8,8,10,1,8,1,10,2,8,4,4,2,19,30,4,19,19,33,4,32,19,39,4,190,}, + {4,321,19,37,4,1,14,2,8,4,15,1,8,4,10,2,14,1,15,1,8,2,10,1,14,4,8,1,10,6,8,4,10,1,8,4,10,5,8,5,10,2,8,4,10,3,8,1,14,3,15,1,8,7,14,1,15,1,8,10,10,2,8,3,10,1,8,5,10,3,8,4,4,1,10,1,19,29,4,20,19,32,4,32,19,38,4,191,}, + {4,321,19,37,10,1,14,2,8,1,10,1,8,9,14,1,8,1,14,3,16,2,17,1,14,1,8,3,10,2,8,3,10,1,8,1,10,2,8,1,10,1,8,1,10,5,8,11,10,2,8,2,15,1,14,7,15,1,8,15,10,2,8,3,10,1,8,1,10,2,8,2,10,4,8,3,4,1,10,1,19,29,4,22,19,30,4,36,19,33,4,192,}, + {4,321,19,37,10,1,14,2,8,4,10,1,8,6,14,1,8,1,14,1,17,1,8,1,17,2,14,2,8,4,10,1,8,2,10,3,8,1,10,1,8,1,10,1,8,1,10,4,8,2,10,4,8,1,10,1,8,1,10,1,8,9,15,1,14,3,15,1,8,12,10,1,8,1,10,1,8,1,10,2,8,5,10,1,8,2,10,1,8,1,10,2,8,3,10,2,19,30,4,22,19,2,4,1,19,27,4,36,19,31,4,194,}, + {4,320,19,37,10,2,14,2,8,12,14,3,8,1,14,1,8,3,15,2,8,6,10,3,8,1,10,1,8,6,10,1,8,1,10,2,19,2,10,2,19,2,4,1,8,1,15,1,8,4,10,4,8,7,10,1,8,4,10,2,8,1,10,2,8,1,10,1,8,1,10,1,8,4,10,1,8,4,10,3,8,2,4,2,10,1,19,22,4,40,19,8,4,1,19,1,4,54,19,16,4,201,}, + {4,320,19,37,10,1,8,1,14,2,15,1,8,6,10,1,8,5,15,1,14,1,8,1,14,1,8,4,14,1,15,1,14,1,8,6,10,1,8,8,10,2,19,10,10,2,15,1,8,1,10,1,4,1,10,3,8,4,10,2,8,1,10,1,8,3,10,3,8,16,10,1,8,3,10,1,4,1,10,1,19,23,4,40,19,8,4,56,19,16,4,201,}, + {4,321,19,35,10,2,8,8,10,1,8,1,10,3,8,2,10,1,8,2,10,1,8,6,10,6,8,4,10,2,8,1,10,5,19,12,10,5,19,1,10,2,8,11,10,2,8,2,10,1,8,1,10,4,8,11,15,1,4,1,10,1,19,1,10,1,19,23,4,321,}, + {4,319,19,35,10,3,8,10,10,1,8,1,10,2,8,2,10,2,8,1,10,2,8,4,10,5,19,1,10,10,19,17,10,2,19,3,10,1,4,1,10,5,8,12,10,1,8,12,10,2,4,1,10,1,19,25,4,321,}, + {4,318,19,35,10,2,8,6,14,1,8,2,10,2,8,7,10,1,8,8,10,1,19,39,10,4,8,3,10,1,8,20,15,1,8,1,10,1,4,1,10,1,19,26,4,321,}, + {4,317,19,36,10,2,15,2,8,4,14,1,8,3,10,3,8,5,10,1,8,4,10,1,8,2,10,2,19,40,10,1,4,1,14,1,4,1,10,3,19,1,10,2,8,5,10,1,8,1,10,1,8,9,15,1,4,1,10,2,19,27,4,321,}, + {4,313,19,39,10,2,8,11,10,2,8,2,10,1,8,6,10,1,8,4,10,2,19,42,4,1,10,2,19,4,10,2,8,1,15,1,8,14,10,2,19,28,4,322,}, + {4,313,19,38,10,2,8,1,15,1,8,4,15,1,8,8,10,1,8,1,10,2,8,1,10,1,8,3,10,2,8,1,10,2,19,52,10,1,8,5,10,1,8,8,10,2,19,29,4,322,}, + {4,311,19,37,10,4,14,1,8,8,15,1,8,5,10,1,8,9,10,2,8,1,10,2,19,53,10,1,8,6,10,2,8,5,4,1,10,1,19,30,4,321,}, + {4,311,19,36,10,3,8,5,14,1,15,3,8,1,14,1,8,3,10,1,8,2,10,1,8,1,10,3,8,3,10,1,8,4,10,2,19,53,10,2,8,3,10,10,19,31,4,321,}, + {4,311,19,35,10,4,8,1,15,1,8,3,15,1,8,8,10,1,8,1,10,2,8,2,10,1,8,1,10,1,8,8,10,1,19,54,10,2,8,4,10,3,8,1,10,4,19,31,4,321,}, + {4,310,19,34,15,1,10,5,8,1,14,3,8,1,15,1,8,10,10,3,8,2,10,1,8,4,10,4,8,1,10,1,19,54,10,2,8,1,10,1,8,1,10,3,8,3,10,3,19,30,4,322,}, + {4,309,19,30,10,5,14,2,8,5,15,2,8,5,15,1,8,7,10,2,8,7,10,5,4,1,19,56,10,12,19,30,4,323,}, + {4,309,19,26,10,4,15,1,10,4,14,2,8,4,15,1,8,5,10,2,8,6,10,4,8,6,10,2,19,63,10,6,4,1,10,2,19,31,4,323,}, + {4,309,19,25,10,4,8,1,10,3,8,1,14,3,15,1,14,1,8,9,10,1,8,4,10,5,8,4,10,4,19,65,10,1,19,38,4,323,}, + {4,286,19,1,4,21,19,24,10,4,8,1,10,1,8,5,14,1,8,1,15,1,8,16,10,5,8,3,10,4,19,105,4,323,}, + {4,279,19,24,4,4,19,24,10,2,8,8,15,1,14,1,15,1,8,12,10,1,8,5,10,1,8,1,10,3,8,3,10,1,19,102,4,329,}, + {4,273,19,4,4,2,19,26,4,1,19,24,10,4,8,6,10,1,8,16,10,1,8,1,10,1,8,1,15,1,8,2,10,4,8,1,10,2,19,102,4,329,}, + {4,273,19,55,10,3,8,1,10,1,8,10,15,1,8,14,10,3,8,3,10,3,8,1,4,1,10,2,19,102,4,329,}, + {4,275,19,52,10,2,15,1,10,1,8,4,10,1,8,3,14,1,8,24,4,1,10,2,4,1,10,1,19,104,4,329,}, + {4,274,19,52,10,2,8,2,10,1,8,1,10,2,8,3,14,2,15,1,8,18,10,1,8,5,10,2,19,2,4,1,19,104,4,329,}, + {4,274,19,52,10,1,8,2,10,1,8,1,10,1,8,5,15,1,14,1,8,2,14,2,8,4,10,1,8,8,10,1,8,4,10,1,8,1,10,3,19,99,4,337,}, + {4,273,19,53,10,2,8,3,10,2,8,3,10,5,8,1,14,2,8,11,10,2,8,1,10,1,8,3,10,3,19,100,4,337,}, + {4,273,19,53,10,1,8,4,10,2,8,3,10,2,19,1,10,4,14,1,15,2,8,6,15,1,8,3,10,1,8,5,10,3,19,99,4,338,}, + {4,271,19,55,10,1,8,4,10,1,8,2,10,1,8,1,10,1,19,5,10,5,8,5,14,2,8,1,10,1,8,1,10,2,8,3,10,3,19,100,4,337,}, + {4,270,19,55,10,2,8,8,15,1,10,1,19,7,10,1,19,1,10,3,8,3,15,1,14,1,8,1,10,5,8,2,10,3,19,100,4,337,}, + {4,270,19,55,10,1,8,1,15,1,8,5,10,1,8,1,15,1,10,1,19,11,10,2,8,3,15,1,8,1,10,5,8,2,10,2,19,37,4,16,19,40,4,345,}, + {4,269,19,56,10,1,14,1,8,1,10,1,8,4,4,1,10,1,4,1,19,13,10,1,8,5,10,4,8,4,10,2,19,28,4,24,19,35,4,350,}, + {4,268,19,58,10,1,15,2,8,2,10,2,4,1,10,2,19,14,10,1,8,4,10,3,8,5,4,2,19,28,4,24,19,32,4,353,}, + {4,268,19,58,4,1,10,1,15,2,10,3,19,17,10,2,8,4,10,2,8,5,4,1,10,1,4,1,19,27,4,16,19,40,4,353,}, + {4,267,19,84,10,2,8,4,10,2,8,3,10,2,19,28,4,41,19,16,4,353,}, + {4,267,19,84,10,2,8,5,10,1,8,3,10,1,19,28,4,50,19,8,4,353,}, + {4,265,19,86,4,2,8,6,10,4,19,27,4,412,}, + {4,265,19,86,4,1,10,1,8,5,10,4,19,28,4,412,}, + {4,265,19,87,10,2,8,3,10,3,19,30,4,412,}, + {4,265,19,88,10,1,4,1,15,2,4,1,10,1,19,31,4,412,}, + {4,265,19,25,4,2,10,1,19,61,10,1,4,2,10,1,19,31,4,413,}, + {4,265,19,21,4,7,19,62,4,3,19,31,4,413,}, + {4,265,19,20,4,5,10,1,4,1,19,1,4,1,10,1,19,62,4,1,19,30,4,414,}, + {4,265,19,21,4,2,10,4,19,96,4,414,}, + {4,263,19,24,4,2,10,3,19,93,4,417,}, + {4,263,19,27,4,1,10,1,19,93,4,417,}, + {4,263,19,27,10,1,19,94,4,417,}, + {4,263,19,24,4,2,19,96,4,417,}, + {4,263,19,24,4,2,19,96,4,417,}, + {4,263,19,122,4,417,}, + {4,263,19,122,4,417,}, + {4,263,19,122,4,417,}, + {4,262,19,115,4,425,}, + {4,262,19,115,4,425,}, + {4,262,19,115,4,425,}, + {4,262,19,51,4,8,19,55,4,426,}, + {4,261,19,52,4,8,19,53,4,428,}, + {4,261,19,52,4,8,19,52,4,429,}, + {4,263,19,1,4,1,19,62,4,2,19,43,4,430,}, + {4,265,19,44,4,2,19,16,4,2,19,42,4,431,}, + {4,265,19,40,4,40,19,24,4,433,}, + {4,265,19,40,4,40,19,24,4,433,}, + {4,265,19,40,4,40,19,24,4,433,}, + {4,266,19,39,4,40,19,24,4,433,}, + {4,268,19,36,4,49,19,16,4,433,}, + {4,269,19,34,4,50,19,16,4,433,}, + {4,270,19,35,4,497,}, + {4,271,19,34,4,497,}, + {4,273,19,24,4,505,}, + {4,275,19,22,4,505,}, + {4,278,19,17,4,507,}, + {4,289,19,3,4,510,}, + {4,802,}, + {4,802,}, + {4,802,}, + {4,802,}, +} +} \ No newline at end of file diff --git a/locale/gen_misc/rail_grid.lua b/locale/gen_misc/rail_grid.lua index f6b5b54f..0f8c0bc4 100644 --- a/locale/gen_misc/rail_grid.lua +++ b/locale/gen_misc/rail_grid.lua @@ -18,7 +18,7 @@ local rail_grid = { ["tshape"] = {{["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 12}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 1, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 3, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 5, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 11}, ["direction"] = 2}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 12}, ["direction"] = 6}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 25, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 29, ["y"] = 11}, ["direction"] = 2}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 0.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 7.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 15}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 15}, ["direction"] = 7}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 22.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 29.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 3, ["y"] = 15}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 15}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 17}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 17}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 15}, ["direction"] = 3}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 27, ["y"] = 15}, ["direction"] = 0}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 0.5, ["y"] = 17.5}, ["direction"] = 2}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 7.5, ["y"] = 17.5}, ["direction"] = 2}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 8.5, ["y"] = 17.5}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 17}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 19}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 19}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 17}, ["direction"] = 3}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 21.5, ["y"] = 17.5}, ["direction"] = 5}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 22.5, ["y"] = 17.5}, ["direction"] = 2}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 29.5, ["y"] = 17.5}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 1, ["y"] = 19}, ["direction"] = 2}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 20}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 3, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 5, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 19}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 21}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 21}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 19}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 19}, ["direction"] = 2}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 20}, ["direction"] = 6}, {["name"] = "straight-rail", ["position"] = {["x"] = 25, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 29, ["y"] = 19}, ["direction"] = 2}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 7.5, ["y"] = 20.5}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 23}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 21}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 23}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 23}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 21}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 23}, ["direction"] = 7}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 22.5, ["y"] = 20.5}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 10, ["y"] = 26}, ["direction"] = 0}, {["name"] = "curved-rail", ["position"] = {["x"] = 12, ["y"] = 26}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 18, ["y"] = 26}, ["direction"] = 0}, {["name"] = "curved-rail", ["position"] = {["x"] = 20, ["y"] = 26}, ["direction"] = 1}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 15.5, ["y"] = 24.5}, ["direction"] = 7}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 14.5, ["y"] = 24.5}, ["direction"] = 5}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 15, ["y"] = 27}, ["direction"] = 0}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 12.5, ["y"] = 29.5}, ["direction"] = 4}, {["name"] = "rail-chain-signal", ["position"] = {["x"] = 17.5, ["y"] = 29.5}, ["direction"] = 0}}, ["straight"] = {{["name"] = "straight-rail", ["position"] = {["x"] = 1, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 3, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 5, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 25, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 29, ["y"] = 11}, ["direction"] = 2}, {["name"] = "rail-signal", ["position"] = {["x"] = 1.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 3, ["y"] = 15}, ["direction"] = 0}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 27, ["y"] = 15}, ["direction"] = 0}, {["name"] = "rail-signal", ["position"] = {["x"] = 28.5, ["y"] = 17.5}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 1, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 3, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 5, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 17, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 21, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 25, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 19}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 29, ["y"] = 19}, ["direction"] = 2}}, ["corner"] = {{["name"] = "straight-rail", ["position"] = {["x"] = 1, ["y"] = 11}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 3, ["y"] = 11}, ["direction"] = 2}, {["name"] = "curved-rail", ["position"] = {["x"] = 8, ["y"] = 12}, ["direction"] = 3}, {["name"] = "rail-signal", ["position"] = {["x"] = 1.5, ["y"] = 12.5}, ["direction"] = 6}, {["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 15}, ["direction"] = 1}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 3, ["y"] = 15}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 15}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 13, ["y"] = 17}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 17}, ["direction"] = 5}, {["name"] = "straight-rail", ["position"] = {["x"] = 15, ["y"] = 19}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 20}, ["direction"] = 3}, {["name"] = "curved-rail", ["position"] = {["x"] = 18, ["y"] = 22}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 23}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 10, ["y"] = 26}, ["direction"] = 0}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 15, ["y"] = 27}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 27}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 29}, ["direction"] = 0}}, - ["ushape"] = {{["name"] = "curved-rail", ["position"] = {["x"] = 12, ["y"] = 4}, ["direction"] = 6}, {["name"] = "curved-rail", ["position"] = {["x"] = 20, ["y"] = 4}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 7}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 7}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 10}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 7}, ["direction"] = 3}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 10}, ["direction"] = 0}, {["name"] = "rail-signal", ["position"] = {["x"] = 7.5, ["y"] = 9.5}, ["direction"] = 5}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 3, ["y"] = 15}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 15}, ["direction"] = 0}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 20}, ["direction"] = 5}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 20}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 23}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 23}, ["direction"] = 5}, {["name"] = "curved-rail", ["position"] = {["x"] = 12, ["y"] = 26}, ["direction"] = 7}, {["name"] = "curved-rail", ["position"] = {["x"] = 20, ["y"] = 26}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 23}, ["direction"] = 3}} + ["ushape"] = {{["name"] = "curved-rail", ["position"] = {["x"] = 12, ["y"] = 4}, ["direction"] = 6}, {["name"] = "curved-rail", ["position"] = {["x"] = 20, ["y"] = 4}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 7}, ["direction"] = 7}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 7}, ["direction"] = 1}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 10}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 7}, ["direction"] = 3}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 10}, ["direction"] = 0}, {["name"] = "rail-signal", ["position"] = {["x"] = 7.5, ["y"] = 9.5}, ["direction"] = 5}, {["name"] = "big-electric-pole", ["position"] = {["x"] = 3, ["y"] = 15}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 27, ["y"] = 15}, ["direction"] = 0}, {["name"] = "curved-rail", ["position"] = {["x"] = 26, ["y"] = 20}, ["direction"] = 5}, {["name"] = "curved-rail", ["position"] = {["x"] = 4, ["y"] = 20}, ["direction"] = 3}, {["name"] = "straight-rail", ["position"] = {["x"] = 7, ["y"] = 23}, ["direction"] = 1}, {["name"] = "straight-rail", ["position"] = {["x"] = 9, ["y"] = 23}, ["direction"] = 5}, {["name"] = "curved-rail", ["position"] = {["x"] = 12, ["y"] = 26}, ["direction"] = 7}, {["name"] = "curved-rail", ["position"] = {["x"] = 20, ["y"] = 26}, ["direction"] = 2}, {["name"] = "straight-rail", ["position"] = {["x"] = 23, ["y"] = 23}, ["direction"] = 3}, {["name"] = "train-stop", ["position"] = {["x"] = 25, ["y"] = 15}, ["direction"] = 4}} } local paddings = { @@ -26,14 +26,59 @@ local paddings = { [4] = {{["name"] = "straight-rail", ["position"] = {["x"] = 11, ["y"] = 31}, ["direction"] = 0}, {["name"] = "straight-rail", ["position"] = {["x"] = 19, ["y"] = 31}, ["direction"] = 0}} } -local bitmap = {[18] = {[-29] = 1, [-38] = 1, [-43] = 1, [41] = 1, [32] = 1, [27] = 1, [-4] = 1, [18] = 1, [-9] = 1, [13] = 1, [-18] = 1, [-37] = 1, [-51] = 1, [38] = 1, [33] = 1, [24] = 1, [-3] = 1, [-12] = 1, [-17] = 1, [-26] = 1, [-40] = 1, [-45] = 1, [39] = 1, [30] = 1, [-6] = 1, [-20] = 1, [2] = 1, [-25] = 1, [-34] = 1, [-39] = 1, [-48] = 1, [36] = 1, [31] = 1, [-5] = 1, [-14] = 1, [-19] = 1, [3] = 1, [-28] = 1, [-33] = 1, [-42] = 1, [42] = 1, [37] = 1, [28] = 1, [-8] = 1, [14] = 1, [-13] = 1, [9] = 1, [0] = 1, [-27] = 1, [-36] = 1, [-41] = 1, [-50] = 1, [34] = 1, [29] = 1, [-7] = 1, [15] = 1, [-16] = 1, [6] = 1, [-21] = 1, [1] = 1, [-30] = 1, [-35] = 1, [-44] = 1, [-49] = 1, [40] = 1, [35] = 1, [21] = 1, [12] = 1, [-15] = 1, [-24] = 1}, [32] = {[-18] = 1, [-24] = 1, [-12] = 1, [30] = 1, [24] = 1, [-9] = 1, [3] = 1, [-6] = 1, [-15] = 1, [33] = 1}, [-21] = {[-30] = 1, [-37] = 1, [-48] = 1, [50] = 1, [43] = 1, [32] = 1, [30] = 1, [23] = 1, [-7] = 1, [12] = 1, [-1] = 1, [-2] = 1, [5] = 1, [-9] = 1, [-27] = 1, [-38] = 1, [-45] = 1, [42] = 1, [35] = 1, [24] = 1, [17] = 1, [22] = 1, [-8] = 1, [15] = 1, [-15] = 1, [4] = 1, [-35] = 1, [45] = 1, [34] = 1, [27] = 1, [16] = 1, [9] = 1, [-18] = 1, [-36] = 1, [-43] = 1, [44] = 1, [37] = 1, [-6] = 1, [1] = 1, [-13] = 1, [6] = 1, [-24] = 1, [-33] = 1, [-44] = 1, [49] = 1, [47] = 1, [36] = 1, [29] = 1, [18] = 1, [-3] = 1, [0] = 1, [-14] = 1, [-21] = 1, [-39] = 1, [-34] = 1, [-41] = 1, [48] = 1, [41] = 1, [46] = 1, [39] = 1, [28] = 1, [21] = 1, [3] = 1, [-40] = 1, [-42] = 1, [51] = 1, [40] = 1, [33] = 1, [38] = 1, [31] = 1, [2] = 1, [-12] = 1}, [-4] = {[-36] = 1, [-45] = 1, [-9] = 1, [27] = 1, [18] = 1, [-21] = 1, [-30] = 1, [-33] = 1, [-15] = 1, [21] = 1, [-18] = 1, [0] = 1, [45] = 1, [24] = 1, [-24] = 1, [12] = 1}, [21] = {[28] = 1, [-43] = 1, [-32] = 1, [-23] = 1, [7] = 1, [-14] = 1, [0] = 1, [-5] = 1, [9] = 1, [18] = 1, [27] = 1, [36] = 1, [-44] = 1, [-17] = 1, [-24] = 1, [6] = 1, [-15] = 1, [15] = 1, [-6] = 1, [8] = 1, [17] = 1, [35] = 1, [-45] = 1, [-36] = 1, [-27] = 1, [-18] = 1, [-9] = 1, [5] = 1, [-16] = 1, [14] = 1, [-7] = 1, [16] = 1, [34] = 1, [-28] = 1, [-19] = 1, [-10] = 1, [4] = 1, [13] = 1, [-8] = 1, [31] = 1, [24] = 1, [33] = 1, [42] = 1, [-49] = 1, [-29] = 1, [-20] = 1, [-11] = 1, [3] = 1, [12] = 1, [21] = 1, [30] = 1, [39] = 1, [32] = 1, [41] = 1, [-50] = 1, [-48] = 1, [-39] = 1, [-30] = 1, [-21] = 1, [-12] = 1, [-3] = 1, [29] = 1, [40] = 1, [-51] = 1, [-42] = 1, [-33] = 1, [-31] = 1, [-22] = 1, [-13] = 1, [-4] = 1}, [-43] = {[-3] = 1, [6] = 1, [-24] = 1, [33] = 1, [-15] = 1, [3] = 1, [12] = 1, [-9] = 1, [9] = 1, [18] = 1}, [-24] = {[-33] = 1, [12] = 1, [-3] = 1, [42] = 1, [-28] = 1, [17] = 1, [-21] = 1, [24] = 1, [-39] = 1, [6] = 1, [-16] = 1, [-9] = 1, [36] = 1, [43] = 1, [-27] = 1, [18] = 1, [-20] = 1, [25] = 1, [0] = 1, [7] = 1, [48] = 1, [-15] = 1, [44] = 1, [-19] = 1, [26] = 1, [8] = 1, [15] = 1, [49] = 1, [-32] = 1, [45] = 1, [-18] = 1, [27] = 1, [-36] = 1, [9] = 1, [50] = 1, [-6] = 1, [39] = 1, [-31] = 1, [46] = 1, [-24] = 1, [21] = 1, [-17] = 1, [-42] = 1, [3] = 1, [-35] = 1, [10] = 1, [51] = 1, [-12] = 1, [33] = 1, [40] = 1, [-30] = 1, [47] = 1, [-23] = 1, [22] = 1, [-34] = 1, [11] = 1, [41] = 1, [-29] = 1, [16] = 1, [-22] = 1, [23] = 1, [30] = 1}, [-6] = {[34] = 1, [45] = 1, [52] = 1, [-49] = 1, [-42] = 1, [-47] = 1, [-40] = 1, [4] = 1, [-29] = 1, [15] = 1, [-11] = 1, [-4] = 1, [24] = 1, [35] = 1, [42] = 1, [53] = 1, [-52] = 1, [-41] = 1, [-34] = 1, [-39] = 1, [5] = 1, [-32] = 1, [12] = 1, [-21] = 1, [30] = 1, [-3] = 1, [32] = 1, [50] = 1, [-51] = 1, [-33] = 1, [2] = 1, [-31] = 1, [13] = 1, [-24] = 1, [31] = 1, [-6] = 1, [38] = 1, [33] = 1, [40] = 1, [51] = 1, [-54] = 1, [-36] = 1, [3] = 1, [-18] = 1, [21] = 1, [28] = 1, [-5] = 1, [39] = 1, [46] = 1, [41] = 1, [48] = 1, [-53] = 1, [-46] = 1, [-35] = 1, [-28] = 1, [0] = 1, [-10] = 1, [18] = 1, [-15] = 1, [29] = 1, [36] = 1, [47] = 1, [54] = 1, [49] = 1, [-45] = 1, [-38] = 1, [6] = 1, [-27] = 1, [1] = 1, [8] = 1, [-9] = 1, [-1] = 1, [-2] = 1, [37] = 1, [-50] = 1, [-48] = 1, [-37] = 1, [7] = 1, [-30] = 1, [14] = 1, [9] = 1, [-12] = 1, [27] = 1}, [46] = {[12] = 1, [3] = 1, [-9] = 1, [18] = 1, [21] = 1, [6] = 1, [9] = 1, [-6] = 1, [24] = 1}, [-3] = {[55] = 1, [48] = 1, [-52] = 1, [0] = 1, [25] = 1, [18] = 1, [43] = 1, [-48] = 1, [36] = 1, [-23] = 1, [-30] = 1, [54] = 1, [-12] = 1, [6] = 1, [-53] = 1, [31] = 1, [24] = 1, [-42] = 1, [42] = 1, [-17] = 1, [35] = 1, [-24] = 1, [53] = 1, [-6] = 1, [-13] = 1, [-29] = 1, [12] = 1, [-54] = 1, [30] = 1, [23] = 1, [-36] = 1, [41] = 1, [-18] = 1, [34] = 1, [-25] = 1, [52] = 1, [-14] = 1, [-55] = 1, [29] = 1, [22] = 1, [-37] = 1, [47] = 1, [40] = 1, [-19] = 1, [33] = 1, [-26] = 1, [51] = 1, [-15] = 1, [-49] = 1, [3] = 1, [-56] = 1, [28] = 1, [21] = 1, [-38] = 1, [46] = 1, [-45] = 1, [39] = 1, [-20] = 1, [32] = 1, [-27] = 1, [57] = 1, [-2] = 1, [-1] = 1, [50] = 1, [-9] = 1, [-16] = 1, [9] = 1, [-50] = 1, [-57] = 1, [27] = 1, [-39] = 1, [45] = 1, [-46] = 1, [38] = 1, [-21] = 1, [-28] = 1, [56] = 1, [-3] = 1, [49] = 1, [15] = 1, [-51] = 1, [26] = 1, [-33] = 1, [44] = 1, [-47] = 1, [37] = 1, [-22] = 1}, [17] = {[-6] = 1, [-12] = 1, [-33] = 1, [-48] = 1, [36] = 1, [0] = 1, [27] = 1, [21] = 1, [33] = 1, [6] = 1, [-24] = 1, [18] = 1, [12] = 1, [-39] = 1, [24] = 1, [9] = 1}, [-30] = {[27] = 1, [18] = 1, [45] = 1, [36] = 1, [-33] = 1, [-42] = 1, [-24] = 1, [-6] = 1, [-11] = 1, [15] = 1, [6] = 1, [24] = 1, [19] = 1, [42] = 1, [-36] = 1, [-41] = 1, [-18] = 1, [-23] = 1, [-32] = 1, [12] = 1, [7] = 1, [30] = 1, [16] = 1, [43] = 1, [34] = 1, [-26] = 1, [-31] = 1, [22] = 1, [17] = 1, [35] = 1, [-25] = 1, [23] = 1, [-10] = 1, [-15] = 1, [20] = 1, [33] = 1, [-40] = 1, [-22] = 1, [-27] = 1, [-9] = 1, [8] = 1, [3] = 1, [21] = 1, [44] = 1, [39] = 1, [-39] = 1, [-21] = 1, [-30] = 1, [-3] = 1, [-12] = 1, [9] = 1, [0] = 1}, [30] = {[-25] = 1, [-18] = 1, [20] = 1, [6] = 1, [9] = 1, [-13] = 1, [-6] = 1, [-3] = 1, [-17] = 1, [18] = 1, [21] = 1, [7] = 1, [14] = 1, [-16] = 1, [-30] = 1, [-27] = 1, [-20] = 1, [33] = 1, [19] = 1, [4] = 1, [15] = 1, [-15] = 1, [-8] = 1, [-19] = 1, [-33] = 1, [27] = 1, [5] = 1, [12] = 1, [-10] = 1, [-7] = 1, [-32] = 1, [-21] = 1, [-36] = 1, [24] = 1, [3] = 1, [13] = 1, [-9] = 1, [-1] = 1, [-2] = 1, [-31] = 1, [-24] = 1, [36] = 1, [0] = 1, [-12] = 1, [-26] = 1, [30] = 1, [8] = 1, [-14] = 1, [-11] = 1}, [9] = {[0] = 1, [9] = 1, [-42] = 1, [-33] = 1, [-14] = 1, [-27] = 1, [-18] = 1, [21] = 1, [30] = 1, [-34] = 1, [36] = 1, [-57] = 1, [45] = 1, [-15] = 1, [-6] = 1, [-29] = 1, [-28] = 1, [-19] = 1, [29] = 1, [6] = 1, [15] = 1, [48] = 1, [-45] = 1, [-35] = 1, [-16] = 1, [-7] = 1, [-30] = 1, [-21] = 1, [-20] = 1, [18] = 1, [27] = 1, [28] = 1, [5] = 1, [-46] = 1, [33] = 1, [-36] = 1, [42] = 1, [-9] = 1, [-8] = 1, [26] = 1, [3] = 1, [4] = 1, [-47] = 1, [-10] = 1, [25] = 1, [2] = 1, [11] = 1, [12] = 1, [-48] = 1, [-39] = 1, [39] = 1, [-11] = 1, [-1] = 1, [-2] = 1, [-24] = 1, [23] = 1, [24] = 1, [1] = 1, [10] = 1, [51] = 1, [-54] = 1, [-13] = 1, [-12] = 1, [-3] = 1, [-17] = 1, [22] = 1}, [-9] = {[-1] = 1, [-2] = 1, [-9] = 1, [40] = 1, [33] = 1, [-37] = 1, [-48] = 1, [12] = 1, [5] = 1, [27] = 1, [16] = 1, [-21] = 1, [-7] = 1, [-49] = 1, [-35] = 1, [32] = 1, [-38] = 1, [-45] = 1, [54] = 1, [15] = 1, [4] = 1, [29] = 1, [26] = 1, [-19] = 1, [-8] = 1, [-15] = 1, [-50] = 1, [45] = 1, [42] = 1, [-36] = 1, [7] = 1, [28] = 1, [21] = 1, [18] = 1, [-20] = 1, [-27] = 1, [-30] = 1, [-5] = 1, [37] = 1, [-33] = 1, [48] = 1, [9] = 1, [6] = 1, [31] = 1, [-3] = 1, [-6] = 1, [-13] = 1, [36] = 1, [-34] = 1, [-41] = 1, [51] = 1, [8] = 1, [30] = 1, [-18] = 1, [-4] = 1, [-14] = 1, [39] = 1, [-39] = 1, [-42] = 1, [11] = 1, [0] = 1, [25] = 1, [-12] = 1, [-51] = 1, [41] = 1, [38] = 1, [-40] = 1, [10] = 1, [3] = 1, [24] = 1, [17] = 1, [-24] = 1}, [19] = {[-48] = 1, [-39] = 1, [0] = 1, [-3] = 1, [3] = 1, [39] = 1, [24] = 1, [-36] = 1, [-27] = 1, [27] = 1, [-42] = 1, [21] = 1}, [-34] = {[-12] = 1, [-18] = 1, [-6] = 1, [-3] = 1, [-27] = 1, [3] = 1, [36] = 1, [0] = 1, [-21] = 1, [30] = 1, [-9] = 1}, [15] = {[30] = 1, [-43] = 1, [-46] = 1, [33] = 1, [-27] = 1, [-30] = 1, [-21] = 1, [-7] = 1, [16] = 1, [-49] = 1, [-44] = 1, [-35] = 1, [-28] = 1, [13] = 1, [-8] = 1, [-50] = 1, [24] = 1, [-41] = 1, [-36] = 1, [-25] = 1, [-11] = 1, [12] = 1, [21] = 1, [18] = 1, [27] = 1, [-42] = 1, [-33] = 1, [37] = 1, [43] = 1, [-26] = 1, [-12] = 1, [-3] = 1, [6] = 1, [-6] = 1, [15] = 1, [29] = 1, [-47] = 1, [-34] = 1, [36] = 1, [45] = 1, [-31] = 1, [42] = 1, [-18] = 1, [-9] = 1, [14] = 1, [28] = 1, [-48] = 1, [-39] = 1, [39] = 1, [44] = 1, [-32] = 1, [-10] = 1, [0] = 1, [9] = 1, [-51] = 1, [-45] = 1, [-40] = 1, [38] = 1, [-29] = 1, [-24] = 1, [-15] = 1, [3] = 1, [17] = 1}, [51] = {[-5] = 1, [0] = 1, [9] = 1, [14] = 1, [-11] = 1, [-6] = 1, [3] = 1, [8] = 1, [-12] = 1, [-3] = 1, [11] = 1, [-9] = 1, [-4] = 1, [5] = 1, [10] = 1, [-15] = 1, [-10] = 1, [4] = 1, [13] = 1, [18] = 1, [-7] = 1, [7] = 1, [12] = 1, [21] = 1, [-13] = 1, [-8] = 1, [6] = 1, [15] = 1, [-14] = 1}, [-51] = {[5] = 1, [-9] = 1, [11] = 1, [4] = 1, [-3] = 1, [10] = 1, [3] = 1, [-18] = 1, [9] = 1, [-12] = 1, [-6] = 1, [-7] = 1, [6] = 1, [-8] = 1, [-15] = 1, [12] = 1}, [48] = {[-10] = 1, [21] = 1, [12] = 1, [3] = 1, [-9] = 1, [24] = 1, [13] = 1, [-6] = 1, [14] = 1, [15] = 1, [6] = 1, [18] = 1, [9] = 1, [0] = 1, [-3] = 1, [-12] = 1, [1] = 1, [-1] = 1, [-2] = 1, [-11] = 1, [2] = 1}, [39] = {[-4] = 1, [-11] = 1, [-21] = 1, [24] = 1, [17] = 1, [14] = 1, [-12] = 1, [-29] = 1, [16] = 1, [9] = 1, [6] = 1, [-1] = 1, [-2] = 1, [-9] = 1, [-27] = 1, [-30] = 1, [19] = 1, [-7] = 1, [-10] = 1, [-17] = 1, [-28] = 1, [21] = 1, [18] = 1, [11] = 1, [0] = 1, [-8] = 1, [-15] = 1, [-18] = 1, [-25] = 1, [20] = 1, [13] = 1, [10] = 1, [3] = 1, [-5] = 1, [-16] = 1, [-26] = 1, [12] = 1, [-3] = 1, [-6] = 1, [-24] = 1, [15] = 1}, [36] = {[-31] = 1, [-24] = 1, [18] = 1, [0] = 1, [15] = 1, [-30] = 1, [20] = 1, [19] = 1, [8] = 1, [-3] = 1, [-28] = 1, [-29] = 1, [21] = 1, [28] = 1, [27] = 1, [9] = 1, [-9] = 1, [-27] = 1, [-20] = 1, [-21] = 1, [22] = 1, [29] = 1, [3] = 1, [10] = 1, [-16] = 1, [-19] = 1, [23] = 1, [30] = 1, [12] = 1, [11] = 1, [-15] = 1, [-8] = 1, [-18] = 1, [6] = 1, [-7] = 1, [-32] = 1, [-17] = 1, [24] = 1, [-33] = 1, [7] = 1, [-12] = 1, [-6] = 1}, [-11] = {[15] = 1, [-21] = 1, [51] = 1, [-33] = 1, [3] = 1, [12] = 1, [30] = 1, [-24] = 1, [-6] = 1, [-18] = 1, [36] = 1, [45] = 1, [-45] = 1, [-36] = 1, [0] = 1, [9] = 1, [27] = 1, [6] = 1}, [11] = {[-15] = 1, [21] = 1, [3] = 1, [-33] = 1, [36] = 1, [-18] = 1, [-39] = 1, [-6] = 1, [-24] = 1, [12] = 1, [51] = 1, [33] = 1, [-3] = 1, [-21] = 1, [15] = 1, [-48] = 1, [9] = 1, [42] = 1, [45] = 1, [-27] = 1, [0] = 1}, [-18] = {[38] = 1, [41] = 1, [-43] = 1, [-36] = 1, [0] = 1, [-18] = 1, [-15] = 1, [18] = 1, [-8] = 1, [21] = 1, [28] = 1, [39] = 1, [-45] = 1, [-38] = 1, [-17] = 1, [8] = 1, [19] = 1, [-7] = 1, [26] = 1, [29] = 1, [36] = 1, [-48] = 1, [-37] = 1, [-30] = 1, [-27] = 1, [6] = 1, [9] = 1, [-9] = 1, [16] = 1, [27] = 1, [34] = 1, [37] = 1, [-22] = 1, [7] = 1, [-12] = 1, [17] = 1, [24] = 1, [35] = 1, [42] = 1, [45] = 1, [-42] = 1, [-39] = 1, [-32] = 1, [-21] = 1, [15] = 1, [22] = 1, [25] = 1, [-31] = 1, [-24] = 1, [12] = 1, [-6] = 1, [23] = 1, [-3] = 1, [30] = 1, [33] = 1, [40] = 1, [-44] = 1, [-33] = 1, [3] = 1, [-23] = 1, [-16] = 1, [20] = 1}, [-45] = {[0] = 1, [9] = 1, [14] = 1, [3] = 1, [36] = 1, [-11] = 1, [-6] = 1, [2] = 1, [-17] = 1, [-12] = 1, [-3] = 1, [19] = 1, [33] = 1, [-18] = 1, [-9] = 1, [13] = 1, [18] = 1, [-24] = 1, [-15] = 1, [-10] = 1, [12] = 1, [21] = 1, [35] = 1, [-21] = 1, [-16] = 1, [-7] = 1, [1] = 1, [6] = 1, [15] = 1, [20] = 1, [34] = 1, [-8] = 1}, [-7] = {[-24] = 1, [-45] = 1, [48] = 1, [0] = 1, [-27] = 1, [36] = 1, [45] = 1, [54] = 1, [15] = 1, [-48] = 1, [-30] = 1, [-21] = 1, [24] = 1, [-12] = 1, [3] = 1, [-33] = 1, [21] = 1}, [-42] = {[31] = 1, [32] = 1, [-20] = 1, [-15] = 1, [33] = 1, [-19] = 1, [8] = 1, [3] = 1, [20] = 1, [-21] = 1, [-27] = 1, [-9] = 1, [9] = 1, [0] = 1, [18] = 1, [21] = 1, [-24] = 1, [-6] = 1, [-3] = 1, [-12] = 1, [14] = 1, [19] = 1, [36] = 1, [15] = 1, [6] = 1, [34] = 1, [-18] = 1, [-8] = 1, [12] = 1, [7] = 1, [30] = 1, [35] = 1, [-7] = 1, [13] = 1}, [-46] = {[-21] = 1, [-9] = 1, [-3] = 1, [-12] = 1, [9] = 1, [-6] = 1, [12] = 1, [18] = 1}, [3] = {[-50] = 1, [11] = 1, [-16] = 1, [-7] = 1, [50] = 1, [-20] = 1, [41] = 1, [-43] = 1, [46] = 1, [-38] = 1, [28] = 1, [5] = 1, [10] = 1, [-13] = 1, [-8] = 1, [53] = 1, [35] = 1, [-17] = 1, [40] = 1, [-44] = 1, [-35] = 1, [4] = 1, [-14] = 1, [-5] = 1, [52] = 1, [34] = 1, [-18] = 1, [43] = 1, [-41] = 1, [-36] = 1, [-59] = 1, [30] = 1, [-54] = 1, [7] = 1, [12] = 1, [-6] = 1, [-24] = 1, [37] = 1, [-47] = 1, [42] = 1, [-42] = 1, [19] = 1, [-33] = 1, [24] = 1, [-60] = 1, [-51] = 1, [6] = 1, [15] = 1, [-12] = 1, [49] = 1, [-3] = 1, [54] = 1, [-30] = 1, [-21] = 1, [36] = 1, [-48] = 1, [45] = 1, [-39] = 1, [18] = 1, [-34] = 1, [27] = 1, [-57] = 1, [0] = 1, [9] = 1, [-9] = 1, [48] = 1, [-4] = 1, [-27] = 1, [39] = 1, [-45] = 1, [44] = 1, [-40] = 1, [21] = 1, [-58] = 1, [3] = 1, [-49] = 1, [8] = 1, [-15] = 1, [51] = 1, [33] = 1, [-19] = 1, [38] = 1, [-46] = 1, [47] = 1, [-37] = 1, [20] = 1, [29] = 1}, [-33] = {[-36] = 1, [39] = 1, [21] = 1, [18] = 1, [27] = 1, [0] = 1, [-32] = 1, [9] = 1, [-33] = 1, [38] = 1, [20] = 1, [-12] = 1, [-3] = 1, [26] = 1, [-6] = 1, [3] = 1, [8] = 1, [-24] = 1, [-34] = 1, [33] = 1, [23] = 1, [-9] = 1, [5] = 1, [-27] = 1, [-30] = 1, [-21] = 1, [-39] = 1, [22] = 1, [4] = 1, [13] = 1, [17] = 1, [-15] = 1, [30] = 1, [7] = 1, [12] = 1, [-37] = 1, [37] = 1, [16] = 1, [-16] = 1, [25] = 1, [6] = 1, [15] = 1, [-17] = 1, [-35] = 1, [-38] = 1, [36] = 1, [45] = 1, [19] = 1, [24] = 1, [-31] = 1, [14] = 1, [-18] = 1}, [22] = {[12] = 1, [-39] = 1, [-27] = 1, [-24] = 1, [-3] = 1, [-42] = 1, [0] = 1, [27] = 1, [-36] = 1, [21] = 1, [-18] = 1, [24] = 1, [15] = 1, [-15] = 1}, [-27] = {[39] = 1, [32] = 1, [-36] = 1, [23] = 1, [-9] = 1, [25] = 1, [-7] = 1, [-30] = 1, [-21] = 1, [38] = 1, [47] = 1, [-37] = 1, [22] = 1, [31] = 1, [24] = 1, [-8] = 1, [-31] = 1, [51] = 1, [37] = 1, [46] = 1, [-38] = 1, [21] = 1, [30] = 1, [-1] = 1, [-2] = 1, [0] = 1, [9] = 1, [-32] = 1, [50] = 1, [36] = 1, [45] = 1, [-39] = 1, [-12] = 1, [6] = 1, [-3] = 1, [15] = 1, [49] = 1, [-24] = 1, [35] = 1, [44] = 1, [-42] = 1, [-33] = 1, [14] = 1, [-27] = 1, [-18] = 1, [48] = 1, [34] = 1, [43] = 1, [18] = 1, [27] = 1, [13] = 1, [33] = 1, [42] = 1, [26] = 1, [-15] = 1, [3] = 1, [-6] = 1, [12] = 1}, [27] = {[-39] = 1, [34] = 1, [-18] = 1, [9] = 1, [-25] = 1, [14] = 1, [7] = 1, [-11] = 1, [21] = 1, [37] = 1, [-24] = 1, [-31] = 1, [8] = 1, [-26] = 1, [6] = 1, [-12] = 1, [31] = 1, [20] = 1, [36] = 1, [-21] = 1, [-32] = 1, [11] = 1, [-7] = 1, [0] = 1, [25] = 1, [-9] = 1, [30] = 1, [39] = 1, [10] = 1, [-8] = 1, [3] = 1, [-15] = 1, [24] = 1, [-10] = 1, [17] = 1, [33] = 1, [38] = 1, [-30] = 1, [13] = 1, [-16] = 1, [27] = 1, [16] = 1, [-36] = 1, [32] = 1, [-27] = 1, [12] = 1, [-6] = 1, [5] = 1, [-13] = 1, [26] = 1, [19] = 1, [-33] = 1, [35] = 1, [-17] = 1, [15] = 1, [-3] = 1, [4] = 1, [-14] = 1, [18] = 1}, [12] = {[50] = 1, [25] = 1, [16] = 1, [-11] = 1, [15] = 1, [6] = 1, [-21] = 1, [-30] = 1, [51] = 1, [42] = 1, [33] = 1, [-36] = 1, [26] = 1, [17] = 1, [-10] = 1, [-28] = 1, [-29] = 1, [-35] = 1, [-45] = 1, [28] = 1, [27] = 1, [-8] = 1, [18] = 1, [-9] = 1, [9] = 1, [-18] = 1, [0] = 1, [-27] = 1, [45] = 1, [36] = 1, [-34] = 1, [29] = 1, [-7] = 1, [-26] = 1, [46] = 1, [37] = 1, [-33] = 1, [-42] = 1, [-51] = 1, [30] = 1, [21] = 1, [-6] = 1, [12] = 1, [-15] = 1, [-24] = 1, [-25] = 1, [48] = 1, [47] = 1, [38] = 1, [22] = 1, [4] = 1, [3] = 1, [49] = 1, [39] = 1, [-39] = 1, [-48] = 1, [24] = 1, [-3] = 1, [23] = 1, [-12] = 1, [5] = 1}, [34] = {[3] = 1, [0] = 1, [27] = 1, [18] = 1, [15] = 1, [6] = 1, [-15] = 1, [-27] = 1, [-9] = 1, [-21] = 1, [-30] = 1, [-3] = 1, [-12] = 1, [-24] = 1}, [24] = {[21] = 1, [28] = 1, [-19] = 1, [-12] = 1, [37] = 1, [-5] = 1, [44] = 1, [1] = 1, [8] = 1, [15] = 1, [29] = 1, [-32] = 1, [-18] = 1, [-11] = 1, [38] = 1, [-4] = 1, [45] = 1, [2] = 1, [9] = 1, [-33] = 1, [30] = 1, [-31] = 1, [-24] = 1, [32] = 1, [-10] = 1, [39] = 1, [-3] = 1, [3] = 1, [-39] = 1, [10] = 1, [24] = 1, [31] = 1, [-30] = 1, [33] = 1, [-9] = 1, [40] = 1, [-45] = 1, [4] = 1, [11] = 1, [18] = 1, [-29] = 1, [-15] = 1, [34] = 1, [-8] = 1, [41] = 1, [-44] = 1, [5] = 1, [12] = 1, [19] = 1, [-28] = 1, [-21] = 1, [35] = 1, [-7] = 1, [42] = 1, [-43] = 1, [6] = 1, [-36] = 1, [20] = 1, [27] = 1, [-27] = 1, [-20] = 1, [36] = 1, [-6] = 1, [43] = 1, [0] = 1, [-42] = 1, [7] = 1}, [-36] = {[16] = 1, [41] = 1, [-31] = 1, [-9] = 1, [13] = 1, [4] = 1, [-36] = 1, [3] = 1, [17] = 1, [-21] = 1, [42] = 1, [-30] = 1, [33] = 1, [-16] = 1, [14] = 1, [5] = 1, [-35] = 1, [28] = 1, [27] = 1, [18] = 1, [-28] = 1, [-29] = 1, [34] = 1, [-6] = 1, [-15] = 1, [15] = 1, [6] = 1, [-34] = 1, [29] = 1, [20] = 1, [19] = 1, [-18] = 1, [-27] = 1, [36] = 1, [35] = 1, [8] = 1, [7] = 1, [-33] = 1, [30] = 1, [21] = 1, [-17] = 1, [-26] = 1, [37] = 1, [-3] = 1, [-12] = 1, [9] = 1, [0] = 1, [22] = 1, [-24] = 1, [-25] = 1, [38] = 1, [10] = 1, [24] = 1, [23] = 1, [40] = 1, [-32] = 1, [39] = 1, [12] = 1, [11] = 1}, [0] = {[14] = 1, [5] = 1, [28] = 1, [19] = 1, [-24] = 1, [-3] = 1, [-12] = 1, [-53] = 1, [-39] = 1, [-48] = 1, [-41] = 1, [49] = 1, [8] = 1, [15] = 1, [6] = 1, [29] = 1, [20] = 1, [-23] = 1, [-32] = 1, [-1] = 1, [-2] = 1, [-11] = 1, [-52] = 1, [-38] = 1, [45] = 1, [36] = 1, [50] = 1, [9] = 1, [0] = 1, [7] = 1, [30] = 1, [21] = 1, [-22] = 1, [-31] = 1, [-10] = 1, [-51] = 1, [-60] = 1, [-37] = 1, [46] = 1, [51] = 1, [1] = 1, [24] = 1, [22] = 1, [-21] = 1, [-30] = 1, [-9] = 1, [-50] = 1, [-59] = 1, [-36] = 1, [47] = 1, [-45] = 1, [52] = 1, [2] = 1, [16] = 1, [23] = 1, [-20] = 1, [-6] = 1, [-15] = 1, [-56] = 1, [-49] = 1, [-58] = 1, [-35] = 1, [39] = 1, [53] = 1, [12] = 1, [3] = 1, [17] = 1, [-19] = 1, [-5] = 1, [-55] = 1, [-57] = 1, [42] = 1, [-34] = 1, [33] = 1, [54] = 1, [13] = 1, [4] = 1, [27] = 1, [18] = 1, [-18] = 1, [-27] = 1, [-4] = 1, [-54] = 1, [-40] = 1, [-33] = 1, [-42] = 1, [48] = 1}, [50] = {[18] = 1, [-3] = 1, [3] = 1, [0] = 1, [21] = 1}, [-50] = {[-18] = 1, [-15] = 1, [-9] = 1, [-12] = 1, [6] = 1, [9] = 1, [-3] = 1}, [35] = {[-15] = 1, [6] = 1, [15] = 1, [18] = 1, [27] = 1, [-24] = 1, [0] = 1, [-12] = 1, [-3] = 1, [-30] = 1, [-21] = 1, [3] = 1, [-9] = 1, [-27] = 1}, [1] = {[33] = 1, [-27] = 1, [-9] = 1, [-45] = 1, [-3] = 1, [12] = 1, [-30] = 1, [3] = 1, [-57] = 1, [-24] = 1, [-12] = 1, [27] = 1, [-48] = 1, [-15] = 1, [-54] = 1, [15] = 1, [0] = 1, [18] = 1, [24] = 1, [-36] = 1}, [-48] = {[12] = 1, [3] = 1, [-19] = 1, [4] = 1, [-16] = 1, [-9] = 1, [-18] = 1, [5] = 1, [-6] = 1, [-15] = 1, [-17] = 1, [8] = 1, [6] = 1, [-14] = 1, [18] = 1, [9] = 1, [0] = 1, [7] = 1, [-13] = 1, [1] = 1, [-3] = 1, [-12] = 1, [-21] = 1, [2] = 1, [-20] = 1}, [4] = {[42] = 1, [-30] = 1, [-48] = 1, [-33] = 1, [18] = 1, [15] = 1, [-57] = 1, [48] = 1, [-21] = 1, [-39] = 1, [39] = 1, [-45] = 1, [3] = 1, [-18] = 1, [-36] = 1, [33] = 1, [-42] = 1, [-6] = 1}, [45] = {[-9] = 1, [19] = 1, [12] = 1, [5] = 1, [-3] = 1, [18] = 1, [11] = 1, [4] = 1, [-4] = 1, [-18] = 1, [24] = 1, [10] = 1, [3] = 1, [-5] = 1, [-12] = 1, [23] = 1, [9] = 1, [2] = 1, [-6] = 1, [-13] = 1, [-27] = 1, [22] = 1, [15] = 1, [1] = 1, [-14] = 1, [21] = 1, [0] = 1, [-15] = 1, [20] = 1, [6] = 1}, [7] = {[15] = 1, [45] = 1, [42] = 1, [-57] = 1, [24] = 1, [-9] = 1, [9] = 1, [-45] = 1, [36] = 1, [39] = 1, [21] = 1, [18] = 1, [48] = 1, [-54] = 1, [3] = 1, [-6] = 1, [-24] = 1, [33] = 1, [-39] = 1, [-42] = 1}, [8] = {[45] = 1, [-54] = 1, [39] = 1, [-42] = 1, [33] = 1, [24] = 1, [-6] = 1, [-24] = 1, [18] = 1, [42] = 1, [-39] = 1, [-57] = 1, [15] = 1, [36] = 1, [-45] = 1, [9] = 1, [48] = 1, [21] = 1, [3] = 1, [-9] = 1}, [-44] = {[-24] = 1, [-9] = 1, [12] = 1, [18] = 1, [6] = 1, [33] = 1, [-15] = 1, [9] = 1, [-3] = 1, [3] = 1}, [-12] = {[-47] = 1, [-40] = 1, [41] = 1, [48] = 1, [6] = 1, [-24] = 1, [-9] = 1, [20] = 1, [-1] = 1, [-2] = 1, [19] = 1, [-46] = 1, [-39] = 1, [36] = 1, [42] = 1, [49] = 1, [-30] = 1, [21] = 1, [27] = 1, [-51] = 1, [-45] = 1, [-38] = 1, [50] = 1, [-28] = 1, [-29] = 1, [0] = 1, [15] = 1, [-15] = 1, [22] = 1, [-50] = 1, [-36] = 1, [-37] = 1, [45] = 1, [52] = 1, [51] = 1, [-27] = 1, [-21] = 1, [-14] = 1, [23] = 1, [30] = 1, [-49] = 1, [-42] = 1, [39] = 1, [46] = 1, [53] = 1, [-26] = 1, [-12] = 1, [9] = 1, [-13] = 1, [16] = 1, [-6] = 1, [-41] = 1, [47] = 1, [54] = 1, [-25] = 1, [-18] = 1, [3] = 1, [-11] = 1, [17] = 1, [24] = 1, [-48] = 1, [-33] = 1, [33] = 1, [40] = 1, [12] = 1, [-10] = 1, [-3] = 1, [18] = 1}, [54] = {[-1] = 1, [-2] = 1, [13] = 1, [2] = 1, [-4] = 1, [-9] = 1, [3] = 1, [-6] = 1, [-3] = 1, [-12] = 1, [9] = 1, [0] = 1, [18] = 1, [-5] = 1, [14] = 1, [1] = 1, [-8] = 1, [15] = 1, [6] = 1, [-7] = 1, [12] = 1}, [-15] = {[37] = 1, [-33] = 1, [-48] = 1, [27] = 1, [21] = 1, [-18] = 1, [-25] = 1, [42] = 1, [36] = 1, [-41] = 1, [26] = 1, [-6] = 1, [6] = 1, [-12] = 1, [48] = 1, [-26] = 1, [41] = 1, [-42] = 1, [25] = 1, [18] = 1, [11] = 1, [-7] = 1, [12] = 1, [-21] = 1, [-27] = 1, [40] = 1, [33] = 1, [-37] = 1, [-36] = 1, [24] = 1, [10] = 1, [-8] = 1, [3] = 1, [-15] = 1, [47] = 1, [32] = 1, [-38] = 1, [31] = 1, [9] = 1, [-16] = 1, [-30] = 1, [46] = 1, [39] = 1, [-39] = 1, [30] = 1, [23] = 1, [-9] = 1, [-24] = 1, [45] = 1, [38] = 1, [-40] = 1, [22] = 1, [15] = 1, [-3] = 1, [0] = 1, [-17] = 1}, [29] = {[-24] = 1, [-6] = 1, [27] = 1, [36] = 1, [0] = 1, [-36] = 1, [24] = 1, [33] = 1, [-21] = 1, [12] = 1, [30] = 1, [-30] = 1, [3] = 1, [21] = 1}, [26] = {[-3] = 1, [-24] = 1, [-6] = 1, [-39] = 1, [27] = 1, [-36] = 1, [30] = 1, [-30] = 1, [3] = 1, [0] = 1}, [-39] = {[12] = 1, [21] = 1, [-17] = 1, [-16] = 1, [37] = 1, [-34] = 1, [-27] = 1, [-18] = 1, [-9] = 1, [35] = 1, [36] = 1, [-35] = 1, [0] = 1, [9] = 1, [18] = 1, [-29] = 1, [-28] = 1, [34] = 1, [-36] = 1, [7] = 1, [8] = 1, [17] = 1, [-30] = 1, [-21] = 1, [33] = 1, [6] = 1, [15] = 1, [16] = 1, [-12] = 1, [-3] = 1, [5] = 1, [23] = 1, [24] = 1, [39] = 1, [3] = 1, [4] = 1, [22] = 1, [-24] = 1, [-15] = 1, [-6] = 1, [38] = 1, [-33] = 1}, [13] = {[6] = 1, [-3] = 1, [-24] = 1, [12] = 1, [-33] = 1, [-18] = 1, [24] = 1, [3] = 1, [-42] = 1, [-6] = 1, [9] = 1, [45] = 1, [-21] = 1, [-51] = 1, [-15] = 1, [21] = 1, [0] = 1, [-45] = 1, [27] = 1}, [25] = {[3] = 1, [30] = 1, [-36] = 1, [-30] = 1, [0] = 1, [27] = 1, [-3] = 1, [-39] = 1, [-24] = 1, [-6] = 1}, [28] = {[24] = 1, [-21] = 1, [-30] = 1, [12] = 1, [-6] = 1, [3] = 1, [33] = 1, [27] = 1, [-24] = 1, [36] = 1, [30] = 1, [21] = 1, [0] = 1, [-36] = 1}, [-13] = {[39] = 1, [3] = 1, [33] = 1, [-36] = 1, [30] = 1, [-6] = 1, [-33] = 1, [-12] = 1, [-3] = 1, [-48] = 1, [18] = 1, [-9] = 1, [12] = 1, [21] = 1, [-15] = 1, [6] = 1, [15] = 1, [-30] = 1, [-21] = 1, [0] = 1, [-27] = 1}, [-22] = {[-30] = 1, [36] = 1, [3] = 1, [-15] = 1, [30] = 1, [0] = 1, [-9] = 1, [6] = 1, [-12] = 1, [21] = 1, [9] = 1, [18] = 1, [-3] = 1, [33] = 1, [-42] = 1, [-6] = 1, [-27] = 1, [39] = 1}, [44] = {[15] = 1, [6] = 1, [-3] = 1, [-12] = 1, [18] = 1, [9] = 1, [-9] = 1, [-18] = 1, [-27] = 1, [24] = 1}, [38] = {[9] = 1, [0] = 1, [6] = 1, [-21] = 1, [-15] = 1, [-24] = 1, [24] = 1, [3] = 1}, [-25] = {[-6] = 1, [-24] = 1, [9] = 1, [6] = 1, [42] = 1, [-21] = 1, [-12] = 1, [21] = 1, [18] = 1, [0] = 1, [-30] = 1, [3] = 1, [-36] = 1, [12] = 1, [-15] = 1, [-18] = 1, [33] = 1, [-39] = 1}, [53] = {[9] = 1, [18] = 1, [6] = 1, [3] = 1, [12] = 1, [-12] = 1}, [-23] = {[6] = 1, [18] = 1, [-12] = 1, [-3] = 1, [39] = 1, [3] = 1, [-27] = 1, [-15] = 1, [-6] = 1, [-42] = 1, [-30] = 1, [36] = 1, [0] = 1, [9] = 1, [-9] = 1, [21] = 1, [30] = 1, [33] = 1}, [5] = {[39] = 1, [-45] = 1, [-36] = 1, [18] = 1, [3] = 1, [-18] = 1, [-48] = 1, [-39] = 1, [-42] = 1, [-33] = 1, [-6] = 1, [48] = 1, [-57] = 1, [15] = 1, [-30] = 1, [-21] = 1, [33] = 1, [42] = 1}, [-5] = {[45] = 1, [0] = 1, [24] = 1, [-18] = 1, [27] = 1, [-45] = 1, [-24] = 1, [12] = 1, [-21] = 1, [-9] = 1, [18] = 1, [-36] = 1, [-15] = 1, [21] = 1, [-33] = 1, [-30] = 1}, [-41] = {[3] = 1, [12] = 1, [-15] = 1, [-27] = 1, [-3] = 1, [18] = 1, [-18] = 1, [6] = 1, [-12] = 1, [-24] = 1, [0] = 1, [-9] = 1, [36] = 1}, [-2] = {[42] = 1, [45] = 1, [-12] = 1, [15] = 1, [-42] = 1, [27] = 1, [12] = 1, [33] = 1, [-6] = 1, [-3] = 1, [3] = 1, [-30] = 1, [-27] = 1, [39] = 1, [36] = 1, [-45] = 1, [6] = 1, [9] = 1, [-9] = 1, [18] = 1, [21] = 1, [-24] = 1}, [-19] = {[18] = 1, [45] = 1, [-30] = 1, [-24] = 1, [-18] = 1, [21] = 1, [-12] = 1, [0] = 1, [-33] = 1, [27] = 1, [-6] = 1, [-48] = 1, [12] = 1, [-21] = 1, [-42] = 1}, [-1] = {[42] = 1, [45] = 1, [-12] = 1, [15] = 1, [-42] = 1, [27] = 1, [12] = 1, [33] = 1, [-6] = 1, [-3] = 1, [3] = 1, [-30] = 1, [-27] = 1, [39] = 1, [36] = 1, [-45] = 1, [6] = 1, [9] = 1, [-9] = 1, [18] = 1, [21] = 1, [-24] = 1}, [-37] = {[-33] = 1, [-3] = 1, [36] = 1, [0] = 1, [3] = 1, [-24] = 1, [-12] = 1, [-21] = 1, [-9] = 1, [12] = 1, [-15] = 1, [15] = 1, [21] = 1, [-27] = 1, [-6] = 1}, [23] = {[-15] = 1, [0] = 1, [-27] = 1, [24] = 1, [-39] = 1, [-42] = 1, [-3] = 1, [12] = 1, [27] = 1, [-18] = 1, [15] = 1, [21] = 1, [-24] = 1, [-36] = 1}, [-29] = {[-9] = 1, [-27] = 1, [30] = 1, [-15] = 1, [12] = 1, [6] = 1, [27] = 1, [0] = 1, [42] = 1, [-42] = 1, [21] = 1, [3] = 1, [-18] = 1, [-39] = 1, [-6] = 1, [39] = 1, [-3] = 1, [-30] = 1, [-21] = 1, [33] = 1}, [-17] = {[33] = 1, [12] = 1, [18] = 1, [-24] = 1, [-15] = 1, [6] = 1, [-36] = 1, [-27] = 1, [-30] = 1, [0] = 1, [45] = 1, [3] = 1, [-48] = 1, [39] = 1, [-12] = 1, [-3] = 1, [-6] = 1}, [-8] = {[-21] = 1, [-48] = 1, [3] = 1, [-27] = 1, [24] = 1, [45] = 1, [-33] = 1, [-12] = 1, [54] = 1, [-45] = 1, [-24] = 1, [48] = 1, [0] = 1, [-30] = 1, [21] = 1, [15] = 1, [36] = 1}, [-32] = {[0] = 1, [30] = 1, [21] = 1, [-18] = 1, [-27] = 1, [45] = 1, [36] = 1, [-24] = 1, [-3] = 1, [-12] = 1, [3] = 1, [-36] = 1, [-21] = 1, [-30] = 1, [-9] = 1, [33] = 1, [-6] = 1}, [-26] = {[42] = 1, [-6] = 1, [-12] = 1, [6] = 1, [18] = 1, [21] = 1, [12] = 1, [-36] = 1, [-21] = 1, [-30] = 1, [33] = 1, [-15] = 1, [-24] = 1, [3] = 1, [9] = 1, [0] = 1, [-39] = 1, [-18] = 1}, [10] = {[12] = 1, [-21] = 1, [-48] = 1, [-24] = 1, [33] = 1, [3] = 1, [-18] = 1, [-39] = 1, [0] = 1, [-3] = 1, [36] = 1, [-33] = 1, [-6] = 1, [-27] = 1, [51] = 1, [21] = 1, [9] = 1, [45] = 1, [-15] = 1, [15] = 1, [42] = 1}, [-54] = {[-10] = 1, [-15] = 1, [-9] = 1, [-12] = 1, [-11] = 1, [-18] = 1, [-17] = 1, [-6] = 1, [12] = 1, [-16] = 1}, [6] = {[51] = 1, [42] = 1, [45] = 1, [36] = 1, [31] = 1, [-13] = 1, [-22] = 1, [9] = 1, [0] = 1, [-33] = 1, [-42] = 1, [48] = 1, [34] = 1, [-21] = 1, [-30] = 1, [1] = 1, [-27] = 1, [-36] = 1, [49] = 1, [-50] = 1, [35] = 1, [26] = 1, [-1] = 1, [-2] = 1, [-15] = 1, [20] = 1, [-24] = 1, [15] = 1, [6] = 1, [-49] = 1, [-58] = 1, [32] = 1, [27] = 1, [18] = 1, [-10] = 1, [21] = 1, [-23] = 1, [12] = 1, [7] = 1, [-52] = 1, [-57] = 1, [46] = 1, [33] = 1, [24] = 1, [19] = 1, [-9] = 1, [10] = 1, [-18] = 1, [4] = 1, [-45] = 1, [-54] = 1, [-51] = 1, [-60] = 1, [47] = 1, [-6] = 1, [25] = 1, [-3] = 1, [-12] = 1, [11] = 1, [2] = 1, [-26] = 1, [5] = 1, [-39] = 1, [-48] = 1, [-53] = 1, [-59] = 1, [50] = 1, [39] = 1, [30] = 1, [-14] = 1, [-11] = 1, [8] = 1, [3] = 1, [-25] = 1}, [40] = {[-9] = 1, [-27] = 1, [-15] = 1, [6] = 1, [18] = 1, [0] = 1, [-6] = 1, [3] = 1, [-21] = 1}, [-35] = {[-12] = 1, [0] = 1, [-6] = 1, [-18] = 1, [30] = 1, [-27] = 1, [-9] = 1, [3] = 1, [-21] = 1, [-3] = 1, [36] = 1}, [60] = {[2] = 1, [3] = 1, [6] = 1, [8] = 1, [7] = 1, [9] = 1, [0] = 1, [1] = 1}, [20] = {[3] = 1, [24] = 1, [-42] = 1, [39] = 1, [-27] = 1, [-48] = 1, [21] = 1, [27] = 1, [0] = 1, [-39] = 1, [-3] = 1, [-36] = 1}, [31] = {[-12] = 1, [-6] = 1, [-24] = 1, [24] = 1, [-9] = 1, [3] = 1, [-15] = 1, [33] = 1, [-18] = 1, [30] = 1}, [57] = {[2] = 1, [11] = 1, [12] = 1, [1] = 1, [10] = 1, [0] = 1, [9] = 1, [-3] = 1, [6] = 1, [5] = 1, [3] = 1, [4] = 1}, [-10] = {[-36] = 1, [3] = 1, [45] = 1, [36] = 1, [9] = 1, [0] = 1, [27] = 1, [-21] = 1, [-45] = 1, [-24] = 1, [-6] = 1, [15] = 1, [6] = 1, [12] = 1, [30] = 1, [-18] = 1, [51] = 1, [-33] = 1}, [-31] = {[3] = 1, [-21] = 1, [21] = 1, [-27] = 1, [-9] = 1, [45] = 1, [-3] = 1, [0] = 1, [-30] = 1, [-24] = 1, [-6] = 1, [36] = 1, [-12] = 1, [-36] = 1, [30] = 1, [-18] = 1, [33] = 1}, [-57] = {[-11] = 1, [-12] = 1, [-9] = 1, [-10] = 1, [-15] = 1}, [14] = {[12] = 1, [-45] = 1, [3] = 1, [0] = 1, [21] = 1, [-21] = 1, [-24] = 1, [-6] = 1, [-3] = 1, [-42] = 1, [45] = 1, [6] = 1, [9] = 1, [27] = 1, [24] = 1, [-18] = 1, [-15] = 1, [-51] = 1, [-33] = 1}, [-40] = {[-27] = 1, [3] = 1, [-12] = 1, [-18] = 1, [18] = 1, [-24] = 1, [12] = 1, [-3] = 1, [6] = 1, [-9] = 1, [36] = 1, [0] = 1, [-15] = 1}, [33] = {[-21] = 1, [11] = 1, [12] = 1, [-27] = 1, [5] = 1, [-1] = 1, [-2] = 1, [30] = 1, [-9] = 1, [33] = 1, [10] = 1, [3] = 1, [4] = 1, [-3] = 1, [29] = 1, [-33] = 1, [9] = 1, [-30] = 1, [2] = 1, [27] = 1, [28] = 1, [21] = 1, [-24] = 1, [8] = 1, [-31] = 1, [1] = 1, [-6] = 1, [19] = 1, [-12] = 1, [20] = 1, [15] = 1, [-32] = 1, [0] = 1, [18] = 1, [-18] = 1, [14] = 1, [-25] = 1, [7] = 1, [24] = 1, [-15] = 1, [17] = 1, [13] = 1, [-26] = 1, [6] = 1, [16] = 1}, [-14] = {[-21] = 1, [-30] = 1, [30] = 1, [33] = 1, [-15] = 1, [3] = 1, [39] = 1, [-9] = 1, [0] = 1, [-48] = 1, [-3] = 1, [-12] = 1, [15] = 1, [6] = 1, [-33] = 1, [-6] = 1, [21] = 1, [12] = 1, [-36] = 1, [18] = 1, [-27] = 1}, [2] = {[3] = 1, [-54] = 1, [-36] = 1, [0] = 1, [27] = 1, [18] = 1, [15] = 1, [24] = 1, [-15] = 1, [12] = 1, [-27] = 1, [-9] = 1, [-30] = 1, [-3] = 1, [-12] = 1, [-45] = 1, [33] = 1, [-24] = 1, [-57] = 1, [-48] = 1}, [-55] = {[-12] = 1, [-15] = 1}, [42] = {[13] = 1, [-9] = 1, [-1] = 1, [-2] = 1, [-21] = 1, [24] = 1, [3] = 1, [10] = 1, [-12] = 1, [0] = 1, [11] = 1, [-11] = 1, [-18] = 1, [20] = 1, [6] = 1, [8] = 1, [-3] = 1, [-17] = 1, [21] = 1, [7] = 1, [14] = 1, [9] = 1, [-6] = 1, [-27] = 1, [18] = 1, [15] = 1, [-16] = 1, [19] = 1, [12] = 1, [-10] = 1, [-15] = 1}, [-16] = {[-36] = 1, [39] = 1, [33] = 1, [-27] = 1, [6] = 1, [-6] = 1, [-15] = 1, [-24] = 1, [18] = 1, [0] = 1, [45] = 1, [-48] = 1, [-3] = 1, [-12] = 1, [-30] = 1, [12] = 1, [3] = 1}, [-20] = {[-33] = 1, [-42] = 1, [27] = 1, [18] = 1, [0] = 1, [-12] = 1, [-21] = 1, [-30] = 1, [-48] = 1, [21] = 1, [12] = 1, [-18] = 1, [-6] = 1, [-24] = 1, [45] = 1}, [55] = {[3] = 1, [12] = 1, [-3] = 1}, [-49] = {[-15] = 1, [6] = 1, [9] = 1, [-12] = 1, [-3] = 1, [-18] = 1, [-9] = 1}, [-52] = {[-12] = 1, [12] = 1, [-6] = 1, [-15] = 1}, [52] = {[12] = 1, [18] = 1, [6] = 1, [-12] = 1, [9] = 1, [3] = 1}, [37] = {[3] = 1, [-24] = 1, [24] = 1, [0] = 1, [9] = 1, [6] = 1, [-15] = 1, [-21] = 1}, [49] = {[0] = 1, [21] = 1, [18] = 1, [3] = 1, [-3] = 1}, [-28] = {[-6] = 1, [21] = 1, [27] = 1, [-30] = 1, [3] = 1, [-39] = 1, [39] = 1, [-3] = 1, [30] = 1, [12] = 1, [-9] = 1, [-27] = 1, [-21] = 1, [6] = 1, [33] = 1, [-42] = 1, [-15] = 1, [-18] = 1, [0] = 1, [42] = 1}, [-47] = {[-6] = 1, [-12] = 1, [-21] = 1, [18] = 1, [12] = 1, [-9] = 1, [9] = 1, [-3] = 1}, [-38] = {[-21] = 1, [-3] = 1, [15] = 1, [-24] = 1, [-6] = 1, [12] = 1, [-33] = 1, [36] = 1, [-15] = 1, [3] = 1, [21] = 1, [-27] = 1, [-9] = 1, [0] = 1, [-12] = 1}, [-53] = {[-15] = 1, [12] = 1, [-6] = 1, [-12] = 1}, [16] = {[21] = 1, [12] = 1, [-6] = 1, [-24] = 1, [33] = 1, [24] = 1, [-33] = 1, [6] = 1, [-12] = 1, [-39] = 1, [-48] = 1, [36] = 1, [27] = 1, [18] = 1, [9] = 1, [0] = 1}, [59] = {[6] = 1, [0] = 1}, [41] = {[-27] = 1, [6] = 1, [-15] = 1, [18] = 1, [-6] = 1, [3] = 1, [-21] = 1, [-9] = 1, [0] = 1}, [63] = {[0] = 1}, [47] = {[24] = 1, [12] = 1, [21] = 1, [18] = 1, [6] = 1, [-6] = 1, [9] = 1, [-9] = 1, [3] = 1}, [61] = {[0] = 1}, [43] = {[-18] = 1, [24] = 1, [15] = 1, [-3] = 1, [9] = 1, [6] = 1, [-12] = 1, [18] = 1, [-9] = 1, [-27] = 1}, [-56] = {[-15] = 1, [-12] = 1}, [56] = {[3] = 1, [-3] = 1, [12] = 1}, [62] = {[0] = 1}, [58] = {[0] = 1, [6] = 1}} + +local function tbl2key(tbl) + return tbl[1] .. "," .. tbl[2] +end + +local cities = { + [tbl2key({6, -8})] = "Edinburgh Waverley", + [tbl2key({11, 0})] = "Newcastle Central", + [tbl2key({4, 9})] = "Liverpool Lime Street", + [tbl2key({9, 15})] = "Birmingham New Street", + [tbl2key({15, 21})] = "London Euston", + [tbl2key({4, 21})] = "Bristol Temple Meads", + [tbl2key({16, 15})] = "Cambridge", +} + +local function connect_line(s, e) + local bitmap = global.bitmap + for i = s[1], e[1] do + if global.bitmap[i] == nil then + bitmap[i] = {} + end + bitmap[i][s[2]] = 1 + end + for j = s[2], e[2] do + if bitmap[e[1]] == nil then + bitmap[e[1]] = {} + end + bitmap[e[1]][j] = 1 + end +end + +local function on_init() + global.bitmap = {} + connect_line({ 6, -8}, { 6, 0}) + connect_line({ 6, 0}, { 11, 0}) + connect_line({ 9, 0}, { 9, 9}) + connect_line({ 4, 9}, { 12, 9}) + connect_line({ 9, 15}, { 16, 15}) + connect_line({ 12, 9}, { 12, 21}) + connect_line({ 4, 21}, { 15, 21}) +end + +Event.register(-1, on_init) local function build_intersection(type, origin, rot) local surface = game.surfaces[1] for _, v in pairs(rail_grid[type]) do local pos = rot_pos(v.position, rot) local dir = rot_dir(v.direction, rot) - surface.create_entity{name=v.name, position={origin.x + pos.x, origin.y + pos.y}, force="neutral", direction=dir} + local ety = surface.create_entity{name=v.name, position={origin.x + pos.x, origin.y + pos.y}, force="neutral", direction=dir} + if v.name == "train-stop" then + ety.backer_name = cities[tbl2key({origin.x/32, origin.y/32})] + end end end @@ -71,6 +116,7 @@ local function build_chunk(origin, dirs) end local function is_on_grid(gx, gy) + local bitmap = global.bitmap if bitmap[gx] and bitmap[gx][gy] == 1 then return true else @@ -126,6 +172,9 @@ function mymodule.on_chunk_generated(event) for _, e in pairs(surface.find_entities_filtered{area=bd_box, type="simple-entity"}) do e.destroy() end + for _, e in pairs(surface.find_entities_filtered{area=bd_box, force="enemy"}) do + e.destroy() + end build_chunk({x=gx*chunk_size, y=gy*chunk_size}, find_connections(gx, gy)) end end diff --git a/locale/gen_ores/harmonic_gen.lua b/locale/gen_ores/harmonic_gen.lua new file mode 100644 index 00000000..56f4dad3 --- /dev/null +++ b/locale/gen_ores/harmonic_gen.lua @@ -0,0 +1,52 @@ +require "locale.gen_shared.perlin_noise" + +-- list of {x, y, ore_type, size, richness, rng_seed} +local ctrs = { + {1, -15, "iron-ore", 0.3, 400, 113}, + {15, 15, "copper-ore", 0.3, 400, 80}, + {4, 21, "coal", 0.25, 640, 31}, + {10, 0, "stone", 0.5, 100, 17}, + {-17, 7, "uranium-ore", 0.6, 100, 203} +} + +local function harmonic(x, y) + local max_idx = 0 + local max = -1 + local richness = 0 + for i, e in ipairs(ctrs) do + local noise = perlin:noise(x/32, y/32, ctrs[i][6]) + local h_coeff = 1/(1 + .05*math.sqrt((x/32 - ctrs[i][1])*(x/32 - ctrs[i][1]) + (y/32 - ctrs[i][2])*(y/32 - ctrs[i][2]))) + if noise > max and noise > h_coeff*ctrs[i][4] + (1-h_coeff) then + max = noise + max_idx = i + richness = (40*(1-h_coeff) + 0.5*h_coeff) * ctrs[i][5] + end + end + return max, max_idx, richness +end + +--generate ores for entire chunk +function run_ores_module(event) + local area = event.area + local surface = event.surface + if math.abs(area.left_top.x / 32) < 3 and math.abs(area.left_top.y / 32) < 3 then + return + end + local entities = surface.find_entities_filtered{type="resource", area=area} + for _, entity in ipairs(entities) do + entity.destroy() + end + local eties = {} + for i = 0,31 do + for j = 0,31 do + local pos = {area.left_top.x + i, area.left_top.y + j} + local max, max_idx, richness = harmonic(pos[1], pos[2]) + if -1 ~= max then + local ety = {name = ctrs[max_idx][3], position = pos, force="neutral", amount=richness} + if surface.can_place_entity(ety) then + surface.create_entity(ety) + end + end + end + end +end diff --git a/map_layout.lua b/map_layout.lua index 10ac6515..8e548ec2 100644 --- a/map_layout.lua +++ b/map_layout.lua @@ -12,6 +12,7 @@ in this file and your run_*type*_module(event) function will be called. --require "locale.gen_combined.borg_planet_v2" --require "locale.gen_combined.dimentions" --require "locale.gen_combined.dagobah_swamp" +--require "locale.gen_combined.uk" --grilledham's maps --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.mobius_strip" @@ -25,7 +26,7 @@ in this file and your run_*type*_module(event) function will be called. --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.goat" --shapes-- -require "locale.gen_shape.left" +--require "locale.gen_shape.left" --require "locale.gen_shape.right" --require "locale.gen_shape.up" --require "locale.gen_shape.maze" @@ -49,7 +50,8 @@ require "locale.gen_shape.left" --ores-- --require "locale.gen_ores.neko_crazy_ores" --require "locale.gen_ores.fluffy_rainbows" -require "locale.gen_ores.rso.rso_control" +--require "locale.gen_ores.rso.rso_control" +--require "locale.gen_ores.harmonic_gen" --everything else. You may use more than one of these, but beware they might not be compatible miscs = {} @@ -83,6 +85,9 @@ local on_chunk_generated = function(event) end else run_combined_module(event) + for _,v in pairs(miscs) do + v.on_chunk_generated(event) + end if run_ores_module ~= nil then run_ores_module(event) end From dae8b0bdb19f35c8c3c9abe1daa73d4c7f7b1629 Mon Sep 17 00:00:00 2001 From: Valansch Date: Sun, 12 Nov 2017 15:55:55 +0100 Subject: [PATCH 2/2] moved UK map to grilledham_map_gen --- .../data/UK.lua} | 0 .../presets/UK.lua} | 30 +++++++++---------- map_layout.lua | 5 ++-- 3 files changed, 18 insertions(+), 17 deletions(-) rename locale/gen_combined/{uk_data.lua => grilledham_map_gen/data/UK.lua} (100%) rename locale/gen_combined/{uk.lua => grilledham_map_gen/presets/UK.lua} (71%) diff --git a/locale/gen_combined/uk_data.lua b/locale/gen_combined/grilledham_map_gen/data/UK.lua similarity index 100% rename from locale/gen_combined/uk_data.lua rename to locale/gen_combined/grilledham_map_gen/data/UK.lua diff --git a/locale/gen_combined/uk.lua b/locale/gen_combined/grilledham_map_gen/presets/UK.lua similarity index 71% rename from locale/gen_combined/uk.lua rename to locale/gen_combined/grilledham_map_gen/presets/UK.lua index e4330337..aa6d5afc 100644 --- a/locale/gen_combined/uk.lua +++ b/locale/gen_combined/grilledham_map_gen/presets/UK.lua @@ -1,13 +1,13 @@ require "locale.gen_combined.grilledham_map_gen.builders" -local pic = require "locale.gen_combined.uk_data" +local pic = require "locale.gen_combined.grilledham_map_gen.data.UK" local pic = decompress(pic) local map = picture_builder(pic) -- this changes the size of the map map = scale(map, 2, 2) --- this moves the map, effectively changing the spawn point. +-- this moves the map, effectively changing the spawn point. map = translate(map, 0, 10) -- this sets the tile outside the bounds of the map to deepwater, remove this and it will be void. @@ -26,29 +26,29 @@ function run_combined_module(event) -- place tiles over the edge of chunks to reduce tile artefacts on chunk boundaries. for y = top_y - 1, top_y + 32 do for x = top_x - 1, top_x + 32 do - - -- local coords need to be 'centered' to allow for correct rotation and scaling. - local tile, entity = map(x + 0.5, y + 0.5, x, y) - if type(tile) == "boolean" and not tile then - table.insert( tiles, {name = "out-of-map", position = {x, y}} ) + -- local coords need to be 'centered' to allow for correct rotation and scaling. + local tile, entity = map(x + 0.5, y + 0.5, x, y) + + if type(tile) == "boolean" and not tile then + table.insert( tiles, {name = "out-of-map", position = {x, y}} ) elseif type(tile) == "string" then - table.insert( tiles, {name = tile, position = {x, y}} ) + table.insert( tiles, {name = tile, position = {x, y}} ) end if entity then table.insert(entities, entity) end end - end - + end + -- set tiles. surface.set_tiles(tiles, true) -- set entities - for _, v in ipairs(entities) do - if surface.can_place_entity(v) then - surface.create_entity(v) + for _, v in ipairs(entities) do + if surface.can_place_entity(v) then + surface.create_entity(v) end - end -end \ No newline at end of file + end +end diff --git a/map_layout.lua b/map_layout.lua index 8e548ec2..5dc937cc 100644 --- a/map_layout.lua +++ b/map_layout.lua @@ -12,9 +12,9 @@ in this file and your run_*type*_module(event) function will be called. --require "locale.gen_combined.borg_planet_v2" --require "locale.gen_combined.dimentions" --require "locale.gen_combined.dagobah_swamp" ---require "locale.gen_combined.uk" +--require "locale.gen_combined.UK" ---grilledham's maps +--grilledham's map gen --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.mobius_strip" --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.antfarm" --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.creation_of_adam" @@ -24,6 +24,7 @@ in this file and your run_*type*_module(event) function will be called. --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.cage" --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.maori" --MAP_GEN = require "locale.gen_combined.grilledham_map_gen.presets.goat" +--require "locale.grilledham_map_gen.presets.UK" --shapes-- --require "locale.gen_shape.left"