Skip to content

Instantly share code, notes, and snippets.

@narze
Created July 17, 2026 07:49
Show Gist options
  • Select an option

  • Save narze/c220ad0e26eb42f557d9bdbedfb1053a to your computer and use it in GitHub Desktop.

Select an option

Save narze/c220ad0e26eb42f557d9bdbedfb1053a to your computer and use it in GitHub Desktop.
Bad Apple!! playing in a tldraw offline canvas (custom shape + Play/Pause/Reset + click-to-seek progress bar + optional synced audio)

Bad Apple!! in a tldraw offline canvas

Plays the Bad Apple!! silhouette animation inside the tldraw offline desktop app as a durable document script. A custom baplayer shape renders each frame as inline SVG (decode-free), driven at 30 fps, with Play / Pause, Reset, and a click-to-seek progress bar. An optional local audio file is used as the master clock so the animation stays in sync with the music.

Files

File What it is
ba_process.py Generator. Parses the ASCII frame dataset, thresholds it to black/white, and writes baFrames.js + the three tldraw script files.
baFrames.js Generated data: FRAMES[i] = white run-spans [y, x, w] per frame (79×31 grid, 6569 frames ≈ 3:39 @30fps).
baPlayerShape.js The custom baplayer ShapeUtil — renders a frame as inline SVG.
config.js Registers the custom shape.
main.js Creates the player, drives playback, wires the buttons + progress bar, optional audio sync.

Frame data source

ASCII frames come from https://github.com/Pasc99/text2BAinWinConsole (res/BA1.txtres/BA6569.txt, an 79×31 grid @30fps). Threshold: any non-space character → white pixel.

How it works

  • main.js, config.js, baPlayerShape.js, baFrames.js go in the tldraw offline document's script/ workspace (the app exposes it per open .tldraw).
  • config.js runs before the editor mounts and registers the baplayer shape type.
  • main.js runs on open: creates one baplayer shape, then updates its frame prop every tick. The custom shape re-renders the matching frame as an SVG of white rects on black.
  • Buttons are plain drawn rectangles hit-tested by their text label on pointer_down.
  • The progress bar is a wide/short rectangle you draw; the script fills it to the current position and lets you click anywhere on it to seek.

Regenerating baFrames.js

mkdir -p ba_frames
seq 1 6569 | xargs -P 16 -I{} curl -s -o ba_frames/BA{}.txt \
  https://raw.githubusercontent.com/Pasc99/text2BAinWinConsole/master/res/BA{}.txt
# edit SRC / SCRIPT_DIR at the top of ba_process.py, then:
python3 ba_process.py

Audio (optional, not included)

Set AUDIO_SRC in main.js to an absolute file:// path to an mp3 on your own machine (the renderer is sandboxed — ~, relative paths, and another machine's path won't resolve). No audio file is shipped here; supply your own.

View raw

(Sorry about that, but we can’t show files that are this big right now.)

This file has been truncated, but you can view the full file.
// Bad Apple!! first 10s. Source: Pasc99/text2BAinWinConsole (79x31 ASCII @30fps),
// thresholded (non-space = white). FRAMES[i] = white spans [y, x, w] in grid cells.
export const GW = 79
export const GH = 31
export const FPS = 30
export const FRAMES = [[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[[13,78,1],[14,78,1],[15,77,2],[16,77,2]],[[0,77,2],[1,77,2],[2,77,2],[3,77,2],[4,77,2],[5,77,2],[6,77,2],[7,77,2],[8,77,2],[9,77,2],[10,77,2],[11,76,3],[12,76,3],[13,76,3],[14,75,4],[15,75,4],[16,75,4],[17,74,5],[18,74,5],[19,74,5],[20,72,1],[20,74,5],[21,72,1],[21,74,5],[22,75,4]],[[0,74,4],[1,74,5],[2,74,5],[3,74,5],[4,74,5],[5,74,5],[6,74,5],[7,74,5],[8,74,5],[9,74,5],[10,74,5],[11,74,5],[12,74,5],[13,73,6],[14,73,6],[15,64,1],[15,73,6],[16,64,2],[16,73,6],[17,73,6],[18,73,6],[19,71,1],[19,73,6],[20,70,2],[20,73,6],[21,71,8],[22,74,5],[23,77,2]],[[0,71,1],[1,71,2],[2,71,2],[3,71,3],[4,71,4],[5,72,3],[6,72,4],[7,72,5],[8,72,6],[9,72,6],[10,72,7],[11,71,8],[12,71,8],[13,71,8],[14,62,2],[14,71,8],[15,62,2],[15,71,8],[16,71,8],[17,69,1],[17,72,7],[18,69,2],[18,72,7],[19,69,2],[19,72,7],[20,68,11],[21,70,9],[22,72,7],[23,75,4],[24,76,3],[25,78,1]],[[8,69,1],[9,69,2],[10,69,2],[11,68,4],[12,68,4],[13,60,2],[13,69,3],[14,60,3],[14,69,3],[14,76,1],[14,78,1],[15,61,2],[15,70,9],[16,62,1],[16,67,2],[16,70,9],[17,67,2],[17,70,9],[18,64,1],[18,67,12],[19,64,1],[19,66,13],[20,66,13],[21,67,12],[22,70,9],[23,71,8],[24,72,7],[25,74,5],[26,74,5],[27,75,4],[28,76,3],[29,76,3],[30,76,3]],[[11,58,1],[12,58,2],[13,57,3],[14,58,3],[14,65,1],[14,67,3],[15,60,2],[15,65,2],[15,68,3],[16,60,2],[16,65,7],[17,61,2],[17,64,9],[18,61,1],[18,64,10],[19,63,12],[20,63,12],[21,65,11],[22,66,11],[23,68,10],[24,69,10],[25,69,10],[26,70,9],[27,70,9],[28,71,8],[29,71,8],[30,71,8]],[[0,70,9],[1,70,9],[2,71,8],[3,71,8],[4,71,8],[5,72,7],[6,72,7],[7,72,7],[8,73,6],[9,73,6],[10,75,4],[11,54,2],[11,76,3],[12,70,9],[13,70,9],[14,57,2],[14,70,9],[15,57,3],[15,71,8],[16,58,1],[16,71,8],[17,59,3],[17,71,8],[18,59,4],[18,71,8],[19,61,3],[19,72,7],[20,61,3],[20,72,7],[21,63,2],[21,72,7],[22,64,2],[22,72,7],[23,64,3],[23,72,7],[24,65,2],[24,72,7],[25,66,2],[25,72,7],[26,72,7],[27,72,7],[28,68,2],[28,72,7],[29,68,1],[29,72,7],[30,72,7]],[[0,62,17],[1,62,17],[2,62,17],[3,62,17],[4,63,16],[5,63,16],[6,63,16],[7,63,16],[8,63,16],[9,64,15],[10,64,15],[11,64,15],[12,67,12],[13,65,14],[14,62,17],[15,61,18],[16,61,18],[17,61,18],[18,61,18],[19,61,18],[20,61,18],[21,61,18],[22,61,18],[23,62,17],[24,63,16],[25,64,15],[26,65,14],[27,66,13],[28,67,12],[29,67,12],[30,68,11]],[[0,55,24],[1,55,24],[2,56,23],[3,56,23],[4,56,23],[5,56,23],[6,56,23],[7,56,23],[8,57,22],[9,57,22],[10,57,22],[11,57,22],[12,57,22],[13,58,21],[14,58,21],[15,59,20],[16,56,23],[17,55,24],[18,55,24],[19,54,1],[19,56,23],[20,56,23],[21,57,22],[22,58,21],[23,59,20],[24,60,19],[25,62,17],[26,62,17],[27,63,16],[28,64,15],[29,65,14],[30,66,13]],[[0,52,27],[1,51,28],[2,51,28],[3,51,28],[4,51,28],[5,52,27],[6,52,27],[7,52,27],[8,52,27],[9,52,27],[10,52,27],[11,53,26],[12,54,25],[13,52,27],[14,52,27],[15,53,26],[16,53,26],[17,50,29],[18,51,28],[19,53,26],[20,53,26],[21,55,24],[22,55,24],[23,57,22],[24,58,21],[25,59,20],[26,60,19],[27,61,18],[28,62,17],[29,63,16],[30,65,14]],[[0,50,29],[1,49,30],[2,49,30],[3,49,30],[4,49,30],[5,49,30],[6,49,30],[7,49,30],[8,49,30],[9,49,30],[10,49,30],[11,48,1],[11,50,29],[12,48,31],[13,49,30],[14,49,30],[15,50,29],[16,47,32],[17,47,32],[18,51,28],[19,53,26],[20,55,24],[21,57,22],[22,58,21],[23,59,20],[24,60,19],[25,61,18],[26,61,18],[27,61,18],[28,61,18],[29,64,15],[30,67,12]],[[0,52,27],[1,51,28],[2,50,29],[3,49,30],[4,48,31],[5,47,32],[6,47,32],[7,47,32],[8,47,32],[9,46,33],[10,47,32],[11,46,33],[12,46,1],[12,50,29],[13,50,29],[14,48,31],[15,47,32],[16,48,31],[17,53,26],[18,56,23],[19,58,21],[20,59,20],[21,61,18],[22,62,17],[23,62,17],[24,63,16],[25,63,16],[26,63,16],[27,63,16],[28,64,15],[29,68,11],[30,70,9]],[[0,50,1],[0,54,25],[1,49,2],[1,53,26],[2,48,2],[2,52,27],[3,48,1],[3,51,28],[4,49,30],[5,48,31],[6,47,32],[7,46,33],[8,46,33],[9,45,34],[10,45,34],[11,53,26],[12,53,26],[13,51,28],[14,50,29],[15,52,27],[16,56,23],[17,59,20],[18,61,18],[19,62,17],[20,63,16],[21,64,15],[22,65,14],[23,65,14],[24,65,14],[25,65,14],[26,65,14],[27,65,14],[28,68,11],[29,71,8],[30,73,6]],[[0,52,2],[0,56,23],[1,51,2],[1,55,24],[2,50,2],[2,54,25],[3,50,1],[3,52,27],[4,49,1],[4,51,28],[5,48,31],[6,48,31],[7,47,32],[8,46,33],[9,45,34],[10,45,1],[10,56,23],[11,55,24],[12,54,25],[13,54,25],[14,55,24],[15,59,20],[16,62,17],[17,64,15],[18,65,14],[19,66,13],[20,67,12],[21,67,12],[22,68,11],[23,68,11],[24,67,12],[25,67,12],[26,67,12],[27,68,11],[28,72,7],[29,74,5],[30,75,4]],[[0,54,1],[0,57,22],[1,53,2],[1,56,23],[2,52,2],[2,55,24],[3,51,2],[3,54,25],[4,51,28],[5,50,29],[6,49,30],[7,49,30],[8,48,31],[9,50,29],[10,58,21],[11,57,22],[12,56,23],[13,56,23],[14,61,18],[15,64,15],[16,66,13],[17,67,12],[18,68,11],[19,69,10],[20,70,9],[21,70,9],[22,70,9],[23,70,9],[24,69,10],[25,69,10],[26,69,10],[27,71,8],[28,75,4],[29,77,2],[30,78,1]],[[0,55,1],[0,59,20],[1,54,2],[1,58,21],[2,54,2],[2,57,22],[3,56,23],[4,53,26],[5,52,27],[6,0,1],[6,51,28],[7,0,1],[7,51,28],[8,50,29],[9,1,1],[9,60,19],[10,0,3],[10,59,20],[11,0,3],[11,58,21],[12,0,2],[12,58,21],[13,0,2],[13,62,17],[14,0,1],[14,64,15],[15,67,12],[16,68,11],[17,70,9],[18,70,9],[19,71,8],[20,71,8],[21,71,8],[22,71,8],[23,71,8],[24,71,8],[25,71,8],[26,71,8],[27,74,5],[28,77,2]],[[0,60,19],[1,56,1],[1,59,20],[2,58,21],[3,56,23],[4,55,24],[5,4,2],[5,55,24],[6,4,2],[6,54,25],[7,53,26],[8,4,2],[8,52,27],[9,3,3],[9,61,18],[10,0,1],[10,2,4],[10,60,19],[11,0,6],[11,59,20],[12,0,4],[12,59,20],[13,0,4],[13,63,16],[14,0,3],[14,66,13],[15,0,2],[15,68,11],[16,0,1],[16,69,10],[17,71,8],[18,71,8],[19,72,7],[20,72,7],[21,72,7],[22,72,7],[23,72,7],[24,72,7],[25,72,7],[26,72,7],[27,76,3]],[[0,0,4],[0,60,19],[1,0,2],[1,59,20],[2,0,2],[2,58,21],[3,0,2],[3,58,21],[4,0,1],[4,10,1],[4,57,22],[5,0,1],[5,8,3],[5,57,22],[6,0,1],[6,56,23],[7,9,2],[7,20,2],[7,55,24],[8,8,2],[8,20,2],[8,54,25],[9,8,1],[9,19,2],[9,54,1],[9,61,18],[10,6,3],[10,19,1],[10,60,19],[11,5,3],[11,60,19],[12,4,3],[12,59,20],[13,3,3],[13,63,16],[14,2,3],[14,66,13],[15,1,3],[15,68,11],[16,1,2],[16,70,9],[17,0,2],[17,70,9],[18,0,1],[18,71,8],[19,72,7],[20,72,7],[21,72,7],[22,72,7],[23,72,7],[24,72,7],[25,72,7],[26,72,7],[27,77,2]],[[0,0,8],[0,60,19],[1,0,8],[1,60,19],[2,0,7],[2,13,1],[2,60,19],[3,0,6],[3,60,19],[4,0,6],[4,59,20],[5,0,5],[5,13,2],[5,59,20],[6,0,5],[6,13,1],[6,58,21],[7,0,5],[7,23,2],[7,54,1],[7,58,21],[8,0,4],[8,11,2],[8,22,3],[8,57,22],[9,0,4],[9,11,2],[9,22,2],[9,56,23],[10,0,3],[10,21,3],[10,61,18],[11,0,5],[11,8,3],[11,60,19],[12,0,5],[12,8,3],[12,60,19],[13,0,4],[13,8,1],[13,62,17],[14,0,4],[14,7,1],[14,65,14],[15,0,3],[15,68,11],[16,0,3],[16,69,10],[17,0,3],[17,70,9],[18,0,3],[18,71,8],[19,0,2],[19,72,7],[20,0,2],[20,72,7],[21,0,1],[21,72,7],[22,72,7],[23,72,7],[24,72,7],[25,72,7],[26,73,6]],[[0,0,11],[0,61,18],[1,0,11],[1,61,18],[2,0,11],[2,61,18],[3,0,11],[3,15,2],[3,61,18],[4,0,9],[4,15,3],[4,61,18],[5,0,9],[5,61,18],[6,0,9],[6,60,19],[7,0,9],[7,15,2],[7,28,1],[7,56,2],[7,60,19],[8,0,8],[8,26,3],[8,56,1],[8,59,20],[9,0,8],[9,25,3],[9,58,21],[10,0,8],[10,23,4],[10,58,1],[10,61,18],[11,0,8],[11,23,3],[11,60,19],[12,0,9],[12,13,1],[12,60,19],[13,0,8],[13,61,18],[14,0,8],[14,65,14],[15,0,8],[15,67,12],[16,0,8],[16,69,10],[17,0,7],[17,70,9],[18,0,6],[18,71,8],[19,0,5],[19,71,8],[20,0,4],[20,71,8],[21,0,3],[21,72,7],[22,0,2],[22,72,7],[23,0,1],[23,72,7],[24,72,7],[25,73,6],[26,73,6]],[[0,0,11],[0,12,1],[0,62,17],[1,0,14],[1,62,17],[2,0,14],[2,62,17],[3,0,14],[3,62,17],[4,0,14],[4,19,1],[4,62,17],[5,0,12],[5,18,2],[5,62,17],[6,0,12],[6,18,3],[6,58,2],[6,62,17],[7,0,12],[7,19,1],[7,58,2],[7,61,18],[8,0,12],[8,58,1],[8,61,18],[9,0,12],[9,29,3],[9,57,2],[9,60,19],[10,0,11],[10,27,4],[10,57,2],[10,60,19],[11,0,11],[11,26,4],[11,62,17],[12,0,11],[12,25,3],[12,61,18],[13,0,12],[13,60,19],[14,0,12],[14,63,16],[15,0,11],[15,66,13],[16,0,11],[16,68,11],[17,0,10],[17,70,9],[18,0,9],[18,71,8],[19,0,8],[19,71,8],[20,0,6],[20,71,8],[21,0,5],[21,72,7],[22,0,4],[22,72,7],[23,0,4],[23,72,7],[24,0,2],[24,72,7],[25,0,1],[25,73,6],[26,0,1],[26,73,6]],[[0,0,13],[0,63,3],[0,68,11],[1,0,13],[1,63,16],[2,0,16],[2,63,16],[3,0,16],[3,63,16],[4,0,16],[4,63,16],[5,0,16],[5,20,2],[5,63,16],[6,0,15],[6,20,2],[6,63,16],[7,0,15],[7,21,2],[7,63,16],[8,0,15],[8,20,2],[8,59,2],[8,63,16],[9,0,14],[9,59,2],[9,62,17],[10,0,14],[10,31,3],[10,59,2],[10,62,17],[11,0,14],[11,30,4],[11,58,2],[11,62,17],[12,0,14],[12,29,4],[12,62,17],[13,0,14],[13,30,1],[13,61,18],[14,0,15],[14,61,18],[15,0,14],[15,64,15],[16,0,14],[16,67,12],[17,0,13],[17,69,10],[18,0,12],[18,70,9],[19,0,11],[19,71,8],[20,0,9],[20,71,8],[21,0,8],[21,71,8],[22,0,7],[22,72,7],[23,0,6],[23,72,7],[24,0,5],[24,72,7],[25,0,4],[25,73,6],[26,0,3],[26,73,6],[27,0,2],[28,0,2],[29,0,1],[30,0,1]],[[0,0,14],[0,70,9],[1,0,15],[1,63,3],[1,68,11],[2,0,16],[2,63,16],[3,0,18],[3,64,15],[4,0,18],[4,64,15],[5,0,18],[5,64,15],[6,0,18],[6,23,1],[6,64,15],[7,0,17],[7,22,2],[7,64,15],[8,0,17],[8,22,3],[8,64,15],[9,0,17],[9,22,2],[9,61,1],[9,63,16],[10,0,17],[10,60,2],[10,63,16],[11,0,16],[11,60,2],[11,63,16],[12,0,16],[12,33,2],[12,63,16],[13,0,16],[13,32,3],[13,63,16],[14,0,17],[14,61,18],[15,0,17],[15,61,18],[16,0,17],[16,66,13],[17,0,16],[17,68,11],[18,0,15],[18,69,10],[19,0,13],[19,71,8],[20,0,12],[20,71,8],[21,0,11],[21,71,8],[22,0,10],[22,72,7],[23,0,9],[23,72,7],[24,0,7],[24,72,7],[25,0,6],[25,73,6],[26,0,5],[26,73,6],[27,0,4],[28,0,4],[29,0,3],[30,0,3]],[[0,0,16],[0,69,10],[1,0,17],[1,65,1],[1,69,10],[2,0,17],[2,64,15],[3,0,20],[3,64,15],[4,0,20],[4,64,15],[5,0,20],[5,64,15],[6,0,20],[6,64,15],[7,0,19],[7,25,1],[7,64,15],[8,0,19],[8,24,2],[8,62,1],[8,64,15],[9,0,19],[9,24,2],[9,62,1],[9,64,15],[10,0,19],[10,62,2],[10,65,14],[11,0,18],[11,23,2],[11,62,2],[11,65,14],[12,0,18],[12,62,2],[12,65,14],[13,0,18],[13,30,3],[13,62,17],[14,0,19],[14,61,18],[15,0,19],[15,62,17],[16,0,19],[16,67,12],[17,0,19],[17,68,11],[18,0,17],[18,70,9],[19,0,16],[19,71,8],[20,0,14],[20,71,8],[21,0,13],[21,71,8],[22,0,12],[22,72,7],[23,0,11],[23,72,7],[24,0,10],[24,72,7],[25,0,9],[25,73,6],[26,0,8],[26,73,6],[27,0,7],[28,0,6],[29,0,5],[30,0,4]],[[0,0,17],[0,69,10],[1,0,18],[1,64,2],[1,68,11],[2,0,19],[2,64,15],[3,0,21],[3,64,15],[4,0,21],[4,64,15],[5,0,21],[5,65,14],[6,0,21],[6,65,14],[7,0,20],[7,25,2],[7,65,14],[8,0,20],[8,25,3],[8,63,1],[8,65,14],[9,0,20],[9,25,3],[9,63,2],[9,66,13],[10,0,20],[10,25,2],[10,63,2],[10,66,13],[11,0,20],[11,25,2],[11,63,16],[12,0,20],[12,32,2],[12,63,16],[13,0,21],[13,23,2],[13,63,16],[14,0,21],[14,23,2],[14,63,16],[15,0,21],[15,66,13],[16,0,21],[16,68,11],[17,0,21],[17,70,9],[18,0,19],[18,70,9],[19,0,18],[19,71,8],[20,0,17],[20,71,8],[21,0,15],[21,71,8],[22,0,14],[22,72,7],[23,0,13],[23,72,7],[24,0,12],[24,73,6],[25,0,11],[25,73,6],[26,0,10],[27,0,9],[28,0,8],[29,0,7],[30,0,6],[30,14,1],[30,78,1]],[[0,0,19],[0,68,11],[1,0,20],[1,64,2],[1,68,11],[2,0,21],[2,64,15],[3,0,23],[3,64,15],[4,0,23],[4,65,14],[5,0,23],[5,65,14],[6,0,21],[6,63,1],[6,65,14],[7,0,22],[7,26,2],[7,63,1],[7,66,13],[8,0,22],[8,26,3],[8,64,1],[8,66,13],[9,0,21],[9,26,3],[9,64,15],[10,0,21],[10,26,3],[10,64,15],[11,0,21],[11,26,2],[11,65,14],[12,0,21],[12,27,1],[12,65,14],[13,0,22],[13,24,3],[13,65,14],[14,0,22],[14,24,2],[14,64,15],[15,0,22],[15,67,12],[16,0,22],[16,69,10],[17,0,22],[17,70,9],[18,0,20],[18,70,9],[19,0,20],[19,71,8],[20,0,19],[20,71,8],[21,0,17],[21,71,8],[22,0,16],[22,72,7],[23,0,15],[23,72,7],[24,0,14],[24,73,6],[25,0,13],[26,0,12],[27,0,11],[28,0,10],[29,0,9],[29,78,1],[30,0,8],[30,78,1]],[[0,0,20],[0,69,10],[1,0,21],[1,64,15],[2,0,24],[2,64,15],[3,0,24],[3,64,15],[4,0,24],[4,65,14],[5,0,24],[5,65,14],[6,0,23],[6,65,14],[7,0,23],[7,27,2],[7,64,1],[7,66,13],[8,0,23],[8,27,4],[8,64,15],[9,0,23],[9,27,4],[9,65,14],[10,0,23],[10,27,3],[10,65,14],[11,0,22],[11,27,3],[11,66,13],[12,0,23],[12,27,2],[12,65,14],[13,0,23],[13,25,3],[13,65,14],[14,0,24],[14,25,2],[14,65,14],[15,0,24],[15,68,11],[16,0,23],[16,70,9],[17,0,22],[17,70,9],[18,0,22],[18,71,8],[19,0,21],[19,71,8],[20,0,20],[20,71,8],[21,0,19],[21,72,7],[22,0,18],[22,72,7],[23,0,17],[23,73,6],[24,0,15],[24,73,6],[25,0,15],[26,0,14],[27,0,13],[28,0,12],[28,78,1],[29,0,11],[29,78,1],[30,0,10],[30,64,2]],[[0,0,22],[0,69,10],[1,0,23],[1,65,14],[2,0,25],[2,64,15],[3,0,25],[3,64,15],[4,0,25],[4,65,14],[5,0,25],[5,65,14],[6,0,24],[6,65,14],[7,0,24],[7,28,3],[7,64,1],[7,66,13],[8,0,24],[8,28,4],[8,65,14],[9,0,24],[9,28,4],[9,65,14],[10,0,24],[10,28,3],[10,66,13],[11,0,23],[11,28,3],[11,65,14],[12,0,25],[12,27,3],[12,62,2],[12,65,14],[13,0,25],[13,26,3],[13,62,2],[13,66,13],[14,0,25],[14,26,2],[14,67,12],[15,0,25],[15,69,10],[16,0,24],[16,70,9],[17,0,23],[17,71,8],[18,0,23],[18,71,8],[19,0,23],[19,72,7],[20,0,22],[20,72,7],[21,0,21],[21,72,7],[22,0,20],[22,73,6],[23,0,17],[23,73,6],[24,0,16],[25,0,16],[26,0,16],[27,0,15],[27,78,1],[28,0,14],[28,78,1],[29,0,13],[29,64,2],[30,0,12],[30,64,2]],[[0,0,24],[0,69,10],[1,0,25],[1,65,14],[2,0,26],[2,65,14],[3,0,26],[3,64,15],[4,0,26],[4,64,15],[5,0,26],[5,65,14],[6,0,25],[6,31,1],[6,65,14],[7,0,25],[7,29,3],[7,64,15],[8,0,25],[8,29,4],[8,65,14],[9,0,25],[9,29,4],[9,65,14],[10,0,25],[10,29,3],[10,65,14],[11,0,26],[11,29,3],[11,63,1],[11,66,13],[12,0,26],[12,28,3],[12,63,16],[13,0,26],[13,27,3],[13,64,15],[14,0,26],[14,28,1],[14,69,10],[15,0,26],[15,70,9],[16,0,25],[16,71,8],[17,0,25],[17,71,8],[18,0,24],[18,72,7],[19,0,24],[19,72,7],[20,0,23],[20,72,7],[21,0,23],[21,73,6],[22,0,19],[22,73,6],[23,0,18],[23,74,5],[24,0,18],[25,0,18],[26,0,18],[26,78,1],[27,0,16],[27,78,1],[28,0,16],[28,64,2],[28,78,1],[29,0,15],[29,64,2],[30,0,14],[30,64,2]],[[0,0,26],[0,66,2],[0,69,10],[1,0,27],[1,66,13],[2,0,28],[2,65,14],[3,0,28],[3,64,15],[4,0,28],[4,64,15],[5,0,26],[5,64,15],[6,0,26],[6,65,14],[7,0,26],[7,30,3],[7,65,14],[8,0,26],[8,30,3],[8,64,15],[9,0,26],[9,30,3],[9,64,15],[10,0,26],[10,30,3],[10,65,14],[11,0,27],[11,30,3],[11,63,16],[12,0,27],[12,29,3],[12,63,16],[13,0,27],[13,29,2],[13,67,12],[14,0,27],[14,70,9],[15,0,27],[15,71,8],[16,0,26],[16,72,7],[17,0,26],[17,72,7],[18,0,26],[18,72,7],[19,0,25],[19,72,7],[20,0,24],[20,73,6],[21,0,21],[21,73,6],[22,0,20],[22,74,5],[23,0,19],[24,0,20],[25,0,20],[26,0,19],[26,78,1],[27,0,18],[27,64,1],[27,78,1],[28,0,17],[28,64,2],[29,0,17],[29,64,2],[30,0,16],[30,63,3]],[[0,0,27],[0,66,2],[0,69,10],[1,0,28],[1,66,13],[2,0,29],[2,65,14],[3,0,29],[3,65,14],[4,0,29],[4,64,15],[5,0,28],[5,64,15],[6,0,28],[6,64,15],[7,0,27],[7,63,16],[8,0,27],[8,31,2],[8,63,16],[9,0,27],[9,31,2],[9,61,2],[9,64,15],[10,0,27],[10,31,3],[10,65,14],[11,0,28],[11,30,4],[11,64,15],[12,0,28],[12,30,3],[12,64,15],[13,0,28],[13,30,1],[13,69,10],[14,0,29],[14,71,8],[15,0,28],[15,72,7],[16,0,27],[16,72,7],[17,0,27],[17,72,7],[18,0,27],[18,72,7],[19,0,27],[19,73,6],[20,0,24],[20,73,6],[21,0,21],[21,74,5],[22,0,21],[22,74,5],[23,0,21],[24,0,22],[25,0,22],[25,78,1],[26,0,21],[26,64,1],[26,78,1],[27,0,20],[27,64,2],[27,78,1],[28,0,19],[28,64,2],[29,0,19],[29,63,3],[30,0,18],[30,63,3]],[[0,0,29],[0,69,10],[1,0,30],[1,64,1],[1,66,13],[2,0,30],[2,66,13],[3,0,30],[3,65,14],[4,0,30],[4,65,14],[5,0,29],[5,64,15],[6,0,29],[6,64,15],[7,0,29],[7,64,15],[8,0,28],[8,63,16],[9,0,28],[9,33,2],[9,63,16],[10,0,28],[10,33,2],[10,65,14],[11,0,29],[11,31,3],[11,64,15],[12,0,29],[12,31,3],[12,64,1],[12,66,13],[13,0,30],[13,31,1],[13,69,10],[14,0,30],[14,71,8],[15,0,29],[15,72,7],[16,0,29],[16,72,7],[17,0,28],[17,72,7],[18,0,28],[18,73,6],[19,0,28],[19,73,6],[20,0,24],[20,73,6],[21,0,22],[21,74,5],[22,0,22],[23,0,23],[24,0,24],[24,78,1],[25,0,23],[25,78,1],[26,0,22],[26,64,2],[26,78,1],[27,0,22],[27,63,3],[27,78,1],[28,0,21],[28,63,2],[29,0,20],[29,63,3],[30,0,20],[30,63,3]],[[0,0,30],[0,69,10],[1,0,31],[1,64,1],[1,67,12],[2,0,31],[2,64,1],[2,66,13],[3,0,32],[3,66,13],[4,0,32],[4,65,14],[5,0,30],[5,64,15],[6,0,30],[6,64,15],[7,0,30],[7,63,16],[8,0,30],[8,63,16],[9,0,29],[9,33,2],[9,63,16],[10,0,29],[10,33,2],[10,65,14],[11,0,30],[11,32,3],[11,64,15],[12,0,30],[12,32,2],[12,64,15],[13,0,31],[13,69,10],[14,0,31],[14,71,8],[15,0,30],[15,72,7],[16,0,30],[16,72,7],[17,0,29],[17,72,7],[18,0,29],[18,73,6],[19,0,29],[19,73,6],[20,0,24],[20,73,6],[21,0,23],[21,74,5],[22,0,24],[23,0,25],[24,0,25],[24,78,1],[25,0,24],[25,77,2],[26,0,24],[26,63,3],[26,78,1],[27,0,23],[27,63,3],[27,78,1],[28,0,22],[28,63,3],[29,0,22],[29,62,3],[30,0,21],[30,62,3]],[[0,0,31],[0,70,9],[1,0,32],[1,67,12],[2,0,32],[2,64,1],[2,67,12],[3,0,32],[3,64,1],[3,66,13],[4,0,33],[4,66,13],[5,0,33],[5,65,14],[6,0,31],[6,64,15],[7,0,31],[7,63,16],[8,0,31],[8,63,16],[9,0,31],[9,63,16],[10,0,30],[10,62,17],[11,0,31],[11,33,2],[11,65,14],[12,0,31],[12,33,2],[12,65,14],[13,0,32],[13,34,1],[13,68,11],[14,0,32],[14,70,9],[15,0,31],[15,72,7],[16,0,31],[16,72,7],[17,0,30],[17,72,7],[18,0,30],[18,72,7],[19,0,29],[19,72,7],[20,0,25],[20,73,6],[21,0,24],[21,73,6],[22,0,25],[22,78,1],[23,0,26],[23,78,1],[24,0,26],[24,77,2],[25,0,25],[25,76,3],[26,0,25],[26,63,2],[26,76,3],[27,0,24],[27,63,2],[27,77,2],[28,0,23],[28,62,3],[28,77,2],[29,0,22],[29,62,3],[29,77,2],[30,0,21],[30,62,3],[30,78,1]],[[0,0,29],[0,30,2],[0,69,10],[1,0,32],[1,70,9],[2,0,32],[2,69,10],[3,0,32],[3,67,12],[4,0,32],[4,66,13],[5,0,34],[5,65,14],[6,0,34],[6,65,14],[7,0,33],[7,64,15],[8,0,32],[8,63,16],[9,0,32],[9,63,16],[10,0,32],[10,63,16],[11,0,32],[11,63,16],[12,0,32],[12,65,14],[13,0,33],[13,65,14],[14,0,33],[14,67,12],[15,0,33],[15,70,9],[16,0,32],[16,71,8],[17,0,31],[17,71,8],[18,0,31],[18,71,8],[19,0,31],[19,71,8],[20,0,26],[20,71,8],[21,0,25],[21,71,8],[22,0,26],[22,72,7],[23,0,27],[23,77,2],[24,0,27],[24,76,3],[25,0,26],[25,75,4],[26,0,25],[26,74,5],[27,0,24],[27,62,2],[27,74,5],[28,0,23],[28,75,4],[29,0,23],[29,61,2],[29,75,4],[30,0,22],[30,61,2],[30,75,4]],[[0,0,28],[0,68,11],[1,0,32],[1,68,11],[2,0,32],[2,68,11],[3,0,33],[3,68,11],[4,0,32],[4,66,13],[5,0,33],[5,65,14],[6,0,35],[6,64,15],[7,0,35],[7,64,15],[8,0,34],[8,63,16],[9,0,33],[9,63,16],[10,0,33],[10,63,16],[11,0,33],[11,63,16],[12,0,33],[12,63,16],[13,0,34],[13,64,15],[14,0,34],[14,64,15],[15,0,33],[15,67,12],[16,0,32],[16,69,10],[17,0,32],[17,70,9],[18,0,31],[18,70,9],[19,0,31],[19,70,9],[20,0,26],[20,70,9],[21,0,26],[21,70,9],[22,0,26],[22,70,9],[23,0,27],[23,75,4],[24,0,27],[24,75,4],[25,0,26],[25,73,6],[26,0,25],[26,72,7],[27,0,24],[27,73,6],[28,0,23],[28,73,6],[29,0,23],[29,60,1],[29,73,6],[30,0,22],[30,60,2],[30,73,6]],[[0,0,27],[0,66,13],[1,0,32],[1,67,12],[2,0,32],[2,66,13],[3,0,33],[3,66,13],[4,0,32],[4,64,15],[5,0,32],[5,64,15],[6,0,35],[6,63,16],[7,0,35],[7,63,16],[8,0,34],[8,63,16],[9,0,34],[9,63,16],[10,0,34],[10,64,15],[11,0,34],[11,64,15],[12,0,34],[12,63,16],[13,0,35],[13,63,16],[14,0,34],[14,63,16],[15,0,32],[15,66,13],[16,0,31],[16,68,11],[17,0,31],[17,68,11],[18,0,31],[18,68,11],[19,0,30],[19,68,11],[20,0,26],[20,68,11],[21,0,25],[21,69,10],[22,0,26],[22,70,9],[23,0,27],[23,74,5],[24,0,27],[24,73,6],[25,0,26],[25,71,8],[26,0,25],[26,71,8],[27,0,24],[27,71,8],[28,0,23],[28,72,7],[29,0,22],[29,72,7],[30,0,21],[30,72,7]],[[0,0,27],[0,30,1],[0,65,14],[1,0,31],[1,65,14],[2,0,31],[2,65,14],[3,0,32],[3,64,15],[4,0,32],[4,63,16],[5,0,32],[5,62,17],[6,0,34],[6,62,17],[7,0,35],[7,63,16],[8,0,35],[8,63,16],[9,0,35],[9,63,16],[10,0,35],[10,63,16],[11,0,35],[11,63,16],[12,0,35],[12,62,17],[13,0,35],[13,62,17],[14,0,32],[14,62,17],[15,0,31],[15,65,14],[16,0,30],[16,66,13],[17,0,30],[17,67,12],[18,0,30],[18,67,12],[19,0,29],[19,67,12],[20,0,25],[20,67,12],[21,0,25],[21,67,12],[22,0,25],[22,71,8],[23,0,26],[23,72,7],[24,0,26],[24,70,9],[25,0,25],[25,69,10],[26,0,24],[26,70,9],[27,0,24],[27,56,1],[27,70,9],[28,0,23],[28,56,2],[28,70,9],[29,0,22],[29,56,2],[29,71,8],[30,0,21],[30,71,8]],[[0,0,26],[0,28,1],[0,63,16],[1,0,30],[1,63,16],[2,0,31],[2,63,16],[3,0,31],[3,62,17],[4,0,30],[4,61,18],[5,0,31],[5,61,18],[6,0,33],[6,62,17],[7,0,34],[7,62,17],[8,0,35],[8,62,17],[9,0,35],[9,63,16],[10,0,35],[10,63,16],[11,0,34],[11,62,17],[12,0,35],[12,58,1],[12,62,17],[13,0,33],[13,58,1],[13,61,18],[14,0,30],[14,62,17],[15,0,29],[15,64,15],[16,0,29],[16,65,14],[17,0,29],[17,65,14],[18,0,28],[18,65,14],[19,0,27],[19,65,14],[20,0,24],[20,65,14],[21,0,24],[21,68,11],[22,0,25],[22,70,9],[23,0,26],[23,69,10],[24,0,25],[24,56,2],[24,68,11],[25,0,24],[25,56,2],[25,68,11],[26,0,24],[26,55,3],[26,69,10],[27,0,23],[27,55,3],[27,69,10],[28,0,22],[28,54,4],[28,69,10],[29,0,21],[29,54,4],[29,70,9],[30,0,20],[30,54,3],[30,71,8]],[[0,0,30],[0,61,18],[1,0,30],[1,61,18],[2,0,30],[2,61,18],[3,0,29],[3,60,19],[4,0,29],[4,59,20],[5,0,32],[5,60,19],[6,0,32],[6,61,18],[7,0,33],[7,61,18],[8,0,35],[8,62,17],[9,0,35],[9,62,17],[10,0,35],[10,62,17],[11,0,33],[11,61,18],[12,0,33],[12,61,18],[13,0,30],[13,60,19],[14,0,28],[14,60,19],[15,0,28],[15,63,16],[16,0,27],[16,63,16],[17,0,27],[17,63,16],[18,0,27],[18,63,16],[19,0,25],[19,55,2],[19,63,16],[20,0,23],[20,55,2],[20,64,15],[21,0,23],[21,55,2],[21,68,11],[22,0,25],[22,67,12],[23,0,25],[23,55,2],[23,66,13],[24,0,24],[24,54,3],[24,66,13],[25,0,24],[25,53,4],[25,67,12],[26,0,23],[26,53,4],[26,67,12],[27,0,22],[27,52,5],[27,68,11],[28,0,21],[28,52,5],[28,68,11],[29,0,20],[29,52,5],[29,69,10],[30,0,19],[30,53,4],[30,70,9]],[[0,0,29],[0,60,19],[1,0,29],[1,60,19],[2,0,28],[2,58,1],[2,60,19],[3,0,28],[3,58,21],[4,0,28],[4,58,21],[5,0,31],[5,58,21],[6,0,32],[6,60,19],[7,0,33],[7,60,19],[8,0,34],[8,60,19],[9,0,35],[9,61,18],[10,0,35],[10,60,19],[11,0,32],[11,60,19],[12,0,31],[12,57,1],[12,60,19],[13,0,28],[13,57,1],[13,59,20],[14,0,27],[14,60,19],[15,0,26],[15,61,18],[16,0,26],[16,61,18],[17,0,26],[17,61,18],[18,0,26],[18,53,2],[18,62,17],[19,0,22],[19,53,2],[19,62,17],[20,0,22],[20,53,3],[20,65,14],[21,0,23],[21,53,1],[21,66,13],[22,0,24],[22,53,2],[22,65,14],[23,0,23],[23,53,3],[23,65,14],[24,0,23],[24,52,4],[24,65,14],[25,0,23],[25,51,5],[25,66,13],[26,0,22],[26,51,5],[26,66,13],[27,0,21],[27,51,5],[27,66,13],[28,0,20],[28,51,5],[28,67,12],[29,0,19],[29,51,5],[29,68,11],[30,0,18],[30,51,5],[30,69,10]],[[0,0,29],[0,59,20],[1,0,28],[1,58,21],[2,0,27],[2,58,21],[3,0,26],[3,58,21],[4,0,30],[4,56,23],[5,0,30],[5,57,22],[6,0,31],[6,58,21],[7,0,32],[7,59,20],[8,0,33],[8,59,20],[9,0,34],[9,59,20],[10,0,31],[10,59,20],[11,0,31],[11,59,20],[12,0,29],[12,58,21],[13,0,27],[13,58,21],[14,0,26],[14,59,20],[15,0,26],[15,60,19],[16,0,25],[16,60,19],[17,0,25],[17,60,19],[18,0,25],[18,52,2],[18,61,18],[19,0,21],[19,52,2],[19,61,18],[20,0,21],[20,52,2],[20,65,14],[21,0,23],[21,64,15],[22,0,23],[22,51,3],[22,63,16],[23,0,23],[23,51,4],[23,63,16],[24,0,22],[24,50,5],[24,64,15],[25,0,22],[25,50,5],[25,64,15],[26,0,21],[26,49,6],[26,64,15],[27,0,20],[27,49,6],[27,65,14],[28,0,19],[28,50,5],[28,66,13],[29,0,18],[29,50,5],[29,67,12],[30,0,17],[30,50,5],[30,68,11]],[[0,0,28],[0,59,20],[1,0,28],[1,57,22],[2,0,26],[2,57,22],[3,0,26],[3,57,22],[4,0,29],[4,55,24],[5,0,30],[5,55,24],[6,0,31],[6,56,23],[7,0,32],[7,57,22],[8,0,32],[8,57,22],[9,0,33],[9,58,21],[10,0,30],[10,58,21],[11,0,31],[11,58,21],[12,0,29],[12,57,22],[13,0,26],[13,57,22],[14,0,25],[14,58,21],[15,0,25],[15,59,20],[16,0,25],[16,59,20],[17,0,25],[17,51,1],[17,60,19],[18,0,25],[18,51,2],[18,61,18],[19,0,20],[19,51,2],[19,61,18],[20,0,21],[20,63,16],[21,0,22],[21,62,17],[22,0,22],[22,50,3],[22,62,17],[23,0,22],[23,50,3],[23,63,16],[24,0,21],[24,49,4],[24,63,16],[25,0,21],[25,49,4],[25,63,16],[26,0,20],[26,48,5],[26,63,16],[27,0,19],[27,48,5],[27,64,15],[28,0,18],[28,49,4],[28,64,15],[29,0,17],[29,49,4],[29,65,14],[30,0,16],[30,49,5],[30,66,13]],[[0,0,28],[0,59,20],[1,0,28],[1,58,21],[2,0,26],[2,57,22],[3,0,25],[3,55,24],[4,0,29],[4,54,25],[5,0,30],[5,54,25],[6,0,30],[6,55,24],[7,0,31],[7,56,23],[8,0,31],[8,56,23],[9,0,32],[9,56,23],[10,0,31],[10,57,22],[11,0,30],[11,57,22],[12,0,28],[12,56,23],[13,0,26],[13,56,23],[14,0,25],[14,57,22],[15,0,25],[15,58,21],[16,0,25],[16,59,20],[17,0,24],[17,59,20],[18,0,24],[18,60,19],[19,0,20],[19,50,2],[19,61,18],[20,0,21],[20,50,2],[20,62,17],[21,0,22],[21,62,17],[22,0,22],[22,49,3],[22,62,17],[23,0,21],[23,49,3],[23,62,17],[24,0,20],[24,48,4],[24,62,17],[25,0,20],[25,48,4],[25,63,16],[26,0,19],[26,48,4],[26,63,16],[27,0,18],[27,48,4],[27,63,16],[28,0,17],[28,48,4],[28,63,16],[29,0,16],[29,48,4],[29,64,15],[30,0,15],[30,48,4],[30,65,14]],[[0,0,29],[0,59,20],[1,0,28],[1,58,21],[2,0,26],[2,56,23],[3,0,25],[3,56,23],[4,0,29],[4,54,25],[5,0,30],[5,53,26],[6,0,30],[6,53,26],[7,0,30],[7,54,25],[8,0,30],[8,55,24],[9,0,31],[9,55,24],[10,0,31],[10,55,24],[11,0,30],[11,55,24],[12,0,29],[12,55,24],[13,0,26],[13,55,24],[14,0,25],[14,56,23],[15,0,24],[15,57,22],[16,0,24],[16,58,21],[17,0,24],[17,59,20],[18,0,24],[18,60,19],[19,0,20],[19,60,19],[20,0,21],[20,61,18],[21,0,21],[21,61,18],[22,0,21],[22,49,2],[22,62,17],[23,0,20],[23,48,3],[23,62,17],[24,0,20],[24,48,3],[24,62,17],[25,0,19],[25,47,4],[25,62,17],[26,0,18],[26,47,4],[26,62,17],[27,0,17],[27,47,4],[27,62,17],[28,0,16],[28,47,4],[28,62,17],[29,0,15],[29,47,4],[29,62,17],[30,0,14],[30,48,3],[30,63,16]],[[0,0,29],[0,59,20],[1,0,28],[1,58,21],[2,0,26],[2,56,23],[3,0,25],[3,55,24],[4,0,28],[4,55,24],[5,0,29],[5,53,26],[6,0,29],[6,53,26],[7,0,29],[7,53,26],[8,0,29],[8,53,26],[9,0,30],[9,53,26],[10,0,30],[10,54,25],[11,0,30],[11,46,2],[11,54,25],[12,0,29],[12,53,26],[13,0,26],[13,54,25],[14,0,25],[14,55,24],[15,0,24],[15,56,23],[16,0,24],[16,57,22],[17,0,24],[17,58,21],[18,0,23],[18,59,20],[19,0,19],[19,60,19],[20,0,20],[20,60,19],[21,0,21],[21,61,18],[22,0,20],[22,48,2],[22,61,18],[23,0,20],[23,48,2],[23,61,18],[24,0,19],[24,47,3],[24,62,17],[25,0,18],[25,47,3],[25,62,17],[26,0,17],[26,46,4],[26,62,17],[27,0,17],[27,47,3],[27,62,17],[28,0,16],[28,47,3],[28,62,17],[29,0,15],[29,47,3],[29,62,17],[30,0,14],[30,47,3],[30,62,17]],[[0,0,24],[0,58,21],[1,0,28],[1,57,22],[2,0,27],[2,56,23],[3,0,25],[3,54,25],[4,0,25],[4,54,25],[5,0,29],[5,54,25],[6,0,28],[6,52,27],[7,0,28],[7,51,28],[8,0,29],[8,52,27],[9,0,29],[9,52,27],[10,0,29],[10,44,2],[10,52,27],[11,0,29],[11,44,2],[11,53,26],[12,0,30],[12,52,27],[13,0,26],[13,52,27],[14,0,25],[14,54,25],[15,0,24],[15,55,24],[16,0,24],[16,56,23],[17,0,24],[17,57,22],[18,0,23],[18,58,21],[19,0,19],[19,22,1],[19,59,20],[20,0,20],[20,59,20],[21,0,20],[21,60,19],[22,0,20],[22,47,2],[22,60,19],[23,0,19],[23,47,2],[23,56,2],[23,61,18],[24,0,18],[24,46,3],[24,56,2],[24,61,18],[25,0,18],[25,46,2],[25,56,2],[25,61,18],[26,0,17],[26,46,2],[26,57,2],[26,62,17],[27,0,16],[27,46,3],[27,62,17],[28,0,15],[28,46,3],[28,62,17],[29,0,14],[29,46,3],[29,62,17],[30,0,13],[30,46,3],[30,62,17]],[[0,0,23],[0,58,21],[1,0,24],[1,25,3],[1,57,22],[2,0,28],[2,56,23],[3,0,26],[3,54,25],[4,0,24],[4,53,26],[5,0,28],[5,53,26],[6,0,28],[6,51,28],[7,0,28],[7,50,29],[8,0,28],[8,51,28],[9,0,28],[9,51,28],[10,0,28],[10,29,1],[10,51,28],[11,0,28],[11,29,1],[11,43,2],[11,51,28],[12,0,29],[12,43,2],[12,51,28],[13,0,29],[13,51,28],[14,0,25],[14,52,27],[15,0,24],[15,54,25],[16,0,24],[16,55,24],[17,0,23],[17,56,23],[18,0,23],[18,57,22],[19,0,19],[19,20,2],[19,58,21],[20,0,19],[20,59,20],[21,0,20],[21,59,20],[22,0,20],[22,55,2],[22,60,19],[23,0,19],[23,46,2],[23,55,2],[23,60,19],[24,0,18],[24,46,2],[24,55,2],[24,61,18],[25,0,17],[25,45,2],[25,55,3],[25,61,18],[26,0,17],[26,45,3],[26,56,2],[26,61,18],[27,0,16],[27,45,3],[27,61,18],[28,0,15],[28,45,3],[28,61,18],[29,0,14],[29,45,3],[29,61,18],[30,0,12],[30,46,2],[30,62,17]],[[0,0,23],[0,57,22],[1,0,23],[1,27,1],[1,56,23],[2,0,28],[2,55,24],[3,0,27],[3,54,25],[4,0,24],[4,52,27],[5,0,24],[5,52,27],[6,0,28],[6,52,27],[7,0,27],[7,50,29],[8,0,27],[8,50,29],[9,0,27],[9,50,29],[10,0,29],[10,50,29],[11,0,29],[11,42,2],[11,50,29],[12,0,29],[12,42,2],[12,50,29],[13,0,29],[13,50,29],[14,0,25],[14,51,28],[15,0,24],[15,52,27],[16,0,23],[16,54,25],[17,0,23],[17,55,24],[18,0,23],[18,56,23],[19,0,19],[19,20,2],[19,57,22],[20,0,19],[20,58,21],[21,0,20],[21,58,21],[22,0,19],[22,54,2],[22,59,20],[23,0,19],[23,54,2],[23,59,20],[24,0,18],[24,45,2],[24,54,3],[24,60,19],[25,0,17],[25,45,2],[25,54,3],[25,60,19],[26,0,16],[26,45,2],[26,55,2],[26,60,19],[27,0,15],[27,44,3],[27,61,18],[28,0,14],[28,45,2],[28,61,18],[29,0,13],[29,45,2],[29,61,18],[30,0,12],[30,45,2],[30,61,18]],[[0,0,23],[0,57,22],[1,0,23],[1,56,23],[2,0,27],[2,55,24],[3,0,27],[3,54,25],[4,0,25],[4,52,27],[5,0,24],[5,52,27],[6,0,27],[6,51,28],[7,0,27],[7,49,30],[8,0,27],[8,49,30],[9,0,27],[9,49,30],[10,0,27],[10,49,30],[11,0,28],[11,50,29],[12,0,28],[12,49,30],[13,0,27],[13,49,30],[14,0,25],[14,50,29],[15,0,24],[15,51,28],[16,0,23],[16,53,26],[17,0,23],[17,54,25],[18,0,23],[18,55,24],[19,0,19],[19,20,2],[19,56,23],[20,0,19],[20,57,22],[21,0,20],[21,57,22],[22,0,19],[22,53,2],[22,58,21],[23,0,18],[23,53,2],[23,58,21],[24,0,18],[24,53,3],[24,59,20],[25,0,17],[25,44,2],[25,54,2],[25,59,20],[26,0,16],[26,44,2],[26,55,2],[26,60,19],[27,0,15],[27,44,2],[27,60,19],[28,0,14],[28,44,2],[28,60,19],[29,0,13],[29,45,2],[29,60,19],[30,0,12],[30,45,2],[30,61,18]],[[0,0,23],[0,56,23],[1,0,23],[1,55,24],[2,0,27],[2,54,25],[3,0,27],[3,53,26],[4,0,25],[4,51,28],[5,0,24],[5,51,28],[6,0,27],[6,49,30],[7,0,27],[7,48,31],[8,0,27],[8,48,31],[9,0,26],[9,27,1],[9,49,30],[10,0,26],[10,27,1],[10,49,30],[11,0,27],[11,49,30],[12,0,27],[12,48,31],[13,0,26],[13,48,31],[14,0,24],[14,49,30],[15,0,23],[15,51,28],[16,0,23],[16,52,27],[17,0,23],[17,53,26],[18,0,22],[18,54,25],[19,0,19],[19,55,24],[20,0,19],[20,56,23],[21,0,20],[21,52,1],[21,56,23],[22,0,19],[22,25,2],[22,52,2],[22,57,22],[23,0,18],[23,25,2],[23,53,2],[23,58,21],[24,0,17],[24,44,2],[24,53,2],[24,58,21],[25,0,16],[25,44,2],[25,54,2],[25,59,20],[26,0,15],[26,44,2],[26,54,2],[26,59,20],[27,0,14],[27,44,2],[27,59,20],[28,0,13],[28,44,2],[28,60,19],[29,0,12],[29,60,19],[30,0,11],[30,60,19]],[[0,0,22],[0,56,23],[1,0,23],[1,25,2],[1,55,24],[2,0,27],[2,53,26],[3,0,26],[3,52,27],[4,0,24],[4,51,28],[5,0,24],[5,50,29],[6,0,27],[6,50,29],[7,0,26],[7,48,31],[8,0,26],[8,48,31],[9,0,26],[9,48,31],[10,0,27],[10,48,31],[11,0,27],[11,48,31],[12,0,27],[12,48,31],[13,0,25],[13,48,31],[14,0,24],[14,49,30],[15,0,23],[15,50,29],[16,0,23],[16,51,28],[17,0,23],[17,52,27],[18,0,22],[18,53,26],[19,0,19],[19,54,25],[20,0,19],[20,55,24],[21,0,19],[21,26,1],[21,56,23],[22,0,18],[22,25,2],[22,56,23],[23,0,18],[23,25,2],[23,52,2],[23,57,22],[24,0,17],[24,52,2],[24,57,22],[25,0,16],[25,58,21],[26,0,15],[26,58,21],[27,0,14],[27,59,20],[28,0,13],[28,59,20],[29,0,12],[29,59,20],[30,0,11],[30,60,19]],[[0,0,22],[0,55,24],[1,0,22],[1,24,2],[1,54,25],[2,0,26],[2,53,26],[3,0,26],[3,52,27],[4,0,24],[4,50,29],[5,0,24],[5,26,1],[5,50,29],[6,0,27],[6,48,31],[7,0,26],[7,47,32],[8,0,26],[8,47,32],[9,0,27],[9,48,31],[10,0,26],[10,48,31],[11,0,26],[11,48,31],[12,0,26],[12,47,32],[13,0,25],[13,47,32],[14,0,23],[14,48,31],[15,0,23],[15,49,30],[16,0,23],[16,50,29],[17,0,22],[17,51,28],[18,0,22],[18,52,27],[19,0,19],[19,53,26],[20,0,19],[20,54,25],[21,0,19],[21,25,2],[21,55,24],[22,0,18],[22,25,2],[22,51,1],[22,55,24],[23,0,17],[23,25,2],[23,51,2],[23,56,23],[24,0,17],[24,25,1],[24,52,2],[24,56,23],[25,0,16],[25,24,2],[25,57,22],[26,0,15],[26,24,2],[26,57,22],[27,0,14],[27,58,21],[28,0,13],[28,58,21],[29,0,12],[29,59,20],[30,0,11],[30,57,1],[30,59,20]],[[0,0,22],[0,54,25],[1,0,22],[1,24,2],[1,53,26],[2,0,26],[2,52,27],[3,0,25],[3,51,28],[4,0,23],[4,49,30],[5,0,24],[5,49,30],[6,0,26],[6,47,32],[7,0,26],[7,46,33],[8,0,27],[8,46,33],[9,0,25],[9,47,32],[10,0,26],[10,47,32],[11,0,26],[11,47,32],[12,0,26],[12,46,33],[13,0,24],[13,46,33],[14,0,23],[14,48,31],[15,0,23],[15,48,31],[16,0,22],[16,49,30],[17,0,22],[17,50,29],[18,0,18],[18,19,2],[18,52,27],[19,0,19],[19,52,27],[20,0,19],[20,53,26],[21,0,19],[21,25,2],[21,54,25],[22,0,18],[22,25,2],[22,55,24],[23,0,17],[23,25,2],[23,55,24],[24,0,16],[24,24,2],[24,55,24],[25,0,15],[25,24,2],[25,56,23],[26,0,14],[26,24,2],[26,56,23],[27,0,14],[27,57,22],[28,0,12],[28,57,22],[29,0,11],[29,58,21],[30,0,10],[30,56,23]],[[0,0,21],[0,53,26],[1,0,22],[1,23,2],[1,52,27],[2,0,25],[2,51,28],[3,0,25],[3,50,29],[4,0,23],[4,48,31],[5,0,25],[5,48,31],[6,0,26],[6,46,33],[7,0,26],[7,46,33],[8,0,25],[8,46,33],[9,0,26],[9,46,33],[10,0,26],[10,46,33],[11,0,26],[11,46,33],[12,0,26],[12,46,33],[13,0,23],[13,46,33],[14,0,22],[14,47,32],[15,0,22],[15,48,31],[16,0,22],[16,49,30],[17,0,21],[17,50,29],[18,0,18],[18,19,2],[18,51,28],[19,0,19],[19,51,28],[20,0,19],[20,52,27],[21,0,18],[21,26,1],[21,53,26],[22,0,18],[22,24,3],[22,53,26],[23,0,17],[23,24,3],[23,54,25],[24,0,16],[24,24,2],[24,55,24],[25,0,15],[25,24,2],[25,55,24],[26,0,14],[26,24,2],[26,56,23],[27,0,13],[27,24,1],[27,56,23],[28,0,12],[28,23,2],[28,57,22],[29,0,11],[29,24,1],[29,55,1],[29,57,22],[30,0,10],[30,55,24]],[[0,0,21],[0,52,27],[1,0,21],[1,23,2],[1,51,28],[2,0,25],[2,50,29],[3,0,24],[3,49,30],[4,0,22],[4,47,32],[5,0,25],[5,47,32],[6,0,25],[6,45,34],[7,0,25],[7,45,34],[8,0,25],[8,46,33],[9,0,26],[9,46,33],[10,0,26],[10,46,33],[11,0,26],[11,43,1],[11,46,33],[12,0,26],[12,45,34],[13,0,23],[13,46,33],[14,0,22],[14,47,32],[15,0,22],[15,47,32],[16,0,21],[16,48,31],[17,0,21],[17,50,29],[18,0,18],[18,50,29],[19,0,19],[19,51,28],[20,0,19],[20,51,28],[21,0,18],[21,24,2],[21,52,27],[22,0,17],[22,24,3],[22,53,26],[23,0,17],[23,24,3],[23,53,26],[24,0,16],[24,24,2],[24,54,25],[25,0,15],[25,24,2],[25,54,25],[26,0,14],[26,24,2],[26,55,24],[27,0,13],[27,23,2],[27,55,24],[28,0,12],[28,23,2],[28,56,23],[29,0,11],[29,54,25],[30,0,10],[30,54,25]],[[0,0,20],[0,51,28],[1,0,21],[1,22,2],[1,51,28],[2,0,24],[2,50,29],[3,0,23],[3,48,31],[4,0,22],[4,47,32],[5,0,24],[5,46,33],[6,0,25],[6,45,34],[7,0,25],[7,44,35],[8,0,25],[8,45,34],[9,0,26],[9,45,34],[10,0,26],[10,45,34],[11,0,26],[11,45,34],[12,0,26],[12,45,34],[13,0,22],[13,45,34],[14,0,22],[14,46,33],[15,0,21],[15,47,32],[16,0,21],[16,47,32],[17,0,21],[17,50,29],[18,0,18],[18,50,29],[19,0,18],[19,50,29],[20,0,18],[20,24,2],[20,51,28],[21,0,18],[21,24,2],[21,51,28],[22,0,17],[22,24,3],[22,52,27],[23,0,17],[23,24,2],[23,52,27],[24,0,16],[24,24,2],[24,53,26],[25,0,15],[25,24,2],[25,53,26],[26,0,14],[26,24,2],[26,54,25],[27,0,13],[27,23,2],[27,54,25],[28,0,12],[28,23,2],[28,55,24],[29,0,11],[29,54,25],[30,0,10],[30,55,24]],[[0,0,20],[0,51,28],[1,0,20],[1,22,2],[1,50,29],[2,0,24],[2,49,30],[3,0,23],[3,48,31],[4,0,21],[4,46,33],[5,0,24],[5,46,33],[6,0,24],[6,44,35],[7,0,25],[7,44,35],[8,0,25],[8,44,35],[9,0,26],[9,45,34],[10,0,25],[10,45,34],[11,0,26],[11,44,35],[12,0,26],[12,44,35],[13,0,22],[13,45,34],[14,0,21],[14,45,34],[15,0,21],[15,46,33],[16,0,21],[16,47,32],[17,0,21],[17,49,30],[18,0,17],[18,49,30],[19,0,18],[19,49,30],[20,0,18],[20,24,2],[20,50,29],[21,0,18],[21,24,2],[21,50,29],[22,0,17],[22,24,3],[22,51,28],[23,0,17],[23,24,2],[23,51,28],[24,0,16],[24,24,2],[24,52,27],[25,0,15],[25,24,2],[25,52,27],[26,0,14],[26,24,2],[26,53,26],[27,0,13],[27,23,2],[27,54,25],[28,0,12],[28,23,2],[28,54,25],[29,0,11],[29,54,25],[30,0,10],[30,54,25]],[[0,0,19],[0,50,29],[1,0,20],[1,49,30],[2,0,24],[2,48,31],[3,0,23],[3,47,32],[4,0,21],[4,45,34],[5,0,23],[5,45,34],[6,0,24],[6,44,35],[7,0,24],[7,43,36],[8,0,25],[8,43,36],[9,0,25],[9,44,35],[10,0,25],[10,44,35],[11,0,25],[11,44,35],[12,0,25],[12,44,35],[13,0,22],[13,44,35],[14,0,21],[14,45,34],[15,0,21],[15,45,34],[16,0,21],[16,47,32],[17,0,20],[17,49,30],[18,0,17],[18,48,31],[19,0,18],[19,48,31],[20,0,18],[20,24,2],[20,49,30],[21,0,18],[21,24,2],[21,50,29],[22,0,17],[22,24,3],[22,50,29],[23,0,17],[23,24,3],[23,51,28],[24,0,16],[24,24,2],[24,51,28],[25,0,15],[25,24,2],[25,52,27],[26,0,14],[26,24,2],[26,53,26],[27,0,13],[27,23,3],[27,54,25],[28,0,12],[28,23,2],[28,53,26],[29,0,11],[29,53,26],[30,0,11],[30,54,25]],[[0,0,19],[0,50,29],[1,0,20],[1,49,30],[2,0,20],[2,21,2],[2,48,31],[3,0,23],[3,47,32],[4,0,21],[4,44,35],[5,0,21],[5,44,35],[6,0,24],[6,44,35],[7,0,24],[7,43,36],[8,0,24],[8,43,36],[9,0,25],[9,43,36],[10,0,25],[10,43,36],[11,0,25],[11,44,35],[12,0,25],[12,43,36],[13,0,22],[13,43,36],[14,0,21],[14,44,35],[15,0,21],[15,45,34],[16,0,21],[16,46,33],[17,0,20],[17,48,31],[18,0,17],[18,47,32],[19,0,19],[19,47,32],[20,0,19],[20,24,2],[20,48,31],[21,0,18],[21,24,2],[21,49,30],[22,0,18],[22,24,2],[22,50,29],[23,0,17],[23,24,2],[23,50,29],[24,0,16],[24,24,2],[24,51,28],[25,0,15],[25,24,2],[25,52,27],[26,0,14],[26,24,2],[26,53,26],[27,0,14],[27,24,2],[27,53,26],[28,0,13],[28,23,2],[28,53,26],[29,0,12],[29,53,26],[30,0,12],[30,54,25]],[[0,0,19],[0,49,30],[1,0,19],[1,49,30],[2,0,20],[2,48,31],[3,0,23],[3,47,32],[4,0,22],[4,46,33],[5,0,21],[5,44,35],[6,0,23],[6,44,35],[7,0,24],[7,42,37],[8,0,24],[8,42,37],[9,0,24],[9,43,36],[10,0,24],[10,43,36],[11,0,25],[11,43,36],[12,0,25],[12,42,37],[13,0,23],[13,43,36],[14,0,21],[14,44,35],[15,0,21],[15,44,35],[16,0,21],[16,45,34],[17,0,21],[17,48,31],[18,0,18],[18,47,32],[19,0,19],[19,47,32],[20,0,19],[20,48,31],[21,0,19],[21,49,30],[22,0,18],[22,50,29],[23,0,18],[23,50,29],[24,0,17],[24,51,28],[25,0,16],[25,52,27],[26,0,15],[26,24,2],[26,53,26],[27,0,14],[27,24,2],[27,53,26],[28,0,13],[28,25,1],[28,53,26],[29,0,12],[29,53,26],[30,0,13],[30,54,25]],[[0,0,19],[0,49,30],[1,0,19],[1,48,31],[2,0,20],[2,48,31],[3,0,23],[3,47,32],[4,0,23],[4,43,1],[4,46,33],[5,0,21],[5,43,36],[6,0,23],[6,44,35],[7,0,24],[7,43,36],[8,0,24],[8,42,37],[9,0,24],[9,42,37],[10,0,24],[10,42,37],[11,0,25],[11,42,37],[12,0,25],[12,42,37],[13,0,24],[13,42,37],[14,0,22],[14,44,35],[15,0,21],[15,44,35],[16,0,21],[16,45,34],[17,0,21],[17,48,31],[18,0,18],[18,19,2],[18,47,32],[19,0,19],[19,47,32],[20,0,20],[20,48,31],[21,0,19],[21,49,30],[22,0,19],[22,50,29],[23,0,19],[23,50,29],[24,0,18],[24,51,28],[25,0,17],[25,52,27],[26,0,16],[26,53,26],[27,0,15],[27,53,26],[28,0,14],[28,24,2],[28,53,26],[29,0,13],[29,53,26],[30,0,14],[30,54,25]],[[0,0,20],[0,50,29],[1,0,20],[1,49,30],[2,0,21],[2,48,31],[3,0,21],[3,22,2],[3,47,32],[4,0,24],[4,46,33],[5,0,23],[5,44,35],[6,0,23],[6,44,35],[7,0,24],[7,43,36],[8,0,24],[8,42,37],[9,0,24],[9,42,37],[10,0,24],[10,42,37],[11,0,25],[11,42,37],[12,0,25],[12,41,38],[13,0,24],[13,43,36],[14,0,22],[14,44,35],[15,0,22],[15,45,34],[16,0,22],[16,45,34],[17,0,22],[17,48,31],[18,0,19],[18,48,31],[19,0,20],[19,47,32],[20,0,20],[20,49,30],[21,0,20],[21,49,30],[22,0,20],[22,50,29],[23,0,19],[23,51,28],[24,0,18],[24,52,27],[25,0,17],[25,53,26],[26,0,16],[26,53,26],[27,0,15],[27,53,26],[28,0,14],[28,53,26],[29,0,14],[29,54,25],[30,0,15],[30,54,25]],[[0,0,21],[0,50,29],[1,0,21],[1,49,30],[2,0,21],[2,48,31],[3,0,22],[3,24,1],[3,48,31],[4,0,25],[4,47,32],[5,0,24],[5,44,35],[6,0,24],[6,44,35],[7,0,25],[7,43,36],[8,0,24],[8,42,37],[9,0,24],[9,42,37],[10,0,25],[10,41,38],[11,0,25],[11,41,38],[12,0,25],[12,41,38],[13,0,25],[13,44,35],[14,0,23],[14,45,34],[15,0,23],[15,45,34],[16,0,23],[16,47,32],[17,0,23],[17,49,30],[18,0,20],[18,48,31],[19,0,21],[19,48,31],[20,0,21],[20,27,2],[20,49,30],[21,0,21],[21,27,2],[21,49,30],[22,0,20],[22,27,2],[22,50,29],[23,0,20],[23,27,2],[23,51,28],[24,0,19],[24,52,27],[25,0,18],[25,53,26],[26,0,17],[26,54,25],[27,0,16],[27,53,26],[28,0,15],[28,53,26],[29,0,16],[29,54,25],[30,0,16],[30,24,2],[30,53,26]],[[0,0,21],[0,50,29],[1,0,22],[1,49,30],[2,0,22],[2,49,30],[3,0,23],[3,24,2],[3,48,31],[4,0,26],[4,45,34],[5,0,25],[5,45,34],[6,0,25],[6,45,34],[7,0,25],[7,44,35],[8,0,25],[8,43,36],[9,0,24],[9,42,37],[10,0,25],[10,41,38],[11,0,25],[11,42,37],[12,0,25],[12,43,36],[13,0,25],[13,45,34],[14,0,24],[14,46,33],[15,0,24],[15,46,33],[16,0,24],[16,47,32],[17,0,23],[17,28,1],[17,49,30],[18,0,21],[18,48,31],[19,0,22],[19,27,2],[19,49,30],[20,0,22],[20,27,3],[20,49,30],[21,0,21],[21,27,3],[21,50,29],[22,0,21],[22,27,3],[22,51,28],[23,0,20],[23,27,3],[23,52,27],[24,0,19],[24,27,3],[24,52,27],[25,0,18],[25,28,2],[25,53,26],[26,0,17],[26,28,2],[26,54,25],[27,0,17],[27,53,26],[28,0,16],[28,26,2],[28,53,26],[29,0,17],[29,25,2],[29,54,25],[30,0,16],[30,25,2],[30,53,26]],[[0,0,22],[0,50,29],[1,0,23],[1,50,29],[2,0,23],[2,49,30],[3,0,24],[3,49,30],[4,0,26],[4,45,34],[5,0,26],[5,45,34],[6,0,26],[6,46,33],[7,0,26],[7,44,35],[8,0,25],[8,43,36],[9,0,25],[9,42,37],[10,0,25],[10,41,38],[11,0,25],[11,43,36],[12,0,27],[12,45,34],[13,0,26],[13,46,33],[14,0,25],[14,47,32],[15,0,25],[15,47,32],[16,0,24],[16,28,2],[16,47,32],[17,0,22],[17,28,2],[17,50,29],[18,0,22],[18,49,30],[19,0,23],[19,28,2],[19,49,30],[20,0,23],[20,28,3],[20,50,29],[21,0,22],[21,28,3],[21,50,29],[22,0,22],[22,28,3],[22,51,28],[23,0,21],[23,28,3],[23,52,27],[24,0,20],[24,28,3],[24,53,26],[25,0,19],[25,28,3],[25,54,25],[26,0,18],[26,28,3],[26,55,24],[27,0,17],[27,28,2],[27,54,25],[28,0,17],[28,27,2],[28,54,25],[29,0,18],[29,26,2],[29,54,25],[30,0,18],[30,25,3],[30,53,26]],[[0,0,23],[0,50,29],[1,0,23],[1,50,29],[2,0,24],[2,50,29],[3,0,25],[3,49,30],[4,0,27],[4,46,33],[5,0,27],[5,47,32],[6,0,27],[6,47,32],[7,0,26],[7,45,34],[8,0,26],[8,44,35],[9,0,26],[9,42,37],[10,0,25],[10,42,37],[11,0,26],[11,44,35],[12,0,27],[12,46,33],[13,0,26],[13,47,32],[14,0,25],[14,48,31],[15,0,25],[15,48,31],[16,0,24],[16,29,2],[16,48,31],[17,0,23],[17,29,2],[17,50,29],[18,0,24],[18,50,29],[19,0,24],[19,29,3],[19,50,29],[20,0,23],[20,29,3],[20,51,28],[21,0,23],[21,29,3],[21,51,28],[22,0,23],[22,29,3],[22,52,27],[23,0,22],[23,29,3],[23,53,26],[24,0,21],[24,29,3],[24,54,25],[25,0,20],[25,29,3],[25,54,25],[26,0,19],[26,28,3],[26,55,24],[27,0,18],[27,28,2],[27,54,25],[28,0,19],[28,27,3],[28,54,25],[29,0,19],[29,27,2],[29,55,24],[30,0,19],[30,26,3],[30,53,26]],[[0,0,23],[0,50,29],[1,0,24],[1,50,29],[2,0,25],[2,50,29],[3,0,25],[3,46,2],[3,49,30],[4,0,28],[4,46,33],[5,0,28],[5,48,31],[6,0,28],[6,46,33],[7,0,27],[7,45,34],[8,0,27],[8,44,35],[9,0,26],[9,43,36],[10,0,26],[10,42,37],[11,0,26],[11,45,34],[12,0,27],[12,47,32],[13,0,26],[13,48,31],[14,0,25],[14,48,31],[15,0,25],[15,30,2],[15,49,30],[16,0,24],[16,30,2],[16,51,28],[17,0,24],[17,51,28],[18,0,23],[18,30,2],[18,50,29],[19,0,23],[19,30,3],[19,51,28],[20,0,23],[20,30,3],[20,51,28],[21,0,23],[21,30,3],[21,52,27],[22,0,23],[22,30,3],[22,53,26],[23,0,23],[23,30,3],[23,53,26],[24,0,22],[24,30,3],[24,54,25],[25,0,21],[25,29,4],[25,55,24],[26,0,20],[26,29,3],[26,56,23],[27,0,20],[27,29,2],[27,55,24],[28,0,21],[28,28,2],[28,55,24],[29,0,20],[29,27,3],[29,55,24],[30,0,20],[30,27,2],[30,54,25]],[[0,0,24],[0,51,28],[1,0,24],[1,50,29],[2,0,25],[2,50,29],[3,0,26],[3,46,2],[3,49,30],[4,0,28],[4,47,32],[5,0,28],[5,49,30],[6,0,29],[6,46,33],[7,0,28],[7,45,34],[8,0,28],[8,45,34],[9,0,27],[9,44,35],[10,0,27],[10,43,36],[11,0,27],[11,45,34],[12,0,27],[12,47,32],[13,0,26],[13,49,30],[14,0,26],[14,49,30],[15,0,25],[15,49,30],[16,0,24],[16,49,2],[16,52,27],[17,0,24],[17,51,28],[18,0,23],[18,31,2],[18,51,28],[19,0,23],[19,31,2],[19,51,28],[20,0,23],[20,31,3],[20,52,27],[21,0,23],[21,31,3],[21,52,27],[22,0,23],[22,31,3],[22,53,26],[23,0,24],[23,31,2],[23,54,25],[24,0,23],[24,30,3],[24,55,24],[25,0,22],[25,30,3],[25,56,23],[26,0,21],[26,30,2],[26,56,23],[27,0,21],[27,29,3],[27,55,24],[28,0,22],[28,29,2],[28,55,24],[29,0,21],[29,28,3],[29,56,23],[30,0,21],[30,27,3],[30,55,24]],[[0,0,24],[0,50,29],[1,0,25],[1,50,29],[2,0,25],[2,50,29],[3,0,26],[3,46,3],[3,50,29],[4,0,27],[4,47,32],[5,0,29],[5,49,30],[6,0,29],[6,46,33],[7,0,30],[7,46,33],[8,0,29],[8,45,34],[9,0,28],[9,45,34],[10,0,28],[10,44,35],[11,0,28],[11,45,34],[12,0,28],[12,48,31],[13,0,27],[13,49,30],[14,0,26],[14,49,30],[15,0,25],[15,49,30],[16,0,24],[16,52,27],[17,0,24],[17,52,27],[18,0,23],[18,51,28],[19,0,23],[19,25,2],[19,32,2],[19,52,27],[20,0,23],[20,25,2],[20,32,2],[20,52,27],[21,0,23],[21,32,2],[21,53,26],[22,0,23],[22,32,2],[22,54,25],[23,0,23],[23,32,2],[23,55,24],[24,0,24],[24,31,3],[24,55,24],[25,0,23],[25,31,3],[25,56,23],[26,0,22],[26,31,2],[26,57,22],[27,0,23],[27,30,2],[27,56,23],[28,0,23],[28,30,2],[28,56,23],[29,0,22],[29,29,2],[29,56,23],[30,0,22],[30,28,2],[30,56,23]],[[0,0,24],[0,50,29],[1,0,25],[1,50,29],[2,0,26],[2,50,29],[3,0,26],[3,47,2],[3,50,29],[4,0,27],[4,47,32],[5,0,29],[5,49,30],[6,0,29],[6,47,32],[7,0,30],[7,46,33],[8,0,30],[8,46,33],[9,0,29],[9,45,34],[10,0,29],[10,45,34],[11,0,29],[11,45,34],[12,0,29],[12,48,31],[13,0,27],[13,49,30],[14,0,26],[14,49,30],[15,0,25],[15,28,1],[15,50,29],[16,0,25],[16,27,2],[16,50,29],[17,0,24],[17,52,27],[18,0,24],[18,26,2],[18,32,2],[18,52,27],[19,0,23],[19,25,3],[19,32,2],[19,52,27],[20,0,23],[20,25,2],[20,53,26],[21,0,23],[21,25,2],[21,34,1],[21,53,26],[22,0,23],[22,26,1],[22,33,1],[22,54,25],[23,0,23],[23,32,2],[23,55,24],[24,0,23],[24,32,2],[24,56,23],[25,0,24],[25,32,2],[25,57,22],[26,0,24],[26,31,2],[26,58,21],[27,0,24],[27,31,2],[27,57,22],[28,0,24],[28,30,2],[28,57,22],[29,0,23],[29,30,2],[29,57,22],[30,0,23],[30,28,3],[30,56,23]],[[0,0,25],[0,34,2],[0,50,29],[1,0,25],[1,50,29],[2,0,26],[2,50,29],[3,0,27],[3,47,2],[3,50,29],[4,0,28],[4,47,32],[5,0,29],[5,49,30],[6,0,30],[6,49,30],[7,0,31],[7,47,32],[8,0,31],[8,47,32],[9,0,30],[9,46,33],[10,0,30],[10,33,2],[10,46,33],[11,0,30],[11,33,2],[11,46,33],[12,0,29],[12,47,32],[13,0,28],[13,49,30],[14,0,27],[14,50,29],[15,0,26],[15,50,29],[16,0,25],[16,27,2],[16,50,29],[17,0,24],[17,27,1],[17,52,27],[18,0,24],[18,26,2],[18,52,27],[19,0,24],[19,26,2],[19,53,26],[20,0,23],[20,25,3],[20,33,2],[20,53,26],[21,0,23],[21,25,3],[21,33,2],[21,54,25],[22,0,23],[22,25,3],[22,33,2],[22,55,24],[23,0,23],[23,33,2],[23,56,23],[24,0,23],[24,33,2],[24,57,22],[25,0,24],[25,32,3],[25,58,21],[26,0,24],[26,32,2],[26,58,21],[27,0,25],[27,58,21],[28,0,25],[28,32,1],[28,57,22],[29,0,24],[29,30,2],[29,58,21],[30,0,24],[30,29,3],[30,57,22]],[[0,0,29],[0,33,8],[0,50,29],[1,0,25],[1,50,29],[2,0,26],[2,51,28],[3,0,27],[3,50,29],[4,0,28],[4,47,32],[5,0,29],[5,48,31],[6,0,30],[6,50,29],[7,0,31],[7,47,32],[8,0,31],[8,47,32],[9,0,31],[9,47,32],[10,0,30],[10,35,1],[10,47,32],[11,0,30],[11,34,2],[11,46,33],[12,0,30],[12,47,32],[13,0,29],[13,49,30],[14,0,28],[14,50,29],[15,0,27],[15,29,1],[15,50,29],[16,0,26],[16,28,2],[16,51,28],[17,0,25],[17,53,26],[18,0,24],[18,26,3],[18,53,26],[19,0,24],[19,26,3],[19,53,26],[20,0,24],[20,26,3],[20,54,25],[21,0,23],[21,26,3],[21,54,25],[22,0,23],[22,26,2],[22,55,24],[23,0,23],[23,26,2],[23,56,23],[24,0,23],[24,57,22],[25,0,24],[25,33,2],[25,58,21],[26,0,26],[26,33,2],[26,59,20],[27,0,26],[27,58,21],[28,0,25],[28,58,21],[29,0,25],[29,31,2],[29,58,21],[30,0,26],[30,30,2],[30,57,22]],[[0,0,42],[0,51,28],[1,0,28],[1,35,2],[1,51,28],[2,0,26],[2,51,28],[3,0,27],[3,51,28],[4,0,28],[4,47,32],[5,0,29],[5,48,31],[6,0,30],[6,50,29],[7,0,31],[7,48,31],[8,0,32],[8,48,31],[9,0,32],[9,48,31],[10,0,31],[10,46,33],[11,0,31],[11,35,2],[11,46,33],[12,0,31],[12,47,32],[13,0,30],[13,49,30],[14,0,29],[14,50,29],[15,0,27],[15,30,1],[15,50,29],[16,0,26],[16,29,2],[16,51,28],[17,0,25],[17,28,2],[17,53,26],[18,0,25],[18,27,3],[18,53,26],[19,0,24],[19,26,4],[19,53,26],[20,0,24],[20,26,4],[20,54,25],[21,0,24],[21,26,4],[21,55,24],[22,0,24],[22,26,3],[22,56,23],[23,0,23],[23,26,2],[23,56,23],[24,0,23],[24,26,2],[24,57,22],[25,0,23],[25,58,21],[26,0,24],[26,25,1],[26,59,20],[27,0,27],[27,59,20],[28,0,26],[28,58,21],[29,0,26],[29,59,20],[30,0,27],[30,31,2],[30,57,22]],[[0,0,43],[0,51,28],[1,0,42],[1,51,28],[2,0,26],[2,51,28],[3,0,27],[3,51,28],[4,0,28],[4,48,2],[4,51,28],[5,0,29],[5,48,31],[6,0,31],[6,50,29],[7,0,31],[7,48,31],[8,0,32],[8,48,31],[9,0,32],[9,48,31],[10,0,32],[10,48,31],[11,0,32],[11,36,2],[11,47,32],[12,0,32],[12,36,2],[12,47,32],[13,0,31],[13,49,30],[14,0,30],[14,50,29],[15,0,28],[15,51,28],[16,0,27],[16,29,2],[16,51,28],[17,0,26],[17,30,1],[17,51,1],[17,54,25],[18,0,25],[18,28,2],[18,53,26],[19,0,25],[19,27,4],[19,54,25],[20,0,24],[20,27,4],[20,49,1],[20,54,25],[21,0,24],[21,26,4],[21,55,24],[22,0,24],[22,26,4],[22,56,23],[23,0,24],[23,26,3],[23,57,22],[24,0,24],[24,26,2],[24,58,21],[25,0,23],[25,59,20],[26,0,24],[26,25,3],[26,59,20],[27,0,27],[27,59,20],[28,0,26],[28,59,20],[29,0,27],[29,59,20],[30,0,28],[30,58,21]],[[0,0,44],[0,51,28],[1,0,42],[1,51,28],[2,0,27],[2,51,28],[3,0,27],[3,51,28],[4,0,29],[4,48,2],[4,51,28],[5,0,30],[5,48,31],[6,0,31],[6,50,29],[7,0,32],[7,49,30],[8,0,33],[8,49,30],[9,0,33],[9,49,30],[10,0,32],[10,49,30],[11,0,32],[11,48,31],[12,0,32],[12,48,31],[13,0,32],[13,50,29],[14,0,30],[14,51,28],[15,0,29],[15,51,28],[16,0,28],[16,30,2],[16,51,28],[17,0,27],[17,54,25],[18,0,26],[18,28,3],[18,53,26],[19,0,25],[19,28,3],[19,48,2],[19,54,25],[20,0,25],[20,27,4],[20,48,2],[20,55,24],[21,0,24],[21,27,4],[21,55,24],[22,0,24],[22,26,4],[22,56,23],[23,0,24],[23,26,3],[23,57,22],[24,0,24],[24,26,2],[24,58,21],[25,0,24],[25,59,20],[26,0,28],[26,60,19],[27,0,27],[27,59,20],[28,0,27],[28,59,20],[29,0,28],[29,59,20],[30,0,28],[30,58,21]],[[0,0,44],[0,51,28],[1,0,42],[1,51,28],[2,0,27],[2,52,27],[3,0,28],[3,52,27],[4,0,29],[4,48,2],[4,51,28],[5,0,30],[5,48,31],[6,0,32],[6,50,29],[7,0,32],[7,49,30],[8,0,33],[8,49,30],[9,0,33],[9,49,30],[10,0,33],[10,48,31],[11,0,33],[11,48,31],[12,0,33],[12,49,30],[13,0,33],[13,50,29],[14,0,31],[14,51,28],[15,0,30],[15,51,28],[16,0,29],[16,51,28],[17,0,28],[17,54,25],[18,0,27],[18,29,2],[18,53,26],[19,0,26],[19,28,3],[19,48,2],[19,54,25],[20,0,26],[20,28,3],[20,48,2],[20,55,24],[21,0,25],[21,27,4],[21,56,23],[22,0,25],[22,27,3],[22,56,23],[23,0,24],[23,27,2],[23,57,22],[24,0,24],[24,27,1],[24,58,21],[25,0,24],[25,26,2],[25,59,20],[26,0,28],[26,60,19],[27,0,27],[27,59,20],[28,0,27],[28,59,20],[29,0,29],[29,59,20],[30,0,29],[30,59,20]],[[0,0,44],[0,52,27],[1,0,43],[1,52,27],[2,0,27],[2,52,27],[3,0,28],[3,52,27],[4,0,30],[4,48,2],[4,51,28],[5,0,31],[5,49,30],[6,0,32],[6,51,28],[7,0,33],[7,49,30],[8,0,34],[8,49,30],[9,0,33],[9,35,1],[9,50,29],[10,0,33],[10,34,2],[10,49,30],[11,0,33],[11,49,30],[12,0,33],[12,49,30],[13,0,33],[13,50,29],[14,0,32],[14,51,28],[15,0,31],[15,51,28],[16,0,29],[16,52,27],[17,0,28],[17,54,25],[18,0,27],[18,30,2],[18,48,2],[18,54,25],[19,0,27],[19,29,3],[19,48,2],[19,54,25],[20,0,26],[20,28,3],[20,48,2],[20,55,24],[21,0,26],[21,28,3],[21,56,23],[22,0,25],[22,27,3],[22,57,22],[23,0,25],[23,27,2],[23,58,21],[24,0,25],[24,28,1],[24,59,20],[25,0,24],[25,28,1],[25,60,19],[26,0,28],[26,60,19],[27,0,27],[27,59,20],[28,0,28],[28,59,20],[29,0,30],[29,59,20],[30,0,30],[30,59,20]],[[0,0,44],[0,52,27],[1,0,33],[1,36,4],[1,41,2],[1,52,27],[2,0,28],[2,52,27],[3,0,29],[3,52,27],[4,0,30],[4,49,30],[5,0,31],[5,49,30],[6,0,33],[6,51,28],[7,0,33],[7,49,30],[8,0,34],[8,49,30],[9,0,34],[9,49,30],[10,0,33],[10,49,30],[11,0,33],[11,35,1],[11,50,29],[12,0,34],[12,49,30],[13,0,33],[13,51,28],[14,0,32],[14,51,28],[15,0,31],[15,52,27],[16,0,30],[16,52,27],[17,0,29],[17,54,25],[18,0,28],[18,30,2],[18,48,2],[18,54,25],[19,0,27],[19,30,2],[19,48,2],[19,55,24],[20,0,27],[20,29,3],[20,48,2],[20,55,24],[21,0,26],[21,28,3],[21,49,2],[21,56,23],[22,0,26],[22,28,2],[22,49,2],[22,57,22],[23,0,25],[23,58,21],[24,0,25],[24,59,20],[25,0,25],[25,27,2],[25,60,19],[26,0,28],[26,60,19],[27,0,28],[27,59,20],[28,0,30],[28,59,20],[29,0,30],[29,60,19],[30,0,30],[30,59,20]],[[0,0,44],[0,52,27],[1,0,32],[1,37,2],[1,52,27],[2,0,28],[2,52,27],[3,0,29],[3,52,27],[4,0,30],[4,49,30],[5,0,32],[5,50,29],[6,0,33],[6,51,28],[7,0,34],[7,49,30],[8,0,34],[8,50,29],[9,0,34],[9,49,30],[10,0,34],[10,50,29],[11,0,34],[11,35,1],[11,50,29],[12,0,34],[12,35,1],[12,50,29],[13,0,34],[13,51,28],[14,0,33],[14,52,27],[15,0,32],[15,52,27],[16,0,31],[16,52,27],[17,0,30],[17,54,25],[18,0,29],[18,48,2],[18,54,25],[19,0,28],[19,30,2],[19,48,2],[19,55,24],[20,0,28],[20,29,3],[20,49,2],[20,56,23],[21,0,27],[21,29,2],[21,49,2],[21,56,23],[22,0,26],[22,29,1],[22,49,2],[22,57,22],[23,0,26],[23,58,21],[24,0,25],[24,59,20],[25,0,25],[25,26,1],[25,28,1],[25,60,19],[26,0,28],[26,60,19],[27,0,28],[27,59,20],[28,0,29],[28,60,19],[29,0,31],[29,60,19],[30,0,31],[30,59,20]],[[0,0,44],[0,53,26],[1,0,32],[1,38,1],[1,53,26],[2,0,29],[2,53,26],[3,0,30],[3,53,26],[4,0,31],[4,50,29],[5,0,32],[5,50,29],[6,0,34],[6,51,28],[7,0,35],[7,49,30],[8,0,35],[8,50,29],[9,0,34],[9,50,29],[10,0,34],[10,35,2],[10,50,29],[11,0,34],[11,36,1],[11,50,29],[12,0,35],[12,51,28],[13,0,34],[13,52,27],[14,0,34],[14,52,27],[15,0,33],[15,52,27],[16,0,31],[16,54,25],[17,0,30],[17,54,25],[18,0,30],[18,55,24],[19,0,29],[19,49,2],[19,55,24],[20,0,28],[20,49,2],[20,56,23],[21,0,28],[21,49,2],[21,57,22],[22,0,27],[22,49,2],[22,58,21],[23,0,27],[23,58,21],[24,0,26],[24,59,20],[25,0,28],[25,60,19],[26,0,28],[26,60,19],[27,0,28],[27,59,20],[28,0,31],[28,60,19],[29,0,31],[29,60,19],[30,0,31],[30,60,19]],[[0,0,44],[0,53,26],[1,0,31],[1,38,2],[1,53,26],[2,0,29],[2,53,26],[3,0,30],[3,53,26],[4,0,32],[4,50,29],[5,0,34],[5,51,28],[6,0,34],[6,52,27],[7,0,35],[7,50,29],[8,0,35],[8,50,29],[9,0,35],[9,50,29],[10,0,35],[10,50,29],[11,0,35],[11,36,1],[11,50,29],[12,0,35],[12,51,28],[13,0,34],[13,52,27],[14,0,34],[14,52,27],[15,0,33],[15,53,26],[16,0,32],[16,55,24],[17,0,31],[17,54,25],[18,0,30],[18,49,2],[18,55,24],[19,0,30],[19,49,2],[19,55,24],[20,0,29],[20,49,2],[20,56,23],[21,0,29],[21,49,2],[21,57,22],[22,0,28],[22,49,2],[22,58,21],[23,0,27],[23,50,1],[23,59,20],[24,0,27],[24,60,19],[25,0,28],[25,60,19],[26,0,28],[26,59,20],[27,0,29],[27,60,19],[28,0,31],[28,60,19],[29,0,31],[29,60,19],[30,0,32],[30,60,19]],[[0,0,45],[0,54,25],[1,0,31],[1,53,26],[2,0,30],[2,53,26],[3,0,31],[3,50,1],[3,53,26],[4,0,32],[4,50,29],[5,0,35],[5,52,27],[6,0,35],[6,51,28],[7,0,36],[7,50,29],[8,0,36],[8,50,29],[9,0,35],[9,50,29],[10,0,35],[10,50,29],[11,0,37],[11,49,30],[12,0,37],[12,52,27],[13,0,35],[13,52,27],[14,0,34],[14,53,26],[15,0,32],[15,53,26],[16,0,32],[16,55,24],[17,0,32],[17,49,2],[17,55,24],[18,0,31],[18,49,2],[18,55,24],[19,0,30],[19,49,2],[19,56,23],[20,0,30],[20,49,2],[20,56,23],[21,0,29],[21,49,2],[21,57,22],[22,0,29],[22,49,2],[22,58,21],[23,0,28],[23,50,2],[23,59,20],[24,0,27],[24,50,1],[24,60,19],[25,0,28],[25,60,19],[26,0,28],[26,59,20],[27,0,31],[27,60,19],[28,0,31],[28,60,19],[29,0,32],[29,60,19],[30,0,32],[30,60,19]],[[0,0,45],[0,54,25],[1,0,30],[1,39,2],[1,54,25],[2,0,30],[2,54,25],[3,0,32],[3,51,1],[3,53,26],[4,0,32],[4,51,28],[5,0,35],[5,52,27],[6,0,35],[6,51,28],[7,0,36],[7,50,29],[8,0,36],[8,50,29],[9,0,36],[9,50,29],[10,0,35],[10,50,29],[11,0,36],[11,50,29],[12,0,36],[12,52,27],[13,0,35],[13,53,26],[14,0,35],[14,53,26],[15,0,32],[15,53,26],[16,0,33],[16,55,24],[17,0,33],[17,49,2],[17,55,24],[18,0,32],[18,49,2],[18,55,24],[19,0,31],[19,49,2],[19,56,23],[20,0,30],[20,49,2],[20,56,23],[21,0,30],[21,49,2],[21,57,22],[22,0,29],[22,49,2],[22,58,21],[23,0,28],[23,50,2],[23,59,20],[24,0,28],[24,60,19],[25,0,28],[25,60,19],[26,0,28],[26,59,20],[27,0,31],[27,60,19],[28,0,31],[28,60,19],[29,0,32],[29,60,19],[30,0,33],[30,60,19]],[[0,0,45],[0,54,25],[1,0,31],[1,39,2],[1,54,25],[2,0,31],[2,54,25],[3,0,32],[3,51,1],[3,54,25],[4,0,33],[4,51,28],[5,0,36],[5,52,27],[6,0,36],[6,51,28],[7,0,37],[7,51,28],[8,0,37],[8,50,29],[9,0,36],[9,50,29],[10,0,36],[10,50,29],[11,0,38],[11,50,29],[12,0,36],[12,52,27],[13,0,35],[13,53,26],[14,0,35],[14,53,26],[15,0,33],[15,54,25],[16,0,33],[16,55,24],[17,0,33],[17,49,2],[17,55,24],[18,0,32],[18,49,2],[18,55,24],[19,0,31],[19,49,2],[19,56,23],[20,0,31],[20,49,2],[20,56,23],[21,0,30],[21,49,2],[21,57,22],[22,0,29],[22,49,2],[22,58,21],[23,0,28],[23,59,20],[24,0,29],[24,60,19],[25,0,28],[25,59,20],[26,0,28],[26,59,20],[27,0,31],[27,60,19],[28,0,31],[28,60,19],[29,0,32],[29,60,19],[30,0,33],[30,55,1],[30,60,19]],[[0,0,46],[0,54,25],[1,0,33],[1,40,2],[1,44,2],[1,54,25],[2,0,31],[2,54,25],[3,0,32],[3,54,25],[4,0,33],[4,51,28],[5,0,34],[5,52,27],[6,0,36],[6,53,26],[7,0,36],[7,51,28],[8,0,37],[8,51,28],[9,0,37],[9,50,29],[10,0,36],[10,50,29],[11,0,37],[11,50,29],[12,0,37],[12,52,27],[13,0,36],[13,53,26],[14,0,35],[14,53,26],[15,0,33],[15,54,25],[16,0,33],[16,56,23],[17,0,33],[17,55,24],[18,0,32],[18,49,1],[18,55,24],[19,0,31],[19,49,1],[19,56,23],[20,0,30],[20,49,2],[20,56,23],[21,0,30],[21,49,2],[21,57,22],[22,0,28],[22,49,2],[22,58,21],[23,0,28],[23,59,20],[24,0,29],[24,60,19],[25,0,28],[25,59,20],[26,0,27],[26,59,20],[27,0,31],[27,60,19],[28,0,31],[28,60,19],[29,0,33],[29,59,20],[30,0,33],[30,60,19]],[[0,0,50],[0,54,25],[1,0,46],[1,55,24],[2,0,32],[2,55,24],[3,0,32],[3,54,25],[4,0,33],[4,52,1],[4,54,25],[5,0,34],[5,36,1],[5,51,28],[6,0,37],[6,53,26],[7,0,36],[7,51,28],[8,0,37],[8,51,28],[9,0,37],[9,51,28],[10,0,37],[10,50,29],[11,0,37],[11,50,29],[12,0,37],[12,51,28],[13,0,36],[13,53,26],[14,0,36],[14,53,26],[15,0,33],[15,34,1],[15,53,26],[16,0,33],[16,56,23],[17,0,33],[17,55,24],[18,0,32],[18,55,24],[19,0,31],[19,55,24],[20,0,30],[20,55,24],[21,0,29],[21,49,2],[21,56,23],[22,0,29],[22,49,2],[22,57,22],[23,0,28],[23,49,2],[23,58,21],[24,0,28],[24,59,20],[25,0,28],[25,60,19],[26,0,28],[26,59,20],[27,0,31],[27,59,20],[28,0,31],[28,59,20],[29,0,33],[29,59,20],[30,0,33],[30,54,2],[30,60,19]],[[0,0,79],[1,0,48],[1,55,24],[2,0,32],[2,41,1],[2,55,24],[3,0,32],[3,54,25],[4,0,33],[4,54,25],[5,0,34],[5,51,28],[6,0,37],[6,52,27],[7,0,36],[7,51,28],[8,0,38],[8,51,28],[9,0,37],[9,51,28],[10,0,37],[10,50,29],[11,0,37],[11,50,29],[12,0,37],[12,50,29],[13,0,37],[13,52,27],[14,0,36],[14,53,26],[15,0,35],[15,53,26],[16,0,33],[16,53,26],[17,0,33],[17,55,24],[18,0,32],[18,54,25],[19,0,31],[19,55,24],[20,0,30],[20,55,24],[21,0,30],[21,56,23],[22,0,28],[22,49,2],[22,57,22],[23,0,28],[23,49,2],[23,58,21],[24,0,28],[24,59,20],[25,0,27],[25,59,20],[26,0,29],[26,59,20],[27,0,30],[27,59,20],[28,0,31],[28,59,20],[29,0,32],[29,53,2],[29,59,20],[30,0,32],[30,53,3],[30,60,19]],[[0,0,79],[1,0,50],[1,54,25],[2,0,32],[2,41,1],[2,54,25],[3,0,32],[3,54,25],[4,0,33],[4,54,25],[5,0,33],[5,51,28],[6,0,36],[6,51,28],[7,0,36],[7,52,27],[8,0,37],[8,51,28],[9,0,37],[9,51,28],[10,0,37],[10,51,28],[11,0,38],[11,50,29],[12,0,38],[12,50,29],[13,0,36],[13,52,27],[14,0,35],[14,53,26],[15,0,33],[15,53,26],[16,0,33],[16,54,25],[17,0,33],[17,54,25],[18,0,32],[18,54,25],[19,0,31],[19,54,25],[20,0,30],[20,55,24],[21,0,29],[21,56,23],[22,0,28],[22,57,22],[23,0,28],[23,49,2],[23,58,21],[24,0,28],[24,49,2],[24,59,20],[25,0,27],[25,58,21],[26,0,29],[26,58,21],[27,0,30],[27,59,20],[28,0,30],[28,59,20],[29,0,32],[29,52,2],[29,59,20],[30,0,32],[30,53,3],[30,59,20]],[[0,0,79],[1,0,79],[2,0,32],[2,54,25],[3,0,32],[3,54,25],[4,0,32],[4,53,26],[5,0,33],[5,50,29],[6,0,36],[6,51,28],[7,0,36],[7,51,28],[8,0,37],[8,50,29],[9,0,37],[9,51,28],[10,0,37],[10,51,28],[11,0,38],[11,50,29],[12,0,37],[12,50,29],[13,0,35],[13,52,27],[14,0,35],[14,52,27],[15,0,33],[15,52,27],[16,0,32],[16,53,26],[17,0,33],[17,54,25],[18,0,32],[18,47,1],[18,54,25],[19,0,31],[19,47,2],[19,54,25],[20,0,30],[20,47,2],[20,54,25],[21,0,29],[21,47,2],[21,55,24],[22,0,27],[22,47,1],[22,56,23],[23,0,27],[23,57,22],[24,0,28],[24,49,1],[24,59,20],[25,0,27],[25,49,2],[25,58,21],[26,0,29],[26,50,2],[26,58,21],[27,0,30],[27,50,2],[27,58,21],[28,0,30],[28,51,2],[28,58,21],[29,0,31],[29,52,2],[29,58,21],[30,0,31],[30,52,4],[30,59,20]],[[0,0,79],[1,0,79],[2,0,31],[2,54,25],[3,0,32],[3,53,26],[4,0,32],[4,53,26],[5,0,33],[5,50,29],[6,0,35],[6,50,29],[7,0,35],[7,50,29],[8,0,36],[8,50,29],[9,0,37],[9,50,29],[10,0,37],[10,50,29],[11,0,37],[11,50,29],[12,0,36],[12,50,29],[13,0,34],[13,51,28],[14,0,34],[14,52,27],[15,0,32],[15,52,27],[16,0,32],[16,54,25],[17,0,32],[17,47,2],[17,53,26],[18,0,31],[18,47,2],[18,53,26],[19,0,31],[19,46,3],[19,54,25],[20,0,30],[20,46,3],[20,54,25],[21,0,29],[21,47,2],[21,55,24],[22,0,28],[22,47,2],[22,56,23],[23,0,27],[23,47,2],[23,57,22],[24,0,28],[24,48,1],[24,58,21],[25,0,27],[25,49,2],[25,57,22],[26,0,29],[26,49,2],[26,58,21],[27,0,29],[27,50,2],[27,58,21],[28,0,30],[28,50,3],[28,58,21],[29,0,31],[29,51,3],[29,58,21],[30,0,30],[30,52,3],[30,59,20]],[[0,0,79],[1,0,79],[2,0,31],[2,53,26],[3,0,31],[3,52,27],[4,0,32],[4,52,27],[5,0,35],[5,49,30],[6,0,35],[6,50,29],[7,0,34],[7,49,30],[8,0,36],[8,50,29],[9,0,37],[9,50,29],[10,0,37],[10,50,29],[11,0,37],[11,50,29],[12,0,35],[12,50,29],[13,0,34],[13,51,28],[14,0,33],[14,51,28],[15,0,31],[15,47,2],[15,51,28],[16,0,31],[16,47,1],[16,53,26],[17,0,32],[17,46,3],[17,53,26],[18,0,31],[18,46,3],[18,53,26],[19,0,30],[19,46,3],[19,53,26],[20,0,29],[20,46,3],[20,54,25],[21,0,28],[21,46,3],[21,55,24],[22,0,27],[22,46,3],[22,56,23],[23,0,27],[23,46,3],[23,57,22],[24,0,27],[24,47,3],[24,58,21],[25,0,27],[25,48,2],[25,57,22],[26,0,28],[26,49,2],[26,57,22],[27,0,29],[27,49,2],[27,58,21],[28,0,30],[28,50,2],[28,57,22],[29,0,30],[29,51,2],[29,58,21],[30,0,29],[30,51,4],[30,58,21]],[[0,0,79],[1,0,34],[1,36,43],[2,0,31],[2,53,26],[3,0,31],[3,52,27],[4,0,32],[4,51,28],[5,0,35],[5,49,30],[6,0,34],[6,49,30],[7,0,34],[7,49,30],[8,0,36],[8,49,30],[9,0,37],[9,50,29],[10,0,37],[10,50,29],[11,0,36],[11,50,29],[12,0,34],[12,49,30],[13,0,33],[13,50,29],[14,0,33],[14,46,2],[14,50,29],[15,0,30],[15,46,2],[15,51,28],[16,0,31],[16,46,2],[16,53,26],[17,0,31],[17,46,2],[17,52,27],[18,0,30],[18,45,3],[18,53,26],[19,0,29],[19,45,3],[19,53,26],[20,0,29],[20,45,3],[20,54,25],[21,0,28],[21,45,4],[21,54,25],[22,0,26],[22,45,4],[22,55,24],[23,0,26],[23,46,3],[23,56,23],[24,0,27],[24,47,2],[24,57,22],[25,0,26],[25,47,3],[25,56,23],[26,0,28],[26,48,2],[26,57,22],[27,0,28],[27,49,2],[27,57,22],[28,0,29],[28,49,3],[28,57,22],[29,0,29],[29,50,3],[29,57,22],[30,0,28],[30,51,3],[30,58,21]],[[0,0,79],[1,0,31],[1,37,42],[2,0,31],[2,52,27],[3,0,31],[3,52,27],[4,0,31],[4,51,28],[5,0,34],[5,50,29],[6,0,33],[6,49,30],[7,0,35],[7,48,31],[8,0,35],[8,49,30],[9,0,36],[9,49,30],[10,0,37],[10,49,30],[11,0,36],[11,49,30],[12,0,33],[12,49,30],[13,0,32],[13,50,29],[14,0,32],[14,50,29],[15,0,30],[15,45,3],[15,51,28],[16,0,30],[16,45,2],[16,52,27],[17,0,31],[17,45,3],[17,52,27],[18,0,30],[18,44,4],[18,52,27],[19,0,29],[19,44,4],[19,53,26],[20,0,28],[20,45,3],[20,53,26],[21,0,27],[21,45,3],[21,54,25],[22,0,26],[22,45,3],[22,55,24],[23,0,26],[23,45,3],[23,56,23],[24,0,26],[24,46,3],[24,56,23],[25,0,26],[25,47,2],[25,55,24],[26,0,27],[26,47,3],[26,56,23],[27,0,28],[27,48,3],[27,56,23],[28,0,28],[28,49,3],[28,56,23],[29,0,28],[29,50,3],[29,57,22],[30,0,27],[30,50,4],[30,57,22]],[[0,0,79],[1,0,31],[1,37,42],[2,0,31],[2,52,27],[3,0,31],[3,51,28],[4,0,31],[4,33,1],[4,51,28],[5,0,34],[5,50,29],[6,0,32],[6,48,31],[7,0,34],[7,48,31],[8,0,35],[8,48,31],[9,0,36],[9,49,30],[10,0,36],[10,49,30],[11,0,35],[11,49,30],[12,0,33],[12,49,30],[13,0,32],[13,49,30],[14,0,32],[14,45,2],[14,50,29],[15,0,30],[15,45,2],[15,51,28],[16,0,30],[16,45,2],[16,52,27],[17,0,30],[17,44,3],[17,52,27],[18,0,29],[18,44,3],[18,52,27],[19,0,29],[19,44,3],[19,52,27],[20,0,28],[20,44,4],[20,53,26],[21,0,27],[21,44,4],[21,54,25],[22,0,26],[22,44,4],[22,54,25],[23,0,25],[23,45,3],[23,55,24],[24,0,26],[24,46,2],[24,55,24],[25,0,26],[25,46,3],[25,55,24],[26,0,26],[26,47,2],[26,56,23],[27,0,27],[27,47,3],[27,56,23],[28,0,28],[28,48,3],[28,55,24],[29,0,27],[29,49,3],[29,56,23],[30,0,27],[30,50,4],[30,56,23]],[[0,0,79],[1,0,31],[1,37,42],[2,0,31],[2,52,27],[3,0,31],[3,51,28],[4,0,31],[4,32,2],[4,51,28],[5,0,34],[5,50,29],[6,0,32],[6,48,31],[7,0,34],[7,47,32],[8,0,35],[8,47,32],[9,0,35],[9,48,31],[10,0,35],[10,48,31],[11,0,35],[11,48,31],[12,0,33],[12,48,31],[13,0,32],[13,49,30],[14,0,31],[14,50,29],[15,0,29],[15,45,2],[15,51,28],[16,0,30],[16,45,2],[16,51,28],[17,0,30],[17,44,3],[17,52,27],[18,0,29],[18,44,3],[18,52,27],[19,0,28],[19,44,3],[19,52,27],[20,0,28],[20,44,3],[20,52,27],[21,0,27],[21,44,3],[21,53,26],[22,0,26],[22,44,3],[22,54,25],[23,0,25],[23,45,2],[23,54,25],[24,0,26],[24,45,3],[24,55,24],[25,0,25],[25,46,2],[25,54,25],[26,0,26],[26,46,3],[26,55,24],[27,0,27],[27,47,3],[27,55,24],[28,0,27],[28,48,3],[28,55,24],[29,0,27],[29,49,3],[29,55,24],[30,0,27],[30,50,3],[30,56,23]],[[0,0,79],[1,0,31],[1,37,42],[2,0,31],[2,43,1],[2,52,27],[3,0,31],[3,51,28],[4,0,31],[4,33,1],[4,51,28],[5,0,34],[5,50,29],[6,0,32],[6,48,31],[7,0,34],[7,48,31],[8,0,34],[8,47,32],[9,0,34],[9,47,32],[10,0,35],[10,48,31],[11,0,35],[11,48,31],[12,0,32],[12,48,31],[13,0,31],[13,49,30],[14,0,31],[14,50,29],[15,0,31],[15,51,28],[16,0,29],[16,44,2],[16,51,28],[17,0,29],[17,44,3],[17,52,27],[18,0,28],[18,44,2],[18,52,27],[19,0,28],[19,43,3],[19,52,27],[20,0,27],[20,43,3],[20,52,27],[21,0,26],[21,44,3],[21,52,27],[22,0,25],[22,44,3],[22,53,26],[23,0,25],[23,44,3],[23,54,25],[24,0,25],[24,45,2],[24,54,25],[25,0,25],[25,45,3],[25,54,25],[26,0,25],[26,46,2],[26,54,25],[27,0,26],[27,47,2],[27,54,25],[28,0,26],[28,48,2],[28,54,25],[29,0,27],[29,48,3],[29,55,24],[30,0,26],[30,49,4],[30,55,24]],[[0,0,79],[1,0,31],[1,36,43],[2,0,31],[2,40,5],[2,49,30],[3,0,31],[3,51,28],[4,0,31],[4,51,28],[5,0,33],[5,50,29],[6,0,32],[6,48,31],[7,0,34],[7,48,31],[8,0,34],[8,46,33],[9,0,34],[9,46,33],[10,0,34],[10,47,32],[11,0,34],[11,47,32],[12,0,32],[12,47,32],[13,0,31],[13,48,31],[14,0,31],[14,49,30],[15,0,31],[15,50,29],[16,0,29],[16,51,28],[17,0,29],[17,44,2],[17,51,28],[18,0,28],[18,43,3],[18,52,27],[19,0,28],[19,43,3],[19,52,27],[20,0,27],[20,43,3],[20,52,27],[21,0,26],[21,43,3],[21,52,27],[22,0,25],[22,43,3],[22,52,27],[23,0,24],[23,44,2],[23,53,26],[24,0,24],[24,45,2],[24,53,26],[25,0,25],[25,45,2],[25,53,26],[26,0,25],[26,46,2],[26,54,25],[27,0,25],[27,46,3],[27,53,26],[28,0,26],[28,47,3],[28,53,26],[29,0,26],[29,48,3],[29,54,25],[30,0,26],[30,49,3],[30,54,25]],[[0,0,79],[1,0,31],[1,34,45],[2,0,31],[2,39,40],[3,0,31],[3,51,28],[4,0,31],[4,50,29],[5,0,33],[5,50,29],[6,0,32],[6,48,31],[7,0,33],[7,47,32],[8,0,33],[8,46,33],[9,0,33],[9,46,33],[10,0,34],[10,42,2],[10,46,33],[11,0,34],[11,42,2],[11,46,33],[12,0,33],[12,47,32],[13,0,31],[13,48,31],[14,0,31],[14,49,30],[15,0,30],[15,50,29],[16,0,29],[16,51,28],[17,0,29],[17,43,2],[17,51,28],[18,0,28],[18,43,2],[18,52,27],[19,0,27],[19,43,2],[19,52,27],[20,0,26],[20,43,2],[20,52,27],[21,0,26],[21,43,2],[21,52,27],[22,0,25],[22,43,3],[22,52,27],[23,0,24],[23,43,3],[23,53,26],[24,0,24],[24,44,2],[24,53,26],[25,0,24],[25,45,2],[25,53,26],[26,0,24],[26,45,2],[26,53,26],[27,0,25],[27,46,2],[27,53,26],[28,0,25],[28,47,2],[28,53,26],[29,0,26],[29,48,2],[29,53,26],[30,0,26],[30,49,2],[30,53,26]],[[0,0,79],[1,0,79],[2,0,31],[2,38,41],[3,0,30],[3,51,28],[4,0,30],[4,50,29],[5,0,31],[5,49,30],[6,0,32],[6,48,31],[7,0,31],[7,47,32],[8,0,33],[8,46,33],[9,0,33],[9,46,33],[10,0,33],[10,41,1],[10,46,33],[11,0,34],[11,41,2],[11,46,33],[12,0,33],[12,46,33],[13,0,31],[13,47,32],[14,0,31],[14,48,31],[15,0,30],[15,49,30],[16,0,28],[16,50,29],[17,0,28],[17,43,2],[17,48,1],[17,51,28],[18,0,28],[18,43,2],[18,48,1],[18,51,28],[19,0,27],[19,42,3],[19,52,27],[20,0,26],[20,42,3],[20,52,27],[21,0,25],[21,43,2],[21,52,27],[22,0,24],[22,43,2],[22,52,27],[23,0,23],[23,43,2],[23,52,27],[24,0,23],[24,44,2],[24,52,27],[25,0,24],[25,44,2],[25,52,27],[26,0,24],[26,45,2],[26,53,26],[27,0,24],[27,45,3],[27,52,27],[28,0,24],[28,46,3],[28,52,27],[29,0,25],[29,47,3],[29,53,26],[30,0,26],[30,48,3],[30,53,26]],[[0,0,79],[1,0,79],[2,0,30],[2,37,42],[3,0,30],[3,50,29],[4,0,30],[4,50,29],[5,0,30],[5,49,30],[6,0,32],[6,48,31],[7,0,31],[7,47,32],[8,0,32],[8,46,33],[9,0,32],[9,45,34],[10,0,32],[10,45,34],[11,0,33],[11,46,33],[12,0,33],[12,45,34],[13,0,31],[13,47,32],[14,0,30],[14,48,31],[15,0,30],[15,49,30],[16,0,28],[16,50,29],[17,0,28],[17,43,2],[17,51,28],[18,0,28],[18,43,2],[18,48,2],[18,51,28],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,52,27],[21,0,25],[21,42,3],[21,52,27],[22,0,24],[22,42,3],[22,52,27],[23,0,23],[23,42,3],[23,52,27],[24,0,23],[24,43,2],[24,52,27],[25,0,23],[25,44,2],[25,52,27],[26,0,23],[26,44,2],[26,53,26],[27,0,24],[27,45,2],[27,52,27],[28,0,24],[28,45,3],[28,52,27],[29,0,24],[29,47,2],[29,52,27],[30,0,25],[30,48,2],[30,52,27]],[[0,0,79],[1,0,79],[2,0,30],[2,36,43],[3,0,30],[3,41,1],[3,48,1],[3,50,29],[4,0,30],[4,50,29],[5,0,30],[5,49,30],[6,0,32],[6,48,31],[7,0,31],[7,46,33],[8,0,32],[8,45,34],[9,0,32],[9,45,34],[10,0,33],[10,45,34],[11,0,33],[11,45,34],[12,0,33],[12,45,34],[13,0,31],[13,46,33],[14,0,30],[14,47,32],[15,0,30],[15,48,31],[16,0,28],[16,49,30],[17,0,28],[17,50,29],[18,0,27],[18,42,2],[18,51,28],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,48,1],[20,51,28],[21,0,25],[21,42,2],[21,51,28],[22,0,24],[22,42,2],[22,52,27],[23,0,23],[23,42,3],[23,52,27],[24,0,23],[24,43,2],[24,51,28],[25,0,23],[25,52,27],[26,0,23],[26,44,2],[26,52,27],[27,0,23],[27,44,3],[27,51,28],[28,0,23],[28,45,3],[28,51,28],[29,0,23],[29,46,3],[29,51,28],[30,0,25],[30,47,3],[30,51,28]],[[0,0,79],[1,0,79],[2,0,30],[2,36,43],[3,0,30],[3,50,29],[4,0,30],[4,50,29],[5,0,30],[5,31,2],[5,48,31],[6,0,32],[6,47,32],[7,0,31],[7,46,33],[8,0,32],[8,46,33],[9,0,32],[9,44,35],[10,0,31],[10,45,34],[11,0,32],[11,45,34],[12,0,32],[12,45,34],[13,0,30],[13,46,33],[14,0,30],[14,47,32],[15,0,29],[15,48,31],[16,0,28],[16,49,30],[17,0,28],[17,50,29],[18,0,27],[18,42,2],[18,47,1],[18,50,29],[19,0,26],[19,30,2],[19,42,2],[19,51,28],[20,0,26],[20,31,1],[20,42,2],[20,48,1],[20,51,28],[21,0,25],[21,42,2],[21,51,28],[22,0,24],[22,42,2],[22,52,27],[23,0,23],[23,42,2],[23,52,27],[24,0,23],[24,44,1],[24,51,28],[25,0,23],[25,52,27],[26,0,23],[26,44,2],[26,52,27],[27,0,23],[27,44,3],[27,50,29],[28,0,23],[28,45,3],[28,51,28],[29,0,23],[29,46,3],[29,51,28],[30,0,24],[30,47,1],[30,49,30]],[[0,0,79],[1,0,79],[2,0,29],[2,37,42],[3,0,29],[3,50,29],[4,0,29],[4,50,29],[5,0,32],[5,48,31],[6,0,32],[6,47,32],[7,0,30],[7,46,33],[8,0,32],[8,45,34],[9,0,31],[9,44,35],[10,0,32],[10,44,35],[11,0,32],[11,44,35],[12,0,32],[12,44,35],[13,0,30],[13,45,34],[14,0,30],[14,46,33],[15,0,29],[15,48,31],[16,0,28],[16,48,31],[17,0,28],[17,49,30],[18,0,27],[18,30,2],[18,42,2],[18,47,1],[18,50,29],[19,0,26],[19,30,2],[19,47,1],[19,50,29],[20,0,25],[20,42,2],[20,51,28],[21,0,24],[21,42,2],[21,51,28],[22,0,23],[22,42,2],[22,51,28],[23,0,22],[23,42,1],[23,51,28],[24,0,23],[24,50,29],[25,0,23],[25,51,28],[26,0,23],[26,51,28],[27,0,23],[27,50,29],[28,0,22],[28,50,29],[29,0,22],[29,50,29],[30,0,23],[30,49,30]],[[0,0,79],[1,0,79],[2,0,29],[2,36,43],[3,0,29],[3,49,30],[4,0,29],[4,49,30],[5,0,32],[5,48,31],[6,0,31],[6,46,33],[7,0,30],[7,45,34],[8,0,31],[8,45,34],[9,0,31],[9,44,35],[10,0,31],[10,44,35],[11,0,31],[11,44,35],[12,0,31],[12,44,35],[13,0,30],[13,45,34],[14,0,29],[14,46,33],[15,0,29],[15,47,32],[16,0,27],[16,48,31],[17,0,27],[17,49,30],[18,0,27],[18,30,2],[18,49,30],[19,0,26],[19,30,2],[19,50,29],[20,0,25],[20,50,29],[21,0,24],[21,51,28],[22,0,23],[22,43,1],[22,51,28],[23,0,22],[23,50,29],[24,0,22],[24,50,29],[25,0,23],[25,51,28],[26,0,23],[26,50,29],[27,0,22],[27,49,30],[28,0,22],[28,50,29],[29,0,22],[29,49,30],[30,0,23],[30,48,31]],[[0,0,79],[1,0,79],[2,0,29],[2,36,43],[3,0,29],[3,49,30],[4,0,29],[4,49,30],[5,0,31],[5,47,32],[6,0,31],[6,46,33],[7,0,30],[7,45,34],[8,0,31],[8,44,35],[9,0,31],[9,44,35],[10,0,31],[10,44,35],[11,0,31],[11,44,35],[12,0,31],[12,44,35],[13,0,29],[13,45,34],[14,0,29],[14,45,34],[15,0,29],[15,47,32],[16,0,27],[16,47,32],[17,0,27],[17,30,2],[17,48,31],[18,0,26],[18,30,2],[18,49,30],[19,0,26],[19,30,2],[19,49,30],[20,0,25],[20,50,29],[21,0,24],[21,29,2],[21,50,29],[22,0,23],[22,29,2],[22,51,28],[23,0,22],[23,50,29],[24,0,22],[24,50,29],[25,0,22],[25,51,28],[26,0,22],[26,49,30],[27,0,22],[27,49,30],[28,0,22],[28,49,30],[29,0,22],[29,49,30],[30,0,22],[30,23,2],[30,48,31]],[[0,0,79],[1,0,79],[2,0,28],[2,36,43],[3,0,28],[3,49,30],[4,0,28],[4,48,31],[5,0,31],[5,47,32],[6,0,30],[6,45,34],[7,0,31],[7,45,34],[8,0,31],[8,43,36],[9,0,31],[9,43,36],[10,0,31],[10,44,35],[11,0,31],[11,43,36],[12,0,30],[12,43,36],[13,0,29],[13,44,35],[14,0,29],[14,45,34],[15,0,28],[15,46,33],[16,0,27],[16,47,32],[17,0,27],[17,30,2],[17,48,31],[18,0,26],[18,30,2],[18,48,31],[19,0,25],[19,30,2],[19,49,30],[20,0,25],[20,49,30],[21,0,24],[21,29,2],[21,50,29],[22,0,23],[22,29,2],[22,50,29],[23,0,22],[23,49,30],[24,0,22],[24,50,29],[25,0,22],[25,50,29],[26,0,22],[26,49,30],[27,0,22],[27,49,30],[28,0,22],[28,49,30],[29,0,22],[29,47,32],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,79],[2,0,28],[2,36,43],[3,0,28],[3,48,31],[4,0,28],[4,47,32],[5,0,30],[5,46,33],[6,0,29],[6,44,35],[7,0,31],[7,44,35],[8,0,31],[8,43,36],[9,0,30],[9,43,36],[10,0,31],[10,43,36],[11,0,31],[11,43,36],[12,0,30],[12,43,36],[13,0,29],[13,44,35],[14,0,28],[14,45,34],[15,0,28],[15,46,33],[16,0,27],[16,47,32],[17,0,26],[17,30,2],[17,47,32],[18,0,26],[18,30,2],[18,48,31],[19,0,25],[19,48,31],[20,0,24],[20,29,2],[20,49,30],[21,0,23],[21,29,2],[21,49,30],[22,0,22],[22,50,29],[23,0,22],[23,49,30],[24,0,22],[24,50,29],[25,0,22],[25,50,29],[26,0,22],[26,48,31],[27,0,22],[27,48,31],[28,0,22],[28,48,31],[29,0,21],[29,47,32],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,28],[1,30,49],[2,0,27],[2,36,43],[3,0,27],[3,48,31],[4,0,27],[4,47,32],[5,0,30],[5,46,33],[6,0,29],[6,44,35],[7,0,30],[7,44,35],[8,0,30],[8,43,36],[9,0,30],[9,43,36],[10,0,31],[10,43,36],[11,0,31],[11,43,36],[12,0,29],[12,43,36],[13,0,28],[13,44,35],[14,0,28],[14,44,35],[15,0,28],[15,46,33],[16,0,26],[16,46,33],[17,0,26],[17,47,32],[18,0,26],[18,47,32],[19,0,25],[19,29,2],[19,48,31],[20,0,24],[20,29,2],[20,48,31],[21,0,23],[21,29,2],[21,49,30],[22,0,22],[22,49,30],[23,0,21],[23,49,30],[24,0,22],[24,50,29],[25,0,22],[25,50,29],[26,0,22],[26,48,31],[27,0,22],[27,48,31],[28,0,22],[28,48,31],[29,0,21],[29,24,2],[29,46,33],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,27],[1,30,49],[2,0,27],[2,35,44],[3,0,27],[3,47,32],[4,0,27],[4,29,1],[4,46,33],[5,0,30],[5,45,34],[6,0,28],[6,43,36],[7,0,30],[7,43,36],[8,0,30],[8,42,37],[9,0,30],[9,42,37],[10,0,30],[10,43,36],[11,0,30],[11,43,36],[12,0,29],[12,42,37],[13,0,28],[13,43,36],[14,0,28],[14,44,35],[15,0,27],[15,46,33],[16,0,26],[16,46,33],[17,0,26],[17,29,2],[17,46,33],[18,0,26],[18,29,2],[18,47,32],[19,0,25],[19,29,2],[19,47,32],[20,0,24],[20,29,2],[20,48,31],[21,0,23],[21,29,2],[21,48,31],[22,0,22],[22,49,30],[23,0,21],[23,49,30],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,48,31],[28,0,22],[28,47,32],[29,0,21],[29,25,1],[29,46,33],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,27],[1,30,49],[2,0,27],[2,35,44],[3,0,27],[3,47,32],[4,0,27],[4,46,33],[5,0,29],[5,45,34],[6,0,28],[6,43,36],[7,0,29],[7,43,36],[8,0,30],[8,42,37],[9,0,30],[9,42,37],[10,0,30],[10,42,37],[11,0,30],[11,42,37],[12,0,29],[12,42,37],[13,0,28],[13,43,36],[14,0,27],[14,44,35],[15,0,27],[15,45,34],[16,0,26],[16,45,34],[17,0,26],[17,29,2],[17,46,33],[18,0,25],[18,29,2],[18,46,33],[19,0,25],[19,29,2],[19,47,32],[20,0,24],[20,29,2],[20,47,32],[21,0,23],[21,29,2],[21,48,31],[22,0,22],[22,49,30],[23,0,21],[23,48,31],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,47,32],[28,0,22],[28,46,33],[29,0,21],[29,24,2],[29,46,33],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,79],[2,0,26],[2,34,45],[3,0,26],[3,47,32],[4,0,26],[4,46,33],[5,0,29],[5,45,34],[6,0,28],[6,43,36],[7,0,29],[7,43,36],[8,0,29],[8,41,38],[9,0,29],[9,41,38],[10,0,30],[10,42,37],[11,0,30],[11,42,37],[12,0,29],[12,42,37],[13,0,27],[13,43,36],[14,0,27],[14,43,36],[15,0,27],[15,45,34],[16,0,26],[16,45,34],[17,0,26],[17,29,2],[17,45,34],[18,0,26],[18,29,2],[18,46,33],[19,0,25],[19,29,2],[19,46,33],[20,0,24],[20,29,2],[20,48,31],[21,0,23],[21,29,2],[21,48,31],[22,0,22],[22,49,30],[23,0,21],[23,48,31],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,47,32],[28,0,22],[28,46,33],[29,0,21],[29,24,2],[29,46,33],[30,0,22],[30,23,2],[30,47,32]],[[0,0,79],[1,0,79],[2,0,26],[2,33,46],[3,0,26],[3,46,33],[4,0,26],[4,46,33],[5,0,26],[5,45,34],[6,0,28],[6,44,35],[7,0,27],[7,42,37],[8,0,29],[8,41,38],[9,0,29],[9,41,38],[10,0,29],[10,42,37],[11,0,30],[11,42,37],[12,0,29],[12,41,38],[13,0,27],[13,42,37],[14,0,27],[14,43,36],[15,0,27],[15,45,34],[16,0,25],[16,44,35],[17,0,26],[17,45,34],[18,0,26],[18,46,33],[19,0,25],[19,46,33],[20,0,24],[20,48,31],[21,0,23],[21,49,30],[22,0,22],[22,49,30],[23,0,21],[23,49,30],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,47,32],[28,0,22],[28,46,33],[29,0,21],[29,24,2],[29,46,33],[30,0,22],[30,23,3],[30,47,32]],[[0,0,79],[1,0,79],[2,0,26],[2,32,47],[3,0,26],[3,38,1],[3,46,33],[4,0,26],[4,46,33],[5,0,26],[5,28,1],[5,45,34],[6,0,29],[6,44,35],[7,0,27],[7,42,37],[8,0,29],[8,42,37],[9,0,29],[9,41,38],[10,0,29],[10,41,38],[11,0,29],[11,41,38],[12,0,30],[12,41,38],[13,0,27],[13,42,37],[14,0,27],[14,43,36],[15,0,27],[15,45,34],[16,0,26],[16,45,34],[17,0,26],[17,45,34],[18,0,26],[18,46,33],[19,0,26],[19,47,32],[20,0,25],[20,48,31],[21,0,24],[21,49,30],[22,0,22],[22,49,30],[23,0,22],[23,49,30],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,47,32],[28,0,22],[28,26,1],[28,46,33],[29,0,22],[29,25,2],[29,46,33],[30,0,22],[30,23,3],[30,47,32]],[[0,0,79],[1,0,79],[2,0,26],[2,31,48],[3,0,26],[3,38,1],[3,46,33],[4,0,26],[4,46,33],[5,0,27],[5,28,1],[5,45,34],[6,0,29],[6,44,35],[7,0,27],[7,42,37],[8,0,29],[8,42,37],[9,0,29],[9,41,38],[10,0,29],[10,41,38],[11,0,29],[11,41,38],[12,0,30],[12,41,38],[13,0,28],[13,43,36],[14,0,28],[14,43,36],[15,0,27],[15,45,34],[16,0,26],[16,45,34],[17,0,26],[17,45,34],[18,0,26],[18,46,33],[19,0,26],[19,47,32],[20,0,25],[20,48,31],[21,0,24],[21,49,30],[22,0,23],[22,49,30],[23,0,22],[23,49,30],[24,0,22],[24,49,30],[25,0,22],[25,48,31],[26,0,22],[26,48,31],[27,0,22],[27,47,32],[28,0,22],[28,26,1],[28,47,32],[29,0,22],[29,25,2],[29,47,32],[30,0,22],[30,23,3],[30,48,31]],[[0,0,79],[1,0,79],[2,0,26],[2,32,47],[3,0,26],[3,47,32],[4,0,27],[4,46,33],[5,0,27],[5,45,34],[6,0,29],[6,43,36],[7,0,28],[7,43,36],[8,0,29],[8,42,37],[9,0,29],[9,41,38],[10,0,28],[10,41,38],[11,0,29],[11,41,38],[12,0,30],[12,42,37],[13,0,28],[13,43,36],[14,0,28],[14,44,35],[15,0,28],[15,46,33],[16,0,26],[16,45,34],[17,0,27],[17,30,2],[17,46,33],[18,0,26],[18,30,3],[18,46,33],[19,0,26],[19,31,2],[19,47,32],[20,0,25],[20,48,31],[21,0,24],[21,49,30],[22,0,23],[22,49,30],[23,0,22],[23,49,30],[24,0,23],[24,49,30],[25,0,22],[25,48,31],[26,0,23],[26,48,31],[27,0,23],[27,47,32],[28,0,22],[28,26,2],[28,47,32],[29,0,22],[29,25,2],[29,48,31],[30,0,27],[30,48,31]],[[0,0,79],[1,0,79],[2,0,27],[2,33,46],[3,0,27],[3,47,32],[4,0,27],[4,46,33],[5,0,28],[5,46,33],[6,0,30],[6,43,36],[7,0,29],[7,43,36],[8,0,29],[8,43,36],[9,0,29],[9,41,38],[10,0,29],[10,41,38],[11,0,29],[11,41,38],[12,0,29],[12,43,36],[13,0,29],[13,44,35],[14,0,28],[14,44,35],[15,0,28],[15,46,33],[16,0,27],[16,46,33],[17,0,27],[17,30,3],[17,46,33],[18,0,27],[18,31,2],[18,47,32],[19,0,26],[19,31,2],[19,48,31],[20,0,25],[20,30,3],[20,48,31],[21,0,24],[21,31,2],[21,49,30],[22,0,23],[22,31,2],[22,50,29],[23,0,23],[23,49,30],[24,0,23],[24,29,2],[24,50,29],[25,0,23],[25,29,1],[25,48,31],[26,0,23],[26,28,2],[26,48,31],[27,0,23],[27,27,2],[27,48,31],[28,0,23],[28,26,3],[28,48,31],[29,0,22],[29,25,3],[29,48,31],[30,0,27],[30,49,30]],[[0,0,79],[1,0,79],[2,0,27],[2,34,7],[2,45,34],[3,0,27],[3,47,32],[4,0,28],[4,47,32],[5,0,28],[5,46,33],[6,0,30],[6,44,35],[7,0,30],[7,44,35],[8,0,29],[8,43,36],[9,0,29],[9,42,37],[10,0,29],[10,41,38],[11,0,29],[11,42,37],[12,0,29],[12,44,35],[13,0,29],[13,45,34],[14,0,29],[14,31,2],[14,45,34],[15,0,28],[15,31,2],[15,47,32],[16,0,27],[16,31,2],[16,46,33],[17,0,27],[17,31,2],[17,46,33],[18,0,27],[18,31,3],[18,47,32],[19,0,27],[19,31,3],[19,48,31],[20,0,26],[20,31,3],[20,49,30],[21,0,25],[21,31,3],[21,50,29],[22,0,24],[22,31,2],[22,50,29],[23,0,23],[23,30,2],[23,50,29],[24,0,24],[24,29,3],[24,50,29],[25,0,23],[25,29,2],[25,49,30],[26,0,24],[26,28,2],[26,48,31],[27,0,23],[27,28,2],[27,48,31],[28,0,23],[28,26,3],[28,49,30],[29,0,23],[29,25,3],[29,49,30],[30,0,28],[30,50,29]],[[0,0,79],[1,0,79],[2,0,27],[2,34,6],[2,48,31],[3,0,27],[3,47,32],[4,0,28],[4,47,32],[5,0,29],[5,46,33],[6,0,31],[6,44,35],[7,0,30],[7,45,34],[8,0,30],[8,43,36],[9,0,30],[9,42,37],[10,0,29],[10,41,38],[11,0,29],[11,43,36],[12,0,30],[12,45,34],[13,0,29],[13,45,34],[14,0,29],[14,46,33],[15,0,27],[15,47,32],[16,0,28],[16,32,1],[16,47,32],[17,0,28],[17,31,3],[17,47,32],[18,0,27],[18,31,3],[18,48,31],[19,0,27],[19,31,3],[19,48,31],[20,0,26],[20,31,3],[20,49,30],[21,0,25],[21,31,3],[21,50,29],[22,0,24],[22,31,3],[22,51,28],[23,0,24],[23,30,3],[23,50,29],[24,0,24],[24,30,2],[24,50,29],[25,0,24],[25,29,3],[25,49,30],[26,0,24],[26,29,2],[26,49,30],[27,0,24],[27,28,2],[27,49,30],[28,0,23],[28,27,2],[28,50,29],[29,0,23],[29,26,3],[29,50,29],[30,0,28],[30,51,28]],[[0,0,79],[1,0,79],[2,0,28],[2,35,5],[2,48,31],[3,0,28],[3,48,31],[4,0,28],[4,47,32],[5,0,29],[5,44,35],[6,0,31],[6,45,34],[7,0,31],[7,45,34],[8,0,30],[8,43,36],[9,0,30],[9,42,37],[10,0,30],[10,42,37],[11,0,30],[11,43,36],[12,0,30],[12,45,34],[13,0,29],[13,46,33],[14,0,28],[14,32,2],[14,46,33],[15,0,28],[15,32,2],[15,48,31],[16,0,28],[16,32,2],[16,47,32],[17,0,27],[17,32,3],[17,48,31],[18,0,27],[18,32,3],[18,48,31],[19,0,27],[19,32,3],[19,49,30],[20,0,26],[20,32,3],[20,50,29],[21,0,26],[21,31,4],[21,50,29],[22,0,24],[22,31,3],[22,51,28],[23,0,25],[23,31,2],[23,51,28],[24,0,25],[24,30,3],[24,51,28],[25,0,24],[25,30,2],[25,50,29],[26,0,24],[26,29,2],[26,49,30],[27,0,24],[27,28,3],[27,50,29],[28,0,24],[28,27,3],[28,50,29],[29,0,24],[29,26,3],[29,51,28],[30,0,28],[30,51,28]],[[0,0,79],[1,0,79],[2,0,28],[2,35,5],[2,48,31],[3,0,28],[3,47,32],[4,0,29],[4,47,32],[5,0,30],[5,45,34],[6,0,31],[6,46,33],[7,0,31],[7,44,35],[8,0,31],[8,44,35],[9,0,30],[9,43,36],[10,0,30],[10,42,37],[11,0,31],[11,43,36],[12,0,30],[12,46,33],[13,0,29],[13,46,33],[14,0,28],[14,47,32],[15,0,28],[15,32,2],[15,48,31],[16,0,27],[16,33,2],[16,48,31],[17,0,27],[17,32,3],[17,48,31],[18,0,27],[18,32,3],[18,49,30],[19,0,27],[19,32,3],[19,49,30],[20,0,27],[20,32,3],[20,50,29],[21,0,26],[21,32,3],[21,51,28],[22,0,25],[22,32,3],[22,52,27],[23,0,25],[23,31,3],[23,51,28],[24,0,25],[24,31,2],[24,51,28],[25,0,25],[25,30,3],[25,51,28],[26,0,25],[26,29,3],[26,50,29],[27,0,25],[27,28,3],[27,50,29],[28,0,24],[28,27,3],[28,51,28],[29,0,24],[29,26,4],[29,51,28],[30,0,29],[30,52,27]],[[0,0,79],[1,0,79],[2,0,28],[2,29,1],[2,34,6],[2,48,31],[3,0,28],[3,48,31],[4,0,29],[4,47,32],[5,0,30],[5,45,34],[6,0,31],[6,46,33],[7,0,32],[7,45,34],[8,0,32],[8,44,35],[9,0,31],[9,43,36],[10,0,30],[10,43,36],[11,0,31],[11,44,35],[12,0,30],[12,46,33],[13,0,29],[13,47,32],[14,0,29],[14,47,32],[15,0,28],[15,49,30],[16,0,27],[16,33,2],[16,48,31],[17,0,27],[17,33,2],[17,49,30],[18,0,27],[18,33,3],[18,49,30],[19,0,27],[19,33,3],[19,50,29],[20,0,27],[20,33,2],[20,51,28],[21,0,27],[21,32,3],[21,51,28],[22,0,26],[22,32,3],[22,52,27],[23,0,26],[23,32,2],[23,52,27],[24,0,26],[24,31,3],[24,52,27],[25,0,25],[25,31,2],[25,52,27],[26,0,26],[26,30,2],[26,50,29],[27,0,25],[27,29,3],[27,50,29],[28,0,25],[28,28,3],[28,51,28],[29,0,25],[29,26,4],[29,52,27],[30,0,29],[30,52,27]],[[0,0,79],[1,0,79],[2,0,40],[2,48,31],[3,0,28],[3,48,31],[4,0,29],[4,48,31],[5,0,30],[5,45,34],[6,0,31],[6,46,33],[7,0,32],[7,45,34],[8,0,32],[8,44,35],[9,0,32],[9,44,35],[10,0,31],[10,44,35],[11,0,31],[11,44,35],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,29],[14,47,32],[15,0,28],[15,30,1],[15,49,30],[16,0,27],[16,33,2],[16,49,30],[17,0,27],[17,29,1],[17,33,2],[17,49,30],[18,0,27],[18,29,1],[18,33,3],[18,50,29],[19,0,27],[19,33,3],[19,50,29],[20,0,27],[20,33,3],[20,51,28],[21,0,27],[21,33,3],[21,52,27],[22,0,26],[22,33,2],[22,53,26],[23,0,26],[23,32,2],[23,53,26],[24,0,26],[24,32,2],[24,53,26],[25,0,26],[25,31,2],[25,53,26],[26,0,26],[26,30,3],[26,51,28],[27,0,26],[27,29,3],[27,51,28],[28,0,25],[28,28,3],[28,51,28],[29,0,25],[29,27,3],[29,52,27],[30,0,29],[30,53,26]],[[0,0,79],[1,0,79],[2,0,41],[2,48,31],[3,0,28],[3,48,31],[4,0,29],[4,48,31],[5,0,30],[5,45,34],[6,0,32],[6,46,33],[7,0,32],[7,46,33],[8,0,33],[8,45,34],[9,0,33],[9,45,34],[10,0,32],[10,44,35],[11,0,32],[11,34,2],[11,44,35],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,29],[14,47,32],[15,0,28],[15,50,29],[16,0,28],[16,49,30],[17,0,27],[17,29,1],[17,34,2],[17,49,30],[18,0,27],[18,28,2],[18,34,2],[18,50,29],[19,0,27],[19,28,2],[19,34,2],[19,51,28],[20,0,27],[20,34,2],[20,52,27],[21,0,27],[21,33,3],[21,52,27],[22,0,27],[22,33,3],[22,53,26],[23,0,27],[23,33,2],[23,54,25],[24,0,27],[24,32,2],[24,53,26],[25,0,26],[25,32,2],[25,53,26],[26,0,27],[26,31,2],[26,52,27],[27,0,26],[27,30,2],[27,51,28],[28,0,26],[28,29,2],[28,52,27],[29,0,26],[29,28,3],[29,52,27],[30,0,30],[30,53,26]],[[0,0,79],[1,0,79],[2,0,41],[2,48,31],[3,0,28],[3,48,31],[4,0,29],[4,48,31],[5,0,30],[5,45,2],[5,48,31],[6,0,31],[6,46,33],[7,0,32],[7,48,31],[8,0,33],[8,46,33],[9,0,33],[9,46,33],[10,0,33],[10,35,2],[10,45,34],[11,0,32],[11,35,2],[11,45,34],[12,0,32],[12,46,33],[13,0,31],[13,47,32],[14,0,29],[14,48,31],[15,0,28],[15,31,1],[15,48,31],[16,0,28],[16,30,1],[16,50,29],[17,0,27],[17,29,2],[17,34,2],[17,50,29],[18,0,27],[18,28,2],[18,34,2],[18,51,28],[19,0,27],[19,28,2],[19,34,2],[19,52,27],[20,0,27],[20,34,2],[20,52,27],[21,0,27],[21,34,2],[21,53,26],[22,0,27],[22,34,2],[22,54,25],[23,0,27],[23,33,2],[23,54,25],[24,0,27],[24,33,2],[24,54,25],[25,0,27],[25,32,2],[25,54,25],[26,0,27],[26,31,3],[26,53,26],[27,0,27],[27,30,3],[27,52,27],[28,0,26],[28,29,3],[28,52,27],[29,0,26],[29,28,3],[29,52,27],[30,0,30],[30,53,26]],[[0,0,79],[1,0,79],[2,0,43],[2,48,31],[3,0,29],[3,36,2],[3,48,31],[4,0,29],[4,48,31],[5,0,30],[5,46,1],[5,48,31],[6,0,31],[6,46,33],[7,0,32],[7,48,31],[8,0,33],[8,46,33],[9,0,33],[9,46,33],[10,0,33],[10,37,1],[10,46,33],[11,0,33],[11,36,2],[11,46,33],[12,0,33],[12,46,33],[13,0,31],[13,48,31],[14,0,30],[14,48,31],[15,0,29],[15,48,31],[16,0,28],[16,30,1],[16,50,29],[17,0,27],[17,29,2],[17,34,2],[17,50,29],[18,0,27],[18,29,2],[18,51,28],[19,0,27],[19,28,3],[19,35,2],[19,52,27],[20,0,27],[20,28,2],[20,35,2],[20,52,27],[21,0,27],[21,34,2],[21,53,26],[22,0,27],[22,34,2],[22,54,25],[23,0,27],[23,34,2],[23,55,24],[24,0,27],[24,33,2],[24,54,25],[25,0,27],[25,33,2],[25,54,25],[26,0,28],[26,32,2],[26,54,25],[27,0,27],[27,31,2],[27,53,26],[28,0,27],[28,30,2],[28,52,27],[29,0,27],[29,29,2],[29,53,26],[30,0,30],[30,53,26]],[[0,0,79],[1,0,79],[2,0,44],[2,48,31],[3,0,32],[3,35,6],[3,49,30],[4,0,29],[4,49,30],[5,0,30],[5,46,1],[5,49,30],[6,0,31],[6,46,33],[7,0,33],[7,48,31],[8,0,33],[8,46,33],[9,0,34],[9,47,32],[10,0,33],[10,47,32],[11,0,33],[11,37,2],[11,45,34],[12,0,33],[12,46,33],[13,0,32],[13,48,31],[14,0,31],[14,48,31],[15,0,29],[15,32,1],[15,49,30],[16,0,29],[16,51,28],[17,0,28],[17,30,2],[17,50,29],[18,0,27],[18,29,2],[18,35,2],[18,46,2],[18,51,28],[19,0,27],[19,29,2],[19,35,2],[19,52,27],[20,0,27],[20,28,2],[20,35,2],[20,53,26],[21,0,27],[21,35,2],[21,54,25],[22,0,27],[22,34,3],[22,55,24],[23,0,27],[23,34,2],[23,55,24],[24,0,27],[24,34,2],[24,55,24],[25,0,27],[25,33,2],[25,55,24],[26,0,28],[26,32,3],[26,54,25],[27,0,28],[27,31,3],[27,54,25],[28,0,28],[28,30,3],[28,53,26],[29,0,28],[29,29,3],[29,53,26],[30,0,31],[30,53,26]],[[0,0,79],[1,0,79],[2,0,44],[2,49,30],[3,0,33],[3,36,5],[3,49,30],[4,0,29],[4,49,30],[5,0,30],[5,46,2],[5,49,30],[6,0,32],[6,46,33],[7,0,33],[7,48,31],[8,0,34],[8,47,32],[9,0,34],[9,47,32],[10,0,34],[10,47,32],[11,0,34],[11,46,33],[12,0,34],[12,46,33],[13,0,33],[13,48,31],[14,0,31],[14,49,30],[15,0,30],[15,49,30],[16,0,29],[16,51,28],[17,0,28],[17,30,2],[17,51,28],[18,0,28],[18,29,3],[18,35,2],[18,51,28],[19,0,27],[19,29,2],[19,35,2],[19,52,27],[20,0,27],[20,35,2],[20,53,26],[21,0,27],[21,35,2],[21,54,25],[22,0,27],[22,35,2],[22,55,24],[23,0,27],[23,34,2],[23,56,23],[24,0,27],[24,34,2],[24,55,24],[25,0,28],[25,33,2],[25,55,24],[26,0,29],[26,33,2],[26,55,24],[27,0,28],[27,32,2],[27,54,25],[28,0,28],[28,31,2],[28,54,25],[29,0,28],[29,30,2],[29,53,26],[30,0,31],[30,53,26]],[[0,0,79],[1,0,79],[2,0,44],[2,49,30],[3,0,32],[3,37,1],[3,49,30],[4,0,29],[4,49,30],[5,0,31],[5,49,30],[6,0,32],[6,47,32],[7,0,33],[7,48,31],[8,0,34],[8,47,32],[9,0,34],[9,47,32],[10,0,34],[10,48,31],[11,0,34],[11,47,32],[12,0,34],[12,47,32],[13,0,33],[13,48,31],[14,0,32],[14,49,30],[15,0,31],[15,49,30],[16,0,30],[16,51,28],[17,0,29],[17,31,1],[17,51,28],[18,0,28],[18,30,2],[18,35,2],[18,52,27],[19,0,28],[19,29,2],[19,35,2],[19,52,27],[20,0,27],[20,35,2],[20,53,26],[21,0,27],[21,35,2],[21,54,25],[22,0,27],[22,35,2],[22,55,24],[23,0,27],[23,56,23],[24,0,27],[24,56,23],[25,0,29],[25,34,1],[25,55,24],[26,0,29],[26,33,2],[26,55,24],[27,0,29],[27,32,2],[27,55,24],[28,0,29],[28,31,2],[28,55,24],[29,0,29],[29,30,2],[29,54,25],[30,0,31],[30,53,26]],[[0,0,79],[1,0,79],[2,0,43],[2,49,30],[3,0,31],[3,38,1],[3,50,29],[4,0,30],[4,50,29],[5,0,31],[5,47,1],[5,49,30],[6,0,32],[6,47,32],[7,0,34],[7,48,31],[8,0,35],[8,47,32],[9,0,35],[9,48,31],[10,0,34],[10,47,32],[11,0,34],[11,47,32],[12,0,35],[12,48,31],[13,0,34],[13,49,30],[14,0,33],[14,49,30],[15,0,31],[15,50,29],[16,0,30],[16,51,28],[17,0,29],[17,51,28],[18,0,29],[18,30,2],[18,52,27],[19,0,28],[19,47,2],[19,53,26],[20,0,28],[20,47,2],[20,54,25],[21,0,27],[21,55,24],[22,0,27],[22,35,2],[22,56,23],[23,0,27],[23,36,1],[23,56,23],[24,0,28],[24,56,23],[25,0,29],[25,56,23],[26,0,29],[26,56,23],[27,0,29],[27,32,2],[27,55,24],[28,0,29],[28,31,2],[28,55,24],[29,0,32],[29,55,24],[30,0,31],[30,54,25]],[[0,0,79],[1,0,79],[2,0,43],[2,50,29],[3,0,30],[3,50,29],[4,0,30],[4,50,29],[5,0,32],[5,47,32],[6,0,33],[6,48,31],[7,0,34],[7,49,30],[8,0,35],[8,48,31],[9,0,35],[9,48,31],[10,0,37],[10,48,31],[11,0,35],[11,48,31],[12,0,35],[12,48,31],[13,0,34],[13,49,30],[14,0,33],[14,49,30],[15,0,32],[15,50,29],[16,0,31],[16,51,28],[17,0,30],[17,52,27],[18,0,29],[18,47,2],[18,53,26],[19,0,29],[19,47,2],[19,53,26],[20,0,28],[20,54,25],[21,0,28],[21,55,24],[22,0,27],[22,56,23],[23,0,27],[23,56,23],[24,0,28],[24,56,23],[25,0,29],[25,56,23],[26,0,29],[26,56,23],[27,0,29],[27,56,23],[28,0,30],[28,31,2],[28,56,23],[29,0,32],[29,56,23],[30,0,31],[30,54,25]],[[0,0,79],[1,0,79],[2,0,43],[2,50,29],[3,0,30],[3,50,29],[4,0,30],[4,50,29],[5,0,32],[5,47,32],[6,0,33],[6,48,31],[7,0,34],[7,49,30],[8,0,35],[8,48,31],[9,0,35],[9,48,31],[10,0,35],[10,48,31],[11,0,35],[11,36,1],[11,48,31],[12,0,35],[12,49,30],[13,0,34],[13,50,29],[14,0,34],[14,50,29],[15,0,32],[15,50,29],[16,0,31],[16,52,27],[17,0,31],[17,47,2],[17,52,27],[18,0,30],[18,47,2],[18,53,26],[19,0,29],[19,47,2],[19,53,26],[20,0,29],[20,54,25],[21,0,28],[21,55,24],[22,0,28],[22,56,23],[23,0,27],[23,57,22],[24,0,29],[24,56,23],[25,0,29],[25,56,23],[26,0,30],[26,56,23],[27,0,30],[27,33,1],[27,56,23],[28,0,33],[28,56,23],[29,0,32],[29,56,23],[30,0,31],[30,54,25]],[[0,0,79],[1,0,79],[2,0,43],[2,51,28],[3,0,30],[3,51,28],[4,0,31],[4,51,28],[5,0,32],[5,48,31],[6,0,35],[6,49,30],[7,0,35],[7,48,31],[8,0,36],[8,48,31],[9,0,35],[9,48,31],[10,0,35],[10,48,31],[11,0,35],[11,49,30],[12,0,36],[12,49,30],[13,0,35],[13,50,29],[14,0,34],[14,50,29],[15,0,32],[15,52,27],[16,0,32],[16,52,27],[17,0,31],[17,47,2],[17,52,27],[18,0,30],[18,47,2],[18,53,26],[19,0,30],[19,47,2],[19,54,25],[20,0,29],[20,55,24],[21,0,28],[21,48,2],[21,55,24],[22,0,28],[22,48,2],[22,56,23],[23,0,28],[23,57,22],[24,0,29],[24,56,23],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,30],[27,57,22],[28,0,33],[28,57,22],[29,0,33],[29,57,22],[30,0,31],[30,54,25]],[[0,0,79],[1,0,49],[1,51,28],[2,0,43],[2,51,28],[3,0,31],[3,51,28],[4,0,32],[4,48,1],[4,51,28],[5,0,33],[5,48,31],[6,0,35],[6,50,29],[7,0,35],[7,48,31],[8,0,36],[8,48,31],[9,0,35],[9,48,31],[10,0,35],[10,49,30],[11,0,36],[11,47,32],[12,0,36],[12,50,29],[13,0,35],[13,50,29],[14,0,34],[14,51,28],[15,0,33],[15,52,27],[16,0,32],[16,52,27],[17,0,32],[17,47,2],[17,53,26],[18,0,31],[18,47,2],[18,53,26],[19,0,30],[19,47,2],[19,54,25],[20,0,29],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,57,22],[23,0,28],[23,57,22],[24,0,30],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,31],[27,57,22],[28,0,33],[28,57,22],[29,0,32],[29,57,22],[30,0,31],[30,54,25]],[[0,0,79],[1,0,47],[1,51,28],[2,0,34],[2,38,3],[2,51,28],[3,0,31],[3,51,28],[4,0,32],[4,51,28],[5,0,33],[5,49,30],[6,0,35],[6,50,29],[7,0,36],[7,49,30],[8,0,36],[8,49,30],[9,0,36],[9,48,31],[10,0,36],[10,37,1],[10,49,30],[11,0,36],[11,37,1],[11,49,30],[12,0,36],[12,50,29],[13,0,35],[13,51,28],[14,0,34],[14,51,28],[15,0,33],[15,53,26],[16,0,33],[16,53,26],[17,0,32],[17,47,2],[17,53,26],[18,0,31],[18,47,2],[18,53,26],[19,0,30],[19,48,2],[19,54,25],[20,0,29],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,57,22],[23,0,28],[23,57,22],[24,0,30],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,31],[27,33,1],[27,57,22],[28,0,34],[28,53,1],[28,57,22],[29,0,32],[29,54,1],[29,58,21],[30,0,32],[30,54,25]],[[0,0,79],[1,0,46],[1,52,27],[2,0,34],[2,39,2],[2,52,27],[3,0,31],[3,52,27],[4,0,33],[4,49,2],[4,52,27],[5,0,34],[5,49,30],[6,0,36],[6,51,28],[7,0,36],[7,49,30],[8,0,37],[8,49,30],[9,0,36],[9,49,30],[10,0,36],[10,48,31],[11,0,38],[11,49,30],[12,0,36],[12,51,28],[13,0,36],[13,51,28],[14,0,33],[14,51,28],[15,0,33],[15,53,26],[16,0,34],[16,53,26],[17,0,32],[17,53,26],[18,0,31],[18,48,2],[18,54,25],[19,0,30],[19,48,2],[19,54,25],[20,0,29],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,57,22],[23,0,28],[23,57,22],[24,0,30],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,31],[27,33,1],[27,57,22],[28,0,34],[28,58,21],[29,0,33],[29,54,2],[29,58,21],[30,0,32],[30,54,25]],[[0,0,79],[1,0,47],[1,52,27],[2,0,32],[2,33,1],[2,40,1],[2,52,27],[3,0,32],[3,52,27],[4,0,33],[4,52,27],[5,0,34],[5,50,29],[6,0,36],[6,51,28],[7,0,36],[7,49,30],[8,0,37],[8,49,30],[9,0,37],[9,49,30],[10,0,36],[10,48,31],[11,0,37],[11,49,30],[12,0,36],[12,51,28],[13,0,36],[13,51,28],[14,0,33],[14,52,27],[15,0,33],[15,53,26],[16,0,34],[16,53,26],[17,0,32],[17,48,2],[17,53,26],[18,0,31],[18,48,2],[18,54,25],[19,0,30],[19,48,2],[19,54,25],[20,0,29],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,57,22],[23,0,28],[23,57,22],[24,0,30],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,34],[27,57,22],[28,0,34],[28,53,1],[28,58,21],[29,0,33],[29,54,2],[29,58,21],[30,0,32],[30,54,25]],[[0,0,79],[1,0,49],[1,52,27],[2,0,35],[2,39,3],[2,43,1],[2,53,26],[3,0,32],[3,53,26],[4,0,33],[4,52,27],[5,0,34],[5,50,29],[6,0,37],[6,51,28],[7,0,37],[7,50,29],[8,0,37],[8,49,30],[9,0,37],[9,49,30],[10,0,37],[10,49,30],[11,0,37],[11,49,30],[12,0,37],[12,51,28],[13,0,36],[13,52,27],[14,0,34],[14,52,27],[15,0,33],[15,54,25],[16,0,34],[16,48,2],[16,53,26],[17,0,32],[17,48,2],[17,53,26],[18,0,31],[18,37,1],[18,53,26],[19,0,30],[19,48,2],[19,54,25],[20,0,28],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,57,22],[23,0,27],[23,57,22],[24,0,30],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,57,22],[27,0,34],[27,57,22],[28,0,33],[28,53,2],[28,58,21],[29,0,33],[29,53,3],[29,58,21],[30,0,32],[30,54,25]],[[0,0,79],[1,0,79],[2,0,46],[2,53,26],[3,0,33],[3,53,26],[4,0,33],[4,53,26],[5,0,34],[5,52,27],[6,0,37],[6,51,28],[7,0,37],[7,51,28],[8,0,38],[8,50,29],[9,0,37],[9,49,30],[10,0,37],[10,49,30],[11,0,37],[11,49,30],[12,0,37],[12,50,29],[13,0,36],[13,52,27],[14,0,36],[14,52,27],[15,0,33],[15,52,27],[16,0,34],[16,54,25],[17,0,32],[17,53,26],[18,0,31],[18,36,2],[18,53,26],[19,0,30],[19,36,2],[19,53,26],[20,0,28],[20,48,2],[20,55,24],[21,0,28],[21,48,2],[21,56,23],[22,0,28],[22,48,2],[22,57,22],[23,0,27],[23,57,22],[24,0,29],[24,57,22],[25,0,30],[25,57,22],[26,0,30],[26,33,2],[26,57,22],[27,0,31],[27,32,3],[27,52,1],[27,57,22],[28,0,34],[28,52,2],[28,58,21],[29,0,33],[29,53,3],[29,58,21],[30,0,32],[30,54,25]],[[0,0,79],[1,0,79],[2,0,47],[2,53,26],[3,0,33],[3,40,1],[3,53,26],[4,0,33],[4,53,26],[5,0,34],[5,50,1],[5,52,27],[6,0,35],[6,50,29],[7,0,37],[7,52,27],[8,0,37],[8,50,29],[9,0,38],[9,50,29],[10,0,37],[10,49,30],[11,0,37],[11,49,30],[12,0,38],[12,49,30],[13,0,37],[13,51,28],[14,0,36],[14,52,27],[15,0,33],[15,52,27],[16,0,33],[16,53,26],[17,0,32],[17,53,26],[18,0,31],[18,36,2],[18,53,26],[19,0,30],[19,36,2],[19,53,26],[20,0,28],[20,54,25],[21,0,28],[21,48,2],[21,55,24],[22,0,28],[22,48,2],[22,57,22],[23,0,27],[23,57,22],[24,0,29],[24,57,22],[25,0,29],[25,57,22],[26,0,30],[26,57,22],[27,0,31],[27,32,2],[27,51,1],[27,57,22],[28,0,34],[28,52,2],[28,58,21],[29,0,33],[29,53,2],[29,58,21],[30,0,32],[30,53,26]],[[0,0,79],[1,0,79],[2,0,48],[2,53,26],[3,0,33],[3,53,26],[4,0,33],[4,52,27],[5,0,34],[5,52,27],[6,0,35],[6,36,1],[6,50,29],[7,0,37],[7,51,28],[8,0,37],[8,50,29],[9,0,38],[9,50,29],[10,0,37],[10,50,29],[11,0,38],[11,49,30],[12,0,38],[12,49,30],[13,0,36],[13,51,28],[14,0,36],[14,51,28],[15,0,33],[15,51,28],[16,0,33],[16,53,26],[17,0,32],[17,52,27],[18,0,31],[18,53,26],[19,0,30],[19,53,26],[20,0,28],[20,54,25],[21,0,28],[21,55,24],[22,0,28],[22,57,22],[23,0,27],[23,48,2],[23,57,22],[24,0,29],[24,57,22],[25,0,29],[25,57,22],[26,0,29],[26,57,22],[27,0,30],[27,51,2],[27,57,22],[28,0,33],[28,51,3],[28,58,21],[29,0,32],[29,52,3],[29,58,21],[30,0,31],[30,53,26]],[[0,0,79],[1,0,79],[2,0,48],[2,51,1],[2,53,26],[3,0,32],[3,52,27],[4,0,33],[4,52,27],[5,0,33],[5,52,27],[6,0,36],[6,49,30],[7,0,36],[7,50,29],[8,0,36],[8,49,30],[9,0,38],[9,50,29],[10,0,38],[10,50,29],[11,0,38],[11,49,30],[12,0,37],[12,49,30],[13,0,35],[13,51,28],[14,0,35],[14,51,28],[15,0,33],[15,51,28],[16,0,33],[16,53,26],[17,0,32],[17,52,27],[18,0,31],[18,46,2],[18,52,27],[19,0,30],[19,46,2],[19,53,26],[20,0,29],[20,46,2],[20,54,25],[21,0,27],[21,55,24],[22,0,28],[22,57,22],[23,0,27],[23,48,2],[23,57,22],[24,0,28],[24,56,23],[25,0,29],[25,57,22],[26,0,29],[26,50,2],[26,57,22],[27,0,30],[27,50,3],[27,57,22],[28,0,32],[28,51,2],[28,57,22],[29,0,31],[29,52,3],[29,58,21],[30,0,31],[30,52,27]],[[0,0,79],[1,0,79],[2,0,47],[2,51,28],[3,0,32],[3,52,27],[4,0,33],[4,52,27],[5,0,33],[5,51,28],[6,0,36],[6,49,30],[7,0,35],[7,49,30],[8,0,37],[8,49,30],[9,0,37],[9,49,30],[10,0,38],[10,50,29],[11,0,38],[11,49,30],[12,0,36],[12,49,30],[13,0,35],[13,50,29],[14,0,34],[14,50,29],[15,0,32],[15,51,28],[16,0,32],[16,52,27],[17,0,32],[17,46,2],[17,52,27],[18,0,31],[18,46,2],[18,52,27],[19,0,29],[19,46,2],[19,52,27],[20,0,29],[20,46,2],[20,54,25],[21,0,27],[21,46,2],[21,55,24],[22,0,27],[22,46,2],[22,56,23],[23,0,27],[23,56,23],[24,0,28],[24,48,2],[24,56,23],[25,0,29],[25,48,2],[25,56,23],[26,0,29],[26,49,2],[26,56,23],[27,0,29],[27,50,2],[27,57,22],[28,0,31],[28,50,3],[28,57,22],[29,0,30],[29,51,4],[29,58,21],[30,0,30],[30,52,27]],[[0,0,79],[1,0,79],[2,0,34],[2,38,7],[2,52,27],[3,0,32],[3,52,27],[4,0,32],[4,51,28],[5,0,33],[5,50,29],[6,0,35],[6,49,30],[7,0,35],[7,49,30],[8,0,36],[8,49,30],[9,0,37],[9,49,30],[10,0,38],[10,49,30],[11,0,37],[11,49,30],[12,0,35],[12,49,30],[13,0,34],[13,50,29],[14,0,34],[14,50,29],[15,0,31],[15,46,2],[15,50,29],[16,0,32],[16,46,2],[16,52,27],[17,0,31],[17,46,2],[17,51,28],[18,0,30],[18,45,3],[18,52,27],[19,0,29],[19,45,3],[19,52,27],[20,0,28],[20,45,3],[20,53,26],[21,0,27],[21,45,3],[21,54,25],[22,0,27],[22,46,2],[22,56,23],[23,0,27],[23,47,2],[23,55,24],[24,0,28],[24,47,2],[24,55,24],[25,0,28],[25,48,2],[25,56,23],[26,0,28],[26,49,2],[26,56,23],[27,0,29],[27,49,3],[27,56,23],[28,0,30],[28,50,3],[28,57,22],[29,0,30],[29,51,4],[29,57,22],[30,0,29],[30,51,28]],[[0,0,79],[1,0,79],[2,0,31],[2,39,6],[2,52,27],[3,0,32],[3,51,28],[4,0,32],[4,51,28],[5,0,33],[5,34,1],[5,50,29],[6,0,35],[6,48,31],[7,0,34],[7,48,31],[8,0,36],[8,48,31],[9,0,37],[9,49,30],[10,0,37],[10,49,30],[11,0,36],[11,49,30],[12,0,34],[12,49,30],[13,0,33],[13,49,30],[14,0,33],[14,50,29],[15,0,31],[15,51,28],[16,0,31],[16,45,2],[16,51,28],[17,0,31],[17,45,2],[17,51,28],[18,0,30],[18,45,2],[18,51,28],[19,0,29],[19,45,2],[19,52,27],[20,0,28],[20,45,3],[20,53,26],[21,0,27],[21,45,3],[21,54,25],[22,0,27],[22,45,3],[22,55,24],[23,0,27],[23,46,2],[23,55,24],[24,0,27],[24,47,2],[24,55,24],[25,0,28],[25,47,3],[25,55,24],[26,0,28],[26,48,2],[26,55,24],[27,0,29],[27,49,2],[27,56,23],[28,0,29],[28,50,3],[28,56,23],[29,0,29],[29,50,4],[29,57,22],[30,0,28],[30,51,28]],[[0,0,79],[1,0,79],[2,0,31],[2,39,5],[2,51,28],[3,0,31],[3,51,28],[4,0,32],[4,50,29],[5,0,35],[5,50,29],[6,0,34],[6,48,31],[7,0,34],[7,48,31],[8,0,35],[8,48,31],[9,0,36],[9,48,31],[10,0,37],[10,49,30],[11,0,36],[11,48,31],[12,0,33],[12,48,31],[13,0,33],[13,49,30],[14,0,33],[14,45,2],[14,50,29],[15,0,30],[15,45,2],[15,51,28],[16,0,31],[16,51,28],[17,0,30],[17,44,3],[17,51,28],[18,0,30],[18,44,3],[18,51,28],[19,0,29],[19,44,3],[19,51,28],[20,0,28],[20,44,3],[20,53,26],[21,0,26],[21,44,3],[21,53,26],[22,0,26],[22,45,3],[22,55,24],[23,0,27],[23,46,2],[23,54,25],[24,0,27],[24,46,3],[24,54,25],[25,0,27],[25,47,2],[25,55,24],[26,0,28],[26,47,3],[26,55,24],[27,0,28],[27,48,3],[27,55,24],[28,0,29],[28,49,3],[28,56,23],[29,0,28],[29,50,4],[29,56,23],[30,0,28],[30,51,28]],[[0,0,79],[1,0,79],[2,0,31],[2,39,6],[2,51,28],[3,0,32],[3,51,28],[4,0,32],[4,50,29],[5,0,34],[5,49,30],[6,0,33],[6,48,31],[7,0,35],[7,48,31],[8,0,35],[8,47,32],[9,0,36],[9,48,31],[10,0,36],[10,48,31],[11,0,35],[11,48,31],[12,0,33],[12,48,31],[13,0,32],[13,49,30],[14,0,32],[14,50,29],[15,0,30],[15,51,28],[16,0,31],[16,44,2],[16,51,28],[17,0,30],[17,44,3],[17,51,28],[18,0,30],[18,44,2],[18,51,28],[19,0,28],[19,44,3],[19,51,28],[20,0,28],[20,44,3],[20,52,27],[21,0,27],[21,44,3],[21,53,26],[22,0,26],[22,44,3],[22,54,25],[23,0,26],[23,45,3],[23,54,25],[24,0,26],[24,46,2],[24,54,25],[25,0,27],[25,46,3],[25,54,25],[26,0,27],[26,47,3],[26,54,25],[27,0,28],[27,48,3],[27,55,24],[28,0,28],[28,49,3],[28,55,24],[29,0,28],[29,49,4],[29,55,24],[30,0,27],[30,50,29]],[[0,0,79],[1,0,79],[2,0,31],[2,39,7],[2,48,2],[2,51,28],[3,0,31],[3,51,28],[4,0,32],[4,50,29],[5,0,34],[5,49,30],[6,0,32],[6,48,31],[7,0,35],[7,47,32],[8,0,35],[8,47,32],[9,0,35],[9,47,32],[10,0,36],[10,48,31],[11,0,35],[11,48,31],[12,0,33],[12,48,31],[13,0,32],[13,49,30],[14,0,32],[14,50,29],[15,0,30],[15,50,29],[16,0,30],[16,44,2],[16,51,28],[17,0,30],[17,44,2],[17,51,28],[18,0,29],[18,43,3],[18,51,28],[19,0,28],[19,43,3],[19,51,28],[20,0,27],[20,44,2],[20,51,28],[21,0,26],[21,44,2],[21,52,27],[22,0,25],[22,44,3],[22,53,26],[23,0,26],[23,45,2],[23,53,26],[24,0,26],[24,45,3],[24,53,26],[25,0,26],[25,46,2],[25,54,25],[26,0,27],[26,47,2],[26,54,25],[27,0,27],[27,47,3],[27,54,25],[28,0,28],[28,48,3],[28,55,24],[29,0,27],[29,49,4],[29,55,24],[30,0,27],[30,50,29]],[[0,0,79],[1,0,79],[2,0,31],[2,39,40],[3,0,31],[3,51,28],[4,0,32],[4,50,29],[5,0,34],[5,49,30],[6,0,32],[6,48,31],[7,0,34],[7,47,32],[8,0,34],[8,46,33],[9,0,35],[9,47,32],[10,0,35],[10,47,32],[11,0,35],[11,47,32],[12,0,33],[12,47,32],[13,0,32],[13,48,31],[14,0,32],[14,49,30],[15,0,30],[15,50,29],[16,0,30],[16,44,2],[16,51,28],[17,0,29],[17,44,2],[17,51,28],[18,0,29],[18,43,3],[18,51,28],[19,0,28],[19,43,3],[19,51,28],[20,0,27],[20,43,3],[20,51,28],[21,0,26],[21,43,3],[21,52,27],[22,0,25],[22,44,2],[22,53,26],[23,0,25],[23,44,3],[23,52,27],[24,0,26],[24,45,2],[24,53,26],[25,0,26],[25,45,3],[25,53,26],[26,0,26],[26,46,3],[26,53,26],[27,0,27],[27,47,2],[27,53,26],[28,0,27],[28,48,3],[28,54,25],[29,0,27],[29,49,3],[29,54,25],[30,0,26],[30,50,29]],[[0,0,79],[1,0,79],[2,0,32],[2,39,40],[3,0,31],[3,51,28],[4,0,31],[4,50,29],[5,0,34],[5,49,30],[6,0,33],[6,48,31],[7,0,34],[7,47,32],[8,0,34],[8,46,33],[9,0,34],[9,46,33],[10,0,34],[10,47,32],[11,0,35],[11,47,32],[12,0,33],[12,47,32],[13,0,32],[13,48,31],[14,0,31],[14,49,30],[15,0,29],[15,50,29],[16,0,30],[16,51,28],[17,0,29],[17,43,2],[17,51,28],[18,0,28],[18,43,2],[18,51,28],[19,0,27],[19,43,2],[19,51,28],[20,0,27],[20,43,2],[20,51,28],[21,0,26],[21,43,2],[21,51,28],[22,0,25],[22,43,3],[22,52,27],[23,0,25],[23,44,2],[23,52,27],[24,0,25],[24,45,2],[24,52,27],[25,0,25],[25,45,2],[25,53,26],[26,0,26],[26,46,2],[26,52,27],[27,0,26],[27,47,2],[27,53,26],[28,0,27],[28,47,3],[28,53,26],[29,0,27],[29,48,4],[29,53,26],[30,0,26],[30,49,30]],[[0,0,79],[1,0,79],[2,0,31],[2,38,41],[3,0,31],[3,51,28],[4,0,31],[4,50,29],[5,0,34],[5,49,30],[6,0,33],[6,48,31],[7,0,32],[7,47,32],[8,0,33],[8,46,33],[9,0,33],[9,46,33],[10,0,34],[10,46,33],[11,0,34],[11,42,2],[11,46,33],[12,0,33],[12,46,33],[13,0,31],[13,48,31],[14,0,31],[14,49,30],[15,0,31],[15,50,29],[16,0,29],[16,50,29],[17,0,29],[17,43,2],[17,48,1],[17,51,28],[18,0,28],[18,43,2],[18,48,2],[18,51,28],[19,0,27],[19,43,2],[19,51,28],[20,0,27],[20,43,2],[20,51,28],[21,0,26],[21,43,2],[21,52,27],[22,0,24],[22,43,2],[22,52,27],[23,0,24],[23,44,2],[23,51,28],[24,0,25],[24,44,2],[24,52,27],[25,0,25],[25,45,2],[25,52,27],[26,0,25],[26,45,3],[26,52,27],[27,0,25],[27,46,3],[27,52,27],[28,0,26],[28,47,3],[28,53,26],[29,0,26],[29,48,3],[29,53,26],[30,0,26],[30,49,30]],[[0,0,79],[1,0,79],[2,0,31],[2,37,42],[3,0,31],[3,41,2],[3,49,30],[4,0,31],[4,50,29],[5,0,31],[5,32,1],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,47,32],[8,0,33],[8,46,33],[9,0,33],[9,45,34],[10,0,33],[10,41,1],[10,46,33],[11,0,34],[11,41,2],[11,46,33],[12,0,34],[12,46,33],[13,0,31],[13,47,32],[14,0,31],[14,48,31],[15,0,30],[15,49,30],[16,0,29],[16,50,29],[17,0,29],[17,44,1],[17,51,28],[18,0,28],[18,42,2],[18,48,2],[18,51,28],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,51,28],[21,0,26],[21,43,1],[21,51,28],[22,0,25],[22,43,2],[22,52,27],[23,0,24],[23,43,2],[23,51,28],[24,0,24],[24,52,27],[25,0,24],[25,44,2],[25,52,27],[26,0,25],[26,45,2],[26,51,28],[27,0,25],[27,45,3],[27,51,28],[28,0,25],[28,46,3],[28,52,27],[29,0,26],[29,47,3],[29,52,27],[30,0,26],[30,48,31]],[[0,0,79],[1,0,79],[2,0,31],[2,36,43],[3,0,30],[3,39,6],[3,46,33],[4,0,30],[4,50,29],[5,0,31],[5,32,1],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,46,33],[8,0,33],[8,46,33],[9,0,33],[9,45,34],[10,0,33],[10,45,34],[11,0,34],[11,40,1],[11,45,34],[12,0,34],[12,45,34],[13,0,31],[13,46,33],[14,0,31],[14,48,31],[15,0,30],[15,49,30],[16,0,28],[16,50,29],[17,0,29],[17,47,2],[17,50,29],[18,0,28],[18,42,2],[18,47,2],[18,51,28],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,51,28],[21,0,25],[21,42,2],[21,51,28],[22,0,24],[22,42,2],[22,52,27],[23,0,24],[23,43,2],[23,51,28],[24,0,24],[24,43,2],[24,52,27],[25,0,24],[25,44,2],[25,52,27],[26,0,24],[26,44,2],[26,51,28],[27,0,24],[27,45,2],[27,51,28],[28,0,24],[28,46,3],[28,51,28],[29,0,26],[29,47,3],[29,51,28],[30,0,26],[30,48,31]],[[0,0,79],[1,0,79],[2,0,31],[2,35,44],[3,0,30],[3,38,41],[4,0,30],[4,50,29],[5,0,30],[5,31,2],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,46,33],[8,0,32],[8,45,34],[9,0,32],[9,45,34],[10,0,32],[10,45,34],[11,0,33],[11,45,34],[12,0,33],[12,45,34],[13,0,31],[13,46,33],[14,0,30],[14,47,32],[15,0,30],[15,48,31],[16,0,28],[16,29,1],[16,49,30],[17,0,28],[17,47,2],[17,50,29],[18,0,28],[18,42,2],[18,47,2],[18,50,29],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,51,28],[21,0,25],[21,42,2],[21,51,28],[22,0,24],[22,42,2],[22,52,27],[23,0,23],[23,42,2],[23,52,27],[24,0,24],[24,43,2],[24,51,28],[25,0,24],[25,44,1],[25,51,28],[26,0,24],[26,44,2],[26,50,29],[27,0,24],[27,45,2],[27,51,28],[28,0,24],[28,45,3],[28,51,28],[29,0,24],[29,47,2],[29,51,28],[30,0,25],[30,48,31]],[[0,0,79],[1,0,79],[2,0,30],[2,36,43],[3,0,30],[3,41,2],[3,47,32],[4,0,30],[4,50,29],[5,0,30],[5,31,2],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,46,33],[8,0,32],[8,45,34],[9,0,32],[9,45,34],[10,0,33],[10,45,34],[11,0,33],[11,45,34],[12,0,33],[12,45,34],[13,0,31],[13,46,33],[14,0,30],[14,47,32],[15,0,30],[15,48,31],[16,0,28],[16,29,1],[16,49,30],[17,0,28],[17,47,1],[17,50,29],[18,0,28],[18,47,1],[18,50,29],[19,0,27],[19,42,2],[19,48,2],[19,51,28],[20,0,26],[20,42,2],[20,51,28],[21,0,25],[21,42,2],[21,51,28],[22,0,24],[22,52,27],[23,0,23],[23,52,27],[24,0,23],[24,43,1],[24,52,27],[25,0,24],[25,52,27],[26,0,24],[26,51,28],[27,0,24],[27,45,1],[27,51,28],[28,0,24],[28,45,3],[28,51,28],[29,0,24],[29,46,3],[29,50,29],[30,0,25],[30,47,32]],[[0,0,79],[1,0,79],[2,0,30],[2,36,43],[3,0,30],[3,49,30],[4,0,30],[4,51,28],[5,0,30],[5,31,2],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,46,33],[8,0,32],[8,46,33],[9,0,32],[9,45,34],[10,0,33],[10,45,34],[11,0,33],[11,45,34],[12,0,32],[12,45,34],[13,0,31],[13,46,33],[14,0,30],[14,47,32],[15,0,30],[15,48,31],[16,0,28],[16,29,1],[16,49,30],[17,0,28],[17,50,29],[18,0,28],[18,31,2],[18,51,28],[19,0,27],[19,31,2],[19,48,1],[19,51,28],[20,0,26],[20,51,28],[21,0,25],[21,52,27],[22,0,24],[22,52,27],[23,0,23],[23,43,2],[23,52,27],[24,0,23],[24,43,1],[24,52,27],[25,0,24],[25,52,27],[26,0,24],[26,51,28],[27,0,24],[27,51,28],[28,0,24],[28,51,28],[29,0,23],[29,51,28],[30,0,24],[30,48,31]],[[0,0,79],[1,0,79],[2,0,30],[2,37,42],[3,0,30],[3,51,28],[4,0,30],[4,51,28],[5,0,30],[5,31,2],[5,49,30],[6,0,33],[6,48,31],[7,0,31],[7,47,32],[8,0,32],[8,46,33],[9,0,32],[9,45,34],[10,0,33],[10,46,33],[11,0,33],[11,46,33],[12,0,32],[12,45,34],[13,0,31],[13,46,33],[14,0,30],[14,47,32],[15,0,30],[15,48,31],[16,0,28],[16,29,1],[16,49,30],[17,0,28],[17,50,29],[18,0,28],[18,51,28],[19,0,27],[19,32,1],[19,43,2],[19,51,28],[20,0,27],[20,31,2],[20,43,2],[20,52,27],[21,0,26],[21,43,2],[21,52,27],[22,0,25],[22,53,26],[23,0,24],[23,53,26],[24,0,23],[24,53,26],[25,0,24],[25,53,26],[26,0,24],[26,53,26],[27,0,24],[27,52,27],[28,0,24],[28,51,28],[29,0,23],[29,51,28],[30,0,23],[30,50,29]],[[0,0,79],[1,0,79],[2,0,30],[2,38,41],[3,0,30],[3,52,27],[4,0,30],[4,51,28],[5,0,30],[5,31,2],[5,50,29],[6,0,32],[6,49,30],[7,0,31],[7,47,32],[8,0,33],[8,47,32],[9,0,33],[9,46,33],[10,0,32],[10,46,33],[11,0,33],[11,46,33],[12,0,33],[12,46,33],[13,0,31],[13,46,33],[14,0,31],[14,47,32],[15,0,30],[15,49,30],[16,0,28],[16,29,1],[16,50,29],[17,0,28],[17,50,29],[18,0,28],[18,51,28],[19,0,28],[19,44,2],[19,52,27],[20,0,27],[20,44,2],[20,52,27],[21,0,26],[21,44,2],[21,53,26],[22,0,25],[22,44,2],[22,53,26],[23,0,24],[23,44,2],[23,54,25],[24,0,23],[24,44,2],[24,54,25],[25,0,24],[25,54,25],[26,0,24],[26,54,25],[27,0,24],[27,54,25],[28,0,24],[28,52,27],[29,0,24],[29,52,27],[30,0,23],[30,52,27]],[[0,0,79],[1,0,31],[1,32,47],[2,0,30],[2,39,40],[3,0,30],[3,52,27],[4,0,30],[4,52,27],[5,0,30],[5,31,2],[5,51,28],[6,0,32],[6,49,30],[7,0,31],[7,48,31],[8,0,33],[8,47,32],[9,0,33],[9,46,33],[10,0,33],[10,47,32],[11,0,33],[11,47,32],[12,0,33],[12,47,32],[13,0,32],[13,47,32],[14,0,31],[14,48,31],[15,0,30],[15,49,30],[16,0,30],[16,50,29],[17,0,28],[17,51,28],[18,0,29],[18,51,28],[19,0,28],[19,52,27],[20,0,28],[20,33,1],[20,45,2],[20,53,26],[21,0,27],[21,45,2],[21,53,26],[22,0,26],[22,45,2],[22,54,25],[23,0,25],[23,45,2],[23,54,25],[24,0,24],[24,45,2],[24,55,24],[25,0,23],[25,45,2],[25,55,24],[26,0,24],[26,56,23],[27,0,24],[27,56,23],[28,0,24],[28,54,25],[29,0,24],[29,54,25],[30,0,24],[30,53,26]],[[0,0,79],[1,0,29],[1,36,43],[2,0,29],[2,42,2],[2,51,28],[3,0,29],[3,53,26],[4,0,30],[4,52,27],[5,0,33],[5,51,28],[6,0,33],[6,50,29],[7,0,31],[7,48,31],[8,0,33],[8,48,31],[9,0,33],[9,47,32],[10,0,33],[10,48,31],[11,0,33],[11,48,31],[12,0,34],[12,47,32],[13,0,34],[13,47,32],[14,0,31],[14,48,31],[15,0,30],[15,49,30],[16,0,30],[16,50,29],[17,0,28],[17,52,27],[18,0,29],[18,52,27],[19,0,29],[19,53,26],[20,0,28],[20,46,2],[20,53,26],[21,0,27],[21,46,2],[21,54,25],[22,0,26],[22,46,2],[22,54,25],[23,0,26],[23,46,2],[23,55,24],[24,0,25],[24,46,2],[24,56,23],[25,0,24],[25,46,2],[25,57,22],[26,0,23],[26,56,23],[27,0,24],[27,57,22],[28,0,24],[28,57,22],[29,0,24],[29,55,24],[30,0,24],[30,55,24]],[[0,0,79],[1,0,29],[1,37,42],[2,0,29],[2,54,25],[3,0,29],[3,54,25],[4,0,30],[4,53,26],[5,0,33],[5,52,27],[6,0,33],[6,49,1],[6,51,28],[7,0,31],[7,49,30],[8,0,33],[8,49,30],[9,0,33],[9,48,31],[10,0,34],[10,48,31],[11,0,34],[11,48,31],[12,0,34],[12,48,31],[13,0,33],[13,48,31],[14,0,31],[14,49,30],[15,0,31],[15,50,29],[16,0,30],[16,51,28],[17,0,28],[17,53,26],[18,0,28],[18,53,26],[19,0,29],[19,53,26],[20,0,28],[20,47,2],[20,54,25],[21,0,28],[21,46,3],[21,55,24],[22,0,27],[22,46,3],[22,55,24],[23,0,26],[23,47,2],[23,56,23],[24,0,25],[24,47,2],[24,57,22],[25,0,24],[25,47,2],[25,58,21],[26,0,23],[26,47,2],[26,58,21],[27,0,23],[27,48,2],[27,58,21],[28,0,24],[28,59,20],[29,0,24],[29,59,20],[30,0,24],[30,57,22]],[[0,0,30],[0,34,45],[1,0,29],[1,38,41],[2,0,29],[2,55,24],[3,0,29],[3,55,24],[4,0,30],[4,54,25],[5,0,33],[5,53,26],[6,0,33],[6,50,29],[7,0,31],[7,50,29],[8,0,33],[8,50,29],[9,0,33],[9,49,30],[10,0,34],[10,49,30],[11,0,34],[11,49,30],[12,0,34],[12,49,30],[13,0,34],[13,49,30],[14,0,31],[14,50,29],[15,0,31],[15,51,28],[16,0,31],[16,52,27],[17,0,30],[17,53,26],[18,0,28],[18,54,25],[19,0,29],[19,54,25],[20,0,29],[20,48,2],[20,55,24],[21,0,28],[21,47,3],[21,55,24],[22,0,28],[22,47,3],[22,56,23],[23,0,27],[23,47,3],[23,57,22],[24,0,26],[24,48,2],[24,58,21],[25,0,25],[25,48,3],[25,59,20],[26,0,25],[26,49,2],[26,60,19],[27,0,24],[27,49,2],[27,60,19],[28,0,24],[28,49,2],[28,60,19],[29,0,25],[29,61,18],[30,0,24],[30,50,2],[30,61,18]],[[0,0,29],[0,36,43],[1,0,29],[1,39,40],[2,0,29],[2,56,23],[3,0,29],[3,56,23],[4,0,30],[4,55,24],[5,0,30],[5,31,2],[5,55,24],[6,0,33],[6,51,1],[6,53,26],[7,0,32],[7,50,29],[8,0,33],[8,51,28],[9,0,33],[9,50,29],[10,0,34],[10,50,29],[11,0,34],[11,51,28],[12,0,34],[12,50,29],[13,0,34],[13,50,29],[14,0,33],[14,50,29],[15,0,31],[15,51,28],[16,0,31],[16,52,27],[17,0,31],[17,53,26],[18,0,30],[18,56,23],[19,0,28],[19,55,24],[20,0,29],[20,55,24],[21,0,29],[21,49,2],[21,57,22],[22,0,29],[22,48,3],[22,58,21],[23,0,28],[23,48,3],[23,59,20],[24,0,27],[24,49,3],[24,59,20],[25,0,26],[25,49,3],[25,60,19],[26,0,26],[26,49,3],[26,61,18],[27,0,25],[27,50,2],[27,63,16],[28,0,24],[28,50,2],[28,63,16],[29,0,25],[29,50,3],[29,62,17],[30,0,25],[30,51,2],[30,63,16]],[[0,0,29],[0,35,44],[1,0,29],[1,39,40],[2,0,29],[2,57,22],[3,0,29],[3,57,22],[4,0,30],[4,56,23],[5,0,30],[5,32,1],[5,56,23],[6,0,33],[6,51,1],[6,55,24],[7,0,32],[7,51,28],[8,0,33],[8,53,26],[9,0,33],[9,51,28],[10,0,34],[10,51,28],[11,0,34],[11,52,27],[12,0,34],[12,52,27],[13,0,34],[13,51,28],[14,0,34],[14,51,28],[15,0,32],[15,51,28],[16,0,31],[16,52,27],[17,0,31],[17,53,26],[18,0,31],[18,55,24],[19,0,28],[19,57,22],[20,0,29],[20,57,22],[21,0,29],[21,58,21],[22,0,29],[22,50,3],[22,59,20],[23,0,29],[23,49,4],[23,60,19],[24,0,28],[24,49,4],[24,61,18],[25,0,28],[25,50,3],[25,62,17],[26,0,27],[26,50,3],[26,63,16],[27,0,26],[27,51,3],[27,64,15],[28,0,25],[28,51,3],[28,65,14],[29,0,25],[29,51,3],[29,65,14],[30,0,26],[30,52,2],[30,64,15]],[[0,0,79],[1,0,29],[1,37,42],[2,0,29],[2,45,2],[2,58,21],[3,0,29],[3,58,21],[4,0,30],[4,58,21],[5,0,30],[5,57,22],[6,0,32],[6,57,22],[7,0,32],[7,52,27],[8,0,32],[8,53,26],[9,0,33],[9,54,25],[10,0,34],[10,52,27],[11,0,34],[11,52,27],[12,0,34],[12,51,1],[12,53,26],[13,0,33],[13,52,27],[14,0,33],[14,52,27],[15,0,33],[15,52,27],[16,0,32],[16,52,27],[17,0,31],[17,54,25],[18,0,31],[18,55,24],[19,0,31],[19,58,21],[20,0,28],[20,58,21],[21,0,29],[21,58,21],[22,0,30],[22,60,19],[23,0,30],[23,51,3],[23,61,18],[24,0,29],[24,50,5],[24,62,17],[25,0,29],[25,50,5],[25,63,16],[26,0,28],[26,51,4],[26,64,15],[27,0,27],[27,51,4],[27,65,14],[28,0,27],[28,52,3],[28,66,13],[29,0,26],[29,52,3],[29,67,12],[30,0,25],[30,52,4],[30,67,12]],[[0,0,79],[1,0,30],[1,35,44],[2,0,29],[2,41,7],[2,59,20],[3,0,29],[3,59,20],[4,0,30],[4,59,20],[5,0,31],[5,58,21],[6,0,32],[6,58,21],[7,0,33],[7,53,3],[7,57,22],[8,0,32],[8,54,25],[9,0,33],[9,55,24],[10,0,34],[10,53,26],[11,0,34],[11,53,26],[12,0,34],[12,52,27],[13,0,33],[13,52,27],[14,0,33],[14,34,2],[14,53,26],[15,0,33],[15,34,2],[15,53,26],[16,0,32],[16,33,1],[16,53,26],[17,0,32],[17,53,26],[18,0,32],[18,55,24],[19,0,32],[19,55,24],[20,0,32],[20,60,19],[21,0,29],[21,60,19],[22,0,30],[22,61,18],[23,0,30],[23,52,3],[23,62,17],[24,0,30],[24,51,5],[24,63,16],[25,0,30],[25,51,5],[25,64,15],[26,0,29],[26,51,5],[26,65,14],[27,0,29],[27,52,5],[27,66,13],[28,0,28],[28,52,5],[28,66,13],[29,0,27],[29,53,4],[29,67,12],[30,0,27],[30,53,4],[30,68,11]],[[0,0,79],[1,0,79],[2,0,29],[2,42,2],[2,46,2],[2,60,19],[3,0,30],[3,60,19],[4,0,30],[4,60,19],[5,0,31],[5,60,19],[6,0,32],[6,59,20],[7,0,33],[7,54,3],[7,58,21],[8,0,33],[8,55,24],[9,0,33],[9,56,23],[10,0,34],[10,57,22],[11,0,34],[11,54,25],[12,0,33],[12,54,25],[13,0,33],[13,35,1],[13,54,25],[14,0,33],[14,34,2],[14,53,26],[15,0,36],[15,53,26],[16,0,32],[16,33,2],[16,53,26],[17,0,32],[17,54,25],[18,0,32],[18,56,23],[19,0,33],[19,56,23],[20,0,33],[20,61,18],[21,0,31],[21,61,18],[22,0,30],[22,61,18],[23,0,32],[23,63,16],[24,0,32],[24,52,4],[24,64,15],[25,0,32],[25,52,5],[25,66,13],[26,0,32],[26,52,5],[26,66,13],[27,0,31],[27,53,5],[27,67,12],[28,0,30],[28,53,5],[28,67,12],[29,0,29],[29,54,4],[29,68,11],[30,0,28],[30,54,5],[30,69,10]],[[0,0,79],[1,0,34],[1,38,15],[1,57,22],[2,0,30],[2,43,1],[2,61,18],[3,0,30],[3,61,18],[4,0,31],[4,61,18],[5,0,32],[5,61,18],[6,0,33],[6,61,18],[7,0,33],[7,55,3],[7,60,19],[8,0,33],[8,56,23],[9,0,33],[9,57,22],[10,0,34],[10,58,21],[11,0,34],[11,55,24],[12,0,33],[12,55,24],[13,0,33],[13,35,1],[13,55,24],[14,0,32],[14,34,2],[14,54,25],[15,0,36],[15,54,25],[16,0,32],[16,33,2],[16,53,26],[17,0,32],[17,33,1],[17,54,25],[18,0,33],[18,57,22],[19,0,34],[19,57,22],[20,0,34],[20,58,21],[21,0,34],[21,63,16],[22,0,31],[22,62,17],[23,0,33],[23,64,15],[24,0,34],[24,53,3],[24,65,14],[25,0,34],[25,53,4],[25,67,12],[26,0,34],[26,53,4],[26,68,11],[27,0,33],[27,53,5],[27,69,10],[28,0,32],[28,54,4],[28,69,10],[29,0,31],[29,54,5],[29,69,10],[30,0,29],[30,55,4],[30,70,9]],[[0,0,79],[1,0,34],[1,40,12],[1,62,17],[2,0,31],[2,62,17],[3,0,31],[3,63,16],[4,0,32],[4,62,17],[5,0,33],[5,62,17],[6,0,34],[6,62,17],[7,0,34],[7,58,2],[7,61,18],[8,0,34],[8,58,21],[9,0,34],[9,59,20],[10,0,35],[10,60,19],[11,0,35],[11,56,23],[12,0,34],[12,35,2],[12,56,23],[13,0,33],[13,35,2],[13,56,23],[14,0,33],[14,35,2],[14,56,23],[15,0,33],[15,34,2],[15,55,24],[16,0,36],[16,55,24],[17,0,36],[17,55,24],[18,0,34],[18,57,22],[19,0,34],[19,58,21],[20,0,35],[20,59,20],[21,0,35],[21,64,15],[22,0,33],[22,54,1],[22,64,15],[23,0,34],[23,65,14],[24,0,35],[24,67,12],[25,0,35],[25,54,3],[25,68,11],[26,0,36],[26,54,4],[26,69,10],[27,0,34],[27,54,4],[27,70,9],[28,0,33],[28,55,3],[28,71,8],[29,0,32],[29,55,4],[29,71,8],[30,0,31],[30,56,3],[30,72,7]],[[0,0,55],[0,62,17],[1,0,35],[1,43,9],[1,63,16],[2,0,32],[2,64,15],[3,0,32],[3,64,15],[4,0,33],[4,64,15],[5,0,34],[5,64,15],[6,0,35],[6,64,15],[7,0,34],[7,59,20],[8,0,34],[8,60,19],[9,0,35],[9,61,18],[10,0,36],[10,62,17],[11,0,35],[11,36,2],[11,58,21],[12,0,34],[12,36,2],[12,58,21],[13,0,34],[13,36,2],[13,58,21],[14,0,33],[14,35,2],[14,57,22],[15,0,33],[15,34,3],[15,56,23],[16,0,33],[16,34,3],[16,56,23],[17,0,36],[17,56,23],[18,0,35],[18,58,21],[19,0,35],[19,59,20],[20,0,36],[20,60,19],[21,0,36],[21,61,18],[22,0,35],[22,66,13],[23,0,34],[23,56,2],[23,66,13],[24,0,36],[24,56,2],[24,68,11],[25,0,36],[25,56,1],[25,69,10],[26,0,37],[26,55,3],[26,70,9],[27,0,36],[27,55,4],[27,62,2],[27,72,7],[28,0,35],[28,55,4],[28,62,2],[28,73,6],[29,0,33],[29,56,3],[29,62,2],[29,73,6],[30,0,32],[30,56,3],[30,63,2],[30,74,5]],[[0,0,55],[0,64,15],[1,0,35],[1,46,7],[1,65,14],[2,0,33],[2,65,14],[3,0,33],[3,65,14],[4,0,34],[4,66,13],[5,0,36],[5,66,13],[6,0,35],[6,61,1],[6,65,14],[7,0,35],[7,61,18],[8,0,35],[8,62,17],[9,0,36],[9,64,15],[10,0,36],[10,65,14],[11,0,36],[11,60,19],[12,0,35],[12,37,3],[12,60,19],[13,0,35],[13,37,2],[13,60,19],[14,0,34],[14,36,3],[14,59,20],[15,0,34],[15,36,2],[15,58,21],[16,0,34],[16,35,3],[16,58,21],[17,0,37],[17,58,21],[18,0,37],[18,59,20],[19,0,36],[19,60,19],[20,0,37],[20,61,18],[21,0,37],[21,62,17],[22,0,37],[22,67,12],[23,0,35],[23,68,11],[24,0,37],[24,57,2],[24,68,11],[25,0,37],[25,57,2],[25,70,9],[26,0,37],[26,57,2],[26,72,7],[27,0,37],[27,56,4],[27,73,6],[28,0,36],[28,56,4],[28,63,2],[28,74,5],[29,0,35],[29,57,3],[29,63,2],[29,75,4],[30,0,33],[30,57,3],[30,63,3],[30,76,3]],[[0,0,56],[0,65,14],[1,0,36],[1,47,4],[1,53,1],[1,66,13],[2,0,35],[2,67,12],[3,0,35],[3,67,12],[4,0,36],[4,67,12],[5,0,37],[5,67,12],[6,0,36],[6,63,1],[6,67,12],[7,0,35],[7,63,16],[8,0,36],[8,64,15],[9,0,37],[9,66,13],[10,0,38],[10,67,12],[11,0,38],[11,62,17],[12,0,36],[12,39,2],[12,62,17],[13,0,36],[13,38,3],[13,62,17],[14,0,36],[14,38,2],[14,61,18],[15,0,36],[15,38,2],[15,61,18],[16,0,36],[16,37,2],[16,60,19],[17,0,39],[17,60,19],[18,0,38],[18,60,19],[19,0,38],[19,61,18],[20,0,38],[20,62,17],[21,0,38],[21,63,16],[22,0,38],[22,65,14],[23,0,37],[23,70,9],[24,0,37],[24,70,9],[25,0,37],[25,58,3],[25,71,8],[26,0,38],[26,58,2],[26,73,6],[27,0,38],[27,58,3],[27,74,5],[28,0,37],[28,57,4],[28,64,1],[28,75,4],[29,0,36],[29,57,4],[29,64,3],[29,76,3],[30,0,34],[30,58,3],[30,64,3],[30,77,2]],[[0,0,44],[0,45,11],[0,67,12],[1,0,38],[1,49,3],[1,67,12],[2,0,37],[2,67,12],[3,0,37],[3,68,11],[4,0,38],[4,68,11],[5,0,38],[5,68,11],[6,0,37],[6,65,1],[6,68,11],[7,0,36],[7,65,14],[8,0,37],[8,66,13],[9,0,38],[9,67,12],[10,0,40],[10,69,10],[11,0,39],[11,64,15],[12,0,38],[12,64,15],[13,0,38],[13,40,2],[13,64,15],[14,0,37],[14,40,3],[14,63,16],[15,0,37],[15,39,4],[15,63,16],[16,0,37],[16,38,4],[16,62,17],[17,0,37],[17,38,2],[17,61,18],[18,0,40],[18,61,18],[19,0,39],[19,62,17],[20,0,39],[20,63,16],[21,0,39],[21,64,15],[22,0,39],[22,65,14],[23,0,38],[23,70,9],[24,0,38],[24,71,8],[25,0,38],[25,60,1],[25,71,8],[26,0,38],[26,59,2],[26,73,6],[27,0,39],[27,59,2],[27,75,4],[28,0,38],[28,58,4],[28,76,3],[29,0,37],[29,58,4],[29,66,1],[29,77,2],[30,0,34],[30,59,3],[30,65,3],[30,78,1]],[[0,0,58],[0,67,12],[1,0,41],[1,50,3],[1,68,11],[2,0,39],[2,68,11],[3,0,39],[3,69,10],[4,0,40],[4,69,10],[5,0,39],[5,69,10],[6,0,38],[6,66,1],[6,69,10],[7,0,37],[7,66,13],[8,0,37],[8,67,12],[9,0,38],[9,69,10],[10,0,41],[10,70,9],[11,0,41],[11,66,13],[12,0,40],[12,66,13],[13,0,39],[13,66,13],[14,0,39],[14,42,3],[14,66,13],[15,0,39],[15,41,5],[15,65,14],[16,0,39],[16,41,3],[16,65,14],[17,0,39],[17,40,2],[17,64,15],[18,0,40],[18,63,16],[19,0,41],[19,63,16],[20,0,40],[20,64,15],[21,0,40],[21,65,14],[22,0,40],[22,66,13],[23,0,39],[23,67,12],[24,0,39],[24,72,7],[25,0,39],[25,72,7],[26,0,39],[26,60,2],[26,73,6],[27,0,40],[27,60,2],[27,75,4],[28,0,40],[28,59,3],[28,76,3],[29,0,37],[29,59,4],[29,77,2],[30,0,34],[30,59,4],[30,66,2],[30,78,1]],[[0,0,58],[0,67,12],[1,0,44],[1,51,4],[1,68,11],[2,0,41],[2,68,11],[3,0,41],[3,69,10],[4,0,41],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,67,1],[6,69,10],[7,0,38],[7,67,12],[8,0,38],[8,68,11],[9,0,39],[9,70,9],[10,0,41],[10,71,8],[11,0,42],[11,69,10],[12,0,42],[12,68,11],[13,0,41],[13,68,11],[14,0,41],[14,45,3],[14,68,11],[15,0,41],[15,43,5],[15,68,11],[16,0,42],[16,43,4],[16,67,12],[17,0,42],[17,67,12],[18,0,42],[18,66,13],[19,0,42],[19,64,15],[20,0,42],[20,64,15],[21,0,41],[21,65,14],[22,0,41],[22,66,13],[23,0,40],[23,67,12],[24,0,40],[24,68,2],[24,72,7],[25,0,40],[25,72,7],[26,0,40],[26,73,6],[27,0,41],[27,60,3],[27,74,5],[28,0,40],[28,60,2],[28,76,3],[29,0,37],[29,60,4],[29,77,2],[30,0,33],[30,60,4],[30,78,1]],[[0,0,59],[0,67,12],[1,0,48],[1,51,7],[1,67,12],[2,0,43],[2,68,11],[3,0,43],[3,69,10],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,40],[6,69,10],[7,0,39],[7,69,10],[8,0,40],[8,69,10],[9,0,40],[9,70,9],[10,0,42],[10,71,8],[11,0,43],[11,72,7],[12,0,43],[12,70,9],[13,0,43],[13,70,9],[14,0,43],[14,47,1],[14,70,9],[15,0,43],[15,45,5],[15,69,10],[16,0,43],[16,44,6],[16,69,10],[17,0,44],[17,66,1],[17,69,10],[18,0,44],[18,68,11],[19,0,43],[19,65,1],[19,68,11],[20,0,43],[20,65,14],[21,0,42],[21,65,14],[22,0,42],[22,66,13],[23,0,41],[23,66,13],[24,0,41],[24,68,11],[25,0,41],[25,69,1],[25,72,7],[26,0,41],[26,72,7],[27,0,41],[27,61,2],[27,73,6],[28,0,41],[28,60,2],[28,74,5],[29,0,23],[29,27,8],[29,60,3],[29,76,3],[30,0,21],[30,60,4],[30,77,2]],[[0,0,60],[0,66,13],[1,0,58],[1,66,13],[2,0,45],[2,67,12],[3,0,44],[3,68,11],[4,0,43],[4,68,11],[5,0,41],[5,69,10],[6,0,41],[6,69,10],[7,0,40],[7,69,10],[8,0,40],[8,70,9],[9,0,41],[9,70,9],[10,0,43],[10,71,8],[11,0,43],[11,71,8],[12,0,43],[12,71,8],[13,0,44],[13,71,8],[14,0,45],[14,71,8],[15,0,44],[15,47,3],[15,71,8],[16,0,45],[16,46,4],[16,71,8],[17,0,45],[17,67,1],[17,70,9],[18,0,45],[18,67,1],[18,70,9],[19,0,44],[19,67,1],[19,70,9],[20,0,44],[20,66,2],[20,69,10],[21,0,43],[21,65,14],[22,0,43],[22,65,14],[23,0,42],[23,66,13],[24,0,42],[24,67,12],[25,0,42],[25,68,3],[25,73,6],[26,0,42],[26,72,7],[27,0,25],[27,27,15],[27,72,7],[28,0,22],[28,29,9],[28,73,6],[29,0,20],[29,30,2],[29,75,4],[30,0,20],[30,61,3],[30,76,3]],[[0,0,59],[0,64,15],[1,0,58],[1,65,14],[2,0,48],[2,55,1],[2,66,13],[3,0,46],[3,67,12],[4,0,44],[4,67,12],[5,0,42],[5,68,11],[6,0,41],[6,68,11],[7,0,40],[7,69,10],[8,0,40],[8,70,9],[9,0,41],[9,70,9],[10,0,44],[10,71,8],[11,0,44],[11,71,8],[12,0,43],[12,71,8],[13,0,44],[13,71,8],[14,0,45],[14,71,8],[15,0,46],[15,48,3],[15,72,7],[16,0,46],[16,48,3],[16,71,8],[17,0,46],[17,71,8],[18,0,46],[18,68,1],[18,71,8],[19,0,45],[19,68,1],[19,71,8],[20,0,45],[20,68,1],[20,70,9],[21,0,44],[21,67,2],[21,70,9],[22,0,44],[22,66,13],[23,0,42],[23,66,13],[24,0,42],[24,66,13],[25,0,43],[25,67,12],[26,0,24],[26,28,14],[26,68,2],[26,71,8],[27,0,21],[27,29,13],[27,71,8],[28,0,20],[28,30,3],[28,72,7],[29,0,20],[29,73,6],[30,0,21],[30,61,3],[30,75,4]],[[0,0,58],[0,62,17],[1,0,57],[1,63,16],[2,0,57],[2,64,15],[3,0,48],[3,65,14],[4,0,45],[4,66,13],[5,0,43],[5,67,12],[6,0,42],[6,68,11],[7,0,41],[7,69,10],[8,0,41],[8,69,10],[9,0,41],[9,70,9],[10,0,44],[10,71,8],[11,0,45],[11,71,8],[12,0,43],[12,71,8],[13,0,44],[13,71,8],[14,0,45],[14,72,7],[15,0,46],[15,49,2],[15,72,7],[16,0,47],[16,49,2],[16,72,7],[17,0,47],[17,72,7],[18,0,47],[18,72,7],[19,0,46],[19,69,1],[19,72,7],[20,0,45],[20,64,1],[20,68,2],[20,72,7],[21,0,45],[21,64,2],[21,68,2],[21,71,8],[22,0,44],[22,67,12],[23,0,43],[23,66,13],[24,0,43],[24,66,13],[25,0,23],[25,28,15],[25,66,13],[26,0,20],[26,30,13],[26,67,2],[26,72,7],[27,0,20],[27,30,8],[27,70,9],[28,0,20],[28,70,9],[29,0,21],[29,71,8],[30,0,23],[30,73,6]],[[0,0,57],[0,60,19],[1,0,56],[1,61,18],[2,0,56],[2,63,16],[3,0,50],[3,64,15],[4,0,47],[4,66,13],[5,0,44],[5,67,12],[6,0,43],[6,67,12],[7,0,42],[7,68,11],[8,0,41],[8,69,10],[9,0,42],[9,70,9],[10,0,42],[10,70,9],[11,0,45],[11,71,8],[12,0,44],[12,71,8],[13,0,45],[13,71,8],[14,0,45],[14,72,7],[15,0,47],[15,72,7],[16,0,48],[16,49,2],[16,72,7],[17,0,48],[17,49,2],[17,72,7],[18,0,48],[18,72,7],[19,0,47],[19,69,1],[19,72,7],[20,0,46],[20,69,1],[20,72,7],[21,0,45],[21,64,2],[21,69,2],[21,72,7],[22,0,45],[22,64,2],[22,67,12],[23,0,43],[23,64,2],[23,67,12],[24,0,24],[24,29,15],[24,65,14],[25,0,20],[25,30,13],[25,65,14],[26,0,20],[26,30,13],[26,66,2],[26,71,8],[27,0,20],[27,69,10],[28,0,21],[28,69,10],[29,0,23],[29,70,9],[30,0,30],[30,71,8]],[[0,0,57],[0,58,21],[1,0,55],[1,59,20],[2,0,55],[2,61,18],[3,0,54],[3,62,17],[4,0,48],[4,65,14],[5,0,45],[5,66,13],[6,0,43],[6,67,12],[7,0,42],[7,67,12],[8,0,41],[8,68,11],[9,0,41],[9,69,10],[10,0,42],[10,70,9],[11,0,45],[11,70,9],[12,0,45],[12,71,8],[13,0,44],[13,71,8],[14,0,45],[14,71,8],[15,0,47],[15,71,8],[16,0,48],[16,72,7],[17,0,49],[17,72,7],[18,0,49],[18,72,7],[19,0,47],[19,72,7],[20,0,47],[20,68,1],[20,70,1],[20,72,7],[21,0,46],[21,65,1],[21,68,3],[21,72,7],[22,0,46],[22,64,2],[22,68,11],[23,0,24],[23,25,2],[23,29,15],[23,64,15],[24,0,21],[24,30,14],[24,64,15],[25,0,21],[25,30,13],[25,64,15],[26,0,21],[26,30,12],[26,65,3],[26,70,9],[27,0,21],[27,68,11],[28,0,23],[28,68,11],[29,0,30],[29,69,10],[30,0,30],[30,70,9]],[[0,0,79],[1,0,54],[1,58,21],[2,0,54],[2,59,20],[3,0,53],[3,60,19],[4,0,50],[4,63,16],[5,0,46],[5,65,14],[6,0,43],[6,66,13],[7,0,43],[7,67,12],[8,0,42],[8,68,11],[9,0,41],[9,68,11],[10,0,42],[10,69,10],[11,0,44],[11,70,9],[12,0,45],[12,70,9],[13,0,44],[13,70,9],[14,0,45],[14,71,8],[15,0,46],[15,71,8],[16,0,48],[16,71,8],[17,0,49],[17,72,7],[18,0,49],[18,72,7],[19,0,48],[19,68,1],[19,72,7],[20,0,47],[20,68,1],[20,70,1],[20,72,7],[21,0,46],[21,65,1],[21,68,11],[22,0,46],[22,63,4],[22,68,11],[23,0,23],[23,30,14],[23,63,4],[23,68,11],[24,0,21],[24,30,14],[24,64,15],[25,0,21],[25,30,13],[25,64,15],[26,0,22],[26,64,3],[26,69,10],[27,0,23],[27,67,12],[28,0,27],[28,67,12],[29,0,30],[29,68,11],[30,0,30],[30,69,10]],[[0,0,79],[1,0,54],[1,55,24],[2,0,53],[2,58,21],[3,0,53],[3,59,20],[4,0,52],[4,61,18],[5,0,47],[5,65,14],[6,0,44],[6,66,13],[7,0,43],[7,66,13],[8,0,42],[8,67,12],[9,0,41],[9,68,11],[10,0,42],[10,68,11],[11,0,43],[11,69,10],[12,0,45],[12,69,10],[13,0,44],[13,70,9],[14,0,45],[14,70,9],[15,0,46],[15,71,8],[16,0,49],[16,56,1],[16,71,8],[17,0,49],[17,67,1],[17,71,8],[18,0,49],[18,71,8],[19,0,48],[19,68,1],[19,72,7],[20,0,47],[20,68,3],[20,72,7],[21,0,46],[21,68,11],[22,0,25],[22,26,1],[22,29,16],[22,63,1],[22,65,2],[22,68,11],[23,0,22],[23,30,14],[23,63,16],[24,0,21],[24,30,14],[24,63,16],[25,0,22],[25,31,12],[25,63,16],[26,0,22],[26,64,3],[26,69,10],[27,0,24],[27,66,13],[28,0,30],[28,66,13],[29,0,30],[29,67,12],[30,0,30],[30,68,11]],[[0,0,79],[1,0,79],[2,0,52],[2,57,22],[3,0,52],[3,58,21],[4,0,51],[4,59,20],[5,0,47],[5,64,15],[6,0,44],[6,65,14],[7,0,43],[7,66,13],[8,0,42],[8,67,12],[9,0,41],[9,67,12],[10,0,42],[10,68,11],[11,0,43],[11,68,11],[12,0,45],[12,69,10],[13,0,44],[13,69,10],[14,0,45],[14,70,9],[15,0,46],[15,70,9],[16,0,48],[16,56,2],[16,70,9],[17,0,49],[17,71,8],[18,0,49],[18,67,1],[18,69,1],[18,71,8],[19,0,48],[19,67,3],[19,71,8],[20,0,47],[20,68,11],[21,0,47],[21,63,1],[21,67,12],[22,0,24],[22,30,14],[22,63,1],[22,65,2],[22,68,11],[23,0,22],[23,30,14],[23,63,16],[24,0,22],[24,30,14],[24,63,16],[25,0,22],[25,36,7],[25,63,16],[26,0,24],[26,63,3],[26,68,11],[27,0,29],[27,66,13],[28,0,30],[28,66,13],[29,0,30],[29,66,13],[30,0,30],[30,68,11]],[[0,0,79],[1,0,79],[2,0,52],[2,57,22],[3,0,52],[3,58,21],[4,0,52],[4,59,20],[5,0,47],[5,64,15],[6,0,44],[6,65,14],[7,0,43],[7,66,13],[8,0,42],[8,66,13],[9,0,41],[9,67,12],[10,0,42],[10,68,11],[11,0,43],[11,68,11],[12,0,45],[12,69,10],[13,0,44],[13,69,10],[14,0,45],[14,69,10],[15,0,46],[15,70,9],[16,0,48],[16,66,1],[16,70,9],[17,0,49],[17,70,9],[18,0,49],[18,67,1],[18,71,8],[19,0,48],[19,67,12],[20,0,47],[20,64,2],[20,67,12],[21,0,47],[21,60,1],[21,63,16],[22,0,23],[22,30,14],[22,60,2],[22,63,16],[23,0,22],[23,30,14],[23,63,16],[24,0,22],[24,31,13],[24,63,16],[25,0,23],[25,40,2],[25,63,16],[26,0,24],[26,64,2],[26,68,11],[27,0,30],[27,65,14],[28,0,30],[28,65,14],[29,0,29],[29,66,13],[30,0,30],[30,67,12]],[[0,0,79],[1,0,79],[2,0,51],[2,56,23],[3,0,51],[3,58,21],[4,0,51],[4,58,21],[5,0,47],[5,64,15],[6,0,44],[6,65,14],[7,0,43],[7,66,13],[8,0,42],[8,66,13],[9,0,41],[9,67,12],[10,0,42],[10,67,12],[11,0,43],[11,68,11],[12,0,45],[12,68,11],[13,0,44],[13,69,10],[14,0,45],[14,69,10],[15,0,46],[15,69,10],[16,0,48],[16,70,9],[17,0,48],[17,66,1],[17,70,9],[18,0,49],[18,66,2],[18,69,10],[19,0,49],[19,67,12],[20,0,47],[20,62,1],[20,65,1],[20,67,12],[21,0,26],[21,29,18],[21,60,2],[21,64,15],[22,0,22],[22,30,14],[22,60,1],[22,63,16],[23,0,22],[23,30,14],[23,63,16],[24,0,22],[24,31,13],[24,63,16],[25,0,23],[25,64,15],[26,0,26],[26,64,2],[26,68,11],[27,0,30],[27,65,14],[28,0,29],[28,65,14],[29,0,29],[29,66,13],[30,0,29],[30,67,12]],[[0,0,79],[1,0,79],[2,0,51],[2,56,23],[3,0,51],[3,57,22],[4,0,51],[4,58,21],[5,0,47],[5,64,15],[6,0,44],[6,65,14],[7,0,42],[7,65,14],[8,0,42],[8,66,13],[9,0,41],[9,67,12],[10,0,41],[10,67,12],[11,0,42],[11,68,11],[12,0,45],[12,68,11],[13,0,44],[13,68,11],[14,0,45],[14,69,10],[15,0,46],[15,69,10],[16,0,48],[16,69,10],[17,0,48],[17,66,1],[17,70,9],[18,0,48],[18,66,13],[19,0,48],[19,66,13],[20,0,47],[20,62,1],[20,65,1],[20,67,12],[21,0,25],[21,30,17],[21,60,1],[21,64,15],[22,0,22],[22,30,14],[22,60,1],[22,63,16],[23,0,22],[23,30,14],[23,63,16],[24,0,22],[24,33,10],[24,64,15],[25,0,24],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,29],[27,65,14],[28,0,29],[28,65,14],[29,0,29],[29,66,13],[30,0,28],[30,67,12]],[[0,0,79],[1,0,79],[2,0,50],[2,55,24],[3,0,50],[3,56,23],[4,0,51],[4,61,18],[5,0,47],[5,63,16],[6,0,44],[6,65,14],[7,0,42],[7,65,14],[8,0,42],[8,66,13],[9,0,41],[9,66,13],[10,0,41],[10,67,12],[11,0,42],[11,67,12],[12,0,45],[12,68,11],[13,0,44],[13,68,11],[14,0,45],[14,68,11],[15,0,46],[15,69,10],[16,0,48],[16,65,1],[16,69,10],[17,0,48],[17,65,1],[17,69,10],[18,0,48],[18,66,1],[18,68,11],[19,0,48],[19,66,13],[20,0,48],[20,64,1],[20,67,12],[21,0,23],[21,30,17],[21,63,16],[22,0,22],[22,30,14],[22,63,16],[23,0,22],[23,30,14],[23,63,16],[24,0,22],[24,35,8],[24,64,15],[25,0,24],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,29],[27,66,13],[28,0,29],[28,65,14],[29,0,28],[29,66,13],[30,0,28],[30,67,12]],[[0,0,79],[1,0,79],[2,0,50],[2,55,24],[3,0,50],[3,56,23],[4,0,50],[4,57,1],[4,61,18],[5,0,47],[5,63,16],[6,0,44],[6,64,15],[7,0,42],[7,65,14],[8,0,41],[8,65,14],[9,0,41],[9,66,13],[10,0,41],[10,67,12],[11,0,42],[11,67,12],[12,0,45],[12,67,12],[13,0,44],[13,68,11],[14,0,45],[14,68,11],[15,0,46],[15,68,11],[16,0,47],[16,68,11],[17,0,48],[17,65,1],[17,69,10],[18,0,48],[18,65,14],[19,0,48],[19,62,1],[19,65,14],[20,0,25],[20,26,22],[20,62,1],[20,64,1],[20,66,13],[21,0,23],[21,30,17],[21,63,16],[22,0,22],[22,30,14],[22,63,16],[23,0,22],[23,30,14],[23,63,16],[24,0,23],[24,37,6],[24,61,1],[24,64,15],[25,0,25],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,29],[27,66,13],[28,0,28],[28,65,14],[29,0,28],[29,66,13],[30,0,27],[30,44,2],[30,67,12]],[[0,0,79],[1,0,79],[2,0,49],[2,54,25],[3,0,49],[3,56,23],[4,0,50],[4,61,18],[5,0,47],[5,63,16],[6,0,44],[6,64,15],[7,0,42],[7,65,14],[8,0,41],[8,65,14],[9,0,41],[9,66,13],[10,0,41],[10,66,13],[11,0,41],[11,67,12],[12,0,45],[12,67,12],[13,0,44],[13,67,12],[14,0,45],[14,68,11],[15,0,46],[15,68,11],[16,0,47],[16,68,11],[17,0,47],[17,64,1],[17,68,11],[18,0,48],[18,64,2],[18,67,12],[19,0,48],[19,65,14],[20,0,24],[20,26,2],[20,29,19],[20,63,1],[20,65,14],[21,0,22],[21,30,17],[21,60,1],[21,63,16],[22,0,22],[22,30,14],[22,60,2],[22,63,16],[23,0,22],[23,31,13],[23,60,1],[23,63,16],[24,0,23],[24,38,4],[24,64,15],[25,0,26],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,28],[27,66,13],[28,0,28],[28,65,14],[29,0,27],[29,65,14],[30,0,27],[30,44,2],[30,67,12]],[[0,0,79],[1,0,79],[2,0,49],[2,54,25],[3,0,49],[3,55,24],[4,0,49],[4,60,19],[5,0,47],[5,63,16],[6,0,43],[6,64,15],[7,0,42],[7,64,15],[8,0,41],[8,65,14],[9,0,41],[9,66,13],[10,0,41],[10,66,13],[11,0,41],[11,67,12],[12,0,45],[12,67,12],[13,0,44],[13,67,12],[14,0,44],[14,67,12],[15,0,46],[15,67,12],[16,0,47],[16,67,12],[17,0,47],[17,67,12],[18,0,48],[18,64,1],[18,68,11],[19,0,48],[19,64,15],[20,0,25],[20,29,19],[20,62,1],[20,65,14],[21,0,22],[21,30,16],[21,62,17],[22,0,22],[22,30,14],[22,60,2],[22,63,16],[23,0,22],[23,31,13],[23,60,1],[23,63,16],[24,0,23],[24,39,3],[24,63,16],[25,0,28],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,28],[27,66,13],[28,0,28],[28,65,14],[29,0,27],[29,44,2],[29,65,14],[30,0,26],[30,44,2],[30,66,13]],[[0,0,79],[1,0,79],[2,0,48],[2,53,26],[3,0,48],[3,54,25],[4,0,49],[4,60,19],[5,0,48],[5,62,17],[6,0,43],[6,64,15],[7,0,42],[7,64,15],[8,0,41],[8,65,14],[9,0,40],[9,65,14],[10,0,40],[10,66,13],[11,0,41],[11,66,13],[12,0,45],[12,67,12],[13,0,44],[13,67,12],[14,0,44],[14,67,12],[15,0,46],[15,67,12],[16,0,47],[16,67,12],[17,0,47],[17,50,1],[17,67,12],[18,0,48],[18,65,1],[18,67,12],[19,0,48],[19,64,1],[19,66,13],[20,0,25],[20,30,17],[20,63,16],[21,0,22],[21,30,16],[21,62,17],[22,0,22],[22,30,14],[22,60,1],[22,63,16],[23,0,22],[23,33,11],[23,60,1],[23,63,16],[24,0,24],[24,39,3],[24,63,16],[25,0,29],[25,64,15],[26,0,29],[26,64,2],[26,68,11],[27,0,28],[27,65,14],[28,0,27],[28,65,14],[29,0,27],[29,44,2],[29,65,14],[30,0,26],[30,43,3],[30,66,13]],[[0,0,79],[1,0,79],[2,0,48],[2,52,27],[3,0,48],[3,54,25],[4,0,48],[4,60,19],[5,0,47],[5,62,17],[6,0,43],[6,63,16],[7,0,42],[7,64,15],[8,0,41],[8,64,15],[9,0,40],[9,65,14],[10,0,40],[10,66,13],[11,0,41],[11,66,13],[12,0,43],[12,66,13],[13,0,44],[13,67,12],[14,0,44],[14,67,12],[15,0,45],[15,67,12],[16,0,47],[16,67,12],[17,0,47],[17,63,1],[17,67,12],[18,0,48],[18,63,3],[18,67,12],[19,0,48],[19,63,16],[20,0,24],[20,30,18],[20,61,1],[20,63,16],[21,0,22],[21,30,16],[21,63,16],[22,0,22],[22,30,14],[22,60,1],[22,62,17],[23,0,22],[23,34,9],[23,60,2],[23,63,16],[24,0,24],[24,39,2],[24,63,16],[25,0,29],[25,64,15],[26,0,28],[26,64,2],[26,68,11],[27,0,28],[27,64,15],[28,0,27],[28,44,2],[28,64,15],[29,0,27],[29,44,2],[29,65,14],[30,0,25],[30,43,3],[30,66,13]],[[0,0,79],[1,0,79],[2,0,47],[2,52,27],[3,0,47],[3,54,25],[4,0,48],[4,60,19],[5,0,48],[5,62,17],[6,0,43],[6,63,16],[7,0,41],[7,63,16],[8,0,41],[8,64,15],[9,0,40],[9,65,14],[10,0,40],[10,65,14],[11,0,40],[11,66,13],[12,0,43],[12,66,13],[13,0,44],[13,66,13],[14,0,44],[14,66,13],[15,0,45],[15,66,13],[16,0,47],[16,49,1],[16,66,13],[17,0,47],[17,49,2],[17,66,13],[18,0,47],[18,63,1],[18,66,13],[19,0,25],[19,26,22],[19,62,17],[20,0,23],[20,30,18],[20,62,17],[21,0,22],[21,30,16],[21,62,17],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,60,1],[23,62,17],[24,0,24],[24,60,1],[24,63,16],[25,0,28],[25,63,16],[26,0,28],[26,64,2],[26,68,11],[27,0,28],[27,64,15],[28,0,27],[28,44,2],[28,64,15],[29,0,26],[29,44,2],[29,65,14],[30,0,25],[30,43,2],[30,66,13]],[[0,0,79],[1,0,79],[2,0,47],[2,51,28],[3,0,47],[3,53,26],[4,0,47],[4,59,20],[5,0,47],[5,61,18],[6,0,43],[6,63,16],[7,0,41],[7,63,16],[8,0,40],[8,64,15],[9,0,40],[9,65,14],[10,0,40],[10,65,14],[11,0,40],[11,65,14],[12,0,43],[12,66,13],[13,0,44],[13,66,13],[14,0,44],[14,66,13],[15,0,45],[15,66,13],[16,0,47],[16,49,2],[16,66,13],[17,0,47],[17,49,2],[17,66,13],[18,0,47],[18,63,1],[18,66,13],[19,0,25],[19,26,21],[19,62,2],[19,66,13],[20,0,22],[20,30,17],[20,62,17],[21,0,22],[21,30,17],[21,62,17],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,60,1],[23,62,17],[24,0,24],[24,63,16],[25,0,28],[25,63,16],[26,0,28],[26,64,2],[26,67,12],[27,0,27],[27,64,15],[28,0,27],[28,44,2],[28,64,15],[29,0,26],[29,44,2],[29,65,14],[30,0,25],[30,43,2],[30,66,13]],[[0,0,79],[1,0,79],[2,0,48],[2,50,29],[3,0,46],[3,52,27],[4,0,47],[4,59,20],[5,0,47],[5,61,18],[6,0,43],[6,62,17],[7,0,41],[7,63,16],[8,0,40],[8,63,16],[9,0,40],[9,64,15],[10,0,40],[10,65,14],[11,0,40],[11,65,14],[12,0,42],[12,66,13],[13,0,44],[13,66,13],[14,0,44],[14,66,13],[15,0,45],[15,66,13],[16,0,47],[16,49,2],[16,66,13],[17,0,47],[17,49,2],[17,66,13],[18,0,47],[18,66,13],[19,0,25],[19,26,21],[19,63,2],[19,66,13],[20,0,22],[20,30,17],[20,62,17],[21,0,22],[21,30,17],[21,62,17],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,62,17],[24,0,24],[24,63,16],[25,0,28],[25,63,16],[26,0,28],[26,63,3],[26,67,12],[27,0,27],[27,65,14],[28,0,27],[28,44,2],[28,64,15],[29,0,26],[29,44,2],[29,64,15],[30,0,25],[30,43,2],[30,66,13]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,52,27],[4,0,46],[4,59,20],[5,0,47],[5,61,18],[6,0,43],[6,62,17],[7,0,42],[7,62,17],[8,0,40],[8,63,16],[9,0,40],[9,64,15],[10,0,39],[10,65,14],[11,0,40],[11,65,14],[12,0,41],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,66,13],[15,0,45],[15,66,13],[16,0,47],[16,49,2],[16,66,13],[17,0,47],[17,49,2],[17,66,13],[18,0,47],[18,66,13],[19,0,25],[19,26,21],[19,61,2],[19,66,13],[20,0,22],[20,30,17],[20,61,18],[21,0,21],[21,30,17],[21,61,18],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,62,17],[24,0,24],[24,62,17],[25,0,28],[25,63,16],[26,0,28],[26,63,3],[26,67,12],[27,0,27],[27,66,13],[28,0,27],[28,64,15],[29,0,26],[29,64,15],[30,0,26],[30,43,2],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,52,27],[4,0,46],[4,59,20],[5,0,46],[5,61,18],[6,0,44],[6,62,17],[7,0,42],[7,62,17],[8,0,40],[8,63,16],[9,0,40],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,45],[15,65,14],[16,0,46],[16,49,2],[16,66,13],[17,0,46],[17,49,2],[17,65,14],[18,0,47],[18,65,14],[19,0,25],[19,26,21],[19,61,2],[19,65,14],[20,0,22],[20,30,17],[20,61,18],[21,0,21],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,62,17],[24,0,24],[24,62,17],[25,0,28],[25,63,16],[26,0,28],[26,63,3],[26,67,12],[27,0,27],[27,64,1],[27,66,13],[28,0,27],[28,64,15],[29,0,27],[29,64,15],[30,0,26],[30,43,2],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,46],[4,58,21],[5,0,46],[5,60,19],[6,0,44],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,40],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,41],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,45],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,49,2],[17,65,14],[18,0,46],[18,65,14],[19,0,25],[19,26,21],[19,61,2],[19,65,14],[20,0,22],[20,30,17],[20,61,18],[21,0,21],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,62,17],[23,0,22],[23,34,9],[23,62,17],[24,0,24],[24,39,2],[24,62,17],[25,0,28],[25,62,17],[26,0,28],[26,63,16],[27,0,28],[27,64,1],[27,66,13],[28,0,27],[28,64,15],[29,0,27],[29,64,15],[30,0,26],[30,43,2],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,46],[5,60,19],[6,0,44],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,64,15],[12,0,41],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,45],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,49,2],[17,65,14],[18,0,46],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,65,14],[20,0,23],[20,30,17],[20,61,18],[21,0,21],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,61,18],[23,0,22],[23,34,9],[23,62,17],[24,0,24],[24,39,2],[24,62,17],[25,0,28],[25,62,17],[26,0,28],[26,63,16],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,27],[29,64,15],[30,0,26],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,46],[5,60,19],[6,0,44],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,64,15],[12,0,41],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,49,2],[17,65,14],[18,0,46],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,65,14],[20,0,23],[20,30,17],[20,61,18],[21,0,21],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,61,18],[23,0,22],[23,34,9],[23,61,18],[24,0,24],[24,39,2],[24,62,17],[25,0,28],[25,62,17],[26,0,28],[26,63,16],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,27],[29,64,15],[30,0,27],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,45],[5,60,19],[6,0,44],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,63,16],[10,0,39],[10,64,15],[11,0,39],[11,64,15],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,48,3],[17,65,14],[18,0,46],[18,48,1],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,65,14],[20,0,24],[20,30,17],[20,61,18],[21,0,22],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,61,18],[23,0,22],[23,33,10],[23,61,18],[24,0,24],[24,39,2],[24,62,17],[25,0,29],[25,62,17],[26,0,28],[26,62,17],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,27],[29,64,15],[30,0,27],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,45],[5,60,19],[6,0,44],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,63,16],[10,0,39],[10,64,15],[11,0,39],[11,64,15],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,48,3],[17,65,14],[18,0,46],[18,48,1],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,65,14],[20,0,24],[20,30,17],[20,61,18],[21,0,22],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,61,18],[23,0,22],[23,33,10],[23,61,18],[24,0,24],[24,39,2],[24,61,18],[25,0,29],[25,62,17],[26,0,28],[26,62,17],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,28],[29,64,15],[30,0,27],[30,65,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,46],[5,60,19],[6,0,43],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,64,15],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,48,3],[17,65,14],[18,0,46],[18,48,1],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,65,14],[20,0,24],[20,30,17],[20,61,18],[21,0,22],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,61,18],[23,0,22],[23,33,10],[23,61,18],[24,0,24],[24,39,2],[24,61,18],[25,0,29],[25,62,17],[26,0,28],[26,62,17],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,28],[29,63,16],[30,0,27],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,58,21],[5,0,46],[5,60,19],[6,0,43],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,48,3],[17,65,14],[18,0,46],[18,48,2],[18,61,1],[18,65,14],[19,0,47],[19,61,2],[19,64,15],[20,0,24],[20,30,17],[20,61,18],[21,0,22],[21,30,16],[21,61,18],[22,0,22],[22,30,13],[22,60,19],[23,0,22],[23,33,10],[23,61,18],[24,0,24],[24,39,2],[24,61,18],[25,0,29],[25,62,17],[26,0,29],[26,62,17],[27,0,28],[27,63,2],[27,66,13],[28,0,28],[28,63,16],[29,0,28],[29,63,16],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,45],[4,59,20],[5,0,46],[5,61,18],[6,0,42],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,48,3],[17,65,14],[18,0,46],[18,48,1],[18,65,14],[19,0,47],[19,61,4],[19,66,13],[20,0,24],[20,30,17],[20,61,18],[21,0,22],[21,30,16],[21,60,1],[21,62,17],[22,0,22],[22,30,13],[22,60,19],[23,0,22],[23,33,10],[23,61,18],[24,0,24],[24,39,2],[24,61,18],[25,0,29],[25,61,18],[26,0,29],[26,62,17],[27,0,28],[27,64,1],[27,67,12],[28,0,28],[28,63,16],[29,0,28],[29,63,16],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,52,27],[4,0,46],[4,59,20],[5,0,46],[5,61,18],[6,0,42],[6,62,17],[7,0,41],[7,62,17],[8,0,40],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,40],[12,65,14],[13,0,44],[13,65,14],[14,0,43],[14,65,14],[15,0,44],[15,65,14],[16,0,46],[16,49,2],[16,65,14],[17,0,46],[17,49,2],[17,62,1],[17,66,13],[18,0,46],[18,62,1],[18,66,13],[19,0,47],[19,61,1],[19,63,16],[20,0,23],[20,30,17],[20,62,17],[21,0,22],[21,30,16],[21,60,1],[21,62,17],[22,0,22],[22,31,12],[22,60,19],[23,0,23],[23,34,9],[23,61,18],[24,0,24],[24,39,2],[24,61,18],[25,0,29],[25,61,18],[26,0,29],[26,62,17],[27,0,28],[27,62,1],[27,66,13],[28,0,28],[28,63,16],[29,0,28],[29,63,16],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,52,27],[4,0,46],[4,59,20],[5,0,46],[5,61,18],[6,0,42],[6,62,17],[7,0,41],[7,62,17],[8,0,39],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,64,15],[11,0,39],[11,65,14],[12,0,40],[12,42,1],[12,65,14],[13,0,43],[13,65,14],[14,0,43],[14,66,13],[15,0,44],[15,66,13],[16,0,46],[16,49,2],[16,66,13],[17,0,46],[17,49,2],[17,62,1],[17,66,13],[18,0,46],[18,64,1],[18,66,13],[19,0,47],[19,63,16],[20,0,23],[20,30,17],[20,62,17],[21,0,22],[21,31,15],[21,60,1],[21,62,17],[22,0,22],[22,31,12],[22,60,19],[23,0,23],[23,34,9],[23,61,18],[24,0,25],[24,39,2],[24,61,18],[25,0,29],[25,61,18],[26,0,29],[26,62,17],[27,0,28],[27,62,1],[27,67,12],[28,0,29],[28,63,16],[29,0,28],[29,63,16],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,47],[2,49,30],[3,0,45],[3,52,27],[4,0,46],[4,59,20],[5,0,46],[5,61,18],[6,0,42],[6,62,17],[7,0,41],[7,62,17],[8,0,39],[8,63,16],[9,0,39],[9,64,15],[10,0,39],[10,65,14],[11,0,39],[11,65,14],[12,0,40],[12,41,1],[12,65,14],[13,0,43],[13,66,13],[14,0,43],[14,66,13],[15,0,44],[15,66,13],[16,0,46],[16,49,2],[16,66,13],[17,0,46],[17,49,2],[17,66,13],[18,0,46],[18,63,1],[18,66,13],[19,0,47],[19,63,16],[20,0,23],[20,31,16],[20,62,17],[21,0,22],[21,31,15],[21,60,1],[21,62,17],[22,0,22],[22,31,12],[22,60,19],[23,0,23],[23,34,9],[23,61,18],[24,0,25],[24,38,3],[24,61,18],[25,0,29],[25,61,18],[26,0,29],[26,62,17],[27,0,29],[27,62,2],[27,67,12],[28,0,29],[28,64,15],[29,0,28],[29,64,15],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,46],[2,50,29],[3,0,45],[3,53,26],[4,0,46],[4,60,19],[5,0,46],[5,61,18],[6,0,42],[6,62,17],[7,0,41],[7,63,16],[8,0,39],[8,64,15],[9,0,39],[9,64,15],[10,0,39],[10,65,14],[11,0,39],[11,65,14],[12,0,40],[12,66,13],[13,0,43],[13,66,13],[14,0,43],[14,66,13],[15,0,44],[15,66,13],[16,0,46],[16,49,2],[16,66,13],[17,0,46],[17,49,2],[17,66,13],[18,0,46],[18,63,1],[18,66,13],[19,0,26],[19,27,20],[19,63,16],[20,0,23],[20,31,16],[20,62,17],[21,0,22],[21,31,15],[21,60,19],[22,0,23],[22,31,12],[22,60,19],[23,0,23],[23,34,9],[23,61,18],[24,0,25],[24,38,4],[24,61,18],[25,0,29],[25,61,18],[26,0,29],[26,62,17],[27,0,29],[27,62,2],[27,67,12],[28,0,29],[28,64,15],[29,0,28],[29,64,15],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,46],[2,50,29],[3,0,45],[3,52,27],[4,0,46],[4,60,19],[5,0,46],[5,62,17],[6,0,42],[6,62,17],[7,0,41],[7,63,16],[8,0,39],[8,64,15],[9,0,39],[9,64,15],[10,0,39],[10,65,14],[11,0,39],[11,65,14],[12,0,42],[12,66,13],[13,0,43],[13,66,13],[14,0,43],[14,66,13],[15,0,44],[15,66,13],[16,0,46],[16,49,2],[16,66,13],[17,0,46],[17,49,2],[17,66,13],[18,0,46],[18,63,1],[18,67,12],[19,0,25],[19,27,20],[19,62,17],[20,0,23],[20,31,16],[20,62,17],[21,0,23],[21,31,15],[21,60,1],[21,62,17],[22,0,23],[22,31,12],[22,61,18],[23,0,23],[23,35,8],[23,61,18],[24,0,25],[24,38,4],[24,61,18],[25,0,29],[25,62,17],[26,0,29],[26,62,17],[27,0,29],[27,62,2],[27,67,12],[28,0,29],[28,64,15],[29,0,28],[29,64,15],[30,0,28],[30,64,15]],[[0,0,79],[1,0,79],[2,0,46],[2,51,28],[3,0,45],[3,52,27],[4,0,46],[4,60,19],[5,0,45],[5,62,17],[6,0,42],[6,63,16],[7,0,40],[7,63,16],[8,0,39],[8,64,15],[9,0,39],[9,65,14],[10,0,39],[10,65,14],[11,0,39],[11,66,13],[12,0,42],[12,66,13],[13,0,43],[13,66,13],[14,0,43],[14,66,13],[15,0,44],[15,66,13],[16,0,46],[16,66,13],[17,0,46],[17,49,2],[17,67,12],[18,0,46],[18,63,1],[18,67,12],[19,0,28],[19,30,17],[19,62,17],[20,0,23],[20,31,16],[20,63,16],[21,0,23],[21,32,14],[21,63,16],[22,0,23],[22,32,11],[22,61,18],[23,0,24],[23,35,8],[23,61,18],[24,0,26],[24,38,4],[24,61,18],[25,0,29],[25,62,17],[26,0,29],[26,62,17],[27,0,29],[27,62,3],[27,67,12],[28,0,29],[28,64,15],[29,0,28],[29,64,15],[30,0,28],[30,65,14]],[[0,0,79],[1,0,79],[2,0,46],[2,51,28],[3,0,46],[3,53,26],[4,0,46],[4,60,19],[5,0,45],[5,62,17],[6,0,41],[6,63,16],[7,0,40],[7,63,16],[8,0,39],[8,64,15],[9,0,39],[9,65,14],[10,0,39],[10,65,14],[11,0,39],[11,66,13],[12,0,42],[12,66,13],[13,0,43],[13,66,13],[14,0,43],[14,67,12],[15,0,44],[15,67,12],[16,0,46],[16,67,12],[17,0,46],[17,49,2],[17,63,1],[17,67,12],[18,0,47],[18,63,1],[18,65,1],[18,67,12],[19,0,27],[19,31,16],[19,64,15],[20,0,23],[20,32,15],[20,63,16],[21,0,23],[21,32,15],[21,63,16],[22,0,23],[22,32,11],[22,61,18],[23,0,24],[23,35,8],[23,61,18],[24,0,26],[24,38,4],[24,62,17],[25,0,30],[25,62,17],[26,0,29],[26,62,17],[27,0,29],[27,62,4],[27,68,11],[28,0,29],[28,65,14],[29,0,29],[29,44,2],[29,64,15],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,79],[2,0,46],[2,52,27],[3,0,46],[3,53,26],[4,0,46],[4,61,18],[5,0,45],[5,62,17],[6,0,41],[6,63,16],[7,0,40],[7,63,16],[8,0,39],[8,64,15],[9,0,39],[9,65,14],[10,0,39],[10,66,13],[11,0,39],[11,66,13],[12,0,42],[12,66,13],[13,0,43],[13,67,12],[14,0,43],[14,67,12],[15,0,44],[15,67,12],[16,0,46],[16,67,12],[17,0,46],[17,49,2],[17,67,12],[18,0,47],[18,67,12],[19,0,27],[19,31,16],[19,64,1],[19,66,13],[20,0,23],[20,32,15],[20,63,16],[21,0,23],[21,32,15],[21,63,16],[22,0,23],[22,33,10],[22,61,18],[23,0,24],[23,35,8],[23,61,18],[24,0,27],[24,38,4],[24,62,17],[25,0,30],[25,62,17],[26,0,29],[26,62,17],[27,0,29],[27,63,3],[27,68,11],[28,0,29],[28,66,13],[29,0,29],[29,44,2],[29,64,15],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,79],[2,0,46],[2,52,27],[3,0,46],[3,54,25],[4,0,47],[4,61,18],[5,0,44],[5,62,17],[6,0,42],[6,63,16],[7,0,40],[7,64,15],[8,0,39],[8,65,14],[9,0,39],[9,65,14],[10,0,38],[10,66,13],[11,0,39],[11,66,13],[12,0,42],[12,67,12],[13,0,43],[13,67,12],[14,0,43],[14,67,12],[15,0,44],[15,67,12],[16,0,46],[16,67,12],[17,0,46],[17,49,2],[17,67,12],[18,0,47],[18,67,12],[19,0,27],[19,32,15],[19,64,1],[19,66,13],[20,0,23],[20,32,15],[20,63,16],[21,0,23],[21,32,15],[21,63,16],[22,0,24],[22,33,10],[22,44,2],[22,61,18],[23,0,25],[23,36,7],[23,61,18],[24,0,27],[24,39,3],[24,62,17],[25,0,30],[25,62,17],[26,0,29],[26,62,17],[27,0,29],[27,63,4],[27,68,11],[28,0,29],[28,63,1],[28,67,12],[29,0,29],[29,44,2],[29,65,14],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,48],[1,50,29],[2,0,46],[2,52,27],[3,0,46],[3,54,25],[4,0,46],[4,61,18],[5,0,44],[5,63,16],[6,0,41],[6,63,16],[7,0,40],[7,64,15],[8,0,39],[8,65,14],[9,0,39],[9,65,14],[10,0,38],[10,66,13],[11,0,39],[11,66,13],[12,0,42],[12,67,12],[13,0,43],[13,67,12],[14,0,43],[14,67,12],[15,0,44],[15,67,12],[16,0,46],[16,67,12],[17,0,46],[17,49,2],[17,67,12],[18,0,47],[18,64,1],[18,68,11],[19,0,26],[19,32,15],[19,64,1],[19,66,1],[19,68,11],[20,0,24],[20,33,14],[20,63,16],[21,0,23],[21,33,14],[21,61,1],[21,63,16],[22,0,24],[22,33,10],[22,44,2],[22,61,18],[23,0,25],[23,36,7],[23,62,17],[24,0,28],[24,39,3],[24,62,17],[25,0,30],[25,62,17],[26,0,29],[26,63,16],[27,0,29],[27,63,4],[27,68,11],[28,0,29],[28,63,1],[28,67,12],[29,0,29],[29,65,14],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,48],[1,50,29],[2,0,46],[2,53,26],[3,0,46],[3,55,1],[3,59,20],[4,0,46],[4,62,17],[5,0,43],[5,63,16],[6,0,41],[6,64,15],[7,0,40],[7,64,15],[8,0,39],[8,65,14],[9,0,39],[9,66,13],[10,0,38],[10,66,13],[11,0,39],[11,67,12],[12,0,42],[12,67,12],[13,0,43],[13,67,12],[14,0,43],[14,67,12],[15,0,44],[15,67,12],[16,0,46],[16,68,11],[17,0,46],[17,49,2],[17,68,11],[18,0,47],[18,64,1],[18,68,11],[19,0,26],[19,33,14],[19,64,1],[19,66,1],[19,68,11],[20,0,24],[20,33,14],[20,63,16],[21,0,24],[21,33,14],[21,61,1],[21,63,16],[22,0,24],[22,34,12],[22,61,18],[23,0,25],[23,36,7],[23,62,17],[24,0,28],[24,39,3],[24,62,17],[25,0,30],[25,63,16],[26,0,29],[26,63,16],[27,0,29],[27,63,16],[28,0,29],[28,65,1],[28,68,11],[29,0,29],[29,65,14],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,46],[1,50,29],[2,0,46],[2,53,26],[3,0,46],[3,55,1],[3,59,20],[4,0,47],[4,62,17],[5,0,43],[5,63,16],[6,0,41],[6,64,15],[7,0,40],[7,64,15],[8,0,39],[8,65,14],[9,0,39],[9,66,13],[10,0,38],[10,66,13],[11,0,39],[11,67,12],[12,0,42],[12,67,12],[13,0,43],[13,67,12],[14,0,43],[14,68,11],[15,0,44],[15,68,11],[16,0,46],[16,68,11],[17,0,46],[17,49,2],[17,68,11],[18,0,47],[18,64,1],[18,68,11],[19,0,25],[19,33,14],[19,63,1],[19,66,1],[19,68,11],[20,0,24],[20,33,14],[20,63,16],[21,0,24],[21,33,14],[21,64,15],[22,0,24],[22,34,12],[22,62,1],[22,64,15],[23,0,26],[23,37,6],[23,62,17],[24,0,29],[24,39,4],[24,62,17],[25,0,30],[25,63,16],[26,0,29],[26,63,16],[27,0,29],[27,64,15],[28,0,29],[28,69,10],[29,0,29],[29,65,14],[30,0,28],[30,44,2],[30,65,14]],[[0,0,79],[1,0,46],[1,50,29],[2,0,46],[2,54,25],[3,0,47],[3,60,19],[4,0,47],[4,62,17],[5,0,43],[5,64,15],[6,0,41],[6,64,15],[7,0,39],[7,65,14],[8,0,39],[8,66,13],[9,0,39],[9,66,13],[10,0,38],[10,67,12],[11,0,39],[11,67,12],[12,0,42],[12,67,12],[13,0,43],[13,68,11],[14,0,43],[14,68,11],[15,0,44],[15,68,11],[16,0,46],[16,68,11],[17,0,46],[17,49,2],[17,68,11],[18,0,28],[18,29,18],[18,49,1],[18,68,11],[19,0,25],[19,33,14],[19,68,11],[20,0,24],[20,34,13],[20,65,14],[21,0,24],[21,34,13],[21,64,15],[22,0,24],[22,34,12],[22,62,1],[22,64,15],[23,0,26],[23,37,6],[23,62,17],[24,0,30],[24,39,4],[24,63,16],[25,0,30],[25,63,16],[26,0,29],[26,63,16],[27,0,29],[27,64,15],[28,0,29],[28,64,1],[28,69,10],[29,0,29],[29,66,13],[30,0,28],[30,44,2],[30,66,13]],[[0,0,49],[0,50,29],[1,0,46],[1,51,28],[2,0,46],[2,54,25],[3,0,47],[3,61,18],[4,0,47],[4,63,16],[5,0,43],[5,64,15],[6,0,41],[6,64,15],[7,0,39],[7,65,14],[8,0,39],[8,66,13],[9,0,39],[9,66,13],[10,0,38],[10,67,12],[11,0,39],[11,67,12],[12,0,42],[12,68,11],[13,0,43],[13,68,11],[14,0,43],[14,68,11],[15,0,44],[15,68,11],[16,0,46],[16,68,11],[17,0,46],[17,49,2],[17,68,11],[18,0,28],[18,29,18],[18,49,2],[18,68,11],[19,0,25],[19,34,13],[19,65,1],[19,68,11],[20,0,24],[20,34,13],[20,64,4],[20,69,10],[21,0,24],[21,34,13],[21,64,15],[22,0,25],[22,35,11],[22,62,1],[22,64,15],[23,0,26],[23,37,6],[23,62,17],[24,0,30],[24,39,4],[24,63,16],[25,0,30],[25,63,16],[26,0,30],[26,64,15],[27,0,29],[27,64,15],[28,0,29],[28,64,2],[28,69,10],[29,0,29],[29,66,13],[30,0,28],[30,44,2],[30,66,13]],[[0,0,47],[0,50,29],[1,0,46],[1,52,27],[2,0,46],[2,55,24],[3,0,47],[3,62,17],[4,0,47],[4,63,16],[5,0,42],[5,64,15],[6,0,40],[6,65,14],[7,0,39],[7,65,14],[8,0,39],[8,66,13],[9,0,38],[9,67,12],[10,0,38],[10,67,12],[11,0,39],[11,68,11],[12,0,42],[12,68,11],[13,0,43],[13,68,11],[14,0,43],[14,68,11],[15,0,44],[15,68,11],[16,0,46],[16,68,11],[17,0,46],[17,49,2],[17,69,10],[18,0,47],[18,49,2],[18,69,10],[19,0,25],[19,34,13],[19,65,1],[19,69,10],[20,0,24],[20,34,13],[20,64,4],[20,69,10],[21,0,25],[21,34,13],[21,64,15],[22,0,25],[22,35,11],[22,62,1],[22,64,15],[23,0,27],[23,38,4],[23,63,16],[24,0,31],[24,39,4],[24,63,16],[25,0,30],[25,64,15],[26,0,30],[26,64,15],[27,0,29],[27,64,15],[28,0,29],[28,65,1],[28,69,10],[29,0,29],[29,44,1],[29,66,13],[30,0,28],[30,44,2],[30,66,13]],[[0,0,47],[0,51,28],[1,0,46],[1,52,27],[2,0,46],[2,55,24],[3,0,47],[3,62,17],[4,0,46],[4,63,16],[5,0,42],[5,64,15],[6,0,40],[6,65,14],[7,0,39],[7,66,13],[8,0,39],[8,66,13],[9,0,38],[9,67,12],[10,0,38],[10,67,12],[11,0,39],[11,68,11],[12,0,42],[12,68,11],[13,0,43],[13,68,11],[14,0,43],[14,69,10],[15,0,44],[15,69,10],[16,0,46],[16,69,10],[17,0,46],[17,49,2],[17,69,10],[18,0,28],[18,30,1],[18,33,14],[18,49,2],[18,69,10],[19,0,25],[19,34,13],[19,65,1],[19,69,10],[20,0,25],[20,35,12],[20,64,1],[20,66,2],[20,69,10],[21,0,25],[21,35,12],[21,64,15],[22,0,25],[22,36,10],[22,64,15],[23,0,27],[23,38,4],[23,63,16],[24,0,31],[24,40,3],[24,63,16],[25,0,31],[25,64,15],[26,0,30],[26,64,15],[27,0,29],[27,64,15],[28,0,29],[28,65,2],[28,70,9],[29,0,29],[29,44,1],[29,67,12],[30,0,28],[30,44,2],[30,67,12]],[[0,0,47],[0,51,28],[1,0,46],[1,53,26],[2,0,47],[2,56,23],[3,0,47],[3,62,17],[4,0,45],[4,64,15],[5,0,42],[5,65,14],[6,0,40],[6,65,14],[7,0,39],[7,66,13],[8,0,39],[8,67,12],[9,0,38],[9,67,12],[10,0,38],[10,68,11],[11,0,39],[11,68,11],[12,0,42],[12,68,11],[13,0,43],[13,69,10],[14,0,43],[14,69,10],[15,0,44],[15,69,10],[16,0,46],[16,69,10],[17,0,46],[17,49,2],[17,69,10],[18,0,29],[18,34,13],[18,49,2],[18,65,1],[18,69,10],[19,0,25],[19,35,12],[19,65,1],[19,69,10],[20,0,25],[20,35,12],[20,64,1],[20,66,1],[20,69,10],[21,0,25],[21,35,12],[21,64,15],[22,0,26],[22,36,11],[22,63,1],[22,65,14],[23,0,27],[23,39,3],[23,63,16],[24,0,31],[24,40,2],[24,64,15],[25,0,31],[25,64,15],[26,0,30],[26,64,15],[27,0,29],[27,65,14],[28,0,29],[28,65,2],[28,70,9],[29,0,29],[29,67,12],[30,0,28],[30,44,2],[30,67,12]],[[0,0,47],[0,52,27],[1,0,47],[1,53,26],[2,0,47],[2,56,23],[3,0,48],[3,62,17],[4,0,45],[4,64,15],[5,0,42],[5,65,14],[6,0,40],[6,65,14],[7,0,39],[7,66,13],[8,0,39],[8,67,12],[9,0,38],[9,68,11],[10,0,38],[10,68,11],[11,0,39],[11,68,11],[12,0,42],[12,69,10],[13,0,43],[13,69,10],[14,0,43],[14,69,10],[15,0,44],[15,69,10],[16,0,46],[16,69,10],[17,0,46],[17,49,2],[17,69,10],[18,0,29],[18,35,12],[18,49,2],[18,65,1],[18,69,10],[19,0,26],[19,35,12],[19,69,10],[20,0,25],[20,35,12],[20,66,1],[20,68,1],[20,70,9],[21,0,25],[21,35,12],[21,65,14],[22,0,26],[22,37,10],[22,63,1],[22,65,14],[23,0,28],[23,39,3],[23,63,16],[24,0,31],[24,40,2],[24,64,15],[25,0,31],[25,64,15],[26,0,30],[26,65,14],[27,0,29],[27,65,14],[28,0,29],[28,65,3],[28,71,8],[29,0,29],[29,68,11],[30,0,29],[30,44,3],[30,67,12]],[[0,0,47],[0,53,26],[1,0,47],[1,54,25],[2,0,47],[2,56,23],[3,0,48],[3,63,16],[4,0,44],[4,64,15],[5,0,42],[5,65,14],[6,0,40],[6,66,13],[7,0,39],[7,66,13],[8,0,39],[8,67,12],[9,0,38],[9,68,11],[10,0,39],[10,68,11],[11,0,39],[11,69,10],[12,0,42],[12,69,10],[13,0,43],[13,69,10],[14,0,42],[14,69,10],[15,0,44],[15,69,10],[16,0,46],[16,69,10],[17,0,46],[17,49,2],[17,70,9],[18,0,28],[18,35,12],[18,49,2],[18,70,9],[19,0,26],[19,36,11],[19,66,1],[19,70,9],[20,0,25],[20,36,11],[20,66,3],[20,70,9],[21,0,26],[21,36,11],[21,65,14],[22,0,26],[22,37,10],[22,63,1],[22,65,14],[23,0,28],[23,39,3],[23,63,16],[24,0,31],[24,40,2],[24,64,15],[25,0,31],[25,64,15],[26,0,30],[26,65,14],[27,0,30],[27,65,14],[28,0,29],[28,66,3],[28,71,8],[29,0,29],[29,69,10],[30,0,29],[30,44,3],[30,67,12]],[[0,0,47],[0,53,26],[1,0,47],[1,54,25],[2,0,47],[2,56,23],[3,0,48],[3,63,16],[4,0,44],[4,65,14],[5,0,41],[5,66,13],[6,0,40],[6,66,13],[7,0,39],[7,67,12],[8,0,39],[8,68,11],[9,0,38],[9,68,11],[10,0,39],[10,69,10],[11,0,39],[11,69,10],[12,0,42],[12,69,10],[13,0,43],[13,70,9],[14,0,42],[14,70,9],[15,0,44],[15,70,9],[16,0,46],[16,70,9],[17,0,30],[17,31,15],[17,70,9],[18,0,28],[18,36,11],[18,70,9],[19,0,26],[19,36,11],[19,66,1],[19,70,9],[20,0,26],[20,36,11],[20,65,4],[20,70,9],[21,0,26],[21,36,11],[21,65,14],[22,0,27],[22,38,9],[22,63,1],[22,65,14],[23,0,28],[23,40,2],[23,44,2],[23,63,2],[23,66,13],[24,0,31],[24,40,2],[24,64,15],[25,0,31],[25,65,14],[26,0,30],[26,65,14],[27,0,30],[27,65,14],[28,0,29],[28,66,3],[28,71,8],[29,0,29],[29,66,1],[29,70,9],[30,0,29],[30,45,2],[30,68,11]],[[0,0,47],[0,54,25],[1,0,47],[1,55,24],[2,0,48],[2,57,22],[3,0,48],[3,64,15],[4,0,44],[4,65,14],[5,0,41],[5,66,13],[6,0,40],[6,66,13],[7,0,39],[7,67,12],[8,0,39],[8,68,11],[9,0,38],[9,69,10],[10,0,39],[10,69,10],[11,0,39],[11,69,10],[12,0,43],[12,70,9],[13,0,43],[13,70,9],[14,0,42],[14,70,9],[15,0,44],[15,70,9],[16,0,46],[16,70,9],[17,0,46],[17,70,9],[18,0,28],[18,36,11],[18,51,1],[18,66,1],[18,70,9],[19,0,26],[19,36,11],[19,66,1],[19,70,9],[20,0,26],[20,36,11],[20,65,1],[20,67,1],[20,69,1],[20,71,8],[21,0,26],[21,36,11],[21,66,13],[22,0,27],[22,38,9],[22,63,1],[22,66,13],[23,0,29],[23,40,2],[23,44,2],[23,64,15],[24,0,32],[24,64,15],[25,0,31],[25,65,14],[26,0,30],[26,65,14],[27,0,30],[27,66,13],[28,0,30],[28,66,4],[28,71,8],[29,0,29],[29,66,1],[29,71,8],[30,0,29],[30,45,2],[30,68,11]],[[0,0,47],[0,54,25],[1,0,47],[1,55,24],[2,0,48],[2,57,2],[2,61,18],[3,0,48],[3,64,15],[4,0,44],[4,65,14],[5,0,41],[5,66,13],[6,0,40],[6,67,12],[7,0,39],[7,67,12],[8,0,39],[8,68,11],[9,0,37],[9,69,10],[10,0,39],[10,69,10],[11,0,39],[11,70,9],[12,0,43],[12,70,9],[13,0,43],[13,70,9],[14,0,42],[14,70,9],[15,0,44],[15,70,9],[16,0,46],[16,70,9],[17,0,46],[17,50,1],[17,70,9],[18,0,27],[18,36,11],[18,50,2],[18,66,2],[18,71,8],[19,0,26],[19,37,10],[19,66,2],[19,71,8],[20,0,26],[20,37,10],[20,67,1],[20,69,1],[20,71,8],[21,0,27],[21,37,10],[21,66,13],[22,0,27],[22,39,8],[22,64,1],[22,66,13],[23,0,29],[23,40,2],[23,44,2],[23,64,15],[24,0,32],[24,64,15],[25,0,31],[25,65,14],[26,0,30],[26,66,13],[27,0,30],[27,66,13],[28,0,30],[28,66,5],[28,72,7],[29,0,30],[29,72,7],[30,0,29],[30,45,2],[30,68,11]],[[0,0,47],[0,55,24],[1,0,47],[1,56,23],[2,0,48],[2,57,1],[2,62,17],[3,0,49],[3,64,15],[4,0,43],[4,66,13],[5,0,41],[5,66,13],[6,0,40],[6,67,12],[7,0,39],[7,68,11],[8,0,39],[8,69,10],[9,0,37],[9,69,10],[10,0,39],[10,70,9],[11,0,39],[11,70,9],[12,0,43],[12,70,9],[13,0,43],[13,70,9],[14,0,42],[14,71,8],[15,0,44],[15,71,8],[16,0,46],[16,71,8],[17,0,31],[17,32,14],[17,50,2],[17,71,8],[18,0,27],[18,37,10],[18,50,2],[18,71,8],[19,0,27],[19,37,10],[19,67,1],[19,71,8],[20,0,26],[20,37,10],[20,67,3],[20,71,8],[21,0,27],[21,37,11],[21,66,13],[22,0,28],[22,39,8],[22,64,1],[22,66,13],[23,0,30],[23,44,2],[23,64,2],[23,67,12],[24,0,32],[24,65,14],[25,0,31],[25,65,14],[26,0,31],[26,66,13],[27,0,30],[27,66,13],[28,0,30],[28,66,13],[29,0,30],[29,67,2],[29,72,7],[30,0,29],[30,45,2],[30,69,10]],[[0,0,47],[0,55,24],[1,0,48],[1,56,23],[2,0,48],[2,63,16],[3,0,48],[3,65,14],[4,0,43],[4,66,13],[5,0,41],[5,67,12],[6,0,40],[6,67,12],[7,0,39],[7,68,11],[8,0,39],[8,69,10],[9,0,38],[9,69,10],[10,0,39],[10,70,9],[11,0,40],[11,70,9],[12,0,43],[12,71,8],[13,0,43],[13,71,8],[14,0,42],[14,71,8],[15,0,44],[15,71,8],[16,0,46],[16,71,8],[17,0,30],[17,32,14],[17,50,2],[17,71,8],[18,0,27],[18,37,10],[18,50,2],[18,71,8],[19,0,27],[19,37,10],[19,67,1],[19,71,8],[20,0,27],[20,37,10],[20,67,4],[20,72,7],[21,0,27],[21,38,10],[21,66,1],[21,68,1],[21,70,9],[22,0,28],[22,39,8],[22,64,1],[22,67,12],[23,0,30],[23,43,3],[23,64,2],[23,67,12],[24,0,32],[24,65,14],[25,0,31],[25,65,14],[26,0,31],[26,66,13],[27,0,30],[27,66,13],[28,0,30],[28,67,12],[29,0,30],[29,67,2],[29,73,6],[30,0,29],[30,45,2],[30,69,10]],[[0,0,48],[0,56,23],[1,0,48],[1,57,22],[2,0,49],[2,64,15],[3,0,48],[3,66,13],[4,0,43],[4,66,13],[5,0,41],[5,67,12],[6,0,39],[6,68,11],[7,0,39],[7,68,11],[8,0,39],[8,69,10],[9,0,38],[9,70,9],[10,0,38],[10,70,9],[11,0,40],[11,71,8],[12,0,43],[12,71,8],[13,0,43],[13,71,8],[14,0,42],[14,71,8],[15,0,44],[15,71,8],[16,0,46],[16,71,8],[17,0,32],[17,36,10],[17,50,2],[17,71,8],[18,0,27],[18,38,8],[18,50,2],[18,67,1],[18,71,8],[19,0,27],[19,38,9],[19,67,2],[19,72,7],[20,0,27],[20,38,9],[20,67,2],[20,70,1],[20,72,7],[21,0,27],[21,38,10],[21,68,11],[22,0,28],[22,40,7],[22,64,2],[22,67,12],[23,0,31],[23,43,3],[23,64,2],[23,67,12],[24,0,33],[24,65,14],[25,0,32],[25,66,13],[26,0,31],[26,66,13],[27,0,30],[27,67,12],[28,0,30],[28,67,12],[29,0,30],[29,45,2],[29,67,2],[29,73,6],[30,0,30],[30,45,2],[30,69,10]],[[0,0,48],[0,56,23],[1,0,48],[1,57,22],[2,0,49],[2,63,16],[3,0,46],[3,65,14],[4,0,43],[4,67,12],[5,0,41],[5,67,12],[6,0,39],[6,68,11],[7,0,39],[7,69,10],[8,0,38],[8,69,10],[9,0,38],[9,70,9],[10,0,38],[10,70,9],[11,0,40],[11,71,8],[12,0,43],[12,71,8],[13,0,43],[13,71,8],[14,0,42],[14,71,8],[15,0,44],[15,72,7],[16,0,46],[16,72,7],[17,0,31],[17,37,9],[17,50,2],[17,72,7],[18,0,28],[18,38,9],[18,50,2],[18,67,2],[18,72,7],[19,0,27],[19,38,9],[19,67,2],[19,72,7],[20,0,27],[20,38,9],[20,68,1],[20,70,1],[20,72,7],[21,0,28],[21,39,9],[21,67,12],[22,0,29],[22,40,7],[22,64,1],[22,67,12],[23,0,31],[23,32,1],[23,43,3],[23,65,2],[23,68,11],[24,0,33],[24,65,14],[25,0,32],[25,66,13],[26,0,31],[26,66,13],[27,0,31],[27,67,12],[28,0,30],[28,67,12],[29,0,30],[29,67,3],[29,73,6],[30,0,30],[30,45,2],[30,70,9]],[[0,0,48],[0,57,22],[1,0,48],[1,58,21],[2,0,49],[2,65,14],[3,0,46],[3,66,13],[4,0,43],[4,67,12],[5,0,41],[5,68,11],[6,0,39],[6,68,11],[7,0,39],[7,69,10],[8,0,38],[8,70,9],[9,0,38],[9,70,9],[10,0,38],[10,71,8],[11,0,40],[11,71,8],[12,0,43],[12,71,8],[13,0,43],[13,72,7],[14,0,42],[14,72,7],[15,0,44],[15,72,7],[16,0,46],[16,72,7],[17,0,31],[17,38,9],[17,50,2],[17,72,7],[18,0,28],[18,38,9],[18,50,2],[18,72,7],[19,0,27],[19,38,9],[19,68,1],[19,72,7],[20,0,28],[20,38,10],[20,68,3],[20,72,7],[21,0,28],[21,39,9],[21,67,3],[21,71,8],[22,0,29],[22,41,7],[22,67,12],[23,0,32],[23,43,3],[23,65,2],[23,68,11],[24,0,33],[24,65,14],[25,0,32],[25,66,13],[26,0,31],[26,66,13],[27,0,31],[27,67,12],[28,0,31],[28,67,12],[29,0,31],[29,45,2],[29,68,2],[29,73,6],[30,0,30],[30,43,1],[30,45,2],[30,70,9]],[[0,0,48],[0,57,22],[1,0,49],[1,58,21],[2,0,50],[2,65,14],[3,0,46],[3,66,13],[4,0,42],[4,67,12],[5,0,41],[5,68,11],[6,0,39],[6,69,10],[7,0,39],[7,69,10],[8,0,38],[8,70,9],[9,0,38],[9,71,8],[10,0,38],[10,71,8],[11,0,40],[11,71,8],[12,0,43],[12,72,7],[13,0,43],[13,72,7],[14,0,42],[14,72,7],[15,0,44],[15,72,7],[16,0,46],[16,72,7],[17,0,31],[17,38,9],[17,50,2],[17,72,7],[18,0,28],[18,39,7],[18,50,2],[18,72,7],[19,0,28],[19,39,8],[19,68,1],[19,72,7],[20,0,28],[20,39,9],[20,68,4],[20,73,6],[21,0,28],[21,40,8],[21,68,2],[21,71,8],[22,0,30],[22,41,7],[22,68,11],[23,0,32],[23,43,3],[23,65,2],[23,68,11],[24,0,33],[24,65,14],[25,0,32],[25,66,13],[26,0,31],[26,67,12],[27,0,31],[27,67,12],[28,0,31],[28,67,12],[29,0,31],[29,68,3],[29,74,5],[30,0,30],[30,43,2],[30,71,8]],[[0,0,48],[0,58,21],[1,0,49],[1,58,21],[2,0,49],[2,65,14],[3,0,45],[3,66,13],[4,0,42],[4,68,11],[5,0,41],[5,68,11],[6,0,39],[6,69,10],[7,0,39],[7,70,9],[8,0,38],[8,70,9],[9,0,38],[9,71,8],[10,0,38],[10,71,8],[11,0,40],[11,72,7],[12,0,43],[12,72,7],[13,0,43],[13,72,7],[14,0,42],[14,72,7],[15,0,44],[15,72,7],[16,0,46],[16,72,7],[17,0,30],[17,39,8],[17,50,2],[17,73,6],[18,0,28],[18,39,8],[18,50,2],[18,73,6],[19,0,28],[19,39,8],[19,68,1],[19,73,6],[20,0,28],[20,39,9],[20,68,2],[20,71,1],[20,73,6],[21,0,29],[21,40,8],[21,69,10],[22,0,30],[22,42,6],[22,65,1],[22,68,11],[23,0,33],[23,43,3],[23,65,2],[23,68,11],[24,0,33],[24,66,13],[25,0,32],[25,66,13],[26,0,32],[26,67,12],[27,0,31],[27,67,12],[28,0,31],[28,68,11],[29,0,31],[29,68,3],[29,74,5],[30,0,31],[30,43,2],[30,71,8]],[[0,0,49],[0,58,21],[1,0,49],[1,59,20],[2,0,50],[2,65,14],[3,0,45],[3,67,12],[4,0,42],[4,68,11],[5,0,40],[5,68,11],[6,0,39],[6,69,10],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,72,7],[13,0,43],[13,72,7],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,34,12],[16,73,6],[17,0,30],[17,39,8],[17,50,1],[17,73,6],[18,0,28],[18,40,6],[18,50,2],[18,68,1],[18,73,6],[19,0,28],[19,40,7],[19,68,1],[19,73,6],[20,0,28],[20,39,9],[20,68,2],[20,71,1],[20,73,6],[21,0,29],[21,41,7],[21,69,10],[22,0,30],[22,42,6],[22,65,1],[22,68,11],[23,0,34],[23,44,2],[23,65,2],[23,68,11],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,66,13],[26,0,32],[26,67,12],[27,0,31],[27,67,12],[28,0,31],[28,68,11],[29,0,31],[29,68,4],[29,74,5],[30,0,31],[30,43,2],[30,72,7]],[[0,0,49],[0,58,21],[1,0,49],[1,59,20],[2,0,50],[2,65,14],[3,0,45],[3,67,12],[4,0,42],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,72,7],[13,0,43],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,34,12],[16,73,6],[17,0,30],[17,39,8],[17,50,2],[17,73,6],[18,0,29],[18,40,6],[18,50,2],[18,68,2],[18,73,6],[19,0,28],[19,40,7],[19,68,1],[19,73,6],[20,0,29],[20,40,8],[20,69,1],[20,71,1],[20,73,6],[21,0,29],[21,41,7],[21,69,4],[21,74,5],[22,0,31],[22,42,6],[22,65,1],[22,68,11],[23,0,34],[23,44,3],[23,65,2],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,66,13],[26,0,32],[26,67,12],[27,0,32],[27,67,12],[28,0,32],[28,68,11],[29,0,31],[29,68,4],[29,74,5],[30,0,31],[30,43,2],[30,72,7]],[[0,0,49],[0,59,20],[1,0,50],[1,59,20],[2,0,50],[2,66,13],[3,0,45],[3,67,12],[4,0,42],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,38],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,73,6],[13,0,43],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,38],[16,39,6],[16,73,6],[17,0,29],[17,40,7],[17,73,6],[18,0,29],[18,40,6],[18,73,6],[19,0,29],[19,40,7],[19,73,6],[20,0,29],[20,40,8],[20,69,1],[20,71,1],[20,74,5],[21,0,30],[21,42,6],[21,69,4],[21,74,5],[22,0,31],[22,43,5],[22,65,1],[22,69,10],[23,0,34],[23,44,3],[23,65,2],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,68,5],[29,74,5],[30,0,31],[30,43,2],[30,73,6]],[[0,0,49],[0,59,20],[1,0,50],[1,60,19],[2,0,50],[2,67,12],[3,0,45],[3,67,12],[4,0,42],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,38],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,73,6],[13,0,43],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,35,10],[16,73,6],[17,0,30],[17,40,7],[17,73,6],[18,0,29],[18,41,6],[18,73,6],[19,0,29],[19,40,7],[19,69,1],[19,74,5],[20,0,29],[20,40,8],[20,69,1],[20,71,1],[20,74,5],[21,0,30],[21,42,6],[21,69,2],[21,72,1],[21,74,5],[22,0,32],[22,43,5],[22,69,10],[23,0,34],[23,45,2],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,68,5],[29,75,4],[30,0,31],[30,43,2],[30,69,1],[30,73,6]],[[0,0,49],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,43],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,39,6],[16,73,6],[17,0,30],[17,41,6],[17,73,6],[18,0,29],[18,41,6],[18,74,5],[19,0,29],[19,41,6],[19,69,1],[19,74,5],[20,0,30],[20,41,7],[20,69,1],[20,71,1],[20,74,5],[21,0,30],[21,42,6],[21,69,2],[21,72,1],[21,74,5],[22,0,32],[22,43,5],[22,69,10],[23,0,34],[23,45,2],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,68,5],[29,75,4],[30,0,32],[30,43,2],[30,69,2],[30,73,6]],[[0,0,49],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,34],[16,40,5],[16,73,6],[17,0,30],[17,41,6],[17,74,5],[18,0,29],[18,41,6],[18,74,5],[19,0,29],[19,41,6],[19,69,1],[19,74,5],[20,0,30],[20,41,7],[20,69,2],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,32],[22,44,4],[22,70,9],[23,0,34],[23,45,1],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,44,1],[29,69,5],[29,75,4],[30,0,32],[30,42,3],[30,69,2],[30,74,5]],[[0,0,50],[0,60,19],[1,0,50],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,34],[16,40,5],[16,74,5],[17,0,30],[17,41,6],[17,74,5],[18,0,29],[18,41,6],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,30],[20,41,7],[20,69,2],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,33],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,33],[28,68,11],[29,0,32],[29,43,2],[29,69,5],[29,75,4],[30,0,32],[30,42,3],[30,69,2],[30,74,5]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,74,5],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,41,6],[17,74,5],[18,0,30],[18,41,6],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,30],[20,42,6],[20,69,2],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,33],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,33],[28,68,11],[29,0,33],[29,43,2],[29,68,6],[29,75,4],[30,0,32],[30,42,3],[30,69,2],[30,75,4]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,37],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,74,5],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,41,6],[17,74,5],[18,0,30],[18,42,5],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,30],[20,42,6],[20,69,2],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,33],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,33],[28,68,11],[29,0,32],[29,43,2],[29,68,6],[29,75,4],[30,0,32],[30,42,3],[30,69,1],[30,75,4]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,37],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,5],[17,74,5],[18,0,30],[18,42,5],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,33],[28,68,11],[29,0,32],[29,43,2],[29,68,6],[29,75,4],[30,0,32],[30,42,3],[30,69,1],[30,74,5]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,38],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,5],[17,74,5],[18,0,30],[18,42,5],[18,74,5],[19,0,30],[19,42,5],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,44,4],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,33],[28,68,11],[29,0,32],[29,43,2],[29,68,6],[29,75,4],[30,0,32],[30,42,3],[30,69,1],[30,74,5]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,5],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,42,5],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,44,4],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,45,3],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,67,12],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,43,2],[29,68,5],[29,75,4],[30,0,32],[30,42,3],[30,69,1],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,38],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,41],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,4],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,42,5],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,44,4],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,1],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,61,18],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,43],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,4],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,44,4],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,1],[30,74,5]],[[0,0,50],[0,60,19],[1,0,51],[1,61,18],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,74,5],[17,0,30],[17,42,4],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,69,1],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,44,4],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,1],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,61,18],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,42],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,73,6],[17,0,30],[17,42,4],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,67,12],[28,0,32],[28,44,1],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,1],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,67,12],[3,0,44],[3,68,11],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,71,8],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,73,6],[17,0,30],[17,42,4],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,34],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,67,12],[4,0,42],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,73,6],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,33],[16,41,4],[16,73,6],[17,0,30],[17,41,5],[17,74,5],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,31],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,70,9],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,69,10],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,32],[16,41,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,69,10],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,68,11],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,39],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,32],[16,41,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,30],[18,42,4],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,69,10],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,33],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,3],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,60,19],[1,0,51],[1,60,19],[2,0,51],[2,65,14],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,39],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,38],[10,72,7],[11,0,40],[11,72,7],[12,0,43],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,32],[16,41,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,30],[18,41,5],[18,74,5],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,71,1],[20,74,5],[21,0,32],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,69,10],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,65,14],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,70,9],[7,0,38],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,72,7],[10,0,38],[10,72,7],[11,0,41],[11,72,7],[12,0,43],[12,73,6],[13,0,41],[13,73,6],[14,0,42],[14,73,6],[15,0,44],[15,73,6],[16,0,32],[16,41,3],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,30],[18,41,5],[18,73,6],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,69,10],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,65,14],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,38],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,41],[11,72,7],[12,0,42],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,43],[15,73,6],[16,0,32],[16,41,3],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,34],[22,44,4],[22,69,10],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,50],[0,59,20],[1,0,50],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,38],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,41],[11,72,7],[12,0,42],[12,73,6],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,41,3],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,30],[19,41,6],[19,74,5],[20,0,30],[20,42,5],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,33],[22,44,4],[22,69,2],[22,72,7],[23,0,35],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,41,3],[30,69,2],[30,73,6]],[[0,0,49],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,38],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,41],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,40,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,30],[19,41,6],[19,73,6],[20,0,30],[20,42,5],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,2],[21,72,1],[21,74,5],[22,0,33],[22,44,4],[22,65,1],[22,69,2],[22,72,7],[23,0,34],[23,65,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,40,4],[30,69,2],[30,73,6]],[[0,0,49],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,38],[7,70,9],[8,0,38],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,73,6],[14,0,42],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,40,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,29],[19,41,6],[19,73,6],[20,0,30],[20,41,6],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,4],[21,74,5],[22,0,33],[22,44,4],[22,69,2],[22,72,7],[23,0,34],[23,66,1],[23,69,10],[24,0,34],[24,66,2],[24,69,10],[25,0,33],[25,66,13],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,2],[29,68,5],[29,75,4],[30,0,32],[30,40,4],[30,45,2],[30,69,2],[30,73,6]],[[0,0,49],[0,59,20],[1,0,51],[1,60,19],[2,0,51],[2,65,14],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,69,10],[6,0,39],[6,69,10],[7,0,38],[7,70,9],[8,0,37],[8,71,8],[9,0,38],[9,71,8],[10,0,38],[10,72,7],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,73,6],[14,0,41],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,40,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,29],[19,41,6],[19,73,6],[20,0,30],[20,41,6],[20,69,1],[20,71,1],[20,74,5],[21,0,31],[21,43,5],[21,69,4],[21,74,5],[22,0,33],[22,44,4],[22,69,2],[22,72,7],[23,0,34],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,33],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,6],[29,75,4],[30,0,32],[30,40,4],[30,45,2],[30,69,2],[30,74,5]],[[0,0,49],[0,59,20],[1,0,50],[1,60,19],[2,0,50],[2,65,14],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,40],[5,68,11],[6,0,38],[6,69,10],[7,0,38],[7,70,9],[8,0,37],[8,71,8],[9,0,37],[9,71,8],[10,0,38],[10,72,7],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,73,6],[14,0,41],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,40,4],[16,73,6],[17,0,30],[17,41,5],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,29],[19,41,6],[19,73,6],[20,0,30],[20,41,6],[20,69,1],[20,71,1],[20,74,5],[21,0,30],[21,42,5],[21,69,4],[21,74,5],[22,0,32],[22,44,4],[22,69,2],[22,72,7],[23,0,34],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,6],[29,75,4],[30,0,32],[30,40,4],[30,45,2],[30,69,2],[30,75,4]],[[0,0,49],[0,59,20],[1,0,50],[1,59,20],[2,0,50],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,39],[5,68,11],[6,0,38],[6,69,10],[7,0,38],[7,70,9],[8,0,37],[8,71,8],[9,0,37],[9,71,8],[10,0,37],[10,72,7],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,73,6],[14,0,41],[14,73,6],[15,0,43],[15,73,6],[16,0,33],[16,39,5],[16,73,6],[17,0,29],[17,40,6],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,29],[19,41,6],[19,73,6],[20,0,29],[20,41,6],[20,69,1],[20,71,1],[20,73,6],[21,0,30],[21,42,5],[21,69,4],[21,74,5],[22,0,32],[22,43,5],[22,69,2],[22,72,7],[23,0,34],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,6],[29,75,4],[30,0,31],[30,40,4],[30,45,2],[30,69,2],[30,75,4]],[[0,0,48],[0,58,21],[1,0,49],[1,59,20],[2,0,50],[2,66,13],[3,0,44],[3,67,12],[4,0,41],[4,68,11],[5,0,39],[5,68,11],[6,0,38],[6,69,10],[7,0,38],[7,70,9],[8,0,37],[8,70,9],[9,0,37],[9,71,8],[10,0,37],[10,72,7],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,72,7],[14,0,41],[14,73,6],[15,0,43],[15,73,6],[16,0,35],[16,39,5],[16,73,6],[17,0,29],[17,40,6],[17,73,6],[18,0,29],[18,41,5],[18,73,6],[19,0,29],[19,40,6],[19,73,6],[20,0,29],[20,40,7],[20,68,2],[20,71,1],[20,73,6],[21,0,30],[21,42,5],[21,69,4],[21,74,5],[22,0,32],[22,43,5],[22,69,2],[22,72,7],[23,0,34],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,33],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,43,2],[28,68,11],[29,0,32],[29,42,2],[29,68,6],[29,76,3],[30,0,31],[30,40,4],[30,45,2],[30,69,2],[30,75,4]],[[0,0,48],[0,58,21],[1,0,50],[1,59,20],[2,0,50],[2,66,13],[3,0,44],[3,66,13],[4,0,41],[4,67,12],[5,0,39],[5,68,11],[6,0,38],[6,69,10],[7,0,38],[7,70,9],[8,0,37],[8,70,9],[9,0,37],[9,71,8],[10,0,37],[10,71,8],[11,0,39],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,72,7],[14,0,41],[14,73,6],[15,0,42],[15,73,6],[16,0,38],[16,39,5],[16,73,6],[17,0,30],[17,40,5],[17,73,6],[18,0,29],[18,40,6],[18,68,1],[18,73,6],[19,0,28],[19,40,6],[19,68,1],[19,73,6],[20,0,29],[20,40,7],[20,68,2],[20,71,1],[20,73,6],[21,0,30],[21,42,5],[21,69,4],[21,74,5],[22,0,31],[22,43,4],[22,69,10],[23,0,34],[23,44,2],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,32],[29,42,2],[29,69,5],[29,76,3],[30,0,31],[30,40,4],[30,69,2],[30,75,4]],[[0,0,48],[0,58,21],[1,0,49],[1,59,20],[2,0,49],[2,65,14],[3,0,44],[3,66,13],[4,0,41],[4,67,12],[5,0,39],[5,68,11],[6,0,38],[6,69,10],[7,0,37],[7,70,9],[8,0,37],[8,70,9],[9,0,37],[9,71,8],[10,0,37],[10,71,8],[11,0,38],[11,72,7],[12,0,42],[12,72,7],[13,0,42],[13,72,7],[14,0,41],[14,72,7],[15,0,42],[15,73,6],[16,0,33],[16,34,10],[16,73,6],[17,0,30],[17,40,5],[17,73,6],[18,0,29],[18,40,6],[18,68,1],[18,73,6],[19,0,28],[19,40,6],[19,68,1],[19,73,6],[20,0,29],[20,40,7],[20,68,2],[20,71,1],[20,73,6],[21,0,29],[21,42,5],[21,69,4],[21,74,5],[22,0,31],[22,43,4],[22,68,11],[23,0,34],[23,44,2],[23,66,1],[23,69,10],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,32],[28,68,11],[29,0,31],[29,42,2],[29,69,5],[29,76,3],[30,0,31],[30,40,4],[30,70,1],[30,75,4]],[[0,0,47],[0,57,22],[1,0,49],[1,58,21],[2,0,49],[2,65,14],[3,0,44],[3,66,13],[4,0,41],[4,67,12],[5,0,39],[5,68,11],[6,0,38],[6,69,10],[7,0,37],[7,69,10],[8,0,37],[8,70,9],[9,0,36],[9,71,8],[10,0,37],[10,71,8],[11,0,38],[11,72,7],[12,0,41],[12,72,7],[13,0,42],[13,72,7],[14,0,40],[14,72,7],[15,0,42],[15,73,6],[16,0,33],[16,34,10],[16,73,6],[17,0,30],[17,39,6],[17,73,6],[18,0,28],[18,40,6],[18,73,6],[19,0,28],[19,40,6],[19,68,1],[19,73,6],[20,0,29],[20,40,7],[20,68,2],[20,73,6],[21,0,29],[21,41,6],[21,69,4],[21,74,5],[22,0,30],[22,42,5],[22,68,11],[23,0,33],[23,44,2],[23,66,1],[23,68,11],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,67,12],[26,0,32],[26,67,12],[27,0,32],[27,68,11],[28,0,31],[28,68,11],[29,0,31],[29,42,2],[29,69,5],[29,76,3],[30,0,31],[30,40,4],[30,70,1],[30,75,4]],[[0,0,47],[0,57,22],[1,0,48],[1,58,21],[2,0,48],[2,65,14],[3,0,43],[3,66,13],[4,0,40],[4,67,12],[5,0,39],[5,67,12],[6,0,38],[6,68,11],[7,0,37],[7,69,10],[8,0,37],[8,70,9],[9,0,36],[9,70,9],[10,0,37],[10,71,8],[11,0,37],[11,71,8],[12,0,42],[12,72,7],[13,0,42],[13,72,7],[14,0,40],[14,72,7],[15,0,42],[15,72,7],[16,0,33],[16,34,10],[16,72,7],[17,0,30],[17,39,6],[17,73,6],[18,0,28],[18,40,6],[18,73,6],[19,0,28],[19,40,5],[19,68,1],[19,73,6],[20,0,28],[20,40,7],[20,68,2],[20,73,6],[21,0,29],[21,41,6],[21,68,11],[22,0,30],[22,42,5],[22,68,3],[22,72,7],[23,0,33],[23,44,2],[23,66,1],[23,68,11],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,67,12],[26,0,32],[26,67,12],[27,0,31],[27,68,11],[28,0,31],[28,68,11],[29,0,31],[29,42,2],[29,69,5],[29,76,3],[30,0,31],[30,40,4],[30,70,1],[30,75,4]],[[0,0,46],[0,56,23],[1,0,48],[1,57,22],[2,0,48],[2,64,15],[3,0,43],[3,65,14],[4,0,40],[4,66,13],[5,0,38],[5,67,12],[6,0,37],[6,68,11],[7,0,37],[7,69,10],[8,0,36],[8,70,9],[9,0,36],[9,70,9],[10,0,36],[10,71,8],[11,0,36],[11,71,8],[12,0,40],[12,71,8],[13,0,42],[13,72,7],[14,0,40],[14,72,7],[15,0,42],[15,72,7],[16,0,36],[16,37,7],[16,72,7],[17,0,30],[17,39,6],[17,72,7],[18,0,28],[18,39,6],[18,49,2],[18,73,6],[19,0,28],[19,40,6],[19,68,1],[19,73,6],[20,0,28],[20,39,7],[20,68,2],[20,73,6],[21,0,28],[21,41,6],[21,68,2],[21,71,8],[22,0,30],[22,42,5],[22,68,11],[23,0,33],[23,43,2],[23,66,1],[23,68,11],[24,0,33],[24,66,2],[24,69,10],[25,0,32],[25,67,12],[26,0,31],[26,67,12],[27,0,31],[27,68,11],[28,0,31],[28,68,11],[29,0,31],[29,42,2],[29,69,5],[29,76,3],[30,0,30],[30,40,4],[30,70,1],[30,75,4]],[[0,0,46],[0,56,23],[1,0,46],[1,57,22],[2,0,47],[2,63,16],[3,0,43],[3,65,14],[4,0,40],[4,66,13],[5,0,38],[5,67,12],[6,0,37],[6,68,11],[7,0,36],[7,69,10],[8,0,36],[8,69,10],[9,0,36],[9,70,9],[10,0,36],[10,70,9],[11,0,37],[11,71,8],[12,0,40],[12,71,8],[13,0,41],[13,72,7],[14,0,40],[14,72,7],[15,0,42],[15,72,7],[16,0,36],[16,37,6],[16,72,7],[17,0,30],[17,39,6],[17,72,7],[18,0,28],[18,39,6],[18,49,2],[18,72,7],[19,0,27],[19,39,7],[19,68,1],[19,73,6],[20,0,28],[20,39,7],[20,68,1],[20,70,1],[20,73,6],[21,0,28],[21,40,7],[21,68,2],[21,71,8],[22,0,30],[22,42,5],[22,68,11],[23,0,32],[23,43,2],[23,65,2],[23,68,11],[24,0,33],[24,66,13],[25,0,32],[25,66,13],[26,0,31],[26,67,12],[27,0,31],[27,67,12],[28,0,31],[28,68,11],[29,0,31],[29,42,2],[29,68,6],[29,75,4],[30,0,30],[30,40,4],[30,69,2],[30,75,4]],[[0,0,45],[0,55,24],[1,0,46],[1,56,23],[2,0,47],[2,64,15],[3,0,43],[3,65,14],[4,0,40],[4,66,13],[5,0,38],[5,66,13],[6,0,37],[6,67,12],[7,0,36],[7,68,11],[8,0,36],[8,69,10],[9,0,36],[9,70,9],[10,0,36],[10,70,9],[11,0,36],[11,71,8],[12,0,38],[12,71,8],[13,0,41],[13,71,8],[14,0,40],[14,71,8],[15,0,41],[15,72,7],[16,0,32],[16,33,10],[16,72,7],[17,0,30],[17,38,6],[17,72,7],[18,0,28],[18,39,6],[18,49,2],[18,72,7],[19,0,27],[19,39,7],[19,67,1],[19,72,7],[20,0,28],[20,39,7],[20,68,1],[20,70,1],[20,73,6],[21,0,28],[21,40,6],[21,68,2],[21,71,1],[21,73,6],[22,0,29],[22,41,6],[22,68,11],[23,0,31],[23,43,2],[23,65,2],[23,68,11],[24,0,32],[24,65,2],[24,68,11],[25,0,32],[25,66,13],[26,0,31],[26,67,12],[27,0,31],[27,67,12],[28,0,31],[28,68,11],[29,0,31],[29,42,2],[29,68,6],[29,75,4],[30,0,30],[30,40,4],[30,69,2],[30,74,5]],[[0,0,44],[0,55,24],[1,0,45],[1,56,23],[2,0,46],[2,63,16],[3,0,43],[3,64,15],[4,0,40],[4,65,14],[5,0,38],[5,66,13],[6,0,37],[6,67,12],[7,0,36],[7,68,11],[8,0,35],[8,69,10],[9,0,35],[9,69,10],[10,0,35],[10,70,9],[11,0,35],[11,70,9],[12,0,38],[12,71,8],[13,0,41],[13,71,8],[14,0,40],[14,71,8],[15,0,41],[15,71,8],[16,0,42],[16,71,8],[17,0,30],[17,38,6],[17,72,7],[18,0,27],[18,39,6],[18,49,2],[18,72,7],[19,0,27],[19,39,6],[19,67,1],[19,72,7],[20,0,27],[20,39,7],[20,67,2],[20,70,1],[20,72,7],[21,0,28],[21,40,6],[21,68,4],[21,73,6],[22,0,29],[22,41,6],[22,67,12],[23,0,31],[23,43,2],[23,65,1],[23,68,11],[24,0,32],[24,65,2],[24,68,11],[25,0,31],[25,66,13],[26,0,31],[26,66,13],[27,0,31],[27,67,12],[28,0,30],[28,67,12],[29,0,30],[29,41,2],[29,68,6],[29,75,4],[30,0,30],[30,40,3],[30,69,2],[30,74,5]],[[0,0,43],[0,54,25],[1,0,44],[1,55,24],[2,0,46],[2,63,16],[3,0,43],[3,64,15],[4,0,39],[4,65,14],[5,0,37],[5,66,13],[6,0,36],[6,67,12],[7,0,35],[7,67,12],[8,0,35],[8,68,11],[9,0,35],[9,69,10],[10,0,35],[10,69,10],[11,0,35],[11,70,9],[12,0,37],[12,39,1],[12,70,9],[13,0,41],[13,71,8],[14,0,40],[14,71,8],[15,0,40],[15,71,8],[16,0,42],[16,71,8],[17,0,30],[17,38,6],[17,48,1],[17,71,8],[18,0,27],[18,38,7],[18,48,2],[18,71,8],[19,0,27],[19,39,6],[19,48,2],[19,67,1],[19,72,7],[20,0,27],[20,38,7],[20,67,2],[20,72,7],[21,0,27],[21,39,7],[21,68,11],[22,0,28],[22,41,5],[22,67,12],[23,0,30],[23,42,3],[23,65,1],[23,67,12],[24,0,32],[24,65,2],[24,68,11],[25,0,31],[25,66,13],[26,0,31],[26,66,13],[27,0,30],[27,67,12],[28,0,30],[28,67,12],[29,0,30],[29,41,2],[29,68,5],[29,75,4],[30,0,30],[30,40,3],[30,69,2],[30,73,1],[30,75,4]],[[0,0,43],[0,53,26],[1,0,43],[1,54,25],[2,0,45],[2,63,16],[3,0,42],[3,64,15],[4,0,39],[4,65,14],[5,0,37],[5,65,14],[6,0,36],[6,66,13],[7,0,35],[7,67,12],[8,0,35],[8,68,11],[9,0,34],[9,68,11],[10,0,35],[10,69,10],[11,0,35],[11,69,10],[12,0,37],[12,70,9],[13,0,40],[13,70,9],[14,0,40],[14,70,9],[15,0,40],[15,71,8],[16,0,42],[16,71,8],[17,0,30],[17,37,7],[17,48,1],[17,71,8],[18,0,27],[18,38,6],[18,48,2],[18,71,8],[19,0,26],[19,38,6],[19,48,2],[19,67,1],[19,71,8],[20,0,27],[20,38,7],[20,67,3],[20,72,7],[21,0,27],[21,39,7],[21,66,3],[21,70,9],[22,0,28],[22,40,6],[22,66,13],[23,0,30],[23,42,4],[23,64,2],[23,67,12],[24,0,32],[24,65,14],[25,0,31],[25,65,14],[26,0,30],[26,66,13],[27,0,30],[27,66,13],[28,0,30],[28,67,12],[29,0,30],[29,67,6],[29,75,4],[30,0,30],[30,41,2],[30,68,3],[30,74,5]],[[0,0,42],[0,53,26],[1,0,43],[1,54,2],[1,58,21],[2,0,44],[2,62,17],[3,0,43],[3,64,15],[4,0,39],[4,64,15],[5,0,37],[5,65,14],[6,0,36],[6,66,13],[7,0,35],[7,67,12],[8,0,35],[8,67,12],[9,0,34],[9,68,11],[10,0,35],[10,69,10],[11,0,35],[11,69,10],[12,0,36],[12,69,10],[13,0,40],[13,70,9],[14,0,40],[14,70,9],[15,0,39],[15,70,9],[16,0,41],[16,70,9],[17,0,30],[17,37,6],[17,70,9],[18,0,27],[18,38,6],[18,48,2],[18,71,8],[19,0,26],[19,38,6],[19,48,2],[19,66,1],[19,71,8],[20,0,26],[20,38,7],[20,67,1],[20,69,1],[20,71,8],[21,0,27],[21,38,7],[21,67,4],[21,72,7],[22,0,28],[22,40,6],[22,66,13],[23,0,29],[23,42,4],[23,64,1],[23,66,13],[24,0,32],[24,65,1],[24,67,12],[25,0,31],[25,65,14],[26,0,30],[26,66,13],[27,0,30],[27,66,13],[28,0,30],[28,67,12],[29,0,30],[29,67,6],[29,74,5],[30,0,30],[30,41,2],[30,68,2],[30,74,5]],[[0,0,41],[0,52,27],[1,0,42],[1,53,3],[1,58,21],[2,0,43],[2,61,18],[3,0,43],[3,63,16],[4,0,39],[4,64,15],[5,0,37],[5,65,14],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,34],[8,67,12],[9,0,34],[9,68,11],[10,0,34],[10,68,11],[11,0,34],[11,69,10],[12,0,36],[12,69,10],[13,0,40],[13,69,10],[14,0,40],[14,69,10],[15,0,39],[15,70,9],[16,0,41],[16,70,9],[17,0,30],[17,36,7],[17,47,1],[17,70,9],[18,0,27],[18,37,7],[18,47,3],[18,70,9],[19,0,26],[19,38,6],[19,47,3],[19,66,1],[19,70,9],[20,0,26],[20,38,7],[20,65,3],[20,71,8],[21,0,26],[21,38,7],[21,65,14],[22,0,27],[22,39,6],[22,66,13],[23,0,29],[23,41,5],[23,64,1],[23,66,13],[24,0,32],[24,64,2],[24,67,12],[25,0,31],[25,65,14],[26,0,30],[26,65,14],[27,0,30],[27,66,13],[28,0,30],[28,66,13],[29,0,30],[29,67,6],[29,74,5],[30,0,29],[30,41,2],[30,67,3],[30,74,5]],[[0,0,41],[0,51,28],[1,0,41],[1,53,2],[1,58,21],[2,0,43],[2,61,18],[3,0,43],[3,63,16],[4,0,39],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,34],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,34],[11,68,11],[12,0,36],[12,69,10],[13,0,40],[13,69,10],[14,0,40],[14,69,10],[15,0,40],[15,69,10],[16,0,41],[16,69,10],[17,0,30],[17,31,12],[17,47,2],[17,69,10],[18,0,27],[18,37,6],[18,47,3],[18,70,9],[19,0,26],[19,37,6],[19,47,3],[19,66,1],[19,70,9],[20,0,25],[20,37,7],[20,46,2],[20,66,3],[20,70,9],[21,0,26],[21,37,8],[21,46,2],[21,65,14],[22,0,26],[22,39,6],[22,65,14],[23,0,28],[23,41,4],[23,66,13],[24,0,31],[24,64,1],[24,67,12],[25,0,31],[25,65,14],[26,0,30],[26,65,14],[27,0,30],[27,66,13],[28,0,29],[28,66,13],[29,0,29],[29,67,12],[30,0,29],[30,67,3],[30,73,6]],[[0,0,40],[0,51,28],[1,0,41],[1,52,3],[1,59,20],[2,0,43],[2,62,17],[3,0,43],[3,63,16],[4,0,39],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,34],[11,68,11],[12,0,36],[12,68,11],[13,0,40],[13,68,11],[14,0,40],[14,69,10],[15,0,40],[15,69,10],[16,0,42],[16,69,10],[17,0,43],[17,47,2],[17,69,10],[18,0,27],[18,36,7],[18,46,4],[18,69,10],[19,0,25],[19,37,6],[19,46,3],[19,70,9],[20,0,25],[20,37,7],[20,46,2],[20,66,1],[20,68,1],[20,70,9],[21,0,25],[21,37,7],[21,46,2],[21,65,14],[22,0,26],[22,38,6],[22,45,1],[22,65,14],[23,0,27],[23,40,5],[23,65,14],[24,0,29],[24,43,2],[24,64,1],[24,67,12],[25,0,31],[25,64,15],[26,0,30],[26,65,14],[27,0,30],[27,66,13],[28,0,29],[28,66,13],[29,0,29],[29,66,13],[30,0,29],[30,67,3],[30,73,6]],[[0,0,40],[0,51,28],[1,0,40],[1,52,2],[1,59,20],[2,0,42],[2,61,18],[3,0,43],[3,64,15],[4,0,39],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,35],[11,68,11],[12,0,36],[12,68,11],[13,0,41],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,68,11],[17,0,43],[17,47,2],[17,69,10],[18,0,28],[18,35,8],[18,46,5],[18,69,10],[19,0,25],[19,36,7],[19,46,4],[19,69,10],[20,0,25],[20,36,7],[20,46,3],[20,64,1],[20,66,1],[20,70,9],[21,0,24],[21,36,8],[21,45,2],[21,64,15],[22,0,25],[22,37,7],[22,45,2],[22,65,14],[23,0,26],[23,40,4],[23,66,13],[24,0,28],[24,43,1],[24,64,2],[24,68,11],[25,0,31],[25,64,15],[26,0,30],[26,65,14],[27,0,30],[27,65,14],[28,0,29],[28,66,13],[29,0,29],[29,66,13],[30,0,29],[30,67,3],[30,72,7]],[[0,0,39],[0,50,29],[1,0,40],[1,52,2],[1,59,20],[2,0,42],[2,62,17],[3,0,42],[3,64,15],[4,0,39],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,35],[11,68,11],[12,0,36],[12,68,11],[13,0,41],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,68,11],[17,0,43],[17,48,1],[17,68,11],[18,0,28],[18,29,3],[18,33,10],[18,46,5],[18,68,11],[19,0,26],[19,35,7],[19,46,4],[19,69,10],[20,0,24],[20,35,7],[20,46,3],[20,64,2],[20,69,10],[21,0,24],[21,36,7],[21,45,3],[21,64,15],[22,0,24],[22,36,8],[22,45,2],[22,65,14],[23,0,25],[23,39,7],[23,66,13],[24,0,26],[24,44,2],[24,64,2],[24,68,11],[25,0,29],[25,64,15],[26,0,31],[26,65,14],[27,0,30],[27,65,14],[28,0,29],[28,66,13],[29,0,29],[29,66,13],[30,0,29],[30,66,4],[30,72,7]],[[0,0,38],[0,50,29],[1,0,39],[1,52,1],[1,59,20],[2,0,40],[2,62,17],[3,0,41],[3,63,16],[4,0,40],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,35],[11,68,11],[12,0,36],[12,68,11],[13,0,41],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,68,11],[17,0,43],[17,48,1],[17,68,11],[18,0,42],[18,46,5],[18,68,11],[19,0,27],[19,34,8],[19,46,5],[19,69,10],[20,0,24],[20,35,7],[20,46,3],[20,64,2],[20,69,10],[21,0,24],[21,35,8],[21,45,3],[21,64,15],[22,0,23],[22,35,8],[22,44,3],[22,65,14],[23,0,24],[23,37,6],[23,44,2],[23,66,13],[24,0,25],[24,40,2],[24,44,2],[24,65,1],[24,68,11],[25,0,27],[25,64,3],[25,68,11],[26,0,30],[26,65,14],[27,0,30],[27,65,14],[28,0,29],[28,65,14],[29,0,29],[29,66,13],[30,0,29],[30,66,13]],[[0,0,38],[0,49,7],[0,57,22],[1,0,38],[1,59,20],[2,0,40],[2,62,17],[3,0,41],[3,63,16],[4,0,40],[4,64,15],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,34],[11,68,11],[12,0,36],[12,68,11],[13,0,41],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,68,11],[17,0,43],[17,48,2],[17,68,11],[18,0,42],[18,46,5],[18,68,11],[19,0,29],[19,32,10],[19,46,5],[19,64,1],[19,68,11],[20,0,25],[20,34,8],[20,45,4],[20,64,2],[20,69,10],[21,0,23],[21,34,9],[21,45,3],[21,64,15],[22,0,23],[22,35,8],[22,44,3],[22,65,14],[23,0,23],[23,36,7],[23,44,2],[23,66,13],[24,0,24],[24,39,4],[24,44,1],[24,64,2],[24,67,12],[25,0,26],[25,40,2],[25,64,15],[26,0,31],[26,64,15],[27,0,30],[27,65,14],[28,0,30],[28,65,14],[29,0,29],[29,65,14],[30,0,29],[30,66,13]],[[0,0,37],[0,48,6],[0,57,22],[1,0,37],[1,59,20],[2,0,38],[2,62,17],[3,0,41],[3,63,16],[4,0,40],[4,63,16],[5,0,37],[5,64,15],[6,0,36],[6,65,14],[7,0,35],[7,66,13],[8,0,35],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,34],[11,68,11],[12,0,35],[12,68,11],[13,0,38],[13,40,1],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,68,11],[17,0,42],[17,48,2],[17,68,11],[18,0,42],[18,47,4],[18,68,11],[19,0,42],[19,46,5],[19,64,1],[19,68,11],[20,0,26],[20,33,9],[20,45,4],[20,64,2],[20,69,10],[21,0,23],[21,34,9],[21,45,3],[21,64,15],[22,0,23],[22,34,9],[22,45,2],[22,65,14],[23,0,23],[23,34,9],[23,44,2],[23,66,13],[24,0,23],[24,38,7],[24,64,2],[24,67,12],[25,0,24],[25,40,3],[25,64,15],[26,0,27],[26,41,2],[26,64,15],[27,0,31],[27,65,14],[28,0,30],[28,65,14],[29,0,29],[29,65,14],[30,0,29],[30,66,13]],[[0,0,36],[0,47,6],[0,57,22],[1,0,36],[1,59,20],[2,0,37],[2,62,17],[3,0,39],[3,63,16],[4,0,39],[4,63,16],[5,0,36],[5,64,15],[6,0,35],[6,65,14],[7,0,35],[7,66,13],[8,0,34],[8,67,12],[9,0,34],[9,67,12],[10,0,34],[10,68,11],[11,0,33],[11,68,11],[12,0,35],[12,68,11],[13,0,38],[13,68,11],[14,0,41],[14,68,11],[15,0,41],[15,68,11],[16,0,42],[16,67,12],[17,0,42],[17,48,2],[17,67,12],[18,0,42],[18,47,5],[18,68,11],[19,0,42],[19,47,4],[19,64,1],[19,68,11],[20,0,26],[20,32,10],[20,46,3],[20,64,15],[21,0,24],[21,33,10],[21,45,3],[21,64,15],[22,0,23],[22,34,9],[22,45,2],[22,65,14],[23,0,22],[23,34,9],[23,44,2],[23,66,13],[24,0,23],[24,35,10],[24,64,2],[24,67,12],[25,0,24],[25,39,4],[25,64,15],[26,0,25],[26,40,3],[26,64,15],[27,0,31],[27,64,15],[28,0,31],[28,65,14],[29,0,30],[29,65,14],[30,0,29],[30,65,14]],[[0,0,34],[0,46,6],[0,57,22],[1,0,35],[1,59,20],[2,0,36],[2,61,18],[3,0,39],[3,62,17],[4,0,39],[4,63,16],[5,0,37],[5,64,15],[6,0,35],[6,65,14],[7,0,34],[7,66,13],[8,0,34],[8,67,12],[9,0,33],[9,67,12],[10,0,33],[10,68,11],[11,0,33],[11,68,11],[12,0,34],[12,68,11],[13,0,39],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,67,12],[17,0,42],[17,48,2],[17,68,11],[18,0,42],[18,47,5],[18,62,1],[18,68,11],[19,0,42],[19,47,4],[19,62,1],[19,64,2],[19,68,11],[20,0,42],[20,46,3],[20,64,3],[20,68,11],[21,0,25],[21,32,11],[21,46,2],[21,64,15],[22,0,22],[22,33,10],[22,44,3],[22,65,14],[23,0,22],[23,33,10],[23,44,2],[23,64,15],[24,0,22],[24,34,11],[24,64,2],[24,68,11],[25,0,23],[25,37,6],[25,64,3],[25,68,11],[26,0,23],[26,39,4],[26,64,15],[27,0,25],[27,41,2],[27,64,15],[28,0,31],[28,65,14],[29,0,30],[29,65,14],[30,0,30],[30,65,14]],[[0,0,33],[0,45,2],[0,48,2],[0,57,22],[1,0,34],[1,59,20],[2,0,35],[2,61,18],[3,0,38],[3,62,17],[4,0,38],[4,63,16],[5,0,36],[5,64,15],[6,0,34],[6,65,14],[7,0,34],[7,66,13],[8,0,33],[8,67,12],[9,0,33],[9,67,12],[10,0,33],[10,68,11],[11,0,33],[11,68,11],[12,0,34],[12,68,11],[13,0,37],[13,68,11],[14,0,41],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,69,10],[17,0,42],[17,48,2],[17,68,11],[18,0,42],[18,48,4],[18,62,3],[18,68,11],[19,0,42],[19,48,3],[19,62,1],[19,64,2],[19,69,10],[20,0,42],[20,46,3],[20,64,4],[20,69,10],[21,0,43],[21,44,4],[21,64,15],[22,0,23],[22,31,12],[22,44,2],[22,65,14],[23,0,21],[23,32,11],[23,44,2],[23,64,15],[24,0,21],[24,32,13],[24,64,1],[24,68,11],[25,0,21],[25,33,11],[25,64,3],[25,68,11],[26,0,21],[26,37,6],[26,64,15],[27,0,22],[27,40,3],[27,64,15],[28,0,25],[28,65,14],[29,0,30],[29,65,14],[30,0,30],[30,65,14]],[[0,0,31],[0,43,2],[0,57,22],[1,0,32],[1,58,21],[2,0,33],[2,60,19],[3,0,35],[3,61,18],[4,0,36],[4,62,17],[5,0,35],[5,64,15],[6,0,34],[6,65,14],[7,0,33],[7,66,13],[8,0,33],[8,66,13],[9,0,32],[9,67,12],[10,0,32],[10,67,12],[11,0,32],[11,68,11],[12,0,33],[12,68,11],[13,0,35],[13,36,1],[13,68,11],[14,0,40],[14,68,11],[15,0,40],[15,69,10],[16,0,42],[16,67,12],[17,0,42],[17,48,2],[17,62,1],[17,67,12],[18,0,42],[18,48,4],[18,62,3],[18,68,11],[19,0,42],[19,47,4],[19,62,1],[19,64,2],[19,68,11],[20,0,42],[20,47,2],[20,64,15],[21,0,43],[21,44,2],[21,64,15],[22,0,43],[22,44,3],[22,65,14],[23,0,21],[23,30,13],[23,44,2],[23,64,1],[23,66,13],[24,0,19],[24,30,15],[24,64,2],[24,68,11],[25,0,19],[25,30,14],[25,64,3],[25,68,11],[26,0,19],[26,31,12],[26,65,14],[27,0,20],[27,36,7],[27,65,14],[28,0,21],[28,40,2],[28,65,14],[29,0,23],[29,66,13],[30,0,29],[30,66,13]],[[0,0,30],[0,42,2],[0,56,23],[1,0,30],[1,57,22],[2,0,31],[2,59,20],[3,0,33],[3,60,19],[4,0,35],[4,62,17],[5,0,35],[5,63,16],[6,0,33],[6,64,15],[7,0,32],[7,65,14],[8,0,32],[8,66,13],[9,0,32],[9,66,13],[10,0,32],[10,67,12],[11,0,32],[11,67,12],[12,0,32],[12,68,11],[13,0,36],[13,68,11],[14,0,40],[14,68,11],[15,0,40],[15,68,11],[16,0,42],[16,67,12],[17,0,41],[17,48,2],[17,62,1],[17,67,12],[18,0,41],[18,48,3],[18,62,3],[18,68,11],[19,0,41],[19,47,4],[19,62,1],[19,64,3],[19,68,11],[20,0,42],[20,45,4],[20,64,15],[21,0,43],[21,44,3],[21,64,15],[22,0,43],[22,44,2],[22,65,14],[23,0,43],[23,44,2],[23,66,13],[24,0,20],[24,27,18],[24,67,12],[25,0,17],[25,28,16],[25,65,14],[26,0,17],[26,29,14],[26,66,13],[27,0,17],[27,29,14],[27,66,13],[28,0,18],[28,34,9],[28,66,13],[29,0,18],[29,41,1],[29,67,12],[30,0,22],[30,67,12]],[[0,0,28],[0,40,3],[0,55,24],[1,0,28],[1,57,22],[2,0,29],[2,59,20],[3,0,31],[3,60,19],[4,0,34],[4,61,18],[5,0,34],[5,63,16],[6,0,32],[6,64,15],[7,0,31],[7,65,14],[8,0,31],[8,65,14],[9,0,31],[9,66,13],[10,0,31],[10,66,13],[11,0,31],[11,67,12],[12,0,31],[12,67,12],[13,0,33],[13,68,11],[14,0,40],[14,68,11],[15,0,40],[15,66,13],[16,0,41],[16,61,1],[16,66,13],[17,0,41],[17,48,2],[17,61,1],[17,63,1],[17,67,12],[18,0,41],[18,44,2],[18,48,3],[18,62,1],[18,64,1],[18,68,11],[19,0,41],[19,44,2],[19,48,3],[19,64,3],[19,68,11],[20,0,41],[20,44,5],[20,64,15],[21,0,41],[21,44,3],[21,64,15],[22,0,43],[22,44,2],[22,65,14],[23,0,43],[23,44,2],[23,66,13],[24,0,45],[24,68,11],[25,0,19],[25,25,19],[25,67,12],[26,0,16],[26,26,18],[26,67,12],[27,0,15],[27,27,16],[27,68,11],[28,0,15],[28,27,16],[28,68,11],[29,0,16],[29,29,14],[29,68,11],[30,0,17],[30,69,10]],[[0,0,27],[0,38,4],[0,55,24],[1,0,27],[1,56,23],[2,0,28],[2,58,21],[3,0,29],[3,59,20],[4,0,33],[4,61,18],[5,0,33],[5,62,17],[6,0,32],[6,63,16],[7,0,31],[7,64,15],[8,0,30],[8,65,14],[9,0,30],[9,65,14],[10,0,30],[10,66,13],[11,0,30],[11,66,13],[12,0,31],[12,67,12],[13,0,32],[13,67,12],[14,0,38],[14,68,11],[15,0,39],[15,66,13],[16,0,40],[16,61,1],[16,66,13],[17,0,40],[17,48,1],[17,61,1],[17,63,2],[17,67,12],[18,0,40],[18,43,3],[18,48,3],[18,63,2],[18,68,11],[19,0,40],[19,44,2],[19,48,3],[19,64,3],[19,68,11],[20,0,41],[20,44,5],[20,64,15],[21,0,42],[21,43,4],[21,65,14],[22,0,42],[22,43,3],[22,66,13],[23,0,42],[23,43,2],[23,67,12],[24,0,45],[24,64,1],[24,68,11],[25,0,44],[25,64,1],[25,68,11],[26,0,44],[26,65,1],[26,68,11],[27,0,17],[27,25,19],[27,65,2],[27,69,10],[28,0,14],[28,26,17],[28,65,1],[28,70,9],[29,0,14],[29,26,17],[29,66,1],[29,70,9],[30,0,15],[30,27,6],[30,66,2],[30,70,9]],[[0,0,26],[0,36,6],[0,43,1],[0,54,25],[1,0,25],[1,38,2],[1,55,24],[2,0,26],[2,57,22],[3,0,27],[3,58,21],[4,0,29],[4,60,19],[5,0,32],[5,61,18],[6,0,31],[6,62,17],[7,0,30],[7,63,16],[8,0,30],[8,64,15],[9,0,30],[9,65,14],[10,0,30],[10,65,14],[11,0,30],[11,66,13],[12,0,30],[12,66,13],[13,0,31],[13,67,12],[14,0,36],[14,67,12],[15,0,39],[15,67,12],[16,0,40],[16,67,12],[17,0,39],[17,48,1],[17,63,1],[17,66,13],[18,0,39],[18,43,2],[18,48,3],[18,63,2],[18,67,12],[19,0,40],[19,43,2],[19,47,4],[19,64,2],[19,68,11],[20,0,40],[20,43,6],[20,65,14],[21,0,40],[21,43,4],[21,66,13],[22,0,41],[22,43,3],[22,67,12],[23,0,42],[23,43,2],[23,68,11],[24,0,42],[24,43,2],[24,68,11],[25,0,45],[25,65,2],[25,69,10],[26,0,44],[26,65,2],[26,70,9],[27,0,44],[27,66,2],[27,70,9],[28,0,18],[28,24,20],[28,66,2],[28,71,8],[29,0,15],[29,25,19],[29,66,3],[29,72,7],[30,0,14],[30,25,19],[30,67,2],[30,72,7]],[[0,0,27],[0,33,11],[0,53,26],[1,0,25],[1,37,2],[1,54,25],[2,0,25],[2,56,23],[3,0,26],[3,57,22],[4,0,27],[4,59,20],[5,0,30],[5,60,19],[6,0,31],[6,62,17],[7,0,30],[7,62,17],[8,0,30],[8,63,16],[9,0,30],[9,64,15],[10,0,29],[10,65,14],[11,0,30],[11,65,14],[12,0,30],[12,66,13],[13,0,30],[13,66,13],[14,0,33],[14,67,12],[15,0,39],[15,66,13],[16,0,39],[16,67,12],[17,0,39],[17,47,2],[17,66,13],[18,0,39],[18,42,2],[18,47,3],[18,63,2],[18,66,13],[19,0,39],[19,42,3],[19,47,4],[19,64,2],[19,68,11],[20,0,39],[20,42,4],[20,47,3],[20,65,14],[21,0,39],[21,43,4],[21,66,13],[22,0,41],[22,42,5],[22,67,12],[23,0,41],[23,42,3],[23,68,11],[24,0,41],[24,42,3],[24,69,10],[25,0,45],[25,66,2],[25,70,9],[26,0,45],[26,66,2],[26,71,8],[27,0,45],[27,67,2],[27,71,8],[28,0,44],[28,67,2],[28,72,7],[29,0,22],[29,23,21],[29,67,3],[29,73,6],[30,0,17],[30,25,19],[30,68,2],[30,74,5]],[[0,0,44],[0,52,27],[1,0,27],[1,34,9],[1,54,25],[2,0,24],[2,56,23],[3,0,25],[3,57,22],[4,0,26],[4,58,21],[5,0,28],[5,60,19],[6,0,31],[6,61,18],[7,0,31],[7,62,17],[8,0,30],[8,63,16],[9,0,29],[9,63,16],[10,0,29],[10,64,15],[11,0,29],[11,65,14],[12,0,30],[12,65,14],[13,0,30],[13,66,13],[14,0,31],[14,66,13],[15,0,37],[15,66,13],[16,0,39],[16,67,12],[17,0,39],[17,67,12],[18,0,38],[18,41,3],[18,47,3],[18,66,13],[19,0,38],[19,42,3],[19,47,4],[19,64,2],[19,67,12],[20,0,38],[20,42,3],[20,47,4],[20,65,2],[20,68,11],[21,0,39],[21,42,4],[21,47,2],[21,66,13],[22,0,39],[22,41,6],[22,67,12],[23,0,40],[23,42,5],[23,68,11],[24,0,41],[24,42,3],[24,69,10],[25,0,41],[25,42,3],[25,67,1],[25,71,8],[26,0,45],[26,67,2],[26,71,8],[27,0,45],[27,68,2],[27,72,7],[28,0,45],[28,68,2],[28,73,6],[29,0,45],[29,69,2],[29,74,5],[30,0,45],[30,69,3],[30,75,4]],[[0,0,46],[0,51,28],[1,0,44],[1,53,26],[2,0,25],[2,38,1],[2,56,23],[3,0,24],[3,57,22],[4,0,25],[4,58,21],[5,0,27],[5,59,20],[6,0,30],[6,61,18],[7,0,31],[7,62,17],[8,0,30],[8,63,16],[9,0,30],[9,63,16],[10,0,30],[10,64,15],[11,0,30],[11,64,15],[12,0,30],[12,65,14],[13,0,30],[13,66,13],[14,0,30],[14,66,13],[15,0,33],[15,67,12],[16,0,38],[16,67,12],[17,0,38],[17,66,1],[17,68,11],[18,0,38],[18,41,2],[18,48,1],[18,66,13],[19,0,38],[19,41,3],[19,47,4],[19,66,13],[20,0,38],[20,41,3],[20,47,4],[20,65,14],[21,0,38],[21,41,5],[21,47,4],[21,66,13],[22,0,38],[22,41,5],[22,47,2],[22,67,12],[23,0,39],[23,41,6],[23,68,11],[24,0,40],[24,41,6],[24,69,10],[25,0,40],[25,41,5],[25,71,8],[26,0,46],[26,68,1],[26,72,7],[27,0,46],[27,69,1],[27,73,6],[28,0,46],[28,69,2],[28,74,5],[29,0,46],[29,70,2],[29,75,4],[30,0,45],[30,70,3],[30,75,4]],[[0,0,79],[1,0,45],[1,52,27],[2,0,28],[2,29,1],[2,35,5],[2,56,23],[3,0,25],[3,57,22],[4,0,25],[4,57,22],[5,0,26],[5,59,20],[6,0,28],[6,60,19],[7,0,32],[7,62,17],[8,0,31],[8,62,17],[9,0,31],[9,63,16],[10,0,30],[10,64,15],[11,0,30],[11,65,14],[12,0,30],[12,65,14],[13,0,30],[13,66,13],[14,0,31],[14,66,13],[15,0,32],[15,67,12],[16,0,38],[16,67,12],[17,0,39],[17,67,12],[18,0,38],[18,40,2],[18,65,1],[18,68,11],[19,0,38],[19,40,4],[19,47,4],[19,65,14],[20,0,38],[20,41,3],[20,46,5],[20,67,12],[21,0,37],[21,41,4],[21,46,6],[21,66,1],[21,68,11],[22,0,37],[22,41,4],[22,46,5],[22,67,12],[23,0,37],[23,41,8],[23,68,11],[24,0,39],[24,40,8],[24,69,10],[25,0,39],[25,40,7],[25,70,9],[26,0,46],[26,71,8],[27,0,46],[27,72,7],[28,0,46],[28,74,5],[29,0,46],[29,71,1],[29,75,4],[30,0,46],[30,72,1],[30,76,3]],[[0,0,79],[1,0,79],[2,0,45],[2,55,24],[3,0,28],[3,39,1],[3,58,21],[4,0,26],[4,58,21],[5,0,27],[5,59,20],[6,0,28],[6,61,18],[7,0,31],[7,62,17],[8,0,32],[8,63,16],[9,0,32],[9,64,15],[10,0,31],[10,64,15],[11,0,31],[11,65,14],[12,0,31],[12,65,14],[13,0,31],[13,66,13],[14,0,31],[14,66,13],[15,0,32],[15,67,12],[16,0,34],[16,68,11],[17,0,39],[17,67,12],[18,0,39],[18,68,11],[19,0,39],[19,41,3],[19,49,1],[19,66,1],[19,68,11],[20,0,38],[20,41,3],[20,47,4],[20,66,13],[21,0,37],[21,41,3],[21,46,6],[21,67,12],[22,0,37],[22,41,4],[22,46,6],[22,69,10],[23,0,37],[23,40,5],[23,46,5],[23,68,11],[24,0,38],[24,40,10],[24,69,10],[25,0,38],[25,40,9],[25,70,9],[26,0,39],[26,40,7],[26,71,8],[27,0,39],[27,40,7],[27,72,7],[28,0,47],[28,73,6],[29,0,47],[29,74,5],[30,0,47],[30,75,4]],[[0,0,79],[1,0,79],[2,0,48],[2,54,25],[3,0,33],[3,38,5],[3,58,21],[4,0,28],[4,59,20],[5,0,28],[5,60,19],[6,0,29],[6,61,18],[7,0,31],[7,62,17],[8,0,34],[8,63,16],[9,0,34],[9,64,15],[10,0,32],[10,65,14],[11,0,32],[11,65,14],[12,0,32],[12,66,13],[13,0,32],[13,66,13],[14,0,32],[14,67,12],[15,0,32],[15,67,12],[16,0,34],[16,68,11],[17,0,40],[17,68,11],[18,0,40],[18,69,10],[19,0,39],[19,41,2],[19,68,11],[20,0,38],[20,41,3],[20,49,2],[20,66,1],[20,68,11],[21,0,38],[21,41,3],[21,46,5],[21,68,11],[22,0,38],[22,41,4],[22,46,6],[22,68,11],[23,0,37],[23,40,5],[23,46,7],[23,69,10],[24,0,37],[24,40,5],[24,46,6],[24,70,9],[25,0,38],[25,40,10],[25,71,8],[26,0,38],[26,39,11],[26,72,7],[27,0,48],[27,73,6],[28,0,48],[28,73,6],[29,0,48],[29,74,5],[30,0,48],[30,75,4]],[[0,0,79],[1,0,79],[2,0,79],[3,0,50],[3,57,22],[4,0,33],[4,60,19],[5,0,30],[5,62,17],[6,0,31],[6,62,17],[7,0,32],[7,63,16],[8,0,35],[8,64,15],[9,0,35],[9,65,14],[10,0,34],[10,66,13],[11,0,34],[11,67,12],[12,0,34],[12,67,12],[13,0,33],[13,67,12],[14,0,34],[14,68,11],[15,0,34],[15,68,11],[16,0,35],[16,68,11],[17,0,37],[17,38,1],[17,69,10],[18,0,41],[18,69,10],[19,0,41],[19,68,11],[20,0,40],[20,42,2],[20,69,10],[21,0,39],[21,42,2],[21,46,2],[21,49,3],[21,70,9],[22,0,38],[22,42,3],[22,46,6],[22,69,10],[23,0,38],[23,41,4],[23,46,7],[23,70,9],[24,0,37],[24,41,4],[24,46,8],[24,71,8],[25,0,38],[25,41,11],[25,72,7],[26,0,38],[26,40,11],[26,73,6],[27,0,38],[27,39,12],[27,74,5],[28,0,49],[28,75,4],[29,0,49],[29,76,3],[30,0,50],[30,77,2]],[[0,0,79],[1,0,79],[2,0,79],[3,0,55],[3,57,22],[4,0,37],[4,45,3],[4,61,18],[5,0,34],[5,63,16],[6,0,34],[6,64,15],[7,0,35],[7,65,14],[8,0,37],[8,66,13],[9,0,38],[9,67,12],[10,0,36],[10,68,11],[11,0,36],[11,68,11],[12,0,35],[12,69,10],[13,0,35],[13,69,10],[14,0,35],[14,69,10],[15,0,35],[15,69,10],[16,0,36],[16,70,9],[17,0,38],[17,70,9],[18,0,42],[18,70,9],[19,0,42],[19,70,9],[20,0,42],[20,43,2],[20,69,10],[21,0,40],[21,43,2],[21,50,3],[21,70,9],[22,0,40],[22,47,6],[22,70,9],[23,0,39],[23,43,2],[23,46,7],[23,71,8],[24,0,38],[24,42,3],[24,46,8],[24,73,6],[25,0,38],[25,41,14],[25,73,6],[26,0,39],[26,40,13],[26,74,5],[27,0,39],[27,40,12],[27,75,4],[28,0,52],[28,76,3],[29,0,51],[29,77,2],[30,0,51],[30,78,1]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,42],[4,47,9],[4,62,17],[5,0,38],[5,65,14],[6,0,38],[6,66,13],[7,0,39],[7,67,12],[8,0,41],[8,68,11],[9,0,40],[9,68,11],[10,0,38],[10,69,10],[11,0,38],[11,70,9],[12,0,37],[12,70,9],[13,0,37],[13,71,8],[14,0,37],[14,71,8],[15,0,37],[15,71,8],[16,0,37],[16,71,8],[17,0,41],[17,71,8],[18,0,45],[18,71,8],[19,0,44],[19,71,8],[20,0,44],[20,71,8],[21,0,42],[21,52,1],[21,70,9],[22,0,41],[22,48,6],[22,71,8],[23,0,41],[23,44,2],[23,47,7],[23,72,7],[24,0,40],[24,43,12],[24,74,5],[25,0,39],[25,43,13],[25,74,5],[26,0,40],[26,42,13],[26,76,3],[27,0,39],[27,41,13],[27,77,2],[28,0,39],[28,40,14],[28,78,1],[29,0,53],[29,78,1],[30,0,52]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,47],[4,51,28],[5,0,43],[5,66,13],[6,0,43],[6,68,11],[7,0,44],[7,70,9],[8,0,44],[8,70,9],[9,0,42],[9,70,9],[10,0,41],[10,71,8],[11,0,40],[11,72,7],[12,0,39],[12,73,6],[13,0,39],[13,73,6],[14,0,39],[14,73,6],[15,0,39],[15,73,6],[16,0,39],[16,73,6],[17,0,43],[17,73,6],[18,0,46],[18,73,6],[19,0,45],[19,73,6],[20,0,45],[20,73,6],[21,0,45],[21,73,6],[22,0,44],[22,51,4],[22,71,1],[22,73,6],[23,0,43],[23,48,8],[23,73,6],[24,0,42],[24,47,9],[24,74,5],[25,0,42],[25,46,11],[25,75,4],[26,0,42],[26,44,14],[26,77,2],[27,0,41],[27,42,14],[28,0,40],[28,42,13],[29,0,55],[30,0,54]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,51],[4,55,24],[5,0,48],[5,61,2],[5,67,12],[6,0,48],[6,70,9],[7,0,49],[7,72,7],[8,0,47],[8,73,6],[9,0,45],[9,73,6],[10,0,43],[10,73,6],[11,0,42],[11,74,5],[12,0,41],[12,75,4],[13,0,41],[13,75,4],[14,0,41],[14,75,4],[15,0,41],[15,75,4],[16,0,42],[16,75,4],[17,0,45],[17,75,4],[18,0,47],[18,75,4],[19,0,46],[19,75,4],[20,0,48],[20,75,4],[21,0,48],[21,74,5],[22,0,46],[22,53,3],[22,74,5],[23,0,45],[23,50,7],[23,74,5],[24,0,44],[24,48,10],[24,75,4],[25,0,44],[25,48,11],[25,76,3],[26,0,44],[26,47,12],[26,78,1],[27,0,43],[27,45,12],[28,0,42],[28,43,13],[29,0,56],[30,0,56]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,54],[4,60,19],[5,0,52],[5,64,15],[6,0,53],[6,73,6],[7,0,52],[7,74,5],[8,0,49],[8,75,4],[9,0,47],[9,76,3],[10,0,45],[10,76,3],[11,0,44],[11,76,3],[12,0,44],[12,77,2],[13,0,43],[13,77,2],[14,0,43],[14,78,1],[15,0,43],[15,78,1],[16,0,45],[16,78,1],[17,0,49],[17,77,2],[18,0,49],[18,77,2],[19,0,48],[19,77,2],[20,0,50],[20,77,2],[21,0,50],[21,76,3],[22,0,49],[22,53,4],[22,76,3],[23,0,48],[23,52,6],[23,76,3],[24,0,47],[24,51,8],[24,76,3],[25,0,47],[25,50,10],[25,77,2],[26,0,47],[26,48,12],[26,78,1],[27,0,46],[27,47,11],[28,0,45],[28,46,11],[29,0,57],[30,0,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,59],[3,63,16],[4,0,57],[4,66,13],[5,0,57],[5,68,1],[5,73,6],[6,0,56],[6,76,3],[7,0,52],[7,77,2],[8,0,49],[8,78,1],[9,0,48],[9,78,1],[10,0,47],[11,0,46],[12,0,46],[13,0,45],[14,0,46],[15,0,47],[16,0,51],[17,0,51],[18,0,50],[19,0,51],[20,0,52],[21,0,52],[21,56,2],[22,0,51],[22,55,4],[22,75,1],[23,0,51],[23,55,5],[23,78,1],[24,0,51],[24,54,7],[24,77,2],[25,0,50],[25,52,9],[25,78,1],[26,0,49],[26,51,9],[27,0,49],[27,50,9],[28,0,59],[29,0,59],[30,0,60]],[[0,0,79],[1,0,79],[2,0,63],[2,67,12],[3,0,62],[3,70,9],[4,0,62],[4,72,7],[5,0,59],[5,78,1],[6,0,55],[7,0,52],[8,0,50],[9,0,49],[10,0,49],[11,0,48],[12,0,48],[13,0,49],[14,0,50],[15,0,53],[16,0,52],[17,0,52],[18,0,54],[19,0,55],[20,0,54],[21,0,54],[21,59,2],[22,0,54],[22,59,3],[23,0,53],[23,54,2],[23,58,4],[23,78,1],[24,0,55],[24,56,5],[24,78,1],[25,0,54],[25,55,7],[26,0,53],[26,54,7],[27,0,61],[28,0,61],[29,0,61],[30,0,61]],[[0,0,79],[1,0,67],[1,72,7],[2,0,66],[2,75,4],[3,0,67],[3,76,3],[4,0,62],[5,0,57],[6,0,55],[7,0,53],[8,0,52],[9,0,51],[10,0,51],[11,0,51],[12,0,52],[13,0,56],[14,0,56],[15,0,54],[16,0,55],[17,0,56],[18,0,57],[19,0,56],[19,59,2],[20,0,56],[21,0,56],[21,57,3],[21,62,2],[22,0,59],[22,61,3],[23,0,59],[23,60,3],[24,0,58],[24,59,4],[25,0,63],[26,0,62],[27,0,63],[28,0,63],[29,0,62],[30,0,62]],[[0,0,71],[0,77,2],[1,0,71],[1,78,1],[2,0,71],[3,0,66],[4,0,60],[5,0,58],[6,0,56],[7,0,55],[8,0,54],[9,0,54],[10,0,54],[11,0,54],[12,0,58],[13,0,58],[14,0,56],[15,0,57],[16,0,59],[17,0,59],[17,62,1],[18,0,58],[18,61,3],[19,0,58],[19,61,2],[20,0,58],[20,60,4],[21,0,58],[21,59,5],[22,0,63],[23,0,63],[24,0,63],[25,0,63],[26,0,64],[27,0,64],[28,0,63],[29,0,62],[30,0,62]],[[0,0,75],[1,0,76],[2,0,77],[3,0,65],[4,0,62],[5,0,59],[6,0,58],[7,0,57],[8,0,57],[9,0,57],[10,0,57],[11,0,60],[12,0,60],[13,0,59],[14,0,60],[15,0,60],[16,0,61],[17,0,61],[17,64,2],[18,0,60],[18,63,4],[19,0,61],[19,62,5],[20,0,61],[20,62,3],[21,0,64],[22,0,64],[23,0,64],[24,0,63],[25,0,63],[26,0,64],[27,0,64],[28,0,64],[29,0,63],[30,0,62]],[[0,0,79],[1,0,79],[2,0,73],[2,77,2],[3,0,66],[4,0,63],[5,0,62],[6,0,61],[7,0,60],[8,0,60],[9,0,60],[10,0,60],[11,0,63],[12,0,61],[13,0,61],[14,0,62],[15,0,63],[16,0,63],[17,0,63],[17,66,3],[18,0,63],[18,65,5],[19,0,63],[19,64,3],[20,0,63],[20,64,2],[21,0,64],[22,0,64],[23,0,65],[24,0,63],[25,0,63],[26,0,64],[27,0,63],[28,0,62],[29,0,63],[30,0,63]],[[0,0,79],[1,0,79],[2,0,72],[3,0,68],[4,0,66],[5,0,65],[6,0,64],[7,0,63],[8,0,63],[9,0,63],[10,0,66],[11,0,65],[12,0,64],[13,0,65],[14,0,65],[15,0,66],[16,0,66],[16,68,3],[17,0,65],[17,68,4],[18,0,65],[18,68,2],[19,0,65],[20,0,65],[21,0,65],[22,0,64],[23,0,64],[24,0,63],[25,0,60],[25,61,2],[26,0,60],[27,0,59],[28,0,58],[29,0,57],[30,0,56]],[[0,0,79],[1,0,79],[2,0,73],[3,0,70],[4,0,68],[5,0,67],[6,0,67],[7,0,67],[8,0,67],[9,0,69],[10,0,68],[11,0,67],[12,0,67],[13,0,67],[14,0,68],[15,0,69],[16,0,68],[16,71,3],[17,0,68],[17,70,3],[18,0,67],[19,0,66],[20,0,65],[21,0,65],[22,0,58],[22,61,2],[23,0,58],[24,0,56],[25,0,54],[26,0,52],[27,0,50],[27,60,1],[28,0,48],[28,59,3],[29,0,46],[29,59,3],[30,0,43],[30,60,3]],[[0,0,79],[1,0,79],[2,0,75],[3,0,72],[4,0,70],[5,0,70],[6,0,69],[7,0,69],[8,0,71],[9,0,71],[10,0,68],[11,0,68],[12,0,69],[13,0,69],[14,0,71],[15,0,71],[16,0,70],[16,73,1],[17,0,69],[18,0,66],[19,0,59],[19,62,3],[20,0,58],[21,0,54],[22,0,49],[23,0,45],[24,0,41],[24,57,4],[25,0,37],[25,56,5],[26,0,34],[26,56,4],[27,0,17],[27,22,8],[27,56,4],[28,0,15],[28,25,5],[28,57,3],[29,0,13],[29,26,5],[29,58,3],[30,0,14],[30,23,9]],[[0,0,79],[1,0,79],[2,0,77],[3,0,73],[4,0,72],[5,0,70],[6,0,70],[7,0,69],[8,0,71],[9,0,71],[10,0,68],[11,0,68],[12,0,68],[13,0,68],[14,0,72],[15,0,73],[16,0,72],[17,0,57],[17,60,6],[18,0,11],[18,21,35],[18,61,3],[19,0,11],[19,22,6],[19,44,5],[20,0,14],[20,22,5],[21,0,27],[22,0,27],[22,54,3],[22,59,1],[23,0,28],[23,52,8],[24,0,28],[24,52,7],[25,0,28],[25,53,5],[26,0,28],[26,54,4],[27,0,28],[27,55,3],[28,0,28],[28,55,3],[29,0,28],[29,56,2],[30,0,28],[30,56,3]],[[0,0,79],[1,0,79],[2,0,79],[3,0,15],[3,20,54],[4,0,13],[4,23,48],[5,0,13],[5,25,45],[6,0,13],[6,24,45],[7,0,14],[7,24,45],[8,0,18],[8,21,49],[9,0,69],[10,0,30],[10,31,36],[11,0,26],[11,34,33],[12,0,26],[12,37,29],[13,0,26],[13,40,26],[14,0,25],[14,43,14],[14,59,11],[15,0,25],[15,52,3],[15,59,11],[16,0,24],[16,61,9],[17,0,24],[18,0,23],[19,0,22],[19,48,6],[19,57,3],[20,0,22],[20,48,12],[21,0,21],[21,48,11],[22,0,20],[22,49,10],[23,0,20],[23,50,8],[24,0,18],[24,50,7],[25,0,18],[25,50,6],[26,0,24],[26,50,6],[27,0,31],[27,49,7],[28,0,40],[28,45,11],[29,0,56],[30,0,56]],[[0,0,79],[1,0,79],[2,0,79],[3,0,36],[3,40,39],[4,0,34],[4,42,36],[5,0,32],[5,43,30],[6,0,30],[6,44,27],[7,0,29],[7,45,25],[8,0,27],[8,47,23],[9,0,25],[9,48,22],[10,0,23],[10,49,21],[11,0,21],[11,51,16],[12,0,20],[12,55,12],[13,0,18],[13,62,4],[14,0,16],[14,63,3],[15,0,16],[15,63,6],[16,0,18],[16,50,4],[16,65,5],[17,0,20],[17,48,7],[17,67,3],[18,0,22],[18,48,12],[18,68,2],[19,0,25],[19,47,14],[20,0,26],[20,47,14],[21,0,29],[21,46,14],[22,0,32],[22,45,14],[23,0,35],[23,44,15],[24,0,58],[25,0,57],[26,0,57],[27,0,56],[28,0,56],[29,0,56],[30,0,56]],[[0,0,42],[0,47,32],[1,0,42],[1,48,31],[2,0,43],[2,49,30],[3,0,44],[3,50,29],[4,0,45],[4,51,28],[5,0,45],[5,52,27],[6,0,40],[6,52,27],[7,0,19],[7,53,26],[8,0,19],[8,54,25],[9,0,20],[9,54,23],[10,0,21],[10,55,19],[11,0,22],[11,56,17],[12,0,22],[12,57,15],[13,0,23],[13,57,15],[14,0,23],[14,58,15],[15,0,24],[15,60,10],[15,71,1],[16,0,24],[16,62,8],[17,0,25],[17,68,1],[18,0,26],[18,52,4],[18,67,3],[19,0,27],[19,49,8],[19,68,3],[20,0,28],[20,47,11],[20,59,1],[20,69,3],[21,0,30],[21,44,19],[21,70,3],[22,0,32],[22,41,22],[22,71,1],[23,0,63],[24,0,63],[25,0,62],[26,0,61],[27,0,61],[28,0,60],[29,0,60],[30,0,59]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,53],[6,55,24],[7,0,30],[7,32,21],[7,56,23],[8,0,31],[8,34,19],[8,56,23],[9,0,31],[9,36,17],[9,55,24],[10,0,31],[10,38,14],[10,56,23],[11,0,31],[11,41,11],[11,57,22],[12,0,31],[12,43,9],[12,57,22],[13,0,31],[13,48,1],[13,58,21],[14,0,31],[14,58,21],[15,0,31],[15,58,21],[16,0,30],[16,59,17],[17,0,30],[17,59,16],[18,0,30],[18,59,16],[19,0,30],[19,60,16],[20,0,29],[20,61,15],[21,0,29],[21,61,11],[22,0,30],[22,63,9],[23,0,30],[23,70,2],[24,0,32],[24,53,6],[24,71,3],[25,0,36],[25,42,18],[25,71,3],[26,0,65],[26,72,3],[27,0,65],[27,73,2],[28,0,66],[29,0,66],[30,0,65]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,58],[13,59,20],[14,0,44],[14,45,12],[14,60,19],[15,0,43],[15,46,10],[15,60,19],[16,0,42],[16,47,9],[16,60,19],[17,0,42],[17,48,8],[17,60,19],[18,0,41],[18,49,6],[18,60,19],[19,0,40],[19,50,5],[19,61,18],[20,0,39],[20,61,18],[21,0,38],[21,61,18],[22,0,37],[22,62,16],[23,0,37],[23,62,15],[24,0,36],[24,62,15],[25,0,35],[25,62,16],[26,0,34],[26,62,16],[27,0,34],[27,63,11],[28,0,34],[28,64,10],[29,0,36],[29,72,2],[30,0,62],[30,73,3]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,64],[20,65,14],[21,0,61],[21,62,17],[22,0,60],[22,63,16],[23,0,52],[23,54,5],[23,63,16],[24,0,51],[24,54,5],[24,62,17],[25,0,49],[25,56,2],[25,62,17],[26,0,48],[26,63,16],[27,0,47],[27,63,16],[28,0,45],[28,63,16],[29,0,43],[29,64,15],[30,0,41],[30,64,14]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,67],[27,68,11],[28,0,65],[28,68,11],[29,0,63],[29,67,12],[30,0,62],[30,66,13]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,73],[30,75,4]],[[0,0,31],[0,34,45],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,29],[0,39,40],[1,0,30],[1,36,43],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,29],[0,41,38],[1,0,29],[1,40,39],[2,0,31],[2,39,40],[3,0,33],[3,34,45],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,29],[0,43,36],[1,0,29],[1,43,36],[2,0,30],[2,42,37],[3,0,31],[3,40,39],[4,0,33],[4,38,41],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,30],[0,42,37],[1,0,30],[1,43,36],[2,0,29],[2,43,36],[3,0,30],[3,42,37],[4,0,31],[4,42,37],[5,0,33],[5,40,39],[6,0,36],[6,37,42],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,33],[0,40,39],[1,0,32],[1,43,36],[2,0,31],[2,44,35],[3,0,30],[3,44,35],[4,0,30],[4,44,35],[5,0,31],[5,43,36],[6,0,33],[6,42,37],[7,0,36],[7,40,39],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,35],[1,39,40],[2,0,32],[2,43,36],[3,0,31],[3,45,34],[4,0,30],[4,45,34],[5,0,30],[5,45,34],[6,0,31],[6,44,35],[7,0,32],[7,44,35],[8,0,35],[8,42,37],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,37],[2,40,39],[3,0,33],[3,44,35],[4,0,31],[4,45,34],[5,0,30],[5,46,33],[6,0,30],[6,46,33],[7,0,31],[7,46,33],[8,0,32],[8,45,34],[9,0,33],[9,44,35],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,38],[3,40,39],[4,0,34],[4,44,35],[5,0,32],[5,46,33],[6,0,31],[6,46,33],[7,0,31],[7,47,32],[8,0,31],[8,47,32],[9,0,31],[9,46,33],[10,0,33],[10,45,34],[11,0,36],[11,41,38],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,38],[4,40,39],[5,0,35],[5,45,34],[6,0,33],[6,46,33],[7,0,32],[7,47,32],[8,0,31],[8,47,32],[9,0,31],[9,48,31],[10,0,31],[10,47,32],[11,0,32],[11,46,33],[12,0,34],[12,43,36],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,38],[5,39,40],[6,0,35],[6,45,34],[7,0,33],[7,47,32],[8,0,32],[8,47,32],[9,0,32],[9,48,31],[10,0,32],[10,48,31],[11,0,32],[11,47,32],[12,0,32],[12,46,33],[13,0,34],[13,45,34],[14,0,38],[14,41,38],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,35],[7,45,34],[8,0,33],[8,47,32],[9,0,32],[9,48,31],[10,0,32],[10,48,31],[11,0,32],[11,48,31],[12,0,32],[12,48,31],[13,0,33],[13,47,32],[14,0,34],[14,46,33],[15,0,38],[15,44,35],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,36],[8,46,33],[9,0,34],[9,47,32],[10,0,33],[10,48,31],[11,0,32],[11,49,30],[12,0,32],[12,49,30],[13,0,32],[13,49,30],[14,0,33],[14,48,31],[15,0,34],[15,48,31],[16,0,36],[16,45,34],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,38],[9,46,33],[10,0,34],[10,47,32],[11,0,33],[11,48,31],[12,0,32],[12,49,30],[13,0,32],[13,50,29],[14,0,32],[14,50,29],[15,0,33],[15,50,29],[16,0,35],[16,48,31],[17,0,37],[17,44,1],[17,46,33],[18,0,40],[18,42,37],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,38],[10,46,33],[11,0,37],[11,48,31],[12,0,35],[12,49,30],[13,0,33],[13,50,29],[14,0,33],[14,50,29],[15,0,33],[15,51,28],[16,0,33],[16,50,29],[17,0,35],[17,48,31],[18,0,37],[18,46,33],[19,0,42],[19,44,35],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,38],[11,46,33],[12,0,37],[12,48,31],[13,0,35],[13,50,29],[14,0,35],[14,51,28],[15,0,33],[15,51,28],[16,0,33],[16,51,28],[17,0,34],[17,50,29],[18,0,35],[18,49,30],[19,0,37],[19,47,32],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,37],[12,46,33],[13,0,36],[13,49,30],[14,0,35],[14,51,28],[15,0,34],[15,51,28],[16,0,34],[16,51,28],[17,0,34],[17,51,28],[18,0,34],[18,51,28],[19,0,35],[19,50,29],[20,0,37],[20,47,32],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,36],[13,48,31],[14,0,35],[14,50,29],[15,0,35],[15,51,28],[16,0,34],[16,52,27],[17,0,34],[17,52,27],[18,0,35],[18,52,27],[19,0,35],[19,51,28],[20,0,36],[20,49,30],[21,0,38],[21,46,33],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,41],[13,45,34],[14,0,36],[14,50,29],[15,0,34],[15,51,28],[16,0,34],[16,52,27],[17,0,34],[17,53,26],[18,0,34],[18,52,27],[19,0,34],[19,52,27],[20,0,36],[20,51,28],[21,0,37],[21,49,30],[22,0,39],[22,46,33],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,40],[14,48,31],[15,0,36],[15,50,29],[16,0,34],[16,52,27],[17,0,34],[17,52,27],[18,0,33],[18,52,27],[19,0,34],[19,52,27],[20,0,35],[20,51,28],[21,0,35],[21,50,29],[22,0,38],[22,49,30],[23,0,41],[23,46,33],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,43],[14,46,33],[15,0,39],[15,48,31],[16,0,36],[16,51,28],[17,0,35],[17,52,27],[18,0,34],[18,52,27],[19,0,33],[19,52,27],[20,0,34],[20,52,27],[21,0,35],[21,52,27],[22,0,37],[22,51,28],[23,0,38],[23,49,30],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,40],[15,46,33],[16,0,38],[16,50,29],[17,0,36],[17,51,28],[18,0,35],[18,52,27],[19,0,34],[19,52,27],[20,0,34],[20,53,26],[21,0,34],[21,52,27],[22,0,35],[22,52,27],[23,0,37],[23,51,28],[24,0,41],[24,48,31],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,38],[16,49,30],[17,0,37],[17,50,29],[18,0,35],[18,52,27],[19,0,35],[19,52,27],[20,0,34],[20,53,26],[21,0,34],[21,53,26],[22,0,34],[22,53,26],[23,0,35],[23,52,27],[24,0,37],[24,50,29],[25,0,43],[25,44,35],[26,0,43],[26,44,35],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,44],[16,47,32],[17,0,37],[17,49,30],[18,0,36],[18,51,28],[19,0,35],[19,52,27],[20,0,35],[20,53,26],[21,0,35],[21,54,25],[22,0,35],[22,54,25],[23,0,35],[23,53,26],[24,0,36],[24,50,29],[25,0,37],[25,45,1],[25,47,32],[26,0,46],[26,47,32],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,40],[17,48,31],[18,0,36],[18,51,28],[19,0,35],[19,52,27],[20,0,34],[20,53,26],[21,0,34],[21,54,25],[22,0,34],[22,54,25],[23,0,35],[23,52,27],[24,0,36],[24,50,29],[25,0,37],[25,49,30],[26,0,39],[26,45,4],[26,50,29],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,39],[17,46,33],[18,0,37],[18,50,29],[19,0,36],[19,53,26],[20,0,34],[20,54,25],[21,0,34],[21,54,25],[22,0,34],[22,53,26],[23,0,35],[23,52,27],[24,0,36],[24,51,28],[25,0,37],[25,49,30],[26,0,39],[26,47,32],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,37],[18,51,28],[19,0,36],[19,53,26],[20,0,35],[20,53,26],[21,0,34],[21,53,26],[22,0,34],[22,53,26],[23,0,34],[23,52,27],[24,0,35],[24,51,2],[24,54,25],[25,0,37],[25,50,29],[26,0,39],[26,49,30],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,44],[17,46,33],[18,0,37],[18,51,28],[19,0,35],[19,52,27],[20,0,34],[20,52,27],[21,0,34],[21,53,26],[22,0,34],[22,53,26],[23,0,34],[23,52,27],[24,0,34],[24,52,27],[25,0,36],[25,51,28],[26,0,39],[26,50,29],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,40],[17,49,30],[18,0,37],[18,51,28],[19,0,35],[19,51,28],[20,0,34],[20,52,27],[21,0,34],[21,53,26],[22,0,34],[22,53,26],[23,0,35],[23,53,26],[24,0,35],[24,53,26],[25,0,36],[25,52,27],[26,0,39],[26,49,30],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,39],[17,49,30],[18,0,36],[18,50,29],[19,0,35],[19,52,27],[20,0,34],[20,52,27],[21,0,33],[21,53,26],[22,0,33],[22,54,25],[23,0,35],[23,54,25],[24,0,36],[24,53,26],[25,0,36],[25,50,29],[26,0,39],[26,46,33],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,40],[16,45,34],[17,0,37],[17,48,1],[17,50,29],[18,0,36],[18,51,28],[19,0,35],[19,52,27],[20,0,34],[20,53,26],[21,0,34],[21,54,25],[22,0,33],[22,54,25],[23,0,34],[23,53,26],[24,0,36],[24,51,28],[25,0,38],[25,48,31],[26,0,41],[26,44,35],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,37],[16,45,1],[16,48,31],[17,0,36],[17,50,29],[18,0,35],[18,53,26],[19,0,34],[19,54,25],[20,0,34],[20,54,25],[21,0,34],[21,54,25],[22,0,34],[22,53,26],[23,0,34],[23,52,27],[24,0,36],[24,50,29],[25,0,40],[25,48,31],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,43],[15,45,34],[16,0,36],[16,49,30],[17,0,35],[17,52,27],[18,0,34],[18,53,26],[19,0,34],[19,53,26],[20,0,34],[20,53,26],[21,0,34],[21,53,26],[22,0,34],[22,52,27],[23,0,35],[23,51,28],[24,0,37],[24,49,30],[25,0,44],[25,46,33],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,41],[14,42,37],[15,0,40],[15,50,29],[16,0,35],[16,52,27],[17,0,34],[17,52,27],[18,0,33],[18,53,26],[19,0,33],[19,53,26],[20,0,34],[20,53,26],[21,0,34],[21,52,27],[22,0,35],[22,52,27],[23,0,36],[23,50,29],[24,0,38],[24,45,1],[24,48,31],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,38],[14,39,1],[14,41,1],[14,49,30],[15,0,38],[15,51,28],[16,0,34],[16,51,28],[17,0,33],[17,52,27],[18,0,33],[18,53,26],[19,0,33],[19,53,26],[20,0,34],[20,53,26],[21,0,35],[21,52,27],[22,0,36],[22,51,28],[23,0,38],[23,46,33],[24,0,42],[24,43,36],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,40],[13,47,32],[14,0,35],[14,36,2],[14,49,30],[15,0,36],[15,51,28],[16,0,34],[16,52,27],[17,0,33],[17,53,26],[18,0,32],[18,53,26],[19,0,33],[19,53,26],[20,0,34],[20,53,26],[21,0,35],[21,50,29],[22,0,37],[22,48,31],[23,0,41],[23,46,33],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,39],[12,45,34],[13,0,37],[13,48,31],[14,0,32],[14,33,3],[14,50,29],[15,0,34],[15,52,27],[16,0,34],[16,53,26],[17,0,33],[17,53,26],[18,0,32],[18,53,26],[19,0,33],[19,52,27],[20,0,34],[20,51,28],[21,0,36],[21,50,29],[22,0,40],[22,48,31],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,39],[11,42,37],[12,0,36],[12,47,32],[13,0,35],[13,50,29],[14,0,34],[14,52,27],[15,0,31],[15,32,2],[15,53,26],[16,0,34],[16,53,26],[17,0,33],[17,52,27],[18,0,33],[18,52,27],[19,0,33],[19,51,28],[20,0,34],[20,51,28],[21,0,37],[21,48,31],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,36],[11,47,32],[12,0,34],[12,50,29],[13,0,34],[13,52,27],[14,0,33],[14,52,27],[15,0,33],[15,52,27],[16,0,30],[16,31,2],[16,52,27],[17,0,34],[17,52,27],[18,0,34],[18,52,27],[19,0,34],[19,51,28],[20,0,36],[20,48,31],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,40],[10,46,33],[11,0,35],[11,49,30],[12,0,33],[12,50,29],[13,0,32],[13,51,28],[14,0,32],[14,52,27],[15,0,33],[15,53,26],[16,0,33],[16,53,26],[17,0,34],[17,52,27],[18,0,35],[18,51,28],[19,0,36],[19,48,31],[20,0,37],[20,45,34],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,42],[9,45,34],[10,0,37],[10,48,31],[11,0,34],[11,49,30],[12,0,32],[12,51,28],[13,0,31],[13,52,27],[14,0,31],[14,53,26],[15,0,32],[15,52,27],[16,0,33],[16,52,27],[17,0,34],[17,51,28],[18,0,32],[18,33,3],[18,49,30],[19,0,37],[19,47,32],[20,0,41],[20,43,36],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,38],[9,46,33],[10,0,35],[10,49,30],[11,0,33],[11,51,28],[12,0,32],[12,52,27],[13,0,31],[13,52,27],[14,0,31],[14,52,27],[15,0,31],[15,52,27],[16,0,33],[16,51,28],[17,0,36],[17,50,29],[18,0,38],[18,48,31],[19,0,34],[19,36,5],[19,46,33],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,38],[8,42,37],[9,0,36],[9,48,31],[10,0,34],[10,50,29],[11,0,33],[11,51,28],[12,0,32],[12,51,28],[13,0,31],[13,52,27],[14,0,31],[14,51,28],[15,0,31],[15,51,28],[16,0,32],[16,51,28],[17,0,35],[17,50,29],[18,0,38],[18,39,2],[18,47,32],[19,0,37],[19,38,41],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,36],[8,47,32],[9,0,34],[9,49,30],[10,0,33],[10,50,29],[11,0,32],[11,51,28],[12,0,32],[12,51,28],[13,0,31],[13,52,27],[14,0,31],[14,52,27],[15,0,31],[15,51,28],[16,0,32],[16,51,28],[17,0,34],[17,49,30],[18,0,79],[19,0,40],[19,41,38],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,41],[7,43,36],[8,0,35],[8,47,32],[9,0,33],[9,49,30],[10,0,32],[10,50,29],[11,0,32],[11,51,28],[12,0,31],[12,52,27],[13,0,31],[13,52,27],[14,0,32],[14,52,27],[15,0,32],[15,51,28],[16,0,32],[16,50,29],[17,0,34],[17,42,1],[17,44,35],[18,0,79],[19,0,44],[19,45,34],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,38],[7,43,36],[8,0,36],[8,47,32],[9,0,33],[9,49,30],[10,0,31],[10,50,29],[11,0,31],[11,52,27],[12,0,31],[12,52,27],[13,0,31],[13,52,27],[14,0,32],[14,52,27],[15,0,32],[15,50,29],[16,0,33],[16,47,32],[17,0,35],[17,44,2],[17,47,32],[18,0,37],[18,41,6],[18,48,31],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,38],[7,42,37],[8,0,35],[8,47,32],[9,0,34],[9,49,30],[10,0,31],[10,51,28],[11,0,31],[11,52,27],[12,0,30],[12,52,27],[13,0,31],[13,52,27],[14,0,32],[14,51,28],[15,0,32],[15,49,30],[16,0,34],[16,49,30],[17,0,35],[17,46,4],[17,51,28],[18,0,38],[18,43,36],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,34],[8,47,32],[9,0,33],[9,50,29],[10,0,32],[10,51,28],[11,0,31],[11,52,27],[12,0,30],[12,52,27],[13,0,30],[13,51,28],[14,0,31],[14,50,29],[15,0,32],[15,49,3],[15,53,26],[16,0,34],[16,48,31],[17,0,36],[17,47,32],[18,0,39],[18,45,34],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,35],[8,48,31],[9,0,33],[9,50,29],[10,0,31],[10,51,28],[11,0,31],[11,51,28],[12,0,31],[12,51,28],[13,0,31],[13,51,28],[14,0,31],[14,51,2],[14,55,24],[15,0,31],[15,50,29],[16,0,33],[16,50,29],[17,0,36],[17,49,30],[18,0,40],[18,46,33],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,37],[8,48,31],[9,0,34],[9,50,29],[10,0,32],[10,51,28],[11,0,31],[11,51,28],[12,0,31],[12,51,2],[12,55,24],[13,0,31],[13,51,28],[14,0,31],[14,52,27],[15,0,31],[15,51,28],[16,0,32],[16,51,28],[17,0,35],[17,50,29],[18,0,40],[18,46,33],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,42],[7,43,36],[8,0,37],[8,47,32],[9,0,35],[9,49,30],[10,0,33],[10,50,29],[11,0,31],[11,51,28],[12,0,31],[12,52,27],[13,0,31],[13,52,27],[14,0,31],[14,53,26],[15,0,32],[15,53,26],[16,0,33],[16,52,27],[17,0,34],[17,50,29],[18,0,37],[18,45,34],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,37],[8,46,33],[9,0,35],[9,48,3],[9,52,27],[10,0,34],[10,50,29],[11,0,32],[11,51,28],[12,0,32],[12,53,26],[13,0,31],[13,53,26],[14,0,31],[14,54,25],[15,0,31],[15,53,26],[16,0,33],[16,52,27],[17,0,34],[17,50,29],[18,0,36],[18,47,32],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,37],[8,44,5],[8,50,29],[9,0,35],[9,48,31],[10,0,34],[10,50,29],[11,0,33],[11,52,27],[12,0,32],[12,54,25],[13,0,32],[13,54,25],[14,0,32],[14,54,25],[15,0,32],[15,53,26],[16,0,32],[16,52,27],[17,0,34],[17,50,29],[18,0,37],[18,48,31],[19,0,40],[19,44,35],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,47],[7,48,31],[8,0,46],[8,47,32],[9,0,35],[9,46,33],[10,0,34],[10,51,28],[11,0,33],[11,54,25],[12,0,33],[12,54,25],[13,0,32],[13,54,25],[14,0,32],[14,54,25],[15,0,33],[15,53,26],[16,0,33],[16,52,27],[17,0,34],[17,51,28],[18,0,35],[18,49,30],[19,0,40],[19,46,33],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,44],[7,45,34],[8,0,79],[9,0,37],[9,49,30],[10,0,34],[10,53,26],[11,0,33],[11,54,25],[12,0,33],[12,54,25],[13,0,32],[13,54,25],[14,0,33],[14,54,25],[15,0,33],[15,54,25],[16,0,34],[16,53,26],[17,0,34],[17,52,27],[18,0,35],[18,51,28],[19,0,38],[19,48,31],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,41],[8,42,37],[9,0,41],[9,50,29],[10,0,36],[10,53,26],[11,0,33],[11,53,26],[12,0,32],[12,54,25],[13,0,32],[13,54,25],[14,0,32],[14,54,25],[15,0,33],[15,54,25],[16,0,34],[16,54,25],[17,0,35],[17,53,26],[18,0,36],[18,52,27],[19,0,38],[19,49,30],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,43],[9,50,29],[10,0,38],[10,52,27],[11,0,35],[11,53,26],[12,0,33],[12,54,25],[13,0,32],[13,54,25],[14,0,32],[14,55,24],[15,0,33],[15,55,24],[16,0,33],[16,55,24],[17,0,34],[17,54,25],[18,0,36],[18,53,26],[19,0,38],[19,49,30],[20,0,41],[20,46,33],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,42],[9,49,30],[10,0,36],[10,37,2],[10,51,28],[11,0,36],[11,53,26],[12,0,35],[12,54,25],[13,0,33],[13,55,24],[14,0,32],[14,55,24],[15,0,32],[15,56,23],[16,0,33],[16,56,23],[17,0,34],[17,55,24],[18,0,36],[18,52,27],[19,0,38],[19,51,28],[20,0,41],[20,48,31],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,41],[9,47,32],[10,0,39],[10,50,29],[11,0,37],[11,52,27],[12,0,35],[12,54,25],[13,0,34],[13,55,24],[14,0,34],[14,56,23],[15,0,33],[15,57,22],[16,0,33],[16,56,23],[17,0,33],[17,55,24],[18,0,35],[18,54,25],[19,0,37],[19,53,26],[20,0,40],[20,50,29],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,39],[10,49,30],[11,0,37],[11,52,27],[12,0,36],[12,55,24],[13,0,34],[13,56,23],[14,0,34],[14,57,22],[15,0,34],[15,57,22],[16,0,34],[16,56,23],[17,0,34],[17,56,23],[18,0,34],[18,55,24],[19,0,36],[19,54,25],[20,0,39],[20,51,28],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,39],[10,48,31],[11,0,37],[11,53,26],[12,0,36],[12,55,24],[13,0,35],[13,56,23],[14,0,34],[14,57,22],[15,0,34],[15,56,23],[16,0,34],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,56,23],[19,0,36],[19,54,25],[20,0,37],[20,52,27],[21,0,41],[21,46,33],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,45],[10,46,33],[11,0,38],[11,53,26],[12,0,36],[12,55,24],[13,0,35],[13,56,23],[14,0,34],[14,56,23],[15,0,34],[15,57,22],[16,0,34],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,56,23],[19,0,36],[19,55,24],[20,0,37],[20,52,27],[21,0,39],[21,49,30],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,40],[11,53,26],[12,0,37],[12,55,24],[13,0,35],[13,55,24],[14,0,34],[14,57,22],[15,0,34],[15,58,21],[16,0,34],[16,58,21],[17,0,34],[17,57,22],[18,0,35],[18,56,23],[19,0,36],[19,55,24],[20,0,38],[20,53,26],[21,0,39],[21,50,29],[22,0,42],[22,45,34],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,41],[11,52,27],[12,0,38],[12,54,25],[13,0,36],[13,56,23],[14,0,35],[14,57,22],[15,0,34],[15,57,22],[16,0,34],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,56,23],[19,0,35],[19,55,24],[20,0,37],[20,54,25],[21,0,40],[21,52,27],[22,0,42],[22,49,30],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,41],[11,51,28],[12,0,39],[12,54,25],[13,0,37],[13,56,23],[14,0,36],[14,57,22],[15,0,35],[15,57,22],[16,0,34],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,56,23],[19,0,35],[19,56,23],[20,0,36],[20,55,24],[21,0,39],[21,53,26],[22,0,43],[22,50,29],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,41],[11,49,30],[12,0,39],[12,54,25],[13,0,37],[13,56,23],[14,0,36],[14,56,23],[15,0,35],[15,57,22],[16,0,35],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,57,22],[19,0,35],[19,56,23],[20,0,36],[20,55,24],[21,0,38],[21,54,25],[22,0,42],[22,51,28],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,43],[11,47,2],[11,51,28],[12,0,39],[12,54,25],[13,0,37],[13,55,24],[14,0,36],[14,56,23],[15,0,36],[15,57,22],[16,0,35],[16,57,22],[17,0,35],[17,57,22],[18,0,35],[18,57,22],[19,0,35],[19,57,22],[20,0,36],[20,56,23],[21,0,38],[21,54,25],[22,0,41],[22,51,28],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,46],[11,50,29],[12,0,38],[12,53,26],[13,0,36],[13,54,25],[14,0,36],[14,56,23],[15,0,35],[15,56,23],[16,0,35],[16,57,22],[17,0,35],[17,57,22],[18,0,35],[18,57,22],[19,0,35],[19,57,22],[20,0,36],[20,55,24],[21,0,38],[21,53,26],[22,0,40],[22,49,30],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,43],[11,49,30],[12,0,40],[12,52,27],[13,0,36],[13,54,25],[14,0,35],[14,55,24],[15,0,35],[15,57,22],[16,0,34],[16,57,22],[17,0,35],[17,57,22],[18,0,35],[18,57,22],[19,0,36],[19,56,23],[20,0,36],[20,54,25],[21,0,37],[21,51,28],[22,0,40],[22,47,32],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,42],[11,47,32],[12,0,38],[12,51,28],[13,0,37],[13,54,25],[14,0,35],[14,56,23],[15,0,34],[15,56,23],[16,0,34],[16,57,22],[17,0,34],[17,57,22],[18,0,35],[18,57,22],[19,0,35],[19,55,24],[20,0,36],[20,53,26],[21,0,38],[21,50,29],[22,0,39],[22,48,31],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,38],[12,51,28],[13,0,36],[13,54,25],[14,0,35],[14,55,24],[15,0,34],[15,56,23],[16,0,33],[16,57,22],[17,0,33],[17,56,23],[18,0,34],[18,55,24],[19,0,35],[19,54,25],[20,0,36],[20,54,25],[21,0,38],[21,51,28],[22,0,40],[22,50,29],[23,0,44],[23,46,33],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,38],[12,51,28],[13,0,36],[13,54,25],[14,0,34],[14,55,24],[15,0,33],[15,56,23],[16,0,33],[16,56,23],[17,0,33],[17,55,24],[18,0,33],[18,55,24],[19,0,34],[19,55,24],[20,0,36],[20,54,25],[21,0,38],[21,52,27],[22,0,40],[22,51,28],[23,0,45],[23,47,32],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,39],[12,51,28],[13,0,36],[13,54,25],[14,0,34],[14,55,24],[15,0,33],[15,55,24],[16,0,33],[16,55,24],[17,0,33],[17,56,23],[18,0,33],[18,56,23],[19,0,34],[19,55,24],[20,0,35],[20,54,25],[21,0,37],[21,53,26],[22,0,40],[22,51,28],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,44],[11,45,34],[12,0,39],[12,51,28],[13,0,36],[13,53,26],[14,0,35],[14,53,26],[15,0,34],[15,55,24],[16,0,33],[16,56,23],[17,0,33],[17,56,23],[18,0,33],[18,56,23],[19,0,34],[19,55,24],[20,0,35],[20,54,25],[21,0,36],[21,53,26],[22,0,39],[22,50,29],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,65],[0,78,1],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,38],[12,50,29],[13,0,36],[13,52,27],[14,0,34],[14,53,26],[15,0,34],[15,55,24],[16,0,33],[16,55,24],[17,0,33],[17,56,23],[18,0,33],[18,55,24],[19,0,33],[19,55,24],[20,0,34],[20,53,26],[21,0,36],[21,51,28],[22,0,38],[22,48,31],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,26],[0,78,1],[1,0,43],[1,78,1],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,37],[12,49,30],[13,0,35],[13,51,28],[14,0,34],[14,54,25],[15,0,33],[15,55,24],[16,0,33],[16,55,24],[17,0,33],[17,55,24],[18,0,33],[18,55,24],[19,0,33],[19,54,25],[20,0,34],[20,52,27],[21,0,36],[21,51,28],[22,0,38],[22,48,31],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,1],[0,53,7],[0,61,1],[0,78,1],[1,0,1],[1,78,1],[2,0,15],[2,78,1],[3,0,79],[4,0,79],[5,0,76],[5,78,1],[6,0,76],[6,78,1],[7,0,75],[7,78,1],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,38],[12,47,32],[13,0,34],[13,52,27],[14,0,33],[14,53,26],[15,0,32],[15,54,25],[16,0,32],[16,54,25],[17,0,32],[17,54,25],[18,0,33],[18,54,25],[19,0,33],[19,53,26],[20,0,34],[20,52,27],[21,0,35],[21,51,28],[22,0,38],[22,49,30],[23,0,42],[23,45,34],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,1],[0,19,27],[0,78,1],[1,0,1],[1,78,1],[2,0,1],[2,78,1],[3,0,1],[3,78,1],[4,0,1],[4,5,52],[4,78,1],[5,0,55],[5,78,1],[6,0,52],[6,78,1],[7,0,53],[7,78,1],[8,0,50],[8,78,1],[9,0,71],[9,78,1],[10,0,73],[10,78,1],[11,0,73],[11,78,1],[12,0,40],[12,50,23],[12,78,1],[13,0,35],[13,52,21],[13,78,1],[14,0,33],[14,53,21],[14,78,1],[15,0,32],[15,53,21],[15,78,1],[16,0,32],[16,53,22],[16,78,1],[17,0,32],[17,54,23],[17,78,1],[18,0,32],[18,53,26],[19,0,33],[19,53,26],[20,0,34],[20,52,27],[21,0,36],[21,51,28],[22,0,38],[22,49,30],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,2],[0,3,1],[0,78,1],[1,0,31],[1,78,1],[2,0,34],[2,78,1],[3,0,37],[3,78,1],[4,0,37],[4,78,1],[5,0,37],[5,78,1],[6,0,40],[6,41,1],[6,78,1],[7,0,55],[7,78,1],[8,0,60],[8,62,5],[8,78,1],[9,0,69],[9,75,4],[10,0,62],[10,63,6],[10,74,5],[11,0,62],[11,72,7],[12,0,41],[12,49,13],[12,68,11],[13,0,37],[13,51,11],[13,68,11],[14,0,34],[14,52,11],[14,70,9],[15,0,32],[15,52,11],[15,72,7],[16,0,31],[16,53,11],[16,74,5],[17,0,31],[17,53,12],[17,77,2],[18,0,32],[18,53,13],[18,71,8],[19,0,33],[19,53,16],[19,70,9],[20,0,34],[20,53,26],[21,0,36],[21,50,29],[22,0,38],[22,48,31],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,8,71],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,9,70],[1,26,1],[1,35,44],[2,32,47],[3,31,48],[4,31,48],[5,32,47],[6,35,44],[7,38,9],[7,59,20],[8,38,8],[8,61,18],[9,37,9],[9,62,17],[10,37,9],[10,64,13],[11,37,11],[11,64,11],[12,34,16],[12,66,7],[13,34,18],[13,68,5],[14,32,20],[14,71,2],[15,31,22],[16,30,24],[17,30,24],[18,30,25],[19,31,23],[20,33,21],[21,34,20],[22,36,16],[23,39,9]],[[0,0,79],[1,0,79],[2,21,58],[3,22,57],[4,23,56],[5,25,54],[6,27,52],[7,29,50],[8,31,45],[9,24,2],[9,27,47],[10,20,52],[11,18,51],[12,18,49],[13,17,48],[14,17,48],[15,17,34],[15,55,1],[15,57,4],[16,17,34],[16,58,1],[17,18,33],[18,19,32],[19,20,31],[20,25,24],[21,28,17],[22,31,11]],[[0,0,79],[1,0,79],[2,0,79],[3,8,71],[4,15,64],[5,15,64],[6,18,61],[7,21,53],[7,76,3],[8,16,54],[9,10,58],[10,8,57],[11,7,56],[12,7,56],[13,7,31],[13,40,21],[14,7,31],[14,45,12],[15,7,31],[15,48,1],[15,50,8],[16,7,31],[16,53,5],[17,8,30],[17,56,1],[18,8,30],[19,9,28],[20,12,22],[21,16,14],[22,18,5]],[[0,5,10],[0,16,63],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,15,64],[7,15,64],[8,13,66],[9,9,57],[9,68,11],[10,2,61],[10,72,7],[11,0,62],[11,78,1],[12,0,60],[13,0,29],[13,32,26],[14,0,29],[14,37,19],[15,0,29],[15,44,13],[16,0,30],[16,49,9],[17,0,30],[17,55,1],[18,0,29],[19,0,28],[20,1,26],[21,4,19],[22,8,11]],[[0,3,16],[0,20,59],[1,2,77],[2,2,77],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,5,74],[10,5,74],[11,0,79],[12,0,62],[12,63,16],[13,0,61],[13,67,12],[14,0,16],[14,32,1],[14,39,21],[14,75,4],[15,0,18],[15,40,20],[16,0,18],[16,41,9],[16,56,3],[17,0,19],[17,43,6],[18,0,18],[18,45,2],[19,0,18],[20,0,17],[21,0,16],[22,0,13],[23,0,9],[24,0,2]],[[0,0,56],[0,65,3],[1,0,71],[2,0,70],[2,75,4],[3,0,9],[3,11,68],[4,0,10],[4,13,66],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,3],[15,4,40],[15,46,1],[15,48,3],[15,53,26],[16,0,3],[16,6,37],[16,61,18],[17,0,3],[17,19,8],[17,33,11],[17,67,12],[18,0,4],[18,34,11],[19,0,3],[19,36,8],[20,0,4],[20,38,4],[21,0,3],[22,0,2]],[[0,0,46],[1,0,46],[1,64,6],[2,0,45],[2,57,11],[3,0,44],[3,46,18],[4,0,46],[4,52,1],[4,58,3],[5,0,45],[5,54,7],[5,68,11],[6,2,77],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,36],[17,39,40],[18,0,36],[18,51,28],[19,18,4],[19,27,10],[19,56,23],[20,28,10],[20,66,13],[21,29,10],[22,31,7],[23,33,3]],[[0,0,16],[0,19,14],[1,0,16],[1,18,16],[2,0,16],[2,17,18],[3,0,37],[4,0,37],[5,0,37],[5,50,7],[6,0,36],[6,46,8],[7,0,38],[7,42,6],[7,73,6],[8,0,42],[8,44,2],[8,51,2],[8,61,18],[9,0,41],[9,46,33],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,31],[21,48,31],[22,22,10],[22,56,23],[23,23,10],[23,69,10],[24,25,8],[25,27,4]],[[0,0,3],[0,18,6],[1,0,4],[1,16,9],[2,0,6],[2,14,12],[3,0,7],[3,13,14],[4,0,9],[4,13,15],[5,0,10],[5,12,17],[6,0,29],[7,0,31],[8,0,31],[9,0,32],[10,0,32],[10,59,20],[11,0,31],[11,34,3],[11,50,29],[12,0,36],[12,42,37],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,38],[23,43,36],[24,17,9],[24,51,28],[25,18,9],[25,63,16],[26,20,8],[26,74,5],[27,22,3]],[[1,0,1],[2,0,2],[2,15,4],[3,0,4],[3,11,10],[4,0,1],[4,10,11],[5,0,1],[5,9,13],[6,0,3],[6,8,15],[7,0,5],[7,8,15],[8,0,24],[9,0,24],[9,36,5],[10,0,24],[10,29,1],[10,33,9],[11,0,41],[12,0,39],[12,53,24],[13,0,28],[13,30,8],[13,43,36],[14,0,29],[14,36,43],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,33],[24,35,44],[25,0,33],[25,41,38],[26,9,21],[26,51,28],[27,14,9],[27,66,13],[28,16,6],[28,69,10],[29,75,3]],[[0,2,1],[4,0,3],[4,9,7],[5,0,3],[5,7,10],[6,0,1],[6,5,13],[7,0,1],[7,4,14],[8,4,14],[9,0,19],[10,0,19],[11,0,20],[12,0,23],[13,0,26],[13,52,10],[13,67,5],[14,0,28],[14,41,30],[14,74,2],[15,0,27],[15,33,43],[16,0,74],[17,0,78],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,28],[25,31,48],[26,0,28],[26,37,40],[27,0,27],[27,47,26],[28,11,12],[28,60,16],[29,12,6],[29,64,11],[30,71,3]],[[0,0,5],[1,0,5],[2,0,6],[3,0,6],[4,0,2],[4,7,5],[5,0,2],[5,4,9],[6,2,12],[7,1,13],[8,0,14],[9,0,15],[10,0,15],[11,0,16],[12,0,19],[13,0,21],[14,0,22],[14,43,24],[15,0,22],[15,33,34],[15,68,3],[16,0,71],[17,0,71],[18,0,75],[19,0,78],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,78],[25,0,24],[25,26,53],[26,0,24],[26,31,48],[27,0,23],[27,39,30],[27,70,2],[28,4,18],[28,50,19],[29,8,7],[29,59,12],[30,11,3],[30,64,5]],[[0,0,3],[1,0,5],[2,0,2],[3,0,3],[4,1,1],[4,6,3],[5,2,8],[6,0,11],[7,0,11],[8,0,12],[9,0,12],[10,0,12],[11,0,15],[12,0,17],[13,0,8],[13,9,1],[13,11,8],[14,0,12],[14,13,6],[14,24,5],[14,42,16],[14,61,2],[15,0,20],[15,21,9],[15,32,33],[15,68,1],[16,0,67],[17,0,67],[18,0,70],[18,71,1],[19,0,74],[20,0,77],[21,0,77],[22,0,76],[23,0,78],[24,0,77],[25,0,21],[25,23,53],[26,0,21],[26,27,50],[27,0,20],[27,35,35],[28,1,18],[28,46,20],[29,5,6],[29,55,13],[30,7,4],[30,59,9]],[[0,0,2],[1,0,3],[2,0,4],[2,5,2],[3,0,7],[4,0,4],[4,7,2],[5,3,7],[6,1,10],[7,0,12],[8,0,12],[9,0,13],[10,0,13],[11,0,16],[12,0,19],[13,0,7],[13,12,8],[14,0,11],[14,15,6],[14,25,5],[14,46,11],[15,0,15],[15,17,13],[15,35,31],[16,0,69],[17,0,69],[18,0,70],[19,0,74],[20,0,76],[21,0,79],[22,0,77],[23,0,78],[24,0,78],[25,0,22],[25,23,54],[26,0,21],[26,27,51],[27,0,20],[27,33,44],[28,0,20],[28,43,24],[28,70,1],[29,6,6],[29,53,13],[30,7,5],[30,59,9]],[[0,0,9],[1,0,7],[1,8,1],[2,0,8],[2,11,1],[3,0,10],[4,0,11],[5,0,14],[6,0,1],[6,2,12],[7,3,11],[8,2,13],[9,1,14],[10,0,16],[11,0,17],[12,0,21],[13,0,9],[13,12,12],[14,0,11],[14,17,8],[15,0,17],[15,20,14],[15,42,21],[15,64,3],[16,0,34],[16,35,33],[17,0,22],[17,24,48],[18,0,72],[19,0,74],[19,76,1],[20,0,77],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,24],[26,27,52],[27,0,23],[27,31,48],[28,0,22],[28,39,40],[29,3,18],[29,51,20],[29,72,1],[30,8,6],[30,58,13]],[[0,0,8],[1,0,16],[2,0,16],[3,0,14],[3,15,1],[4,0,13],[4,15,1],[5,0,16],[6,0,17],[7,0,2],[7,3,2],[7,6,12],[8,0,3],[8,6,12],[9,0,2],[9,5,14],[10,0,19],[11,0,20],[12,0,24],[13,0,28],[14,0,31],[15,0,20],[15,22,1],[15,26,7],[15,52,11],[16,0,38],[16,41,32],[17,0,24],[17,25,2],[17,28,45],[17,75,2],[18,0,77],[19,0,76],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,27],[27,32,47],[28,0,26],[28,37,42],[29,0,26],[29,47,31],[30,8,16],[30,58,16],[30,77,1]],[[0,0,7],[0,11,3],[1,0,9],[2,0,17],[3,0,21],[4,0,16],[4,19,2],[5,0,24],[6,0,21],[7,0,22],[8,0,23],[9,0,7],[9,10,13],[10,0,8],[10,9,15],[11,0,24],[12,0,24],[13,0,30],[14,0,38],[15,0,44],[16,0,30],[16,37,6],[16,53,15],[16,69,1],[16,71,1],[16,75,1],[17,0,26],[17,27,1],[17,29,13],[17,43,36],[18,0,31],[18,33,46],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,32],[28,37,42],[29,0,31],[29,44,35],[30,3,27],[30,55,24]],[[0,0,13],[0,16,5],[1,0,17],[1,18,1],[2,0,21],[3,0,26],[4,0,24],[5,0,26],[6,0,30],[7,0,32],[8,0,28],[8,31,1],[9,0,29],[10,0,13],[10,15,14],[11,0,29],[12,0,30],[13,0,30],[14,0,40],[14,44,6],[15,0,50],[16,0,41],[16,43,4],[17,0,30],[17,33,7],[17,55,24],[18,0,33],[18,37,42],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,38],[29,43,36],[30,1,35],[30,51,28]],[[0,0,29],[1,0,28],[2,0,34],[3,0,38],[4,0,31],[4,36,2],[5,0,34],[6,0,37],[7,0,39],[8,0,21],[8,23,11],[8,38,1],[9,0,22],[9,23,12],[10,0,35],[11,0,20],[11,21,14],[12,0,36],[13,0,36],[14,0,36],[15,0,55],[16,0,57],[17,0,2],[17,5,43],[17,74,1],[18,5,32],[18,42,9],[18,59,20],[19,3,38],[19,45,34],[20,1,78],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,44],[30,50,29]],[[0,0,38],[1,0,45],[2,0,45],[2,46,2],[3,0,42],[4,0,45],[5,0,49],[6,0,49],[7,0,44],[8,0,30],[8,31,11],[9,0,41],[10,0,41],[11,0,26],[11,28,14],[12,0,27],[12,28,15],[13,0,43],[14,0,43],[15,0,43],[16,0,48],[16,49,12],[17,0,9],[17,11,52],[18,0,8],[18,12,30],[18,45,15],[18,61,2],[18,76,3],[19,0,6],[19,11,34],[19,52,27],[20,0,5],[20,9,45],[20,55,24],[21,0,3],[21,7,72],[22,0,3],[22,5,74],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,50],[1,0,47],[1,48,3],[2,3,57],[3,8,52],[4,7,51],[5,6,50],[6,5,50],[7,4,47],[7,52,4],[8,4,35],[9,3,44],[10,1,31],[10,34,13],[11,1,32],[11,36,12],[12,2,32],[12,35,17],[13,0,1],[13,4,48],[14,0,52],[15,0,51],[16,0,51],[17,0,16],[17,17,39],[18,0,15],[18,18,49],[19,3,11],[19,19,31],[19,54,16],[20,4,8],[20,17,35],[20,61,18],[21,2,9],[21,15,64],[22,0,9],[22,13,66],[23,0,9],[23,11,68],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,3,76],[29,4,75],[30,4,75]],[[0,6,62],[1,7,61],[2,9,55],[3,13,54],[4,16,53],[5,15,38],[5,57,6],[5,68,1],[6,13,42],[6,59,2],[7,13,40],[7,54,1],[8,0,2],[8,13,34],[9,0,3],[9,12,38],[10,0,4],[10,11,28],[10,41,13],[11,0,4],[11,10,30],[11,44,10],[12,0,6],[12,11,30],[12,42,18],[13,0,9],[13,12,29],[13,42,19],[14,0,12],[14,13,48],[15,0,60],[16,2,57],[17,5,55],[18,7,15],[18,24,40],[19,10,11],[19,26,47],[20,11,9],[20,25,32],[20,60,19],[21,9,9],[21,23,37],[21,65,14],[22,8,9],[22,22,57],[23,6,9],[23,20,59],[24,5,10],[24,18,61],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,7,72],[30,11,68]],[[0,12,53],[0,66,3],[0,70,1],[1,14,64],[2,16,63],[3,17,57],[4,22,36],[4,61,11],[5,23,38],[5,69,5],[6,22,40],[6,67,1],[6,72,2],[7,0,8],[7,21,35],[7,60,3],[8,0,10],[8,21,33],[8,61,1],[9,0,12],[9,22,36],[10,0,12],[10,20,25],[10,47,13],[11,0,12],[11,19,27],[11,51,9],[12,0,14],[12,19,28],[12,50,10],[13,0,16],[13,20,28],[13,49,20],[14,0,18],[14,21,47],[15,8,60],[16,10,58],[17,12,56],[18,15,53],[19,17,12],[19,32,41],[20,18,10],[20,33,46],[21,17,9],[21,32,33],[21,68,11],[22,15,9],[22,30,38],[22,72,7],[23,14,9],[23,28,51],[24,12,9],[24,26,53],[25,11,10],[25,24,55],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,13,66]],[[0,21,56],[1,20,59],[2,21,58],[3,23,56],[4,25,39],[4,66,4],[4,72,1],[4,74,4],[5,29,37],[5,69,4],[5,78,1],[6,30,39],[7,9,6],[7,29,33],[7,65,5],[8,6,12],[8,29,34],[8,68,4],[9,4,15],[9,29,34],[10,2,18],[10,28,38],[11,2,18],[11,27,25],[11,54,4],[11,62,3],[12,3,17],[12,27,26],[12,57,8],[13,5,18],[13,28,26],[13,56,20],[14,8,17],[14,29,25],[14,56,21],[15,15,12],[15,29,48],[16,17,59],[17,19,57],[18,21,55],[19,24,13],[19,38,38],[20,25,11],[20,39,40],[21,24,10],[21,39,40],[22,22,9],[22,38,34],[22,76,3],[23,21,9],[23,36,40],[24,20,8],[24,34,45],[25,18,9],[25,32,47],[26,16,11],[26,30,49],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,23,53],[1,26,53],[2,27,52],[3,28,51],[4,30,49],[5,32,44],[6,36,35],[6,76,3],[7,36,39],[8,14,10],[8,35,30],[8,69,1],[8,71,6],[9,12,13],[9,35,33],[9,74,4],[10,10,16],[10,35,34],[11,10,16],[11,34,31],[11,67,1],[12,10,16],[12,33,25],[12,59,6],[12,66,4],[13,12,16],[13,33,26],[13,63,7],[14,15,15],[14,34,26],[14,61,18],[15,20,12],[15,34,26],[15,61,18],[16,23,56],[17,25,54],[18,27,52],[19,30,49],[20,31,11],[20,44,35],[21,30,11],[21,45,34],[22,29,9],[22,45,34],[23,28,8],[23,43,36],[24,26,9],[24,41,38],[25,25,8],[25,40,39],[26,23,9],[26,37,42],[27,21,10],[27,35,44],[28,0,31],[28,32,47],[29,0,79],[30,0,79]],[[0,27,52],[1,28,51],[2,32,47],[3,32,47],[4,34,45],[5,35,44],[6,37,2],[6,40,39],[7,41,34],[7,78,1],[8,21,7],[8,41,37],[9,19,11],[9,40,29],[9,72,1],[9,75,4],[10,17,14],[10,41,30],[10,78,1],[11,16,16],[11,39,34],[12,16,15],[12,38,31],[12,71,1],[13,18,13],[13,37,26],[13,64,10],[14,20,14],[14,38,26],[14,67,7],[15,24,13],[15,39,25],[15,66,13],[16,28,37],[16,66,13],[17,30,49],[18,32,47],[19,34,45],[20,36,43],[21,35,11],[21,49,30],[22,34,10],[22,50,29],[23,33,8],[23,49,30],[24,32,8],[24,48,31],[25,31,8],[25,46,33],[26,29,8],[26,44,35],[27,27,9],[27,42,37],[28,26,9],[28,39,40],[29,0,35],[29,36,43],[30,0,79]],[[0,27,52],[1,29,50],[2,33,46],[3,35,44],[4,36,43],[5,38,41],[6,39,40],[7,44,35],[8,26,4],[8,45,34],[9,23,10],[9,44,35],[10,22,12],[10,44,28],[10,74,5],[11,21,14],[11,44,30],[12,21,14],[12,42,34],[13,22,12],[13,41,30],[13,76,1],[14,23,14],[14,41,25],[14,70,7],[15,26,1],[15,28,11],[15,42,25],[15,70,7],[16,31,37],[16,70,9],[17,33,35],[17,70,9],[18,35,44],[19,37,42],[20,39,40],[21,40,10],[21,51,28],[22,38,10],[22,52,27],[23,37,8],[23,53,26],[24,36,8],[24,52,27],[25,35,8],[25,51,28],[26,34,7],[26,49,30],[27,32,8],[27,47,32],[28,30,9],[28,45,34],[29,0,5],[29,29,9],[29,42,37],[30,0,79]],[[0,27,52],[1,29,50],[2,32,47],[3,35,44],[4,37,42],[5,39,40],[6,40,39],[7,41,38],[8,46,33],[9,26,8],[9,47,32],[10,25,11],[10,46,33],[11,23,14],[11,46,33],[12,23,14],[12,45,31],[13,24,12],[13,44,34],[14,25,13],[14,43,29],[14,76,1],[14,78,1],[15,27,13],[15,43,25],[15,71,1],[15,73,6],[16,33,10],[16,44,25],[16,72,7],[17,35,35],[17,72,7],[18,37,34],[18,72,7],[19,39,40],[20,41,38],[21,42,37],[22,41,9],[22,54,25],[23,40,8],[23,55,24],[24,39,8],[24,55,24],[25,38,8],[25,54,25],[26,37,7],[26,53,26],[27,35,8],[27,51,28],[28,34,7],[28,49,30],[29,32,8],[29,46,33],[30,0,16],[30,30,10],[30,43,36]],[[0,26,53],[1,29,50],[2,32,47],[3,35,44],[4,39,40],[5,40,39],[6,42,37],[7,43,36],[8,48,31],[9,31,4],[9,49,30],[10,28,10],[10,49,30],[11,26,13],[11,48,31],[12,25,14],[12,48,31],[13,26,13],[13,47,30],[14,27,12],[14,45,34],[15,28,14],[15,45,28],[15,77,2],[16,32,12],[16,45,26],[16,74,5],[17,37,36],[17,74,5],[18,39,34],[18,74,5],[19,41,38],[20,42,37],[21,44,35],[22,44,10],[22,55,24],[23,43,8],[23,56,23],[24,42,8],[24,58,21],[25,41,8],[25,58,21],[26,40,7],[26,56,23],[27,39,7],[27,54,25],[28,37,8],[28,53,26],[29,36,7],[29,50,29],[30,33,9],[30,47,32]],[[0,27,52],[1,29,50],[2,33,46],[3,35,44],[4,39,40],[5,41,38],[6,43,36],[7,44,35],[8,46,33],[9,50,29],[10,31,8],[10,51,28],[11,29,11],[11,50,29],[12,27,14],[12,50,29],[13,27,14],[13,50,29],[14,28,13],[14,48,31],[15,29,13],[15,47,27],[15,77,2],[16,32,12],[16,47,27],[16,75,1],[17,38,9],[17,48,26],[17,76,3],[18,40,35],[18,76,3],[19,41,38],[20,43,36],[21,44,35],[22,47,32],[23,46,9],[23,58,21],[24,44,8],[24,59,20],[25,43,8],[25,60,19],[26,42,8],[26,60,19],[27,41,8],[27,58,21],[28,40,8],[28,56,23],[29,39,7],[29,54,25],[30,37,8],[30,51,28]],[[0,28,51],[1,29,50],[2,32,47],[3,35,44],[4,38,41],[5,42,37],[6,43,36],[7,45,34],[8,47,32],[9,52,27],[10,34,5],[10,53,26],[11,32,9],[11,53,26],[12,29,13],[12,51,28],[13,29,14],[13,52,27],[14,29,14],[14,51,28],[15,30,12],[15,49,30],[16,32,13],[16,48,27],[16,78,1],[17,36,11],[17,48,28],[18,40,8],[18,49,27],[18,78,1],[19,42,35],[19,78,1],[20,44,35],[21,45,34],[22,46,33],[23,48,31],[24,47,9],[24,59,20],[25,45,9],[25,61,18],[26,45,8],[26,62,17],[27,44,8],[27,61,18],[28,43,7],[28,60,19],[29,42,7],[29,58,21],[30,40,7],[30,55,24]],[[0,28,51],[1,30,49],[2,32,47],[3,35,44],[4,38,41],[5,42,37],[6,44,35],[7,46,33],[8,47,32],[9,48,31],[10,36,3],[10,53,26],[11,33,8],[11,54,25],[12,31,12],[12,53,26],[13,30,14],[13,53,26],[14,30,14],[14,53,26],[15,30,13],[15,51,28],[16,32,13],[16,50,29],[17,34,13],[17,49,28],[18,40,9],[18,50,28],[19,42,36],[20,44,35],[21,45,34],[22,46,33],[23,48,31],[24,49,10],[24,60,19],[25,48,9],[25,61,18],[26,46,8],[26,62,17],[27,45,8],[27,63,16],[28,44,8],[28,63,16],[29,44,7],[29,61,18],[30,42,8],[30,59,20]],[[0,28,51],[1,30,49],[2,32,47],[3,35,44],[4,38,41],[5,42,37],[6,45,34],[7,45,34],[8,47,32],[9,49,30],[10,50,2],[10,53,26],[11,34,7],[11,55,24],[12,33,10],[12,55,24],[13,31,13],[13,54,25],[14,30,15],[14,54,25],[15,31,13],[15,53,26],[16,32,12],[16,52,27],[17,34,13],[17,50,29],[18,39,10],[18,50,28],[19,42,37],[20,44,35],[21,45,34],[22,46,33],[23,48,31],[24,49,30],[25,49,10],[25,61,18],[26,48,9],[26,62,17],[27,47,8],[27,63,16],[28,46,8],[28,64,15],[29,45,8],[29,64,15],[30,44,8],[30,62,17]],[[0,28,51],[1,29,50],[2,32,47],[3,34,45],[4,38,41],[5,41,38],[6,44,35],[7,45,34],[8,47,32],[9,48,31],[10,50,29],[11,36,5],[11,55,24],[12,34,9],[12,56,23],[13,32,13],[13,55,24],[14,31,14],[14,54,25],[15,31,14],[15,54,25],[16,32,12],[16,53,26],[17,34,13],[17,52,27],[18,36,12],[18,51,28],[19,42,8],[19,51,28],[20,43,36],[21,44,35],[22,46,33],[23,47,32],[24,48,31],[25,50,29],[26,50,9],[26,61,18],[27,48,9],[27,63,16],[28,47,8],[28,64,15],[29,46,8],[29,65,14],[30,45,8],[30,65,14]],[[0,28,51],[1,28,51],[2,31,48],[3,33,46],[4,37,42],[5,39,40],[6,42,37],[7,46,33],[8,45,34],[9,47,32],[10,49,30],[11,37,4],[11,50,3],[11,54,25],[12,34,9],[12,56,23],[13,32,13],[13,56,23],[14,31,14],[14,55,24],[15,31,15],[15,55,24],[16,31,13],[16,55,24],[17,33,13],[17,53,26],[18,35,13],[18,52,27],[19,41,9],[19,51,28],[20,43,36],[21,44,35],[22,45,34],[23,46,33],[24,47,32],[25,48,31],[26,50,29],[27,50,10],[27,62,17],[28,48,8],[28,63,16],[29,47,8],[29,64,15],[30,46,8],[30,65,14]],[[0,26,53],[1,27,52],[2,29,50],[3,31,48],[4,35,44],[5,37,42],[6,41,38],[7,44,35],[8,46,33],[9,47,32],[10,48,31],[11,38,2],[11,50,29],[12,35,8],[12,55,24],[13,33,11],[13,56,23],[14,31,14],[14,56,23],[15,31,15],[15,55,24],[16,31,14],[16,55,24],[17,32,13],[17,54,25],[18,34,13],[18,53,26],[19,38,11],[19,51,28],[20,42,8],[20,51,28],[21,44,35],[22,45,34],[23,46,33],[24,47,32],[25,48,31],[26,48,31],[27,50,10],[27,61,18],[28,49,10],[28,62,17],[29,48,8],[29,63,16],[30,46,9],[30,64,15]],[[0,23,56],[1,25,54],[2,27,52],[3,29,50],[4,32,47],[5,35,44],[6,37,42],[7,40,39],[8,44,35],[9,45,34],[10,47,32],[11,48,31],[12,35,7],[12,50,29],[13,33,11],[13,55,24],[14,31,14],[14,57,22],[15,31,15],[15,56,23],[16,31,15],[16,55,24],[17,32,13],[17,55,24],[18,33,14],[18,54,25],[19,36,12],[19,52,27],[20,42,8],[20,51,28],[21,43,36],[22,44,35],[23,45,34],[24,46,33],[25,46,33],[26,47,32],[27,48,31],[28,49,11],[28,61,18],[29,48,10],[29,62,17],[30,47,8],[30,63,16]],[[0,22,54],[1,23,56],[2,26,53],[3,27,52],[4,29,50],[5,33,46],[6,35,44],[7,38,41],[8,41,38],[9,45,34],[10,46,33],[11,47,32],[12,36,6],[12,49,30],[13,34,10],[13,50,2],[13,55,24],[14,31,14],[14,56,23],[15,30,16],[15,56,23],[16,30,16],[16,55,24],[17,31,13],[17,55,24],[18,33,13],[18,55,24],[19,34,14],[19,53,26],[20,41,8],[20,51,28],[21,42,37],[22,43,36],[23,44,35],[24,45,34],[25,45,34],[26,46,33],[27,47,32],[28,48,31],[29,48,11],[29,61,18],[30,47,9],[30,62,17]],[[0,21,56],[1,22,56],[2,24,55],[3,26,53],[4,28,51],[5,31,48],[6,34,45],[7,36,43],[8,39,40],[9,43,36],[10,44,35],[11,46,33],[12,36,5],[12,48,31],[13,33,10],[13,49,30],[14,31,14],[14,55,24],[15,30,15],[15,56,23],[16,30,16],[16,55,24],[17,30,14],[17,54,25],[18,32,13],[18,54,25],[19,34,13],[19,54,25],[20,38,10],[20,52,27],[21,42,7],[21,50,29],[22,43,36],[23,43,36],[24,44,35],[25,45,34],[26,45,34],[27,46,33],[28,46,33],[29,47,32],[30,47,10],[30,61,18]],[[0,20,57],[1,21,56],[2,23,56],[3,26,53],[4,27,52],[5,30,49],[6,33,46],[7,36,43],[8,39,40],[9,42,37],[10,44,35],[11,45,34],[12,36,5],[12,46,33],[13,33,10],[13,48,31],[14,32,12],[14,49,3],[14,53,26],[15,30,15],[15,55,24],[16,30,15],[16,56,23],[17,30,15],[17,54,25],[18,31,14],[18,54,25],[19,33,13],[19,54,25],[20,36,11],[20,53,26],[21,41,7],[21,51,28],[22,42,37],[23,42,37],[24,43,36],[25,44,35],[26,44,35],[27,45,34],[28,45,34],[29,46,33],[30,46,11],[30,59,20]],[[0,20,59],[1,21,56],[2,23,55],[3,25,54],[4,27,52],[5,29,50],[6,33,46],[7,35,44],[8,38,41],[9,40,39],[10,43,36],[11,43,36],[12,37,3],[12,45,34],[13,33,9],[13,47,32],[14,32,12],[14,48,31],[15,30,15],[15,50,1],[15,55,24],[16,29,16],[16,56,23],[17,29,16],[17,55,24],[18,31,13],[18,54,25],[19,32,14],[19,54,25],[20,34,13],[20,53,26],[21,41,7],[21,51,28],[22,42,7],[22,50,29],[23,42,37],[24,43,36],[25,43,36],[26,44,35],[27,44,35],[28,45,34],[29,45,34],[30,45,34]],[[0,20,59],[1,21,57],[2,23,54],[3,25,54],[4,27,52],[5,29,50],[6,33,46],[7,34,45],[8,38,41],[9,39,40],[10,44,35],[11,43,36],[12,45,34],[13,34,8],[13,46,33],[14,32,12],[14,47,32],[15,30,15],[15,49,2],[15,54,25],[16,30,15],[16,55,24],[17,30,15],[17,55,24],[18,30,14],[18,54,25],[19,32,14],[19,53,26],[20,34,13],[20,53,26],[21,41,7],[21,52,27],[22,41,7],[22,50,29],[23,42,37],[24,42,37],[25,43,36],[26,43,36],[27,44,35],[28,44,35],[29,44,35],[30,45,34]],[[0,20,59],[1,22,57],[2,23,54],[3,26,52],[4,27,52],[5,30,49],[6,33,46],[7,36,43],[8,38,41],[9,39,40],[10,41,38],[11,44,35],[12,44,35],[13,36,6],[13,45,34],[14,33,11],[14,47,32],[15,31,14],[15,48,5],[15,54,25],[16,30,16],[16,54,25],[17,30,16],[17,55,24],[18,31,14],[18,54,25],[19,32,14],[19,53,26],[20,34,13],[20,53,26],[21,40,8],[21,53,26],[22,42,6],[22,51,28],[23,42,37],[24,43,36],[25,43,36],[26,43,36],[27,44,35],[28,44,35],[29,44,35],[30,45,34]],[[0,21,58],[1,22,57],[2,25,52],[3,26,51],[4,28,51],[5,31,48],[6,34,45],[7,35,44],[8,39,40],[9,40,39],[10,40,39],[11,44,35],[12,43,36],[13,37,5],[13,45,34],[14,34,10],[14,47,32],[15,32,13],[15,48,31],[16,31,15],[16,49,2],[16,54,25],[17,31,16],[17,55,24],[18,31,15],[18,55,24],[19,32,14],[19,53,26],[20,34,13],[20,53,26],[21,38,10],[21,53,26],[22,42,7],[22,51,28],[23,42,37],[24,43,36],[25,43,36],[26,44,35],[27,44,35],[28,44,35],[29,44,35],[30,45,34]],[[0,21,58],[1,23,56],[2,25,54],[3,26,51],[4,28,49],[5,30,49],[6,33,46],[7,36,43],[8,37,42],[9,40,39],[10,40,39],[11,44,35],[12,43,36],[13,38,4],[13,45,34],[14,35,9],[14,46,33],[15,33,12],[15,47,32],[16,31,16],[16,49,30],[17,31,16],[17,54,25],[18,31,16],[18,55,24],[19,33,13],[19,54,25],[20,34,13],[20,53,26],[21,37,12],[21,53,26],[22,42,7],[22,52,27],[23,43,36],[24,43,36],[25,44,35],[26,44,35],[27,44,35],[28,44,35],[29,44,35],[30,45,34]],[[0,22,57],[1,23,56],[2,25,54],[3,27,52],[4,28,49],[5,30,49],[6,33,46],[7,35,44],[8,37,42],[9,40,39],[10,40,39],[11,44,35],[12,43,36],[13,40,2],[13,44,35],[14,35,9],[14,46,33],[15,34,12],[15,47,32],[16,32,15],[16,48,31],[17,32,16],[17,53,26],[18,32,16],[18,55,24],[19,33,13],[19,54,25],[20,35,13],[20,53,26],[21,36,13],[21,53,26],[22,43,6],[22,52,27],[23,43,7],[23,51,28],[24,44,35],[25,44,35],[26,44,35],[27,44,35],[28,45,34],[29,45,34],[30,45,34]],[[0,22,19],[0,45,34],[1,23,56],[2,25,54],[3,27,52],[4,28,50],[5,30,47],[6,32,47],[7,35,44],[8,36,43],[9,39,40],[10,40,39],[11,41,38],[12,44,35],[13,43,36],[14,37,7],[14,45,34],[15,36,43],[16,33,46],[17,32,16],[17,49,2],[17,53,26],[18,32,16],[18,54,25],[19,33,14],[19,54,25],[20,35,13],[20,53,26],[21,36,13],[21,53,26],[22,42,8],[22,53,26],[23,44,6],[23,51,28],[24,44,35],[25,44,35],[26,45,34],[27,45,34],[28,45,34],[29,45,34],[30,45,34]],[[0,22,19],[0,47,32],[1,23,56],[2,25,54],[3,27,52],[4,28,51],[5,30,47],[6,32,47],[7,35,44],[8,36,43],[9,38,41],[10,40,39],[11,41,38],[12,44,35],[13,43,36],[14,36,1],[14,39,4],[14,44,35],[15,36,43],[16,34,45],[17,33,46],[18,33,16],[18,53,26],[19,33,15],[19,54,25],[20,35,13],[20,53,26],[21,36,13],[21,52,27],[22,40,10],[22,52,27],[23,44,6],[23,52,27],[24,44,35],[25,45,34],[26,45,34],[27,45,34],[28,45,34],[29,45,34],[30,45,34]],[[0,22,19],[0,47,1],[0,51,28],[1,23,56],[2,24,55],[3,26,53],[4,28,51],[5,29,49],[6,32,45],[7,34,45],[8,35,44],[9,37,42],[10,40,39],[11,40,39],[12,44,35],[13,43,36],[14,41,1],[14,43,36],[15,38,41],[16,36,43],[17,34,45],[18,33,17],[18,53,26],[19,33,15],[19,53,26],[20,35,13],[20,53,26],[21,36,13],[21,52,27],[22,38,12],[22,52,27],[23,44,7],[23,52,27],[24,45,34],[25,45,34],[26,45,34],[27,46,33],[28,46,33],[29,46,33],[30,46,33]],[[0,21,20],[0,52,27],[1,22,19],[1,42,1],[1,44,35],[2,24,55],[3,26,53],[4,27,52],[5,29,50],[6,31,46],[7,33,45],[8,35,44],[9,36,43],[10,39,40],[11,40,39],[12,41,38],[13,43,36],[14,43,36],[15,38,41],[16,37,42],[17,34,45],[18,34,17],[18,52,27],[19,34,16],[19,53,26],[20,35,13],[20,53,26],[21,36,13],[21,52,27],[22,37,13],[22,52,27],[23,43,8],[23,52,27],[24,45,34],[25,46,33],[26,46,33],[27,46,33],[28,46,33],[29,46,33],[30,46,33]],[[0,19,21],[0,52,27],[1,21,19],[1,42,1],[1,47,32],[2,23,56],[3,24,55],[4,26,53],[5,28,51],[6,29,48],[7,32,45],[8,34,45],[9,35,44],[10,38,41],[11,39,40],[12,40,39],[13,43,36],[14,43,36],[15,40,39],[16,38,41],[17,35,44],[18,34,45],[19,34,16],[19,52,27],[20,35,14],[20,53,26],[21,36,13],[21,52,27],[22,37,14],[22,52,27],[23,42,9],[23,52,27],[24,46,33],[25,46,33],[26,46,33],[27,46,33],[28,47,32],[29,47,32],[30,47,32]],[[0,20,19],[0,52,27],[1,19,20],[1,49,30],[2,21,58],[3,22,57],[4,24,55],[5,26,53],[6,28,48],[7,30,46],[8,32,46],[9,34,45],[10,36,43],[11,38,41],[12,39,40],[13,43,36],[14,42,37],[15,41,38],[16,38,41],[17,36,43],[18,35,16],[18,52,27],[19,34,16],[19,52,27],[20,35,15],[20,53,26],[21,36,13],[21,53,26],[22,37,42],[23,40,39],[24,46,33],[25,46,33],[26,47,32],[27,47,32],[28,47,32],[29,47,32],[30,47,32]],[[0,18,19],[0,51,28],[1,18,19],[1,49,30],[2,17,21],[2,44,35],[3,20,59],[4,21,58],[5,24,55],[6,25,50],[6,78,1],[7,27,48],[8,29,46],[9,32,47],[10,34,45],[11,37,42],[12,38,41],[13,39,40],[14,43,36],[15,42,37],[16,38,41],[17,38,41],[18,35,44],[19,35,15],[19,52,27],[20,35,15],[20,52,27],[21,35,14],[21,53,26],[22,37,42],[23,40,39],[24,46,33],[25,47,32],[26,47,32],[27,47,32],[28,47,32],[29,48,31],[30,48,31]],[[0,22,14],[0,50,27],[1,17,4],[1,23,13],[1,48,31],[2,16,20],[2,46,33],[3,17,62],[4,17,62],[5,20,59],[6,22,51],[6,77,2],[7,24,49],[8,26,47],[9,29,50],[10,32,47],[11,34,45],[12,37,42],[13,38,41],[14,43,36],[15,41,38],[16,38,2],[16,41,38],[17,38,41],[18,36,43],[19,35,15],[19,51,28],[20,35,15],[20,52,27],[21,35,15],[21,52,27],[22,37,42],[23,39,40],[24,46,33],[25,47,32],[26,47,32],[27,47,32],[28,47,32],[29,48,31],[30,48,31]],[[0,20,15],[0,49,26],[1,21,14],[1,46,31],[2,17,2],[2,22,12],[2,45,34],[3,16,18],[3,43,36],[4,15,64],[5,15,64],[6,18,54],[6,76,3],[7,20,52],[8,23,48],[9,26,52],[10,29,50],[11,31,48],[12,35,44],[13,36,43],[14,37,42],[15,42,37],[16,41,38],[17,38,41],[18,36,43],[19,35,44],[20,35,15],[20,51,28],[21,35,15],[21,52,27],[22,37,42],[23,39,40],[24,45,34],[25,47,32],[26,48,31],[27,47,32],[28,47,32],[29,48,31],[30,48,31]],[[0,20,17],[0,48,25],[1,20,17],[1,46,29],[2,22,13],[2,44,33],[3,23,10],[3,42,37],[4,14,8],[4,24,9],[4,40,39],[5,14,65],[6,13,57],[6,76,3],[7,14,1],[7,16,54],[7,78,1],[8,19,51],[9,22,56],[10,25,54],[11,29,50],[12,32,47],[13,35,44],[14,36,43],[15,42,37],[16,40,39],[17,38,41],[18,37,42],[19,35,44],[20,35,15],[20,51,28],[21,35,15],[21,52,27],[22,37,42],[23,39,40],[24,45,34],[25,47,32],[26,48,31],[27,47,30],[28,47,31],[29,48,31],[30,48,31]],[[0,20,18],[0,47,25],[1,20,18],[1,45,29],[2,21,15],[2,43,33],[3,22,13],[3,42,36],[4,23,10],[4,40,39],[5,14,6],[5,24,9],[5,35,33],[5,72,7],[6,13,55],[6,75,4],[7,14,54],[7,78,1],[8,16,52],[9,18,61],[10,21,58],[11,25,54],[12,30,49],[13,34,45],[14,35,44],[15,38,1],[15,41,38],[16,41,38],[17,39,40],[18,37,42],[19,35,44],[20,35,14],[20,51,28],[21,35,15],[21,51,28],[22,37,42],[23,38,41],[24,45,34],[25,47,32],[26,48,28],[27,46,30],[28,46,31],[29,48,30],[30,48,31]],[[0,20,9],[0,48,22],[1,18,18],[1,45,28],[2,19,17],[2,43,32],[3,20,15],[3,41,36],[4,21,12],[4,40,39],[5,22,10],[5,38,29],[5,71,8],[6,15,3],[6,23,44],[6,75,4],[7,14,53],[7,78,1],[8,13,54],[9,14,63],[10,18,61],[11,21,58],[12,26,53],[13,31,48],[14,34,45],[15,36,3],[15,40,39],[16,41,38],[17,37,42],[18,37,42],[19,35,14],[19,50,29],[20,35,14],[20,50,29],[21,35,14],[21,51,28],[22,36,43],[23,38,41],[24,45,34],[25,47,26],[25,75,3],[26,47,27],[26,77,1],[27,46,29],[28,46,30],[29,47,30],[30,47,31]],[[0,22,5],[0,49,19],[1,19,8],[1,45,26],[2,17,13],[2,43,31],[3,17,17],[3,42,34],[4,17,16],[4,40,38],[5,19,12],[5,39,27],[5,69,10],[6,21,10],[6,33,33],[6,74,5],[7,15,2],[7,23,43],[8,14,52],[9,14,60],[10,15,64],[11,18,61],[12,23,56],[13,30,49],[14,34,45],[15,36,3],[15,40,39],[16,41,38],[17,37,42],[18,37,42],[19,35,44],[20,35,13],[20,50,29],[21,35,14],[21,50,29],[22,36,43],[23,38,41],[24,45,26],[24,72,6],[25,46,26],[25,76,3],[26,46,28],[26,78,1],[27,46,29],[28,47,29],[29,47,30],[30,47,31]],[[0,49,1],[0,51,15],[1,22,1],[1,46,23],[2,19,5],[2,43,29],[3,18,6],[3,42,32],[4,16,15],[4,40,37],[5,16,15],[5,39,40],[6,17,13],[6,33,32],[6,72,7],[7,20,45],[7,78,1],[8,15,50],[9,14,56],[10,15,64],[11,17,62],[12,22,57],[13,28,51],[14,34,45],[15,36,3],[15,40,39],[16,41,38],[17,39,40],[18,37,42],[19,35,13],[19,49,30],[20,34,14],[20,50,29],[21,35,13],[21,50,29],[22,36,43],[23,38,41],[24,45,32],[25,46,26],[25,74,4],[26,45,28],[26,77,2],[27,46,28],[27,78,1],[28,46,29],[28,78,1],[29,46,30],[29,78,1],[30,47,29],[30,78,1]],[[0,51,1],[0,56,4],[0,61,1],[1,47,20],[2,44,25],[3,42,30],[4,18,4],[4,40,35],[5,17,13],[5,40,39],[6,16,14],[6,36,28],[6,69,10],[7,16,48],[7,74,5],[8,19,45],[9,15,51],[10,16,59],[11,16,63],[12,22,57],[13,27,52],[14,34,45],[15,36,1],[15,40,39],[16,40,39],[17,38,41],[18,36,43],[19,34,14],[19,49,30],[20,34,13],[20,50,29],[21,35,12],[21,48,31],[22,36,43],[23,39,40],[24,45,31],[24,77,2],[25,45,26],[25,72,4],[26,45,27],[26,75,4],[27,45,28],[27,76,3],[28,46,28],[28,76,3],[29,46,29],[29,76,3],[30,46,29],[30,76,3]],[[1,48,16],[2,44,23],[3,42,28],[4,41,32],[5,18,2],[5,22,4],[5,39,38],[6,17,13],[6,37,26],[6,65,14],[7,17,46],[7,71,8],[8,17,46],[9,16,47],[10,17,55],[11,18,61],[12,23,56],[13,29,50],[14,34,45],[15,36,1],[15,40,39],[16,40,39],[17,36,43],[18,36,43],[19,34,13],[19,48,31],[20,34,13],[20,49,30],[21,35,12],[21,48,31],[22,36,43],[23,42,37],[24,44,35],[25,44,30],[25,77,2],[26,45,26],[26,72,7],[27,45,27],[27,75,4],[28,45,28],[28,75,4],[29,45,29],[29,75,4],[30,45,34]],[[1,50,1],[1,52,9],[2,45,19],[3,43,24],[4,41,29],[5,24,3],[5,40,34],[6,10,1],[6,21,11],[6,38,41],[7,18,13],[7,32,30],[7,68,10],[8,18,44],[9,16,46],[10,17,52],[11,18,59],[12,24,55],[13,30,49],[14,33,1],[14,35,44],[15,40,39],[16,39,40],[17,36,43],[18,35,12],[18,48,31],[19,34,12],[19,48,31],[20,34,12],[20,48,31],[21,36,11],[21,48,31],[22,37,42],[23,43,36],[24,44,26],[24,71,8],[25,44,27],[25,74,5],[26,44,27],[26,74,5],[27,44,27],[27,73,6],[28,44,28],[28,73,6],[29,44,35],[30,45,6],[30,53,26]],[[2,47,15],[3,43,22],[4,41,27],[5,24,9],[5,40,31],[6,23,11],[6,39,39],[7,21,1],[7,24,37],[7,66,12],[8,18,43],[9,18,43],[10,19,49],[11,21,54],[12,25,54],[13,31,48],[14,35,44],[15,40,39],[16,39,40],[17,36,43],[18,7,1],[18,34,12],[18,47,32],[19,7,1],[19,34,11],[19,48,31],[20,17,1],[20,34,12],[20,47,32],[21,36,43],[22,39,40],[23,43,36],[24,43,25],[24,73,6],[25,43,26],[25,72,7],[26,43,27],[26,72,7],[27,43,27],[27,72,7],[28,43,36],[29,43,8],[29,52,27],[30,45,5],[30,53,26]],[[2,49,11],[3,44,19],[4,42,24],[5,25,11],[5,40,29],[6,25,10],[6,39,34],[7,26,34],[7,65,10],[8,19,41],[9,19,41],[10,20,47],[11,24,51],[12,28,51],[13,33,46],[14,36,43],[15,40,37],[16,38,41],[17,36,43],[18,34,11],[18,47,32],[19,34,11],[19,47,32],[20,34,11],[20,47,32],[21,36,43],[22,42,23],[22,67,12],[23,42,24],[23,72,5],[24,42,25],[24,71,6],[25,42,26],[25,70,7],[26,42,26],[26,70,9],[27,42,37],[28,42,37],[29,44,6],[29,52,27],[30,43,7],[30,54,25]],[[3,45,16],[4,3,1],[4,35,1],[4,42,22],[5,3,1],[5,26,11],[5,41,26],[6,26,9],[6,39,32],[7,27,32],[7,63,11],[8,21,38],[8,69,2],[8,72,2],[9,20,39],[10,22,44],[11,25,49],[12,30,47],[13,35,43],[14,40,37],[15,39,36],[16,37,42],[17,35,10],[17,46,33],[18,34,11],[18,47,32],[19,34,10],[19,46,33],[20,36,9],[20,46,33],[21,38,26],[21,66,13],[22,42,22],[22,71,4],[22,78,1],[23,42,23],[23,70,5],[24,42,24],[24,69,7],[25,42,25],[25,69,10],[26,42,26],[26,69,10],[27,42,37],[28,43,7],[28,51,28],[29,43,6],[29,53,26],[30,41,7],[30,54,25]],[[3,46,13],[4,43,19],[5,27,9],[5,41,24],[6,26,9],[6,40,28],[7,22,12],[7,35,23],[7,61,11],[8,21,37],[8,66,6],[9,22,36],[10,23,42],[11,27,45],[12,32,43],[13,35,40],[14,40,34],[15,39,34],[16,36,42],[17,34,10],[17,46,33],[18,34,10],[18,46,33],[19,19,1],[19,34,10],[19,46,33],[20,19,1],[20,37,26],[20,65,14],[21,41,21],[21,70,4],[21,76,3],[22,41,22],[22,69,4],[23,41,23],[23,67,7],[23,77,2],[24,41,24],[24,67,12],[25,41,25],[25,67,12],[26,41,38],[27,42,7],[27,51,28],[28,42,6],[28,52,27],[29,41,7],[29,53,26],[30,40,6],[30,53,26]],[[3,50,5],[4,43,17],[5,5,1],[5,27,9],[5,41,22],[5,70,1],[6,24,11],[6,40,26],[7,23,11],[7,35,35],[8,22,35],[8,63,7],[9,23,34],[10,25,38],[11,28,41],[12,33,39],[13,36,37],[14,40,31],[15,37,37],[16,35,9],[16,45,31],[17,34,10],[17,46,33],[18,34,9],[18,45,34],[19,36,8],[19,45,34],[20,41,19],[20,70,9],[21,1,1],[21,41,21],[21,68,2],[22,41,22],[22,66,5],[22,75,4],[23,41,22],[23,65,14],[24,41,23],[24,65,14],[25,41,38],[26,4,1],[26,8,1],[26,42,6],[26,50,29],[27,8,1],[27,42,6],[27,51,28],[28,41,6],[28,53,26],[29,40,6],[29,52,27],[30,38,6],[30,50,29]],[[4,44,13],[5,6,1],[5,26,9],[5,41,19],[6,24,10],[6,40,23],[7,14,1],[7,25,9],[7,36,32],[8,24,32],[8,61,7],[9,24,32],[10,27,33],[10,68,1],[11,30,37],[12,34,36],[13,39,32],[14,39,31],[15,36,36],[15,73,1],[16,34,9],[16,45,30],[17,34,9],[17,45,32],[18,35,8],[18,45,33],[19,20,1],[19,37,39],[20,19,2],[20,41,19],[20,75,2],[21,41,20],[21,64,5],[22,41,21],[22,63,15],[23,41,21],[23,63,15],[24,41,37],[25,42,6],[25,49,28],[26,42,5],[26,51,28],[27,40,6],[27,52,27],[28,39,6],[28,51,25],[28,78,1],[29,38,5],[29,49,27],[30,36,6],[30,45,34]],[[4,45,10],[4,62,1],[5,26,7],[5,42,16],[6,26,8],[6,40,21],[7,27,7],[7,36,28],[8,25,30],[8,59,8],[9,25,30],[9,65,1],[10,28,30],[11,32,32],[12,36,32],[13,39,29],[14,39,31],[15,35,37],[16,34,9],[16,45,29],[17,34,9],[17,45,30],[18,36,39],[19,40,23],[19,73,2],[20,40,19],[20,63,3],[21,12,1],[21,40,20],[21,62,12],[22,40,35],[23,41,34],[24,42,5],[24,49,25],[25,41,6],[25,50,29],[26,6,1],[26,27,2],[26,40,6],[26,51,28],[27,39,5],[27,50,23],[27,76,3],[28,38,5],[28,47,26],[29,0,5],[29,36,5],[29,44,35],[30,0,28],[30,34,45]],[[4,48,1],[5,28,3],[5,34,1],[5,42,14],[6,28,8],[6,40,19],[7,29,6],[7,37,25],[8,26,28],[8,57,8],[9,26,28],[9,63,2],[10,29,28],[11,33,30],[12,36,29],[13,40,26],[14,37,31],[15,34,8],[15,44,28],[16,34,8],[16,44,28],[17,35,8],[17,44,28],[18,38,30],[18,70,3],[19,40,19],[19,61,2],[20,4,1],[20,40,18],[20,60,11],[21,4,1],[21,40,19],[21,60,12],[22,40,32],[23,42,4],[23,48,23],[24,41,5],[24,50,26],[25,40,5],[25,50,29],[26,39,5],[26,49,21],[26,74,5],[27,37,5],[27,46,27],[28,0,13],[28,36,5],[28,43,36],[29,0,79],[30,0,79]],[[4,61,1],[5,29,3],[5,42,13],[5,61,2],[6,29,8],[6,40,17],[7,16,1],[7,31,5],[7,38,22],[8,27,26],[8,56,7],[9,27,26],[9,61,2],[10,30,27],[11,34,28],[12,37,27],[13,39,25],[14,36,32],[15,34,8],[15,44,27],[16,34,8],[16,44,27],[17,36,35],[18,40,23],[19,22,1],[19,40,17],[19,59,9],[20,24,2],[20,40,18],[20,59,10],[21,40,29],[22,41,5],[22,47,22],[23,41,5],[23,49,23],[24,40,5],[24,49,30],[25,28,2],[25,39,4],[25,47,21],[25,70,9],[26,0,2],[26,37,5],[26,45,25],[26,75,4],[27,0,20],[27,36,5],[27,43,36],[28,0,79],[29,0,79],[30,0,79]],[[2,10,1],[5,28,1],[5,30,3],[5,43,10],[6,31,7],[6,40,16],[6,67,1],[7,32,5],[7,39,20],[8,27,25],[8,55,7],[9,28,24],[9,60,1],[10,31,26],[11,35,26],[12,39,23],[13,10,1],[13,38,24],[14,35,6],[14,43,24],[15,34,8],[15,44,25],[16,36,6],[16,43,25],[17,39,23],[17,67,1],[18,40,16],[18,59,2],[18,64,2],[19,22,1],[19,40,16],[19,58,9],[20,14,1],[20,40,27],[21,14,1],[21,41,5],[21,47,20],[22,41,4],[22,48,21],[23,40,4],[23,48,31],[24,38,5],[24,46,20],[24,67,12],[25,0,5],[25,37,4],[25,45,34],[26,0,25],[26,35,5],[26,42,37],[27,0,79],[28,1,78],[29,1,5],[29,8,11],[29,23,56],[30,13,7],[30,39,40]],[[1,47,2],[2,47,2],[5,31,2],[5,43,9],[6,9,2],[6,31,7],[6,41,14],[6,67,1],[7,10,1],[7,32,5],[7,39,19],[8,28,23],[8,54,6],[9,29,22],[10,32,25],[10,65,1],[11,36,24],[12,39,22],[13,37,25],[14,35,6],[14,43,23],[15,35,6],[15,43,24],[16,37,30],[17,39,15],[17,56,4],[18,40,15],[18,57,8],[19,40,25],[20,40,25],[21,41,4],[21,47,18],[22,39,5],[22,48,27],[23,38,5],[23,46,31],[24,0,7],[24,37,4],[24,43,36],[25,0,28],[25,36,4],[25,41,38],[26,0,79],[27,4,75],[28,4,4],[28,12,9],[28,33,46],[29,16,5],[29,39,40],[30,19,6],[30,39,40]],[[5,31,2],[5,44,6],[5,60,2],[6,31,6],[6,41,13],[7,18,1],[7,32,5],[7,39,18],[8,18,1],[8,28,23],[8,53,6],[9,29,22],[10,33,23],[10,65,2],[11,36,23],[11,65,1],[12,39,20],[13,36,26],[14,35,6],[14,43,21],[14,65,1],[15,35,7],[15,43,22],[16,39,20],[16,62,2],[17,39,14],[17,56,7],[18,40,14],[18,55,9],[19,40,23],[20,8,1],[20,41,4],[20,46,17],[21,39,5],[21,47,24],[22,38,4],[22,46,29],[22,78,1],[23,0,8],[23,37,4],[23,44,35],[24,0,28],[24,35,5],[24,42,37],[25,0,79],[26,6,73],[27,6,3],[27,14,8],[27,36,1],[27,39,40],[28,18,6],[28,39,40],[29,21,5],[29,39,40],[30,23,2],[30,53,14],[30,75,4]],[[2,47,2],[3,13,1],[6,31,6],[6,41,12],[7,32,5],[7,39,16],[8,29,21],[8,52,6],[9,30,20],[10,34,21],[11,37,21],[12,39,19],[13,12,1],[13,35,6],[13,42,18],[14,35,6],[14,43,20],[15,36,28],[16,3,1],[16,39,13],[16,55,2],[16,62,1],[17,3,1],[17,16,1],[17,39,14],[17,55,7],[18,39,23],[19,24,1],[19,41,3],[19,45,17],[20,40,4],[20,47,21],[21,39,4],[21,46,27],[21,78,1],[22,1,6],[22,37,4],[22,44,35],[23,0,26],[23,35,5],[23,42,37],[24,1,78],[25,8,71],[26,8,3],[26,16,8],[26,39,40],[27,20,6],[27,39,40],[28,23,3],[28,40,6],[28,49,17],[28,67,12],[29,52,3],[29,56,7],[29,74,5],[30,52,2],[30,56,5]],[[1,44,1],[2,43,2],[3,13,1],[6,31,6],[6,41,11],[6,59,1],[7,12,1],[7,31,5],[7,39,15],[8,30,20],[8,51,6],[9,30,19],[10,34,20],[11,38,19],[12,39,18],[13,12,2],[13,35,6],[13,42,19],[13,78,1],[14,13,1],[14,35,6],[14,42,20],[15,37,1],[15,39,23],[16,4,1],[16,39,13],[16,55,5],[16,65,1],[17,4,1],[17,39,22],[17,65,1],[18,40,20],[19,24,1],[19,26,2],[19,40,4],[19,46,17],[19,66,2],[20,27,1],[20,39,4],[20,46,24],[21,38,3],[21,44,22],[21,68,11],[22,2,20],[22,36,4],[22,42,37],[23,2,77],[24,9,70],[25,10,2],[25,18,7],[25,39,40],[26,22,6],[26,39,40],[27,24,4],[27,40,4],[27,51,14],[27,66,13],[28,51,3],[28,55,4],[28,73,6],[29,52,1],[29,55,5],[30,57,1]],[[1,18,1],[2,17,2],[2,71,1],[6,31,6],[6,41,10],[6,59,1],[7,31,6],[7,39,14],[8,30,19],[8,50,6],[9,31,18],[10,34,20],[11,38,18],[12,31,2],[12,37,20],[13,8,1],[13,14,1],[13,31,2],[13,35,5],[13,42,17],[13,77,1],[14,35,6],[14,42,20],[15,39,12],[15,52,3],[15,56,3],[16,5,1],[16,39,12],[16,53,6],[17,5,1],[17,17,1],[17,39,20],[18,17,1],[18,41,3],[18,45,15],[19,39,4],[19,46,23],[20,38,4],[20,44,14],[20,59,10],[20,71,8],[21,4,14],[21,36,4],[21,42,37],[22,4,75],[23,10,69],[24,11,3],[24,18,8],[24,36,43],[25,23,5],[25,39,40],[26,26,2],[26,40,3],[26,50,13],[26,64,15],[27,50,3],[27,54,4],[27,73,6],[28,51,2],[28,55,4]],[[2,43,2],[2,55,1],[3,55,2],[6,31,2],[6,34,2],[6,41,9],[7,31,6],[7,39,14],[8,30,19],[8,50,6],[9,32,17],[9,54,1],[10,35,18],[11,39,16],[12,31,2],[12,36,21],[13,9,1],[13,14,1],[13,32,1],[13,35,6],[13,42,17],[14,37,23],[15,39,12],[15,53,1],[15,56,1],[15,58,1],[16,39,12],[16,52,6],[17,40,18],[18,25,1],[18,40,3],[18,45,16],[18,62,5],[19,39,3],[19,45,22],[20,6,6],[20,37,4],[20,43,36],[21,6,27],[21,35,44],[22,7,72],[23,13,3],[23,18,10],[23,30,49],[24,24,5],[24,39,40],[25,40,4],[25,49,12],[25,62,17],[26,50,7],[26,71,8],[27,50,2],[27,54,4]],[[2,18,2],[2,70,1],[6,1,1],[6,32,2],[6,35,3],[6,41,8],[7,1,1],[7,14,1],[7,28,1],[7,32,20],[7,64,1],[8,31,17],[8,49,6],[9,32,17],[10,36,17],[11,39,16],[12,35,20],[13,10,1],[13,14,2],[13,35,5],[13,42,17],[14,15,1],[14,37,1],[14,39,20],[15,39,11],[15,52,4],[16,39,18],[17,40,3],[17,44,14],[18,39,4],[18,45,21],[19,8,1],[19,38,3],[19,44,35],[20,7,16],[20,36,4],[20,42,37],[21,8,71],[22,14,65],[23,24,6],[23,39,40],[24,39,8],[24,48,31],[25,49,7],[25,67,12],[26,50,2],[26,53,4],[26,75,4]],[[2,43,1],[3,44,1],[4,78,1],[6,33,6],[6,41,8],[7,31,8],[7,40,12],[8,31,17],[8,49,5],[9,33,17],[10,37,16],[11,38,16],[11,62,1],[12,35,5],[12,41,16],[13,35,5],[13,42,17],[14,39,18],[15,39,11],[15,51,6],[16,39,17],[17,40,3],[17,44,15],[17,60,4],[18,39,3],[18,44,21],[19,8,8],[19,37,3],[19,43,36],[20,9,31],[20,41,38],[21,13,66],[22,16,1],[22,23,7],[22,38,41],[23,39,40],[24,49,6],[24,63,16],[25,49,2],[25,52,4],[25,73,6]],[[2,20,1],[2,69,1],[3,20,1],[3,69,2],[6,34,5],[6,41,7],[7,1,1],[7,30,22],[7,63,2],[8,32,15],[8,49,4],[9,34,16],[10,38,15],[11,37,18],[11,62,1],[12,36,4],[12,42,15],[13,16,1],[13,36,22],[14,15,2],[14,39,10],[14,52,1],[14,54,1],[15,39,17],[16,40,16],[17,39,3],[17,44,19],[18,11,1],[18,38,3],[18,43,21],[18,65,11],[19,10,15],[19,36,4],[19,42,37],[20,11,68],[21,16,3],[21,20,59],[22,39,40],[23,48,6],[23,60,19],[24,48,7],[24,70,8],[25,52,2],[25,76,1]],[[6,34,5],[6,41,7],[7,32,6],[7,40,13],[8,16,1],[8,29,1],[8,32,15],[8,49,4],[9,22,1],[9,34,16],[10,38,14],[11,37,19],[12,36,4],[12,41,17],[13,37,15],[14,39,9],[14,52,3],[15,39,17],[16,40,3],[16,44,12],[16,57,5],[17,39,3],[17,44,19],[18,11,5],[18,37,3],[18,42,34],[19,11,24],[19,36,4],[19,41,36],[20,15,64],[21,18,1],[21,25,6],[21,38,41],[22,39,15],[22,57,22],[23,48,6],[23,64,13],[23,78,1],[24,48,2],[24,51,3],[24,71,1],[24,73,3]],[[3,21,1],[3,43,2],[3,54,1],[3,68,1],[4,17,1],[4,54,2],[5,17,1],[6,34,5],[6,42,5],[7,4,1],[7,32,6],[7,39,13],[7,57,2],[8,29,1],[8,32,15],[8,48,5],[9,34,15],[10,38,14],[11,36,21],[12,36,4],[12,41,16],[13,37,11],[13,50,2],[14,17,1],[14,39,9],[14,50,5],[15,39,16],[16,40,2],[16,44,18],[17,38,3],[17,43,20],[17,67,4],[17,72,1],[18,12,10],[18,23,1],[18,27,1],[18,37,3],[18,41,34],[19,12,66],[20,18,61],[21,30,1],[21,39,14],[21,55,24],[22,48,5],[22,59,20],[23,16,1],[23,48,6],[23,69,6],[26,3,1]],[[5,77,1],[6,34,5],[6,42,4],[7,33,6],[7,40,11],[8,17,1],[8,32,15],[8,48,4],[9,35,14],[10,38,16],[11,36,20],[12,36,4],[12,41,14],[13,38,10],[13,52,1],[14,39,9],[14,50,4],[15,39,15],[16,39,3],[16,44,17],[17,13,6],[17,38,3],[17,43,18],[17,62,11],[18,13,27],[18,41,33],[19,14,63],[20,19,1],[20,25,6],[20,38,40],[21,39,13],[21,56,22],[22,19,1],[22,47,6],[22,63,11],[23,18,2],[23,41,2],[23,48,1],[23,51,2],[23,69,1],[23,71,2],[24,1,1],[27,18,1]],[[1,2,1],[2,2,1],[3,44,1],[4,43,1],[4,67,1],[5,75,1],[6,34,5],[6,43,2],[7,4,1],[7,33,18],[8,4,1],[8,31,1],[8,33,13],[8,48,4],[9,35,14],[10,38,15],[11,36,20],[12,36,4],[12,41,11],[12,54,1],[13,18,1],[13,39,9],[13,50,2],[14,39,9],[14,49,5],[15,40,20],[16,39,3],[16,43,17],[16,64,4],[16,69,1],[17,14,12],[17,38,2],[17,42,30],[18,14,61],[19,0,1],[19,19,57],[20,28,4],[20,39,37],[21,47,5],[21,57,19],[22,47,6],[22,67,5],[23,2,2],[24,2,2]],[[4,67,1],[6,34,4],[7,34,17],[8,31,1],[8,33,13],[8,47,4],[9,35,13],[10,39,13],[11,36,4],[11,41,14],[12,36,4],[12,41,11],[12,53,1],[13,39,9],[13,50,3],[14,39,14],[15,40,2],[15,43,16],[16,38,3],[16,43,17],[16,61,8],[17,15,10],[17,26,1],[17,28,7],[17,37,3],[17,41,30],[18,15,59],[19,1,1],[19,20,2],[19,24,7],[19,35,40],[20,30,2],[20,39,13],[20,54,21],[21,47,5],[21,62,10],[22,47,1],[22,50,2],[22,67,1],[27,18,2]],[[2,4,1],[6,34,3],[7,34,17],[8,7,1],[8,33,13],[8,47,4],[9,35,13],[10,39,13],[11,36,4],[11,41,13],[12,37,14],[13,39,8],[13,49,3],[14,39,13],[15,39,3],[15,43,15],[16,16,6],[16,38,3],[16,42,27],[17,16,55],[18,20,54],[19,27,5],[19,39,12],[19,52,22],[20,46,5],[20,56,17],[21,46,2],[21,49,3],[21,66,4],[23,3,1],[23,42,1],[24,3,1]],[[6,35,2],[7,34,4],[7,39,10],[8,1,1],[8,19,1],[8,33,17],[8,78,1],[9,0,2],[9,35,13],[9,78,1],[10,39,11],[11,36,4],[11,41,13],[12,37,16],[13,39,8],[13,48,3],[14,39,13],[15,39,2],[15,43,14],[15,62,3],[16,17,12],[16,38,2],[16,41,28],[17,17,55],[18,22,50],[19,29,3],[19,39,33],[20,46,5],[20,60,9],[20,70,1],[21,49,1],[21,67,1],[22,5,1],[22,18,1],[23,4,2],[24,4,1],[26,20,1],[27,20,1]],[[4,53,1],[5,53,2],[5,73,1],[6,73,1],[7,34,4],[7,39,9],[8,19,1],[8,34,15],[9,35,12],[10,38,12],[11,36,4],[11,41,11],[12,38,14],[13,39,11],[14,40,2],[14,43,10],[15,39,2],[15,43,14],[15,58,8],[16,13,1],[16,17,51],[17,18,52],[18,3,1],[18,27,5],[18,39,32],[19,30,3],[19,46,4],[19,54,17],[20,46,5],[20,63,4],[22,21,1]],[[5,20,1],[6,19,2],[7,34,4],[7,39,9],[8,1,1],[8,34,15],[9,1,1],[9,36,11],[10,38,11],[11,36,4],[11,41,11],[12,38,14],[13,39,11],[14,39,2],[14,43,12],[15,18,5],[15,38,3],[15,42,24],[16,13,1],[16,18,49],[17,22,48],[18,17,1],[18,29,4],[18,39,31],[19,16,2],[19,46,4],[19,56,12],[20,46,1],[20,48,2],[20,77,1],[21,77,1],[23,5,1],[24,5,1]],[[2,77,1],[5,46,2],[7,34,4],[7,39,8],[8,32,16],[8,60,2],[9,32,1],[9,36,11],[9,60,1],[10,38,11],[11,36,4],[11,41,10],[12,39,12],[13,39,11],[14,39,2],[14,43,12],[15,19,10],[15,38,2],[15,41,24],[16,19,49],[17,24,45],[18,31,2],[18,40,3],[18,45,24],[19,45,5],[19,60,5],[26,21,1]],[[2,1,1],[3,1,1],[3,69,1],[5,46,2],[6,73,1],[7,35,3],[7,40,7],[8,32,17],[8,60,2],[9,37,11],[9,60,1],[10,37,11],[11,37,3],[11,41,10],[12,39,12],[13,39,11],[14,39,2],[14,43,10],[14,54,1],[14,58,4],[15,20,16],[15,38,2],[15,41,24],[16,13,2],[16,21,46],[17,29,4],[17,39,29],[18,45,5],[18,53,14],[19,45,1],[19,48,1],[19,62,1],[20,39,2],[21,22,1],[22,7,1],[22,21,2],[23,6,1]],[[3,69,2],[6,29,1],[7,35,4],[7,40,7],[8,9,2],[8,34,14],[9,10,1],[9,37,11],[10,37,12],[11,37,3],[11,41,9],[12,39,7],[12,47,3],[13,40,10],[14,39,2],[14,42,21],[15,20,44],[16,22,45],[17,31,3],[17,39,28],[18,5,1],[18,45,4],[18,56,9],[19,5,1],[20,39,2],[21,34,1],[22,33,2],[25,16,1],[27,55,1],[28,9,1]],[[6,71,1],[7,35,4],[7,40,7],[8,35,12],[9,37,10],[10,37,11],[11,37,13],[12,39,6],[12,47,3],[13,39,13],[14,21,4],[14,38,3],[14,42,21],[15,21,43],[16,25,41],[17,40,9],[17,50,16],[18,45,4],[18,58,5],[19,24,1],[22,7,1],[22,33,2],[23,7,1],[25,16,1]],[[1,18,2],[2,18,2],[2,37,2],[7,35,4],[7,40,6],[8,21,1],[8,35,11],[8,75,1],[9,5,1],[9,20,2],[9,37,10],[9,75,1],[10,37,12],[11,38,12],[12,39,10],[13,39,2],[13,42,11],[14,21,8],[14,38,2],[14,41,21],[15,22,43],[16,26,1],[16,28,37],[17,45,4],[17,52,12],[18,23,2],[18,45,4],[18,60,1],[19,6,1],[19,23,2],[20,75,1],[25,22,1]],[[2,75,1],[3,3,1],[6,22,1],[7,35,4],[7,40,6],[8,35,11],[9,37,10],[10,37,12],[11,38,11],[12,39,10],[13,39,2],[13,42,9],[14,22,10],[14,37,3],[14,41,21],[15,22,41],[16,30,4],[16,39,9],[16,49,16],[17,44,4],[17,53,11],[18,31,2],[19,47,2],[20,75,1],[23,8,1]],[[3,68,1],[4,68,2],[5,46,1],[6,46,2],[7,36,3],[7,40,6],[8,35,11],[9,6,1],[9,38,9],[10,37,13],[11,38,12],[12,39,10],[13,39,2],[13,42,11],[14,22,39],[15,24,40],[16,32,2],[16,39,9],[16,49,15],[17,44,4],[17,55,6],[18,31,2]],[[3,68,1],[5,46,1],[6,47,1],[7,36,3],[7,40,6],[8,6,1],[8,35,11],[9,5,2],[9,38,9],[10,5,1],[10,37,3],[10,41,9],[11,38,11],[12,39,9],[13,39,2],[13,42,11],[13,55,5],[14,23,39],[15,24,39],[16,33,1],[16,40,8],[16,49,14],[17,44,3],[17,56,4],[18,7,1]],[[7,36,3],[7,40,6],[8,1,1],[8,35,11],[9,22,1],[9,38,9],[10,27,1],[10,37,12],[11,39,9],[12,39,9],[13,39,2],[13,42,10],[13,54,5],[14,23,39],[15,26,37],[16,33,2],[16,40,8],[16,50,13],[17,46,1],[17,57,3],[20,54,1],[22,9,1]],[[5,26,1],[7,36,3],[7,40,6],[8,11,1],[8,35,11],[9,10,2],[9,38,8],[10,26,2],[10,37,12],[11,39,9],[12,39,9],[13,39,2],[13,42,17],[14,23,38],[15,27,36],[16,34,1],[16,40,1],[16,44,4],[16,50,13],[17,8,1],[17,44,1],[17,46,2],[17,58,1],[20,45,1],[20,54,2],[21,10,1],[22,9,2],[26,69,1]],[[3,74,1],[5,25,2],[7,35,4],[7,40,6],[8,36,11],[9,38,8],[10,26,2],[10,37,12],[11,39,8],[12,39,9],[13,24,2],[13,39,2],[13,42,17],[14,24,38],[15,27,35],[16,25,1],[16,34,1],[16,44,3],[16,50,11],[17,8,1],[17,24,2],[17,44,1],[17,58,1],[18,8,1],[20,44,2],[20,54,2],[21,10,1],[21,24,1],[21,34,1],[21,48,1],[22,9,2],[26,69,1]],[[3,10,1],[3,74,1],[4,9,2],[5,25,2],[6,37,1],[7,36,10],[7,70,1],[8,36,11],[9,6,1],[9,38,8],[10,6,1],[10,37,12],[11,39,9],[12,39,9],[13,24,4],[13,39,2],[13,42,17],[14,24,38],[15,28,34],[15,77,1],[16,34,1],[16,44,3],[16,51,10],[17,8,1],[17,24,2],[17,44,1],[18,8,1],[20,44,2],[20,54,1],[21,23,2],[21,34,2],[21,44,1],[21,48,2],[22,9,1],[22,35,1],[26,69,1]],[[3,74,1],[6,37,1],[7,36,10],[7,70,1],[8,36,11],[9,6,1],[9,38,8],[10,6,1],[10,37,12],[11,39,9],[12,39,10],[13,24,4],[13,39,2],[13,42,17],[14,24,38],[15,28,1],[15,30,32],[15,77,1],[16,33,2],[16,44,3],[16,51,10],[20,44,2],[20,54,1],[21,23,2],[21,34,2],[21,44,1],[21,48,2],[22,35,1],[26,69,1]],[[6,37,1],[7,36,3],[7,40,6],[7,70,1],[8,36,10],[9,6,1],[9,38,8],[10,37,12],[11,39,9],[12,39,10],[13,24,4],[13,39,20],[14,24,37],[15,28,1],[15,30,5],[15,36,26],[16,33,2],[16,44,3],[16,51,10],[20,44,2],[21,24,1],[21,48,1],[26,69,1]],[[2,39,1],[3,38,2],[7,2,1],[7,36,3],[7,40,6],[7,70,1],[8,2,1],[8,36,10],[9,38,8],[10,37,12],[11,39,9],[12,39,9],[13,24,4],[13,38,21],[14,24,37],[15,28,1],[15,30,5],[15,36,26],[16,33,2],[16,44,3],[16,51,10],[21,22,1],[21,48,1]],[[7,36,3],[7,40,6],[8,2,1],[8,36,11],[9,38,8],[10,37,12],[11,39,9],[12,39,9],[13,24,4],[13,38,21],[14,24,37],[15,28,1],[15,30,5],[15,36,26],[16,33,2],[16,44,3],[16,51,10]],[[2,21,1],[2,39,1],[3,38,1],[7,2,1],[7,36,3],[7,40,6],[8,2,1],[8,36,10],[9,12,1],[9,38,8],[10,37,12],[11,39,9],[12,39,9],[13,24,5],[13,38,2],[13,41,18],[14,24,37],[15,28,1],[15,30,5],[15,37,25],[16,33,2],[16,44,3],[16,51,10]],[[2,20,2],[3,38,1],[7,36,3],[7,40,6],[8,36,10],[9,12,1],[9,38,8],[10,37,12],[11,39,9],[12,39,9],[13,24,5],[13,38,2],[13,41,18],[14,24,37],[15,28,1],[15,30,4],[15,37,25],[16,34,1],[16,44,3],[16,51,10],[25,24,1]],[[2,20,2],[5,53,2],[6,53,2],[7,36,3],[7,40,6],[8,36,10],[9,12,1],[9,38,8],[10,37,11],[11,39,9],[12,39,2],[12,42,6],[13,24,5],[13,38,2],[13,41,18],[14,24,37],[15,30,4],[15,38,24],[16,44,3],[16,51,10],[25,24,1]],[[2,20,2],[5,53,2],[6,53,2],[7,35,11],[8,36,10],[9,12,1],[9,38,8],[10,37,11],[11,39,9],[12,39,2],[12,42,6],[13,24,6],[13,38,2],[13,41,18],[14,24,37],[15,30,4],[15,38,24],[16,44,3],[16,52,9],[18,9,1],[22,10,2],[25,23,2]],[[2,20,2],[5,26,1],[5,53,2],[6,53,2],[7,35,11],[8,36,10],[9,12,1],[9,38,8],[10,27,2],[10,37,11],[11,39,9],[12,39,2],[12,42,6],[13,23,8],[13,37,3],[13,41,18],[14,23,38],[15,31,4],[15,39,23],[16,44,3],[16,52,9],[18,9,1],[18,21,1],[22,10,1],[23,10,1],[25,23,2]],[[3,75,1],[5,53,1],[6,37,1],[6,53,2],[7,36,10],[8,36,11],[9,12,1],[9,38,8],[10,27,2],[10,37,11],[11,39,9],[12,39,10],[13,23,8],[13,37,3],[13,41,18],[14,23,38],[15,32,2],[15,39,8],[15,48,14],[15,78,1],[16,44,3],[16,53,8],[17,9,1],[17,26,1],[18,9,1],[18,21,1],[22,10,1],[25,24,1]],[[3,75,1],[5,26,2],[6,27,1],[6,37,2],[7,36,10],[8,37,7],[8,45,2],[9,7,1],[9,28,1],[9,37,9],[10,27,2],[10,37,11],[11,39,9],[12,39,12],[13,23,9],[13,37,3],[13,41,18],[14,23,38],[15,32,2],[15,39,3],[15,43,4],[15,48,13],[15,78,1],[16,26,1],[16,43,4],[16,53,7],[17,9,1],[17,25,2],[18,9,1],[18,21,1],[18,69,1],[19,69,1],[21,24,2],[21,36,1],[22,10,1],[27,70,1]],[[3,75,2],[4,75,1],[5,26,2],[6,27,1],[6,35,1],[6,37,2],[7,0,1],[7,35,12],[8,37,7],[8,45,2],[9,6,2],[9,28,1],[9,38,8],[9,60,1],[10,7,1],[10,27,2],[10,37,11],[11,39,9],[12,39,12],[13,23,10],[13,37,22],[14,23,38],[15,32,2],[15,39,2],[15,43,4],[15,48,13],[15,78,1],[16,25,2],[16,43,4],[16,54,6],[17,9,1],[17,25,2],[18,9,1],[18,21,1],[18,69,1],[19,69,1],[20,45,1],[21,24,2],[21,36,1],[25,24,1],[27,70,1]],[[3,75,2],[4,11,1],[5,26,2],[6,35,4],[7,0,1],[7,35,12],[8,37,7],[8,45,2],[9,7,1],[9,28,1],[9,38,8],[9,60,1],[10,7,1],[10,27,2],[10,38,11],[11,39,9],[12,38,2],[12,41,9],[13,23,12],[13,37,22],[14,23,38],[15,32,2],[15,39,2],[15,43,4],[15,48,13],[15,78,1],[16,25,2],[16,43,4],[16,54,5],[17,26,1],[18,21,1],[20,45,2],[21,24,2],[21,35,2],[22,25,1],[26,70,1],[27,70,1]],[[3,75,1],[6,36,3],[6,71,1],[7,0,1],[7,35,11],[7,71,1],[8,37,9],[9,7,1],[9,38,10],[10,7,1],[10,38,10],[11,39,8],[12,38,2],[12,41,10],[13,23,13],[13,37,22],[14,23,38],[15,32,1],[15,39,3],[15,43,4],[15,48,13],[15,78,1],[16,43,3],[16,55,3],[17,26,1],[20,45,2],[20,55,1],[21,24,2],[21,35,2],[21,50,1],[22,11,1],[22,25,1],[26,70,1]],[[6,36,2],[7,0,1],[7,35,11],[8,3,1],[8,36,9],[9,38,10],[10,38,10],[11,39,8],[12,38,2],[12,41,10],[13,23,36],[14,24,37],[15,32,1],[15,39,3],[15,43,4],[15,49,12],[15,78,1],[16,43,3],[16,55,3],[17,8,1],[20,45,2],[20,55,1],[21,24,2],[21,35,2],[21,49,2],[22,11,1],[22,25,1],[26,70,1]],[[6,36,2],[6,40,3],[7,34,12],[7,72,1],[8,3,1],[8,36,9],[9,37,11],[10,38,10],[11,39,8],[12,38,2],[12,41,9],[13,23,36],[14,24,37],[15,32,1],[15,39,2],[15,43,4],[15,49,12],[15,78,1],[16,43,3],[16,55,3],[20,45,2],[20,55,1],[21,36,1],[21,49,2],[22,11,1]],[[3,39,2],[6,35,3],[6,39,4],[7,34,12],[8,3,1],[8,35,10],[9,37,11],[10,38,10],[11,39,8],[12,38,2],[12,41,9],[12,54,2],[13,23,37],[14,24,37],[15,31,2],[15,39,2],[15,43,4],[15,49,12],[16,44,2],[16,55,3],[17,8,1],[21,22,1]],[[2,21,2],[2,39,1],[3,39,2],[6,36,1],[6,39,4],[7,34,9],[7,44,2],[8,3,1],[8,35,11],[9,37,10],[10,38,9],[11,39,8],[12,38,2],[12,41,9],[12,53,4],[13,23,36],[14,24,37],[15,31,2],[15,39,2],[15,43,4],[15,48,12],[16,44,2],[16,56,2],[17,8,1]],[[2,22,1],[6,39,4],[7,34,10],[8,34,11],[9,13,1],[9,37,10],[10,38,10],[11,39,8],[12,38,2],[12,41,8],[12,53,4],[13,23,36],[14,25,36],[15,32,1],[15,39,2],[15,43,3],[15,48,1],[15,50,10],[16,44,1],[16,56,1],[22,11,1]],[[2,21,2],[6,38,5],[6,54,1],[7,34,10],[8,34,11],[9,12,2],[9,37,10],[10,38,9],[11,38,9],[12,38,1],[12,41,8],[12,52,5],[13,22,37],[14,26,35],[15,32,1],[15,39,2],[15,43,3],[15,48,1],[15,50,10],[16,44,1],[16,56,1],[22,11,1],[25,24,1]],[[2,21,2],[5,54,1],[6,38,5],[6,54,2],[7,33,11],[8,13,1],[8,33,12],[9,12,2],[9,37,10],[10,38,5],[10,44,3],[11,38,9],[12,37,2],[12,41,8],[12,52,5],[13,22,37],[14,26,35],[15,32,1],[15,39,1],[15,43,3],[15,49,11],[16,44,1],[16,56,1],[22,11,1],[25,24,2]],[[2,21,2],[5,54,2],[6,38,5],[6,54,2],[7,33,11],[8,13,1],[8,33,12],[9,13,1],[9,37,10],[10,38,5],[10,44,3],[11,38,9],[12,37,2],[12,41,8],[12,51,6],[13,22,38],[14,26,35],[15,39,1],[15,42,4],[15,48,12],[16,44,1],[16,56,1],[17,10,1],[22,11,1],[24,25,1],[25,24,2]],[[3,76,1],[5,27,2],[5,54,1],[6,38,5],[6,54,2],[7,33,11],[8,33,12],[9,8,1],[9,13,1],[9,36,11],[10,29,1],[10,38,9],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,42,4],[15,48,12],[16,44,1],[16,56,1],[17,10,1],[17,26,1],[18,9,2],[18,21,2],[22,11,1],[25,24,2]],[[3,76,1],[5,27,2],[5,54,1],[6,38,5],[6,54,2],[7,33,11],[8,34,11],[9,8,1],[9,36,11],[10,28,2],[10,38,8],[11,38,8],[12,23,1],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,42,4],[15,48,13],[16,45,1],[16,56,1],[17,10,1],[18,9,2],[18,21,2],[19,70,1],[22,11,1],[25,24,2],[27,71,1]],[[3,76,1],[5,27,2],[6,38,5],[7,1,1],[7,33,11],[8,34,11],[9,8,1],[9,36,11],[10,8,1],[10,28,2],[10,38,5],[10,44,2],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,42,4],[15,48,12],[16,27,1],[16,42,1],[16,45,1],[16,56,1],[17,10,1],[17,26,2],[18,9,2],[18,21,2],[19,70,1],[21,26,1],[21,36,1],[27,71,1]],[[3,76,1],[5,27,2],[6,38,5],[7,1,1],[7,33,11],[8,34,11],[9,8,1],[9,36,11],[10,8,1],[10,28,2],[10,37,6],[10,44,2],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,42,4],[15,48,12],[16,27,1],[16,42,1],[16,56,1],[17,26,2],[19,70,1],[21,25,2],[21,36,1],[26,71,1],[27,71,1]],[[5,27,2],[6,37,6],[7,1,1],[7,33,11],[7,72,1],[8,1,1],[8,34,11],[8,57,1],[9,8,1],[9,36,11],[10,8,1],[10,28,2],[10,37,6],[10,44,2],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,42,4],[15,48,12],[16,27,1],[16,42,1],[16,56,1],[17,26,2],[19,70,1],[21,25,2],[21,36,2],[21,50,1],[22,37,1],[26,71,1]],[[6,37,6],[7,1,1],[7,33,11],[8,34,11],[9,8,1],[9,36,11],[10,37,6],[10,44,2],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,38,1],[15,42,4],[15,48,1],[15,50,10],[16,42,1],[16,56,1],[20,46,2],[20,56,1],[21,24,3],[21,36,2],[21,46,1],[21,50,1],[26,71,1]],[[3,76,1],[6,38,5],[7,4,1],[7,33,11],[7,72,1],[8,4,1],[8,34,11],[9,36,11],[10,37,6],[10,44,2],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,38,1],[15,42,4],[15,48,2],[15,51,9],[16,42,1],[16,56,1],[20,46,2],[20,56,1],[21,24,3],[21,36,2],[21,50,1],[22,37,1],[26,71,1]],[[3,76,1],[6,38,5],[7,33,11],[8,4,1],[8,34,11],[8,57,1],[9,36,11],[10,37,9],[11,38,8],[12,37,2],[12,40,17],[13,22,37],[14,26,34],[15,32,1],[15,38,2],[15,42,4],[15,48,12],[16,45,1],[16,55,1],[20,46,2],[21,24,1],[21,36,2],[21,50,1]],[[2,41,1],[6,38,5],[7,33,10],[8,4,1],[8,34,11],[9,36,11],[10,37,9],[11,37,9],[12,37,2],[12,40,10],[12,51,6],[13,22,37],[14,25,35],[15,32,1],[15,38,2],[15,42,4],[15,48,1],[15,50,10],[16,43,3],[16,55,1],[21,24,1],[21,50,1]],[[2,40,2],[3,40,2],[6,38,5],[7,33,10],[8,34,11],[9,14,1],[9,36,12],[10,36,11],[11,38,8],[12,37,2],[12,40,10],[12,52,5],[13,22,37],[14,24,36],[15,38,2],[15,42,4],[15,48,12],[16,43,2],[16,55,1]],[[2,22,2],[6,38,5],[7,33,10],[8,34,11],[9,14,1],[9,36,12],[10,36,11],[11,38,8],[12,37,2],[12,40,10],[12,53,3],[13,22,37],[14,23,37],[15,38,3],[15,42,3],[15,48,12],[16,43,3],[16,55,2]],[[2,22,2],[6,34,2],[6,38,5],[6,55,1],[7,33,10],[8,34,11],[9,14,1],[9,36,11],[10,36,11],[11,37,9],[12,37,2],[12,40,10],[13,22,37],[14,23,37],[15,38,3],[15,42,3],[15,48,12],[16,42,4],[16,54,3],[22,12,1]],[[2,22,2],[5,55,2],[6,34,2],[6,39,4],[6,55,2],[7,33,10],[8,33,12],[9,14,1],[9,36,11],[10,35,11],[11,37,9],[12,37,2],[12,40,10],[13,22,16],[13,39,20],[14,23,37],[15,38,3],[15,42,3],[15,47,13],[16,42,4],[16,53,4],[18,11,1],[22,12,1],[25,25,2]],[[3,77,1],[4,13,1],[5,55,2],[6,35,1],[6,55,2],[7,33,12],[8,33,11],[9,14,1],[9,36,11],[10,35,12],[11,37,9],[12,37,2],[12,40,10],[13,22,11],[13,35,3],[13,39,19],[14,22,38],[15,37,4],[15,42,3],[15,47,13],[16,42,3],[16,53,4],[17,11,1],[18,11,1],[22,12,1],[25,25,2],[27,72,1]],[[3,77,1],[4,13,1],[5,28,2],[5,55,2],[6,55,2],[7,33,12],[7,74,1],[8,33,11],[9,36,11],[10,29,1],[10,35,12],[11,37,5],[11,44,1],[12,37,9],[12,47,2],[13,22,8],[13,35,3],[13,39,19],[14,22,38],[15,30,3],[15,37,8],[15,47,13],[16,42,3],[16,51,6],[17,11,1],[18,11,1],[18,23,1],[20,3,1],[25,25,2],[27,72,1]],[[3,77,2],[4,13,1],[4,77,1],[5,28,2],[6,29,1],[7,2,1],[7,33,3],[7,37,7],[8,33,10],[9,8,2],[9,30,1],[9,36,11],[10,9,1],[10,29,2],[10,35,12],[11,37,6],[11,44,1],[12,37,12],[13,22,7],[13,36,2],[13,39,18],[14,22,38],[15,29,3],[15,37,8],[15,46,14],[16,42,3],[16,50,7],[16,58,1],[17,11,1],[18,11,1],[18,23,1],[25,25,2],[27,72,1]],[[3,77,1],[4,13,1],[5,28,2],[6,29,1],[7,2,1],[7,33,3],[7,37,7],[8,33,9],[9,8,2],[9,30,1],[9,36,11],[10,9,1],[10,29,2],[10,35,12],[11,37,6],[11,44,1],[12,37,12],[13,21,6],[13,36,2],[13,39,18],[14,21,38],[15,26,1],[15,28,5],[15,35,10],[15,46,14],[16,42,3],[16,49,10],[17,11,1],[17,27,2],[18,11,1],[18,22,2],[18,71,1],[19,71,1],[21,27,1],[21,38,1],[27,72,1]],[[4,13,1],[5,28,2],[6,29,1],[7,2,1],[7,33,11],[7,73,1],[8,5,1],[8,33,9],[8,43,1],[9,9,1],[9,30,1],[9,36,9],[10,9,1],[10,29,2],[10,35,12],[11,37,8],[12,37,12],[13,21,5],[13,36,21],[14,21,39],[15,26,1],[15,28,32],[16,42,3],[16,49,9],[17,27,2],[17,42,1],[18,23,1],[20,47,1],[21,26,2],[21,38,1],[22,27,1],[26,72,1]],[[6,73,1],[7,2,1],[7,33,4],[7,38,6],[7,73,1],[8,33,11],[9,35,9],[10,29,2],[10,35,12],[11,37,9],[12,37,9],[13,22,2],[13,37,1],[13,40,17],[14,22,37],[15,25,35],[16,42,3],[16,48,11],[17,28,1],[17,42,1],[20,47,1],[21,26,2],[21,37,2],[22,27,1],[26,72,1]],[[7,33,4],[7,38,5],[7,73,1],[8,5,1],[8,33,11],[9,35,10],[10,35,12],[11,36,10],[12,37,9],[13,37,1],[13,40,10],[13,51,6],[14,22,38],[15,25,35],[16,32,1],[16,38,1],[16,42,3],[16,48,12],[17,43,1],[17,55,1],[20,47,2],[20,57,1],[21,24,1],[21,26,2],[21,37,2],[21,51,2],[22,27,1],[22,37,1],[26,72,1]],[[7,33,4],[7,38,5],[8,5,1],[8,33,10],[9,34,10],[10,36,11],[11,36,11],[12,37,9],[13,37,1],[13,40,9],[13,52,4],[14,21,38],[15,24,36],[16,31,2],[16,38,7],[16,47,13],[17,43,1],[17,55,1],[20,47,2],[20,57,1],[21,24,1],[21,26,2],[21,37,2],[21,51,2],[22,27,1]],[[2,41,1],[3,41,2],[7,33,2],[7,38,5],[8,5,1],[8,33,12],[8,58,1],[9,34,11],[10,36,10],[11,35,12],[12,37,9],[13,37,2],[13,40,9],[13,53,3],[14,21,37],[15,23,37],[16,31,1],[16,37,8],[16,46,14],[17,43,1],[17,54,3],[20,47,2],[20,57,1],[21,37,2],[21,51,2]],[[2,23,2],[2,41,1],[3,41,2],[7,38,4],[8,33,12],[9,15,1],[9,34,10],[10,36,10],[11,35,12],[12,37,9],[13,37,11],[14,21,37],[15,23,37],[16,30,1],[16,37,23],[17,42,2],[17,54,3],[21,51,2]],[[2,23,2],[7,39,2],[8,33,12],[9,15,1],[9,34,10],[10,36,10],[11,35,12],[12,37,9],[13,37,9],[14,21,13],[14,35,23],[15,23,37],[16,29,2],[16,37,4],[16,42,18],[17,42,2],[17,53,4]],[[2,23,2],[8,15,1],[8,33,11],[9,14,2],[9,34,9],[10,35,10],[11,35,12],[12,37,9],[13,37,2],[13,40,9],[14,22,11],[14,35,22],[15,22,38],[16,29,4],[16,37,4],[16,42,18],[17,42,3],[17,52,5],[22,13,1]],[[2,23,2],[3,78,1],[5,56,1],[6,56,2],[8,33,11],[9,14,2],[9,33,10],[10,35,10],[11,35,12],[12,37,8],[13,37,2],[13,40,9],[14,22,9],[14,35,22],[15,22,38],[16,29,3],[16,37,23],[17,42,3],[17,51,6],[17,58,1],[22,13,1]],[[2,23,2],[3,78,1],[5,56,1],[6,56,2],[8,33,3],[8,37,7],[9,14,2],[9,33,9],[10,36,9],[11,35,12],[12,37,8],[13,37,2],[13,40,7],[14,21,8],[14,36,2],[14,39,18],[15,22,37],[16,29,3],[16,37,23],[17,42,3],[17,50,9],[22,13,1],[24,27,1],[25,26,2]],[[3,78,1],[5,30,1],[5,56,1],[6,56,2],[8,33,3],[8,37,7],[9,10,1],[9,33,9],[9,43,2],[10,36,8],[11,35,11],[12,37,9],[13,37,9],[14,21,7],[14,36,2],[14,39,18],[15,21,39],[16,28,4],[16,36,24],[17,12,1],[17,42,3],[17,50,9],[18,12,1],[19,72,1],[22,13,1],[24,27,1],[25,26,2],[27,73,1]],[[3,78,1],[5,29,2],[5,56,1],[6,56,2],[7,3,1],[8,3,1],[8,33,4],[8,38,6],[9,10,1],[9,33,9],[9,43,2],[10,10,1],[10,31,1],[10,36,8],[11,35,11],[12,37,9],[13,37,9],[14,21,7],[14,36,2],[14,39,18],[15,21,38],[16,28,4],[16,35,25],[17,12,1],[17,42,3],[17,50,9],[18,12,1],[18,23,2],[19,72,1],[22,13,1],[25,26,2],[26,73,1],[27,73,1]],[[3,78,1],[5,29,2],[6,29,1],[7,3,1],[8,3,1],[8,34,3],[8,38,6],[9,10,1],[9,33,9],[9,43,2],[10,10,1],[10,30,2],[10,36,8],[11,35,12],[12,37,9],[13,37,9],[14,21,6],[14,36,2],[14,39,18],[15,22,37],[16,26,1],[16,28,4],[16,35,25],[17,12,1],[17,42,3],[17,49,10],[18,12,1],[19,72,1],[21,28,1],[26,73,1],[27,73,1]],[[5,29,2],[7,3,1],[7,74,1],[8,34,3],[8,38,6],[9,10,1],[9,33,9],[9,43,2],[10,10,1],[10,30,2],[10,36,8],[11,35,3],[11,39,8],[12,37,9],[13,37,10],[14,21,5],[14,37,20],[15,22,37],[16,26,1],[16,28,5],[16,35,25],[17,42,3],[17,49,10],[19,72,1],[21,28,1],[26,73,1]],[[5,29,2],[7,74,1],[8,34,3],[8,38,6],[9,33,9],[9,43,2],[10,30,2],[10,36,8],[11,35,3],[11,39,8],[12,37,6],[12,44,2],[13,37,10],[14,22,4],[14,37,20],[15,22,38],[16,26,1],[16,28,5],[16,35,25],[17,42,3],[17,49,10],[21,27,2],[21,38,1],[26,73,1]],[[7,74,1],[8,6,1],[8,34,3],[8,38,6],[8,59,1],[9,33,9],[9,43,2],[10,31,1],[10,36,8],[11,35,3],[11,39,8],[12,37,6],[12,44,2],[13,37,10],[14,22,5],[14,37,2],[14,40,17],[15,22,38],[16,28,5],[16,35,25],[17,42,4],[17,49,10],[19,72,1],[20,48,2],[21,27,2],[21,38,2],[22,27,1],[26,73,1]],[[7,6,1],[8,6,1],[8,34,3],[8,38,6],[9,34,8],[9,43,2],[10,36,9],[11,35,3],[11,39,8],[12,37,9],[13,37,10],[14,22,5],[14,37,2],[14,40,17],[15,22,38],[16,26,1],[16,28,5],[16,35,26],[17,42,4],[17,50,9],[20,48,2],[21,26,3],[21,38,2],[21,52,1],[22,39,1]],[[7,6,1],[7,35,2],[8,6,1],[8,34,3],[8,38,6],[9,34,8],[9,43,2],[10,36,9],[11,35,12],[12,37,6],[12,44,2],[13,38,10],[14,22,6],[14,37,2],[14,40,17],[15,22,38],[16,26,1],[16,29,4],[16,36,25],[17,42,4],[17,50,9],[20,48,2],[21,27,2],[21,38,2],[21,52,1]],[[2,25,1],[7,35,2],[8,34,10],[9,16,1],[9,34,9],[9,44,2],[10,36,9],[11,35,13],[12,37,9],[13,37,12],[14,22,7],[14,36,3],[14,40,17],[15,22,37],[16,29,3],[16,37,9],[16,47,14],[17,42,4],[17,50,10],[20,48,2],[21,26,1],[21,38,2],[21,52,1]],[[2,25,1],[2,42,2],[3,42,2],[7,35,2],[8,34,11],[9,34,9],[10,36,11],[11,35,13],[12,37,9],[13,38,12],[14,22,8],[14,36,3],[14,40,18],[15,22,38],[16,30,2],[16,37,9],[16,47,14],[17,42,4],[17,51,9]],[[2,24,2],[6,57,1],[7,35,2],[8,34,11],[9,16,1],[9,35,9],[10,36,11],[11,36,12],[12,37,9],[13,38,12],[14,22,9],[14,36,3],[14,40,18],[15,22,38],[16,30,2],[16,37,9],[16,47,14],[17,42,4],[17,52,8]],[[2,24,2],[6,57,1],[7,35,2],[8,34,11],[9,15,2],[9,35,9],[10,37,11],[11,36,12],[12,38,8],[13,38,10],[14,22,12],[14,36,22],[15,22,39],[16,30,2],[16,38,8],[16,47,14],[17,43,3],[17,53,5]],[[2,24,2],[5,57,2],[6,57,2],[7,35,2],[8,34,12],[9,16,1],[9,35,10],[10,37,11],[11,36,12],[12,38,8],[13,38,11],[14,22,13],[14,37,21],[15,24,37],[16,30,2],[16,38,4],[16,43,3],[16,47,14],[17,43,2],[17,54,4],[18,13,1],[22,14,1]],[[2,25,1],[5,57,2],[6,57,2],[7,4,1],[7,35,2],[7,40,3],[7,76,1],[8,34,12],[9,11,1],[9,16,1],[9,35,10],[10,37,11],[11,36,12],[12,38,9],[13,38,2],[13,41,8],[14,22,37],[15,24,37],[16,31,1],[16,39,3],[16,43,18],[17,13,1],[17,43,2],[17,55,3],[18,13,1],[22,14,1],[25,27,2],[27,74,1]],[[5,30,2],[5,57,2],[6,57,2],[7,4,1],[7,35,3],[7,40,4],[8,34,12],[9,10,2],[9,36,9],[10,11,1],[10,37,11],[11,37,11],[12,38,9],[13,38,2],[13,41,8],[13,54,2],[14,23,36],[15,24,37],[16,31,1],[16,33,1],[16,39,3],[16,43,18],[17,12,2],[17,44,2],[17,56,2],[18,13,1],[25,27,2],[27,74,1]],[[5,30,2],[5,57,1],[6,31,1],[6,57,1],[7,4,1],[7,35,3],[7,39,5],[8,35,12],[9,10,2],[9,36,10],[10,11,1],[10,36,12],[11,38,10],[12,38,9],[13,38,2],[13,41,8],[13,53,4],[14,23,37],[15,26,35],[16,31,3],[16,39,2],[16,43,18],[17,13,1],[17,44,2],[17,56,2],[18,13,1],[18,25,1],[18,73,1],[19,73,1],[25,27,2],[27,74,1]],[[4,15,1],[5,30,2],[6,31,1],[6,75,1],[7,4,1],[7,35,3],[7,39,5],[7,75,1],[8,7,1],[8,35,12],[9,10,2],[9,32,1],[9,37,9],[10,11,1],[10,31,2],[10,36,3],[10,40,8],[11,38,10],[12,38,9],[13,38,2],[13,41,9],[13,51,7],[14,23,37],[15,27,34],[16,32,1],[16,39,1],[16,43,18],[17,13,1],[17,43,1],[17,56,2],[18,13,1],[18,25,1],[18,73,1],[26,74,1]],[[5,30,2],[6,31,1],[6,75,1],[7,35,3],[7,39,6],[7,75,1],[8,7,1],[8,35,11],[9,11,1],[9,32,1],[9,37,8],[10,11,1],[10,31,2],[10,36,3],[10,40,8],[11,38,10],[12,39,8],[13,23,3],[13,38,2],[13,41,17],[14,23,37],[15,27,34],[16,32,2],[16,43,4],[16,50,11],[17,30,1],[18,25,1],[21,28,2],[25,54,1],[26,74,1]],[[5,30,2],[7,35,3],[7,39,6],[8,7,1],[8,35,10],[9,32,1],[9,38,8],[10,31,2],[10,37,2],[10,40,8],[11,38,10],[12,39,9],[13,23,4],[13,38,2],[13,41,18],[14,23,37],[15,27,35],[16,32,2],[16,43,4],[16,50,12],[17,30,1],[18,25,1],[21,28,2],[21,40,1],[22,29,1],[25,54,1],[26,74,1]],[[7,35,4],[7,40,5],[8,7,1],[8,35,11],[9,37,9],[10,37,10],[11,38,10],[12,39,9],[13,23,6],[13,38,2],[13,41,18],[14,23,38],[15,27,1],[15,30,4],[15,38,24],[16,44,3],[16,51,10],[17,29,2],[20,49,1],[20,59,1],[21,28,2],[21,39,2],[22,29,1],[25,54,1]],[[7,35,10],[8,36,10],[9,37,9],[10,37,11],[11,39,9],[12,39,2],[12,42,7],[13,23,8],[13,37,3],[13,41,18],[14,23,38],[15,30,4],[15,39,23],[16,44,3],[16,52,9],[17,12,1],[17,30,1],[20,49,2],[20,59,1],[21,28,2],[21,39,2],[21,53,2],[22,15,1],[22,29,1],[22,39,1]],[[2,25,1],[2,43,1],[3,44,1],[7,35,11],[8,36,8],[8,45,2],[9,37,9],[10,37,11],[11,39,9],[12,39,2],[12,42,8],[13,24,9],[13,37,22],[14,24,37],[15,31,4],[15,39,3],[15,43,19],[16,44,3],[16,54,7],[20,49,2],[20,59,1],[21,29,1],[21,39,2],[21,50,1],[21,53,2],[22,39,1]],[[2,25,2],[2,43,1],[3,44,1],[7,36,10],[8,36,11],[9,38,9],[10,37,12],[11,39,9],[12,39,2],[12,42,6],[12,49,2],[13,24,12],[13,37,22],[14,24,38],[15,32,3],[15,40,3],[15,44,4],[15,49,13],[16,44,3],[16,55,4],[16,60,1],[20,49,2],[20,59,1],[21,39,2],[21,53,2],[22,15,1],[22,39,1]],[[2,25,2],[6,36,4],[7,36,10],[8,17,1],[8,37,9],[9,16,2],[9,38,9],[10,38,10],[11,39,9],[12,39,2],[12,42,10],[13,24,36],[14,25,37],[15,33,1],[15,40,3],[15,44,4],[15,50,12],[16,44,3],[16,56,5],[22,15,1]],[[2,25,2],[6,37,3],[7,36,11],[8,17,1],[8,39,8],[9,16,2],[9,38,10],[10,39,10],[11,39,9],[12,39,2],[12,42,8],[12,51,1],[12,56,1],[13,24,36],[14,26,36],[15,33,2],[15,40,3],[15,44,4],[15,50,12],[16,45,2],[16,57,2],[22,15,1]],[[2,25,2],[5,58,1],[6,36,5],[6,42,2],[6,58,2],[7,36,12],[8,38,9],[9,17,1],[9,38,11],[10,39,10],[11,40,9],[12,39,2],[12,42,9],[12,55,3],[13,24,36],[14,26,36],[15,40,3],[15,44,4],[15,50,12],[16,57,2],[17,14,1],[18,14,1],[22,15,1]],[[5,58,1],[6,36,10],[6,58,2],[7,5,1],[7,37,11],[8,5,1],[8,17,1],[8,39,8],[9,12,1],[9,17,1],[9,38,12],[10,39,11],[11,40,9],[12,39,2],[12,42,10],[12,54,5],[13,24,37],[14,27,35],[15,40,2],[15,44,4],[15,50,12],[16,46,1],[16,57,2],[17,14,1],[18,14,1],[22,15,1],[24,29,1],[25,28,2],[27,75,1]],[[5,32,1],[5,58,1],[6,37,9],[6,58,2],[7,5,1],[7,37,11],[8,5,1],[8,39,8],[9,12,1],[9,38,12],[10,12,1],[10,39,10],[11,40,9],[12,39,2],[12,42,11],[12,54,5],[13,24,37],[14,28,34],[15,40,2],[15,44,4],[15,50,1],[15,52,10],[16,45,2],[16,58,1],[17,14,1],[18,13,2],[22,15,1],[25,28,2],[27,75,1]],[[5,32,1],[5,58,1],[6,37,9],[6,58,2],[7,5,1],[7,37,10],[8,5,1],[8,39,7],[9,12,1],[9,38,13],[10,12,1],[10,33,1],[10,40,9],[11,40,9],[12,39,2],[12,43,9],[12,54,5],[13,24,37],[14,28,35],[15,41,1],[15,45,3],[15,51,12],[16,46,1],[16,58,1],[17,14,1],[18,13,2],[19,74,1],[25,28,2],[26,75,1],[27,75,1]],[[5,31,2],[6,37,10],[7,5,1],[7,37,10],[7,76,1],[8,39,7],[9,12,1],[9,38,12],[10,33,1],[10,40,9],[11,40,9],[12,39,2],[12,43,9],[12,53,6],[13,25,37],[14,28,35],[15,41,1],[15,45,3],[15,51,11],[16,46,1],[17,14,1],[17,30,1],[18,13,2],[19,74,1],[25,28,2],[26,75,1]],[[2,26,2],[2,45,1],[3,12,1],[3,45,1],[4,13,1],[5,32,2],[5,59,2],[5,70,1],[6,35,1],[6,37,10],[6,59,2],[7,6,1],[7,37,10],[7,76,3],[8,39,7],[8,61,2],[9,12,3],[9,18,3],[9,39,11],[9,66,2],[10,13,1],[10,33,1],[10,40,9],[11,40,9],[12,9,1],[12,39,2],[12,43,9],[12,53,6],[13,14,1],[13,25,37],[14,28,35],[14,75,1],[15,41,1],[15,45,3],[15,51,2],[15,54,8],[16,31,1],[16,45,2],[16,58,1],[17,14,2],[17,30,3],[18,14,2],[18,26,1],[18,39,1],[18,61,1],[18,75,2],[19,54,1],[19,74,3],[20,7,1],[20,50,2],[20,61,1],[21,17,2],[21,28,4],[21,40,3],[21,50,1],[21,54,1],[22,16,3],[22,49,1],[22,53,1],[25,29,2],[26,53,1],[26,75,2]],[[4,21,2],[6,33,1],[6,37,12],[6,57,1],[6,63,1],[7,32,3],[7,38,11],[8,40,8],[8,65,3],[8,71,1],[9,18,2],[9,22,2],[9,33,2],[9,40,11],[9,56,2],[9,66,1],[9,69,3],[10,11,1],[10,19,1],[10,41,9],[10,59,1],[11,41,9],[12,12,1],[12,40,2],[12,43,18],[12,69,2],[13,12,1],[13,17,2],[13,25,39],[13,78,1],[14,17,1],[14,29,36],[14,78,1],[15,42,1],[15,46,4],[15,52,11],[16,27,1],[16,47,2],[16,60,1],[16,69,3],[17,40,2],[18,19,1],[18,35,2],[18,39,5],[18,65,2],[19,35,2],[19,57,3],[20,51,1],[21,32,1],[22,19,3],[22,56,2],[23,20,1],[23,56,1],[25,28,1],[26,65,1]],[[1,30,1],[2,30,2],[2,35,1],[3,34,3],[4,20,2],[5,6,1],[6,6,2],[6,38,4],[6,43,7],[6,62,1],[7,14,1],[7,38,12],[8,14,2],[8,17,1],[8,41,10],[8,69,1],[8,71,1],[9,5,3],[9,21,2],[9,26,2],[9,36,1],[9,41,12],[9,56,1],[9,60,1],[9,74,1],[10,6,2],[10,21,2],[10,42,9],[10,62,2],[11,43,8],[12,6,2],[12,42,2],[12,45,19],[12,73,3],[13,26,39],[14,0,2],[14,30,37],[15,6,2],[15,37,1],[15,43,2],[15,47,4],[15,53,14],[16,6,2],[16,48,2],[16,61,2],[17,40,1],[17,44,1],[18,1,1],[18,22,2],[18,34,2],[18,39,1],[18,43,3],[18,69,1],[19,2,1],[19,22,3],[19,34,2],[19,54,1],[19,61,2],[20,15,2],[20,53,3],[20,59,1],[21,15,2],[21,49,1],[21,58,3],[21,70,1],[22,24,2],[22,39,1],[22,48,3],[22,62,2],[23,24,1],[24,26,2],[25,38,1],[26,61,1],[28,3,1]],[[3,4,1],[5,30,1],[6,1,2],[6,39,4],[6,44,7],[6,63,1],[6,65,3],[7,39,12],[7,66,1],[8,5,1],[8,42,10],[9,4,2],[9,30,3],[9,42,12],[9,59,2],[10,31,1],[10,44,9],[11,44,9],[12,43,2],[12,46,19],[13,4,2],[13,20,3],[13,27,41],[14,25,2],[14,30,39],[15,37,2],[15,44,3],[15,48,5],[15,54,1],[15,56,12],[16,49,3],[16,63,2],[17,42,2],[18,5,2],[18,27,2],[18,49,3],[18,75,1],[19,5,2],[19,38,1],[19,44,1],[19,50,3],[19,66,3],[19,74,2],[20,0,2],[20,3,2],[20,19,1],[20,67,1],[21,0,2],[21,19,2],[21,41,1],[22,28,2],[22,39,5],[22,60,2],[23,27,4],[23,64,2],[27,0,1],[27,30,1],[28,7,1]],[[2,39,1],[3,44,1],[3,62,1],[4,29,1],[5,29,1],[5,32,3],[5,68,1],[6,40,12],[6,67,2],[6,70,3],[7,8,1],[7,40,12],[8,23,1],[8,43,10],[9,26,1],[9,36,1],[9,44,11],[10,14,3],[10,29,3],[10,35,2],[10,45,10],[11,24,1],[11,45,9],[12,15,3],[12,44,2],[12,47,20],[13,15,2],[13,28,42],[14,9,2],[14,30,40],[15,9,2],[15,38,1],[15,45,3],[15,50,4],[15,57,13],[16,5,2],[16,16,2],[16,50,3],[16,63,5],[17,2,1],[17,6,4],[17,39,2],[18,1,1],[18,7,3],[18,52,3],[19,32,1],[19,47,2],[20,4,2],[20,7,3],[20,63,2],[20,71,1],[21,4,3],[21,67,2],[21,78,1],[22,32,3],[22,47,1],[22,57,3],[22,67,1],[23,32,3],[23,58,1],[23,66,2],[23,70,3],[24,71,1],[25,40,1],[26,17,1],[26,47,1],[27,6,1]],[[2,42,2],[3,47,2],[3,66,3],[5,48,4],[5,72,1],[6,21,1],[6,41,12],[6,73,1],[6,75,1],[7,20,3],[7,41,13],[8,4,1],[8,44,10],[9,13,2],[9,45,12],[10,13,2],[10,35,1],[10,39,4],[10,46,6],[10,53,3],[10,61,1],[10,77,1],[11,46,10],[11,77,2],[12,46,2],[12,49,11],[12,61,8],[13,14,2],[13,29,43],[14,14,2],[14,30,43],[15,8,1],[15,39,1],[15,46,3],[15,51,4],[15,58,15],[15,75,2],[16,20,1],[16,51,4],[16,63,7],[17,10,1],[17,12,1],[18,35,1],[18,52,2],[19,35,4],[19,47,2],[19,58,4],[20,21,1],[20,76,3],[21,28,3],[22,29,1],[22,49,4],[22,75,1],[23,37,3],[23,50,1],[23,78,1],[24,39,2],[25,16,3],[25,40,1],[26,16,3],[26,51,1],[27,10,1]],[[1,18,3],[2,18,2],[3,72,1],[4,0,2],[5,18,1],[5,38,1],[5,43,1],[5,48,5],[5,78,1],[6,43,12],[6,58,3],[7,3,3],[7,42,13],[8,3,2],[8,7,1],[8,45,11],[9,32,1],[9,36,1],[9,46,12],[10,24,2],[10,39,3],[10,47,6],[10,55,3],[11,1,2],[11,7,2],[11,24,2],[11,39,3],[11,48,9],[12,7,1],[12,47,2],[12,50,12],[12,64,7],[13,25,3],[13,30,14],[13,45,29],[14,31,46],[15,19,3],[15,40,1],[15,47,10],[15,58,17],[16,53,3],[16,63,3],[16,67,5],[16,73,1],[17,16,1],[17,50,1],[18,13,1],[18,62,2],[19,20,3],[19,40,1],[19,57,2],[19,62,3],[20,53,1],[20,57,2],[21,16,1],[21,18,1],[21,34,1],[21,74,1],[22,43,1],[22,67,1],[23,42,3],[23,57,1],[23,67,2],[23,76,1],[24,4,1],[25,22,1],[26,51,1],[26,55,3],[27,56,1]],[[2,24,3],[5,6,1],[5,24,2],[5,44,1],[5,49,6],[6,44,11],[6,63,1],[6,65,1],[7,31,2],[7,43,14],[7,70,1],[8,10,2],[8,13,1],[8,23,1],[8,45,14],[8,61,1],[9,13,2],[9,47,13],[10,23,3],[10,48,6],[10,56,2],[10,61,1],[10,72,3],[11,44,1],[11,49,10],[12,48,2],[12,51,12],[12,66,7],[13,2,1],[13,6,3],[13,31,10],[13,46,28],[14,7,2],[14,24,3],[14,31,46],[15,20,1],[15,40,3],[15,47,11],[15,59,18],[16,31,1],[16,54,4],[16,63,13],[17,21,1],[17,30,2],[17,55,2],[17,71,1],[18,17,1],[18,22,3],[18,62,2],[19,45,3],[19,58,1],[19,69,3],[20,23,1],[20,45,2],[20,57,2],[20,63,2],[20,70,3],[21,20,5],[21,40,1],[22,11,3],[22,21,1],[22,39,3],[23,47,2],[23,59,2],[23,73,3],[24,9,3],[24,47,3],[24,75,1],[25,50,1],[26,57,1],[27,62,1]],[[2,29,1],[2,31,1],[2,57,3],[3,57,3],[5,12,3],[5,50,7],[6,44,13],[7,44,15],[7,72,3],[8,37,1],[8,46,15],[9,20,2],[9,48,13],[10,21,1],[10,31,1],[10,49,6],[10,57,3],[10,78,1],[11,10,3],[11,35,2],[11,50,11],[12,50,14],[12,68,7],[13,8,3],[13,32,6],[13,48,29],[14,29,1],[14,32,47],[15,30,2],[15,36,1],[15,38,21],[15,60,19],[16,30,2],[16,56,3],[16,63,16],[17,56,2],[17,71,4],[18,61,1],[19,31,2],[19,52,1],[19,74,3],[20,31,3],[20,65,1],[20,69,1],[21,4,1],[22,17,1],[22,43,1],[23,53,2],[23,66,3],[24,52,4],[24,67,1],[25,56,1],[26,31,4]],[[2,34,2],[2,63,3],[3,16,1],[3,34,3],[3,63,3],[4,1,1],[5,0,2],[5,20,1],[5,51,8],[5,60,1],[6,19,2],[6,35,1],[6,45,3],[6,49,9],[7,45,17],[7,78,1],[8,4,2],[8,20,2],[8,33,3],[8,41,2],[8,47,16],[9,11,2],[9,19,2],[9,49,10],[10,11,1],[10,19,1],[10,50,7],[10,58,3],[11,50,12],[11,77,2],[12,19,2],[12,25,1],[12,51,15],[12,70,6],[13,20,1],[13,26,1],[13,33,2],[13,50,2],[13,53,25],[14,4,2],[14,17,3],[14,33,46],[15,4,2],[15,36,43],[16,51,3],[16,57,2],[16,63,16],[17,32,1],[17,57,3],[17,72,5],[18,32,4],[19,28,1],[19,34,2],[19,74,1],[20,9,5],[20,56,4],[20,75,2],[21,8,6],[21,32,5],[21,74,3],[22,31,3],[22,50,2],[24,57,5],[24,75,1],[25,58,1]],[[1,32,2],[2,32,2],[2,70,2],[3,22,2],[3,42,1],[3,70,3],[5,6,3],[5,52,7],[6,46,2],[6,49,10],[6,65,1],[7,46,18],[8,48,16],[9,0,1],[9,11,2],[9,27,2],[9,49,12],[10,17,3],[10,30,3],[10,51,6],[10,58,2],[11,42,1],[11,46,3],[11,51,12],[12,47,1],[12,52,16],[12,73,4],[13,8,1],[13,20,2],[13,51,2],[13,54,25],[14,20,2],[14,34,45],[15,35,44],[16,51,9],[16,63,16],[17,58,3],[17,71,8],[20,42,3],[20,63,3],[20,77,1],[21,18,1],[21,64,2],[21,75,3],[23,28,3],[24,27,1],[24,65,1],[24,77,1],[25,64,3],[26,43,3],[27,44,1]],[[2,76,2],[3,30,1],[3,45,4],[3,76,1],[4,29,1],[5,14,1],[5,52,8],[6,0,1],[6,5,1],[6,13,2],[6,29,2],[6,47,2],[6,50,10],[6,71,3],[7,0,1],[7,47,18],[8,49,16],[9,6,3],[9,34,1],[9,50,12],[10,7,1],[10,31,1],[10,52,8],[11,45,2],[11,52,11],[12,28,3],[12,53,16],[13,52,2],[13,55,24],[14,4,2],[14,29,2],[14,35,44],[15,4,3],[15,15,3],[15,29,2],[15,35,44],[16,43,3],[16,51,10],[16,63,16],[17,2,3],[17,59,3],[17,68,11],[18,43,2],[18,59,2],[19,40,1],[19,45,3],[20,69,3],[21,22,4],[21,46,1],[21,54,1],[21,70,1],[22,43,5],[22,61,1],[23,44,1],[23,61,3],[25,70,3],[26,73,1]],[[2,43,3],[3,52,1],[5,0,1],[5,53,8],[5,78,1],[6,7,1],[6,47,2],[6,51,10],[6,78,1],[7,6,2],[7,36,3],[7,47,17],[8,49,16],[9,38,3],[9,51,12],[10,15,1],[10,29,3],[10,38,2],[10,42,3],[10,52,9],[11,29,2],[11,42,3],[11,52,12],[11,74,1],[12,54,15],[13,5,3],[13,20,1],[13,53,26],[14,5,3],[14,31,3],[14,36,12],[14,51,28],[15,10,1],[15,36,43],[16,40,1],[16,43,5],[16,51,12],[16,64,15],[17,59,3],[17,67,12],[18,59,3],[18,77,2],[20,53,3],[21,26,5],[21,53,3],[21,75,4],[22,29,1],[23,40,3],[23,69,2],[24,41,1],[25,2,1],[25,77,2]],[[2,48,2],[4,39,3],[5,4,3],[5,54,7],[6,5,2],[6,23,2],[6,48,2],[6,52,9],[7,24,1],[7,40,3],[7,47,14],[8,3,2],[8,47,1],[8,49,17],[9,2,1],[9,51,13],[10,29,3],[10,43,1],[10,51,11],[11,6,1],[11,53,12],[12,41,1],[12,54,15],[13,53,26],[14,37,4],[14,52,27],[15,16,3],[15,28,2],[15,37,42],[16,27,3],[16,40,39],[17,16,2],[17,52,3],[17,59,4],[17,66,13],[18,15,3],[18,60,3],[18,76,3],[19,56,3],[20,51,1],[20,57,3],[22,35,1],[22,55,1],[22,57,3],[23,54,3],[25,7,3],[26,7,1],[26,9,1],[27,62,1]],[[2,37,2],[3,64,1],[4,45,1],[5,12,2],[5,18,1],[5,54,7],[6,11,3],[6,31,1],[6,48,2],[6,53,8],[7,0,2],[7,17,1],[7,30,3],[7,48,12],[8,1,1],[8,49,16],[9,8,5],[9,52,13],[10,9,1],[10,25,3],[10,51,11],[11,25,2],[11,40,4],[11,53,13],[12,53,1],[12,55,14],[13,54,25],[14,18,1],[14,31,1],[14,53,26],[15,38,41],[16,39,40],[17,46,2],[17,52,11],[17,65,14],[18,21,1],[18,59,4],[18,73,6],[19,12,1],[19,61,1],[19,78,1],[21,39,4],[21,66,3],[22,39,4],[22,67,1],[23,0,1],[23,52,1],[24,51,3],[25,14,2]],[[1,2,2],[2,2,2],[3,70,3],[5,55,5],[6,17,3],[6,25,1],[6,53,7],[7,23,3],[7,36,1],[7,48,11],[8,7,2],[8,23,3],[8,48,15],[9,16,3],[9,52,13],[9,70,1],[10,12,2],[10,15,3],[10,41,1],[10,51,14],[11,53,7],[11,64,1],[12,53,12],[13,55,13],[13,70,9],[14,5,1],[14,53,26],[15,0,1],[15,4,1],[15,28,3],[15,39,40],[16,28,4],[16,39,40],[17,46,3],[17,53,26],[18,16,2],[18,29,1],[18,59,4],[18,70,9],[19,16,3],[19,61,2],[19,77,2],[20,65,1],[20,69,3],[22,45,1],[22,47,1],[23,6,1],[23,66,5],[24,67,1]],[[2,7,3],[2,67,1],[3,76,3],[5,55,4],[6,23,3],[6,29,1],[6,49,1],[6,53,9],[7,0,2],[7,23,3],[7,48,11],[7,60,1],[8,48,15],[9,22,1],[9,52,11],[10,19,2],[10,45,3],[10,51,13],[11,20,1],[11,36,3],[11,46,1],[11,53,6],[11,62,6],[12,53,12],[13,55,13],[13,70,9],[14,29,2],[14,54,25],[15,4,1],[15,8,1],[15,30,1],[15,39,40],[16,40,39],[17,42,2],[17,46,3],[17,52,27],[18,32,3],[18,58,5],[18,67,12],[19,59,1],[19,61,2],[19,75,4],[22,51,4],[23,12,1],[23,16,3],[23,78,1],[24,17,1],[24,63,3],[24,75,1],[26,63,1]],[[2,14,2],[2,72,3],[3,14,2],[6,29,1],[6,37,1],[6,53,8],[7,3,2],[7,28,3],[7,35,1],[7,46,13],[7,64,3],[8,3,1],[8,6,3],[8,18,1],[8,34,3],[8,48,15],[8,65,1],[9,34,2],[9,52,10],[9,68,1],[10,27,4],[10,51,12],[10,66,4],[11,27,1],[11,42,1],[11,52,7],[11,60,5],[11,71,3],[12,52,8],[12,61,4],[13,55,11],[13,70,8],[14,54,25],[15,16,2],[15,40,7],[15,53,26],[16,40,39],[17,42,2],[17,45,4],[17,52,27],[18,58,5],[18,65,14],[19,28,3],[19,58,1],[19,60,3],[19,74,5],[23,20,4],[24,21,1],[26,32,2]],[[3,20,2],[5,14,2],[6,9,1],[6,15,1],[6,40,2],[6,53,7],[7,10,1],[7,34,3],[7,49,9],[7,69,3],[8,9,3],[8,48,14],[9,24,2],[9,48,1],[9,51,11],[10,33,2],[10,51,12],[10,72,4],[11,30,1],[11,52,13],[11,77,2],[12,52,7],[12,60,5],[13,54,11],[13,70,6],[13,77,1],[14,54,24],[15,16,2],[15,20,3],[15,41,3],[15,53,26],[16,3,1],[16,41,38],[17,43,36],[18,52,2],[18,57,5],[18,64,15],[19,32,3],[19,57,2],[19,60,3],[19,71,7],[20,74,1],[23,65,1],[25,76,1],[26,37,1]],[[3,24,1],[4,75,1],[5,22,1],[6,1,1],[6,9,1],[6,21,2],[6,53,6],[7,8,3],[7,38,3],[7,48,1],[7,50,9],[8,17,2],[8,39,1],[8,47,12],[9,28,2],[9,47,3],[9,51,10],[10,7,3],[10,51,11],[10,78,1],[11,34,3],[11,38,1],[11,51,11],[11,68,3],[11,76,3],[12,52,6],[12,60,4],[13,53,11],[13,70,1],[13,72,2],[14,1,1],[14,54,23],[15,26,1],[15,53,26],[16,6,2],[16,42,37],[17,43,36],[18,48,2],[18,51,3],[18,55,3],[18,59,20],[19,49,2],[19,56,2],[19,59,3],[19,68,8],[20,72,1],[21,0,1],[22,0,2],[22,67,1],[23,0,1],[23,66,5],[24,0,1],[25,0,1],[26,0,1],[27,0,1],[28,0,1],[29,0,1],[30,0,1]],[[2,71,1],[4,31,1],[4,78,1],[5,0,1],[6,7,2],[6,25,1],[6,53,5],[7,14,1],[7,18,1],[7,43,3],[7,48,1],[7,50,1],[7,52,6],[7,62,2],[8,20,2],[8,48,9],[9,20,1],[9,47,14],[10,43,1],[10,45,1],[10,51,11],[11,42,2],[11,51,9],[11,61,2],[11,74,3],[12,0,3],[12,45,1],[12,51,6],[12,60,3],[12,75,2],[13,51,12],[14,54,20],[15,28,1],[15,53,23],[16,27,1],[16,31,1],[16,42,36],[17,2,3],[17,43,34],[18,48,1],[18,51,26],[19,55,2],[19,59,2],[19,66,9],[20,59,1],[20,70,1],[21,1,5],[22,1,6],[23,1,6],[23,33,2],[24,0,7],[25,0,7],[26,0,7],[27,0,7],[28,0,6],[29,0,7],[30,0,6]],[[2,75,1],[3,34,1],[4,33,3],[5,6,3],[6,7,1],[6,54,2],[7,18,2],[7,48,1],[7,52,6],[7,66,3],[8,19,1],[8,47,10],[8,67,1],[9,26,3],[9,38,1],[9,47,13],[10,19,1],[10,51,10],[11,46,3],[11,51,10],[12,7,1],[12,51,6],[12,60,3],[13,51,11],[14,53,9],[14,63,9],[15,5,2],[15,30,3],[15,35,2],[15,53,21],[16,5,2],[16,31,2],[16,35,3],[16,43,32],[17,8,1],[17,43,33],[18,13,1],[18,48,1],[18,51,6],[18,58,17],[19,12,3],[19,54,2],[19,58,3],[19,64,9],[20,49,1],[20,58,2],[21,7,4],[22,6,6],[23,6,6],[24,0,12],[24,41,3],[25,0,12],[25,22,1],[26,0,12],[27,0,12],[28,0,12],[29,0,12],[30,0,12]],[[2,3,1],[2,15,1],[6,8,2],[6,13,1],[6,17,1],[6,34,2],[7,8,1],[7,16,3],[7,28,1],[7,34,1],[7,52,5],[7,71,2],[8,48,8],[8,71,1],[9,32,1],[9,42,3],[9,47,14],[10,43,1],[10,47,1],[10,50,11],[11,50,9],[12,11,2],[12,50,6],[12,59,2],[13,10,3],[13,50,11],[14,2,2],[14,52,8],[14,62,8],[15,2,3],[15,40,1],[15,52,20],[16,22,1],[16,39,3],[16,44,29],[17,12,2],[17,22,1],[17,44,29],[18,47,2],[18,51,5],[18,57,17],[19,53,3],[19,57,3],[19,62,10],[20,58,1],[21,12,4],[22,11,6],[23,11,6],[24,0,17],[25,0,17],[25,27,2],[26,0,17],[27,0,17],[28,0,16],[29,0,16],[30,0,16]],[[2,7,1],[5,15,2],[6,15,3],[6,37,3],[7,28,1],[7,32,1],[7,38,1],[7,52,7],[8,27,3],[8,33,1],[8,49,7],[8,69,1],[9,32,3],[9,46,13],[10,46,3],[10,50,10],[11,50,8],[12,5,1],[12,15,1],[12,50,6],[12,59,1],[13,4,1],[13,14,2],[13,50,10],[14,52,8],[14,61,7],[15,52,18],[15,78,1],[16,44,27],[17,16,3],[17,44,27],[18,10,2],[18,47,2],[18,50,22],[19,53,2],[19,57,2],[19,61,9],[20,57,2],[21,0,1],[21,16,4],[22,0,4],[22,16,5],[23,0,4],[23,16,5],[24,0,21],[25,0,21],[25,32,1],[26,0,21],[27,0,21],[28,0,21],[29,0,21],[30,0,21]],[[2,11,2],[2,23,1],[3,11,2],[6,17,1],[6,19,1],[7,17,2],[7,26,1],[7,32,1],[7,52,3],[7,60,3],[8,31,2],[8,37,1],[8,50,5],[8,61,1],[8,73,1],[9,36,3],[9,47,10],[10,46,16],[11,0,1],[11,50,8],[11,61,1],[12,50,7],[12,59,1],[13,50,10],[14,13,1],[14,51,9],[14,61,4],[15,51,17],[16,45,24],[17,20,3],[17,45,24],[18,0,2],[18,13,3],[18,21,2],[18,48,7],[18,56,14],[19,0,2],[19,52,2],[19,56,12],[19,72,2],[20,0,3],[20,57,1],[21,0,5],[21,21,3],[22,0,8],[22,20,5],[23,0,8],[23,20,5],[24,0,25],[25,0,25],[26,0,25],[27,0,25],[28,0,25],[29,0,25],[30,0,25]],[[2,11,2],[6,3,1],[6,23,3],[6,71,1],[7,2,2],[7,28,3],[7,52,2],[7,64,2],[8,29,1],[8,50,5],[9,48,7],[10,1,3],[10,5,1],[10,46,13],[10,63,3],[11,2,2],[11,6,1],[11,34,1],[11,50,8],[11,63,3],[12,49,7],[12,58,1],[13,50,9],[14,2,2],[14,51,13],[15,2,2],[15,6,2],[15,15,2],[15,51,16],[16,7,1],[16,22,2],[16,45,22],[17,24,2],[17,45,22],[17,78,1],[18,3,2],[18,25,1],[18,48,20],[19,2,4],[19,51,3],[19,56,9],[19,76,2],[20,2,5],[20,56,1],[21,0,9],[21,25,2],[22,0,12],[22,23,6],[23,0,12],[23,23,6],[24,0,29],[25,0,29],[25,33,1],[26,0,29],[27,0,29],[28,0,29],[29,0,29],[30,0,29]],[[6,25,3],[7,26,1],[8,50,5],[9,48,7],[10,47,12],[11,50,8],[12,49,7],[13,50,9],[14,51,11],[15,51,14],[16,46,20],[17,46,20],[18,7,1],[18,48,6],[18,55,12],[19,6,3],[19,51,2],[19,55,9],[20,6,3],[21,3,8],[21,28,2],[22,3,11],[22,27,4],[23,3,12],[23,27,4],[24,3,23],[24,27,4],[24,57,1],[25,0,31],[25,36,1],[26,0,31],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,25,3],[7,26,1],[8,50,5],[9,48,7],[10,8,1],[10,47,12],[10,67,1],[11,8,1],[11,50,7],[12,49,7],[13,50,8],[14,51,11],[15,51,14],[16,46,20],[17,46,19],[18,7,1],[18,48,6],[18,55,10],[19,6,3],[19,51,2],[19,55,9],[20,6,3],[21,3,8],[21,29,1],[22,3,11],[22,27,4],[23,3,12],[23,27,4],[24,3,23],[24,27,4],[24,57,1],[25,0,31],[25,36,1],[26,0,31],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,25,3],[7,26,1],[8,50,5],[9,48,7],[10,8,1],[10,47,12],[10,67,1],[11,8,1],[11,50,7],[12,49,7],[13,50,8],[14,51,11],[15,32,1],[15,50,15],[16,46,19],[17,46,19],[18,7,1],[18,48,6],[18,55,10],[19,6,3],[19,51,2],[19,55,2],[19,59,4],[20,6,3],[21,3,8],[21,29,1],[22,3,11],[22,27,4],[23,3,12],[23,27,4],[24,3,23],[24,27,4],[25,0,31],[25,36,1],[26,0,31],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,25,3],[7,26,1],[8,50,5],[9,47,8],[10,8,1],[10,47,12],[11,8,1],[11,50,7],[12,49,7],[13,49,10],[14,51,11],[15,32,1],[15,50,15],[16,46,19],[17,46,19],[18,7,1],[18,48,5],[18,55,10],[19,6,3],[19,51,2],[19,55,2],[19,59,4],[20,6,3],[21,3,8],[21,29,1],[22,3,11],[22,27,4],[23,3,12],[23,27,4],[24,3,23],[24,27,4],[25,0,31],[25,36,1],[26,0,31],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,25,2],[7,26,1],[8,50,5],[9,47,8],[10,8,1],[10,47,12],[11,8,1],[11,50,7],[12,49,7],[12,57,2],[13,49,9],[14,51,7],[14,59,3],[15,32,1],[15,50,15],[16,46,19],[17,46,19],[18,49,4],[18,55,10],[19,6,3],[19,51,2],[19,55,2],[19,59,4],[20,6,3],[21,3,9],[21,29,1],[22,3,12],[22,27,4],[23,3,12],[23,27,5],[24,3,23],[24,28,3],[25,0,31],[25,36,1],[26,0,31],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,26,2],[8,50,5],[9,47,8],[9,57,1],[10,8,1],[10,46,13],[11,8,1],[11,49,8],[12,49,6],[12,57,1],[13,49,9],[14,50,12],[15,32,1],[15,50,14],[16,46,19],[17,46,19],[18,49,4],[18,55,10],[19,6,3],[19,51,2],[19,55,2],[19,58,5],[20,6,3],[21,3,9],[21,29,1],[22,3,12],[22,28,4],[23,3,12],[23,27,5],[24,3,23],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,31],[28,0,31],[29,0,31],[30,0,31]],[[6,25,3],[7,52,2],[8,49,5],[9,47,8],[10,7,2],[10,46,12],[11,8,1],[11,49,8],[12,49,6],[12,57,1],[13,49,9],[14,50,13],[15,32,1],[15,50,14],[16,46,19],[17,46,19],[18,49,4],[18,55,10],[19,6,3],[19,51,1],[19,55,2],[19,59,1],[19,61,2],[20,6,3],[21,3,9],[21,29,1],[22,3,9],[22,13,2],[22,28,4],[23,3,12],[23,28,4],[24,3,23],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,51,3],[8,49,5],[9,47,8],[10,7,2],[10,46,12],[11,8,1],[11,49,8],[12,49,6],[12,57,1],[13,49,9],[14,50,13],[15,32,1],[15,50,14],[16,46,19],[17,46,19],[18,50,3],[18,55,10],[19,6,3],[19,51,1],[19,55,2],[19,59,1],[19,61,1],[20,6,3],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,12],[23,28,4],[24,3,23],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,51,3],[8,43,1],[8,49,5],[9,43,2],[9,46,10],[10,8,1],[10,46,2],[10,49,9],[11,8,1],[11,49,7],[11,66,1],[12,49,6],[12,57,1],[13,49,9],[14,50,13],[15,32,1],[15,50,15],[16,46,19],[17,46,19],[18,50,3],[18,54,9],[18,64,2],[19,6,3],[19,51,1],[19,55,2],[19,59,1],[20,6,3],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,28,4],[24,57,1],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[6,48,1],[7,51,3],[8,49,5],[9,43,2],[9,47,10],[10,5,1],[10,8,1],[10,46,2],[10,49,9],[11,5,1],[11,8,1],[11,49,7],[12,49,5],[12,56,2],[13,49,9],[14,50,13],[15,32,1],[15,50,15],[16,46,19],[17,46,19],[18,50,3],[18,54,9],[18,64,2],[19,6,3],[19,51,2],[19,55,2],[19,59,1],[20,6,4],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,51,3],[8,49,5],[9,43,2],[9,46,12],[10,5,1],[10,8,1],[10,46,2],[10,49,9],[11,5,1],[11,8,1],[11,49,7],[12,49,5],[12,56,2],[13,49,8],[14,50,13],[15,49,16],[16,45,20],[17,46,18],[18,50,3],[18,54,9],[19,6,3],[19,51,2],[19,55,2],[19,59,1],[20,6,4],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,50,3],[8,49,5],[9,43,2],[9,46,12],[10,5,1],[10,8,1],[10,46,2],[10,49,9],[11,5,1],[11,8,1],[11,49,6],[11,66,1],[12,49,6],[12,56,2],[13,49,12],[14,50,13],[15,49,15],[16,45,20],[17,46,19],[18,8,1],[18,50,3],[18,54,10],[19,6,3],[19,55,1],[19,59,1],[20,6,4],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,28,4],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,50,3],[7,68,1],[8,49,5],[9,43,2],[9,46,12],[10,5,1],[10,7,2],[10,46,2],[10,49,8],[11,5,1],[11,8,1],[11,49,6],[11,66,1],[12,48,7],[12,56,2],[13,49,11],[13,61,1],[14,19,1],[14,50,14],[15,49,15],[16,45,19],[17,46,19],[18,8,1],[18,50,2],[18,54,7],[18,62,2],[19,6,3],[19,55,1],[19,59,1],[20,6,4],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,29,3],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,50,3],[7,68,1],[8,48,6],[9,43,2],[9,46,12],[10,5,1],[10,8,1],[10,46,2],[10,49,8],[11,5,1],[11,8,1],[11,49,6],[11,66,1],[12,48,7],[12,56,2],[13,49,12],[14,50,14],[15,48,17],[16,45,19],[17,46,7],[17,54,11],[18,7,2],[18,50,3],[18,54,9],[19,6,4],[19,55,1],[20,6,4],[21,3,9],[21,29,2],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,4],[24,3,24],[24,29,3],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,50,3],[7,68,1],[8,48,6],[9,43,2],[9,46,12],[10,5,1],[10,8,1],[10,46,1],[10,49,8],[11,5,1],[11,8,1],[11,48,7],[11,66,1],[12,48,9],[13,50,11],[14,50,14],[15,48,16],[16,45,19],[17,46,7],[17,54,10],[18,8,1],[18,50,2],[18,54,8],[19,6,4],[19,55,1],[20,6,4],[21,3,9],[21,30,1],[22,3,9],[22,13,2],[22,28,4],[23,3,13],[23,28,5],[24,3,24],[24,29,3],[25,0,32],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,50,3],[7,68,1],[8,43,1],[8,47,7],[8,75,1],[9,43,2],[9,46,12],[10,5,1],[10,8,1],[10,46,1],[10,49,8],[11,5,1],[11,48,7],[11,66,1],[12,48,9],[13,50,11],[14,50,13],[15,45,19],[16,45,19],[17,47,6],[17,54,10],[18,8,1],[18,50,2],[18,54,2],[18,58,4],[19,6,4],[20,6,4],[21,3,9],[21,30,1],[22,3,9],[22,13,3],[22,28,5],[23,3,13],[23,28,5],[24,3,24],[24,29,4],[25,0,33],[25,36,1],[26,0,32],[27,0,32],[28,0,32],[29,0,32],[30,0,32]],[[7,49,5],[7,68,1],[8,43,1],[8,47,7],[8,75,1],[9,43,2],[9,46,11],[9,75,1],[10,5,1],[10,49,8],[11,5,1],[11,48,7],[11,66,1],[12,48,9],[13,50,12],[14,19,1],[14,49,14],[15,45,19],[16,45,19],[17,47,6],[17,54,10],[18,8,1],[18,50,2],[18,54,2],[18,58,3],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,9],[22,13,3],[22,28,5],[23,3,9],[23,13,3],[23,28,5],[24,3,24],[24,29,4],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,32],[30,0,33]],[[7,49,5],[7,68,1],[8,47,7],[8,75,1],[9,43,2],[9,46,11],[9,75,1],[10,5,1],[10,49,7],[11,5,1],[11,48,7],[11,66,1],[12,48,9],[13,50,12],[14,19,1],[14,49,14],[15,45,19],[16,45,19],[17,47,5],[17,54,10],[18,8,1],[18,50,2],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,9],[22,13,3],[22,29,4],[23,3,9],[23,13,3],[23,29,4],[24,3,24],[24,29,4],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[7,49,5],[7,68,1],[8,46,8],[8,75,1],[9,45,13],[9,75,1],[10,5,1],[10,49,7],[11,5,1],[11,48,7],[11,56,1],[12,48,10],[13,50,12],[14,19,1],[14,49,15],[15,45,19],[16,45,20],[17,47,5],[17,54,8],[17,63,2],[18,8,1],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,9],[22,13,3],[22,29,4],[23,3,9],[23,13,3],[23,29,4],[24,3,24],[24,29,4],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[7,42,1],[7,49,5],[7,68,1],[8,46,8],[8,75,1],[9,45,13],[9,75,1],[10,5,1],[10,49,7],[11,5,1],[11,48,6],[11,56,1],[12,48,9],[13,49,13],[14,19,1],[14,49,16],[15,45,19],[16,45,20],[17,47,5],[17,54,8],[17,63,2],[18,8,1],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,13],[22,29,4],[23,4,8],[23,13,3],[23,29,4],[24,3,25],[24,29,4],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[4,53,1],[7,42,1],[7,49,5],[7,68,1],[8,46,8],[8,56,1],[8,75,1],[9,45,13],[10,5,1],[10,48,8],[11,48,6],[11,56,1],[12,48,9],[13,49,13],[14,19,1],[14,49,16],[15,45,19],[16,45,19],[17,48,4],[17,54,8],[17,63,2],[18,8,1],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,13],[22,29,4],[23,4,8],[23,13,4],[23,29,4],[24,3,25],[24,29,4],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[4,53,1],[6,50,3],[7,42,1],[7,49,4],[7,68,1],[8,45,10],[8,75,1],[9,45,12],[10,5,1],[10,48,7],[11,48,5],[11,55,2],[12,48,9],[13,49,13],[14,19,1],[14,48,16],[15,45,19],[16,45,19],[17,48,4],[17,54,8],[18,8,1],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,13],[22,29,4],[23,4,8],[23,13,4],[23,29,4],[24,3,25],[24,29,4],[24,62,1],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[6,50,3],[7,42,1],[7,49,4],[8,46,10],[9,45,12],[10,5,1],[10,48,8],[11,48,5],[11,56,1],[12,48,9],[13,49,13],[14,19,1],[14,48,16],[15,45,19],[16,45,18],[17,49,3],[17,54,8],[18,8,1],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,13],[22,29,4],[23,4,8],[23,13,4],[23,29,4],[24,1,1],[24,3,25],[24,29,4],[24,62,1],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[6,50,3],[7,42,1],[7,49,4],[8,46,10],[9,45,12],[10,5,1],[10,48,8],[11,48,5],[11,55,2],[12,48,12],[13,49,13],[14,19,1],[14,48,16],[15,45,19],[16,45,19],[17,49,3],[17,54,6],[17,61,2],[18,8,1],[18,50,2],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,13],[22,29,4],[23,4,8],[23,13,4],[23,29,4],[24,1,1],[24,3,25],[24,29,4],[24,62,1],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[6,50,3],[7,5,1],[7,42,2],[7,49,4],[7,68,1],[8,46,10],[9,45,12],[10,48,7],[11,48,5],[11,55,2],[12,48,13],[12,70,1],[13,49,13],[13,70,1],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,49,3],[17,53,7],[17,61,2],[18,8,1],[18,50,2],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,9],[21,30,2],[22,3,10],[22,14,2],[22,29,5],[23,4,13],[23,29,5],[24,1,1],[24,3,25],[24,29,4],[24,62,1],[25,0,33],[26,0,33],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[6,50,3],[7,42,2],[7,48,5],[7,68,1],[8,45,11],[9,45,2],[9,48,9],[10,48,7],[11,48,5],[11,55,1],[12,48,13],[13,49,14],[13,70,1],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,8,1],[17,49,3],[17,53,4],[17,58,2],[17,61,2],[18,7,2],[18,50,1],[18,54,2],[18,58,1],[19,6,4],[20,6,4],[21,3,10],[21,30,3],[22,3,10],[22,14,2],[22,29,5],[23,4,13],[23,29,5],[24,0,2],[24,3,25],[24,29,5],[24,62,2],[25,0,34],[25,62,1],[26,0,34],[27,0,33],[28,0,33],[29,0,33],[30,0,33]],[[6,5,1],[6,50,3],[7,5,1],[7,42,2],[7,48,5],[8,45,11],[9,45,2],[9,48,9],[10,48,7],[11,48,5],[11,55,1],[12,48,11],[13,49,14],[13,70,1],[14,19,1],[14,48,16],[15,45,18],[16,45,19],[17,8,1],[17,49,3],[17,53,4],[17,58,3],[18,7,2],[18,54,2],[19,7,3],[20,6,4],[21,3,10],[21,31,2],[22,3,10],[22,14,3],[22,29,5],[23,4,13],[23,29,5],[24,0,28],[24,30,4],[24,62,2],[25,0,34],[25,62,1],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,5,1],[6,50,3],[7,5,1],[7,42,2],[7,48,5],[8,46,10],[9,45,2],[9,48,9],[10,48,7],[11,48,5],[11,55,1],[12,48,11],[13,49,14],[14,19,1],[14,48,16],[15,45,18],[16,45,19],[17,8,1],[17,49,3],[17,53,7],[18,7,2],[18,54,1],[19,7,3],[20,6,4],[21,3,10],[21,31,2],[22,3,10],[22,14,3],[22,29,5],[23,4,13],[23,29,5],[24,0,28],[24,30,4],[24,62,1],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,5,1],[6,50,3],[7,5,1],[7,42,1],[7,48,5],[8,45,11],[9,45,12],[10,48,7],[11,48,5],[11,55,1],[12,48,12],[12,70,1],[13,49,14],[13,70,1],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,8,1],[17,49,3],[17,53,7],[18,7,2],[18,54,1],[19,7,3],[20,6,4],[21,3,10],[21,15,1],[21,31,2],[22,3,10],[22,14,3],[22,30,4],[23,4,9],[23,14,3],[23,30,4],[24,0,28],[24,30,4],[24,62,1],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,5,1],[6,50,3],[7,5,1],[7,42,1],[7,48,5],[8,46,10],[9,45,12],[10,48,7],[11,48,5],[11,55,1],[12,48,12],[13,49,13],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,8,1],[17,48,4],[17,53,7],[17,62,1],[18,7,2],[18,53,2],[19,7,3],[20,6,4],[21,3,10],[21,15,1],[21,31,2],[22,3,10],[22,14,3],[22,30,4],[23,4,9],[23,14,3],[23,30,4],[24,0,29],[24,30,4],[24,62,1],[25,0,34],[25,62,1],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,50,2],[7,5,1],[7,42,1],[7,48,5],[8,46,10],[9,45,12],[10,48,7],[11,48,5],[11,55,1],[12,48,12],[13,49,13],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,8,1],[17,48,4],[17,53,7],[17,62,1],[18,7,2],[18,53,2],[19,7,3],[20,6,4],[21,4,9],[21,15,1],[21,31,2],[22,3,10],[22,14,3],[22,30,4],[23,4,9],[23,14,3],[23,30,4],[24,0,29],[24,30,4],[24,62,2],[25,0,34],[25,62,1],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,50,2],[7,42,1],[7,48,5],[8,46,8],[9,45,12],[10,48,7],[11,48,5],[11,55,1],[12,48,8],[13,49,12],[14,19,1],[14,48,15],[15,45,18],[16,45,19],[17,8,1],[17,48,4],[17,53,10],[18,7,2],[18,49,2],[18,53,2],[19,7,3],[20,6,4],[21,4,9],[21,15,1],[21,31,2],[22,4,9],[22,14,3],[22,30,4],[23,4,9],[23,14,3],[23,30,4],[24,0,29],[24,30,4],[24,62,1],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[6,50,1],[7,48,5],[8,45,8],[9,44,13],[10,48,7],[11,48,5],[11,55,1],[12,48,8],[13,49,12],[14,19,1],[14,48,15],[15,44,19],[16,44,20],[17,8,1],[17,48,3],[17,53,9],[18,7,2],[18,49,2],[18,53,3],[19,7,3],[20,6,4],[21,4,9],[21,15,1],[21,31,2],[22,4,9],[22,14,3],[22,30,4],[23,4,9],[23,14,3],[23,30,4],[24,0,29],[24,30,4],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[7,48,5],[8,45,8],[8,55,1],[9,45,12],[10,48,7],[11,47,6],[11,55,2],[11,64,1],[12,48,8],[13,49,12],[14,19,1],[14,48,15],[15,44,19],[16,44,19],[17,8,1],[17,48,3],[17,53,9],[18,7,2],[18,49,2],[18,53,3],[19,7,3],[20,6,4],[21,4,9],[21,15,1],[21,31,2],[22,4,9],[22,14,3],[22,30,4],[23,4,9],[23,14,4],[23,30,5],[24,0,29],[24,30,4],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[5,76,1],[7,48,5],[8,46,7],[8,55,1],[9,45,12],[10,48,7],[11,47,7],[11,55,1],[11,64,1],[12,48,8],[13,49,12],[14,19,1],[14,48,15],[15,44,19],[16,44,18],[17,8,1],[17,48,3],[17,53,9],[18,7,2],[18,49,1],[18,53,3],[19,7,3],[20,6,4],[21,4,9],[21,15,1],[21,31,3],[22,4,9],[22,14,3],[22,30,5],[23,4,9],[23,14,4],[23,30,5],[24,0,29],[24,30,5],[25,0,34],[26,0,34],[27,0,34],[28,0,34],[29,0,34],[30,0,34]],[[5,76,1],[6,76,1],[7,49,4],[8,46,7],[9,45,11],[10,48,8],[11,47,7],[11,64,1],[12,48,8],[13,49,12],[14,19,1],[14,48,15],[15,44,19],[16,44,20],[17,8,1],[17,45,2],[17,49,2],[17,53,8],[17,62,2],[18,7,2],[18,49,1],[18,53,3],[18,57,1],[19,7,3],[20,6,5],[21,4,9],[21,15,1],[21,31,3],[22,4,9],[22,14,3],[22,30,5],[23,4,9],[23,14,4],[23,30,5],[24,0,29],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,34]],[[5,76,1],[6,76,1],[7,49,3],[8,46,7],[9,44,13],[10,45,1],[10,48,8],[11,47,7],[12,47,9],[13,49,11],[14,19,1],[14,48,14],[15,44,19],[16,44,19],[17,8,1],[17,46,5],[17,53,10],[18,7,2],[18,49,2],[18,53,3],[18,57,1],[18,59,1],[19,7,3],[20,6,5],[21,4,9],[21,15,1],[21,31,3],[22,4,9],[22,14,4],[22,30,5],[23,4,9],[23,14,4],[23,30,5],[24,0,29],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,76,1],[6,76,1],[7,49,3],[8,45,8],[9,44,13],[10,45,1],[10,48,8],[11,48,6],[12,47,9],[13,48,11],[14,19,1],[14,48,13],[15,45,18],[16,44,19],[17,8,1],[17,45,7],[17,53,10],[18,7,2],[18,49,2],[18,53,2],[18,57,1],[18,60,1],[19,7,3],[20,6,5],[21,4,9],[21,15,2],[21,32,2],[22,4,9],[22,14,4],[22,30,5],[23,4,9],[23,14,4],[23,30,5],[24,0,29],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,76,1],[6,76,1],[7,49,3],[8,47,6],[9,44,13],[10,45,1],[10,47,9],[11,48,7],[11,64,1],[12,47,9],[13,48,11],[14,19,1],[14,48,14],[15,46,17],[16,44,19],[17,8,1],[17,45,17],[18,7,3],[18,49,2],[18,53,8],[19,7,3],[19,53,1],[20,6,5],[21,4,9],[21,15,2],[21,32,2],[22,4,9],[22,14,4],[22,31,4],[23,4,9],[23,14,4],[23,31,4],[24,0,29],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[6,76,1],[7,49,3],[8,48,5],[9,44,13],[10,44,2],[10,47,9],[11,48,7],[11,64,1],[12,47,6],[12,54,3],[13,48,11],[14,19,1],[14,48,14],[15,46,17],[16,44,18],[17,8,1],[17,45,18],[18,7,3],[18,49,2],[18,53,8],[19,7,3],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,15,2],[21,32,2],[22,4,9],[22,14,4],[22,31,4],[23,4,9],[23,14,4],[23,31,4],[24,0,30],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,26,1],[6,69,1],[7,49,3],[7,69,1],[8,47,6],[9,45,12],[10,45,1],[10,47,9],[11,48,6],[11,64,1],[12,47,6],[12,54,3],[13,47,13],[14,19,1],[14,48,14],[15,47,15],[16,44,18],[17,8,1],[17,45,18],[18,7,3],[18,49,2],[18,53,8],[19,7,3],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,15,2],[21,32,2],[22,4,9],[22,15,3],[22,31,4],[23,4,9],[23,14,4],[23,31,4],[24,0,30],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,26,1],[6,25,2],[7,49,3],[7,69,1],[8,47,6],[9,45,11],[10,45,1],[10,47,9],[11,48,6],[12,47,5],[12,54,2],[13,47,8],[13,57,1],[14,19,1],[14,49,12],[15,47,15],[16,44,19],[17,8,2],[17,45,18],[18,7,3],[18,48,3],[18,53,6],[18,60,2],[19,7,3],[19,49,2],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,16,1],[21,32,2],[22,4,10],[22,15,3],[22,31,4],[23,4,9],[23,14,4],[23,31,4],[24,0,30],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,26,1],[6,25,2],[7,49,3],[8,47,5],[9,45,11],[10,45,11],[11,47,8],[12,47,5],[12,54,1],[13,47,8],[14,5,1],[14,19,1],[14,48,12],[15,5,1],[15,47,15],[16,44,19],[17,8,2],[17,44,18],[18,7,3],[18,48,3],[18,53,8],[19,7,4],[19,49,2],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,16,1],[21,32,3],[22,4,10],[22,15,3],[22,31,4],[23,4,9],[23,15,3],[23,31,4],[24,0,30],[24,31,4],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,26,1],[6,25,2],[7,49,3],[8,35,1],[8,47,5],[9,45,10],[10,44,12],[11,47,7],[12,47,5],[12,54,1],[13,47,8],[14,5,1],[14,48,12],[15,48,14],[16,44,18],[17,8,2],[17,44,19],[18,7,3],[18,48,3],[18,52,9],[19,7,4],[19,49,2],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,16,1],[21,32,3],[22,4,10],[22,15,3],[22,31,5],[23,4,9],[23,15,4],[23,31,5],[24,0,30],[24,31,5],[25,0,35],[26,0,35],[27,0,35],[28,0,35],[29,0,35],[30,0,35]],[[5,26,1],[6,25,2],[8,35,1],[8,48,4],[9,45,8],[10,44,12],[11,47,8],[12,47,6],[13,47,9],[14,5,1],[14,19,1],[14,48,12],[15,5,1],[15,48,15],[16,44,18],[17,8,2],[17,44,18],[18,7,3],[18,48,3],[18,52,9],[19,7,4],[19,49,2],[19,53,2],[19,57,1],[20,6,5],[21,4,9],[21,16,1],[21,32,3],[22,4,10],[22,15,3],[22,31,5],[23,4,9],[23,15,4],[23,31,5],[24,0,30],[24,31,5],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,2],[8,48,4],[9,44,9],[10,44,12],[11,47,7],[12,47,6],[13,47,9],[14,5,1],[14,48,12],[15,5,1],[15,48,14],[16,44,18],[17,8,2],[17,44,19],[18,7,3],[18,48,3],[18,52,11],[19,7,4],[19,48,2],[19,53,2],[19,57,1],[20,6,5],[21,4,10],[21,16,1],[21,32,3],[22,4,10],[22,15,3],[22,31,5],[23,4,9],[23,15,4],[23,31,5],[24,0,30],[24,31,5],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,2],[8,48,4],[9,46,6],[10,44,12],[11,47,7],[12,47,6],[13,47,9],[14,5,1],[14,48,12],[15,5,1],[15,48,13],[16,44,18],[17,8,2],[17,44,19],[18,7,3],[18,48,3],[18,52,11],[19,7,4],[19,48,2],[19,52,3],[19,56,2],[20,6,5],[21,4,10],[21,16,1],[21,32,3],[22,4,10],[22,15,4],[22,31,5],[23,4,9],[23,15,4],[23,31,5],[24,0,30],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,2],[8,48,4],[9,46,6],[10,44,12],[11,44,1],[11,47,8],[12,47,6],[13,47,8],[14,5,1],[14,48,11],[15,5,1],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,3],[18,47,4],[18,52,11],[19,7,4],[19,48,2],[19,52,3],[19,56,1],[19,58,1],[20,6,5],[21,4,10],[21,16,2],[21,32,3],[22,4,10],[22,15,4],[22,32,4],[23,4,9],[23,15,4],[23,32,4],[24,0,30],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,2],[8,48,4],[9,46,6],[10,44,12],[10,69,1],[11,44,1],[11,47,9],[12,47,6],[13,47,8],[14,5,1],[14,48,11],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,3],[18,47,4],[18,52,10],[19,7,4],[19,48,2],[19,52,8],[20,6,5],[21,4,10],[21,16,2],[21,32,3],[22,4,10],[22,15,4],[22,32,4],[23,4,9],[23,15,4],[23,32,4],[24,0,31],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,2],[8,48,4],[9,45,7],[10,44,12],[10,69,1],[11,44,1],[11,47,8],[12,47,6],[13,47,8],[14,5,1],[14,48,11],[15,48,13],[16,44,19],[17,9,1],[17,44,18],[18,7,4],[18,47,4],[18,52,9],[19,7,4],[19,48,3],[19,52,8],[20,6,6],[21,4,10],[21,16,2],[21,33,2],[22,4,10],[22,15,4],[22,32,4],[23,4,10],[23,15,4],[23,32,4],[24,0,31],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[5,26,1],[6,25,2],[8,35,1],[8,48,4],[9,46,6],[9,58,1],[9,69,1],[10,44,12],[10,69,1],[11,44,2],[11,47,8],[12,47,6],[13,47,8],[14,5,1],[14,48,11],[15,48,13],[16,44,19],[17,9,1],[17,44,18],[18,7,4],[18,46,5],[18,52,10],[19,7,4],[19,48,2],[19,52,3],[19,56,4],[20,5,7],[21,4,10],[21,16,2],[21,33,3],[22,4,10],[22,15,4],[22,32,4],[23,4,10],[23,15,4],[23,32,4],[24,0,31],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[2,30,1],[8,35,1],[8,48,3],[9,46,6],[9,58,1],[9,69,1],[10,44,12],[10,69,1],[11,44,2],[11,47,8],[12,47,7],[13,47,8],[14,5,1],[14,48,11],[15,48,14],[15,78,1],[16,44,19],[17,9,1],[17,44,17],[18,7,4],[18,45,6],[18,52,11],[19,7,4],[19,48,2],[19,52,8],[20,5,7],[21,4,10],[21,16,2],[21,33,3],[22,4,10],[22,15,4],[22,32,4],[23,4,10],[23,15,4],[23,32,5],[24,0,31],[24,32,4],[25,0,36],[26,0,36],[27,0,36],[28,0,36],[29,0,36],[30,0,36]],[[2,18,1],[2,29,2],[5,26,1],[6,25,2],[8,48,3],[9,46,6],[9,69,1],[10,44,12],[10,69,2],[11,44,2],[11,47,8],[12,47,7],[13,47,8],[14,5,1],[14,48,11],[15,48,14],[15,78,1],[16,44,18],[17,9,1],[17,44,18],[18,7,4],[18,45,6],[18,52,11],[19,7,4],[19,48,2],[19,52,8],[20,5,7],[21,4,10],[21,16,2],[21,33,3],[22,4,10],[22,15,4],[22,32,5],[23,4,10],[23,15,4],[23,32,5],[24,0,31],[24,32,5],[25,0,37],[26,0,37],[27,0,37],[28,0,36],[29,0,36],[30,0,36]],[[2,18,1],[2,29,2],[8,48,3],[9,46,6],[9,58,1],[10,44,12],[10,69,1],[11,44,2],[11,47,8],[12,47,7],[13,47,8],[14,5,1],[14,48,11],[15,48,14],[16,44,18],[17,9,1],[17,44,17],[18,7,4],[18,45,6],[18,52,11],[19,7,4],[19,48,2],[19,52,8],[20,5,7],[21,4,10],[21,16,2],[21,33,3],[22,4,10],[22,16,3],[22,32,5],[23,4,10],[23,16,4],[23,32,5],[24,0,31],[24,32,5],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,2],[8,48,3],[9,46,6],[9,58,1],[9,69,1],[10,44,12],[10,69,2],[11,44,2],[11,47,8],[12,47,7],[13,47,8],[14,19,1],[14,48,11],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,4],[18,46,5],[18,52,10],[19,7,4],[19,48,2],[19,52,8],[20,5,7],[21,4,10],[21,16,2],[21,33,3],[22,4,10],[22,16,3],[22,32,5],[23,4,10],[23,16,4],[23,32,5],[24,0,31],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,2],[8,48,3],[9,46,6],[9,58,1],[10,44,12],[10,69,1],[11,44,2],[11,47,8],[12,47,6],[13,47,8],[14,19,1],[14,48,11],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,4],[18,47,4],[18,52,11],[19,7,4],[19,48,2],[19,52,8],[20,5,7],[21,4,10],[21,17,1],[21,33,3],[22,4,10],[22,16,4],[22,32,5],[23,4,10],[23,16,4],[23,32,5],[24,0,31],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,2],[3,54,1],[6,77,1],[7,77,1],[8,48,4],[9,45,7],[9,58,1],[10,44,11],[10,69,1],[11,44,2],[11,47,8],[12,47,6],[13,47,8],[14,48,10],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,4],[18,47,4],[18,52,10],[19,7,4],[19,48,2],[19,52,3],[19,56,4],[20,5,7],[21,4,10],[21,17,2],[21,33,3],[22,4,10],[22,16,4],[22,33,4],[23,4,10],[23,16,4],[23,33,4],[24,0,31],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,2],[3,54,1],[6,77,1],[7,77,1],[8,48,4],[9,45,7],[9,58,1],[10,44,12],[11,44,1],[11,47,7],[12,47,6],[13,47,8],[14,48,10],[15,48,13],[16,44,18],[17,9,1],[17,44,18],[18,7,4],[18,47,3],[18,52,9],[19,7,4],[19,48,2],[19,52,2],[19,56,2],[20,5,8],[21,4,10],[21,17,2],[21,33,4],[22,4,10],[22,16,4],[22,33,4],[23,4,10],[23,16,4],[23,33,4],[24,0,32],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,2],[3,54,1],[6,77,1],[7,77,1],[8,48,4],[9,45,7],[9,58,1],[10,44,12],[11,44,1],[11,47,7],[12,47,6],[12,55,1],[13,47,8],[14,48,7],[14,56,2],[15,48,12],[16,44,19],[17,9,1],[17,44,18],[18,8,3],[18,47,3],[18,52,9],[19,7,4],[19,48,1],[19,52,2],[19,56,2],[20,5,8],[21,4,10],[21,17,2],[21,34,3],[22,4,10],[22,16,4],[22,33,4],[23,4,10],[23,16,4],[23,33,4],[24,0,32],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[2,29,1],[3,54,1],[6,77,1],[7,77,1],[8,48,4],[8,77,1],[9,45,7],[10,44,12],[11,47,7],[12,46,7],[12,54,2],[13,47,8],[14,48,7],[14,56,3],[15,47,14],[16,44,18],[17,9,1],[17,44,18],[18,8,3],[18,47,3],[18,52,10],[19,8,3],[19,48,1],[19,52,2],[19,56,2],[20,5,8],[21,4,10],[21,17,2],[21,34,3],[22,4,10],[22,16,4],[22,33,4],[23,4,10],[23,16,4],[23,33,4],[24,0,32],[24,33,4],[25,0,37],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[3,54,1],[7,70,1],[7,77,1],[8,47,5],[8,77,1],[9,45,7],[9,58,1],[10,44,12],[11,47,7],[12,46,6],[12,54,2],[13,47,8],[14,48,11],[15,47,14],[16,44,17],[17,9,1],[17,44,18],[18,8,3],[18,47,3],[18,52,10],[19,8,3],[19,48,1],[19,52,2],[19,56,1],[20,5,8],[21,4,10],[21,17,2],[21,34,3],[22,4,10],[22,16,4],[22,33,5],[23,4,10],[23,16,4],[23,33,5],[24,0,32],[24,33,5],[25,0,38],[26,0,37],[27,0,37],[28,0,37],[29,0,37],[30,0,37]],[[2,17,2],[3,54,1],[7,70,1],[7,77,1],[8,47,5],[8,77,1],[9,45,7],[10,44,12],[11,47,7],[11,65,1],[12,46,6],[12,54,1],[13,47,8],[14,48,11],[15,47,15],[16,44,17],[17,9,1],[17,44,18],[18,8,3],[18,47,3],[18,52,10],[19,8,3],[19,48,1],[19,52,2],[19,56,1],[20,5,9],[21,4,10],[21,17,2],[21,34,3],[22,4,10],[22,16,4],[22,33,5],[23,4,10],[23,16,4],[23,33,5],[24,0,32],[24,33,5],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[2,17,2],[3,54,1],[6,70,1],[7,70,1],[7,77,1],[8,47,5],[8,77,1],[9,44,9],[9,54,1],[10,43,13],[11,47,6],[12,46,6],[12,54,1],[13,46,9],[14,48,11],[15,47,15],[16,44,17],[17,9,1],[17,44,17],[18,8,3],[18,47,3],[18,52,8],[19,8,3],[19,48,1],[19,52,2],[19,56,1],[20,5,9],[21,4,10],[21,17,2],[21,34,3],[22,4,10],[22,16,4],[22,33,5],[23,4,10],[23,16,5],[23,33,5],[24,0,32],[24,33,5],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[2,17,2],[6,70,1],[7,48,3],[7,70,1],[8,47,5],[8,77,1],[9,44,10],[10,43,12],[11,47,7],[12,46,6],[12,54,1],[13,46,9],[14,48,11],[15,47,14],[16,44,17],[17,9,1],[17,44,17],[18,8,3],[18,47,3],[18,52,8],[19,8,3],[19,48,1],[19,52,2],[19,56,1],[20,5,9],[21,4,11],[21,17,2],[21,34,3],[22,4,10],[22,16,5],[22,33,5],[23,4,10],[23,16,5],[23,33,5],[24,0,32],[24,34,4],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[2,18,1],[3,54,1],[6,70,1],[7,48,3],[7,70,1],[8,47,5],[9,44,11],[10,44,11],[11,47,7],[12,46,6],[12,53,2],[13,46,9],[14,48,11],[15,46,15],[16,44,17],[17,9,1],[17,44,17],[18,8,3],[18,48,2],[18,52,8],[19,8,4],[19,48,2],[19,52,2],[20,5,9],[21,4,11],[21,17,3],[21,34,3],[22,4,10],[22,16,5],[22,34,4],[23,4,10],[23,17,4],[23,34,4],[24,0,32],[24,34,4],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[6,70,1],[7,38,2],[7,48,3],[7,70,1],[8,47,5],[9,44,11],[10,44,11],[10,68,2],[11,47,6],[11,68,1],[12,46,6],[12,53,2],[13,47,10],[14,48,12],[15,46,15],[16,44,18],[17,9,1],[17,28,1],[17,44,18],[18,8,4],[18,48,2],[18,52,7],[18,60,1],[19,8,4],[19,52,2],[20,5,9],[21,4,11],[21,17,3],[21,34,4],[22,4,11],[22,16,5],[22,34,4],[23,4,10],[23,17,4],[23,34,4],[24,0,33],[24,34,4],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[7,38,2],[7,48,3],[7,70,1],[8,47,5],[9,44,11],[10,44,11],[10,68,2],[11,47,6],[11,68,1],[12,46,5],[12,53,3],[13,47,11],[14,47,13],[15,46,15],[16,44,17],[17,9,1],[17,28,1],[17,44,18],[18,8,3],[18,48,2],[18,52,6],[18,60,2],[19,8,4],[19,52,1],[20,5,9],[21,4,11],[21,17,3],[21,34,4],[22,4,11],[22,17,4],[22,34,4],[23,4,10],[23,17,4],[23,34,4],[24,0,33],[24,34,4],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[7,38,1],[7,48,3],[7,70,1],[8,47,4],[9,43,12],[10,43,2],[10,46,9],[10,68,2],[11,46,7],[11,68,1],[12,46,6],[12,53,2],[13,47,11],[14,47,14],[15,45,16],[16,44,17],[17,9,1],[17,28,1],[17,44,18],[18,8,3],[18,48,2],[18,52,6],[19,8,4],[19,52,1],[20,5,9],[21,4,11],[21,18,2],[21,34,4],[22,4,11],[22,17,4],[22,34,5],[23,4,10],[23,17,4],[23,34,5],[24,0,33],[24,34,4],[25,0,38],[26,0,38],[27,0,38],[28,0,38],[29,0,38],[30,0,38]],[[7,38,1],[7,48,3],[8,46,5],[9,43,12],[10,43,2],[10,46,8],[10,68,1],[11,46,6],[12,46,6],[12,53,2],[13,47,11],[14,47,14],[15,44,18],[16,44,17],[17,9,2],[17,28,1],[17,44,6],[17,51,10],[18,8,4],[18,48,2],[18,52,7],[19,8,4],[20,5,9],[21,4,11],[21,18,2],[21,35,3],[22,4,11],[22,17,4],[22,34,5],[23,5,9],[23,17,4],[23,34,5],[24,0,33],[24,34,5],[25,0,39],[26,0,39],[27,0,39],[28,0,38],[29,0,39],[30,0,39]],[[7,47,4],[8,46,5],[9,43,12],[10,7,1],[10,43,2],[10,46,8],[11,46,6],[12,46,9],[13,47,11],[14,47,13],[15,44,18],[16,44,17],[17,9,2],[17,28,1],[17,44,6],[17,51,9],[18,8,4],[18,48,2],[18,52,4],[18,58,1],[19,8,4],[20,5,9],[20,36,1],[21,4,11],[21,18,2],[21,35,3],[22,4,11],[22,17,4],[22,34,5],[23,5,10],[23,17,4],[23,34,5],[24,0,33],[24,34,5],[25,0,39],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[5,6,1],[6,70,1],[7,47,4],[7,70,1],[8,46,5],[9,43,12],[10,43,2],[10,46,8],[11,46,6],[12,46,9],[13,47,11],[14,47,13],[15,44,17],[16,43,18],[17,9,1],[17,28,1],[17,44,6],[17,51,10],[18,8,4],[18,48,1],[18,52,4],[18,58,1],[19,8,4],[20,5,9],[20,19,1],[20,36,1],[21,4,11],[21,18,2],[21,35,3],[22,4,11],[22,17,4],[22,34,5],[23,5,10],[23,17,4],[23,34,5],[24,0,33],[24,34,5],[25,0,39],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[7,47,4],[8,44,1],[8,46,6],[9,43,12],[10,4,1],[10,43,2],[10,46,8],[11,46,6],[12,46,9],[13,47,12],[14,47,14],[15,43,18],[16,43,18],[17,9,2],[17,47,3],[17,51,11],[18,8,4],[18,47,2],[18,52,2],[18,55,1],[19,8,4],[20,5,9],[20,19,1],[21,4,11],[21,18,2],[21,35,4],[22,4,11],[22,17,4],[22,34,5],[23,5,10],[23,17,5],[23,34,5],[24,0,33],[24,35,4],[25,0,39],[25,42,1],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[7,47,4],[8,44,8],[9,43,12],[10,4,1],[10,43,1],[10,46,8],[11,46,6],[11,54,1],[12,46,9],[13,47,12],[14,47,14],[15,43,18],[16,43,18],[17,9,2],[17,47,3],[17,51,8],[17,60,2],[18,8,4],[18,47,2],[18,52,2],[18,55,1],[19,8,4],[20,5,9],[20,19,1],[21,4,11],[21,18,3],[21,35,4],[22,4,11],[22,17,5],[22,35,4],[23,5,10],[23,17,5],[23,35,4],[24,0,33],[24,35,4],[25,0,39],[25,42,1],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[5,6,1],[7,47,4],[8,45,7],[9,43,12],[10,4,1],[10,46,8],[11,46,6],[11,53,2],[12,46,9],[13,47,12],[14,47,14],[15,43,18],[16,43,18],[17,10,1],[17,28,1],[17,47,3],[17,51,8],[17,60,1],[18,8,4],[18,48,1],[18,52,2],[18,55,1],[19,8,4],[20,5,9],[20,37,1],[21,4,11],[21,18,3],[21,35,4],[22,4,11],[22,17,5],[22,35,4],[23,5,10],[23,17,5],[23,35,4],[24,0,34],[24,35,4],[25,0,39],[25,42,1],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[5,6,1],[5,78,1],[7,47,4],[8,45,7],[9,43,12],[10,4,1],[10,46,8],[11,46,6],[11,54,1],[12,46,9],[13,47,12],[14,46,15],[15,43,18],[16,43,17],[17,10,1],[17,28,1],[17,47,3],[17,51,8],[18,8,4],[18,48,1],[18,52,2],[18,55,1],[19,8,4],[20,5,9],[21,4,11],[21,18,3],[21,35,4],[22,4,11],[22,17,5],[22,35,5],[23,5,10],[23,18,4],[23,35,4],[24,0,34],[24,35,4],[25,0,39],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[5,6,1],[5,78,1],[7,47,4],[8,43,9],[9,43,12],[10,4,1],[10,46,8],[11,46,6],[11,54,1],[12,46,9],[13,47,12],[14,46,15],[15,43,18],[16,43,18],[17,10,1],[17,28,1],[17,47,3],[17,51,9],[18,8,4],[18,48,2],[18,52,2],[19,8,4],[20,5,10],[20,37,1],[21,4,11],[21,18,3],[21,35,4],[22,4,11],[22,17,5],[22,35,5],[23,5,10],[23,18,4],[23,35,5],[24,0,34],[24,35,5],[25,0,40],[26,0,39],[27,0,39],[28,0,39],[29,0,39],[30,0,39]],[[5,78,1],[6,43,1],[6,48,2],[7,47,4],[8,44,10],[9,43,12],[10,4,1],[10,7,1],[10,46,7],[11,46,6],[11,53,2],[12,46,9],[13,47,12],[14,46,14],[15,43,18],[16,10,1],[16,43,19],[17,9,2],[17,28,1],[17,47,3],[17,51,9],[18,8,4],[18,48,1],[18,52,2],[19,8,4],[20,5,10],[20,37,1],[21,4,11],[21,18,3],[21,35,4],[22,4,11],[22,17,5],[22,35,5],[23,5,10],[23,18,4],[23,35,5],[24,0,34],[24,35,5],[25,0,40],[26,0,40],[27,0,40],[28,0,40],[29,0,40],[30,0,40]],[[5,78,1],[6,48,2],[7,47,4],[8,44,10],[9,4,1],[9,43,12],[10,4,1],[10,7,1],[10,46,7],[11,46,5],[11,53,1],[12,46,8],[12,55,2],[13,47,12],[14,46,14],[15,43,18],[16,10,1],[16,43,19],[17,9,2],[17,28,1],[17,47,3],[17,51,10],[18,8,4],[18,21,1],[18,52,2],[19,8,4],[20,5,10],[20,37,1],[21,4,11],[21,18,3],[21,36,3],[22,5,10],[22,18,4],[22,35,5],[23,5,10],[23,18,4],[23,35,5],[24,0,34],[24,35,5],[25,0,40],[26,0,40],[27,0,40],[28,0,40],[29,0,40],[30,0,40]],[[5,78,1],[6,48,3],[7,47,4],[8,44,10],[9,4,1],[9,43,12],[10,4,1],[10,7,1],[10,46,7],[11,46,5],[11,53,1],[12,46,12],[13,47,13],[14,46,14],[15,43,18],[16,10,1],[16,43,18],[17,9,2],[17,27,2],[17,38,1],[17,47,3],[17,51,8],[18,8,4],[18,52,1],[19,8,4],[20,5,10],[20,37,1],[21,4,11],[21,19,2],[21,36,4],[22,5,10],[22,18,4],[22,35,5],[23,5,10],[23,18,4],[23,35,5],[24,0,34],[24,35,5],[25,0,40],[26,0,40],[27,0,40],[28,0,40],[29,0,40],[30,0,40]],[[1,18,1],[2,17,2],[2,55,1],[3,55,2],[6,48,3],[6,71,1],[7,47,5],[8,44,12],[9,43,12],[9,71,1],[10,47,6],[11,46,9],[12,46,13],[12,73,1],[13,48,12],[14,46,15],[15,44,18],[16,10,1],[16,44,18],[17,9,2],[17,28,1],[17,47,3],[17,52,8],[18,8,4],[18,48,1],[18,52,2],[18,56,1],[19,8,4],[20,5,10],[21,4,11],[21,19,2],[21,36,4],[22,4,11],[22,18,4],[22,36,4],[23,5,10],[23,18,4],[23,36,4],[24,4,30],[24,36,4],[25,0,35],[25,36,4],[26,0,40],[27,0,40],[28,0,40],[29,0,40],[30,0,40]],[[5,24,1],[5,72,1],[6,23,2],[6,39,1],[6,48,4],[6,72,1],[7,39,2],[7,47,5],[8,44,12],[8,60,2],[9,44,12],[9,60,1],[9,72,1],[10,47,6],[10,67,1],[11,46,6],[11,54,1],[12,46,14],[13,48,12],[14,4,1],[14,47,16],[15,26,1],[15,44,19],[16,25,2],[16,44,18],[17,9,2],[17,47,4],[17,52,9],[18,8,4],[18,48,2],[18,52,3],[19,8,4],[20,5,8],[21,4,11],[21,19,1],[21,37,2],[22,4,11],[22,18,4],[22,36,5],[23,4,11],[23,17,5],[23,36,5],[24,4,11],[24,17,5],[24,36,5],[25,0,35],[25,36,5],[26,0,41],[27,0,40],[28,0,40],[29,0,40],[30,0,40]],[[5,3,1],[5,74,1],[6,33,1],[6,39,1],[6,48,4],[7,47,6],[8,44,13],[8,61,1],[9,44,12],[9,73,1],[10,47,7],[11,46,7],[11,54,3],[12,27,1],[12,47,9],[12,57,1],[12,59,1],[13,48,13],[14,47,16],[15,44,19],[16,44,20],[17,9,1],[17,47,4],[17,52,12],[18,7,5],[18,48,3],[18,53,2],[18,57,1],[18,59,1],[19,7,5],[20,7,5],[21,4,11],[21,37,2],[22,3,12],[22,18,2],[22,36,5],[23,4,11],[23,17,5],[23,36,5],[24,4,11],[24,17,5],[24,36,5],[25,0,35],[25,36,5],[26,0,41],[27,0,41],[28,0,41],[29,0,41],[30,0,41]],[[3,26,1],[4,2,1],[4,25,2],[4,75,1],[5,2,1],[5,75,1],[6,48,5],[7,47,6],[7,62,1],[8,44,14],[8,75,1],[9,44,2],[9,47,10],[9,75,1],[10,47,7],[11,47,6],[11,55,3],[12,47,10],[12,58,1],[12,61,1],[13,48,14],[14,33,1],[14,48,17],[15,44,20],[16,44,20],[17,9,1],[17,46,6],[17,53,12],[18,8,2],[18,48,3],[18,53,9],[19,7,4],[19,49,1],[19,54,2],[20,7,4],[21,4,10],[22,3,12],[22,37,3],[23,3,12],[23,17,3],[23,36,5],[24,3,11],[24,16,5],[24,36,5],[25,3,11],[25,16,5],[25,36,5],[26,0,35],[26,36,5],[27,0,41],[28,0,41],[29,0,41],[30,0,41]],[[3,0,1],[3,26,2],[3,53,1],[4,0,1],[4,77,1],[5,50,3],[6,48,5],[7,45,9],[7,77,1],[8,0,1],[8,44,14],[8,77,1],[9,0,1],[9,44,1],[9,48,9],[10,48,7],[11,47,7],[11,56,3],[12,47,11],[12,59,1],[13,49,14],[14,17,1],[14,48,18],[15,24,2],[15,46,19],[16,38,2],[16,44,21],[17,45,22],[18,8,1],[18,49,3],[18,54,11],[19,6,5],[19,34,1],[19,49,2],[19,54,3],[19,59,1],[20,6,5],[21,6,4],[22,2,12],[22,38,1],[23,2,12],[23,17,1],[23,36,5],[24,2,12],[24,16,3],[24,36,5],[25,2,12],[25,15,5],[25,36,5],[26,0,33],[26,36,5],[27,0,35],[27,36,5],[28,0,41],[29,0,41],[30,0,41]],[[2,25,1],[2,54,2],[3,22,1],[5,50,4],[6,49,5],[7,46,9],[7,78,1],[8,44,15],[9,44,2],[9,48,10],[10,48,7],[11,12,1],[11,24,1],[11,47,7],[11,56,3],[12,47,11],[12,60,1],[13,16,1],[13,49,16],[14,49,18],[15,47,20],[16,45,21],[17,45,22],[18,7,1],[18,19,1],[18,49,3],[18,54,11],[19,6,2],[19,50,2],[19,55,2],[19,59,2],[19,63,2],[20,5,5],[20,60,1],[21,5,5],[22,3,8],[23,1,12],[23,37,3],[24,1,13],[24,16,1],[24,36,5],[25,1,12],[25,15,3],[25,36,5],[26,1,12],[26,14,5],[26,36,5],[27,0,34],[27,36,5],[28,0,35],[28,36,5],[29,0,41],[30,0,41]],[[2,21,1],[3,32,1],[3,40,1],[3,46,1],[5,50,5],[6,49,6],[7,46,11],[7,58,1],[8,45,15],[8,75,1],[9,48,10],[10,25,1],[10,48,8],[11,22,3],[11,47,8],[11,57,3],[12,46,13],[12,61,1],[13,14,1],[13,50,16],[14,50,17],[15,38,1],[15,48,21],[16,39,1],[16,45,23],[17,18,1],[17,45,24],[18,17,2],[18,49,4],[18,55,15],[19,6,1],[19,50,3],[19,55,3],[19,60,6],[20,5,3],[20,51,1],[20,56,2],[20,61,1],[21,4,5],[22,4,5],[23,1,11],[24,0,13],[24,37,3],[25,0,13],[25,36,5],[26,0,12],[26,14,2],[26,36,5],[26,73,1],[27,0,12],[27,13,4],[27,36,5],[28,0,33],[28,36,5],[29,0,35],[29,36,5],[30,0,41]],[[2,40,2],[5,50,5],[6,49,6],[7,40,1],[7,46,15],[8,45,16],[9,49,10],[10,49,8],[11,47,9],[11,58,3],[12,12,1],[12,46,14],[13,12,1],[13,50,17],[14,50,19],[15,48,22],[16,45,25],[17,45,25],[18,46,8],[18,55,16],[19,5,1],[19,50,4],[19,56,14],[20,4,2],[20,51,2],[20,56,3],[20,62,2],[21,4,3],[22,2,6],[23,2,6],[24,0,11],[25,0,12],[25,37,3],[26,0,12],[26,36,5],[26,76,1],[27,0,11],[27,36,6],[28,0,15],[28,36,6],[29,0,25],[29,36,5],[30,0,35],[30,36,5]],[[2,49,1],[4,52,3],[5,40,1],[5,51,5],[6,50,6],[7,46,16],[8,45,17],[9,20,1],[9,50,10],[10,48,10],[11,47,10],[11,59,3],[12,10,1],[12,46,15],[12,64,1],[12,68,1],[13,51,18],[14,51,21],[15,38,1],[15,49,24],[16,48,25],[17,14,1],[17,46,26],[18,46,27],[19,51,3],[19,57,13],[19,71,2],[20,51,3],[20,57,3],[20,62,3],[20,67,2],[21,3,2],[21,57,3],[21,64,1],[22,2,3],[22,6,1],[23,1,6],[24,1,5],[25,0,10],[26,0,11],[26,37,3],[27,0,11],[27,36,5],[28,0,10],[28,36,6],[29,0,11],[29,35,7],[30,0,24],[30,25,1],[30,36,5]],[[4,39,1],[4,52,5],[5,51,6],[6,50,7],[7,20,1],[7,46,17],[8,18,1],[8,45,17],[9,50,11],[10,48,11],[11,8,1],[11,47,10],[11,60,4],[12,46,17],[12,65,2],[12,70,1],[13,51,20],[14,52,23],[15,50,25],[16,23,2],[16,48,26],[17,12,1],[17,46,28],[18,46,29],[19,47,1],[19,50,5],[19,57,19],[20,52,3],[20,58,14],[21,2,1],[21,52,2],[21,58,4],[21,65,2],[21,69,1],[22,1,2],[23,1,3],[24,0,5],[25,0,5],[26,0,8],[27,0,9],[27,24,1],[27,38,1],[28,0,10],[28,37,3],[29,0,9],[29,36,5],[30,0,9],[30,35,7]],[[3,56,1],[4,52,6],[5,51,7],[6,17,3],[6,50,8],[7,18,2],[7,46,18],[8,46,17],[9,51,11],[10,3,1],[10,49,11],[11,46,13],[11,61,3],[12,17,1],[12,46,18],[12,66,3],[12,72,1],[13,50,1],[13,52,21],[14,52,24],[15,22,1],[15,52,25],[16,49,29],[17,8,1],[17,46,30],[18,46,30],[19,47,31],[20,50,1],[20,52,4],[20,59,16],[20,77,1],[21,52,4],[21,59,4],[21,65,4],[21,70,4],[22,53,2],[22,59,4],[22,67,2],[22,72,1],[23,0,2],[24,0,2],[25,0,4],[26,0,3],[27,0,5],[27,78,1],[28,0,8],[29,0,8],[29,37,2],[30,0,8],[30,35,6]],[[3,54,4],[4,15,1],[4,53,6],[5,15,2],[5,52,7],[6,48,13],[7,46,20],[8,47,17],[9,51,13],[10,49,13],[11,46,14],[11,63,3],[11,76,1],[12,13,1],[12,46,20],[12,68,3],[13,38,1],[13,50,1],[13,53,22],[14,53,24],[15,53,26],[16,50,29],[17,49,30],[18,47,32],[19,47,32],[20,48,1],[20,50,2],[20,53,4],[20,59,20],[21,53,4],[21,60,17],[21,78,1],[22,53,4],[22,60,5],[22,68,4],[22,73,2],[23,61,2],[23,70,2],[26,0,2],[27,0,2],[28,0,1],[29,0,5],[30,0,6],[30,37,2]],[[2,11,1],[2,57,1],[3,11,2],[3,55,5],[4,53,7],[5,52,8],[6,49,17],[7,46,21],[8,47,19],[9,52,13],[10,49,14],[11,47,14],[11,65,2],[12,46,6],[12,53,14],[12,70,4],[13,50,2],[13,53,25],[14,54,25],[15,54,25],[16,0,1],[16,53,26],[17,50,29],[18,48,31],[19,48,31],[20,48,31],[21,51,1],[21,54,4],[21,61,18],[22,54,4],[22,61,6],[22,68,11],[23,54,3],[23,62,4],[23,71,3],[23,76,2],[24,72,1],[30,0,3]],[[2,57,3],[3,55,6],[4,54,7],[5,52,10],[6,49,20],[7,47,21],[8,53,14],[9,53,12],[10,49,15],[11,47,15],[11,67,2],[12,46,16],[12,64,5],[12,72,4],[13,50,2],[13,54,25],[14,55,24],[15,55,24],[16,54,25],[17,51,28],[18,50,29],[19,48,31],[20,48,31],[21,49,11],[21,62,17],[22,52,1],[22,55,4],[22,62,17],[23,55,4],[23,63,7],[23,71,8],[24,56,2],[24,63,7],[24,74,3],[25,75,1]],[[1,59,1],[2,57,6],[3,55,7],[4,55,8],[5,53,11],[6,47,23],[7,47,23],[8,54,16],[9,54,14],[9,69,1],[10,48,18],[11,47,17],[11,69,3],[12,47,17],[12,65,7],[12,74,5],[13,49,3],[13,55,24],[14,50,1],[14,55,24],[15,56,23],[16,55,24],[17,54,25],[18,51,28],[19,49,30],[20,49,30],[21,50,29],[22,51,10],[22,63,16],[23,53,1],[23,56,5],[23,64,15],[24,56,4],[24,64,9],[24,74,5],[25,57,3],[25,65,4],[25,70,2],[25,77,2],[26,71,1]],[[1,59,5],[2,57,8],[3,56,8],[4,55,9],[5,51,18],[5,72,1],[6,48,25],[7,48,23],[8,55,18],[9,55,15],[9,71,1],[10,48,19],[10,68,1],[11,47,19],[11,72,2],[12,47,18],[12,68,6],[12,77,2],[13,49,3],[13,56,23],[14,50,1],[14,56,23],[15,57,22],[16,57,22],[17,56,23],[18,53,26],[19,51,28],[20,49,30],[21,50,29],[22,51,28],[23,52,11],[23,65,14],[24,54,1],[24,57,5],[24,66,13],[25,57,5],[25,66,13],[26,58,3],[26,67,5],[26,73,3],[27,73,3],[28,74,1]],[[0,61,1],[0,63,2],[1,59,8],[2,58,8],[3,57,9],[4,55,11],[5,52,23],[6,49,26],[7,49,25],[8,56,19],[9,56,16],[9,74,1],[10,48,3],[10,53,18],[11,46,22],[11,76,1],[12,46,21],[12,71,6],[13,49,3],[13,57,22],[14,49,2],[14,57,22],[15,58,21],[16,58,21],[17,58,21],[18,57,22],[19,53,26],[20,52,27],[21,50,29],[22,51,28],[23,51,28],[24,52,13],[24,67,12],[25,58,6],[25,68,11],[26,58,5],[26,68,11],[27,59,4],[27,68,11],[28,60,2],[28,70,3],[28,75,4],[29,77,2]],[[0,61,7],[1,60,8],[2,58,10],[3,58,10],[4,55,17],[4,77,1],[5,51,27],[6,49,28],[7,50,26],[8,57,22],[9,57,18],[9,77,2],[10,48,2],[10,53,19],[10,73,1],[11,46,24],[12,45,25],[12,74,5],[13,48,4],[13,58,11],[13,71,8],[14,49,2],[14,59,20],[15,59,20],[16,60,19],[17,60,19],[18,59,20],[19,57,22],[20,54,25],[21,51,28],[22,51,28],[23,52,27],[24,53,26],[25,53,15],[25,69,10],[26,55,12],[26,70,9],[27,60,6],[27,70,9],[28,60,5],[28,71,8],[29,61,4],[29,72,7],[30,63,1]],[[0,61,10],[1,60,10],[2,59,11],[3,58,13],[4,53,26],[5,51,28],[6,50,29],[7,51,4],[7,58,21],[8,59,20],[9,58,20],[10,47,3],[10,54,22],[11,45,27],[12,45,27],[12,78,1],[13,46,1],[13,48,6],[13,59,13],[13,74,5],[14,48,3],[14,60,19],[15,48,2],[15,60,19],[16,61,18],[17,62,17],[18,61,18],[19,60,19],[20,58,21],[21,56,23],[22,52,27],[23,52,27],[24,53,26],[25,54,25],[26,54,25],[27,55,15],[27,72,7],[28,61,8],[28,73,6],[29,62,6],[29,73,6],[30,62,5],[30,73,6]],[[0,62,11],[1,61,12],[2,60,14],[3,58,21],[4,53,26],[5,51,28],[6,50,29],[7,60,19],[8,60,19],[9,58,21],[10,46,4],[10,56,23],[11,44,8],[11,53,22],[12,44,31],[13,44,31],[14,47,3],[14,52,1],[14,61,14],[14,76,3],[15,47,3],[15,62,17],[16,63,16],[17,63,16],[18,64,15],[19,62,17],[20,62,17],[21,60,19],[22,58,21],[23,53,26],[24,53,26],[25,54,25],[26,55,24],[27,55,24],[28,56,18],[28,75,4],[29,56,18],[29,76,3],[30,60,1],[30,62,9],[30,76,3]],[[0,63,13],[1,63,14],[2,60,19],[3,56,23],[4,53,26],[5,51,28],[6,52,27],[7,62,17],[8,62,17],[9,58,21],[10,46,4],[10,57,22],[11,43,9],[11,55,24],[12,42,37],[13,42,37],[14,46,3],[14,51,3],[14,63,15],[15,46,3],[15,63,16],[16,46,2],[16,64,15],[17,65,14],[18,65,14],[19,66,13],[20,64,15],[21,64,15],[22,63,16],[23,60,19],[24,54,25],[25,54,25],[26,56,23],[27,56,23],[28,57,22],[29,57,22],[30,57,22]],[[0,65,14],[1,63,16],[2,57,22],[3,55,24],[4,52,27],[5,52,27],[6,54,5],[6,63,16],[7,64,15],[8,64,15],[9,60,19],[10,45,4],[10,58,21],[11,42,10],[11,56,23],[12,41,38],[13,41,6],[13,49,30],[14,42,1],[14,44,4],[14,50,7],[14,65,14],[15,45,3],[15,65,14],[16,44,4],[16,66,13],[17,67,12],[18,67,12],[19,68,11],[20,68,11],[21,67,12],[22,67,12],[23,66,13],[24,63,16],[25,55,24],[26,56,23],[27,57,22],[28,57,22],[29,58,21],[30,58,21]],[[0,60,1],[0,64,15],[1,59,20],[2,56,23],[3,54,25],[4,53,26],[5,55,24],[6,66,13],[7,66,13],[8,67,12],[9,61,18],[10,44,5],[10,60,19],[11,40,11],[11,58,21],[12,39,40],[13,39,7],[13,48,31],[14,39,8],[14,50,29],[15,43,4],[15,52,3],[15,56,1],[15,67,12],[16,43,4],[16,68,11],[17,43,4],[17,69,10],[18,69,10],[19,70,9],[20,70,9],[21,71,8],[22,70,9],[23,69,10],[24,69,10],[25,69,10],[26,57,5],[26,66,13],[27,57,22],[28,58,21],[29,59,20],[30,59,20]],[[0,60,19],[1,57,22],[2,55,24],[3,55,24],[4,56,23],[5,57,6],[5,68,11],[6,69,10],[7,69,10],[8,70,9],[9,63,16],[10,43,5],[10,62,17],[11,39,12],[11,60,19],[12,37,17],[12,56,23],[13,36,6],[13,43,2],[13,47,32],[14,36,9],[14,49,30],[15,39,6],[15,50,11],[15,63,2],[15,67,12],[16,41,4],[16,53,2],[16,71,8],[17,41,4],[17,71,8],[18,41,4],[18,72,7],[19,72,7],[20,73,6],[21,73,6],[22,74,5],[23,75,4],[24,73,6],[25,73,6],[26,72,7],[27,59,3],[27,72,7],[28,59,7],[28,71,8],[29,60,19],[30,61,18]],[[0,57,22],[1,56,23],[2,56,23],[3,57,22],[4,59,20],[5,72,7],[6,73,6],[7,73,6],[8,73,6],[9,65,14],[10,41,5],[10,64,15],[11,37,12],[11,61,18],[12,35,18],[12,58,21],[13,33,7],[13,41,38],[14,33,10],[14,46,33],[15,33,10],[15,48,31],[16,38,5],[16,50,12],[16,65,3],[16,70,9],[17,38,5],[17,53,2],[17,74,5],[18,38,6],[18,75,4],[19,38,5],[19,75,4],[20,76,3],[21,77,2],[22,77,2],[23,77,2],[24,78,1],[26,78,1],[27,77,2],[28,77,2],[29,61,5],[29,76,3],[30,61,9],[30,76,3]],[[0,56,23],[1,57,22],[2,58,21],[3,60,19],[4,76,3],[5,77,2],[6,77,2],[7,78,1],[8,77,2],[9,67,12],[10,40,3],[10,66,13],[11,35,12],[11,63,16],[12,32,18],[12,61,18],[13,30,24],[13,57,22],[14,29,8],[14,38,3],[14,43,36],[15,28,11],[15,45,34],[16,29,12],[16,47,32],[17,33,7],[17,49,16],[17,67,12],[18,34,6],[18,51,7],[18,74,2],[18,78,1],[19,35,6],[19,78,1],[20,34,7],[21,34,6],[30,63,4]],[[0,57,22],[1,57,22],[2,59,20],[3,61,9],[3,72,2],[3,77,2],[8,71,8],[9,68,11],[10,39,3],[10,67,12],[11,34,12],[11,63,16],[12,31,19],[12,61,18],[13,29,25],[13,56,23],[14,27,8],[14,37,3],[14,42,37],[15,27,5],[15,33,5],[15,45,34],[16,28,5],[16,34,5],[16,47,32],[17,31,8],[17,49,15],[17,67,12],[18,33,5],[18,52,5],[18,75,1],[19,34,4],[20,33,6],[21,33,6]],[[0,57,22],[1,58,21],[2,61,18],[3,63,7],[3,78,1],[8,70,9],[9,68,11],[10,38,3],[10,67,12],[11,33,13],[11,64,15],[12,30,21],[12,60,19],[13,28,26],[13,56,23],[14,27,7],[14,36,3],[14,42,37],[15,26,12],[15,45,34],[16,27,5],[16,33,5],[16,47,32],[17,31,7],[17,49,15],[17,67,12],[18,32,6],[18,53,2],[19,33,4],[20,33,5],[21,32,7]],[[0,58,21],[1,59,20],[2,61,18],[3,63,2],[3,67,3],[8,70,9],[9,69,10],[10,37,5],[10,67,12],[11,33,13],[11,65,14],[12,30,21],[12,60,19],[13,28,27],[13,57,22],[14,27,7],[14,36,3],[14,42,37],[15,26,5],[15,32,5],[15,45,34],[16,27,4],[16,33,5],[16,47,32],[17,28,1],[17,30,8],[17,49,15],[17,68,11],[18,32,5],[19,32,5],[20,32,5],[21,31,7]],[[0,58,21],[1,60,19],[2,62,17],[8,71,8],[9,70,9],[10,37,5],[10,67,12],[11,33,13],[11,65,14],[12,30,22],[12,60,19],[13,28,27],[13,57,22],[14,27,7],[14,36,3],[14,42,37],[15,26,5],[15,32,6],[15,45,34],[16,27,4],[16,33,4],[16,47,32],[17,28,1],[17,30,8],[17,50,14],[17,68,11],[18,32,5],[18,77,1],[19,32,5],[20,32,5],[21,31,7]],[[0,59,20],[1,61,18],[2,62,17],[8,71,8],[9,70,9],[10,37,5],[10,68,11],[11,33,14],[11,66,13],[12,30,22],[12,61,18],[13,28,51],[14,27,7],[14,36,3],[14,43,36],[15,26,12],[15,45,34],[16,27,5],[16,33,4],[16,47,32],[17,28,1],[17,30,8],[17,50,15],[17,69,10],[18,32,6],[18,54,3],[18,77,2],[19,32,5],[20,32,5],[21,32,6],[22,32,5]],[[0,61,18],[1,61,18],[2,63,10],[2,75,2],[8,72,7],[9,71,8],[10,38,4],[10,68,11],[11,34,13],[11,66,13],[12,31,22],[12,61,18],[13,29,27],[13,58,21],[14,27,8],[14,36,4],[14,43,36],[15,27,12],[15,45,34],[16,27,5],[16,34,4],[16,48,31],[17,28,10],[17,50,17],[17,70,9],[18,32,6],[18,53,6],[18,78,1],[19,32,5],[20,33,4],[21,32,6],[22,32,6]],[[0,61,18],[1,63,16],[2,64,9],[8,72,7],[9,72,7],[10,38,5],[10,69,10],[11,34,14],[11,67,12],[12,31,22],[12,62,17],[13,29,27],[13,58,21],[14,28,7],[14,37,4],[14,43,36],[15,27,8],[15,36,3],[15,46,33],[16,27,6],[16,34,4],[16,48,31],[17,28,11],[17,50,18],[17,71,8],[18,32,7],[18,53,8],[19,33,5],[20,33,5],[21,32,7],[22,32,7]],[[0,62,17],[1,63,16],[2,66,2],[2,70,2],[8,73,6],[9,72,7],[10,39,5],[10,70,9],[11,35,13],[11,68,11],[12,32,21],[12,63,16],[13,30,27],[13,60,19],[14,29,7],[14,38,4],[14,44,35],[15,28,8],[15,37,3],[15,46,33],[16,28,5],[16,34,5],[16,48,31],[17,29,11],[17,51,19],[17,72,7],[18,33,6],[18,53,11],[19,33,6],[20,34,5],[21,33,6],[22,33,7]],[[0,62,17],[1,64,15],[8,74,5],[9,73,6],[10,39,5],[10,71,8],[11,36,13],[11,69,10],[12,33,21],[12,65,14],[13,31,26],[13,61,18],[14,29,8],[14,39,3],[14,44,35],[15,28,9],[15,38,3],[15,46,33],[16,28,6],[16,35,5],[16,49,30],[17,29,11],[17,51,28],[18,33,7],[18,53,13],[18,73,1],[19,34,6],[20,34,5],[21,34,6],[22,33,7]],[[0,64,15],[1,64,12],[1,78,1],[7,78,1],[8,75,4],[9,74,5],[10,40,5],[10,72,7],[11,37,12],[11,70,9],[12,34,20],[12,66,13],[13,32,26],[13,62,17],[14,30,8],[14,39,4],[14,45,34],[15,29,9],[15,39,3],[15,47,32],[16,29,6],[16,36,5],[16,49,30],[17,30,11],[17,51,28],[18,31,1],[18,34,7],[18,53,15],[18,74,2],[19,35,6],[19,57,2],[20,35,5],[21,35,5],[22,34,7],[23,37,3]],[[0,65,14],[1,66,11],[1,78,1],[7,78,1],[8,76,3],[9,75,4],[10,41,5],[10,72,7],[11,38,12],[11,70,9],[12,35,20],[12,67,12],[13,33,25],[13,63,16],[14,31,8],[14,40,4],[14,45,34],[15,30,8],[15,40,3],[15,47,32],[16,30,12],[16,49,30],[17,31,11],[17,51,28],[18,32,1],[18,34,8],[18,54,16],[18,75,3],[19,35,6],[19,56,6],[20,36,5],[21,36,5],[22,35,7],[23,35,6]],[[0,66,13],[1,69,9],[8,76,3],[9,76,3],[10,41,6],[10,73,6],[11,38,13],[11,71,8],[12,35,20],[12,68,11],[13,33,26],[13,64,15],[14,32,7],[14,41,4],[14,46,33],[15,31,8],[15,41,3],[15,48,31],[16,30,6],[16,37,6],[16,50,29],[17,31,12],[17,52,27],[18,32,2],[18,35,7],[18,54,17],[18,76,3],[19,36,6],[19,56,8],[20,36,5],[21,36,5],[22,35,7],[23,35,8]],[[0,68,11],[1,70,2],[1,73,5],[8,77,2],[9,77,2],[10,41,6],[10,74,5],[11,39,12],[11,72,7],[12,36,20],[12,68,11],[13,34,25],[13,64,15],[14,32,8],[14,41,4],[14,46,33],[15,31,8],[15,41,3],[15,48,31],[16,30,6],[16,37,6],[16,50,29],[17,31,6],[17,38,5],[17,52,27],[18,32,2],[18,35,8],[18,53,19],[18,77,2],[19,36,7],[19,56,10],[20,37,5],[21,37,5],[22,36,7],[23,36,8]],[[0,69,10],[1,74,4],[8,78,1],[9,78,1],[10,41,7],[10,74,5],[11,39,13],[11,73,6],[12,36,21],[12,69,10],[13,34,26],[13,65,14],[14,32,8],[14,41,5],[14,47,32],[15,31,9],[15,42,3],[15,49,30],[16,31,13],[16,51,28],[17,31,6],[17,38,6],[17,53,26],[18,32,12],[18,55,18],[18,78,1],[19,37,6],[19,56,11],[20,37,6],[21,38,5],[22,37,7],[23,37,7]],[[0,71,8],[10,41,8],[10,75,4],[11,39,14],[11,74,5],[12,36,22],[12,69,10],[13,34,27],[13,65,14],[14,32,8],[14,41,5],[14,47,32],[15,31,9],[15,42,3],[15,49,30],[16,30,7],[16,38,6],[16,51,28],[17,31,6],[17,38,6],[17,53,26],[18,32,12],[18,55,19],[19,36,8],[19,57,10],[20,38,6],[21,38,6],[22,38,7],[23,37,8]],[[0,72,2],[0,75,4],[10,41,8],[10,75,4],[11,38,15],[11,74,5],[12,36,23],[12,69,10],[13,34,28],[13,65,14],[14,32,8],[14,41,5],[14,47,32],[15,31,9],[15,42,3],[15,50,29],[16,30,7],[16,38,6],[16,52,27],[17,30,7],[17,39,6],[17,54,25],[18,32,12],[18,55,19],[19,36,1],[19,38,7],[19,58,9],[20,38,6],[21,39,5],[22,39,6],[23,39,7],[24,39,1]],[[10,41,9],[10,76,3],[11,38,17],[11,73,6],[12,35,25],[12,69,10],[13,33,30],[13,65,14],[14,32,8],[14,41,5],[14,48,31],[15,30,10],[15,42,3],[15,50,29],[16,30,13],[16,52,27],[17,30,7],[17,39,6],[17,54,25],[18,32,2],[18,35,2],[18,38,7],[18,56,19],[19,36,1],[19,38,7],[19,59,8],[20,39,6],[21,39,6],[22,40,6],[23,39,8],[24,40,2]],[[10,40,10],[10,77,2],[11,37,19],[11,73,6],[12,34,27],[12,69,10],[13,32,32],[13,66,13],[14,31,9],[14,41,5],[14,48,31],[15,30,9],[15,42,3],[15,50,29],[16,29,7],[16,37,6],[16,53,26],[17,30,6],[17,39,6],[17,55,24],[18,32,5],[18,38,7],[18,56,19],[19,36,1],[19,38,7],[19,60,7],[20,39,6],[21,40,5],[22,40,6],[23,40,7],[24,40,2]],[[9,44,2],[10,39,12],[10,78,1],[11,36,21],[11,73,6],[12,33,29],[12,69,10],[13,31,48],[14,30,9],[14,41,4],[14,49,30],[15,29,10],[15,41,3],[15,51,28],[16,29,7],[16,37,6],[16,53,26],[17,30,6],[17,38,6],[17,56,23],[18,31,2],[18,34,10],[18,57,18],[19,35,2],[19,38,7],[19,62,5],[20,38,6],[21,39,6],[22,39,7],[23,39,8],[24,39,2]],[[9,42,5],[10,38,14],[10,78,1],[11,34,25],[11,73,6],[12,31,33],[12,69,10],[13,29,50],[14,28,10],[14,41,3],[14,49,30],[15,28,15],[15,51,28],[16,28,7],[16,37,5],[16,54,25],[17,30,5],[17,36,8],[17,56,23],[18,34,9],[18,58,18],[19,36,7],[20,37,6],[21,38,5],[22,37,8],[23,37,8]],[[9,41,7],[10,35,19],[10,78,1],[11,31,30],[11,73,6],[12,29,36],[12,69,10],[13,27,11],[13,40,5],[13,47,32],[14,26,11],[14,40,3],[14,49,30],[15,26,8],[15,35,7],[15,52,27],[16,28,6],[16,37,4],[16,42,2],[16,55,24],[17,32,2],[17,36,7],[17,57,22],[18,36,7],[18,59,17],[19,36,7],[20,37,6],[21,38,6],[22,38,7],[23,37,8]],[[9,39,10],[10,32,23],[10,78,1],[11,29,34],[11,73,6],[12,27,40],[12,69,10],[13,26,11],[13,40,4],[13,47,32],[14,27,6],[14,34,3],[14,39,4],[14,50,29],[15,27,2],[15,30,3],[15,34,4],[15,39,2],[15,53,26],[16,30,3],[16,37,1],[16,55,24],[17,32,1],[17,37,6],[17,58,21],[18,35,8],[18,60,16],[19,35,8],[20,36,7],[21,36,7],[22,37,6],[23,37,8],[24,37,8]],[[9,35,15],[10,30,27],[10,78,1],[11,27,38],[11,73,6],[12,25,12],[12,38,41],[13,25,11],[13,40,4],[13,48,31],[14,26,6],[14,33,3],[14,39,3],[14,51,28],[15,29,3],[15,34,3],[15,40,1],[15,54,25],[16,31,1],[16,56,23],[17,59,20],[18,36,2],[18,40,2],[18,61,15],[19,34,8],[20,34,8],[21,35,7],[22,35,7],[23,36,6],[24,37,7],[25,37,7],[26,36,7]],[[9,32,19],[10,28,32],[10,78,1],[11,25,42],[11,73,6],[12,25,10],[12,39,40],[13,26,2],[13,29,6],[13,41,3],[13,49,30],[14,29,3],[14,33,2],[14,40,3],[14,52,27],[15,30,2],[15,34,1],[15,54,25],[16,57,22],[17,60,19],[18,62,15],[19,35,2],[20,34,7],[21,33,8],[22,34,7],[23,34,7],[24,35,6],[25,36,7],[26,36,9],[27,36,8],[28,37,1]],[[8,42,4],[9,29,24],[10,27,36],[11,25,44],[11,74,5],[12,26,9],[12,40,39],[13,27,1],[13,29,6],[13,41,2],[13,49,30],[14,29,3],[14,33,2],[14,40,3],[14,52,27],[15,55,24],[16,58,21],[17,60,19],[18,64,14],[21,34,6],[22,33,7],[23,33,7],[24,33,8],[25,34,7],[26,35,7],[27,36,8],[28,36,8],[29,36,5]],[[8,31,17],[9,27,28],[10,25,40],[11,25,11],[11,37,34],[11,74,5],[12,26,2],[12,29,6],[12,41,5],[12,47,32],[13,29,3],[13,33,2],[13,41,2],[13,50,29],[14,30,1],[14,41,1],[14,53,26],[15,56,23],[16,59,20],[17,62,17],[18,65,14],[22,37,2],[23,33,6],[24,32,8],[25,32,8],[26,33,7],[27,34,7],[28,35,8],[29,36,8],[30,36,6]],[[6,30,20],[7,26,37],[8,25,45],[8,74,5],[9,25,54],[10,26,2],[10,29,6],[10,41,38],[11,29,6],[11,41,3],[11,49,30],[12,29,2],[12,33,2],[12,41,2],[12,53,26],[13,56,23],[14,59,20],[15,62,17],[16,65,13],[21,32,2],[22,32,6],[23,30,8],[24,31,8],[25,31,8],[26,32,7],[27,33,7],[28,35,8],[29,35,8],[30,35,3]],[[4,29,26],[5,26,44],[5,74,5],[6,25,54],[7,26,53],[8,26,2],[8,29,6],[8,41,38],[9,29,6],[9,41,3],[9,51,28],[10,29,2],[10,33,2],[10,41,2],[10,55,24],[11,58,21],[12,61,18],[13,66,9],[20,31,1],[21,31,1],[21,33,3],[22,29,7],[23,29,8],[24,30,7],[25,31,7],[26,32,7],[27,34,8],[28,34,8],[29,34,4]],[[1,32,1],[1,34,1],[1,38,10],[1,50,1],[1,52,1],[1,77,1],[2,28,42],[2,74,5],[3,26,53],[4,25,54],[5,26,10],[5,39,40],[6,26,2],[6,29,6],[6,41,6],[6,49,30],[7,29,6],[7,41,3],[7,54,25],[8,29,2],[8,33,2],[8,41,2],[8,57,22],[9,61,18],[10,65,10],[20,29,2],[21,28,7],[22,27,8],[23,28,8],[24,29,7],[25,30,7],[26,32,8],[27,33,7],[28,33,5]],[[0,28,51],[1,26,53],[2,25,54],[3,26,10],[3,40,39],[4,26,2],[4,29,6],[4,41,5],[4,51,28],[5,29,6],[5,41,3],[5,56,23],[6,29,2],[6,33,2],[6,41,2],[6,60,19],[7,65,10],[19,27,2],[20,27,6],[21,26,8],[22,26,9],[23,28,7],[24,29,7],[25,30,9],[26,32,7],[27,32,5]],[[0,26,10],[0,41,38],[1,26,2],[1,29,6],[1,41,5],[1,55,24],[2,29,3],[2,33,2],[2,41,3],[2,61,18],[3,29,2],[3,33,2],[3,41,2],[3,68,2],[19,27,6],[20,25,8],[21,26,8],[22,27,8],[23,28,9],[24,31,8],[25,32,7],[26,32,4]],[[17,27,1],[17,30,1],[18,26,6],[19,25,8],[20,26,8],[21,27,9],[22,29,10],[23,31,8],[24,32,5],[25,32,4]],[[16,28,2],[17,25,7],[18,24,9],[19,25,9],[20,27,11],[21,29,10],[22,31,7],[23,33,4],[24,34,1]],[[15,27,2],[16,25,6],[17,24,9],[18,25,10],[18,37,1],[19,27,12],[20,29,10],[21,32,6],[22,33,4]],[[15,26,3],[16,24,8],[17,23,16],[18,24,15],[19,28,10],[20,33,5],[21,35,2]],[[15,33,5],[16,24,14],[17,23,16],[18,24,15],[19,35,3]],[[13,32,4],[14,30,7],[15,28,1],[15,30,8],[16,24,15],[17,23,16],[18,24,7],[19,26,3]],[[12,29,5],[13,29,7],[14,29,9],[15,28,10],[16,25,9],[17,23,9],[18,24,7],[19,26,4]],[[11,27,6],[12,27,10],[13,28,9],[14,28,8],[15,27,6],[16,25,7],[17,24,8],[18,24,8],[19,27,1]],[[10,27,3],[11,26,11],[12,27,10],[13,29,6],[14,28,5],[15,27,6],[16,26,7],[17,25,8],[18,27,6],[19,28,2]],[[10,26,10],[11,26,10],[12,28,7],[13,28,6],[14,28,6],[15,28,6],[16,27,8],[17,27,8],[18,30,2]],[[9,29,6],[10,26,9],[11,26,9],[12,28,6],[13,29,6],[14,29,6],[15,29,8],[16,28,9],[17,29,5],[18,33,1]],[[9,28,7],[10,25,9],[11,26,8],[12,29,6],[13,30,6],[14,30,8],[15,30,8],[16,30,6],[17,35,2]],[[8,29,5],[9,26,8],[10,25,9],[11,26,9],[12,30,7],[13,31,9],[14,31,9],[15,32,6],[16,33,1],[16,37,2]],[[8,29,4],[9,26,8],[10,25,11],[11,26,13],[12,31,10],[13,33,7],[14,33,8]],[[8,29,4],[9,27,8],[10,26,16],[11,26,16],[12,33,8],[13,35,7]],[[8,28,5],[9,27,15],[10,26,17],[11,26,17],[12,36,5]],[[8,29,4],[8,34,9],[9,28,15],[10,27,16],[11,27,7],[11,38,4]],[[6,38,4],[6,43,1],[7,35,10],[8,30,2],[8,33,11],[9,28,15],[10,28,11],[11,28,7],[25,0,3],[26,0,8],[27,0,11],[28,0,14],[29,0,19],[30,0,24]],[[5,38,6],[6,35,9],[7,34,10],[8,33,11],[9,29,11],[10,29,8],[11,30,6],[13,0,3],[14,0,6],[15,0,9],[16,0,12],[17,0,16],[18,0,20],[19,0,23],[20,0,26],[21,0,29],[22,0,32],[23,0,37],[24,0,40],[25,0,43],[26,0,46],[27,0,49],[28,0,52],[29,0,57],[30,0,62]],[[1,0,3],[2,0,7],[3,0,10],[3,42,2],[4,0,14],[4,38,6],[5,0,17],[5,36,7],[6,0,20],[6,35,9],[7,0,23],[7,34,9],[8,0,26],[8,33,8],[9,0,29],[9,30,9],[10,0,38],[11,0,37],[12,0,36],[12,38,2],[13,0,43],[14,0,46],[15,0,50],[16,0,54],[17,0,57],[18,0,60],[19,0,63],[20,0,66],[21,0,69],[22,0,72],[22,73,1],[23,0,77],[24,0,78],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,38],[1,0,41],[2,0,46],[3,0,49],[4,0,52],[5,0,36],[5,39,2],[5,43,12],[6,0,36],[6,41,17],[6,59,1],[7,0,35],[7,40,23],[8,0,35],[8,39,27],[9,0,33],[9,38,31],[10,0,33],[10,38,34],[11,0,75],[12,0,78],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,74],[0,75,1],[1,0,79],[2,0,79],[3,0,37],[3,43,36],[4,0,37],[4,43,36],[5,0,36],[5,42,37],[6,0,36],[6,41,38],[7,0,37],[7,41,38],[8,0,37],[8,41,38],[9,0,36],[9,41,38],[10,0,40],[10,41,38],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,38],[2,40,39],[3,0,36],[3,42,37],[4,0,37],[4,42,37],[5,0,37],[5,42,37],[6,0,37],[6,42,37],[7,0,38],[7,42,37],[8,0,38],[8,43,36],[9,0,38],[9,44,35],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,37],[2,42,37],[3,0,36],[3,42,37],[4,0,37],[4,43,36],[5,0,37],[5,43,36],[6,0,38],[6,43,36],[7,0,40],[7,45,34],[8,0,40],[8,47,32],[9,0,40],[9,44,35],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,36],[2,41,38],[3,0,36],[3,42,37],[4,0,37],[4,43,36],[5,0,38],[5,44,35],[6,0,40],[6,49,30],[7,0,42],[7,49,30],[8,0,43],[8,47,32],[9,0,43],[9,44,35],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,36],[2,41,38],[3,0,35],[3,43,36],[4,0,36],[4,45,3],[4,49,30],[5,0,39],[5,51,28],[6,0,43],[6,50,29],[7,0,45],[7,49,30],[8,0,46],[8,47,32],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,37],[2,39,10],[2,50,29],[3,0,36],[3,44,2],[3,52,27],[4,0,36],[4,52,27],[5,0,38],[5,40,2],[5,51,28],[6,0,48],[6,51,28],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,49],[0,50,29],[1,0,48],[1,52,27],[2,0,46],[2,53,26],[3,0,37],[3,53,26],[4,0,36],[4,53,26],[5,0,37],[5,42,9],[5,53,26],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,48],[0,53,26],[1,0,47],[1,53,26],[2,0,44],[2,55,24],[3,0,38],[3,55,24],[4,0,37],[4,47,32],[5,0,38],[5,44,35],[6,0,41],[6,42,37],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,47],[0,55,24],[1,0,46],[1,56,23],[2,0,44],[2,51,28],[3,0,40],[3,49,30],[4,0,39],[4,47,32],[5,0,40],[5,46,33],[6,0,42],[6,45,34],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,47],[0,54,25],[1,0,46],[1,52,27],[2,0,44],[2,50,29],[3,0,42],[3,49,30],[4,0,40],[4,48,31],[5,0,42],[5,48,31],[6,0,46],[6,47,32],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,47],[0,53,26],[1,0,46],[1,52,27],[2,0,45],[2,51,28],[3,0,44],[3,51,28],[4,0,43],[4,51,28],[5,0,45],[5,51,28],[6,0,79],[7,0,45],[7,46,33],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,48],[0,53,26],[1,0,48],[1,53,26],[2,0,47],[2,53,26],[3,0,46],[3,53,26],[4,0,45],[4,54,25],[5,0,47],[5,54,25],[6,0,49],[6,50,29],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,49],[0,55,24],[1,0,49],[1,55,24],[2,0,49],[2,56,23],[3,0,48],[3,58,21],[4,0,48],[4,56,23],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,50],[0,57,22],[1,0,51],[1,58,21],[2,0,51],[2,61,18],[3,0,51],[3,59,20],[4,0,52],[4,58,21],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,44],[0,45,5],[0,63,16],[1,0,52],[1,63,16],[2,0,53],[2,61,18],[3,0,55],[3,60,19],[4,0,57],[4,58,21],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,41],[0,63,16],[1,0,42],[1,48,5],[1,63,16],[2,0,60],[2,62,17],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,42],[0,61,1],[0,64,15],[1,0,42],[1,52,27],[2,0,43],[2,49,30],[3,0,44],[3,48,31],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,46],[0,57,22],[1,0,43],[1,54,25],[2,0,44],[2,53,26],[3,0,45],[3,52,27],[4,0,47],[4,51,28],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,49],[0,57,22],[1,0,49],[1,56,23],[2,0,47],[2,56,23],[3,0,45],[3,55,24],[4,0,47],[4,55,24],[5,0,51],[5,56,23],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,50],[0,58,21],[1,0,51],[1,58,21],[2,0,51],[2,58,21],[3,0,50],[3,58,21],[4,0,50],[4,59,20],[5,0,48],[5,60,19],[6,0,49],[6,55,1],[6,60,19],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,48],[0,58,21],[1,0,49],[1,58,21],[2,0,50],[2,59,20],[3,0,51],[3,59,20],[4,0,52],[4,60,19],[5,0,53],[5,62,17],[6,0,53],[6,66,13],[7,0,53],[7,63,16],[8,0,53],[8,59,20],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,45],[1,52,27],[2,0,44],[2,54,25],[3,0,44],[3,57,22],[4,0,44],[4,45,1],[4,58,21],[5,0,48],[5,60,19],[6,0,49],[6,66,13],[7,0,52],[7,69,10],[8,0,55],[8,68,11],[9,0,56],[9,65,14],[10,0,57],[10,64,15],[11,0,58],[11,63,16],[12,0,60],[12,61,18],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,43],[8,48,18],[8,67,12],[9,0,42],[9,55,8],[9,69,10],[10,0,42],[10,69,10],[11,0,42],[11,69,10],[12,0,50],[12,67,12],[13,0,58],[13,67,12],[14,0,61],[14,67,12],[15,0,63],[15,66,13],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,61],[14,63,1],[14,65,14],[15,0,61],[15,67,12],[16,0,59],[16,67,12],[17,0,57],[17,67,12],[18,0,41],[18,43,7],[18,69,10],[19,0,41],[19,69,10],[20,0,42],[20,49,17],[20,69,10],[21,0,42],[21,44,24],[21,69,10],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,55],[19,60,19],[20,0,56],[20,62,17],[21,0,55],[21,64,15],[22,0,55],[22,66,13],[23,0,54],[23,68,11],[24,0,52],[24,68,11],[25,0,49],[25,64,3],[25,69,10],[26,0,47],[26,60,19],[27,0,43],[27,58,21],[28,0,41],[28,55,24],[29,0,42],[29,53,26],[30,0,43],[30,52,27]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,49],[16,57,22],[17,0,49],[17,60,1],[17,62,17],[18,0,50],[18,65,14],[19,0,51],[19,65,14],[20,0,51],[20,62,17],[21,0,51],[21,61,18],[22,0,50],[22,59,20],[23,0,49],[23,58,21],[24,0,48],[24,58,21],[25,0,47],[25,57,22],[26,0,45],[26,56,23],[27,0,44],[27,56,23],[28,0,44],[28,56,23],[29,0,45],[29,56,23],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,44],[13,61,18],[14,0,45],[14,63,16],[15,0,47],[15,60,19],[16,0,48],[16,59,20],[17,0,49],[17,59,20],[18,0,49],[18,58,21],[19,0,50],[19,58,21],[20,0,49],[20,58,21],[21,0,49],[21,58,21],[22,0,48],[22,57,22],[23,0,48],[23,57,22],[24,0,47],[24,58,21],[25,0,47],[25,58,21],[26,0,46],[26,59,20],[27,0,48],[27,57,22],[28,0,52],[28,53,26],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,47],[10,57,22],[11,0,40],[11,56,23],[12,0,40],[12,55,24],[13,0,42],[13,55,24],[14,0,44],[14,55,24],[15,0,46],[15,55,24],[16,0,47],[16,55,24],[17,0,47],[17,56,23],[18,0,48],[18,57,22],[19,0,48],[19,57,22],[20,0,48],[20,58,21],[21,0,48],[21,59,20],[22,0,48],[22,61,18],[23,0,48],[23,61,18],[24,0,48],[24,56,23],[25,0,55],[25,56,23],[26,0,56],[26,57,22],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,45],[7,48,31],[8,0,41],[8,50,29],[9,0,39],[9,49,30],[10,0,36],[10,50,29],[11,0,34],[11,50,29],[12,0,38],[12,51,28],[13,0,40],[13,52,27],[14,0,43],[14,53,26],[15,0,44],[15,54,25],[16,0,45],[16,55,24],[17,0,46],[17,57,22],[18,0,47],[18,60,19],[19,0,47],[19,61,18],[20,0,48],[20,57,22],[21,0,48],[21,57,22],[22,0,49],[22,52,5],[22,58,21],[23,0,58],[23,59,20],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,37],[7,43,36],[8,0,35],[8,43,36],[9,0,34],[9,44,35],[10,0,33],[10,45,34],[11,0,31],[11,46,33],[12,0,30],[12,48,31],[13,0,36],[13,51,28],[14,0,40],[14,53,26],[15,0,43],[15,58,21],[16,0,44],[16,60,19],[17,0,46],[17,58,21],[18,0,47],[18,57,22],[19,0,48],[19,55,2],[19,58,21],[20,0,50],[20,53,6],[20,61,18],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,32],[8,38,41],[9,0,31],[9,39,40],[10,0,30],[10,41,38],[11,0,29],[11,44,35],[12,0,28],[12,47,32],[13,0,28],[13,58,21],[14,0,27],[14,33,2],[14,58,21],[15,0,27],[15,28,12],[15,57,22],[16,0,42],[16,57,22],[17,0,46],[17,60,19],[18,0,47],[18,56,4],[18,61,18],[19,0,50],[19,53,26],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,30],[9,35,44],[10,0,29],[10,37,42],[11,0,28],[11,43,36],[12,0,28],[12,56,23],[13,0,27],[13,56,23],[14,0,26],[14,57,22],[15,0,26],[15,30,10],[15,58,21],[16,0,44],[16,57,2],[16,60,19],[17,0,46],[17,56,23],[18,0,50],[18,52,27],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,29],[10,34,45],[11,0,27],[11,44,5],[11,52,27],[12,0,27],[12,52,27],[13,0,27],[13,56,23],[14,0,26],[14,58,21],[15,0,25],[15,32,9],[15,56,23],[16,0,25],[16,29,16],[16,56,23],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,27],[11,50,29],[12,0,27],[12,55,24],[13,0,26],[13,55,24],[14,0,26],[14,55,24],[15,0,25],[15,32,10],[15,44,3],[15,55,24],[16,0,24],[16,30,49],[17,0,25],[17,28,51],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,34],[11,48,31],[12,0,27],[12,53,26],[13,0,26],[13,54,25],[14,0,25],[14,37,3],[14,53,26],[15,0,25],[15,32,47],[16,0,25],[16,30,49],[17,0,22],[17,30,49],[18,0,25],[18,27,52],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,39],[10,43,36],[11,0,33],[11,49,30],[12,0,28],[12,51,28],[13,0,25],[13,51,28],[14,0,24],[14,36,9],[14,49,30],[15,0,24],[15,33,46],[16,0,24],[16,30,49],[17,0,24],[17,29,50],[18,0,21],[18,29,50],[19,0,25],[19,27,52],[20,0,24],[20,25,54],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,37],[10,41,2],[10,44,35],[11,0,31],[11,48,31],[12,0,30],[12,48,31],[13,0,27],[13,48,31],[14,0,24],[14,35,44],[15,0,24],[15,33,46],[16,0,23],[16,30,49],[17,0,22],[17,29,50],[18,0,22],[18,29,50],[19,0,21],[19,24,2],[19,29,50],[20,0,26],[20,27,52],[21,0,24],[21,26,53],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,36],[10,42,37],[11,0,29],[11,34,1],[11,46,33],[12,0,28],[12,46,33],[13,0,27],[13,45,34],[14,0,25],[14,34,45],[15,0,24],[15,32,47],[16,0,22],[16,30,49],[17,0,21],[17,29,50],[18,0,20],[18,28,51],[19,0,22],[19,29,50],[20,0,21],[20,23,3],[20,29,50],[21,0,26],[21,27,52],[22,0,24],[22,26,53],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,34],[10,35,2],[10,40,39],[11,0,27],[11,31,2],[11,44,35],[12,0,27],[12,44,35],[13,0,25],[13,43,36],[14,0,25],[14,32,47],[15,0,23],[15,31,48],[16,0,22],[16,29,50],[17,0,21],[17,28,51],[18,0,20],[18,27,52],[19,0,19],[19,27,52],[20,0,21],[20,23,1],[20,28,51],[21,0,19],[21,22,3],[21,27,52],[22,0,24],[22,26,53],[23,0,23],[23,25,54],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,30],[10,31,1],[10,33,4],[10,41,38],[11,0,32],[11,42,37],[12,0,26],[12,42,37],[13,0,24],[13,40,39],[14,0,24],[14,31,48],[15,0,22],[15,30,49],[16,0,21],[16,29,50],[17,0,20],[17,28,51],[18,0,19],[18,27,52],[19,0,18],[19,26,53],[20,0,18],[20,27,52],[21,0,20],[21,21,2],[21,27,52],[22,0,18],[22,20,4],[22,25,54],[23,0,23],[23,25,54],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,35],[10,39,40],[11,0,27],[11,41,38],[12,0,23],[12,40,39],[13,0,24],[13,36,43],[14,0,23],[14,30,49],[15,0,22],[15,29,50],[16,0,21],[16,28,51],[17,0,20],[17,27,52],[18,0,19],[18,26,53],[19,0,18],[19,26,53],[20,0,17],[20,26,53],[21,0,18],[21,20,2],[21,26,53],[22,0,18],[22,20,3],[22,26,53],[23,0,23],[23,24,55],[24,0,22],[24,24,55],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,33],[10,38,41],[11,0,27],[11,39,40],[12,0,21],[12,38,41],[13,0,23],[13,34,45],[14,0,24],[14,30,49],[15,0,21],[15,28,51],[16,0,20],[16,27,52],[17,0,20],[17,26,53],[18,0,19],[18,26,53],[19,0,18],[19,25,54],[20,0,17],[20,25,54],[21,0,17],[21,25,54],[22,0,18],[22,20,2],[22,26,53],[23,0,17],[23,19,4],[23,25,54],[24,0,22],[24,24,55],[25,0,22],[25,23,56],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,30],[10,37,42],[11,0,29],[11,37,42],[12,0,25],[12,35,44],[13,0,19],[13,32,47],[14,0,22],[14,30,49],[15,0,22],[15,28,51],[16,0,20],[16,26,53],[17,0,19],[17,26,53],[18,0,19],[18,25,54],[19,0,18],[19,25,54],[20,0,17],[20,25,54],[21,0,17],[21,24,55],[22,0,16],[22,25,54],[23,0,16],[23,19,2],[23,26,53],[24,0,17],[24,19,3],[24,24,55],[25,0,22],[25,23,56],[26,0,21],[26,22,57],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,29],[9,33,46],[10,0,28],[10,35,44],[11,0,27],[11,35,44],[12,0,25],[12,32,47],[13,0,18],[13,31,48],[14,0,18],[14,19,2],[14,29,50],[15,0,21],[15,28,51],[16,0,20],[16,27,52],[17,0,19],[17,25,54],[18,0,19],[18,25,54],[19,0,18],[19,25,54],[20,0,17],[20,25,54],[21,0,17],[21,24,55],[22,0,16],[22,24,55],[23,0,15],[23,24,55],[24,0,15],[24,19,2],[24,25,54],[25,0,16],[25,18,3],[25,23,56],[26,0,21],[26,23,56],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,26],[9,32,47],[10,0,26],[10,33,46],[11,0,25],[11,32,47],[12,0,24],[12,31,48],[13,0,22],[13,30,49],[14,0,15],[14,29,50],[15,0,16],[15,17,3],[15,27,52],[16,0,20],[16,26,53],[17,0,19],[17,25,54],[18,0,19],[18,25,54],[19,0,18],[19,25,54],[20,0,17],[20,24,55],[21,0,17],[21,24,55],[22,0,16],[22,24,55],[23,0,16],[23,24,55],[24,0,15],[24,24,55],[25,0,14],[25,18,3],[25,25,54],[26,0,16],[26,18,3],[26,23,56],[27,0,20],[27,22,57],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,23],[9,29,50],[10,0,23],[10,30,49],[11,0,23],[11,29,50],[12,0,22],[12,29,50],[13,0,21],[13,29,50],[14,0,18],[14,28,51],[15,0,14],[15,27,52],[16,0,19],[16,25,54],[17,0,19],[17,25,54],[18,0,19],[18,25,54],[19,0,18],[19,24,55],[20,0,17],[20,24,55],[21,0,17],[21,24,55],[22,0,16],[22,24,55],[23,0,16],[23,24,55],[24,0,15],[24,24,55],[25,0,15],[25,24,55],[26,0,14],[26,17,4],[26,24,55],[27,0,15],[27,18,3],[27,23,56],[28,0,14],[28,15,5],[28,21,58],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,20],[9,21,2],[9,24,55],[10,0,20],[10,28,51],[11,0,21],[11,29,50],[12,0,21],[12,26,53],[13,0,20],[13,28,51],[14,0,19],[14,27,52],[15,0,14],[15,26,53],[16,0,12],[16,17,2],[16,25,54],[17,0,19],[17,24,55],[18,0,18],[18,24,55],[19,0,18],[19,24,55],[20,0,17],[20,24,55],[21,0,17],[21,24,55],[22,0,16],[22,24,55],[23,0,16],[23,24,55],[24,0,15],[24,24,55],[25,0,15],[25,24,55],[26,0,14],[26,24,55],[27,0,14],[27,17,4],[27,25,54],[28,0,15],[28,18,2],[28,23,56],[29,0,14],[29,15,5],[29,21,58],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,18],[10,26,53],[11,0,19],[11,27,52],[12,0,19],[12,25,54],[13,0,19],[13,25,54],[14,0,18],[14,27,52],[15,0,17],[15,26,53],[16,0,12],[16,17,1],[16,26,53],[17,0,12],[17,15,3],[17,23,56],[18,0,18],[18,24,55],[19,0,17],[19,24,55],[20,0,17],[20,24,55],[21,0,16],[21,24,55],[22,0,16],[22,24,55],[23,0,15],[23,23,56],[24,0,15],[24,23,56],[25,0,14],[25,23,56],[26,0,14],[26,23,56],[27,0,13],[27,17,3],[27,24,55],[28,0,15],[28,17,3],[28,22,57],[29,0,14],[29,16,4],[29,22,57],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,19],[9,23,56],[10,0,16],[10,25,54],[11,0,17],[11,25,54],[12,0,18],[12,23,56],[13,0,18],[13,24,55],[14,0,16],[14,26,53],[15,0,16],[15,25,54],[16,0,14],[16,25,54],[17,0,12],[17,15,2],[17,23,56],[18,0,12],[18,14,3],[18,23,56],[19,0,16],[19,23,56],[20,0,16],[20,23,56],[21,0,16],[21,23,56],[22,0,15],[22,23,56],[23,0,15],[23,23,56],[24,0,14],[24,23,56],[25,0,14],[25,23,56],[26,0,13],[26,23,56],[27,0,13],[27,17,3],[27,24,55],[28,0,15],[28,17,3],[28,22,57],[29,0,14],[29,16,4],[29,22,57],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,16],[9,22,57],[10,0,16],[10,23,56],[11,0,16],[11,22,57],[12,0,16],[12,22,57],[13,0,16],[13,24,55],[14,0,15],[14,25,54],[15,0,15],[15,24,55],[16,0,14],[16,23,56],[17,0,12],[17,15,1],[17,22,57],[18,0,12],[18,14,2],[18,22,57],[19,0,15],[19,22,57],[20,0,15],[20,22,57],[21,0,15],[21,22,57],[22,0,14],[22,22,57],[23,0,14],[23,23,56],[24,0,13],[24,23,56],[25,0,13],[25,23,56],[26,0,13],[26,23,56],[27,0,12],[27,16,4],[27,24,55],[28,0,14],[28,16,4],[28,22,57],[29,0,14],[29,16,4],[29,21,58],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,19],[8,20,59],[9,0,15],[9,21,58],[10,0,15],[10,22,57],[11,0,15],[11,21,58],[12,0,15],[12,21,58],[13,0,15],[13,23,56],[14,0,14],[14,24,55],[15,0,14],[15,24,55],[16,0,14],[16,21,58],[17,0,12],[17,21,58],[18,0,11],[18,21,58],[19,0,14],[19,21,58],[20,0,14],[20,22,57],[21,0,14],[21,22,57],[22,0,14],[22,22,57],[23,0,13],[23,22,57],[24,0,13],[24,22,57],[25,0,13],[25,23,56],[26,0,12],[26,23,56],[27,0,12],[27,15,5],[27,24,55],[28,0,14],[28,16,4],[28,22,57],[29,0,14],[29,15,5],[29,21,58],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,19],[8,20,59],[9,0,14],[9,21,58],[10,0,14],[10,21,58],[11,0,15],[11,20,59],[12,0,15],[12,20,59],[13,0,14],[13,23,56],[14,0,13],[14,23,56],[15,0,13],[15,23,56],[16,0,13],[16,20,59],[17,0,12],[17,20,59],[18,0,11],[18,21,58],[19,0,11],[19,12,2],[19,22,57],[20,0,14],[20,21,58],[21,0,13],[21,21,58],[22,0,13],[22,22,57],[23,0,13],[23,22,57],[24,0,13],[24,22,57],[25,0,12],[25,23,56],[26,0,12],[26,24,55],[27,0,12],[27,16,4],[27,24,55],[28,0,14],[28,15,5],[28,22,57],[29,0,13],[29,16,4],[29,22,57],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,16],[8,17,2],[8,20,59],[9,0,12],[9,20,59],[10,0,14],[10,20,59],[11,0,14],[11,20,59],[12,0,14],[12,20,59],[13,0,13],[13,23,56],[14,0,13],[14,22,57],[15,0,13],[15,23,56],[16,0,12],[16,19,60],[17,0,11],[17,20,59],[18,0,11],[18,20,59],[19,0,11],[19,12,1],[19,20,59],[20,0,13],[20,21,58],[21,0,13],[21,22,57],[22,0,13],[22,21,58],[23,0,12],[23,22,57],[24,0,12],[24,22,57],[25,0,12],[25,22,57],[26,0,12],[26,23,56],[27,0,12],[27,16,4],[27,24,55],[28,0,12],[28,15,5],[28,22,57],[29,0,13],[29,16,4],[29,22,57],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,14],[8,19,60],[9,0,12],[9,20,59],[10,0,13],[10,20,59],[11,0,13],[11,19,60],[12,0,13],[12,20,59],[13,0,12],[13,23,56],[14,0,12],[14,22,57],[15,0,12],[15,20,1],[15,23,56],[16,0,12],[16,19,60],[17,0,11],[17,19,60],[18,0,10],[18,20,59],[19,0,10],[19,11,1],[19,21,58],[20,0,12],[20,20,59],[21,0,12],[21,20,59],[22,0,12],[22,21,58],[23,0,12],[23,21,58],[24,0,12],[24,22,57],[25,0,12],[25,22,57],[26,0,12],[26,22,57],[27,0,11],[27,16,3],[27,24,55],[28,0,11],[28,15,5],[28,22,57],[29,0,13],[29,16,3],[29,21,58],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,13],[8,19,60],[9,0,11],[9,20,59],[10,0,13],[10,20,59],[11,0,13],[11,19,60],[12,0,13],[12,21,58],[13,0,11],[13,23,56],[14,0,11],[14,22,57],[15,0,11],[15,19,2],[15,23,56],[16,0,11],[16,18,61],[17,0,10],[17,19,60],[18,0,10],[18,19,60],[19,0,10],[19,19,60],[20,0,12],[20,20,59],[21,0,12],[21,20,59],[22,0,12],[22,20,59],[23,0,12],[23,21,58],[24,0,12],[24,21,58],[25,0,11],[25,22,57],[26,0,11],[26,22,57],[27,0,11],[27,23,56],[28,0,11],[28,15,5],[28,23,56],[29,0,13],[29,16,3],[29,22,57],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,13],[8,19,60],[9,0,11],[9,21,58],[10,0,12],[10,20,59],[11,0,12],[11,19,60],[12,0,12],[12,21,58],[13,0,11],[13,23,56],[14,0,11],[14,22,57],[15,0,11],[15,19,1],[15,23,56],[16,0,11],[16,18,61],[17,0,10],[17,19,60],[18,0,9],[18,20,59],[19,0,9],[19,11,1],[19,19,60],[20,0,12],[20,20,59],[21,0,12],[21,21,58],[22,0,12],[22,20,59],[23,0,12],[23,21,58],[24,0,12],[24,21,58],[25,0,11],[25,22,57],[26,0,11],[26,22,57],[27,0,11],[27,23,56],[28,0,11],[28,15,4],[28,23,56],[29,0,13],[29,16,3],[29,21,58],[30,0,13],[30,14,65]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,13],[8,19,60],[9,0,11],[9,20,59],[10,0,11],[10,21,58],[11,0,12],[11,19,60],[12,0,12],[12,19,60],[13,0,11],[13,23,56],[14,0,10],[14,22,57],[15,0,11],[15,23,56],[16,0,11],[16,18,61],[17,0,10],[17,19,60],[18,0,9],[18,20,59],[19,0,9],[19,10,1],[19,19,60],[20,0,9],[20,10,2],[20,20,59],[21,0,12],[21,21,58],[22,0,12],[22,20,59],[23,0,12],[23,21,58],[24,0,11],[24,22,57],[25,0,11],[25,21,58],[26,0,11],[26,22,57],[27,0,11],[27,23,56],[28,0,11],[28,16,3],[28,24,55],[29,0,11],[29,16,3],[29,22,57],[30,0,13],[30,15,4],[30,21,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,13],[8,19,60],[9,0,11],[9,20,1],[9,22,57],[10,0,11],[10,21,58],[11,0,12],[11,19,60],[12,0,12],[12,20,59],[13,0,11],[13,23,56],[14,0,10],[14,22,57],[15,0,10],[15,23,56],[16,0,10],[16,18,61],[17,0,9],[17,19,60],[18,0,9],[18,19,60],[19,0,8],[19,19,60],[20,0,9],[20,10,2],[20,20,59],[21,0,12],[21,21,58],[22,0,12],[22,20,59],[23,0,11],[23,21,58],[24,0,11],[24,21,58],[25,0,11],[25,21,58],[26,0,11],[26,22,57],[27,0,11],[27,22,57],[28,0,11],[28,23,56],[29,0,11],[29,15,4],[29,22,57],[30,0,12],[30,15,4],[30,21,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,18],[7,19,60],[8,0,10],[8,20,59],[9,0,11],[9,22,57],[10,0,12],[10,20,59],[11,0,12],[11,19,60],[12,0,12],[12,21,58],[13,0,11],[13,23,56],[14,0,10],[14,23,56],[15,0,10],[15,19,2],[15,24,55],[16,0,10],[16,19,60],[17,0,9],[17,20,59],[18,0,9],[18,19,60],[19,0,8],[19,20,59],[20,0,9],[20,10,2],[20,21,58],[21,0,12],[21,20,59],[22,0,11],[22,20,59],[23,0,11],[23,21,58],[24,0,11],[24,21,58],[25,0,11],[25,21,58],[26,0,11],[26,22,57],[27,0,11],[27,22,57],[28,0,11],[28,23,56],[29,0,11],[29,15,4],[29,23,56],[30,0,13],[30,15,4],[30,21,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,13],[7,20,59],[8,0,10],[8,21,58],[9,0,11],[9,21,58],[10,0,12],[10,19,60],[11,0,12],[11,20,59],[12,0,12],[12,23,56],[13,0,11],[13,23,56],[14,0,10],[14,23,56],[15,0,10],[15,20,2],[15,23,56],[16,0,10],[16,19,60],[17,0,9],[17,19,60],[18,0,8],[18,20,59],[19,0,8],[19,10,1],[19,20,59],[20,0,9],[20,10,2],[20,20,59],[21,0,11],[21,20,59],[22,0,11],[22,21,58],[23,0,11],[23,22,57],[24,0,11],[24,21,58],[25,0,11],[25,22,57],[26,0,11],[26,23,56],[27,0,11],[27,22,57],[28,0,11],[28,23,56],[29,0,11],[29,15,4],[29,24,55],[30,0,13],[30,15,4],[30,21,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,14],[6,16,2],[6,20,59],[7,0,10],[7,20,59],[8,0,11],[8,22,57],[9,0,12],[9,20,59],[10,0,12],[10,19,60],[11,0,12],[11,21,58],[12,0,11],[12,24,55],[13,0,11],[13,23,56],[14,0,10],[14,24,55],[15,0,10],[15,19,60],[16,0,9],[16,19,60],[17,0,9],[17,21,58],[18,0,8],[18,20,59],[19,0,8],[19,11,1],[19,20,59],[20,0,12],[20,21,58],[21,0,11],[21,21,58],[22,0,11],[22,21,58],[23,0,11],[23,21,58],[24,0,11],[24,22,57],[25,0,11],[25,23,56],[26,0,11],[26,22,57],[27,0,11],[27,22,57],[28,0,11],[28,23,56],[29,0,11],[29,16,3],[29,24,55],[30,0,14],[30,16,3],[30,22,57]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,13],[6,20,59],[7,0,11],[7,21,58],[8,0,11],[8,22,57],[9,0,13],[9,20,59],[10,0,12],[10,20,59],[11,0,12],[11,24,55],[12,0,11],[12,24,55],[13,0,11],[13,24,55],[14,0,10],[14,21,1],[14,25,54],[15,0,10],[15,20,59],[16,0,9],[16,20,59],[17,0,9],[17,21,58],[18,0,8],[18,21,58],[19,0,8],[19,11,1],[19,21,58],[20,0,12],[20,21,58],[21,0,12],[21,21,58],[22,0,11],[22,21,58],[23,0,11],[23,22,57],[24,0,11],[24,22,57],[25,0,11],[25,22,57],[26,0,11],[26,23,56],[27,0,11],[27,24,55],[28,0,11],[28,23,56],[29,0,11],[29,16,3],[29,24,55],[30,0,14],[30,16,3],[30,21,58]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,19],[5,20,59],[6,0,10],[6,12,1],[6,21,58],[7,0,11],[7,22,57],[8,0,13],[8,22,57],[9,0,13],[9,20,59],[10,0,13],[10,21,58],[11,0,12],[11,24,55],[12,0,11],[12,24,55],[13,0,11],[13,24,55],[14,0,11],[14,21,2],[14,25,54],[15,0,10],[15,20,59],[16,0,9],[16,21,58],[17,0,9],[17,22,57],[18,0,8],[18,21,58],[19,0,8],[19,11,1],[19,21,58],[20,0,12],[20,21,58],[21,0,12],[21,22,57],[22,0,12],[22,23,56],[23,0,12],[23,22,57],[24,0,12],[24,22,57],[25,0,11],[25,23,56],[26,0,11],[26,23,56],[27,0,11],[27,23,56],[28,0,11],[28,23,56],[29,0,11],[29,17,2],[29,24,55],[30,0,11],[30,16,3],[30,24,55]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,19],[5,20,59],[6,0,11],[6,21,58],[7,0,11],[7,23,56],[8,0,13],[8,23,56],[9,0,13],[9,20,59],[10,0,13],[10,21,58],[11,0,13],[11,25,54],[12,0,12],[12,24,55],[13,0,11],[13,24,55],[14,0,11],[14,21,2],[14,26,53],[15,0,11],[15,21,58],[16,0,10],[16,22,57],[17,0,8],[17,22,57],[18,0,8],[18,21,58],[19,0,9],[19,22,57],[20,0,12],[20,22,57],[21,0,12],[21,22,57],[22,0,12],[22,22,57],[23,0,12],[23,23,56],[24,0,12],[24,23,56],[25,0,12],[25,23,56],[26,0,12],[26,23,56],[27,0,12],[27,24,55],[28,0,12],[28,24,55],[29,0,12],[29,24,55],[30,0,11],[30,16,4],[30,24,55]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,15],[5,18,2],[5,21,58],[6,0,12],[6,22,57],[7,0,12],[7,24,55],[8,0,13],[8,23,56],[9,0,14],[9,21,58],[10,0,13],[10,22,57],[11,0,13],[11,25,54],[12,0,12],[12,25,54],[13,0,12],[13,25,54],[14,0,12],[14,21,2],[14,26,53],[15,0,12],[15,21,58],[16,0,10],[16,22,57],[17,0,8],[17,22,57],[18,0,8],[18,22,57],[19,0,10],[19,11,2],[19,22,57],[20,0,13],[20,23,56],[21,0,13],[21,24,55],[22,0,12],[22,23,56],[23,0,12],[23,23,56],[24,0,12],[24,24,55],[25,0,12],[25,24,55],[26,0,12],[26,24,55],[27,0,12],[27,24,55],[28,0,12],[28,25,54],[29,0,12],[29,25,54],[30,0,12],[30,15,1],[30,17,3],[30,25,54]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,15],[5,22,57],[6,0,12],[6,23,56],[7,0,12],[7,25,54],[8,0,14],[8,23,56],[9,0,14],[9,22,57],[10,0,14],[10,23,56],[11,0,13],[11,26,53],[12,0,13],[12,25,54],[13,0,12],[13,26,53],[14,0,12],[14,22,2],[14,27,52],[15,0,12],[15,22,57],[16,0,10],[16,23,56],[17,0,9],[17,24,55],[18,0,8],[18,13,1],[18,23,56],[19,0,11],[19,12,2],[19,23,56],[20,0,13],[20,23,56],[21,0,13],[21,24,55],[22,0,13],[22,24,55],[23,0,13],[23,24,55],[24,0,13],[24,24,55],[25,0,12],[25,25,54],[26,0,12],[26,25,54],[27,0,12],[27,25,54],[28,0,12],[28,25,54],[29,0,12],[29,26,53],[30,0,12],[30,17,4],[30,26,53]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,20],[4,22,57],[5,0,15],[5,23,56],[6,0,13],[6,24,55],[7,0,13],[7,25,54],[8,0,15],[8,23,56],[9,0,15],[9,23,56],[10,0,14],[10,25,54],[11,0,14],[11,27,52],[12,0,13],[12,26,53],[13,0,12],[13,27,52],[14,0,12],[14,23,2],[14,28,51],[15,0,12],[15,23,56],[16,0,11],[16,23,56],[17,0,9],[17,24,55],[18,0,9],[18,24,55],[19,0,11],[19,12,2],[19,24,55],[20,0,14],[20,24,55],[21,0,14],[21,25,54],[22,0,13],[22,25,54],[23,0,13],[23,25,54],[24,0,13],[24,25,54],[25,0,13],[25,26,53],[26,0,13],[26,26,53],[27,0,13],[27,26,53],[28,0,12],[28,26,53],[29,0,12],[29,26,53],[30,0,12],[30,17,5],[30,27,52]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,21],[4,23,56],[5,0,15],[5,24,55],[6,0,13],[6,26,53],[7,0,14],[7,26,53],[8,0,16],[8,24,55],[9,0,15],[9,24,55],[10,0,15],[10,27,52],[11,0,14],[11,28,51],[12,0,14],[12,27,52],[13,0,13],[13,28,51],[14,0,13],[14,24,2],[14,28,51],[15,0,13],[15,24,55],[16,0,12],[16,24,55],[17,0,9],[17,15,1],[17,25,54],[18,0,9],[18,14,1],[18,25,54],[19,0,11],[19,13,2],[19,25,54],[20,0,15],[20,25,54],[21,0,14],[21,25,54],[22,0,14],[22,26,53],[23,0,14],[23,26,53],[24,0,14],[24,26,53],[25,0,13],[25,26,53],[26,0,13],[26,27,52],[27,0,13],[27,27,52],[28,0,13],[28,27,52],[29,0,13],[29,27,52],[30,0,12],[30,18,4],[30,28,51]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,17],[4,24,55],[5,0,13],[5,25,54],[6,0,14],[6,26,53],[7,0,15],[7,25,54],[8,0,16],[8,24,55],[9,0,16],[9,24,55],[10,0,16],[10,28,51],[11,0,14],[11,29,50],[12,0,14],[12,27,52],[13,0,14],[13,28,51],[14,0,14],[14,24,2],[14,29,50],[15,0,13],[15,25,54],[16,0,12],[16,25,54],[17,0,10],[17,25,54],[18,0,10],[18,14,2],[18,26,53],[19,0,11],[19,14,2],[19,26,53],[20,0,15],[20,26,53],[21,0,15],[21,26,53],[22,0,15],[22,26,53],[23,0,14],[23,27,52],[24,0,14],[24,27,52],[25,0,14],[25,27,52],[26,0,13],[26,27,52],[27,0,13],[27,28,51],[28,0,13],[28,28,51],[29,0,13],[29,28,51],[30,0,13],[30,18,2],[30,21,2],[30,28,51]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,17],[4,24,55],[5,0,13],[5,26,53],[6,0,14],[6,27,52],[7,0,15],[7,26,53],[8,0,16],[8,25,54],[9,0,16],[9,25,54],[10,0,16],[10,29,50],[11,0,15],[11,29,50],[12,0,15],[12,28,51],[13,0,14],[13,29,50],[14,0,14],[14,25,2],[14,29,50],[15,0,13],[15,17,1],[15,25,54],[16,0,12],[16,26,53],[17,0,11],[17,15,2],[17,26,53],[18,0,10],[18,16,1],[18,26,53],[19,0,11],[19,14,2],[19,26,53],[20,0,16],[20,27,52],[21,0,15],[21,27,52],[22,0,15],[22,27,52],[23,0,15],[23,27,52],[24,0,14],[24,28,51],[25,0,14],[25,28,51],[26,0,14],[26,28,51],[27,0,14],[27,28,51],[28,0,13],[28,28,51],[29,0,13],[29,29,50],[30,0,13],[30,15,2],[30,19,2],[30,23,1],[30,29,50]],[[0,0,79],[1,0,79],[2,0,79],[3,0,22],[3,23,56],[4,0,17],[4,25,54],[5,0,14],[5,26,53],[6,0,14],[6,27,52],[7,0,17],[7,26,53],[8,0,17],[8,25,54],[9,0,17],[9,26,53],[10,0,16],[10,29,50],[11,0,15],[11,30,49],[12,0,15],[12,28,51],[13,0,15],[13,29,50],[14,0,14],[14,26,2],[14,29,50],[15,0,14],[15,26,53],[16,0,12],[16,17,1],[16,26,53],[17,0,11],[17,17,1],[17,27,52],[18,0,11],[18,15,2],[18,27,52],[19,0,12],[19,15,2],[19,27,52],[20,0,16],[20,27,52],[21,0,16],[21,27,52],[22,0,16],[22,28,51],[23,0,15],[23,28,51],[24,0,15],[24,28,51],[25,0,14],[25,28,51],[26,0,14],[26,29,50],[27,0,14],[27,29,50],[28,0,14],[28,29,50],[29,0,13],[29,29,50],[30,0,13],[30,15,2],[30,20,1],[30,29,50]],[[0,0,79],[1,0,79],[2,0,79],[3,0,21],[3,23,56],[4,0,17],[4,25,54],[5,0,14],[5,27,52],[6,0,15],[6,27,52],[7,0,17],[7,26,53],[8,0,17],[8,26,53],[9,0,17],[9,26,53],[10,0,17],[10,30,49],[11,0,15],[11,30,49],[12,0,15],[12,29,50],[13,0,15],[13,29,50],[14,0,15],[14,30,49],[15,0,14],[15,27,52],[16,0,13],[16,27,52],[17,0,12],[17,16,2],[17,27,52],[18,0,11],[18,17,1],[18,27,52],[19,0,12],[19,16,1],[19,28,51],[20,0,17],[20,28,51],[21,0,16],[21,28,51],[22,0,16],[22,28,51],[23,0,15],[23,28,51],[24,0,15],[24,29,50],[25,0,15],[25,29,50],[26,0,14],[26,29,50],[27,0,14],[27,29,50],[28,0,14],[28,29,50],[29,0,13],[29,30,49],[30,0,13],[30,16,1],[30,30,49]],[[0,0,79],[1,0,79],[2,0,79],[3,0,22],[3,24,55],[4,0,18],[4,26,53],[5,0,14],[5,27,52],[6,0,15],[6,27,52],[7,0,17],[7,26,53],[8,0,17],[8,26,53],[9,0,17],[9,27,52],[10,0,17],[10,29,50],[11,0,16],[11,31,48],[12,0,16],[12,29,50],[13,0,16],[13,30,49],[14,0,15],[14,30,49],[15,0,15],[15,28,51],[16,0,14],[16,28,51],[17,0,13],[17,28,51],[18,0,12],[18,28,51],[19,0,12],[19,16,2],[19,28,51],[20,0,17],[20,28,51],[21,0,17],[21,29,50],[22,0,16],[22,29,50],[23,0,16],[23,29,50],[24,0,15],[24,29,50],[25,0,15],[25,29,50],[26,0,15],[26,30,49],[27,0,14],[27,30,49],[28,0,14],[28,30,49],[29,0,14],[29,30,49],[30,0,13],[30,30,49]],[[0,0,79],[1,0,79],[2,0,79],[3,0,22],[3,24,55],[4,0,18],[4,26,53],[5,0,15],[5,28,51],[6,0,15],[6,27,52],[7,0,17],[7,27,52],[8,0,18],[8,27,52],[9,0,18],[9,27,52],[10,0,18],[10,31,48],[11,0,16],[11,32,47],[12,0,16],[12,30,49],[13,0,16],[13,30,49],[14,0,16],[14,31,48],[15,0,15],[15,29,50],[16,0,14],[16,29,50],[17,0,13],[17,29,50],[18,0,13],[18,29,50],[19,0,13],[19,29,50],[20,0,18],[20,29,50],[21,0,17],[21,29,50],[22,0,17],[22,29,50],[23,0,16],[23,30,49],[24,0,16],[24,30,49],[25,0,15],[25,30,49],[26,0,15],[26,30,49],[27,0,15],[27,30,49],[28,0,14],[28,31,48],[29,0,14],[29,31,48],[30,0,14],[30,31,48]],[[0,0,79],[1,0,79],[2,0,79],[3,0,22],[3,24,55],[4,0,18],[4,27,52],[5,0,18],[5,28,51],[6,0,16],[6,27,52],[7,0,17],[7,28,51],[8,0,18],[8,27,52],[9,0,18],[9,28,51],[10,0,18],[10,31,48],[11,0,17],[11,32,47],[12,0,17],[12,30,49],[13,0,17],[13,31,48],[14,0,17],[14,31,48],[15,0,16],[15,30,49],[16,0,15],[16,29,50],[17,0,14],[17,30,49],[18,0,13],[18,30,49],[19,0,14],[19,30,49],[20,0,15],[20,16,2],[20,30,49],[21,0,18],[21,30,49],[22,0,17],[22,30,49],[23,0,17],[23,30,49],[24,0,16],[24,30,49],[25,0,16],[25,31,48],[26,0,15],[26,31,48],[27,0,15],[27,31,48],[28,0,15],[28,31,48],[29,0,14],[29,31,48],[30,0,14],[30,31,48]],[[0,0,79],[1,0,79],[2,0,79],[3,0,23],[3,25,54],[4,0,19],[4,27,52],[5,0,18],[5,28,51],[6,0,16],[6,28,51],[7,0,18],[7,28,51],[8,0,19],[8,28,51],[9,0,19],[9,20,1],[9,28,51],[10,0,19],[10,31,48],[11,0,18],[11,33,46],[12,0,17],[12,31,48],[13,0,17],[13,31,48],[14,0,17],[14,32,47],[15,0,17],[15,30,49],[16,0,16],[16,30,49],[17,0,15],[17,30,49],[18,0,14],[18,30,49],[19,0,14],[19,30,49],[20,0,16],[20,17,2],[20,30,49],[21,0,19],[21,30,49],[22,0,18],[22,31,48],[23,0,18],[23,31,48],[24,0,17],[24,31,48],[25,0,16],[25,31,48],[26,0,16],[26,31,48],[27,0,15],[27,31,48],[28,0,15],[28,32,47],[29,0,15],[29,32,47],[30,0,14],[30,32,47]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,20],[4,27,52],[5,0,19],[5,29,50],[6,0,17],[6,29,50],[7,0,18],[7,29,50],[8,0,19],[8,29,50],[9,0,19],[9,21,1],[9,29,50],[10,0,19],[10,21,1],[10,32,47],[11,0,19],[11,34,45],[12,0,18],[12,32,47],[13,0,18],[13,32,47],[14,0,18],[14,33,46],[15,0,18],[15,31,48],[16,0,17],[16,31,48],[17,0,16],[17,31,48],[18,0,15],[18,31,48],[19,0,15],[19,31,48],[20,0,16],[20,17,3],[20,31,48],[21,0,19],[21,31,48],[22,0,19],[22,31,48],[23,0,18],[23,31,48],[24,0,18],[24,31,48],[25,0,17],[25,32,47],[26,0,16],[26,32,47],[27,0,16],[27,32,47],[28,0,15],[28,32,47],[29,0,15],[29,32,47],[30,0,15],[30,32,47]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,20],[4,28,51],[5,0,20],[5,30,49],[6,0,18],[6,29,50],[7,0,18],[7,29,50],[8,0,20],[8,30,49],[9,0,20],[9,30,49],[10,0,20],[10,32,47],[11,0,20],[11,34,45],[12,0,19],[12,33,46],[13,0,19],[13,32,47],[14,0,18],[14,33,46],[15,0,19],[15,33,46],[16,0,18],[16,31,48],[17,0,17],[17,31,48],[18,0,16],[18,32,47],[19,0,16],[19,32,47],[20,0,17],[20,19,1],[20,32,47],[21,0,20],[21,32,47],[22,0,20],[22,32,47],[23,0,19],[23,32,47],[24,0,18],[24,32,47],[25,0,18],[25,32,47],[26,0,17],[26,32,47],[27,0,17],[27,32,47],[28,0,16],[28,33,46],[29,0,16],[29,33,46],[30,0,15],[30,33,46]],[[0,0,79],[1,0,79],[2,0,79],[3,0,26],[3,27,52],[4,0,21],[4,29,50],[5,0,20],[5,31,48],[6,0,18],[6,30,49],[7,0,19],[7,30,49],[8,0,21],[8,30,49],[9,0,21],[9,30,49],[10,0,21],[10,33,46],[11,0,20],[11,35,44],[12,0,20],[12,33,46],[13,0,19],[13,33,46],[14,0,19],[14,34,45],[15,0,20],[15,33,46],[16,0,19],[16,32,47],[17,0,17],[17,32,47],[18,0,16],[18,32,47],[19,0,17],[19,32,47],[20,0,18],[20,19,2],[20,32,47],[21,0,21],[21,32,47],[22,0,20],[22,33,46],[23,0,20],[23,33,46],[24,0,19],[24,33,46],[25,0,18],[25,33,46],[26,0,18],[26,33,46],[27,0,17],[27,33,46],[28,0,17],[28,33,46],[29,0,16],[29,33,46],[30,0,16],[30,34,45]],[[0,0,79],[1,0,79],[2,0,79],[3,0,26],[3,28,51],[4,0,22],[4,30,49],[5,0,21],[5,31,48],[6,0,19],[6,31,48],[7,0,19],[7,31,48],[8,0,22],[8,31,48],[9,0,22],[9,23,1],[9,31,48],[10,0,22],[10,34,45],[11,0,21],[11,36,43],[12,0,20],[12,35,44],[13,0,20],[13,34,45],[14,0,20],[14,35,44],[15,0,20],[15,33,46],[16,0,20],[16,33,46],[17,0,18],[17,33,46],[18,0,17],[18,33,46],[19,0,18],[19,33,46],[20,0,19],[20,20,2],[20,33,46],[21,0,22],[21,33,46],[22,0,21],[22,33,46],[23,0,20],[23,33,46],[24,0,20],[24,33,46],[25,0,19],[25,34,45],[26,0,18],[26,34,45],[27,0,18],[27,34,45],[28,0,17],[28,34,45],[29,0,17],[29,34,45],[30,0,17],[30,34,45]],[[0,0,79],[1,0,79],[2,0,79],[3,0,27],[3,29,50],[4,0,22],[4,31,48],[5,0,19],[5,20,2],[5,32,47],[6,0,19],[6,31,48],[7,0,20],[7,31,48],[8,0,22],[8,32,47],[9,0,22],[9,32,47],[10,0,22],[10,35,44],[11,0,22],[11,37,42],[12,0,21],[12,36,43],[13,0,21],[13,35,44],[14,0,21],[14,35,44],[15,0,21],[15,34,45],[16,0,20],[16,33,46],[17,0,19],[17,34,45],[18,0,18],[18,34,45],[19,0,18],[19,34,45],[20,0,22],[20,34,45],[21,0,22],[21,34,45],[22,0,22],[22,34,45],[23,0,21],[23,34,45],[24,0,20],[24,34,45],[25,0,20],[25,34,45],[26,0,19],[26,35,44],[27,0,19],[27,35,44],[28,0,18],[28,35,44],[29,0,18],[29,35,44],[30,0,18],[30,35,44]],[[0,0,79],[1,0,79],[2,0,79],[3,0,27],[3,30,49],[4,0,23],[4,32,47],[5,0,22],[5,33,46],[6,0,20],[6,32,47],[7,0,21],[7,32,47],[8,0,23],[8,33,46],[9,0,23],[9,34,45],[10,0,23],[10,36,43],[11,0,22],[11,38,41],[12,0,22],[12,36,43],[13,0,22],[13,36,43],[14,0,22],[14,36,43],[15,0,22],[15,35,44],[16,0,20],[16,34,45],[17,0,19],[17,34,45],[18,0,18],[18,34,45],[19,0,19],[19,34,45],[20,0,23],[20,35,44],[21,0,23],[21,35,44],[22,0,22],[22,35,44],[23,0,22],[23,35,44],[24,0,21],[24,35,44],[25,0,21],[25,35,44],[26,0,20],[26,35,44],[27,0,20],[27,35,44],[28,0,19],[28,36,43],[29,0,19],[29,36,43],[30,0,18],[30,36,43]],[[0,0,79],[1,0,79],[2,0,79],[3,0,28],[3,31,48],[4,0,24],[4,33,46],[5,0,22],[5,34,45],[6,0,21],[6,33,46],[7,0,23],[7,33,46],[8,0,24],[8,33,46],[9,0,24],[9,34,45],[10,0,24],[10,37,42],[11,0,23],[11,39,40],[12,0,23],[12,37,42],[13,0,23],[13,37,42],[14,0,23],[14,37,42],[15,0,22],[15,35,44],[16,0,21],[16,35,44],[17,0,20],[17,35,44],[18,0,19],[18,35,44],[19,0,20],[19,35,44],[20,0,24],[20,35,44],[21,0,24],[21,35,44],[22,0,23],[22,36,43],[23,0,23],[23,36,43],[24,0,22],[24,36,43],[25,0,21],[25,36,43],[26,0,21],[26,36,43],[27,0,20],[27,36,43],[28,0,20],[28,36,43],[29,0,20],[29,37,42],[30,0,19],[30,37,42]],[[0,0,79],[1,0,79],[2,0,79],[3,0,29],[3,32,47],[4,0,24],[4,34,45],[5,0,22],[5,35,44],[6,0,22],[6,34,45],[7,0,24],[7,34,45],[8,0,25],[8,34,45],[9,0,25],[9,35,44],[10,0,25],[10,38,41],[11,0,24],[11,40,39],[12,0,24],[12,38,41],[13,0,24],[13,37,42],[14,0,23],[14,37,42],[15,0,23],[15,36,43],[16,0,22],[16,36,43],[17,0,20],[17,36,43],[18,0,20],[18,36,43],[19,0,20],[19,36,43],[20,0,25],[20,36,43],[21,0,25],[21,36,43],[22,0,24],[22,36,43],[23,0,23],[23,36,43],[24,0,23],[24,37,42],[25,0,22],[25,37,42],[26,0,22],[26,37,42],[27,0,21],[27,37,42],[28,0,21],[28,37,42],[29,0,21],[29,37,42],[30,0,21],[30,37,42]],[[0,0,79],[1,0,79],[2,0,79],[3,0,29],[3,33,46],[4,0,25],[4,35,44],[5,0,22],[5,36,43],[6,0,23],[6,35,44],[7,0,25],[7,35,44],[8,0,26],[8,35,44],[9,0,26],[9,36,43],[10,0,26],[10,39,40],[11,0,25],[11,40,39],[12,0,24],[12,39,40],[13,0,24],[13,38,41],[14,0,24],[14,38,41],[15,0,24],[15,37,42],[16,0,22],[16,37,42],[17,0,21],[17,37,42],[18,0,20],[18,37,42],[19,0,21],[19,37,42],[20,0,26],[20,37,42],[21,0,25],[21,37,42],[22,0,25],[22,37,42],[23,0,24],[23,37,42],[24,0,24],[24,38,41],[25,0,23],[25,38,41],[26,0,23],[26,38,41],[27,0,23],[27,38,41],[28,0,22],[28,38,41],[29,0,22],[29,38,41],[30,0,22],[30,38,41]],[[0,0,79],[1,0,79],[2,0,79],[3,0,29],[3,34,45],[4,0,26],[4,36,43],[5,0,23],[5,36,43],[6,0,24],[6,36,43],[7,0,26],[7,36,43],[8,0,27],[8,36,43],[9,0,27],[9,37,42],[10,0,27],[10,40,39],[11,0,26],[11,41,38],[12,0,25],[12,40,39],[13,0,25],[13,39,40],[14,0,25],[14,39,40],[15,0,24],[15,38,41],[16,0,23],[16,38,41],[17,0,22],[17,38,41],[18,0,21],[18,38,41],[19,0,22],[19,26,1],[19,38,41],[20,0,27],[20,38,41],[21,0,26],[21,38,41],[22,0,26],[22,38,41],[23,0,25],[23,38,41],[24,0,25],[24,38,41],[25,0,25],[25,39,40],[26,0,24],[26,39,40],[27,0,24],[27,39,40],[28,0,23],[28,39,40],[29,0,23],[29,39,40],[30,0,23],[30,39,40]],[[0,0,79],[1,0,79],[2,0,79],[3,0,29],[3,35,44],[4,0,27],[4,37,42],[5,0,24],[5,37,42],[6,0,25],[6,37,42],[7,0,27],[7,37,42],[8,0,28],[8,37,42],[9,0,28],[9,38,41],[10,0,28],[10,41,38],[11,0,27],[11,42,37],[12,0,26],[12,41,38],[13,0,26],[13,40,39],[14,0,26],[14,40,39],[15,0,25],[15,39,40],[16,0,24],[16,39,40],[17,0,22],[17,39,40],[18,0,22],[18,39,40],[19,0,23],[19,26,2],[19,39,40],[20,0,27],[20,39,40],[21,0,27],[21,39,40],[22,0,27],[22,39,40],[23,0,26],[23,39,40],[24,0,26],[24,39,40],[25,0,26],[25,40,39],[26,0,25],[26,40,39],[27,0,25],[27,40,39],[28,0,25],[28,40,39],[29,0,25],[29,40,39],[30,0,24],[30,40,39]],[[0,0,79],[1,0,79],[2,0,79],[3,0,29],[3,36,43],[4,0,28],[4,38,41],[5,0,25],[5,26,1],[5,39,40],[6,0,26],[6,38,41],[7,0,28],[7,38,41],[8,0,29],[8,38,41],[9,0,29],[9,40,39],[10,0,29],[10,42,37],[11,0,27],[11,43,36],[12,0,27],[12,42,37],[13,0,27],[13,41,38],[14,0,27],[14,41,38],[15,0,26],[15,40,39],[16,0,24],[16,40,39],[17,0,23],[17,40,39],[18,0,23],[18,40,39],[19,0,24],[19,27,2],[19,40,39],[20,0,28],[20,39,40],[21,0,28],[21,40,39],[22,0,28],[22,40,39],[23,0,27],[23,40,39],[24,0,27],[24,40,39],[25,0,27],[25,41,38],[26,0,26],[26,41,38],[27,0,26],[27,41,38],[28,0,26],[28,41,38],[29,0,26],[29,41,38],[30,0,26],[30,41,38]],[[0,0,79],[1,0,79],[2,0,79],[3,0,31],[3,37,42],[4,0,29],[4,39,40],[5,0,26],[5,40,39],[6,0,27],[6,39,40],[7,0,29],[7,39,40],[8,0,30],[8,39,40],[9,0,30],[9,40,39],[10,0,30],[10,43,36],[11,0,28],[11,44,35],[12,0,28],[12,43,36],[13,0,28],[13,43,36],[14,0,28],[14,42,37],[15,0,27],[15,40,39],[16,0,25],[16,41,38],[17,0,24],[17,41,38],[18,0,24],[18,29,1],[18,41,38],[19,0,25],[19,28,1],[19,41,38],[20,0,29],[20,40,39],[21,0,29],[21,40,39],[22,0,29],[22,40,39],[23,0,28],[23,41,38],[24,0,28],[24,41,38],[25,0,28],[25,41,38],[26,0,27],[26,41,38],[27,0,27],[27,41,38],[28,0,27],[28,41,38],[29,0,27],[29,42,37],[30,0,27],[30,42,37]],[[0,0,79],[1,0,79],[2,0,79],[3,0,35],[3,38,41],[4,0,30],[4,39,40],[5,0,27],[5,41,38],[6,0,28],[6,40,39],[7,0,29],[7,40,39],[8,0,31],[8,40,39],[9,0,31],[9,41,38],[10,0,31],[10,44,35],[11,0,30],[11,46,33],[12,0,29],[12,44,35],[13,0,29],[13,44,35],[14,0,29],[14,43,36],[15,0,28],[15,42,37],[16,0,26],[16,41,38],[17,0,25],[17,42,37],[18,0,25],[18,42,37],[19,0,26],[19,42,37],[20,0,30],[20,41,38],[21,0,30],[21,41,38],[22,0,29],[22,41,38],[23,0,29],[23,41,38],[24,0,29],[24,41,38],[25,0,28],[25,42,37],[26,0,28],[26,42,37],[27,0,28],[27,42,37],[28,0,28],[28,42,37],[29,0,27],[29,42,37],[30,0,27],[30,42,37]],[[0,0,79],[1,0,79],[2,0,79],[3,0,36],[3,38,41],[4,0,31],[4,40,39],[5,0,30],[5,42,37],[6,0,28],[6,41,38],[7,0,29],[7,41,38],[8,0,32],[8,41,38],[9,0,32],[9,41,38],[10,0,32],[10,44,35],[11,0,31],[11,47,32],[12,0,30],[12,45,34],[13,0,30],[13,45,34],[14,0,30],[14,44,35],[15,0,29],[15,43,36],[16,0,28],[16,42,37],[17,0,26],[17,42,37],[18,0,26],[18,43,36],[19,0,27],[19,30,1],[19,42,37],[20,0,31],[20,42,37],[21,0,30],[21,42,37],[22,0,30],[22,42,37],[23,0,30],[23,42,37],[24,0,29],[24,42,37],[25,0,29],[25,42,37],[26,0,29],[26,42,37],[27,0,28],[27,42,37],[28,0,28],[28,43,36],[29,0,28],[29,43,36],[30,0,28],[30,43,36]],[[0,0,79],[1,0,79],[2,0,79],[3,0,37],[3,39,40],[4,0,31],[4,40,39],[5,0,30],[5,42,37],[6,0,29],[6,42,37],[7,0,30],[7,41,38],[8,0,32],[8,41,38],[9,0,33],[9,41,38],[10,0,33],[10,45,34],[11,0,31],[11,47,32],[12,0,31],[12,46,33],[13,0,31],[13,46,33],[14,0,31],[14,45,34],[15,0,30],[15,43,36],[16,0,29],[16,43,36],[17,0,27],[17,43,36],[18,0,27],[18,43,36],[19,0,29],[19,43,36],[20,0,31],[20,43,36],[21,0,31],[21,42,37],[22,0,31],[22,42,37],[23,0,30],[23,42,37],[24,0,30],[24,43,36],[25,0,30],[25,43,36],[26,0,29],[26,43,36],[27,0,29],[27,43,36],[28,0,29],[28,43,36],[29,0,29],[29,44,35],[30,0,28],[30,44,35]],[[0,0,79],[1,0,79],[2,0,79],[3,0,38],[3,40,39],[4,0,32],[4,41,38],[5,0,29],[5,43,36],[6,0,30],[6,43,36],[7,0,30],[7,42,37],[8,0,33],[8,41,38],[9,0,33],[9,41,38],[10,0,33],[10,46,33],[11,0,32],[11,48,31],[12,0,31],[12,46,33],[13,0,32],[13,46,33],[14,0,32],[14,45,34],[15,0,32],[15,44,35],[16,0,30],[16,43,36],[17,0,29],[17,43,36],[18,0,29],[18,43,36],[19,0,31],[19,43,36],[20,0,31],[20,42,37],[21,0,31],[21,42,37],[22,0,31],[22,43,36],[23,0,31],[23,43,36],[24,0,30],[24,43,36],[25,0,30],[25,43,36],[26,0,30],[26,44,35],[27,0,29],[27,44,35],[28,0,29],[28,44,35],[29,0,29],[29,44,35],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,39],[3,41,38],[4,0,33],[4,42,37],[5,0,29],[5,44,35],[6,0,31],[6,44,35],[7,0,31],[7,42,37],[8,0,33],[8,42,37],[9,0,33],[9,42,37],[10,0,34],[10,47,32],[11,0,32],[11,48,31],[12,0,32],[12,47,32],[13,0,32],[13,47,32],[14,0,33],[14,46,33],[15,0,33],[15,45,34],[16,0,32],[16,44,35],[17,0,31],[17,43,36],[18,0,31],[18,43,36],[19,0,32],[19,43,36],[20,0,32],[20,43,36],[21,0,32],[21,43,36],[22,0,31],[22,43,36],[23,0,31],[23,43,36],[24,0,31],[24,44,35],[25,0,30],[25,44,35],[26,0,30],[26,44,35],[27,0,30],[27,45,34],[28,0,30],[28,45,34],[29,0,29],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,39],[3,42,37],[4,0,33],[4,42,37],[5,0,30],[5,45,34],[6,0,31],[6,45,34],[7,0,32],[7,43,36],[8,0,34],[8,42,37],[9,0,34],[9,42,2],[9,45,34],[10,0,34],[10,47,32],[11,0,33],[11,49,30],[12,0,33],[12,48,31],[13,0,33],[13,47,32],[14,0,33],[14,47,32],[15,0,33],[15,44,35],[16,0,33],[16,44,35],[17,0,33],[17,43,36],[18,0,33],[18,43,36],[19,0,32],[19,43,36],[20,0,32],[20,43,36],[21,0,32],[21,43,36],[22,0,32],[22,44,35],[23,0,31],[23,44,35],[24,0,31],[24,44,35],[25,0,31],[25,45,34],[26,0,30],[26,45,34],[27,0,30],[27,45,34],[28,0,30],[28,46,33],[29,0,30],[29,46,33],[30,0,30],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,40],[3,42,37],[4,0,34],[4,43,36],[5,0,32],[5,45,34],[6,0,32],[6,45,34],[7,0,34],[7,43,36],[8,0,34],[8,43,36],[9,0,34],[9,42,2],[9,45,34],[10,0,34],[10,48,31],[11,0,33],[11,49,30],[12,0,33],[12,48,31],[13,0,33],[13,48,31],[14,0,34],[14,47,32],[15,0,34],[15,43,36],[16,0,34],[16,44,35],[17,0,33],[17,43,36],[18,0,33],[18,43,36],[19,0,33],[19,43,36],[20,0,32],[20,43,36],[21,0,32],[21,44,35],[22,0,32],[22,44,35],[23,0,32],[23,44,35],[24,0,31],[24,45,34],[25,0,31],[25,45,34],[26,0,31],[26,46,33],[27,0,31],[27,46,33],[28,0,30],[28,46,33],[29,0,30],[29,47,32],[30,0,30],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,41],[3,43,36],[4,0,34],[4,44,35],[5,0,32],[5,45,34],[6,0,33],[6,46,33],[7,0,34],[7,44,35],[8,0,34],[8,43,36],[9,0,35],[9,43,2],[9,46,33],[10,0,34],[10,49,30],[11,0,34],[11,50,29],[12,0,34],[12,49,30],[13,0,34],[13,48,31],[14,0,34],[14,43,2],[14,48,31],[15,0,34],[15,43,36],[16,0,34],[16,44,35],[17,0,33],[17,43,36],[18,0,33],[18,43,36],[19,0,33],[19,43,36],[20,0,33],[20,44,35],[21,0,32],[21,44,35],[22,0,32],[22,44,35],[23,0,32],[23,45,34],[24,0,32],[24,45,34],[25,0,32],[25,46,33],[26,0,31],[26,46,33],[27,0,31],[27,46,33],[28,0,31],[28,47,32],[29,0,31],[29,47,32],[30,0,30],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,42],[3,44,35],[4,0,35],[4,45,34],[5,0,33],[5,46,33],[6,0,33],[6,47,32],[7,0,35],[7,45,34],[8,0,35],[8,44,35],[9,0,35],[9,43,2],[9,46,33],[10,0,35],[10,49,30],[11,0,34],[11,50,29],[12,0,34],[12,49,30],[13,0,34],[13,49,30],[14,0,35],[14,44,1],[14,48,31],[15,0,34],[15,43,4],[15,48,31],[16,0,34],[16,44,35],[17,0,34],[17,45,34],[18,0,34],[18,44,35],[19,0,33],[19,44,35],[20,0,33],[20,44,35],[21,0,33],[21,45,34],[22,0,33],[22,45,34],[23,0,32],[23,45,34],[24,0,32],[24,46,33],[25,0,32],[25,46,33],[26,0,32],[26,47,32],[27,0,32],[27,47,32],[28,0,31],[28,48,31],[29,0,31],[29,48,31],[30,0,31],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,44],[3,45,34],[4,0,36],[4,45,34],[5,0,34],[5,46,33],[6,0,34],[6,48,31],[7,0,35],[7,46,33],[8,0,36],[8,44,35],[9,0,36],[9,44,2],[9,47,32],[10,0,35],[10,49,30],[11,0,35],[11,51,28],[12,0,35],[12,50,29],[13,0,35],[13,49,30],[14,0,35],[14,44,2],[14,49,30],[15,0,35],[15,44,35],[16,0,34],[16,47,32],[17,0,34],[17,46,33],[18,0,34],[18,44,35],[19,0,34],[19,44,35],[20,0,34],[20,45,34],[21,0,33],[21,45,34],[22,0,33],[22,46,33],[23,0,33],[23,46,33],[24,0,33],[24,46,33],[25,0,33],[25,47,32],[26,0,32],[26,47,32],[27,0,32],[27,48,31],[28,0,32],[28,48,31],[29,0,32],[29,49,30],[30,0,32],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,37],[4,46,33],[5,0,35],[5,46,33],[6,0,35],[6,49,30],[7,0,36],[7,46,33],[8,0,36],[8,45,34],[9,0,36],[9,45,34],[10,0,36],[10,50,29],[11,0,35],[11,52,27],[12,0,35],[12,50,29],[13,0,35],[13,50,29],[14,0,35],[14,45,2],[14,50,29],[15,0,35],[15,45,2],[15,49,30],[16,0,35],[16,49,30],[17,0,34],[17,48,31],[18,0,35],[18,45,34],[19,0,34],[19,45,34],[20,0,34],[20,45,34],[21,0,34],[21,46,33],[22,0,34],[22,46,33],[23,0,34],[23,46,33],[24,0,33],[24,47,32],[25,0,33],[25,47,32],[26,0,33],[26,48,31],[27,0,33],[27,48,31],[28,0,32],[28,49,30],[29,0,32],[29,49,30],[30,0,32],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,37],[4,47,32],[5,0,36],[5,47,32],[6,0,36],[6,49,30],[7,0,36],[7,47,32],[8,0,37],[8,46,33],[9,0,37],[9,46,33],[10,0,37],[10,50,29],[11,0,36],[11,52,27],[12,0,36],[12,51,28],[13,0,36],[13,51,28],[14,0,36],[14,50,29],[15,0,35],[15,50,29],[16,0,35],[16,51,28],[17,0,35],[17,48,31],[18,0,35],[18,46,33],[19,0,35],[19,45,34],[20,0,35],[20,46,33],[21,0,34],[21,46,33],[22,0,34],[22,46,33],[23,0,34],[23,47,32],[24,0,34],[24,47,32],[25,0,34],[25,48,31],[26,0,33],[26,48,31],[27,0,33],[27,49,30],[28,0,33],[28,49,30],[29,0,33],[29,50,29],[30,0,33],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,38],[4,47,32],[5,0,36],[5,47,32],[6,0,36],[6,49,30],[7,0,37],[7,49,30],[8,0,37],[8,46,33],[9,0,37],[9,46,33],[10,0,37],[10,50,29],[11,0,37],[11,53,26],[12,0,37],[12,51,28],[13,0,37],[13,51,28],[14,0,36],[14,51,28],[15,0,35],[15,52,27],[16,0,35],[16,52,27],[17,0,35],[17,49,30],[18,0,35],[18,45,2],[18,48,31],[19,0,35],[19,46,33],[20,0,35],[20,46,33],[21,0,35],[21,46,33],[22,0,35],[22,47,32],[23,0,34],[23,47,32],[24,0,34],[24,48,31],[25,0,34],[25,48,31],[26,0,34],[26,49,30],[27,0,34],[27,50,29],[28,0,34],[28,50,29],[29,0,33],[29,51,28],[30,0,33],[30,51,28]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,36],[4,37,2],[4,48,31],[5,0,36],[5,48,31],[6,0,37],[6,50,29],[7,0,37],[7,50,29],[8,0,38],[8,47,32],[9,0,38],[9,47,32],[10,0,37],[10,50,29],[11,0,37],[11,53,26],[12,0,37],[12,51,28],[13,0,37],[13,51,28],[14,0,37],[14,51,28],[15,0,36],[15,54,25],[16,0,36],[16,53,26],[17,0,36],[17,46,1],[17,50,29],[18,0,36],[18,46,33],[19,0,36],[19,46,33],[20,0,35],[20,46,33],[21,0,35],[21,47,32],[22,0,35],[22,47,32],[23,0,35],[23,48,31],[24,0,35],[24,48,31],[25,0,35],[25,49,30],[26,0,35],[26,50,29],[27,0,34],[27,50,29],[28,0,34],[28,51,28],[29,0,34],[29,51,28],[30,0,34],[30,52,27]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,45,1],[4,48,31],[5,0,37],[5,48,31],[6,0,38],[6,49,30],[7,0,37],[7,50,29],[8,0,38],[8,47,32],[9,0,38],[9,47,32],[10,0,38],[10,50,29],[11,0,38],[11,53,26],[12,0,38],[12,52,27],[13,0,37],[13,51,28],[14,0,37],[14,52,27],[15,0,37],[15,55,24],[16,0,37],[16,54,25],[17,0,37],[17,51,28],[18,0,36],[18,46,33],[19,0,36],[19,46,33],[20,0,36],[20,47,32],[21,0,36],[21,47,32],[22,0,36],[22,48,31],[23,0,36],[23,48,31],[24,0,35],[24,49,30],[25,0,35],[25,49,30],[26,0,35],[26,50,29],[27,0,35],[27,51,28],[28,0,35],[28,51,28],[29,0,35],[29,52,27],[30,0,35],[30,52,27]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,46,1],[4,48,31],[5,0,37],[5,49,30],[6,0,38],[6,49,30],[7,0,38],[7,50,29],[8,0,38],[8,48,31],[9,0,38],[9,48,31],[10,0,38],[10,51,28],[11,0,38],[11,53,26],[12,0,38],[12,52,27],[13,0,38],[13,52,27],[14,0,38],[14,55,24],[15,0,37],[15,56,23],[16,0,37],[16,53,26],[17,0,37],[17,48,3],[17,52,27],[18,0,37],[18,47,32],[19,0,37],[19,47,32],[20,0,36],[20,47,32],[21,0,36],[21,48,31],[22,0,36],[22,48,31],[23,0,36],[23,49,30],[24,0,36],[24,49,30],[25,0,36],[25,50,29],[26,0,36],[26,51,28],[27,0,36],[27,51,28],[28,0,35],[28,52,27],[29,0,35],[29,52,27],[30,0,35],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,49,30],[5,0,37],[5,49,30],[6,0,39],[6,51,28],[7,0,38],[7,51,28],[8,0,39],[8,48,31],[9,0,39],[9,48,31],[10,0,39],[10,51,28],[11,0,39],[11,53,26],[12,0,39],[12,52,27],[13,0,38],[13,52,27],[14,0,38],[14,57,22],[15,0,38],[15,56,23],[16,0,37],[16,49,1],[16,53,26],[17,0,38],[17,48,31],[18,0,37],[18,48,31],[19,0,37],[19,48,31],[20,0,37],[20,48,31],[21,0,37],[21,48,31],[22,0,37],[22,49,30],[23,0,37],[23,49,30],[24,0,36],[24,50,29],[25,0,36],[25,50,29],[26,0,36],[26,51,28],[27,0,36],[27,52,27],[28,0,36],[28,52,27],[29,0,36],[29,53,26],[30,0,36],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,49,30],[5,0,37],[5,49,30],[6,0,38],[6,50,29],[7,0,39],[7,52,27],[8,0,39],[8,49,30],[9,0,39],[9,48,31],[10,0,39],[10,51,28],[11,0,39],[11,54,25],[12,0,39],[12,52,27],[13,0,39],[13,52,3],[13,56,23],[14,0,39],[14,57,22],[15,0,38],[15,54,25],[16,0,38],[16,49,3],[16,54,25],[17,0,38],[17,49,30],[18,0,38],[18,48,31],[19,0,38],[19,48,31],[20,0,37],[20,48,31],[21,0,37],[21,49,30],[22,0,37],[22,49,30],[23,0,37],[23,50,29],[24,0,37],[24,50,29],[25,0,37],[25,51,28],[26,0,37],[26,51,28],[27,0,37],[27,52,27],[28,0,36],[28,53,26],[29,0,36],[29,53,26],[30,0,36],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,41],[4,50,29],[5,0,39],[5,50,29],[6,0,39],[6,52,27],[7,0,39],[7,52,27],[8,0,40],[8,49,30],[9,0,39],[9,49,30],[10,0,39],[10,52,27],[11,0,39],[11,54,25],[12,0,39],[12,52,27],[13,0,39],[13,52,2],[13,58,21],[14,0,39],[14,57,22],[15,0,38],[15,49,2],[15,54,25],[16,0,38],[16,49,30],[17,0,38],[17,49,30],[18,0,38],[18,48,31],[19,0,38],[19,49,30],[20,0,38],[20,49,30],[21,0,38],[21,49,30],[22,0,38],[22,50,29],[23,0,37],[23,50,29],[24,0,37],[24,51,28],[25,0,37],[25,51,28],[26,0,37],[26,52,27],[27,0,37],[27,52,27],[28,0,37],[28,53,26],[29,0,37],[29,53,26],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,41],[4,50,29],[5,0,38],[5,50,29],[6,0,39],[6,52,27],[7,0,39],[7,52,27],[8,0,40],[8,49,30],[9,0,40],[9,49,30],[10,0,40],[10,52,27],[11,0,40],[11,54,25],[12,0,40],[12,57,22],[13,0,39],[13,58,21],[14,0,39],[14,54,25],[15,0,39],[15,49,2],[15,54,25],[16,0,38],[16,50,29],[17,0,39],[17,50,29],[18,0,39],[18,49,30],[19,0,38],[19,49,30],[20,0,38],[20,49,30],[21,0,38],[21,50,29],[22,0,38],[22,50,29],[23,0,38],[23,50,29],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,37],[26,52,27],[27,0,37],[27,53,26],[28,0,37],[28,53,26],[29,0,37],[29,54,25],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,38],[4,39,1],[4,50,29],[5,0,38],[5,50,29],[6,0,39],[6,52,27],[7,0,39],[7,52,27],[8,0,40],[8,49,30],[9,0,40],[9,49,30],[10,0,40],[10,52,27],[11,0,40],[11,55,24],[12,0,39],[12,57,22],[13,0,39],[13,56,23],[14,0,39],[14,54,25],[15,0,39],[15,50,2],[15,54,25],[16,0,38],[16,50,29],[17,0,39],[17,51,28],[18,0,39],[18,49,30],[19,0,39],[19,49,30],[20,0,39],[20,50,29],[21,0,38],[21,50,29],[22,0,38],[22,50,29],[23,0,38],[23,51,28],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,53,26],[28,0,37],[28,53,26],[29,0,37],[29,54,25],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,50,29],[5,0,39],[5,50,29],[6,0,39],[6,52,27],[7,0,39],[7,51,28],[8,0,40],[8,49,30],[9,0,40],[9,49,30],[10,0,40],[10,52,27],[11,0,39],[11,55,24],[12,0,39],[12,56,23],[13,0,39],[13,54,25],[14,0,39],[14,54,25],[15,0,39],[15,50,2],[15,54,25],[16,0,38],[16,50,29],[17,0,39],[17,51,28],[18,0,39],[18,49,30],[19,0,39],[19,50,29],[20,0,39],[20,50,29],[21,0,39],[21,50,29],[22,0,38],[22,51,28],[23,0,38],[23,51,28],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,53,26],[28,0,38],[28,53,26],[29,0,37],[29,54,25],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,50,29],[5,0,39],[5,50,29],[6,0,38],[6,53,26],[7,0,39],[7,51,28],[8,0,40],[8,49,30],[9,0,39],[9,49,30],[10,0,39],[10,52,27],[11,0,39],[11,55,24],[12,0,38],[12,53,26],[13,0,38],[13,53,26],[14,0,39],[14,54,25],[15,0,39],[15,50,2],[15,54,25],[16,0,38],[16,51,28],[17,0,39],[17,51,28],[18,0,38],[18,50,29],[19,0,39],[19,50,29],[20,0,39],[20,50,29],[21,0,39],[21,50,29],[22,0,39],[22,51,28],[23,0,38],[23,51,28],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,53,26],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,49,30],[4,0,38],[4,39,1],[4,50,29],[5,0,39],[5,50,29],[6,0,38],[6,53,26],[7,0,39],[7,51,28],[8,0,39],[8,49,30],[9,0,39],[9,49,30],[10,0,39],[10,52,27],[11,0,37],[11,55,24],[12,0,37],[12,53,26],[13,0,37],[13,53,26],[14,0,39],[14,54,25],[15,0,39],[15,50,2],[15,54,25],[16,0,38],[16,50,29],[17,0,38],[17,51,28],[18,0,38],[18,50,29],[19,0,38],[19,50,29],[20,0,38],[20,50,29],[21,0,39],[21,51,28],[22,0,39],[22,51,28],[23,0,39],[23,51,28],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,53,26],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,49,30],[4,0,37],[4,38,2],[4,50,29],[5,0,38],[5,50,29],[6,0,38],[6,53,26],[7,0,39],[7,51,28],[8,0,39],[8,49,30],[9,0,39],[9,49,30],[10,0,39],[10,52,27],[11,0,35],[11,55,24],[12,0,35],[12,53,26],[13,0,36],[13,53,26],[14,0,39],[14,54,25],[15,0,38],[15,50,2],[15,54,25],[16,0,38],[16,50,29],[17,0,38],[17,51,28],[18,0,38],[18,50,29],[19,0,38],[19,50,29],[20,0,38],[20,50,29],[21,0,38],[21,51,28],[22,0,39],[22,51,28],[23,0,39],[23,51,28],[24,0,38],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,52,27],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,38],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,39],[4,50,29],[5,0,38],[5,50,29],[6,0,37],[6,52,27],[7,0,38],[7,51,28],[8,0,39],[8,49,30],[9,0,39],[9,49,30],[10,0,39],[10,52,27],[11,0,33],[11,55,24],[12,0,33],[12,54,25],[13,0,36],[13,53,26],[14,0,39],[14,54,25],[15,0,38],[15,50,1],[15,55,24],[16,0,38],[16,50,29],[17,0,38],[17,50,29],[18,0,38],[18,50,29],[19,0,38],[19,50,29],[20,0,38],[20,50,29],[21,0,38],[21,51,28],[22,0,38],[22,51,28],[23,0,39],[23,51,28],[24,0,39],[24,51,28],[25,0,38],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,52,27],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,38],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,49,30],[5,0,37],[5,50,29],[6,0,37],[6,52,27],[7,0,37],[7,51,28],[8,0,39],[8,49,30],[9,0,39],[9,49,30],[10,0,35],[10,52,27],[11,0,32],[11,54,25],[12,0,32],[12,55,24],[13,0,35],[13,53,26],[14,0,38],[14,54,25],[15,0,38],[15,50,1],[15,55,24],[16,0,38],[16,50,29],[17,0,38],[17,50,29],[18,0,38],[18,51,28],[19,0,37],[19,50,29],[20,0,37],[20,50,29],[21,0,38],[21,51,28],[22,0,38],[22,51,28],[23,0,38],[23,51,28],[24,0,39],[24,51,28],[25,0,39],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,52,27],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,38],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,49,30],[5,0,37],[5,49,30],[6,0,37],[6,52,27],[7,0,37],[7,52,27],[8,0,38],[8,50,29],[9,0,39],[9,49,30],[10,0,32],[10,51,28],[11,0,30],[11,54,25],[12,0,30],[12,55,24],[13,0,34],[13,53,26],[14,0,38],[14,53,26],[15,0,38],[15,55,24],[16,0,38],[16,50,3],[16,54,25],[17,0,38],[17,50,29],[18,0,37],[18,50,29],[19,0,37],[19,51,28],[20,0,37],[20,51,28],[21,0,38],[21,51,28],[22,0,38],[22,51,28],[23,0,38],[23,51,28],[24,0,39],[24,52,27],[25,0,39],[25,52,27],[26,0,38],[26,52,27],[27,0,38],[27,53,26],[28,0,38],[28,53,26],[29,0,38],[29,53,26],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,36],[4,37,3],[4,50,29],[5,0,37],[5,50,29],[6,0,37],[6,52,27],[7,0,37],[7,52,27],[8,0,39],[8,50,29],[9,0,39],[9,49,30],[10,0,30],[10,36,3],[10,52,27],[11,0,28],[11,54,25],[12,0,28],[12,56,23],[13,0,34],[13,54,25],[14,0,38],[14,54,25],[15,0,38],[15,55,24],[16,0,38],[16,50,3],[16,55,24],[17,0,38],[17,50,29],[18,0,37],[18,51,28],[19,0,37],[19,51,28],[20,0,37],[20,51,28],[21,0,38],[21,51,28],[22,0,38],[22,52,27],[23,0,38],[23,52,27],[24,0,39],[24,52,27],[25,0,39],[25,52,27],[26,0,39],[26,53,26],[27,0,38],[27,53,26],[28,0,38],[28,53,26],[29,0,38],[29,54,25],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,50,29],[5,0,37],[5,50,29],[6,0,37],[6,53,26],[7,0,37],[7,53,26],[8,0,39],[8,50,29],[9,0,39],[9,49,30],[10,0,30],[10,35,4],[10,52,27],[11,0,27],[11,55,24],[12,0,26],[12,56,23],[13,0,29],[13,33,2],[13,54,25],[14,0,37],[14,54,25],[15,0,38],[15,56,23],[16,0,38],[16,51,2],[16,55,24],[17,0,38],[17,51,28],[18,0,38],[18,51,28],[19,0,38],[19,51,28],[20,0,37],[20,52,27],[21,0,38],[21,52,27],[22,0,38],[22,52,27],[23,0,38],[23,52,27],[24,0,39],[24,53,26],[25,0,39],[25,53,26],[26,0,39],[26,53,26],[27,0,39],[27,54,25],[28,0,38],[28,54,25],[29,0,38],[29,54,25],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,49,30],[4,0,40],[4,50,29],[5,0,37],[5,51,28],[6,0,37],[6,53,26],[7,0,38],[7,52,27],[8,0,39],[8,50,29],[9,0,39],[9,50,29],[10,0,30],[10,33,7],[10,53,26],[11,0,26],[11,55,24],[12,0,25],[12,57,22],[13,0,25],[13,34,1],[13,55,24],[14,0,36],[14,55,24],[15,0,38],[15,56,23],[16,0,38],[16,51,2],[16,56,23],[17,0,37],[17,51,28],[18,0,38],[18,51,28],[19,0,38],[19,52,27],[20,0,38],[20,52,27],[21,0,39],[21,52,27],[22,0,39],[22,53,26],[23,0,39],[23,53,26],[24,0,39],[24,53,26],[25,0,39],[25,53,26],[26,0,39],[26,54,25],[27,0,39],[27,54,25],[28,0,39],[28,54,25],[29,0,38],[29,55,24],[30,0,38],[30,55,24]],[[0,0,79],[1,0,79],[2,0,79],[3,0,43],[3,47,1],[3,50,29],[4,0,40],[4,50,29],[5,0,38],[5,51,28],[6,0,37],[6,53,26],[7,0,37],[7,52,27],[8,0,40],[8,50,29],[9,0,40],[9,50,29],[10,0,29],[10,32,8],[10,53,26],[11,0,26],[11,34,2],[11,56,23],[12,0,24],[12,57,22],[13,0,24],[13,55,24],[14,0,36],[14,55,24],[15,0,39],[15,56,23],[16,0,38],[16,51,2],[16,56,23],[17,0,37],[17,51,28],[18,0,39],[18,52,27],[19,0,39],[19,52,27],[20,0,39],[20,53,26],[21,0,40],[21,53,26],[22,0,40],[22,53,26],[23,0,40],[23,53,26],[24,0,40],[24,54,25],[25,0,40],[25,54,25],[26,0,39],[26,54,25],[27,0,39],[27,55,24],[28,0,39],[28,55,24],[29,0,38],[29,55,24],[30,0,38],[30,55,24]],[[0,0,79],[1,0,79],[2,0,79],[3,0,42],[3,50,29],[4,0,40],[4,51,28],[5,0,38],[5,52,27],[6,0,38],[6,53,26],[7,0,37],[7,52,27],[8,0,40],[8,51,28],[9,0,40],[9,51,28],[10,0,28],[10,30,10],[10,53,26],[11,0,26],[11,33,3],[11,56,23],[12,0,24],[12,58,21],[13,0,23],[13,56,23],[14,0,24],[14,28,9],[14,55,24],[15,0,40],[15,56,23],[16,0,40],[16,52,1],[16,57,22],[17,0,38],[17,52,27],[18,0,39],[18,52,27],[19,0,40],[19,53,26],[20,0,40],[20,53,26],[21,0,40],[21,53,26],[22,0,41],[22,54,25],[23,0,40],[23,54,25],[24,0,40],[24,54,25],[25,0,40],[25,54,25],[26,0,40],[26,55,24],[27,0,39],[27,55,24],[28,0,39],[28,55,24],[29,0,38],[29,56,23],[30,0,38],[30,56,23]],[[0,0,79],[1,0,79],[2,0,79],[3,0,42],[3,51,28],[4,0,40],[4,51,28],[5,0,39],[5,54,25],[6,0,38],[6,54,25],[7,0,37],[7,52,27],[8,0,40],[8,51,28],[9,0,41],[9,51,28],[10,0,28],[10,29,12],[10,54,25],[11,0,26],[11,32,5],[11,56,23],[12,0,24],[12,58,21],[13,0,23],[13,56,23],[14,0,23],[14,29,9],[14,56,23],[15,0,40],[15,56,23],[16,0,40],[16,52,1],[16,57,22],[17,0,39],[17,52,27],[18,0,40],[18,53,26],[19,0,41],[19,53,26],[20,0,41],[20,54,25],[21,0,41],[21,54,25],[22,0,41],[22,54,25],[23,0,41],[23,54,25],[24,0,40],[24,55,24],[25,0,40],[25,55,24],[26,0,40],[26,55,24],[27,0,39],[27,55,24],[28,0,39],[28,56,23],[29,0,39],[29,56,23],[30,0,38],[30,56,23]],[[0,0,79],[1,0,79],[2,0,79],[3,0,42],[3,51,28],[4,0,40],[4,51,28],[5,0,38],[5,54,25],[6,0,38],[6,53,26],[7,0,38],[7,53,26],[8,0,40],[8,52,27],[9,0,41],[9,52,27],[10,0,27],[10,28,13],[10,54,25],[11,0,26],[11,32,5],[11,56,23],[12,0,24],[12,58,21],[13,0,23],[13,57,22],[14,0,22],[14,30,8],[14,56,23],[15,0,23],[15,24,17],[15,56,23],[16,0,41],[16,57,22],[17,0,40],[17,53,2],[17,56,23],[18,0,39],[18,53,26],[19,0,42],[19,53,26],[20,0,42],[20,54,25],[21,0,42],[21,54,25],[22,0,41],[22,55,24],[23,0,41],[23,55,24],[24,0,41],[24,55,24],[25,0,40],[25,55,24],[26,0,40],[26,55,24],[27,0,40],[27,56,23],[28,0,39],[28,56,23],[29,0,39],[29,56,23],[30,0,38],[30,56,23]],[[0,0,79],[1,0,79],[2,0,79],[3,0,42],[3,51,28],[4,0,40],[4,51,28],[5,0,37],[5,55,24],[6,0,38],[6,53,26],[7,0,38],[7,53,26],[8,0,40],[8,52,27],[9,0,41],[9,52,27],[10,0,41],[10,54,25],[11,0,25],[11,31,6],[11,56,23],[12,0,24],[12,59,20],[13,0,23],[13,58,21],[14,0,22],[14,33,5],[14,56,23],[15,0,22],[15,25,16],[15,57,22],[16,0,41],[16,57,22],[17,0,40],[17,54,2],[17,57,22],[18,0,40],[18,53,26],[19,0,42],[19,54,25],[20,0,42],[20,54,25],[21,0,42],[21,54,25],[22,0,42],[22,55,24],[23,0,41],[23,55,24],[24,0,41],[24,55,24],[25,0,41],[25,56,23],[26,0,40],[26,56,23],[27,0,40],[27,56,23],[28,0,39],[28,56,23],[29,0,39],[29,56,23],[30,0,38],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,43],[3,50,29],[4,0,41],[4,51,28],[5,0,37],[5,55,24],[6,0,38],[6,53,26],[7,0,38],[7,53,26],[8,0,40],[8,52,27],[9,0,41],[9,52,27],[10,0,41],[10,54,25],[11,0,25],[11,30,8],[11,56,23],[12,0,24],[12,59,20],[13,0,23],[13,58,21],[14,0,22],[14,35,3],[14,57,22],[15,0,22],[15,26,13],[15,57,22],[16,0,41],[16,57,22],[17,0,41],[17,54,1],[17,57,22],[18,0,40],[18,53,26],[19,0,42],[19,54,25],[20,0,42],[20,54,25],[21,0,42],[21,54,25],[22,0,42],[22,55,24],[23,0,41],[23,55,24],[24,0,41],[24,56,23],[25,0,41],[25,56,23],[26,0,40],[26,56,23],[27,0,40],[27,56,23],[28,0,39],[28,56,23],[29,0,39],[29,57,22],[30,0,38],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,43],[3,51,28],[4,0,41],[4,51,28],[5,0,37],[5,55,24],[6,0,38],[6,54,25],[7,0,38],[7,53,26],[8,0,40],[8,52,27],[9,0,41],[9,52,27],[10,0,41],[10,54,25],[11,0,24],[11,29,10],[11,57,22],[12,0,24],[12,59,20],[13,0,23],[13,59,20],[14,0,22],[14,37,1],[14,57,22],[15,0,22],[15,27,12],[15,57,22],[16,0,40],[16,57,22],[17,0,40],[17,53,1],[17,57,22],[18,0,40],[18,53,26],[19,0,42],[19,54,25],[20,0,42],[20,54,25],[21,0,42],[21,55,24],[22,0,42],[22,55,24],[23,0,42],[23,55,24],[24,0,41],[24,56,23],[25,0,41],[25,56,23],[26,0,40],[26,56,23],[27,0,40],[27,56,23],[28,0,39],[28,56,23],[29,0,39],[29,57,22],[30,0,38],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,48,1],[3,51,28],[4,0,41],[4,52,27],[5,0,40],[5,55,24],[6,0,37],[6,54,25],[7,0,38],[7,54,25],[8,0,40],[8,53,26],[9,0,41],[9,53,26],[10,0,41],[10,53,26],[11,0,24],[11,28,13],[11,56,23],[12,0,24],[12,33,2],[12,59,20],[13,0,23],[13,59,20],[14,0,22],[14,57,22],[15,0,21],[15,27,12],[15,57,22],[16,0,39],[16,57,22],[17,0,40],[17,41,2],[17,53,1],[17,58,21],[18,0,40],[18,42,1],[18,53,26],[19,0,39],[19,41,2],[19,54,25],[20,0,43],[20,55,24],[21,0,42],[21,55,24],[22,0,42],[22,55,24],[23,0,42],[23,56,23],[24,0,42],[24,56,23],[25,0,41],[25,56,23],[26,0,41],[26,56,23],[27,0,40],[27,57,22],[28,0,40],[28,57,22],[29,0,39],[29,57,22],[30,0,39],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,49],[3,51,28],[4,0,42],[4,52,27],[5,0,41],[5,55,24],[6,0,38],[6,54,25],[7,0,38],[7,54,25],[8,0,40],[8,54,25],[9,0,41],[9,53,26],[10,0,41],[10,53,26],[11,0,24],[11,27,14],[11,56,23],[12,0,23],[12,32,4],[12,59,20],[13,0,22],[13,59,20],[14,0,22],[14,57,22],[15,0,21],[15,28,11],[15,57,22],[16,0,22],[16,23,16],[16,58,21],[17,0,40],[17,41,2],[17,58,21],[18,0,39],[18,41,2],[18,54,25],[19,0,39],[19,41,2],[19,54,25],[20,0,43],[20,54,25],[21,0,43],[21,55,24],[22,0,42],[22,55,24],[23,0,42],[23,56,23],[24,0,42],[24,56,23],[25,0,42],[25,56,23],[26,0,41],[26,57,22],[27,0,41],[27,57,22],[28,0,40],[28,57,22],[29,0,39],[29,57,22],[30,0,39],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,49],[3,51,28],[4,0,42],[4,53,26],[5,0,41],[5,53,2],[5,56,23],[6,0,38],[6,55,24],[7,0,38],[7,54,25],[8,0,40],[8,54,25],[9,0,42],[9,53,26],[10,0,42],[10,54,25],[11,0,23],[11,24,1],[11,26,15],[11,56,23],[12,0,23],[12,31,6],[12,59,20],[13,0,22],[13,60,19],[14,0,21],[14,58,21],[15,0,21],[15,28,11],[15,57,22],[16,0,21],[16,23,16],[16,58,21],[17,0,40],[17,41,2],[17,58,21],[18,0,39],[18,40,3],[18,54,2],[18,57,22],[19,0,38],[19,41,2],[19,54,25],[20,0,38],[20,39,4],[20,55,24],[21,0,43],[21,55,24],[22,0,43],[22,56,23],[23,0,42],[23,56,23],[24,0,42],[24,56,23],[25,0,42],[25,57,22],[26,0,41],[26,57,22],[27,0,41],[27,57,22],[28,0,40],[28,57,22],[29,0,40],[29,57,22],[30,0,39],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,49],[3,51,28],[4,0,42],[4,52,27],[5,0,41],[5,54,1],[5,56,23],[6,0,38],[6,54,25],[7,0,38],[7,55,24],[8,0,40],[8,54,25],[9,0,42],[9,54,25],[10,0,42],[10,54,25],[11,0,41],[11,56,23],[12,0,21],[12,30,7],[12,59,20],[13,0,21],[13,60,19],[14,0,21],[14,58,21],[15,0,20],[15,29,2],[15,33,5],[15,58,21],[16,0,20],[16,23,15],[16,58,21],[17,0,39],[17,41,2],[17,58,21],[18,0,39],[18,40,3],[18,54,2],[18,57,22],[19,0,38],[19,40,3],[19,54,25],[20,0,43],[20,55,24],[21,0,43],[21,55,24],[22,0,43],[22,56,23],[23,0,42],[23,56,23],[24,0,42],[24,56,23],[25,0,42],[25,57,22],[26,0,41],[26,57,22],[27,0,41],[27,57,22],[28,0,40],[28,57,22],[29,0,39],[29,57,22],[30,0,39],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,51,28],[4,0,42],[4,53,26],[5,0,41],[5,56,23],[6,0,38],[6,54,25],[7,0,38],[7,54,25],[8,0,40],[8,54,25],[9,0,42],[9,54,25],[10,0,41],[10,54,25],[11,0,41],[11,57,22],[12,0,19],[12,29,7],[12,59,20],[13,0,20],[13,60,19],[14,0,20],[14,58,21],[15,0,19],[15,33,5],[15,58,21],[16,0,19],[16,23,15],[16,58,21],[17,0,39],[17,41,2],[17,58,21],[18,0,38],[18,39,4],[18,54,2],[18,57,22],[19,0,37],[19,40,3],[19,54,25],[20,0,42],[20,54,25],[21,0,42],[21,55,24],[22,0,42],[22,55,24],[23,0,42],[23,56,23],[24,0,42],[24,56,23],[25,0,41],[25,56,23],[26,0,41],[26,56,23],[27,0,40],[27,57,22],[28,0,40],[28,57,22],[29,0,39],[29,57,22],[30,0,39],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,43],[3,52,27],[4,0,41],[4,53,26],[5,0,40],[5,55,24],[6,0,38],[6,54,25],[7,0,38],[7,54,25],[8,0,40],[8,54,25],[9,0,41],[9,54,25],[10,0,41],[10,54,25],[11,0,41],[11,57,22],[12,0,17],[12,26,10],[12,59,20],[13,0,19],[13,60,19],[14,0,19],[14,59,20],[15,0,18],[15,33,5],[15,58,21],[16,0,17],[16,19,19],[16,58,21],[17,0,38],[17,40,1],[17,58,21],[18,0,38],[18,39,3],[18,54,2],[18,57,22],[19,0,37],[19,39,3],[19,54,25],[20,0,37],[20,39,3],[20,54,25],[21,0,42],[21,54,25],[22,0,42],[22,55,24],[23,0,41],[23,55,24],[24,0,41],[24,56,23],[25,0,41],[25,56,23],[26,0,40],[26,56,23],[27,0,40],[27,56,23],[28,0,39],[28,56,23],[29,0,39],[29,57,22],[30,0,38],[30,57,22]],[[0,0,79],[1,0,79],[2,0,48],[2,51,28],[3,0,42],[3,52,27],[4,0,41],[4,53,26],[5,0,39],[5,55,24],[6,0,38],[6,54,25],[7,0,37],[7,54,25],[8,0,40],[8,54,25],[9,0,41],[9,54,25],[10,0,41],[10,54,25],[11,0,41],[11,56,23],[12,0,15],[12,24,11],[12,59,20],[13,0,18],[13,60,19],[14,0,18],[14,59,20],[15,0,17],[15,33,4],[15,57,22],[16,0,16],[16,19,1],[16,21,16],[16,57,22],[17,0,38],[17,58,21],[18,0,38],[18,39,2],[18,57,22],[19,0,37],[19,39,2],[19,55,24],[20,0,36],[20,39,2],[20,54,25],[21,0,41],[21,54,25],[22,0,41],[22,54,25],[23,0,41],[23,55,24],[24,0,40],[24,55,24],[25,0,40],[25,56,23],[26,0,40],[26,56,23],[27,0,39],[27,56,23],[28,0,39],[28,56,23],[29,0,38],[29,56,23],[30,0,38],[30,56,23]],[[0,0,79],[1,0,79],[2,0,48],[2,50,29],[3,0,41],[3,53,26],[4,0,41],[4,54,25],[5,0,38],[5,55,24],[6,0,37],[6,54,25],[7,0,37],[7,54,25],[8,0,40],[8,54,25],[9,0,40],[9,54,25],[10,0,40],[10,54,25],[11,0,40],[11,56,23],[12,0,13],[12,14,2],[12,21,14],[12,59,20],[13,0,14],[13,16,1],[13,60,19],[14,0,17],[14,59,20],[15,0,17],[15,33,4],[15,57,22],[16,0,16],[16,19,1],[16,21,16],[16,57,22],[17,0,37],[17,58,21],[18,0,38],[18,39,2],[18,58,21],[19,0,37],[19,38,3],[19,55,24],[20,0,36],[20,38,2],[20,55,24],[21,0,40],[21,54,25],[22,0,40],[22,54,25],[23,0,40],[23,54,25],[24,0,40],[24,55,24],[25,0,39],[25,55,24],[26,0,39],[26,55,24],[27,0,39],[27,55,24],[28,0,38],[28,56,23],[29,0,38],[29,56,23],[30,0,37],[30,56,23]],[[0,0,79],[1,0,79],[2,0,46],[2,51,28],[3,0,41],[3,53,26],[4,0,40],[4,54,25],[5,0,37],[5,54,25],[6,0,37],[6,54,25],[7,0,37],[7,54,25],[8,0,40],[8,54,25],[9,0,40],[9,54,25],[10,0,40],[10,41,2],[10,54,25],[11,0,40],[11,41,2],[11,55,24],[12,0,35],[12,58,21],[13,0,13],[13,60,19],[14,0,17],[14,59,20],[15,0,17],[15,33,3],[15,57,22],[16,0,16],[16,20,2],[16,23,14],[16,57,22],[17,0,37],[17,58,21],[18,0,38],[18,58,21],[19,0,40],[19,55,24],[20,0,36],[20,39,1],[20,54,25],[21,0,36],[21,37,3],[21,54,25],[22,0,40],[22,54,25],[23,0,39],[23,54,25],[24,0,39],[24,54,25],[25,0,39],[25,55,24],[26,0,39],[26,55,24],[27,0,38],[27,55,24],[28,0,38],[28,55,24],[29,0,37],[29,55,24],[30,0,37],[30,55,24]],[[0,0,79],[1,0,47],[1,49,30],[2,0,43],[2,50,29],[3,0,40],[3,53,26],[4,0,40],[4,54,25],[5,0,36],[5,54,25],[6,0,36],[6,54,25],[7,0,37],[7,54,25],[8,0,40],[8,54,25],[9,0,40],[9,54,25],[10,0,40],[10,41,2],[10,54,25],[11,0,40],[11,41,2],[11,55,24],[12,0,35],[12,58,21],[13,0,14],[13,60,19],[14,0,17],[14,59,20],[15,0,17],[15,33,2],[15,57,22],[16,0,16],[16,21,1],[16,24,12],[16,57,22],[17,0,37],[17,58,21],[18,0,38],[18,58,21],[19,0,39],[19,56,23],[20,0,37],[20,56,23],[21,0,36],[21,37,2],[21,55,24],[22,0,36],[22,37,2],[22,55,24],[23,0,39],[23,55,24],[24,0,39],[24,55,24],[25,0,38],[25,54,25],[26,0,38],[26,54,25],[27,0,38],[27,55,24],[28,0,37],[28,55,24],[29,0,37],[29,55,24],[30,0,36],[30,55,24]],[[0,0,79],[1,0,47],[1,49,30],[2,0,43],[2,50,29],[3,0,40],[3,53,26],[4,0,40],[4,54,25],[5,0,36],[5,54,25],[6,0,36],[6,53,26],[7,0,37],[7,54,25],[8,0,39],[8,54,25],[9,0,39],[9,54,25],[10,0,39],[10,41,2],[10,54,25],[11,0,39],[11,41,2],[11,54,25],[12,0,35],[12,57,22],[13,0,17],[13,28,2],[13,60,19],[14,0,17],[14,59,20],[15,0,17],[15,34,2],[15,57,22],[16,0,17],[16,23,1],[16,25,12],[16,57,22],[17,0,18],[17,19,18],[17,58,21],[18,0,38],[18,58,21],[19,0,39],[19,56,23],[20,0,38],[20,57,22],[21,0,37],[21,56,23],[22,0,38],[22,56,23],[23,0,38],[23,56,23],[24,0,38],[24,56,23],[25,0,38],[25,55,24],[26,0,38],[26,54,25],[27,0,38],[27,54,25],[28,0,37],[28,54,25],[29,0,37],[29,55,24],[30,0,36],[30,55,24]],[[0,0,79],[1,0,47],[1,48,31],[2,0,43],[2,50,29],[3,0,40],[3,53,26],[4,0,40],[4,54,25],[5,0,37],[5,54,25],[6,0,35],[6,54,25],[7,0,37],[7,54,25],[8,0,39],[8,54,25],[9,0,39],[9,54,25],[10,0,39],[10,41,2],[10,54,25],[11,0,39],[11,41,2],[11,54,25],[12,0,37],[12,41,1],[12,57,22],[13,0,19],[13,28,3],[13,60,19],[14,0,17],[14,59,20],[15,0,19],[15,35,2],[15,58,21],[16,0,19],[16,25,1],[16,27,10],[16,57,22],[17,0,20],[17,21,16],[17,57,22],[18,0,38],[18,58,21],[19,0,39],[19,57,22],[20,0,38],[20,57,22],[21,0,38],[21,56,23],[22,0,38],[22,56,23],[23,0,38],[23,57,22],[24,0,38],[24,57,22],[25,0,38],[25,56,23],[26,0,38],[26,56,23],[27,0,38],[27,54,25],[28,0,37],[28,54,25],[29,0,37],[29,54,25],[30,0,37],[30,55,24]],[[0,0,79],[1,0,46],[1,47,32],[2,0,45],[2,49,30],[3,0,40],[3,53,26],[4,0,40],[4,54,25],[5,0,39],[5,54,25],[6,0,35],[6,54,25],[7,0,37],[7,54,25],[8,0,39],[8,55,24],[9,0,40],[9,55,24],[10,0,40],[10,41,2],[10,55,24],[11,0,40],[11,41,3],[11,55,24],[12,0,39],[12,42,1],[12,56,23],[13,0,22],[13,23,10],[13,60,19],[14,0,20],[14,59,20],[15,0,20],[15,36,2],[15,58,21],[16,0,21],[16,28,10],[16,57,22],[17,0,22],[17,25,12],[17,57,22],[18,0,37],[18,58,21],[19,0,39],[19,58,21],[20,0,39],[20,58,21],[21,0,38],[21,57,22],[22,0,38],[22,57,22],[23,0,38],[23,58,21],[24,0,38],[24,58,21],[25,0,38],[25,57,22],[26,0,38],[26,57,22],[27,0,38],[27,54,25],[28,0,38],[28,54,25],[29,0,37],[29,54,25],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,45],[2,49,30],[3,0,41],[3,52,27],[4,0,40],[4,54,25],[5,0,40],[5,54,25],[6,0,36],[6,54,25],[7,0,37],[7,54,25],[8,0,38],[8,55,24],[9,0,40],[9,55,24],[10,0,40],[10,41,2],[10,55,24],[11,0,40],[11,41,4],[11,55,24],[12,0,40],[12,42,2],[12,56,23],[13,0,35],[13,59,20],[14,0,20],[14,21,2],[14,60,19],[15,0,22],[15,58,21],[16,0,23],[16,31,7],[16,57,22],[17,0,24],[17,28,10],[17,57,22],[18,0,37],[18,58,21],[19,0,38],[19,58,21],[20,0,39],[20,59,20],[21,0,39],[21,58,21],[22,0,38],[22,58,21],[23,0,38],[23,59,20],[24,0,38],[24,59,20],[25,0,38],[25,59,20],[26,0,38],[26,58,21],[27,0,38],[27,56,1],[27,58,21],[28,0,38],[28,54,25],[29,0,38],[29,54,25],[30,0,37],[30,54,25]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,46],[3,49,30],[4,0,41],[4,53,26],[5,0,40],[5,54,25],[6,0,39],[6,55,24],[7,0,36],[7,55,24],[8,0,38],[8,55,24],[9,0,40],[9,56,23],[10,0,40],[10,56,23],[11,0,40],[11,42,2],[11,56,23],[12,0,40],[12,42,3],[12,56,23],[13,0,39],[13,42,2],[13,58,21],[14,0,26],[14,60,19],[15,0,23],[15,59,20],[16,0,25],[16,33,1],[16,35,4],[16,58,21],[17,0,26],[17,31,7],[17,57,22],[18,0,38],[18,57,22],[19,0,38],[19,59,20],[20,0,40],[20,59,20],[21,0,40],[21,60,19],[22,0,39],[22,59,20],[23,0,39],[23,59,20],[24,0,39],[24,60,19],[25,0,39],[25,60,19],[26,0,39],[26,60,19],[27,0,39],[27,58,21],[28,0,38],[28,55,1],[28,57,22],[29,0,38],[29,54,25],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,49,30],[4,0,43],[4,53,26],[5,0,41],[5,54,25],[6,0,41],[6,55,24],[7,0,37],[7,55,24],[8,0,37],[8,56,23],[9,0,40],[9,56,23],[10,0,41],[10,56,23],[11,0,41],[11,56,23],[12,0,41],[12,43,3],[12,57,22],[13,0,41],[13,43,3],[13,57,22],[14,0,33],[14,60,19],[15,0,26],[15,60,19],[16,0,27],[16,36,3],[16,59,20],[17,0,28],[17,33,6],[17,58,21],[18,0,38],[18,58,21],[19,0,38],[19,59,20],[20,0,39],[20,59,20],[21,0,40],[21,60,19],[22,0,40],[22,60,19],[23,0,40],[23,60,19],[24,0,39],[24,61,18],[25,0,39],[25,61,18],[26,0,39],[26,61,18],[27,0,39],[27,61,18],[28,0,39],[28,54,1],[28,58,21],[29,0,39],[29,54,25],[30,0,38],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,48,31],[4,0,44],[4,52,27],[5,0,41],[5,54,25],[6,0,41],[6,55,24],[7,0,40],[7,56,23],[8,0,37],[8,56,23],[9,0,40],[9,56,23],[10,0,42],[10,57,22],[11,0,42],[11,57,22],[12,0,42],[12,43,3],[12,57,22],[13,0,42],[13,43,3],[13,57,22],[14,0,39],[14,60,19],[15,0,30],[15,60,19],[16,0,27],[16,58,21],[17,0,29],[17,36,3],[17,58,21],[18,0,31],[18,33,6],[18,59,20],[19,0,38],[19,59,20],[20,0,39],[20,60,19],[21,0,41],[21,61,18],[22,0,40],[22,61,18],[23,0,40],[23,61,18],[24,0,39],[24,61,18],[25,0,40],[25,62,17],[26,0,40],[26,62,17],[27,0,39],[27,62,17],[28,0,39],[28,54,2],[28,59,20],[29,0,39],[29,54,3],[29,58,21],[30,0,39],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,49,30],[4,0,43],[4,52,27],[5,0,41],[5,55,24],[6,0,41],[6,56,23],[7,0,40],[7,56,23],[8,0,37],[8,56,23],[9,0,39],[9,57,22],[10,0,42],[10,57,22],[11,0,42],[11,57,22],[12,0,42],[12,44,3],[12,57,22],[13,0,42],[13,44,3],[13,58,21],[14,0,41],[14,60,19],[15,0,38],[15,60,19],[16,0,30],[16,59,20],[17,0,28],[17,59,20],[18,0,31],[18,36,3],[18,59,20],[19,0,33],[19,34,5],[19,60,19],[20,0,39],[20,61,18],[21,0,40],[21,61,18],[22,0,40],[22,62,17],[23,0,39],[23,62,17],[24,0,39],[24,62,17],[25,0,40],[25,62,17],[26,0,40],[26,63,16],[27,0,39],[27,63,16],[28,0,39],[28,54,1],[28,58,1],[28,60,19],[29,0,39],[29,54,4],[29,60,19],[30,0,39],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,49,30],[4,0,42],[4,53,26],[5,0,41],[5,55,24],[6,0,41],[6,56,23],[7,0,40],[7,56,23],[8,0,37],[8,57,22],[9,0,39],[9,57,22],[10,0,42],[10,57,22],[11,0,42],[11,58,21],[12,0,42],[12,44,3],[12,58,21],[13,0,42],[13,44,3],[13,58,21],[14,0,42],[14,60,19],[15,0,40],[15,60,19],[16,0,36],[16,59,20],[17,0,31],[17,59,20],[18,0,30],[18,60,19],[19,0,32],[19,37,2],[19,61,18],[20,0,39],[20,61,18],[21,0,40],[21,62,17],[22,0,40],[22,62,17],[23,0,39],[23,62,17],[24,0,38],[24,62,17],[25,0,40],[25,63,16],[26,0,40],[26,63,16],[27,0,39],[27,63,16],[28,0,39],[28,54,2],[28,63,16],[29,0,39],[29,54,4],[29,59,20],[30,0,39],[30,54,25]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,48,31],[4,0,42],[4,55,24],[5,0,41],[5,56,23],[6,0,41],[6,56,23],[7,0,40],[7,56,23],[8,0,37],[8,57,22],[9,0,39],[9,57,22],[10,0,42],[10,58,21],[11,0,42],[11,58,21],[12,0,42],[12,44,3],[12,58,21],[13,0,43],[13,44,3],[13,58,21],[14,0,42],[14,59,20],[15,0,40],[15,60,19],[16,0,39],[16,59,20],[17,0,36],[17,60,19],[18,0,32],[18,60,19],[19,0,31],[19,61,18],[20,0,33],[20,38,2],[20,62,17],[21,0,41],[21,62,17],[22,0,40],[22,63,16],[23,0,39],[23,63,16],[24,0,37],[24,63,16],[25,0,40],[25,63,16],[26,0,39],[26,64,15],[27,0,39],[27,62,1],[27,64,15],[28,0,39],[28,54,2],[28,59,1],[28,62,1],[28,64,15],[29,0,39],[29,54,3],[29,59,1],[29,61,18],[30,0,39],[30,54,5],[30,60,19]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,46],[3,51,28],[4,0,41],[4,55,24],[5,0,41],[5,56,23],[6,0,41],[6,57,22],[7,0,39],[7,57,22],[8,0,37],[8,57,22],[9,0,41],[9,58,21],[10,0,42],[10,58,21],[11,0,42],[11,58,21],[12,0,42],[12,44,3],[12,59,20],[13,0,43],[13,44,3],[13,59,20],[14,0,43],[14,59,20],[15,0,41],[15,59,20],[16,0,40],[16,59,20],[17,0,39],[17,60,19],[18,0,36],[18,61,18],[19,0,33],[19,61,18],[20,0,33],[20,62,17],[21,0,32],[21,62,17],[22,0,37],[22,38,3],[22,63,16],[23,0,39],[23,63,16],[24,0,38],[24,63,16],[25,0,37],[25,38,2],[25,63,16],[26,0,40],[26,64,15],[27,0,39],[27,62,1],[27,64,15],[28,0,39],[28,59,1],[28,64,15],[29,0,39],[29,54,2],[29,59,1],[29,61,1],[29,64,15],[30,0,39],[30,54,4],[30,61,18]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,45],[3,52,27],[4,0,41],[4,55,24],[5,0,41],[5,57,22],[6,0,41],[6,57,22],[7,0,39],[7,57,22],[8,0,37],[8,58,21],[9,0,40],[9,59,20],[10,0,42],[10,59,20],[11,0,42],[11,59,20],[12,0,43],[12,46,2],[12,59,20],[13,0,43],[13,45,3],[13,59,20],[14,0,43],[14,59,20],[15,0,42],[15,59,20],[16,0,41],[16,60,19],[17,0,40],[17,60,19],[18,0,39],[18,61,18],[19,0,37],[19,62,17],[20,0,35],[20,62,17],[21,0,34],[21,63,16],[22,0,34],[22,63,16],[23,0,38],[23,63,16],[24,0,39],[24,63,16],[25,0,37],[25,63,16],[26,0,40],[26,64,15],[27,0,40],[27,64,15],[28,0,39],[28,54,2],[28,62,1],[28,64,15],[29,0,39],[29,54,1],[29,59,2],[29,64,15],[30,0,39],[30,59,1],[30,61,2],[30,64,15]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,46],[3,52,27],[4,0,41],[4,57,22],[5,0,41],[5,58,21],[6,0,41],[6,58,21],[7,0,40],[7,58,21],[8,0,37],[8,59,20],[9,0,41],[9,59,20],[10,0,42],[10,59,20],[11,0,43],[11,59,20],[12,0,43],[12,59,20],[13,0,43],[13,45,3],[13,59,20],[14,0,43],[14,60,19],[15,0,43],[15,60,19],[16,0,42],[16,60,19],[17,0,41],[17,60,19],[18,0,41],[18,61,18],[19,0,39],[19,62,17],[20,0,38],[20,62,17],[21,0,36],[21,63,16],[22,0,36],[22,63,16],[23,0,35],[23,64,15],[24,0,39],[24,64,15],[25,0,38],[25,63,16],[26,0,39],[26,63,16],[27,0,40],[27,64,15],[28,0,40],[28,64,15],[29,0,40],[29,64,15],[30,0,40],[30,62,1],[30,64,15]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,46],[3,52,27],[4,0,42],[4,57,22],[5,0,41],[5,58,21],[6,0,41],[6,59,20],[7,0,41],[7,59,20],[8,0,38],[8,59,20],[9,0,41],[9,60,19],[10,0,42],[10,60,19],[11,0,43],[11,60,19],[12,0,43],[12,60,19],[13,0,43],[13,45,2],[13,60,19],[14,0,43],[14,60,19],[15,0,43],[15,60,19],[16,0,43],[16,60,19],[17,0,43],[17,60,19],[18,0,42],[18,61,18],[19,0,42],[19,62,17],[20,0,40],[20,62,17],[21,0,39],[21,63,16],[22,0,38],[22,63,16],[23,0,37],[23,63,16],[24,0,37],[24,64,15],[25,0,37],[25,38,2],[25,63,16],[26,0,40],[26,63,16],[27,0,40],[27,63,16],[28,0,40],[28,63,16],[29,0,40],[29,63,16],[30,0,40],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,51,28],[4,0,42],[4,57,22],[5,0,41],[5,58,21],[6,0,41],[6,59,20],[7,0,41],[7,59,20],[8,0,39],[8,60,19],[9,0,37],[9,38,3],[9,60,19],[10,0,42],[10,61,18],[11,0,43],[11,60,19],[12,0,43],[12,60,19],[13,0,44],[13,60,19],[14,0,44],[14,60,19],[15,0,44],[15,60,19],[16,0,43],[16,60,19],[17,0,43],[17,60,19],[18,0,43],[18,61,18],[19,0,42],[19,61,18],[20,0,42],[20,62,17],[21,0,41],[21,62,17],[22,0,40],[22,63,16],[23,0,39],[23,63,16],[24,0,38],[24,63,16],[25,0,38],[25,63,16],[26,0,38],[26,63,16],[27,0,38],[27,39,2],[27,63,16],[28,0,40],[28,63,16],[29,0,41],[29,63,16],[30,0,41],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,48,31],[4,0,43],[4,57,22],[5,0,42],[5,59,20],[6,0,42],[6,60,19],[7,0,42],[7,60,19],[8,0,40],[8,60,19],[9,0,37],[9,40,2],[9,60,19],[10,0,42],[10,61,18],[11,0,44],[11,61,18],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,44],[14,61,18],[15,0,44],[15,60,19],[16,0,44],[16,60,19],[17,0,44],[17,61,18],[18,0,43],[18,61,18],[19,0,43],[19,61,18],[20,0,42],[20,62,17],[21,0,40],[21,62,17],[22,0,42],[22,63,16],[23,0,41],[23,63,16],[24,0,40],[24,63,16],[25,0,39],[25,63,16],[26,0,39],[26,63,16],[27,0,39],[27,63,16],[28,0,39],[28,62,17],[29,0,41],[29,62,17],[30,0,41],[30,62,17]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,48,31],[4,0,45],[4,56,23],[5,0,42],[5,58,21],[6,0,42],[6,60,19],[7,0,42],[7,60,19],[8,0,42],[8,60,19],[9,0,37],[9,60,19],[10,0,42],[10,62,17],[11,0,44],[11,61,18],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,44],[14,61,18],[15,0,44],[15,61,18],[16,0,44],[16,61,18],[17,0,44],[17,61,18],[18,0,44],[18,61,18],[19,0,43],[19,61,18],[20,0,41],[20,62,17],[21,0,40],[21,62,17],[22,0,41],[22,63,16],[23,0,41],[23,63,16],[24,0,41],[24,63,16],[25,0,40],[25,63,16],[26,0,40],[26,63,16],[27,0,39],[27,62,17],[28,0,39],[28,62,17],[29,0,40],[29,62,17],[30,0,39],[30,40,1],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,46],[4,53,26],[5,0,43],[5,58,21],[6,0,42],[6,59,20],[7,0,42],[7,60,19],[8,0,42],[8,60,19],[9,0,40],[9,60,19],[10,0,38],[10,39,3],[10,61,18],[11,0,43],[11,61,18],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,45],[14,61,18],[15,0,45],[15,61,18],[16,0,44],[16,61,18],[17,0,44],[17,60,19],[18,0,44],[18,61,18],[19,0,42],[19,61,18],[20,0,41],[20,61,18],[21,0,39],[21,62,17],[22,0,41],[22,62,17],[23,0,41],[23,63,16],[24,0,41],[24,63,16],[25,0,40],[25,63,16],[26,0,40],[26,63,16],[27,0,40],[27,62,17],[28,0,39],[28,62,17],[29,0,39],[29,61,18],[30,0,39],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,46],[4,48,31],[5,0,43],[5,57,22],[6,0,42],[6,59,20],[7,0,41],[7,60,19],[8,0,42],[8,60,19],[9,0,41],[9,60,19],[10,0,38],[10,41,1],[10,61,18],[11,0,43],[11,62,17],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,45],[14,61,18],[15,0,45],[15,61,18],[16,0,45],[16,61,18],[17,0,44],[17,60,19],[18,0,44],[18,61,18],[19,0,42],[19,61,18],[20,0,40],[20,61,18],[21,0,39],[21,62,17],[22,0,41],[22,62,17],[23,0,41],[23,62,17],[24,0,41],[24,63,16],[25,0,40],[25,63,16],[26,0,40],[26,63,16],[27,0,39],[27,62,17],[28,0,39],[28,62,17],[29,0,38],[29,61,18],[30,0,39],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,46],[4,48,31],[5,0,43],[5,57,22],[6,0,42],[6,59,20],[7,0,42],[7,60,19],[8,0,42],[8,60,19],[9,0,41],[9,60,19],[10,0,38],[10,61,18],[11,0,42],[11,62,17],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,45],[14,61,18],[15,0,45],[15,61,18],[16,0,45],[16,61,18],[17,0,44],[17,60,19],[18,0,44],[18,61,18],[19,0,42],[19,61,18],[20,0,40],[20,61,18],[21,0,39],[21,62,17],[22,0,41],[22,62,17],[23,0,41],[23,62,17],[24,0,40],[24,62,17],[25,0,40],[25,63,16],[26,0,39],[26,62,17],[27,0,39],[27,62,17],[28,0,38],[28,61,18],[29,0,38],[29,61,18],[30,0,38],[30,39,2],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,46],[4,47,1],[4,51,28],[5,0,43],[5,57,22],[6,0,42],[6,59,20],[7,0,42],[7,60,19],[8,0,42],[8,60,19],[9,0,41],[9,60,19],[10,0,38],[10,60,19],[11,0,42],[11,61,18],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,45],[14,61,18],[15,0,45],[15,61,18],[16,0,45],[16,60,19],[17,0,44],[17,60,19],[18,0,43],[18,61,18],[19,0,41],[19,61,18],[20,0,39],[20,61,18],[21,0,40],[21,62,17],[22,0,41],[22,62,17],[23,0,40],[23,62,17],[24,0,39],[24,63,16],[25,0,39],[25,63,16],[26,0,38],[26,62,17],[27,0,38],[27,62,17],[28,0,37],[28,61,18],[29,0,37],[29,61,18],[30,0,37],[30,38,3],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,45],[4,52,27],[5,0,42],[5,57,22],[6,0,42],[6,59,20],[7,0,41],[7,59,20],[8,0,42],[8,59,20],[9,0,40],[9,60,19],[10,0,38],[10,60,19],[11,0,43],[11,60,19],[12,0,44],[12,61,18],[13,0,44],[13,61,18],[14,0,45],[14,61,18],[15,0,45],[15,61,18],[16,0,45],[16,60,19],[17,0,44],[17,60,19],[18,0,43],[18,61,18],[19,0,40],[19,61,18],[20,0,39],[20,61,18],[21,0,40],[21,62,17],[22,0,40],[22,62,17],[23,0,39],[23,63,16],[24,0,39],[24,63,16],[25,0,38],[25,63,16],[26,0,38],[26,62,17],[27,0,37],[27,62,17],[28,0,36],[28,61,18],[29,0,36],[29,61,18],[30,0,36],[30,37,4],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,45],[4,52,27],[5,0,42],[5,57,22],[6,0,41],[6,58,21],[7,0,41],[7,59,20],[8,0,41],[8,59,20],[9,0,39],[9,59,20],[10,0,37],[10,40,1],[10,60,19],[11,0,43],[11,60,19],[12,0,44],[12,60,19],[13,0,44],[13,60,19],[14,0,45],[14,60,19],[15,0,45],[15,60,19],[16,0,44],[16,60,19],[17,0,44],[17,61,18],[18,0,42],[18,61,18],[19,0,40],[19,61,18],[20,0,39],[20,62,17],[21,0,40],[21,62,17],[22,0,39],[22,63,16],[23,0,38],[23,63,16],[24,0,38],[24,63,16],[25,0,37],[25,63,16],[26,0,36],[26,62,17],[27,0,36],[27,62,17],[28,0,35],[28,61,18],[29,0,35],[29,61,18],[30,0,35],[30,36,5],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,44],[4,52,27],[5,0,42],[5,56,23],[6,0,41],[6,58,21],[7,0,41],[7,59,20],[8,0,41],[8,59,20],[9,0,39],[9,59,20],[10,0,40],[10,60,19],[11,0,42],[11,60,19],[12,0,44],[12,60,19],[13,0,44],[13,60,19],[14,0,44],[14,60,19],[15,0,44],[15,60,19],[16,0,44],[16,60,19],[17,0,43],[17,61,18],[18,0,42],[18,61,18],[19,0,40],[19,61,18],[20,0,39],[20,62,17],[21,0,39],[21,62,17],[22,0,38],[22,63,16],[23,0,37],[23,63,16],[24,0,37],[24,63,16],[25,0,36],[25,63,16],[26,0,35],[26,63,16],[27,0,35],[27,62,17],[28,0,34],[28,62,17],[29,0,34],[29,36,1],[29,62,17],[30,0,34],[30,35,5],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,44],[4,51,28],[5,0,41],[5,56,23],[6,0,41],[6,58,21],[7,0,40],[7,58,21],[8,0,41],[8,58,21],[9,0,38],[9,59,20],[10,0,41],[10,60,19],[11,0,42],[11,60,19],[12,0,43],[12,60,19],[13,0,44],[13,60,19],[14,0,44],[14,60,19],[15,0,44],[15,60,19],[16,0,44],[16,60,19],[17,0,43],[17,60,19],[18,0,42],[18,61,18],[19,0,40],[19,61,18],[20,0,39],[20,62,17],[21,0,39],[21,62,17],[22,0,38],[22,63,16],[23,0,37],[23,63,16],[24,0,36],[24,63,16],[25,0,35],[25,63,16],[26,0,34],[26,63,16],[27,0,33],[27,62,17],[28,0,33],[28,62,17],[29,0,33],[29,34,2],[29,62,17],[30,0,33],[30,34,6],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,51,28],[5,0,41],[5,56,23],[6,0,40],[6,57,22],[7,0,40],[7,58,21],[8,0,40],[8,58,21],[9,0,39],[9,58,21],[10,0,36],[10,38,2],[10,59,20],[11,0,42],[11,59,20],[12,0,43],[12,60,19],[13,0,44],[13,60,19],[14,0,44],[14,60,19],[15,0,44],[15,60,19],[16,0,43],[16,60,19],[17,0,43],[17,60,19],[18,0,42],[18,61,18],[19,0,41],[19,62,17],[20,0,39],[20,62,17],[21,0,39],[21,63,16],[22,0,39],[22,63,16],[23,0,37],[23,63,16],[24,0,36],[24,64,15],[25,0,34],[25,64,15],[26,0,32],[26,63,16],[27,0,32],[27,63,16],[28,0,32],[28,62,17],[29,0,32],[29,33,3],[29,62,17],[30,0,31],[30,32,7],[30,62,17]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,51,28],[5,0,41],[5,55,24],[6,0,40],[6,57,22],[7,0,40],[7,57,22],[8,0,40],[8,57,22],[9,0,37],[9,58,21],[10,0,36],[10,37,3],[10,59,20],[11,0,43],[11,59,20],[12,0,43],[12,59,20],[13,0,43],[13,59,20],[14,0,44],[14,60,19],[15,0,44],[15,60,19],[16,0,43],[16,60,19],[17,0,43],[17,60,19],[18,0,42],[18,61,18],[19,0,41],[19,62,17],[20,0,40],[20,62,17],[21,0,39],[21,63,16],[22,0,38],[22,63,16],[23,0,36],[23,64,15],[24,0,34],[24,64,15],[25,0,32],[25,64,15],[26,0,31],[26,63,16],[27,0,31],[27,63,16],[28,0,31],[28,32,2],[28,63,16],[29,0,31],[29,32,3],[29,63,16],[30,0,30],[30,31,6],[30,38,2],[30,62,17]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,50,29],[5,0,40],[5,55,24],[6,0,40],[6,57,22],[7,0,40],[7,57,22],[8,0,40],[8,57,22],[9,0,37],[9,58,21],[10,0,36],[10,37,3],[10,59,20],[11,0,41],[11,59,20],[12,0,43],[12,59,20],[13,0,43],[13,59,20],[14,0,43],[14,59,20],[15,0,43],[15,59,20],[16,0,43],[16,60,19],[17,0,42],[17,60,19],[18,0,42],[18,61,18],[19,0,40],[19,62,17],[20,0,39],[20,62,17],[21,0,38],[21,63,16],[22,0,36],[22,63,16],[23,0,34],[23,64,15],[24,0,32],[24,64,15],[25,0,31],[25,64,15],[26,0,30],[26,64,15],[27,0,30],[27,63,16],[28,0,30],[28,31,2],[28,38,2],[28,63,16],[29,0,29],[29,30,5],[29,37,3],[29,63,16],[30,0,40],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,42],[4,49,30],[5,0,40],[5,55,24],[6,0,40],[6,56,23],[7,0,39],[7,57,22],[8,0,40],[8,57,22],[9,0,37],[9,57,22],[10,0,36],[10,37,3],[10,58,21],[11,0,41],[11,58,21],[12,0,42],[12,59,20],[13,0,43],[13,59,20],[14,0,43],[14,59,20],[15,0,43],[15,59,20],[16,0,43],[16,59,20],[17,0,42],[17,60,19],[18,0,41],[18,61,18],[19,0,39],[19,61,18],[20,0,38],[20,62,17],[21,0,36],[21,63,16],[22,0,34],[22,63,16],[23,0,33],[23,64,15],[24,0,30],[24,39,2],[24,64,15],[25,0,29],[25,39,2],[25,64,15],[26,0,29],[26,38,2],[26,64,15],[27,0,29],[27,30,2],[27,37,3],[27,64,15],[28,0,28],[28,29,4],[28,37,3],[28,64,15],[29,0,27],[29,28,6],[29,36,4],[29,63,16],[30,0,40],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,45,34],[5,0,41],[5,54,25],[6,0,40],[6,56,23],[7,0,39],[7,57,22],[8,0,39],[8,57,22],[9,0,37],[9,57,22],[10,0,36],[10,37,3],[10,58,21],[11,0,41],[11,58,21],[12,0,42],[12,58,21],[13,0,43],[13,59,20],[14,0,43],[14,59,20],[15,0,43],[15,59,20],[16,0,43],[16,59,20],[17,0,42],[17,60,19],[18,0,40],[18,61,18],[19,0,38],[19,61,18],[20,0,37],[20,62,17],[21,0,35],[21,63,16],[22,0,33],[22,63,16],[23,0,30],[23,64,15],[24,0,28],[24,39,2],[24,64,15],[25,0,27],[25,38,3],[25,64,15],[26,0,27],[26,37,3],[26,64,15],[27,0,27],[27,28,3],[27,36,4],[27,64,15],[28,0,26],[28,27,5],[28,35,5],[28,64,15],[29,0,33],[29,34,6],[29,64,15],[30,0,40],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,44,35],[5,0,43],[5,53,26],[6,0,40],[6,56,23],[7,0,40],[7,57,22],[8,0,40],[8,57,22],[9,0,39],[9,57,22],[10,0,37],[10,38,1],[10,58,21],[11,0,40],[11,58,21],[12,0,42],[12,58,21],[13,0,43],[13,58,21],[14,0,43],[14,59,20],[15,0,43],[15,59,20],[16,0,43],[16,59,20],[17,0,42],[17,59,20],[18,0,40],[18,60,19],[19,0,38],[19,61,18],[20,0,35],[20,62,17],[21,0,33],[21,62,17],[22,0,31],[22,63,16],[23,0,28],[23,39,3],[23,64,15],[24,0,26],[24,37,5],[24,64,15],[25,0,26],[25,36,5],[25,64,15],[26,0,26],[26,27,3],[26,35,6],[26,64,15],[27,0,25],[27,26,4],[27,34,7],[27,64,15],[28,0,24],[28,25,6],[28,33,8],[28,64,15],[29,0,41],[29,64,15],[30,0,40],[30,58,2],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,43],[5,53,26],[6,0,41],[6,56,23],[7,0,40],[7,57,22],[8,0,40],[8,57,22],[9,0,40],[9,57,22],[10,0,36],[10,38,1],[10,58,21],[11,0,40],[11,58,21],[12,0,42],[12,58,21],[13,0,43],[13,58,21],[14,0,43],[14,58,21],[15,0,43],[15,59,20],[16,0,43],[16,59,20],[17,0,41],[17,59,20],[18,0,39],[18,59,20],[19,0,37],[19,60,19],[20,0,33],[20,61,18],[21,0,31],[21,62,17],[22,0,28],[22,63,16],[23,0,26],[23,37,5],[23,63,16],[24,0,25],[24,36,6],[24,64,15],[25,0,25],[25,27,1],[25,35,7],[25,64,15],[26,0,24],[26,26,3],[26,34,7],[26,64,15],[27,0,23],[27,24,5],[27,32,9],[27,64,15],[28,0,30],[28,31,10],[28,64,15],[29,0,41],[29,64,15],[30,0,41],[30,58,2],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,44],[4,45,34],[5,0,44],[5,53,26],[6,0,41],[6,56,23],[7,0,40],[7,57,22],[8,0,40],[8,58,21],[9,0,40],[9,57,22],[10,0,36],[10,39,1],[10,58,21],[11,0,41],[11,58,21],[12,0,43],[12,58,21],[13,0,43],[13,58,21],[14,0,43],[14,58,21],[15,0,43],[15,58,21],[16,0,42],[16,58,21],[17,0,41],[17,59,20],[18,0,38],[18,59,20],[19,0,35],[19,60,19],[20,0,32],[20,61,18],[21,0,29],[21,61,18],[22,0,26],[22,38,2],[22,62,17],[23,0,24],[23,36,6],[23,63,16],[24,0,24],[24,26,1],[24,35,7],[24,63,16],[25,0,24],[25,25,3],[25,33,9],[25,63,16],[26,0,22],[26,24,4],[26,32,9],[26,63,16],[27,0,29],[27,30,11],[27,63,16],[28,0,41],[28,63,16],[29,0,41],[29,63,16],[30,0,41],[30,59,1],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,43],[4,45,34],[5,0,43],[5,54,25],[6,0,41],[6,57,22],[7,0,40],[7,58,21],[8,0,41],[8,58,21],[9,0,40],[9,58,21],[10,0,37],[10,39,1],[10,58,21],[11,0,41],[11,58,21],[12,0,43],[12,58,21],[13,0,43],[13,58,21],[14,0,43],[14,58,21],[15,0,43],[15,58,21],[16,0,42],[16,58,21],[17,0,40],[17,59,20],[18,0,37],[18,59,20],[19,0,32],[19,60,19],[20,0,29],[20,60,19],[21,0,26],[21,61,18],[22,0,24],[22,36,4],[22,62,17],[23,0,24],[23,34,7],[23,62,17],[24,0,23],[24,24,3],[24,33,8],[24,63,16],[25,0,22],[25,23,4],[25,31,11],[25,63,16],[26,0,27],[26,30,10],[26,41,1],[26,63,16],[27,0,40],[27,63,16],[28,0,41],[28,63,16],[29,0,40],[29,62,17],[30,0,41],[30,57,2],[30,62,17]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,44],[4,50,29],[5,0,42],[5,55,24],[6,0,41],[6,57,22],[7,0,41],[7,58,21],[8,0,41],[8,58,21],[9,0,39],[9,58,21],[10,0,41],[10,59,20],[11,0,43],[11,58,21],[12,0,43],[12,58,21],[13,0,44],[13,58,21],[14,0,43],[14,58,21],[15,0,43],[15,58,21],[16,0,41],[16,58,21],[17,0,38],[17,59,20],[18,0,34],[18,59,20],[19,0,30],[19,59,20],[20,0,25],[20,60,19],[21,0,23],[21,37,2],[21,61,18],[22,0,23],[22,25,1],[22,34,6],[22,61,18],[23,0,22],[23,24,2],[23,33,8],[23,62,17],[24,0,21],[24,23,3],[24,31,9],[24,62,17],[25,0,21],[25,22,5],[25,29,12],[25,62,17],[26,0,27],[26,28,13],[26,62,17],[27,0,41],[27,62,17],[28,0,40],[28,62,17],[29,0,41],[29,61,18],[30,0,41],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,44],[3,45,34],[4,0,44],[4,53,26],[5,0,42],[5,56,23],[6,0,41],[6,58,21],[7,0,41],[7,59,20],[8,0,41],[8,58,21],[9,0,38],[9,58,21],[10,0,38],[10,39,2],[10,60,19],[11,0,44],[11,58,21],[12,0,44],[12,58,21],[13,0,44],[13,58,21],[14,0,44],[14,58,21],[15,0,43],[15,58,21],[16,0,41],[16,58,21],[17,0,36],[17,60,19],[18,0,30],[18,59,20],[19,0,25],[19,59,20],[20,0,23],[20,60,19],[21,0,22],[21,35,4],[21,60,19],[22,0,22],[22,23,2],[22,33,7],[22,61,18],[23,0,21],[23,22,4],[23,31,9],[23,42,1],[23,61,18],[24,0,26],[24,29,10],[24,61,18],[25,0,26],[25,27,13],[25,61,18],[26,0,37],[26,38,3],[26,61,18],[27,0,42],[27,61,18],[28,0,42],[28,61,18],[29,0,41],[29,60,19],[30,0,41],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,44],[3,45,34],[4,0,43],[4,54,25],[5,0,42],[5,57,22],[6,0,41],[6,59,20],[7,0,41],[7,59,20],[8,0,41],[8,59,20],[9,0,38],[9,59,20],[10,0,42],[10,59,1],[10,61,18],[11,0,44],[11,59,20],[12,0,44],[12,59,20],[13,0,44],[13,58,21],[14,0,44],[14,58,21],[15,0,43],[15,58,21],[16,0,38],[16,58,21],[17,0,32],[17,60,19],[18,0,26],[18,59,20],[19,0,23],[19,59,20],[20,0,22],[20,36,3],[20,59,20],[21,0,21],[21,23,2],[21,32,8],[21,60,19],[22,0,20],[22,22,3],[22,30,10],[22,60,19],[23,0,20],[23,21,4],[23,28,12],[23,41,2],[23,60,19],[24,0,25],[24,26,12],[24,41,2],[24,61,18],[25,0,37],[25,38,2],[25,60,19],[26,0,42],[26,60,19],[27,0,42],[27,60,19],[28,0,42],[28,60,19],[29,0,41],[29,59,20],[30,0,41],[30,59,20]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,46,33],[4,0,44],[4,55,24],[5,0,42],[5,58,21],[6,0,42],[6,59,20],[7,0,42],[7,60,19],[8,0,40],[8,59,20],[9,0,38],[9,59,20],[10,0,42],[10,59,20],[11,0,44],[11,59,20],[12,0,45],[12,59,20],[13,0,45],[13,58,21],[14,0,45],[14,58,21],[15,0,42],[15,58,21],[16,0,34],[16,58,21],[17,0,27],[17,60,19],[18,0,23],[18,59,20],[19,0,22],[19,38,3],[19,59,20],[20,0,21],[20,23,2],[20,33,7],[20,59,20],[21,0,20],[21,22,3],[21,30,10],[21,59,20],[22,0,20],[22,21,4],[22,28,12],[22,60,19],[23,0,25],[23,26,14],[23,41,2],[23,60,19],[24,0,38],[24,41,2],[24,60,19],[25,0,36],[25,37,4],[25,60,19],[26,0,42],[26,59,20],[27,0,42],[27,59,20],[28,0,42],[28,59,20],[29,0,42],[29,58,21],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,45],[2,46,33],[3,0,45],[3,47,32],[4,0,44],[4,56,23],[5,0,43],[5,58,21],[6,0,42],[6,60,19],[7,0,41],[7,60,19],[8,0,38],[8,60,19],[9,0,39],[9,59,20],[10,0,45],[10,60,19],[11,0,45],[11,59,20],[12,0,45],[12,59,20],[13,0,45],[13,59,20],[14,0,44],[14,58,21],[15,0,33],[15,34,1],[15,36,2],[15,58,21],[16,0,29],[16,58,21],[17,0,23],[17,58,1],[17,60,19],[18,0,21],[18,39,3],[18,60,19],[19,0,21],[19,23,1],[19,33,9],[19,59,20],[20,0,20],[20,21,3],[20,31,9],[20,59,20],[21,0,19],[21,20,4],[21,28,12],[21,59,20],[22,0,24],[22,26,14],[22,60,19],[23,0,39],[23,41,2],[23,60,19],[24,0,36],[24,38,1],[24,41,2],[24,60,19],[25,0,42],[25,59,20],[26,0,42],[26,59,20],[27,0,42],[27,58,21],[28,0,42],[28,58,21],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,45],[3,47,32],[4,0,44],[4,56,23],[5,0,43],[5,58,21],[6,0,42],[6,60,19],[7,0,43],[7,61,18],[8,0,38],[8,60,19],[9,0,41],[9,60,19],[10,0,44],[10,62,17],[11,0,45],[11,59,20],[12,0,45],[12,59,20],[13,0,45],[13,59,20],[14,0,44],[14,59,20],[15,0,28],[15,30,1],[15,58,21],[16,0,24],[16,58,21],[17,0,21],[17,58,21],[18,0,20],[18,23,1],[18,37,6],[18,60,19],[19,0,19],[19,21,3],[19,31,11],[19,59,20],[20,0,18],[20,20,4],[20,29,12],[20,59,20],[21,0,24],[21,26,15],[21,59,20],[22,0,40],[22,60,19],[23,0,39],[23,42,2],[23,60,19],[24,0,39],[24,42,2],[24,59,20],[25,0,42],[25,59,20],[26,0,42],[26,58,21],[27,0,42],[27,58,21],[28,0,42],[28,57,22],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,46],[2,47,32],[3,0,46],[3,48,31],[4,0,45],[4,56,23],[5,0,43],[5,58,21],[6,0,42],[6,60,19],[7,0,43],[7,61,18],[8,0,39],[8,61,18],[9,0,42],[9,60,19],[10,0,44],[10,61,18],[11,0,45],[11,60,19],[12,0,45],[12,60,19],[13,0,45],[13,59,20],[14,0,41],[14,43,1],[14,59,20],[15,0,25],[15,59,20],[16,0,22],[16,59,20],[17,0,20],[17,23,2],[17,58,21],[18,0,18],[18,21,4],[18,33,11],[18,61,18],[19,0,18],[19,19,6],[19,30,13],[19,59,20],[20,0,25],[20,27,15],[20,59,20],[21,0,41],[21,59,20],[22,0,40],[22,60,19],[23,0,40],[23,60,19],[24,0,40],[24,59,20],[25,0,42],[25,59,20],[26,0,43],[26,58,21],[27,0,42],[27,57,22],[28,0,42],[28,57,22],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,46],[3,48,31],[4,0,45],[4,56,23],[5,0,44],[5,59,20],[6,0,43],[6,60,19],[7,0,43],[7,61,18],[8,0,39],[8,61,18],[9,0,42],[9,60,19],[10,0,44],[10,61,18],[11,0,45],[11,60,19],[12,0,45],[12,60,19],[13,0,45],[13,60,19],[14,0,28],[14,37,1],[14,42,2],[14,60,19],[15,0,22],[15,59,20],[16,0,20],[16,24,1],[16,59,20],[17,0,18],[17,21,4],[17,59,20],[18,0,17],[18,18,7],[18,32,11],[18,60,19],[19,0,25],[19,28,15],[19,60,19],[20,0,25],[20,26,16],[20,59,20],[21,0,41],[21,59,20],[22,0,41],[22,60,19],[23,0,42],[23,60,19],[24,0,40],[24,59,20],[25,0,43],[25,59,20],[26,0,43],[26,58,21],[27,0,43],[27,57,22],[28,0,43],[28,57,22],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,48,31],[4,0,46],[4,56,23],[5,0,44],[5,59,20],[6,0,43],[6,60,19],[7,0,44],[7,62,17],[8,0,39],[8,62,17],[9,0,42],[9,61,18],[10,0,44],[10,61,18],[11,0,45],[11,63,16],[12,0,45],[12,61,18],[13,0,45],[13,60,19],[14,0,23],[14,42,3],[14,60,19],[15,0,21],[15,60,19],[16,0,18],[16,21,4],[16,60,19],[17,0,25],[17,59,20],[18,0,25],[18,31,12],[18,59,20],[19,0,25],[19,27,16],[19,60,19],[20,0,42],[20,60,19],[21,0,41],[21,60,19],[22,0,40],[22,60,19],[23,0,43],[23,60,19],[24,0,42],[24,59,20],[25,0,39],[25,40,3],[25,59,20],[26,0,43],[26,58,21],[27,0,43],[27,58,21],[28,0,42],[28,57,22],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,48,31],[4,0,46],[4,55,24],[5,0,45],[5,58,21],[6,0,44],[6,60,19],[7,0,45],[7,62,17],[8,0,40],[8,62,17],[9,0,43],[9,62,17],[10,0,44],[10,61,18],[11,0,46],[11,62,17],[12,0,45],[12,61,18],[13,0,26],[13,32,13],[13,61,18],[14,0,21],[14,43,2],[14,61,18],[15,0,17],[15,22,4],[15,60,19],[16,0,26],[16,60,19],[17,0,26],[17,32,1],[17,60,19],[18,0,26],[18,29,14],[18,60,19],[19,0,26],[19,27,16],[19,61,18],[20,0,42],[20,60,19],[21,0,41],[21,60,19],[22,0,40],[22,60,19],[23,0,42],[23,60,19],[24,0,43],[24,60,19],[25,0,43],[25,59,20],[26,0,40],[26,41,1],[26,59,20],[27,0,42],[27,58,21],[28,0,42],[28,58,21],[29,0,42],[29,57,22],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,48],[3,49,30],[4,0,47],[4,54,25],[5,0,46],[5,58,21],[6,0,44],[6,60,19],[7,0,44],[7,62,17],[8,0,41],[8,63,16],[9,0,43],[9,62,17],[10,0,44],[10,62,17],[11,0,46],[11,62,17],[12,0,46],[12,63,16],[13,0,22],[13,37,9],[13,61,18],[14,0,17],[14,23,3],[14,43,1],[14,61,18],[15,0,26],[15,61,18],[16,0,26],[16,61,18],[17,0,26],[17,30,8],[17,40,2],[17,60,19],[18,0,27],[18,28,15],[18,60,19],[19,0,43],[19,61,18],[20,0,41],[20,61,18],[21,0,41],[21,61,18],[22,0,40],[22,61,18],[23,0,40],[23,61,18],[24,0,43],[24,61,18],[25,0,43],[25,60,19],[26,0,42],[26,60,19],[27,0,40],[27,42,1],[27,59,20],[28,0,41],[28,59,20],[29,0,42],[29,58,21],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,48],[3,49,30],[4,0,47],[4,55,24],[5,0,46],[5,59,20],[6,0,45],[6,61,18],[7,0,45],[7,62,17],[8,0,41],[8,63,16],[9,0,44],[9,63,16],[10,0,44],[10,62,17],[11,0,46],[11,62,17],[12,0,17],[12,34,12],[12,63,16],[13,0,26],[13,39,7],[13,62,17],[14,0,27],[14,62,17],[15,0,27],[15,61,18],[16,0,27],[16,32,3],[16,61,18],[17,0,27],[17,29,14],[17,61,18],[18,0,43],[18,61,18],[19,0,42],[19,61,18],[20,0,41],[20,61,18],[21,0,40],[21,61,18],[22,0,40],[22,62,17],[23,0,41],[23,62,17],[24,0,42],[24,61,18],[25,0,42],[25,61,18],[26,0,41],[26,42,1],[26,61,18],[27,0,40],[27,60,19],[28,0,40],[28,41,1],[28,60,19],[29,0,42],[29,59,20],[30,0,42],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,49],[3,50,29],[4,0,48],[4,56,23],[5,0,46],[5,60,19],[6,0,45],[6,61,18],[7,0,45],[7,63,16],[8,0,41],[8,64,15],[9,0,44],[9,63,16],[10,0,46],[10,62,17],[11,0,19],[11,32,14],[11,62,17],[12,0,26],[12,36,10],[12,63,16],[13,0,27],[13,42,4],[13,62,17],[14,0,27],[14,62,17],[15,0,27],[15,62,17],[16,0,27],[16,30,6],[16,37,1],[16,62,17],[17,0,43],[17,61,18],[18,0,43],[18,61,18],[19,0,42],[19,62,17],[20,0,41],[20,62,17],[21,0,40],[21,62,17],[22,0,40],[22,62,17],[23,0,41],[23,62,17],[24,0,42],[24,62,17],[25,0,42],[25,62,17],[26,0,40],[26,41,1],[26,62,17],[27,0,39],[27,61,18],[28,0,39],[28,40,2],[28,61,18],[29,0,42],[29,60,19],[30,0,42],[30,59,20]],[[0,0,79],[1,0,79],[2,0,79],[3,0,49],[3,51,28],[4,0,48],[4,57,22],[5,0,46],[5,60,19],[6,0,45],[6,62,17],[7,0,45],[7,63,16],[8,0,41],[8,64,15],[9,0,20],[9,22,23],[9,63,16],[10,0,22],[10,29,17],[10,63,16],[11,0,27],[11,35,11],[11,63,16],[12,0,27],[12,39,7],[12,63,16],[13,0,27],[13,44,2],[13,63,16],[14,0,27],[14,62,17],[15,0,27],[15,30,5],[15,62,17],[16,0,27],[16,28,13],[16,62,17],[17,0,43],[17,62,17],[18,0,43],[18,62,17],[19,0,42],[19,62,17],[20,0,41],[20,63,16],[21,0,40],[21,63,16],[22,0,40],[22,63,16],[23,0,42],[23,63,16],[24,0,42],[24,63,16],[25,0,41],[25,63,16],[26,0,39],[26,63,16],[27,0,38],[27,39,3],[27,62,17],[28,0,38],[28,39,2],[28,62,17],[29,0,41],[29,62,17],[30,0,41],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,50],[3,52,27],[4,0,48],[4,58,21],[5,0,47],[5,61,18],[6,0,46],[6,63,16],[7,0,22],[7,23,20],[7,64,15],[8,0,22],[8,24,20],[8,64,15],[9,0,23],[9,29,16],[9,64,15],[10,0,27],[10,35,12],[10,63,16],[11,0,28],[11,38,8],[11,63,16],[12,0,28],[12,41,5],[12,63,16],[13,0,27],[13,63,16],[14,0,27],[14,63,16],[15,0,27],[15,28,10],[15,63,16],[16,0,44],[16,63,16],[17,0,44],[17,62,17],[18,0,42],[18,63,16],[19,0,41],[19,63,16],[20,0,40],[20,63,16],[21,0,40],[21,64,15],[22,0,40],[22,64,15],[23,0,42],[23,64,15],[24,0,41],[24,64,15],[25,0,40],[25,64,15],[26,0,39],[26,64,15],[27,0,37],[27,38,3],[27,64,15],[28,0,41],[28,63,16],[29,0,41],[29,63,16],[30,0,41],[30,59,1],[30,62,17]],[[0,0,79],[1,0,79],[2,0,51],[2,52,27],[3,0,50],[3,56,23],[4,0,48],[4,59,20],[5,0,46],[5,62,17],[6,0,23],[6,25,22],[6,63,16],[7,0,23],[7,26,16],[7,64,15],[8,0,25],[8,29,15],[8,65,14],[9,0,27],[9,34,11],[9,64,15],[10,0,28],[10,37,10],[10,64,15],[11,0,28],[11,40,7],[11,64,15],[12,0,28],[12,44,3],[12,64,15],[13,0,27],[13,63,16],[14,0,27],[14,29,7],[14,63,16],[15,0,40],[15,63,16],[16,0,44],[16,63,16],[17,0,44],[17,63,16],[18,0,42],[18,63,16],[19,0,41],[19,63,16],[20,0,40],[20,64,15],[21,0,40],[21,64,15],[22,0,41],[22,65,14],[23,0,41],[23,65,14],[24,0,41],[24,65,14],[25,0,39],[25,65,14],[26,0,37],[26,38,3],[26,65,14],[27,0,37],[27,38,3],[27,65,14],[28,0,41],[28,65,14],[29,0,41],[29,65,14],[30,0,41],[30,64,15]],[[0,0,79],[1,0,79],[2,0,52],[2,53,26],[3,0,50],[3,57,22],[4,0,48],[4,60,19],[5,0,25],[5,26,21],[5,63,16],[6,0,24],[6,26,20],[6,64,15],[7,0,25],[7,30,12],[7,65,14],[8,0,27],[8,31,14],[8,65,14],[9,0,29],[9,36,10],[9,65,14],[10,0,28],[10,38,9],[10,64,15],[11,0,28],[11,41,6],[11,64,15],[12,0,28],[12,45,2],[12,64,15],[13,0,28],[13,31,3],[13,64,15],[14,0,38],[14,63,16],[15,0,42],[15,63,16],[16,0,44],[16,63,16],[17,0,43],[17,63,16],[18,0,42],[18,63,16],[19,0,41],[19,64,15],[20,0,40],[20,64,15],[21,0,40],[21,65,14],[22,0,41],[22,65,14],[23,0,41],[23,66,13],[24,0,40],[24,66,13],[25,0,39],[25,66,13],[26,0,37],[26,38,3],[26,66,13],[27,0,41],[27,66,13],[28,0,41],[28,66,13],[29,0,41],[29,66,13],[30,0,41],[30,65,14]],[[0,0,79],[1,0,79],[2,0,52],[2,53,26],[3,0,50],[3,58,21],[4,0,26],[4,27,21],[4,61,18],[5,0,26],[5,27,20],[5,63,16],[6,0,26],[6,28,15],[6,64,15],[7,0,27],[7,31,13],[7,65,14],[8,0,29],[8,33,13],[8,66,13],[9,0,29],[9,37,11],[9,65,14],[10,0,28],[10,39,8],[10,64,15],[11,0,28],[11,41,6],[11,64,15],[12,0,28],[12,45,2],[12,64,15],[13,0,28],[13,30,5],[13,64,15],[14,0,39],[14,64,15],[15,0,43],[15,64,15],[16,0,44],[16,64,15],[17,0,43],[17,64,15],[18,0,42],[18,64,15],[19,0,41],[19,64,15],[20,0,40],[20,65,14],[21,0,41],[21,65,14],[22,0,41],[22,66,13],[23,0,41],[23,66,13],[24,0,39],[24,67,12],[25,0,37],[25,38,2],[25,67,12],[26,0,41],[26,67,12],[27,0,41],[27,67,12],[28,0,41],[28,67,12],[29,0,41],[29,67,12],[30,0,41],[30,67,12]],[[0,0,79],[1,0,79],[2,0,53],[2,55,24],[3,0,51],[3,59,20],[4,0,27],[4,28,20],[4,62,17],[5,0,26],[5,28,20],[5,64,15],[6,0,27],[6,31,12],[6,65,14],[7,0,28],[7,32,13],[7,66,13],[8,0,29],[8,35,11],[8,66,13],[9,0,29],[9,38,10],[9,65,14],[10,0,29],[10,40,7],[10,65,14],[11,0,29],[11,43,4],[11,65,14],[12,0,28],[12,65,14],[13,0,36],[13,64,15],[14,0,40],[14,64,15],[15,0,44],[15,64,15],[16,0,44],[16,64,15],[17,0,43],[17,64,15],[18,0,42],[18,64,15],[19,0,41],[19,65,14],[20,0,40],[20,65,14],[21,0,41],[21,66,13],[22,0,41],[22,66,13],[23,0,41],[23,67,12],[24,0,39],[24,67,12],[25,0,41],[25,68,11],[26,0,41],[26,55,2],[26,68,11],[27,0,41],[27,55,2],[27,68,11],[28,0,41],[28,68,11],[29,0,41],[29,68,11],[30,0,41],[30,68,11]],[[0,0,79],[1,0,79],[2,0,53],[2,56,23],[3,0,28],[3,30,21],[3,60,19],[4,0,27],[4,29,19],[4,63,16],[5,0,27],[5,29,20],[5,64,15],[6,0,28],[6,32,12],[6,66,13],[7,0,30],[7,32,14],[7,66,13],[8,0,30],[8,37,10],[8,67,12],[9,0,30],[9,39,9],[9,66,13],[10,0,30],[10,42,5],[10,65,14],[11,0,29],[11,45,2],[11,65,14],[12,0,29],[12,33,3],[12,47,1],[12,65,14],[13,0,38],[13,65,14],[14,0,41],[14,64,15],[15,0,44],[15,64,15],[16,0,44],[16,64,15],[17,0,43],[17,64,15],[18,0,42],[18,65,14],[19,0,41],[19,65,14],[20,0,40],[20,66,13],[21,0,41],[21,66,13],[22,0,41],[22,67,12],[23,0,40],[23,67,12],[24,0,39],[24,68,11],[25,0,41],[25,68,11],[26,0,41],[26,55,2],[26,69,10],[27,0,41],[27,55,2],[27,69,10],[28,0,41],[28,56,2],[28,69,10],[29,0,41],[29,56,1],[29,69,10],[30,0,41],[30,69,10]],[[0,0,79],[1,0,79],[2,0,54],[2,57,22],[3,0,29],[3,30,22],[3,62,17],[4,0,28],[4,30,19],[4,63,16],[5,0,28],[5,32,12],[5,46,3],[5,65,14],[6,0,29],[6,33,12],[6,66,13],[7,0,31],[7,34,12],[7,67,12],[8,0,31],[8,38,9],[8,67,12],[9,0,31],[9,40,8],[9,67,12],[10,0,30],[10,42,5],[10,66,13],[11,0,30],[11,45,3],[11,65,14],[12,0,31],[12,33,3],[12,65,14],[13,0,39],[13,65,14],[14,0,42],[14,65,14],[15,0,45],[15,64,15],[16,0,44],[16,64,15],[17,0,43],[17,65,14],[18,0,41],[18,65,14],[19,0,41],[19,65,14],[20,0,40],[20,66,13],[21,0,41],[21,66,13],[22,0,41],[22,67,12],[23,0,40],[23,68,11],[24,0,41],[24,68,11],[25,0,41],[25,69,10],[26,0,41],[26,55,2],[26,69,10],[27,0,41],[27,55,3],[27,70,9],[28,0,41],[28,56,2],[28,70,9],[29,0,40],[29,56,1],[29,69,10],[30,0,41],[30,57,1],[30,70,9]],[[0,0,79],[1,0,79],[2,0,32],[2,33,23],[2,58,21],[3,0,30],[3,32,21],[3,61,18],[4,0,29],[4,32,18],[4,63,16],[5,0,30],[5,34,11],[5,47,3],[5,65,14],[6,0,31],[6,34,12],[6,67,12],[7,0,32],[7,34,13],[7,67,12],[8,0,32],[8,38,10],[8,68,11],[9,0,32],[9,40,8],[9,68,11],[10,0,32],[10,41,7],[10,67,12],[11,0,31],[11,44,4],[11,66,13],[12,0,31],[12,34,2],[12,46,1],[12,66,13],[13,0,31],[13,32,5],[13,65,14],[14,0,41],[14,65,14],[15,0,45],[15,65,14],[16,0,44],[16,65,14],[17,0,43],[17,65,14],[18,0,42],[18,65,14],[19,0,41],[19,65,14],[20,0,40],[20,66,13],[21,0,41],[21,67,12],[22,0,41],[22,67,12],[23,0,41],[23,68,11],[24,0,41],[24,68,11],[25,0,41],[25,69,10],[26,0,41],[26,55,2],[26,69,10],[27,0,41],[27,55,3],[27,70,9],[28,0,41],[28,56,2],[28,70,9],[29,0,41],[29,70,9],[30,0,41],[30,57,2],[30,70,9]],[[0,0,79],[1,0,79],[2,0,58],[2,59,20],[3,0,32],[3,34,22],[3,59,20],[4,0,31],[4,33,19],[4,63,16],[5,0,31],[5,35,11],[5,47,4],[5,65,14],[6,0,32],[6,35,11],[6,67,12],[7,0,33],[7,35,12],[7,68,11],[8,0,33],[8,38,10],[8,68,11],[9,0,34],[9,40,9],[9,69,10],[10,0,33],[10,42,6],[10,68,11],[11,0,33],[11,43,5],[11,67,12],[12,0,32],[12,35,1],[12,46,2],[12,66,13],[13,0,32],[13,34,3],[13,66,13],[14,0,40],[14,66,13],[15,0,43],[15,66,13],[16,0,44],[16,65,14],[17,0,43],[17,65,14],[18,0,42],[18,65,14],[19,0,40],[19,65,14],[20,0,40],[20,66,13],[21,0,40],[21,66,13],[22,0,41],[22,67,12],[23,0,40],[23,68,11],[24,0,39],[24,68,11],[25,0,41],[25,69,10],[26,0,41],[26,69,10],[27,0,41],[27,56,2],[27,70,9],[28,0,41],[28,56,2],[28,70,9],[29,0,41],[29,71,8],[30,0,41],[30,57,2],[30,70,9]],[[0,0,79],[1,0,79],[2,0,60],[2,61,18],[3,0,58],[3,60,19],[4,0,32],[4,34,21],[4,63,16],[5,0,31],[5,34,18],[5,65,14],[6,0,31],[6,35,12],[6,67,12],[7,0,31],[7,35,13],[7,68,11],[8,0,33],[8,35,14],[8,69,10],[9,0,33],[9,37,13],[9,69,10],[10,0,34],[10,40,10],[10,69,10],[11,0,33],[11,41,8],[11,68,11],[12,0,33],[12,42,7],[12,67,12],[13,0,32],[13,46,2],[13,67,12],[14,0,32],[14,33,3],[14,67,12],[15,0,39],[15,66,13],[16,0,44],[16,66,13],[17,0,44],[17,66,13],[18,0,42],[18,66,13],[19,0,41],[19,66,13],[20,0,40],[20,66,13],[21,0,40],[21,67,12],[22,0,40],[22,67,12],[23,0,41],[23,68,11],[24,0,41],[24,68,11],[25,0,40],[25,69,10],[26,0,40],[26,70,9],[27,0,41],[27,56,2],[27,70,9],[28,0,41],[28,56,2],[28,71,8],[29,0,41],[29,71,8],[30,0,42],[30,71,8]],[[0,0,79],[1,0,79],[2,0,79],[3,0,59],[3,61,18],[4,0,55],[4,63,16],[5,0,52],[5,66,13],[6,0,33],[6,35,12],[6,68,11],[7,0,31],[7,35,12],[7,69,10],[8,0,31],[8,36,12],[8,69,10],[9,0,31],[9,36,15],[9,70,9],[10,0,32],[10,36,14],[10,70,9],[11,0,32],[11,36,13],[11,69,10],[12,0,34],[12,39,10],[12,68,11],[13,0,34],[13,40,9],[13,68,11],[14,0,32],[14,41,7],[14,68,11],[15,0,32],[15,68,11],[16,0,31],[16,32,3],[16,67,12],[17,0,37],[17,67,12],[18,0,42],[18,67,12],[19,0,42],[19,67,12],[20,0,40],[20,67,12],[21,0,40],[21,68,11],[22,0,40],[22,68,11],[23,0,40],[23,69,10],[24,0,40],[24,69,10],[25,0,40],[25,70,9],[26,0,37],[26,71,8],[27,0,41],[27,71,8],[28,0,41],[28,71,8],[29,0,41],[29,57,2],[29,72,7],[30,0,42],[30,57,1],[30,72,7]],[[0,0,79],[1,0,79],[2,0,59],[2,61,18],[3,0,59],[3,61,18],[4,0,54],[4,64,15],[5,0,52],[5,67,12],[6,0,46],[6,68,11],[7,0,46],[7,69,10],[8,0,34],[8,36,10],[8,70,9],[9,0,31],[9,37,12],[9,70,9],[10,0,32],[10,37,13],[10,70,9],[11,0,32],[11,37,12],[11,69,10],[12,0,32],[12,36,13],[12,69,10],[13,0,33],[13,37,13],[13,69,10],[14,0,34],[14,40,10],[14,69,10],[15,0,34],[15,41,5],[15,69,10],[16,0,33],[16,69,10],[17,0,32],[17,69,10],[18,0,31],[18,32,3],[18,69,10],[19,0,38],[19,40,1],[19,69,10],[20,0,41],[20,69,10],[21,0,40],[21,70,9],[22,0,40],[22,70,9],[23,0,40],[23,71,8],[24,0,40],[24,71,8],[25,0,39],[25,72,7],[26,0,37],[26,39,1],[26,72,7],[27,0,36],[27,38,1],[27,73,6],[28,0,40],[28,73,6],[29,0,41],[29,73,6],[30,0,41],[30,74,5]],[[0,0,79],[1,0,79],[2,0,59],[2,61,18],[3,0,55],[3,62,17],[4,0,52],[4,66,13],[5,0,51],[5,68,11],[6,0,45],[6,69,10],[7,0,44],[7,70,9],[8,0,44],[8,70,9],[9,0,47],[9,70,9],[10,0,34],[10,35,1],[10,38,10],[10,70,9],[11,0,33],[11,38,11],[11,70,9],[12,0,33],[12,38,11],[12,70,9],[13,0,33],[13,38,12],[13,71,8],[14,0,33],[14,37,14],[14,71,8],[15,0,34],[15,39,8],[15,71,8],[16,0,35],[16,41,6],[16,71,8],[17,0,35],[17,42,2],[17,71,8],[18,0,33],[18,71,8],[19,0,32],[19,72,7],[20,0,32],[20,33,3],[20,72,7],[21,0,38],[21,72,7],[22,0,41],[22,72,7],[23,0,41],[23,73,6],[24,0,40],[24,73,6],[25,0,40],[25,74,5],[26,0,39],[26,74,5],[27,0,36],[27,38,2],[27,75,4],[28,0,35],[28,37,2],[28,75,4],[29,0,34],[29,35,4],[29,75,4],[30,0,42],[30,75,4]],[[0,0,79],[1,0,59],[1,60,19],[2,0,59],[2,61,18],[3,0,52],[3,65,14],[4,0,50],[4,67,12],[5,0,50],[5,69,10],[6,0,45],[6,70,9],[7,0,43],[7,71,8],[8,0,43],[8,71,8],[9,0,45],[9,71,8],[10,0,46],[10,71,8],[11,0,39],[11,40,8],[11,71,8],[12,0,36],[12,37,2],[12,40,9],[12,72,7],[13,0,34],[13,40,10],[13,72,7],[14,0,34],[14,40,11],[14,73,6],[15,0,34],[15,38,10],[15,49,2],[15,73,6],[16,0,34],[16,38,10],[16,73,6],[17,0,35],[17,41,7],[17,74,5],[18,0,35],[18,42,4],[18,74,5],[19,0,35],[19,74,5],[20,0,34],[20,74,5],[21,0,33],[21,75,4],[22,0,32],[22,34,2],[22,75,4],[23,0,39],[23,75,4],[24,0,42],[24,76,3],[25,0,40],[25,76,3],[26,0,41],[26,77,2],[27,0,41],[27,78,1],[28,0,37],[28,78,1],[29,0,35],[29,37,3],[30,0,34],[30,36,3]],[[0,0,59],[0,61,18],[1,0,60],[1,62,17],[2,0,55],[2,64,15],[3,0,51],[3,68,11],[4,0,49],[4,70,9],[5,0,49],[5,71,8],[6,0,46],[6,72,7],[7,0,42],[7,72,7],[8,0,42],[8,72,7],[9,0,44],[9,72,7],[10,0,46],[10,73,6],[11,0,47],[11,73,6],[12,0,50],[12,74,5],[13,0,42],[13,43,7],[13,74,5],[14,0,36],[14,39,2],[14,43,8],[14,75,4],[15,0,36],[15,42,9],[15,75,4],[16,0,36],[16,41,7],[16,75,4],[17,0,35],[17,40,8],[17,76,3],[18,0,35],[18,39,9],[18,76,3],[19,0,35],[19,43,4],[19,77,2],[20,0,36],[20,77,2],[21,0,36],[21,78,1],[22,0,35],[22,78,1],[23,0,34],[24,0,33],[24,36,2],[25,0,39],[26,0,41],[27,0,42],[28,0,44],[29,0,42],[30,0,38]],[[0,0,61],[0,64,15],[1,0,61],[1,64,15],[2,0,52],[2,68,11],[3,0,50],[3,71,8],[4,0,49],[4,72,7],[5,0,49],[5,74,5],[6,0,47],[6,74,5],[7,0,42],[7,74,5],[8,0,42],[8,74,5],[9,0,44],[9,74,5],[10,0,45],[10,75,4],[11,0,47],[11,75,4],[12,0,49],[12,76,3],[13,0,50],[13,76,3],[14,0,50],[14,77,2],[15,0,44],[15,46,4],[15,77,2],[16,0,37],[16,41,2],[16,44,6],[16,78,1],[17,0,37],[17,43,6],[17,78,1],[18,0,36],[18,42,7],[19,0,35],[19,40,9],[20,0,35],[20,43,5],[21,0,36],[21,45,2],[22,0,37],[23,0,37],[24,0,36],[25,0,36],[26,0,35],[27,0,35],[27,36,5],[28,0,41],[29,0,44],[30,0,45]],[[0,0,61],[0,67,12],[1,0,56],[1,69,10],[2,0,52],[2,72,7],[3,0,50],[3,74,5],[4,0,50],[4,76,3],[5,0,49],[5,77,2],[6,0,45],[6,77,2],[7,0,42],[7,77,2],[8,0,42],[8,76,3],[9,0,44],[9,77,2],[10,0,46],[10,77,2],[11,0,48],[11,78,1],[12,0,49],[12,78,1],[13,0,49],[14,0,49],[15,0,45],[15,46,4],[16,0,44],[16,45,5],[16,53,3],[17,0,36],[17,41,1],[17,44,6],[18,0,36],[18,43,7],[19,0,36],[19,42,8],[20,0,35],[20,40,10],[21,0,35],[21,41,7],[22,0,35],[22,46,2],[23,0,37],[24,0,37],[25,0,37],[26,0,37],[27,0,36],[28,0,36],[28,38,2],[29,0,35],[29,37,4],[30,0,41]],[[0,0,58],[0,71,8],[1,0,54],[1,73,6],[2,0,52],[2,76,3],[3,0,51],[3,78,1],[4,0,50],[5,0,49],[6,0,44],[7,0,42],[8,0,42],[9,0,45],[10,0,47],[11,0,49],[12,0,49],[13,0,49],[14,0,49],[15,0,49],[16,0,43],[16,45,4],[16,53,3],[17,0,37],[17,38,4],[17,44,5],[17,53,5],[18,0,34],[18,43,7],[19,0,35],[19,42,8],[20,0,35],[20,41,9],[21,0,34],[21,39,11],[22,0,34],[22,39,10],[23,0,34],[23,46,2],[24,0,36],[25,0,37],[26,0,37],[27,0,37],[28,0,36],[29,0,36],[30,0,36],[30,38,3]],[[0,0,57],[0,76,3],[1,0,54],[1,78,1],[2,0,52],[3,0,51],[4,0,51],[5,0,51],[6,0,44],[7,0,43],[8,0,42],[9,0,45],[10,0,47],[11,0,49],[12,0,50],[13,0,49],[14,0,49],[15,0,42],[15,44,5],[16,0,41],[16,43,6],[16,53,2],[17,0,40],[17,42,7],[17,53,4],[18,0,33],[18,38,1],[18,41,8],[18,53,7],[19,0,32],[19,41,8],[20,0,33],[20,40,9],[21,0,32],[21,39,10],[22,0,32],[22,38,12],[23,0,32],[23,40,10],[24,0,33],[24,45,3],[25,0,35],[26,0,36],[27,0,37],[28,0,36],[29,0,36],[30,0,35]],[[0,0,57],[1,0,54],[2,0,53],[3,0,52],[4,0,52],[5,0,50],[6,0,44],[7,0,43],[8,0,42],[9,0,45],[10,0,46],[11,0,49],[12,0,50],[13,0,50],[14,0,50],[15,0,38],[15,40,10],[16,0,38],[16,39,10],[16,54,1],[17,0,37],[17,39,10],[17,54,2],[18,0,31],[18,35,1],[18,39,10],[18,54,6],[19,0,29],[19,38,11],[19,54,7],[20,0,30],[20,38,11],[21,0,30],[21,38,11],[22,0,30],[22,37,12],[23,0,31],[23,37,12],[24,0,31],[24,41,7],[25,0,32],[25,45,3],[26,0,34],[27,0,35],[28,0,36],[29,0,36],[30,0,35]],[[0,0,57],[1,0,55],[2,0,53],[3,0,52],[4,0,52],[5,0,51],[6,0,45],[7,0,43],[8,0,42],[9,0,42],[10,0,44],[11,0,46],[12,0,49],[13,0,50],[14,0,33],[14,34,16],[15,0,33],[15,35,15],[16,0,33],[16,35,15],[17,0,33],[17,35,15],[17,54,2],[18,0,28],[18,36,14],[18,54,3],[19,0,26],[19,36,13],[19,54,7],[20,0,26],[20,36,13],[20,54,7],[21,0,28],[21,36,13],[21,54,2],[22,0,28],[22,35,13],[23,0,29],[23,36,12],[24,0,29],[24,38,10],[25,0,31],[25,43,4],[26,0,32],[27,0,33],[28,0,35],[29,0,35],[30,0,34]],[[0,0,60],[0,77,2],[1,0,56],[2,0,53],[3,0,52],[4,0,51],[5,0,51],[6,0,50],[7,0,45],[8,0,42],[9,0,41],[10,0,42],[11,0,44],[12,0,45],[13,0,28],[13,29,19],[14,0,28],[14,30,20],[15,0,29],[15,30,20],[16,0,29],[16,31,19],[17,0,30],[17,32,18],[18,0,25],[18,33,17],[18,54,2],[19,0,24],[19,34,16],[19,54,4],[20,0,24],[20,34,15],[20,54,6],[21,0,26],[21,34,15],[21,54,2],[21,57,2],[22,0,27],[22,34,15],[22,54,2],[23,0,28],[23,35,13],[24,0,28],[24,37,11],[25,0,30],[25,42,5],[26,0,31],[27,0,33],[28,0,34],[29,0,34],[30,0,33]],[[0,0,63],[0,74,5],[1,0,58],[1,77,2],[2,0,54],[3,0,52],[4,0,51],[5,0,50],[6,0,50],[7,0,50],[8,0,43],[9,0,41],[10,0,41],[11,0,42],[12,0,44],[13,0,45],[14,0,24],[14,26,23],[15,0,25],[15,27,23],[16,0,27],[16,29,21],[17,0,27],[17,30,20],[18,0,23],[18,31,19],[18,54,1],[19,0,22],[19,32,18],[19,54,3],[20,0,22],[20,33,16],[20,54,5],[21,0,25],[21,33,16],[21,54,2],[21,57,3],[22,0,26],[22,34,15],[22,54,2],[23,0,27],[23,35,13],[24,0,28],[24,36,12],[25,0,30],[25,42,5],[26,0,31],[26,44,2],[27,0,32],[28,0,33],[29,0,33],[30,0,32]],[[0,0,62],[0,73,6],[1,0,58],[1,76,3],[2,0,53],[3,0,51],[4,0,50],[5,0,50],[6,0,49],[7,0,49],[8,0,45],[9,0,41],[10,0,40],[11,0,42],[12,0,43],[13,0,24],[13,25,20],[14,0,24],[14,26,22],[15,0,26],[15,28,22],[16,0,28],[16,30,20],[17,0,28],[17,31,19],[18,0,23],[18,32,18],[19,0,23],[19,33,17],[19,54,2],[20,0,23],[20,33,16],[20,54,5],[21,0,25],[21,33,16],[21,54,2],[21,57,1],[22,0,26],[22,34,15],[23,0,27],[23,36,12],[24,0,29],[24,37,11],[25,0,30],[25,42,5],[26,0,31],[27,0,32],[28,0,33],[29,0,33],[30,0,32]],[[0,0,60],[0,74,5],[1,0,56],[1,76,3],[2,0,52],[3,0,50],[4,0,50],[5,0,49],[6,0,49],[7,0,48],[8,0,45],[9,0,41],[10,0,40],[11,0,41],[12,0,27],[12,28,15],[13,0,27],[13,29,16],[14,0,28],[14,30,19],[15,0,29],[15,31,18],[16,0,29],[16,32,17],[17,0,26],[17,33,17],[18,0,24],[18,33,17],[19,0,23],[19,34,16],[19,54,2],[20,0,25],[20,34,15],[20,54,2],[20,57,1],[21,0,26],[21,34,15],[22,0,27],[22,35,14],[23,0,28],[23,36,12],[24,0,29],[24,37,11],[25,0,30],[25,43,4],[26,0,32],[27,0,33],[28,0,33],[29,0,33],[30,0,32]],[[0,0,58],[0,75,4],[1,0,54],[1,77,2],[2,0,51],[3,0,50],[4,0,49],[5,0,49],[6,0,48],[7,0,46],[8,0,44],[9,0,41],[10,0,40],[11,0,41],[12,0,30],[12,32,11],[13,0,30],[13,32,13],[14,0,31],[14,32,16],[15,0,31],[15,33,16],[16,0,31],[16,33,16],[17,0,26],[17,34,15],[18,0,24],[18,34,15],[19,0,24],[19,35,14],[19,54,2],[20,0,26],[20,34,15],[20,54,2],[21,0,27],[21,34,15],[22,0,28],[22,35,14],[23,0,28],[23,36,12],[24,0,30],[24,37,10],[25,0,31],[25,43,3],[26,0,32],[27,0,33],[28,0,33],[29,0,33],[30,0,32]],[[0,0,57],[0,74,5],[1,0,53],[1,76,3],[2,0,50],[3,0,49],[4,0,49],[5,0,48],[6,0,48],[7,0,45],[8,0,44],[9,0,39],[10,0,39],[11,0,41],[12,0,34],[12,36,8],[13,0,34],[13,36,11],[14,0,34],[14,35,13],[15,0,33],[15,35,14],[16,0,33],[16,35,14],[17,0,26],[17,35,14],[18,0,25],[18,36,13],[18,53,1],[19,0,27],[19,36,13],[19,53,3],[20,0,27],[20,35,14],[21,0,27],[21,35,14],[22,0,28],[22,35,14],[23,0,29],[23,37,11],[24,0,30],[24,38,9],[25,0,31],[25,43,3],[26,0,32],[27,0,33],[28,0,33],[29,0,32],[30,0,32]],[[0,0,56],[0,74,5],[1,0,52],[1,76,3],[2,0,50],[2,78,1],[3,0,49],[4,0,48],[5,0,48],[6,0,48],[7,0,44],[8,0,43],[9,0,39],[10,0,39],[11,0,42],[12,0,38],[12,39,5],[13,0,37],[13,39,8],[14,0,37],[14,38,10],[15,0,36],[15,38,10],[16,0,28],[16,29,1],[16,34,1],[16,37,11],[17,0,27],[17,37,12],[18,0,27],[18,37,12],[18,53,1],[19,0,28],[19,36,13],[19,53,2],[20,0,28],[20,36,13],[20,53,2],[21,0,28],[21,35,14],[22,0,28],[22,36,12],[23,0,29],[23,37,11],[24,0,31],[24,38,9],[25,0,32],[25,43,2],[26,0,32],[27,0,33],[28,0,33],[29,0,32],[30,0,31]],[[0,0,54],[0,73,6],[1,0,51],[1,75,4],[2,0,49],[2,78,1],[3,0,48],[4,0,48],[5,0,47],[6,0,46],[7,0,43],[8,0,39],[8,41,2],[9,0,38],[10,0,41],[11,0,42],[12,0,43],[13,0,39],[13,41,6],[14,0,38],[14,40,8],[15,0,37],[15,39,9],[16,0,28],[16,35,1],[16,38,10],[17,0,27],[17,37,11],[18,0,28],[18,37,11],[18,53,1],[19,0,28],[19,37,11],[19,53,2],[20,0,28],[20,36,12],[20,53,2],[21,0,28],[21,35,13],[22,0,29],[22,36,12],[23,0,30],[23,38,10],[24,0,31],[24,38,8],[25,0,31],[26,0,33],[27,0,33],[28,0,33],[29,0,32],[30,0,31]],[[0,0,54],[0,73,6],[1,0,51],[1,74,5],[2,0,49],[2,77,2],[3,0,48],[4,0,47],[5,0,47],[6,0,44],[7,0,42],[8,0,38],[9,0,38],[10,0,40],[11,0,42],[12,0,45],[13,0,38],[13,40,6],[14,0,37],[14,39,8],[15,0,36],[15,38,9],[16,0,30],[16,34,1],[16,37,10],[17,0,26],[17,37,10],[18,0,28],[18,37,11],[18,52,1],[19,0,27],[19,36,12],[19,52,3],[20,0,27],[20,35,13],[20,52,3],[21,0,28],[21,35,13],[22,0,28],[22,36,12],[23,0,29],[23,37,10],[24,0,30],[24,38,8],[25,0,31],[26,0,32],[27,0,33],[28,0,33],[29,0,32],[30,0,31]],[[0,0,53],[0,72,7],[1,0,50],[1,74,5],[2,0,48],[2,76,3],[3,0,47],[3,78,1],[4,0,47],[5,0,47],[6,0,43],[7,0,42],[8,0,37],[9,0,37],[10,0,41],[11,0,42],[12,0,36],[12,37,8],[13,0,35],[13,37,9],[14,0,35],[14,36,11],[15,0,34],[15,36,11],[16,0,28],[16,32,1],[16,35,12],[17,0,26],[17,35,12],[18,0,25],[18,35,12],[18,51,2],[19,0,26],[19,35,12],[19,52,3],[20,0,27],[20,34,13],[20,52,3],[21,0,27],[21,34,13],[22,0,27],[22,35,12],[23,0,28],[23,36,11],[24,0,30],[24,37,9],[25,0,31],[26,0,32],[27,0,33],[28,0,33],[29,0,33],[30,0,32]],[[0,0,53],[0,71,8],[1,0,50],[1,73,6],[2,0,48],[2,76,3],[3,0,47],[3,77,2],[4,0,47],[4,78,1],[5,0,46],[6,0,42],[7,0,42],[8,0,37],[9,0,37],[9,78,1],[10,0,41],[11,0,42],[12,0,33],[12,34,11],[13,0,32],[13,34,12],[14,0,32],[14,34,12],[15,0,32],[15,33,13],[16,0,27],[16,29,2],[16,33,13],[17,0,25],[17,34,12],[18,0,24],[18,34,12],[18,51,2],[19,0,25],[19,34,12],[19,51,4],[20,0,25],[20,33,13],[20,51,4],[21,0,26],[21,33,13],[22,0,27],[22,35,11],[23,0,27],[23,36,10],[24,0,29],[24,37,9],[25,0,30],[25,42,2],[26,0,31],[26,78,1],[27,0,33],[27,78,1],[28,0,33],[28,78,1],[29,0,33],[29,78,1],[30,0,32]],[[0,0,53],[0,70,9],[1,0,50],[1,72,7],[2,0,48],[2,75,4],[3,0,47],[3,77,2],[4,0,46],[4,78,1],[5,0,46],[6,0,42],[7,0,42],[8,0,37],[9,0,37],[9,78,1],[10,0,41],[10,78,1],[11,0,42],[11,78,1],[12,0,29],[12,30,15],[13,0,29],[13,31,15],[14,0,29],[14,31,15],[15,0,30],[15,31,15],[16,0,30],[16,32,14],[17,0,24],[17,32,14],[18,0,23],[18,33,13],[18,50,2],[19,0,22],[19,33,13],[19,50,5],[20,0,24],[20,33,13],[20,51,4],[21,0,25],[21,32,14],[21,78,1],[22,0,26],[22,34,11],[22,78,1],[23,0,27],[23,35,10],[23,78,1],[24,0,28],[24,37,8],[24,78,1],[25,0,30],[25,41,3],[25,78,1],[26,0,31],[26,78,1],[27,0,32],[27,78,1],[28,0,33],[28,78,1],[29,0,33],[29,78,1],[30,0,32]],[[0,0,56],[0,68,11],[1,0,52],[1,71,8],[2,0,48],[2,74,5],[3,0,47],[3,76,3],[4,0,47],[4,78,1],[5,0,46],[5,78,1],[6,0,42],[7,0,42],[8,0,37],[9,0,37],[10,0,41],[10,78,1],[11,0,42],[11,78,1],[12,0,45],[13,0,25],[13,27,19],[14,0,26],[14,28,18],[15,0,27],[15,29,17],[16,0,27],[16,30,16],[17,0,24],[17,31,15],[18,0,22],[18,32,14],[18,50,2],[19,0,21],[19,32,13],[19,50,5],[20,0,23],[20,32,13],[20,50,5],[20,78,1],[21,0,24],[21,32,13],[21,50,2],[21,78,1],[22,0,25],[22,34,11],[22,78,1],[23,0,26],[23,35,9],[23,78,1],[24,0,28],[24,36,8],[24,78,1],[25,0,29],[25,38,6],[25,78,1],[26,0,31],[26,78,1],[27,0,32],[27,78,1],[28,0,33],[28,78,1],[29,0,33],[29,78,1],[30,0,32]],[[0,0,63],[0,67,12],[1,0,57],[1,68,11],[2,0,50],[2,73,6],[3,0,49],[3,75,4],[4,0,48],[4,77,2],[5,0,47],[5,78,1],[6,0,46],[7,0,43],[8,0,38],[8,40,3],[9,0,38],[10,0,40],[11,0,43],[12,0,46],[13,0,22],[13,24,22],[14,0,23],[14,25,21],[15,0,24],[15,26,20],[16,0,26],[16,28,18],[17,0,26],[17,29,17],[18,0,22],[18,31,15],[18,50,2],[19,0,21],[19,31,14],[19,50,3],[20,0,21],[20,31,14],[20,50,5],[21,0,23],[21,31,14],[21,50,5],[21,78,1],[22,0,24],[22,33,11],[22,78,1],[23,0,26],[23,34,10],[23,78,1],[24,0,27],[24,36,8],[24,78,1],[25,0,29],[25,37,6],[25,78,1],[26,0,30],[26,77,2],[27,0,31],[27,78,1],[28,0,33],[28,78,1],[29,0,33],[29,78,1],[30,0,33]],[[0,0,63],[0,67,12],[1,0,63],[1,67,12],[2,0,53],[2,72,7],[3,0,50],[3,75,4],[4,0,48],[4,77,2],[5,0,48],[6,0,48],[7,0,43],[8,0,44],[9,0,38],[10,0,38],[11,0,43],[12,0,46],[13,0,20],[13,21,25],[14,0,21],[14,23,24],[15,0,23],[15,25,21],[16,0,25],[16,27,19],[17,0,25],[17,29,17],[18,0,21],[18,30,16],[18,50,2],[19,0,20],[19,31,15],[19,50,3],[20,0,20],[20,31,14],[20,50,5],[21,0,23],[21,31,14],[21,50,5],[22,0,24],[22,33,11],[22,78,1],[23,0,26],[23,34,10],[23,78,1],[24,0,27],[24,36,8],[24,78,1],[25,0,29],[25,37,6],[25,78,1],[26,0,30],[26,77,2],[27,0,31],[27,78,1],[28,0,33],[28,78,1],[29,0,33],[30,0,33]],[[0,0,64],[0,67,12],[1,0,59],[1,69,10],[2,0,52],[2,74,5],[3,0,50],[3,76,3],[4,0,49],[4,78,1],[5,0,48],[6,0,48],[7,0,44],[8,0,44],[9,0,39],[9,41,2],[10,0,39],[11,0,43],[12,0,46],[13,0,21],[13,24,23],[14,0,23],[14,25,22],[15,0,25],[15,27,20],[16,0,26],[16,28,19],[17,0,24],[17,30,17],[18,0,22],[18,31,15],[18,51,1],[19,0,21],[19,31,15],[19,50,4],[20,0,21],[20,32,14],[20,50,5],[21,0,23],[21,31,14],[21,50,5],[22,0,25],[22,33,12],[22,52,2],[23,0,26],[23,35,9],[23,78,1],[24,0,28],[24,36,8],[24,78,1],[25,0,29],[25,38,4],[25,78,1],[26,0,31],[26,78,1],[27,0,32],[28,0,34],[29,0,34],[30,0,33]],[[0,0,60],[0,69,10],[1,0,56],[1,72,7],[2,0,51],[2,75,4],[3,0,49],[3,78,1],[4,0,49],[5,0,48],[6,0,48],[7,0,45],[8,0,45],[9,0,43],[10,0,39],[11,0,43],[12,0,26],[12,28,18],[13,0,26],[13,29,18],[14,0,27],[14,30,17],[15,0,28],[15,30,17],[16,0,29],[16,31,16],[17,0,25],[17,32,15],[18,0,22],[18,33,14],[18,51,2],[19,0,22],[19,33,14],[19,51,4],[20,0,24],[20,33,13],[20,51,5],[21,0,25],[21,32,14],[21,51,4],[22,0,26],[22,34,11],[23,0,27],[23,36,8],[24,0,28],[24,37,7],[24,78,1],[25,0,30],[25,38,3],[25,78,1],[26,0,31],[27,0,33],[28,0,34],[29,0,34],[30,0,33]],[[0,0,57],[0,73,6],[1,0,53],[1,75,4],[2,0,50],[2,77,2],[3,0,49],[4,0,48],[5,0,48],[6,0,48],[7,0,45],[8,0,44],[9,0,40],[9,41,2],[10,0,39],[11,0,44],[12,0,31],[12,32,13],[13,0,31],[13,32,16],[14,0,31],[14,33,15],[15,0,31],[15,33,15],[16,0,31],[16,33,15],[17,0,25],[17,34,14],[18,0,23],[18,34,14],[18,52,2],[19,0,25],[19,34,13],[19,52,4],[20,0,25],[20,33,14],[20,52,4],[21,0,25],[21,33,13],[21,52,4],[22,0,26],[22,34,12],[23,0,27],[23,36,9],[24,0,29],[24,37,7],[25,0,30],[25,38,3],[26,0,32],[27,0,33],[28,0,34],[29,0,34],[30,0,33]],[[0,0,55],[0,75,4],[1,0,52],[1,77,2],[2,0,50],[3,0,49],[4,0,48],[5,0,48],[6,0,48],[7,0,46],[8,0,45],[9,0,40],[10,0,40],[11,0,44],[12,0,34],[12,36,12],[13,0,34],[13,35,13],[14,0,33],[14,35,13],[15,0,33],[15,35,13],[16,0,29],[16,31,1],[16,34,14],[17,0,25],[17,35,13],[18,0,24],[18,35,13],[18,53,2],[19,0,26],[19,35,13],[19,52,5],[20,0,26],[20,34,13],[20,52,4],[21,0,26],[21,33,14],[21,52,4],[22,0,27],[22,35,11],[23,0,28],[23,36,10],[24,0,29],[24,38,7],[25,0,31],[26,0,32],[27,0,33],[28,0,35],[29,0,35],[30,0,34]],[[0,0,54],[0,77,2],[1,0,51],[2,0,50],[3,0,49],[4,0,49],[5,0,48],[6,0,47],[7,0,46],[8,0,44],[9,0,40],[10,0,40],[10,41,1],[11,0,45],[12,0,38],[12,39,8],[13,0,37],[13,39,10],[14,0,36],[14,38,11],[15,0,35],[15,37,12],[16,0,30],[16,33,1],[16,36,13],[17,0,26],[17,36,13],[17,53,1],[18,0,27],[18,36,13],[18,53,3],[19,0,27],[19,36,12],[19,53,4],[20,0,27],[20,35,13],[20,53,4],[21,0,27],[21,34,14],[21,53,3],[22,0,27],[22,36,11],[23,0,29],[23,37,9],[24,0,30],[24,38,8],[25,0,31],[26,0,32],[27,0,34],[28,0,35],[29,0,35],[30,0,34]],[[0,0,53],[0,78,1],[1,0,51],[2,0,50],[3,0,49],[4,0,49],[5,0,49],[6,0,49],[7,0,46],[8,0,40],[9,0,40],[10,0,43],[11,0,45],[12,0,40],[12,41,7],[13,0,39],[13,41,8],[14,0,38],[14,39,10],[15,0,37],[15,38,11],[16,0,28],[16,38,11],[17,0,27],[17,38,11],[17,54,1],[18,0,28],[18,37,12],[18,54,3],[19,0,28],[19,37,12],[19,54,4],[20,0,28],[20,36,13],[20,54,3],[21,0,28],[21,35,13],[21,54,3],[22,0,29],[22,37,11],[23,0,30],[23,38,9],[24,0,31],[24,39,8],[25,0,32],[25,40,5],[26,0,33],[27,0,34],[28,0,36],[29,0,36],[30,0,35]],[[0,0,53],[1,0,51],[2,0,50],[3,0,49],[4,0,49],[5,0,49],[6,0,48],[7,0,45],[8,0,40],[9,0,40],[10,0,43],[11,0,46],[12,0,39],[12,40,8],[13,0,38],[13,40,10],[14,0,37],[14,39,11],[15,0,32],[15,33,3],[15,38,12],[16,0,28],[16,37,13],[17,0,27],[17,37,13],[17,55,1],[18,0,28],[18,37,13],[18,55,3],[19,0,28],[19,37,13],[19,55,3],[20,0,28],[20,36,14],[20,55,3],[21,0,29],[21,36,13],[21,55,2],[22,0,29],[22,37,12],[23,0,31],[23,39,9],[24,0,32],[24,40,8],[25,0,33],[25,41,5],[26,0,34],[27,0,35],[28,0,36],[29,0,36],[30,0,35]],[[0,0,54],[1,0,52],[2,0,50],[3,0,50],[4,0,50],[5,0,49],[6,0,48],[7,0,44],[8,0,40],[9,0,40],[10,0,44],[11,0,46],[12,0,34],[12,36,11],[13,0,33],[13,35,15],[14,0,33],[14,35,16],[15,0,32],[15,35,16],[16,0,27],[16,35,16],[17,0,25],[17,35,16],[17,56,1],[18,0,24],[18,35,16],[18,56,3],[19,0,26],[19,35,16],[19,56,3],[20,0,26],[20,34,17],[20,56,3],[21,0,27],[21,34,16],[21,56,2],[22,0,27],[22,36,14],[23,0,28],[23,37,13],[24,0,30],[24,39,10],[25,0,32],[25,40,6],[26,0,32],[27,0,34],[28,0,36],[29,0,37],[30,0,36]],[[0,0,55],[1,0,53],[2,0,51],[3,0,51],[4,0,51],[5,0,50],[6,0,48],[7,0,44],[8,0,41],[9,0,41],[10,0,44],[11,0,47],[12,0,29],[12,31,17],[13,0,29],[13,31,20],[14,0,29],[14,31,21],[15,0,29],[15,31,21],[16,0,24],[16,27,2],[16,31,21],[17,0,22],[17,32,20],[17,57,1],[18,0,22],[18,33,19],[18,57,3],[19,0,21],[19,33,19],[19,57,4],[20,0,23],[20,32,20],[20,57,3],[21,0,24],[21,32,20],[21,58,2],[22,0,25],[22,34,18],[22,58,2],[23,0,26],[23,36,15],[24,0,28],[24,38,12],[25,0,30],[25,39,8],[26,0,32],[27,0,33],[28,0,34],[29,0,37],[30,0,37]],[[0,0,56],[1,0,54],[2,0,52],[3,0,52],[4,0,52],[5,0,50],[6,0,49],[7,0,45],[8,0,42],[9,0,42],[10,0,42],[10,44,2],[11,0,46],[12,0,26],[12,28,21],[13,0,26],[13,28,24],[14,0,27],[14,29,24],[15,0,27],[15,29,24],[16,0,27],[16,30,23],[17,0,22],[17,31,22],[18,0,21],[18,31,23],[18,59,2],[19,0,20],[19,32,22],[19,59,4],[20,0,22],[20,31,22],[20,59,4],[21,0,23],[21,31,22],[21,59,3],[22,0,24],[22,34,19],[22,60,2],[23,0,25],[23,35,18],[24,0,27],[24,37,15],[25,0,29],[25,39,9],[26,0,31],[27,0,32],[28,0,34],[29,0,36],[30,0,37]],[[0,0,57],[1,0,56],[2,0,54],[3,0,54],[4,0,53],[5,0,52],[6,0,50],[7,0,47],[8,0,44],[9,0,43],[10,0,44],[11,0,48],[12,0,23],[12,25,25],[13,0,24],[13,26,27],[14,0,25],[14,27,28],[15,0,26],[15,28,27],[16,0,26],[16,29,26],[17,0,22],[17,30,25],[18,0,21],[18,31,24],[18,61,1],[19,0,20],[19,32,23],[19,61,3],[20,0,20],[20,32,23],[20,61,4],[21,0,23],[21,32,23],[21,62,2],[22,0,24],[22,33,22],[22,62,2],[23,0,25],[23,35,20],[23,62,2],[24,0,27],[24,37,17],[25,0,29],[25,39,12],[26,0,31],[26,41,2],[27,0,33],[28,0,34],[29,0,35],[30,0,38]],[[0,0,59],[1,0,58],[2,0,56],[3,0,56],[4,0,56],[5,0,54],[6,0,53],[7,0,49],[8,0,46],[9,0,45],[10,0,45],[11,0,49],[12,0,21],[12,22,30],[13,0,21],[13,24,29],[14,0,23],[14,25,32],[15,0,24],[15,27,30],[16,0,26],[16,28,29],[17,0,22],[17,30,27],[18,0,22],[18,31,26],[19,0,20],[19,32,25],[19,64,2],[20,0,20],[20,32,26],[20,64,3],[21,0,23],[21,32,25],[21,64,3],[22,0,24],[22,33,24],[22,64,3],[23,0,25],[23,35,22],[23,64,3],[24,0,27],[24,37,20],[25,0,29],[25,39,16],[26,0,31],[26,41,11],[27,0,32],[28,0,33],[29,0,35],[30,0,38]],[[0,0,61],[1,0,60],[2,0,59],[3,0,58],[4,0,58],[5,0,57],[6,0,55],[7,0,52],[8,0,48],[9,0,47],[10,0,47],[11,0,51],[12,0,54],[13,0,20],[13,23,32],[14,0,22],[14,25,34],[15,0,24],[15,27,32],[16,0,26],[16,29,31],[17,0,23],[17,31,29],[18,0,22],[18,32,28],[19,0,21],[19,33,27],[20,0,20],[20,33,27],[20,67,3],[21,0,21],[21,22,1],[21,33,27],[21,67,3],[22,0,24],[22,35,25],[22,67,3],[23,0,26],[23,36,24],[23,67,3],[24,0,27],[24,38,22],[24,68,2],[25,0,29],[25,40,18],[26,0,31],[26,42,14],[27,0,32],[27,44,2],[27,50,2],[28,0,34],[29,0,35],[30,0,38]],[[0,0,62],[1,0,62],[2,0,61],[3,0,61],[4,0,60],[5,0,60],[6,0,58],[7,0,54],[8,0,50],[9,0,49],[10,0,50],[11,0,54],[12,0,22],[12,25,31],[13,0,24],[13,27,31],[14,0,25],[14,29,33],[15,0,27],[15,30,32],[16,0,28],[16,32,30],[17,0,24],[17,34,29],[18,0,22],[18,34,29],[19,0,21],[19,35,28],[20,0,21],[20,35,28],[20,70,2],[21,0,24],[21,35,28],[21,70,4],[22,0,25],[22,35,28],[22,71,3],[23,0,26],[23,37,26],[23,71,3],[24,0,28],[24,39,24],[24,71,3],[25,0,29],[25,41,21],[25,71,2],[26,0,31],[26,43,17],[27,0,32],[27,45,11],[28,0,34],[29,0,36],[30,0,38]],[[0,0,64],[1,0,63],[2,0,63],[3,0,63],[4,0,63],[5,0,61],[6,0,58],[7,0,53],[7,54,2],[8,0,52],[9,0,52],[10,0,30],[10,32,20],[11,0,30],[11,32,24],[12,0,31],[12,33,26],[13,0,31],[13,34,27],[14,0,32],[14,34,31],[15,0,32],[15,35,30],[16,0,28],[16,36,30],[17,0,26],[17,37,29],[18,0,23],[18,38,28],[19,0,23],[19,38,28],[20,0,25],[20,38,28],[20,74,3],[21,0,26],[21,38,28],[21,74,4],[22,0,27],[22,37,29],[22,74,4],[23,0,27],[23,39,27],[23,75,3],[24,0,28],[24,40,26],[24,75,3],[25,0,30],[25,42,23],[25,75,2],[26,0,32],[26,44,19],[27,0,33],[27,46,14],[28,0,35],[28,48,2],[28,54,2],[29,0,36],[30,0,39]],[[0,0,66],[1,0,66],[2,0,66],[3,0,66],[4,0,64],[5,0,61],[6,0,55],[6,58,1],[7,0,54],[8,0,54],[9,0,38],[9,39,15],[10,0,37],[10,39,20],[11,0,37],[11,39,22],[12,0,37],[12,40,23],[13,0,37],[13,40,24],[13,65,3],[14,0,37],[14,40,28],[15,0,37],[15,40,29],[16,0,30],[16,40,29],[17,0,26],[17,41,28],[18,0,25],[18,41,28],[19,0,26],[19,41,29],[19,78,1],[20,0,28],[20,41,29],[20,78,1],[21,0,28],[21,41,29],[21,78,1],[22,0,28],[22,40,30],[23,0,29],[23,40,30],[24,0,29],[24,42,28],[25,0,31],[25,44,25],[26,0,32],[26,45,21],[27,0,34],[27,47,17],[28,0,35],[28,49,11],[29,0,37],[30,0,39]],[[0,0,69],[1,0,69],[2,0,68],[3,0,66],[4,0,63],[5,0,57],[6,0,57],[7,0,56],[8,0,57],[9,0,44],[9,46,15],[10,0,43],[10,46,15],[11,0,43],[11,45,20],[12,0,42],[12,45,21],[13,0,41],[13,45,27],[14,0,41],[14,44,28],[15,0,35],[15,39,2],[15,44,29],[16,0,29],[16,44,29],[17,0,28],[17,45,28],[18,0,27],[18,45,28],[19,0,29],[19,45,28],[20,0,29],[20,44,30],[21,0,30],[21,44,30],[22,0,30],[22,42,32],[23,0,30],[23,42,32],[24,0,31],[24,44,30],[25,0,32],[25,45,28],[26,0,33],[26,47,23],[27,0,34],[27,49,19],[28,0,36],[28,50,15],[29,0,38],[29,52,5],[29,58,3],[30,0,40]],[[0,0,71],[1,0,69],[2,0,66],[3,0,60],[4,0,59],[5,0,59],[6,0,59],[7,0,59],[8,0,52],[8,53,11],[9,0,49],[9,53,13],[10,0,49],[10,52,16],[11,0,48],[11,51,18],[12,0,47],[12,50,26],[13,0,46],[13,49,27],[14,0,39],[14,42,3],[14,49,27],[15,0,32],[15,33,1],[15,48,29],[16,0,31],[16,48,29],[17,0,30],[17,48,29],[18,0,32],[18,48,29],[19,0,32],[19,48,30],[20,0,32],[20,47,31],[21,0,32],[21,46,32],[22,0,32],[22,45,33],[23,0,32],[23,44,34],[24,0,32],[24,46,32],[25,0,33],[25,47,31],[26,0,34],[26,49,26],[27,0,36],[27,51,21],[28,0,37],[28,52,18],[29,0,39],[29,54,13],[30,0,41],[30,56,1]],[[0,0,64],[1,0,63],[2,0,62],[3,0,62],[4,0,62],[5,0,62],[6,0,62],[6,64,3],[7,0,67],[8,0,54],[8,57,12],[9,0,53],[9,56,15],[10,0,52],[10,55,17],[11,0,51],[11,54,25],[12,0,50],[12,53,26],[13,0,41],[13,43,6],[13,52,27],[14,0,36],[14,45,2],[14,51,28],[15,0,33],[15,50,29],[16,0,32],[16,50,29],[17,0,32],[17,51,28],[18,0,33],[18,51,28],[19,0,33],[19,50,29],[20,0,33],[20,50,29],[21,0,33],[21,49,30],[22,0,33],[22,47,32],[23,0,33],[23,47,32],[24,0,34],[24,48,31],[25,0,34],[25,49,30],[26,0,36],[26,51,28],[27,0,37],[27,52,25],[28,0,38],[28,54,21],[29,0,40],[29,55,18],[30,0,42],[30,57,11]],[[0,0,65],[1,0,65],[2,0,64],[3,0,65],[4,0,65],[5,0,70],[6,0,70],[7,0,53],[7,55,18],[8,0,52],[8,56,19],[9,0,51],[9,55,21],[10,0,50],[10,54,25],[11,0,49],[11,53,26],[12,0,48],[12,52,27],[13,0,39],[13,42,5],[13,51,28],[14,0,35],[14,37,1],[14,44,2],[14,51,28],[15,0,33],[15,50,29],[16,0,31],[16,51,28],[17,0,30],[17,51,28],[18,0,31],[18,51,28],[19,0,33],[19,50,29],[20,0,33],[20,50,29],[21,0,33],[21,50,29],[22,0,33],[22,48,31],[23,0,33],[23,47,32],[24,0,34],[24,47,32],[25,0,34],[25,49,30],[26,0,35],[26,51,28],[27,0,36],[27,53,26],[28,0,37],[28,54,25],[29,0,39],[29,56,22],[30,0,41],[30,58,17]],[[0,0,68],[1,0,68],[2,0,68],[3,0,73],[4,0,74],[5,0,73],[6,0,47],[6,49,28],[7,0,46],[7,50,28],[8,0,46],[8,49,30],[9,0,46],[9,49,30],[10,0,45],[10,49,30],[11,0,45],[11,48,31],[12,0,44],[12,48,31],[13,0,44],[13,48,31],[14,0,35],[14,41,2],[14,48,31],[15,0,32],[15,48,31],[16,0,30],[16,49,30],[17,0,29],[17,49,30],[18,0,28],[18,50,29],[19,0,28],[19,50,29],[20,0,31],[20,49,30],[21,0,31],[21,49,30],[22,0,32],[22,49,30],[23,0,32],[23,48,31],[24,0,33],[24,47,32],[25,0,33],[25,49,30],[26,0,34],[26,51,28],[27,0,35],[27,52,27],[28,0,36],[28,54,25],[29,0,37],[29,56,23],[30,0,40],[30,58,21]],[[0,0,71],[1,0,76],[2,0,77],[3,0,77],[4,0,79],[5,0,79],[6,0,40],[6,43,36],[7,0,40],[7,44,35],[8,0,40],[8,43,36],[9,0,40],[9,44,35],[10,0,40],[10,44,35],[11,0,40],[11,44,35],[12,0,40],[12,44,35],[13,0,40],[13,44,35],[14,0,32],[14,36,4],[14,45,34],[15,0,31],[15,46,33],[16,0,30],[16,47,32],[17,0,27],[17,48,31],[18,0,27],[18,48,31],[19,0,26],[19,48,31],[20,0,26],[20,49,30],[21,0,26],[21,49,30],[22,0,29],[22,48,31],[23,0,30],[23,48,31],[24,0,31],[24,47,32],[25,0,31],[25,48,31],[26,0,32],[26,50,29],[27,0,33],[27,52,27],[28,0,34],[28,54,25],[29,0,35],[29,56,23],[30,0,38],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,34],[6,37,42],[7,0,34],[7,38,41],[8,0,35],[8,38,41],[9,0,35],[9,39,40],[10,0,36],[10,40,39],[11,0,36],[11,40,39],[12,0,37],[12,41,38],[13,0,37],[13,42,37],[14,0,37],[14,42,37],[15,0,29],[15,35,2],[15,44,35],[16,0,29],[16,45,34],[17,0,28],[17,46,33],[18,0,25],[18,47,32],[19,0,25],[19,47,32],[20,0,24],[20,48,31],[21,0,24],[21,48,31],[22,0,24],[22,48,31],[23,0,28],[23,48,31],[24,0,29],[24,47,32],[25,0,30],[25,47,32],[26,0,31],[26,49,30],[27,0,32],[27,51,28],[28,0,33],[28,53,26],[29,0,34],[29,55,24],[30,0,37],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,28],[6,29,50],[7,0,27],[7,31,48],[8,0,28],[8,32,47],[9,0,29],[9,33,46],[10,0,30],[10,34,45],[11,0,31],[11,36,43],[12,0,32],[12,37,42],[13,0,33],[13,38,41],[14,0,34],[14,39,40],[15,0,29],[15,30,4],[15,41,38],[16,0,26],[16,43,36],[17,0,26],[17,44,35],[18,0,24],[18,45,34],[19,0,23],[19,46,33],[20,0,22],[20,46,33],[21,0,22],[21,47,32],[22,0,22],[22,47,32],[23,0,22],[23,47,32],[24,0,27],[24,47,32],[25,0,28],[25,47,32],[26,0,29],[26,48,31],[27,0,30],[27,50,29],[28,0,31],[28,52,27],[29,0,33],[29,54,25],[30,0,35],[30,57,22]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,21],[7,24,55],[8,0,21],[8,26,53],[9,0,23],[9,27,52],[10,0,24],[10,29,50],[11,0,26],[11,31,48],[12,0,27],[12,33,46],[13,0,28],[13,34,45],[14,0,31],[14,36,43],[15,0,32],[15,38,41],[16,0,26],[16,30,2],[16,41,38],[17,0,24],[17,42,37],[18,0,24],[18,43,36],[19,0,21],[19,44,35],[20,0,21],[20,45,34],[21,0,21],[21,46,33],[22,0,20],[22,46,33],[23,0,20],[23,46,33],[24,0,21],[24,46,33],[25,0,26],[25,46,33],[26,0,27],[26,47,32],[27,0,29],[27,49,30],[28,0,30],[28,51,28],[29,0,31],[29,53,26],[30,0,34],[30,56,23]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,18],[8,22,57],[9,0,19],[9,24,55],[10,0,21],[10,26,53],[11,0,24],[11,28,51],[12,0,25],[12,30,49],[13,0,27],[13,32,47],[14,0,28],[14,35,44],[15,0,31],[15,37,42],[16,0,31],[16,40,39],[17,0,23],[17,41,38],[18,0,23],[18,42,37],[19,0,22],[19,43,36],[20,0,20],[20,44,35],[21,0,20],[21,45,34],[22,0,19],[22,45,34],[23,0,19],[23,45,34],[24,0,20],[24,45,34],[25,0,25],[25,45,34],[26,0,27],[26,46,33],[27,0,28],[27,48,31],[28,0,29],[28,51,28],[29,0,31],[29,53,26],[30,0,33],[30,55,24]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,22],[6,25,54],[7,0,22],[7,28,51],[8,0,23],[8,29,50],[9,0,25],[9,30,49],[10,0,26],[10,32,47],[11,0,28],[11,34,45],[12,0,30],[12,36,43],[13,0,31],[13,37,42],[14,0,33],[14,39,40],[15,0,33],[15,42,37],[16,0,26],[16,44,35],[17,0,26],[17,45,34],[18,0,24],[18,45,34],[19,0,22],[19,46,33],[20,0,21],[20,47,32],[21,0,21],[21,47,32],[22,0,21],[22,47,32],[23,0,21],[23,47,32],[24,0,26],[24,47,32],[25,0,27],[25,47,32],[26,0,28],[26,48,31],[27,0,29],[27,50,29],[28,0,31],[28,52,27],[29,0,32],[29,54,25],[30,0,34],[30,56,23]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,38,41],[5,0,35],[5,39,40],[6,0,35],[6,39,40],[7,0,36],[7,40,39],[8,0,37],[8,40,39],[9,0,37],[9,41,38],[10,0,37],[10,42,37],[11,0,38],[11,43,36],[12,0,38],[12,43,36],[13,0,39],[13,44,35],[14,0,35],[14,36,3],[14,45,34],[15,0,32],[15,47,32],[16,0,29],[16,49,30],[17,0,27],[17,49,30],[18,0,25],[18,50,29],[19,0,24],[19,50,29],[20,0,23],[20,50,29],[21,0,23],[21,50,29],[22,0,27],[22,50,29],[23,0,28],[23,50,29],[24,0,29],[24,49,30],[25,0,30],[25,49,30],[26,0,30],[26,49,30],[27,0,31],[27,52,27],[28,0,32],[28,54,25],[29,0,33],[29,56,23],[30,0,36],[30,58,21]],[[0,0,79],[1,0,79],[2,0,79],[3,0,47],[3,49,30],[4,0,46],[4,50,29],[5,0,46],[5,50,29],[6,0,46],[6,50,29],[7,0,46],[7,50,29],[8,0,46],[8,50,29],[9,0,45],[9,50,29],[10,0,45],[10,50,29],[11,0,45],[11,50,29],[12,0,45],[12,50,29],[13,0,45],[13,50,29],[14,0,38],[14,43,1],[14,50,29],[15,0,33],[15,34,1],[15,51,28],[16,0,31],[16,53,26],[17,0,28],[17,53,26],[18,0,27],[18,54,25],[19,0,26],[19,54,25],[20,0,27],[20,54,25],[21,0,30],[21,54,25],[22,0,30],[22,53,26],[23,0,31],[23,53,26],[24,0,31],[24,52,27],[25,0,32],[25,51,28],[26,0,32],[26,51,28],[27,0,33],[27,53,26],[28,0,34],[28,55,24],[29,0,35],[29,57,22],[30,0,37],[30,59,20]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,55],[4,59,20],[5,0,54],[5,58,21],[6,0,54],[6,58,21],[7,0,53],[7,58,21],[8,0,53],[8,57,22],[9,0,52],[9,57,22],[10,0,51],[10,56,23],[11,0,51],[11,56,23],[12,0,50],[12,55,24],[13,0,43],[13,45,4],[13,55,24],[14,0,38],[14,40,1],[14,55,24],[15,0,32],[15,34,1],[15,54,25],[16,0,31],[16,56,23],[17,0,30],[17,57,22],[18,0,29],[18,57,22],[19,0,32],[19,57,22],[20,0,32],[20,56,23],[21,0,32],[21,56,23],[22,0,32],[22,55,24],[23,0,33],[23,55,24],[24,0,33],[24,53,26],[25,0,33],[25,52,27],[26,0,34],[26,52,27],[27,0,34],[27,55,24],[28,0,35],[28,57,22],[29,0,36],[29,59,20],[30,0,38],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,64],[5,67,12],[6,0,62],[6,67,12],[7,0,61],[7,66,13],[8,0,61],[8,65,14],[9,0,59],[9,64,15],[10,0,58],[10,63,16],[11,0,57],[11,62,17],[12,0,56],[12,62,17],[13,0,47],[13,51,4],[13,61,18],[14,0,40],[14,53,1],[14,60,19],[15,0,35],[15,59,20],[16,0,34],[16,59,20],[17,0,33],[17,61,18],[18,0,36],[18,61,18],[19,0,36],[19,61,18],[20,0,36],[20,60,19],[21,0,35],[21,60,19],[22,0,36],[22,59,20],[23,0,35],[23,58,21],[24,0,36],[24,56,23],[25,0,36],[25,55,24],[26,0,36],[26,55,24],[27,0,37],[27,57,22],[28,0,37],[28,59,20],[29,0,38],[29,61,18],[30,0,40],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,67],[6,70,9],[7,0,65],[7,69,10],[8,0,64],[8,68,11],[9,0,63],[9,67,12],[10,0,62],[10,66,13],[11,0,61],[11,65,14],[12,0,59],[12,64,15],[13,0,44],[13,46,3],[13,54,4],[13,63,16],[14,0,39],[14,41,1],[14,55,2],[14,62,17],[15,0,38],[15,61,18],[16,0,36],[16,61,18],[17,0,36],[17,63,16],[18,0,39],[18,63,16],[19,0,38],[19,62,17],[20,0,38],[20,62,17],[21,0,38],[21,61,18],[22,0,38],[22,60,19],[23,0,38],[23,59,20],[24,0,38],[24,58,21],[25,0,38],[25,56,23],[26,0,38],[26,56,23],[27,0,39],[27,59,20],[28,0,40],[28,61,18],[29,0,40],[29,63,16],[30,0,43],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,59],[5,60,19],[6,0,57],[6,61,18],[7,0,56],[7,60,19],[8,0,56],[8,59,20],[9,0,55],[9,59,20],[10,0,54],[10,59,20],[11,0,53],[11,58,21],[12,0,52],[12,57,22],[13,0,42],[13,49,2],[13,57,22],[14,0,37],[14,56,23],[15,0,34],[15,56,23],[16,0,33],[16,58,21],[17,0,32],[17,58,21],[18,0,32],[18,58,21],[19,0,34],[19,57,22],[20,0,34],[20,57,22],[21,0,34],[21,57,22],[22,0,34],[22,57,22],[23,0,35],[23,56,23],[24,0,35],[24,54,25],[25,0,35],[25,54,25],[26,0,35],[26,55,24],[27,0,36],[27,57,22],[28,0,37],[28,59,20],[29,0,37],[29,61,18],[30,0,40],[30,63,16]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,44],[5,47,32],[6,0,44],[6,47,32],[7,0,44],[7,47,32],[8,0,44],[8,47,32],[9,0,44],[9,47,32],[10,0,43],[10,47,32],[11,0,43],[11,47,32],[12,0,43],[12,48,31],[13,0,34],[13,40,3],[13,48,31],[14,0,33],[14,48,31],[15,0,29],[15,50,29],[16,0,28],[16,51,28],[17,0,27],[17,51,28],[18,0,26],[18,51,28],[19,0,25],[19,51,28],[20,0,26],[20,51,28],[21,0,29],[21,52,27],[22,0,30],[22,51,28],[23,0,30],[23,50,29],[24,0,31],[24,49,30],[25,0,31],[25,50,29],[26,0,32],[26,52,27],[27,0,32],[27,55,24],[28,0,33],[28,57,22],[29,0,34],[29,59,20],[30,0,36],[30,62,17]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,33],[6,36,43],[7,0,33],[7,37,42],[8,0,34],[8,37,42],[9,0,34],[9,38,41],[10,0,34],[10,39,40],[11,0,35],[11,39,40],[12,0,35],[12,40,39],[13,0,35],[13,40,39],[14,0,27],[14,33,3],[14,41,38],[15,0,27],[15,44,35],[16,0,26],[16,45,34],[17,0,22],[17,45,34],[18,0,22],[18,46,33],[19,0,22],[19,46,33],[20,0,21],[20,47,32],[21,0,21],[21,47,32],[22,0,25],[22,47,32],[23,0,26],[23,46,33],[24,0,26],[24,45,34],[25,0,27],[25,47,32],[26,0,28],[26,50,29],[27,0,29],[27,52,27],[28,0,30],[28,55,24],[29,0,31],[29,57,22],[30,0,33],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,28],[6,31,48],[7,0,28],[7,32,47],[8,0,29],[8,33,46],[9,0,30],[9,34,45],[10,0,31],[10,35,44],[11,0,31],[11,36,43],[12,0,32],[12,36,43],[13,0,33],[13,37,42],[14,0,33],[14,38,41],[15,0,25],[15,32,1],[15,41,38],[16,0,25],[16,42,37],[17,0,22],[17,43,36],[18,0,21],[18,43,36],[19,0,21],[19,44,35],[20,0,20],[20,45,34],[21,0,20],[21,45,34],[22,0,20],[22,45,34],[23,0,24],[23,45,34],[24,0,25],[24,44,35],[25,0,26],[25,44,1],[25,46,33],[26,0,27],[26,48,31],[27,0,28],[27,51,28],[28,0,29],[28,54,25],[29,0,30],[29,57,22],[30,0,32],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,25],[6,27,52],[7,0,25],[7,29,50],[8,0,26],[8,30,49],[9,0,27],[9,31,48],[10,0,28],[10,32,47],[11,0,29],[11,33,46],[12,0,30],[12,35,44],[13,0,31],[13,36,43],[14,0,32],[14,37,42],[15,0,25],[15,29,4],[15,40,39],[16,0,24],[16,41,38],[17,0,24],[17,42,37],[18,0,21],[18,43,36],[19,0,20],[19,44,35],[20,0,20],[20,44,35],[21,0,20],[21,45,34],[22,0,20],[22,45,34],[23,0,20],[23,45,34],[24,0,25],[24,45,34],[25,0,26],[25,46,33],[26,0,27],[26,49,30],[27,0,28],[27,52,27],[28,0,29],[28,54,25],[29,0,30],[29,57,22],[30,0,33],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,23],[7,26,53],[8,0,24],[8,28,51],[9,0,25],[9,29,50],[10,0,26],[10,31,48],[11,0,28],[11,32,47],[12,0,29],[12,34,45],[13,0,30],[13,35,44],[14,0,32],[14,37,42],[15,0,27],[15,28,4],[15,40,39],[16,0,24],[16,41,38],[17,0,24],[17,42,37],[18,0,22],[18,43,36],[19,0,21],[19,44,35],[20,0,20],[20,45,34],[21,0,20],[21,45,34],[22,0,20],[22,46,33],[23,0,20],[23,46,33],[24,0,25],[24,46,33],[25,0,26],[25,46,33],[26,0,28],[26,49,30],[27,0,29],[27,52,27],[28,0,30],[28,55,24],[29,0,31],[29,58,21],[30,0,33],[30,60,19]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,20],[8,24,55],[9,0,22],[9,26,53],[10,0,23],[10,27,52],[11,0,25],[11,30,49],[12,0,26],[12,32,47],[13,0,28],[13,34,45],[14,0,30],[14,36,43],[15,0,32],[15,38,41],[16,0,27],[16,30,2],[16,41,38],[17,0,24],[17,42,37],[18,0,24],[18,43,36],[19,0,22],[19,44,35],[20,0,21],[20,45,34],[21,0,20],[21,46,33],[22,0,20],[22,46,33],[23,0,20],[23,46,33],[24,0,21],[24,46,33],[25,0,26],[25,47,32],[26,0,28],[26,50,29],[27,0,29],[27,52,27],[28,0,30],[28,55,24],[29,0,32],[29,58,21],[30,0,34],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,20],[8,22,57],[9,0,21],[9,25,54],[10,0,22],[10,26,53],[11,0,24],[11,28,51],[12,0,26],[12,31,48],[13,0,27],[13,33,46],[14,0,29],[14,35,44],[15,0,32],[15,37,42],[16,0,32],[16,42,37],[17,0,25],[17,43,36],[18,0,25],[18,44,35],[19,0,23],[19,45,34],[20,0,22],[20,46,33],[21,0,21],[21,46,33],[22,0,21],[22,47,32],[23,0,21],[23,47,32],[24,0,21],[24,47,32],[25,0,26],[25,47,32],[26,0,28],[26,50,29],[27,0,29],[27,53,26],[28,0,30],[28,56,23],[29,0,32],[29,59,20],[30,0,34],[30,61,18]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,21],[9,25,54],[10,0,23],[10,27,52],[11,0,25],[11,29,50],[12,0,26],[12,31,48],[13,0,28],[13,34,45],[14,0,30],[14,36,43],[15,0,32],[15,40,1],[15,42,37],[16,0,28],[16,30,2],[16,44,35],[17,0,26],[17,45,34],[18,0,26],[18,46,33],[19,0,23],[19,47,32],[20,0,23],[20,47,32],[21,0,22],[21,48,31],[22,0,22],[22,48,31],[23,0,22],[23,48,31],[24,0,22],[24,48,31],[25,0,28],[25,49,30],[26,0,29],[26,52,27],[27,0,31],[27,55,24],[28,0,32],[28,58,21],[29,0,33],[29,61,18],[30,0,36],[30,64,15]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,22],[8,24,55],[9,0,22],[9,27,52],[10,0,24],[10,28,51],[11,0,26],[11,31,48],[12,0,28],[12,33,46],[13,0,30],[13,36,43],[14,0,32],[14,38,1],[14,42,37],[15,0,33],[15,45,34],[16,0,27],[16,46,33],[17,0,27],[17,47,32],[18,0,27],[18,48,31],[19,0,24],[19,49,30],[20,0,24],[20,49,30],[21,0,24],[21,50,29],[22,0,23],[22,50,29],[23,0,23],[23,50,29],[24,0,24],[24,50,29],[25,0,30],[25,53,26],[26,0,31],[26,56,23],[27,0,33],[27,59,20],[28,0,34],[28,63,16],[29,0,36],[29,66,13],[30,0,38],[30,69,10]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,23],[8,26,53],[9,0,23],[9,28,51],[10,0,26],[10,30,49],[11,0,28],[11,33,46],[12,0,30],[12,35,44],[13,0,32],[13,38,3],[13,44,35],[14,0,34],[14,47,32],[15,0,29],[15,48,31],[16,0,29],[16,49,30],[17,0,29],[17,49,30],[18,0,26],[18,50,29],[19,0,26],[19,51,28],[20,0,26],[20,51,28],[21,0,25],[21,52,27],[22,0,25],[22,52,27],[23,0,25],[23,52,27],[24,0,27],[24,28,3],[24,54,25],[25,0,32],[25,57,22],[26,0,34],[26,61,18],[27,0,36],[27,64,15],[28,0,37],[28,67,12],[29,0,39],[29,71,8],[30,0,42],[30,74,5]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,24],[8,27,52],[9,0,25],[9,30,49],[10,0,28],[10,32,47],[11,0,29],[11,35,44],[12,0,32],[12,37,42],[13,0,33],[13,40,3],[13,47,32],[14,0,31],[14,44,2],[14,49,30],[15,0,31],[15,44,3],[15,50,29],[16,0,31],[16,51,28],[17,0,28],[17,52,27],[18,0,28],[18,52,27],[19,0,29],[19,53,26],[20,0,27],[20,53,26],[21,0,27],[21,54,25],[22,0,27],[22,54,25],[23,0,28],[23,54,25],[24,0,33],[24,58,21],[25,0,35],[25,61,18],[26,0,37],[26,65,14],[27,0,38],[27,68,11],[28,0,40],[28,72,7],[29,0,42],[29,75,4],[30,0,46]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,26],[8,27,52],[9,0,26],[9,31,48],[10,0,28],[10,32,47],[11,0,30],[11,35,44],[12,0,32],[12,38,7],[12,47,32],[13,0,34],[13,40,5],[13,49,30],[14,0,33],[14,43,4],[14,51,28],[15,0,33],[15,46,3],[15,52,27],[16,0,33],[16,47,2],[16,53,26],[17,0,30],[17,53,26],[18,0,30],[18,54,25],[19,0,31],[19,55,24],[20,0,29],[20,55,24],[21,0,29],[21,55,24],[22,0,29],[22,56,23],[23,0,30],[23,56,23],[24,0,35],[24,59,20],[25,0,37],[25,63,16],[26,0,38],[26,67,12],[27,0,40],[27,71,8],[28,0,42],[28,74,5],[29,0,45],[29,78,1],[30,0,49]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,27],[9,29,50],[10,0,27],[10,32,47],[11,0,29],[11,34,45],[12,0,31],[12,37,42],[13,0,33],[13,39,8],[13,49,30],[14,0,35],[14,42,6],[14,51,28],[15,0,34],[15,45,5],[15,52,27],[16,0,35],[16,47,3],[16,53,26],[17,0,31],[17,33,4],[17,49,2],[17,54,25],[18,0,31],[18,35,2],[18,55,24],[19,0,32],[19,56,23],[20,0,33],[20,56,23],[21,0,30],[21,56,23],[22,0,31],[22,57,22],[23,0,31],[23,57,22],[24,0,33],[24,59,20],[25,0,37],[25,63,16],[26,0,38],[26,67,12],[27,0,40],[27,71,8],[28,0,43],[28,75,4],[29,0,45],[30,0,49]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,27],[11,31,48],[12,0,28],[12,34,45],[13,0,30],[13,36,43],[14,0,33],[14,39,9],[14,50,29],[15,0,35],[15,42,6],[15,52,27],[16,0,34],[16,44,6],[16,53,26],[17,0,35],[17,47,4],[17,54,25],[18,0,32],[18,34,2],[18,49,2],[18,54,25],[19,0,32],[19,36,1],[19,55,24],[20,0,33],[20,56,23],[21,0,33],[21,56,23],[22,0,30],[22,57,22],[23,0,31],[23,57,22],[24,0,32],[24,57,22],[25,0,34],[25,60,19],[26,0,36],[26,65,14],[27,0,38],[27,69,10],[28,0,41],[28,73,4],[29,0,43],[30,0,47]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,26],[12,30,49],[13,0,27],[13,32,47],[14,0,29],[14,35,12],[14,48,31],[15,0,31],[15,37,9],[15,50,29],[16,0,33],[16,40,8],[16,51,28],[17,0,33],[17,43,6],[17,52,27],[18,0,33],[18,46,3],[18,52,27],[19,0,30],[19,47,1],[19,53,26],[20,0,31],[20,54,25],[21,0,32],[21,55,24],[22,0,29],[22,55,24],[23,0,29],[23,55,24],[24,0,30],[24,56,23],[25,0,32],[25,57,22],[26,0,34],[26,61,18],[27,0,35],[27,66,6],[28,0,38],[29,0,41],[30,0,44]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,25],[13,29,50],[14,0,26],[14,31,48],[15,0,27],[15,33,11],[15,47,32],[16,0,29],[16,35,9],[16,48,31],[17,0,30],[17,38,8],[17,49,30],[18,0,30],[18,41,5],[18,50,29],[19,0,30],[19,44,2],[19,50,29],[20,0,28],[20,51,28],[21,0,29],[21,52,27],[22,0,28],[22,52,27],[23,0,27],[23,53,26],[24,0,28],[24,53,26],[25,0,29],[25,54,25],[26,0,31],[26,59,18],[27,0,33],[28,0,35],[29,0,38],[30,0,42]],[[0,0,74],[1,0,74],[2,0,74],[3,0,77],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,24],[13,25,54],[14,0,24],[14,28,51],[15,0,25],[15,29,13],[15,44,35],[16,0,26],[16,31,10],[16,45,34],[17,0,28],[17,34,8],[17,45,34],[18,0,28],[18,37,6],[18,46,26],[18,74,5],[19,0,28],[19,40,3],[19,47,24],[19,74,5],[20,0,26],[20,48,22],[20,78,1],[21,0,27],[21,48,20],[22,0,27],[22,49,18],[23,0,25],[23,49,17],[24,0,26],[24,50,14],[25,0,26],[25,52,10],[26,0,28],[26,57,4],[27,0,31],[28,0,33],[29,0,37],[30,0,41]],[[0,0,71],[1,0,68],[2,0,67],[3,0,66],[4,0,67],[5,0,71],[6,0,75],[7,0,77],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,24],[14,26,53],[15,0,24],[15,27,52],[16,0,25],[16,28,11],[16,42,37],[17,0,26],[17,33,6],[17,42,18],[17,63,16],[18,0,26],[18,34,6],[18,43,16],[18,66,13],[19,0,27],[19,36,4],[19,44,14],[19,69,5],[20,0,26],[20,45,12],[20,71,1],[21,0,26],[21,45,10],[22,0,26],[22,46,7],[23,0,25],[23,46,5],[24,0,25],[24,47,3],[25,0,26],[25,51,2],[26,0,28],[27,0,31],[28,0,33],[29,0,37],[30,0,43]],[[0,0,69],[1,0,68],[2,0,63],[3,0,61],[4,0,61],[5,0,60],[6,0,63],[7,0,69],[8,0,70],[9,0,72],[10,0,72],[11,0,73],[12,0,73],[13,0,79],[14,0,79],[15,0,25],[15,27,52],[16,0,25],[16,28,9],[16,39,13],[16,55,24],[17,0,26],[17,32,5],[17,40,11],[17,57,17],[18,0,26],[18,31,7],[18,41,9],[18,60,9],[19,0,26],[19,34,4],[19,42,6],[19,62,3],[20,0,26],[20,42,5],[20,63,1],[21,0,26],[21,43,2],[22,0,25],[23,0,25],[24,0,25],[24,50,5],[25,0,26],[25,53,2],[26,0,28],[27,0,31],[28,0,35],[29,0,40],[30,0,48]],[[0,0,62],[1,0,63],[2,0,63],[3,0,60],[4,0,57],[5,0,56],[6,0,57],[7,0,60],[8,0,63],[9,0,66],[10,0,66],[11,0,66],[12,0,66],[13,0,68],[13,70,5],[13,76,1],[14,0,78],[15,0,77],[16,0,27],[16,29,7],[16,38,7],[16,49,21],[17,0,26],[17,31,5],[17,38,6],[17,52,14],[18,0,26],[18,30,6],[18,39,3],[18,54,8],[19,0,26],[19,33,4],[19,40,1],[19,55,4],[20,0,26],[20,57,1],[21,0,26],[22,0,25],[23,0,25],[23,45,4],[24,0,26],[24,45,4],[25,0,27],[26,0,30],[27,0,34],[28,0,39],[29,0,46],[30,0,49]],[[0,0,58],[1,0,58],[2,0,58],[3,0,58],[4,0,57],[5,0,53],[6,0,52],[7,0,52],[8,0,57],[9,0,59],[10,0,61],[11,0,61],[12,0,61],[13,0,66],[13,67,1],[14,0,71],[15,0,70],[16,0,28],[16,29,5],[16,35,5],[16,44,20],[17,0,27],[17,32,2],[17,37,2],[17,47,14],[18,0,27],[18,31,4],[18,49,8],[19,0,27],[19,30,5],[19,51,4],[20,0,27],[20,52,2],[21,0,27],[22,0,27],[22,41,1],[23,0,27],[24,0,28],[25,0,29],[26,0,33],[27,0,38],[28,0,44],[29,0,48],[30,0,50]],[[0,0,55],[1,0,54],[2,0,54],[3,0,54],[4,0,54],[5,0,53],[6,0,50],[7,0,48],[8,0,51],[9,0,55],[10,0,56],[11,0,57],[12,0,56],[13,0,58],[13,61,2],[14,0,66],[14,75,4],[15,0,38],[15,39,26],[15,75,4],[16,0,36],[16,40,19],[17,0,29],[17,31,2],[17,43,13],[18,0,28],[18,45,8],[19,0,28],[19,47,4],[20,0,28],[20,49,1],[21,0,28],[22,0,24],[23,0,29],[24,0,30],[25,0,31],[26,0,38],[27,0,41],[28,0,45],[29,0,48],[30,0,48]],[[0,0,52],[1,0,51],[2,0,51],[3,0,51],[4,0,51],[4,78,1],[5,0,51],[5,77,2],[6,0,49],[7,0,46],[8,0,45],[8,78,1],[9,0,49],[9,78,1],[10,0,52],[10,78,1],[11,0,53],[12,0,53],[13,0,53],[13,75,4],[14,0,62],[14,69,10],[15,0,35],[15,36,25],[15,70,9],[16,0,33],[16,37,18],[16,74,5],[17,0,31],[17,40,12],[18,0,29],[18,42,7],[19,0,29],[19,44,3],[20,0,27],[21,0,25],[22,0,21],[23,0,27],[24,0,31],[25,0,37],[26,0,40],[27,0,41],[28,0,45],[29,0,46],[30,0,54]],[[0,0,51],[1,0,49],[2,0,48],[3,0,48],[4,0,48],[5,0,48],[5,73,2],[6,0,48],[6,73,6],[7,0,45],[7,75,4],[8,0,42],[8,74,5],[9,0,46],[9,73,6],[10,0,50],[10,73,6],[11,0,50],[11,74,5],[12,0,49],[12,75,4],[13,0,50],[13,70,3],[13,74,5],[14,0,59],[14,66,13],[15,0,32],[15,33,25],[15,66,13],[16,0,31],[16,35,17],[16,70,9],[17,0,29],[17,38,11],[17,75,4],[18,0,28],[18,40,7],[18,77,2],[19,0,27],[19,42,3],[19,78,1],[20,0,25],[20,78,1],[21,0,21],[22,0,19],[22,29,3],[23,0,26],[23,28,4],[23,77,2],[24,0,33],[24,77,2],[25,0,39],[25,76,3],[26,0,39],[26,75,4],[27,0,41],[27,75,4],[28,0,45],[28,75,4],[29,0,51],[29,75,4],[30,0,51],[30,74,5]],[[0,0,50],[0,67,3],[0,77,2],[1,0,48],[1,78,1],[2,0,47],[3,0,46],[3,78,1],[4,0,46],[4,77,2],[5,0,46],[5,70,1],[5,77,2],[6,0,46],[6,70,5],[6,76,3],[7,0,44],[7,71,8],[8,0,41],[8,71,8],[9,0,43],[9,70,9],[10,0,47],[10,70,9],[11,0,48],[11,70,9],[12,0,47],[12,71,8],[13,0,47],[13,67,12],[14,0,56],[14,63,16],[15,0,30],[15,31,25],[15,63,16],[16,0,29],[16,33,17],[16,66,13],[17,0,27],[17,36,11],[17,72,7],[18,0,26],[18,38,6],[18,73,6],[19,0,25],[19,40,3],[19,74,5],[20,0,23],[20,75,4],[21,0,20],[21,28,1],[21,31,1],[21,76,3],[22,0,18],[22,27,6],[23,0,34],[23,73,4],[24,0,38],[24,73,6],[25,0,38],[25,72,7],[26,0,39],[26,71,8],[27,0,40],[27,71,8],[28,0,48],[28,71,8],[29,0,48],[29,71,8],[30,0,48],[30,66,1],[30,69,10]],[[0,0,51],[0,64,4],[0,74,5],[1,0,47],[1,65,1],[1,75,4],[2,0,45],[2,77,2],[3,0,44],[4,0,44],[4,74,5],[5,0,44],[5,74,5],[6,0,44],[6,67,3],[6,74,5],[7,0,43],[7,68,11],[8,0,40],[8,69,10],[9,0,40],[9,68,11],[10,0,45],[10,67,12],[11,0,46],[11,67,12],[12,0,46],[12,68,11],[13,0,46],[13,68,11],[14,0,54],[14,60,2],[14,63,16],[15,0,28],[15,29,24],[15,60,19],[16,0,27],[16,31,17],[16,63,16],[17,0,26],[17,35,10],[17,69,10],[18,0,24],[18,37,5],[18,70,9],[19,0,23],[19,39,2],[19,71,8],[20,0,21],[20,72,7],[21,0,19],[21,26,2],[21,29,2],[21,73,3],[21,78,1],[22,0,16],[22,19,2],[22,25,7],[23,0,35],[23,70,5],[24,0,37],[24,69,9],[25,0,37],[25,68,11],[26,0,38],[26,68,11],[27,0,39],[27,43,3],[27,68,11],[28,0,46],[28,68,11],[29,0,46],[29,68,11],[30,0,45],[30,63,16]],[[0,0,54],[0,59,7],[0,71,8],[1,0,48],[1,62,3],[1,71,8],[2,0,44],[2,73,6],[3,0,43],[3,75,4],[4,0,42],[4,73,6],[5,0,42],[5,71,8],[6,0,43],[6,65,1],[6,71,8],[7,0,42],[7,65,14],[8,0,40],[8,67,12],[9,0,38],[9,66,13],[10,0,44],[10,65,14],[11,0,45],[11,65,14],[12,0,43],[12,66,13],[13,0,44],[13,65,14],[14,0,51],[14,58,2],[14,61,18],[15,0,27],[15,28,23],[15,58,21],[16,0,25],[16,30,16],[16,60,19],[17,0,24],[17,33,10],[17,66,13],[18,0,22],[18,36,5],[18,68,11],[19,0,21],[19,38,2],[19,68,11],[20,0,19],[20,69,10],[21,0,16],[21,24,2],[21,27,2],[21,71,2],[21,77,2],[22,0,14],[22,16,4],[22,24,7],[22,32,3],[22,67,1],[23,0,36],[23,67,6],[24,0,36],[24,66,10],[25,0,36],[25,65,13],[26,0,36],[26,42,2],[26,65,14],[27,0,38],[27,41,3],[27,65,14],[28,0,44],[28,65,14],[29,0,44],[29,61,1],[29,64,15],[30,0,43],[30,61,18]],[[0,0,67],[0,69,10],[1,0,51],[1,58,6],[1,69,10],[2,0,43],[2,61,1],[2,70,9],[3,0,42],[3,71,8],[4,0,41],[4,73,6],[5,0,41],[5,69,10],[6,0,41],[6,69,10],[7,0,41],[7,63,3],[7,69,10],[8,0,39],[8,64,15],[9,0,37],[9,64,15],[10,0,39],[10,63,16],[11,0,43],[11,63,16],[12,0,42],[12,64,15],[13,0,42],[13,63,16],[14,0,49],[14,56,2],[14,59,20],[15,0,25],[15,26,24],[15,56,23],[16,0,23],[16,28,17],[16,58,21],[17,0,22],[17,31,10],[17,64,15],[18,0,20],[18,33,1],[18,36,3],[18,65,14],[19,0,19],[19,66,13],[20,0,17],[20,66,13],[21,0,14],[21,23,5],[21,69,1],[21,76,2],[22,0,20],[22,22,7],[22,30,5],[22,65,2],[23,0,36],[23,65,6],[24,0,36],[24,63,10],[25,0,35],[25,41,2],[25,63,13],[26,0,35],[26,40,3],[26,63,16],[27,0,43],[27,63,16],[28,0,43],[28,63,16],[29,0,42],[29,58,21],[30,0,41],[30,59,20]],[[0,0,79],[1,0,64],[1,67,12],[2,0,43],[2,58,3],[2,67,12],[3,0,41],[3,68,11],[4,0,40],[4,70,9],[5,0,40],[5,67,12],[6,0,39],[6,67,12],[7,0,40],[7,61,2],[7,67,12],[8,0,38],[8,61,18],[9,0,36],[9,62,17],[10,0,37],[10,61,18],[11,0,41],[11,60,19],[12,0,41],[12,61,18],[13,0,41],[13,61,18],[14,0,42],[14,43,2],[14,46,2],[14,54,1],[14,58,21],[15,0,23],[15,24,24],[15,54,25],[16,0,22],[16,26,18],[16,55,24],[17,0,20],[17,29,10],[17,62,17],[18,0,19],[18,32,6],[18,63,16],[19,0,18],[19,64,15],[20,0,15],[20,64,15],[21,0,12],[21,21,2],[21,24,2],[22,0,19],[22,20,7],[22,29,5],[22,62,3],[23,0,35],[23,62,7],[24,0,35],[24,61,11],[25,0,34],[25,39,2],[25,61,13],[25,77,2],[26,0,35],[26,39,2],[26,61,18],[27,0,41],[27,61,18],[28,0,41],[28,60,19],[29,0,40],[29,56,23],[30,0,39],[30,58,21]],[[0,0,79],[1,0,79],[2,0,46],[2,55,6],[2,65,14],[3,0,40],[3,57,1],[3,65,14],[4,0,39],[4,67,12],[5,0,38],[5,68,11],[6,0,38],[6,65,14],[7,0,38],[7,60,1],[7,65,14],[8,0,38],[8,59,20],[9,0,35],[9,61,18],[10,0,36],[10,59,20],[11,0,40],[11,59,20],[12,0,40],[12,59,20],[13,0,40],[13,60,19],[14,0,41],[14,44,2],[14,53,1],[14,56,23],[15,0,47],[15,52,27],[16,0,20],[16,24,19],[16,53,26],[17,0,19],[17,28,10],[17,60,19],[18,0,18],[18,30,6],[18,61,18],[19,0,16],[19,32,2],[19,62,17],[20,0,13],[20,62,16],[21,0,10],[21,19,6],[22,0,26],[22,27,5],[22,60,4],[23,0,34],[23,60,7],[24,0,34],[24,59,11],[24,77,2],[25,0,34],[25,38,2],[25,59,20],[26,0,34],[26,38,2],[26,59,20],[27,0,40],[27,58,21],[28,0,40],[28,55,24],[29,0,39],[29,55,24],[30,0,37],[30,56,23]],[[0,0,79],[1,0,79],[2,0,61],[2,63,16],[3,0,40],[3,55,3],[3,63,16],[4,0,38],[4,64,15],[5,0,37],[5,66,13],[6,0,37],[6,63,16],[7,0,37],[7,57,1],[7,63,16],[8,0,37],[8,57,4],[8,63,16],[9,0,34],[9,59,20],[10,0,34],[10,58,21],[11,0,38],[11,57,22],[12,0,39],[12,58,21],[13,0,38],[13,58,21],[14,0,42],[14,43,2],[14,55,24],[15,0,20],[15,21,24],[15,51,28],[16,0,19],[16,23,19],[16,52,27],[17,0,17],[17,26,11],[17,59,20],[18,0,16],[18,29,6],[18,59,20],[19,0,14],[19,31,3],[19,60,19],[20,0,12],[20,61,14],[21,0,8],[21,18,2],[21,21,2],[22,0,25],[22,26,5],[22,58,5],[23,0,34],[23,58,8],[24,0,33],[24,57,12],[24,73,5],[25,0,33],[25,37,2],[25,57,22],[26,0,33],[26,37,2],[26,57,22],[27,0,39],[27,56,23],[28,0,38],[28,53,26],[29,0,37],[29,53,26],[30,0,36],[30,55,24]],[[0,0,79],[1,0,79],[2,0,60],[2,61,18],[3,0,40],[3,53,4],[3,61,18],[4,0,37],[4,62,17],[5,0,37],[5,64,15],[6,0,36],[6,63,16],[7,0,36],[7,61,18],[8,0,36],[8,56,3],[8,61,18],[9,0,34],[9,57,22],[10,0,33],[10,57,22],[11,0,37],[11,56,23],[12,0,38],[12,56,23],[13,0,37],[13,57,22],[14,0,41],[14,42,2],[14,53,26],[15,0,19],[15,20,24],[15,49,30],[16,0,18],[16,21,20],[16,50,29],[17,0,17],[17,25,11],[17,57,22],[18,0,15],[18,27,7],[18,58,21],[19,0,13],[19,30,3],[19,58,18],[20,0,11],[20,59,14],[21,0,7],[21,16,3],[21,20,2],[22,0,14],[22,15,8],[22,25,5],[22,57,5],[23,0,34],[23,56,9],[24,0,33],[24,55,12],[24,70,6],[25,0,32],[25,36,2],[25,55,24],[26,0,35],[26,36,2],[26,55,24],[27,0,38],[27,52,27],[28,0,37],[28,52,27],[29,0,36],[29,53,26],[30,0,35],[30,53,26]],[[0,0,79],[1,0,79],[2,0,79],[3,0,43],[3,50,7],[3,60,19],[4,0,37],[4,53,1],[4,60,19],[5,0,36],[5,61,18],[6,0,35],[6,63,16],[7,0,35],[7,59,20],[8,0,35],[8,54,3],[8,60,19],[9,0,34],[9,55,24],[10,0,32],[10,56,23],[11,0,36],[11,54,25],[12,0,37],[12,55,24],[13,0,36],[13,55,24],[14,0,40],[14,41,2],[14,52,27],[15,0,43],[15,48,31],[16,0,16],[16,19,19],[16,49,30],[17,0,16],[17,23,12],[17,56,23],[18,0,14],[18,26,7],[18,56,21],[19,0,12],[19,29,4],[19,57,17],[20,0,9],[20,58,2],[20,62,8],[21,0,6],[21,15,6],[21,55,2],[22,0,4],[22,5,7],[22,14,8],[22,23,6],[22,55,6],[23,0,33],[23,54,10],[24,0,32],[24,54,21],[24,76,3],[25,0,32],[25,54,25],[26,0,37],[26,53,26],[27,0,36],[27,50,29],[28,0,36],[28,50,29],[29,0,35],[29,52,27],[30,0,34],[30,52,27]],[[0,0,79],[1,0,79],[2,0,79],[3,0,57],[3,58,21],[4,0,36],[4,51,2],[4,59,20],[5,0,35],[5,59,20],[6,0,34],[6,61,18],[7,0,34],[7,58,21],[8,0,34],[8,53,2],[8,58,21],[9,0,33],[9,54,25],[10,0,31],[10,53,26],[11,0,36],[11,53,26],[12,0,36],[12,53,26],[13,0,35],[13,52,27],[14,0,39],[14,40,2],[14,47,32],[15,0,41],[15,46,33],[16,0,15],[16,19,16],[16,49,30],[17,0,14],[17,22,11],[17,54,25],[18,0,13],[18,25,7],[18,55,19],[19,0,11],[19,28,4],[19,55,16],[20,0,8],[20,57,1],[20,64,1],[21,0,5],[21,14,6],[21,54,3],[22,0,3],[22,5,6],[22,13,15],[22,30,3],[22,53,7],[23,0,32],[23,53,10],[23,67,4],[23,75,4],[24,0,32],[24,53,26],[25,0,32],[25,53,26],[26,0,36],[26,49,1],[26,51,28],[27,0,35],[27,49,30],[28,0,34],[28,50,29],[29,0,33],[29,51,28],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,50,2],[4,57,22],[5,0,34],[5,58,21],[6,0,33],[6,59,20],[7,0,33],[7,56,23],[8,0,33],[8,52,2],[8,57,22],[9,0,32],[9,52,27],[10,0,30],[10,52,27],[11,0,35],[11,51,28],[12,0,35],[12,53,26],[13,0,34],[13,51,28],[14,0,39],[14,45,34],[15,0,15],[15,16,23],[15,45,34],[16,0,14],[16,18,15],[16,51,26],[16,78,1],[17,0,13],[17,21,11],[17,53,22],[18,0,11],[18,24,7],[18,54,17],[19,0,9],[19,54,13],[20,0,7],[21,0,4],[21,12,7],[21,23,2],[21,30,2],[21,53,3],[22,0,2],[22,4,6],[22,11,16],[22,29,3],[22,52,7],[23,0,32],[23,52,10],[23,64,6],[23,72,5],[23,78,1],[24,0,31],[24,52,27],[25,0,33],[25,52,27],[26,0,34],[26,48,31],[27,0,34],[27,48,31],[28,0,33],[28,49,30],[29,0,32],[29,49,30],[30,0,33],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,49,2],[4,56,23],[5,0,33],[5,56,23],[6,0,32],[6,58,21],[7,0,32],[7,55,24],[8,0,32],[8,50,3],[8,55,24],[9,0,30],[9,51,28],[10,0,30],[10,50,29],[11,0,34],[11,50,29],[12,0,34],[12,51,28],[13,0,34],[13,48,31],[14,0,39],[14,44,35],[15,0,13],[15,15,24],[15,44,35],[16,0,12],[16,17,15],[16,51,23],[16,76,3],[17,0,11],[17,20,11],[17,52,20],[17,78,1],[18,0,9],[18,23,7],[18,53,15],[19,0,8],[19,54,10],[20,0,5],[20,12,1],[20,15,1],[21,0,2],[21,11,7],[21,20,4],[21,28,3],[21,52,4],[22,0,1],[22,2,30],[22,51,7],[22,64,2],[22,71,4],[22,77,2],[23,0,31],[23,51,28],[24,0,31],[24,51,28],[25,0,33],[25,51,28],[26,0,33],[26,47,32],[27,0,32],[27,47,32],[28,0,31],[28,48,31],[29,0,32],[29,48,31],[30,0,31],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,48,2],[4,55,24],[5,0,32],[5,55,24],[6,0,32],[6,57,22],[7,0,32],[7,54,25],[8,0,32],[8,50,2],[8,54,25],[9,0,29],[9,51,28],[10,0,30],[10,49,30],[11,0,33],[11,49,30],[12,0,33],[12,50,29],[13,0,33],[13,34,1],[13,47,32],[14,0,38],[14,43,36],[15,0,12],[15,14,24],[15,43,36],[16,0,11],[16,16,15],[16,50,22],[16,75,4],[17,0,10],[17,20,10],[17,51,18],[17,76,3],[18,0,8],[18,22,8],[18,52,14],[18,77,2],[19,0,6],[19,53,1],[19,56,6],[20,0,4],[20,11,1],[20,13,2],[21,0,2],[21,10,7],[21,19,4],[21,27,4],[21,50,6],[22,1,30],[22,50,8],[22,61,4],[22,68,5],[22,74,3],[23,0,31],[23,51,27],[24,0,31],[24,51,28],[25,0,33],[25,46,33],[26,0,32],[26,46,33],[27,0,31],[27,47,32],[28,0,30],[28,47,32],[29,0,31],[29,47,32],[30,0,30],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,47,3],[4,54,25],[5,0,32],[5,54,25],[6,0,31],[6,56,23],[7,0,31],[7,53,26],[8,0,31],[8,49,2],[8,53,26],[9,0,28],[9,50,29],[10,0,32],[10,49,30],[11,0,32],[11,48,31],[12,0,32],[12,49,30],[13,0,34],[13,46,33],[14,0,38],[14,42,37],[15,0,11],[15,12,25],[15,43,36],[16,0,9],[16,15,15],[16,50,21],[16,73,6],[17,0,8],[17,18,11],[17,51,17],[17,74,5],[18,0,7],[18,21,7],[18,51,13],[18,76,3],[19,0,5],[19,56,4],[19,77,2],[20,0,3],[20,9,2],[20,12,2],[20,28,2],[21,8,8],[21,18,5],[21,25,6],[21,50,5],[22,0,31],[22,45,1],[22,50,6],[22,59,5],[22,66,5],[22,72,4],[23,0,31],[23,50,27],[24,0,31],[24,45,2],[24,50,29],[25,0,32],[25,45,34],[26,0,32],[26,45,34],[27,0,30],[27,46,33],[28,0,30],[28,46,33],[29,0,30],[29,46,33],[30,0,29],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,32],[4,47,3],[4,53,26],[5,0,32],[5,53,26],[6,0,31],[6,55,24],[7,0,31],[7,52,27],[8,0,31],[8,48,2],[8,52,27],[9,0,28],[9,49,30],[10,0,30],[10,48,31],[11,0,32],[11,48,31],[12,0,31],[12,48,31],[13,0,33],[13,47,32],[14,0,37],[14,42,37],[15,0,10],[15,11,26],[15,42,37],[16,0,8],[16,14,16],[16,49,20],[16,71,8],[17,0,7],[17,17,12],[17,50,17],[17,73,6],[18,0,6],[18,20,9],[18,51,12],[18,74,5],[19,0,4],[19,51,1],[19,54,5],[19,76,3],[20,0,1],[20,8,2],[20,11,2],[20,27,2],[20,78,1],[21,7,8],[21,17,4],[21,24,6],[21,49,5],[22,0,31],[22,50,5],[22,58,5],[22,65,5],[22,71,3],[23,0,31],[23,45,2],[23,50,25],[24,0,31],[24,45,2],[24,50,29],[25,0,32],[25,45,34],[26,0,31],[26,45,34],[27,0,30],[27,46,33],[28,0,30],[28,46,33],[29,0,30],[29,46,33],[30,0,29],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,46,4],[4,52,27],[5,0,32],[5,47,1],[5,53,26],[6,0,31],[6,54,25],[7,0,31],[7,52,27],[8,0,31],[8,49,1],[8,52,27],[9,0,28],[9,48,31],[10,0,31],[10,49,30],[11,0,32],[11,47,32],[12,0,31],[12,48,31],[13,0,34],[13,46,33],[14,0,37],[14,41,38],[15,0,9],[15,10,27],[15,41,38],[16,0,8],[16,12,18],[16,49,20],[16,70,9],[17,0,7],[17,16,13],[17,50,17],[17,71,8],[18,0,5],[18,19,9],[18,51,12],[18,73,6],[19,0,3],[19,52,7],[19,74,5],[20,0,1],[20,27,2],[20,76,3],[21,6,8],[21,17,3],[21,24,6],[21,49,4],[22,0,4],[22,5,25],[22,50,4],[22,57,5],[22,64,5],[22,70,3],[23,0,30],[23,50,24],[24,0,31],[24,45,2],[24,50,29],[25,0,32],[25,45,34],[26,0,31],[26,45,34],[27,0,30],[27,45,34],[28,0,30],[28,46,33],[29,0,30],[29,45,34],[30,0,29],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,45,6],[4,52,27],[5,0,32],[5,47,2],[5,52,27],[6,0,31],[6,54,25],[7,0,31],[7,54,25],[8,0,31],[8,52,27],[9,0,28],[9,48,31],[10,0,28],[10,50,29],[11,0,32],[11,48,31],[12,0,31],[12,47,32],[13,0,31],[13,47,32],[14,0,37],[14,41,38],[15,0,9],[15,10,27],[15,41,38],[16,0,8],[16,11,19],[16,47,32],[17,0,6],[17,15,14],[17,50,17],[17,70,9],[18,0,4],[18,18,10],[18,50,13],[18,71,8],[19,0,2],[19,51,8],[19,73,6],[20,27,2],[20,75,4],[21,6,7],[21,17,2],[21,24,5],[21,49,2],[21,77,2],[22,0,2],[22,4,26],[22,49,5],[22,57,3],[22,64,4],[22,69,3],[23,0,30],[23,50,23],[24,0,30],[24,45,2],[24,50,29],[25,0,32],[25,44,35],[26,0,31],[26,44,35],[27,0,30],[27,45,34],[28,0,30],[28,46,33],[29,0,30],[29,45,34],[30,0,28],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,42,9],[4,52,27],[5,0,32],[5,46,3],[5,52,27],[6,0,31],[6,53,26],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,28],[9,48,2],[9,51,28],[10,0,28],[10,49,30],[11,0,31],[11,48,31],[12,0,31],[12,47,32],[13,0,31],[13,47,32],[14,0,36],[14,41,2],[14,44,35],[15,0,37],[15,41,38],[16,0,7],[16,9,21],[16,45,34],[17,0,6],[17,14,15],[17,49,18],[17,69,10],[18,0,4],[18,17,11],[18,50,13],[18,70,9],[19,0,2],[19,21,2],[19,27,1],[19,51,8],[19,71,8],[20,28,1],[20,73,6],[21,5,3],[21,9,3],[21,24,5],[21,49,1],[21,75,4],[22,4,16],[22,22,8],[22,45,1],[22,49,4],[22,57,1],[22,64,3],[22,69,1],[22,78,1],[23,0,30],[23,50,11],[23,62,10],[24,0,30],[24,45,1],[24,50,23],[24,74,5],[25,0,31],[25,44,3],[25,49,30],[26,0,31],[26,44,35],[27,0,30],[27,44,35],[28,0,30],[28,46,33],[29,0,30],[29,45,34],[30,0,28],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,46,4],[5,52,27],[6,0,31],[6,52,27],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,30],[9,51,28],[10,0,28],[10,49,30],[11,0,31],[11,49,30],[12,0,31],[12,47,32],[13,0,31],[13,47,32],[14,0,34],[14,35,2],[14,41,2],[14,45,34],[15,0,37],[15,41,38],[16,0,6],[16,9,23],[16,43,36],[17,0,5],[17,12,17],[17,49,17],[17,68,11],[18,0,4],[18,15,13],[18,50,13],[18,69,10],[19,0,2],[19,19,8],[19,50,10],[19,70,9],[20,53,2],[20,72,7],[21,5,2],[21,8,3],[21,25,4],[21,74,5],[22,3,9],[22,13,6],[22,22,8],[22,45,1],[22,49,3],[22,76,3],[23,0,30],[23,44,1],[23,50,3],[23,54,6],[23,61,9],[24,0,30],[24,44,2],[24,50,21],[24,74,5],[25,0,31],[25,44,3],[25,50,29],[26,0,31],[26,44,35],[27,0,30],[27,44,35],[28,0,30],[28,45,34],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,46,4],[5,52,27],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,53,26],[8,0,31],[8,53,26],[9,0,31],[9,48,1],[9,51,28],[10,0,28],[10,48,31],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,33],[14,36,1],[14,45,1],[14,47,32],[15,0,37],[15,41,38],[16,0,6],[16,8,27],[16,41,38],[17,0,5],[17,11,18],[17,48,31],[18,0,3],[18,14,14],[18,49,15],[18,68,11],[19,0,1],[19,18,10],[19,50,10],[19,69,10],[20,51,5],[20,71,8],[21,4,2],[21,8,1],[21,25,4],[21,72,7],[22,3,9],[22,14,4],[22,22,8],[22,49,2],[22,75,4],[23,0,1],[23,2,28],[23,44,2],[23,50,2],[23,54,5],[23,61,4],[23,66,3],[23,77,2],[24,0,30],[24,44,2],[24,50,20],[24,74,3],[25,0,31],[25,44,3],[25,50,29],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,30],[28,45,34],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,44,7],[5,52,27],[6,0,31],[6,47,1],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,54,25],[9,0,31],[9,51,28],[10,0,28],[10,48,2],[10,51,28],[11,0,31],[11,49,30],[12,0,31],[12,47,32],[13,0,30],[13,47,32],[14,0,33],[14,45,34],[15,0,36],[15,41,38],[16,0,6],[16,7,29],[16,41,38],[17,0,5],[17,10,19],[17,48,31],[18,0,3],[18,14,14],[18,49,15],[18,67,12],[19,0,1],[19,17,11],[19,50,10],[19,68,11],[20,50,6],[20,70,9],[21,25,4],[21,71,8],[22,3,8],[22,13,5],[22,22,8],[22,73,6],[23,2,28],[23,44,2],[23,49,3],[23,54,5],[23,60,8],[23,76,3],[24,0,30],[24,44,2],[24,50,19],[24,78,1],[25,0,31],[25,44,2],[25,50,29],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,45,34],[6,0,31],[6,46,3],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,31],[9,51,28],[10,0,28],[10,48,2],[10,51,28],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,46,33],[14,0,33],[14,45,34],[15,0,36],[15,40,39],[16,0,5],[16,7,29],[16,40,39],[17,0,4],[17,10,19],[17,47,32],[18,0,3],[18,13,15],[18,49,15],[18,66,13],[19,0,1],[19,16,12],[19,50,9],[19,68,11],[20,50,6],[20,69,10],[21,4,1],[21,7,1],[21,25,4],[21,71,8],[22,2,9],[22,13,4],[22,21,9],[22,49,1],[22,73,6],[23,1,29],[23,44,2],[23,49,3],[23,53,5],[23,60,4],[23,65,3],[23,75,4],[24,0,30],[24,44,2],[24,50,19],[24,77,2],[25,0,31],[25,44,2],[25,50,29],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,45,34],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,30],[9,51,28],[10,0,28],[10,48,2],[10,51,28],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,33],[14,45,34],[15,0,36],[15,41,38],[16,0,5],[16,7,29],[16,41,38],[17,0,4],[17,11,18],[17,47,32],[18,0,2],[18,14,14],[18,49,15],[18,67,12],[19,17,10],[19,50,9],[19,67,12],[20,50,5],[20,69,10],[21,3,2],[21,6,3],[21,24,5],[21,70,9],[22,2,9],[22,12,5],[22,21,9],[22,72,7],[23,1,29],[23,44,2],[23,49,2],[23,53,5],[23,60,8],[23,74,5],[24,0,30],[24,44,2],[24,50,18],[24,77,2],[25,0,31],[25,44,2],[25,50,29],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,30],[9,51,28],[10,0,28],[10,48,31],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,33],[14,45,34],[15,0,36],[15,40,39],[16,0,5],[16,7,28],[16,41,38],[17,0,3],[17,11,18],[17,48,17],[17,66,13],[18,0,2],[18,14,14],[18,49,14],[18,67,12],[19,17,10],[19,50,8],[19,68,11],[20,50,4],[20,69,10],[21,3,2],[21,6,3],[21,24,5],[21,70,9],[22,2,9],[22,12,5],[22,21,9],[22,72,7],[23,0,30],[23,44,2],[23,49,2],[23,52,6],[23,60,7],[23,74,5],[24,0,30],[24,44,2],[24,49,19],[24,72,1],[24,76,3],[25,0,31],[25,44,2],[25,49,30],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,30],[9,51,28],[10,0,27],[10,49,30],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,33],[14,45,34],[15,0,5],[15,6,30],[15,40,39],[16,0,5],[16,7,27],[16,41,38],[17,0,3],[17,11,18],[17,47,18],[17,66,13],[18,0,1],[18,14,14],[18,49,13],[18,66,13],[19,17,10],[19,50,8],[19,68,11],[20,51,2],[20,69,10],[21,2,3],[21,6,3],[21,23,6],[21,71,8],[22,1,9],[22,11,6],[22,20,10],[22,72,7],[23,0,30],[23,44,1],[23,49,2],[23,52,6],[23,59,9],[23,74,5],[24,0,30],[24,44,2],[24,49,19],[24,72,2],[24,77,2],[25,0,31],[25,44,2],[25,49,30],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,30],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,29],[9,51,28],[10,0,27],[10,49,30],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,29],[13,47,32],[14,0,33],[14,34,1],[14,45,34],[15,0,5],[15,6,30],[15,40,39],[16,0,4],[16,7,26],[16,41,38],[17,0,3],[17,11,17],[17,47,18],[17,66,13],[18,0,1],[18,14,14],[18,49,13],[18,67,12],[19,17,9],[19,50,8],[19,68,11],[20,69,10],[21,2,3],[21,6,3],[21,23,6],[21,71,8],[22,1,9],[22,11,6],[22,20,10],[22,48,2],[22,73,6],[23,0,30],[23,49,19],[23,75,4],[24,0,30],[24,44,2],[24,49,20],[24,71,3],[24,77,2],[25,0,31],[25,44,2],[25,49,30],[26,0,31],[26,44,35],[27,0,30],[27,44,35],[28,0,30],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,39,40],[5,0,32],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,28],[9,51,28],[10,0,28],[10,48,31],[11,0,31],[11,47,1],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,35],[14,42,1],[14,45,34],[15,0,5],[15,6,30],[15,40,39],[16,0,4],[16,7,25],[16,41,38],[17,0,2],[17,11,17],[17,47,18],[17,66,13],[18,14,14],[18,49,12],[18,67,12],[19,17,9],[19,49,8],[19,68,11],[20,27,1],[20,69,10],[21,2,7],[21,23,6],[21,71,8],[22,0,17],[22,20,9],[22,48,2],[22,62,2],[22,65,2],[22,73,6],[23,0,29],[23,48,20],[23,76,3],[24,0,29],[24,44,2],[24,49,20],[24,70,5],[24,78,1],[25,0,30],[25,43,3],[25,49,30],[26,0,31],[26,43,36],[27,0,30],[27,44,35],[28,0,30],[28,45,34],[29,0,29],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,40,39],[5,0,32],[5,46,5],[5,52,27],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,27],[9,48,1],[9,51,28],[10,0,28],[10,48,31],[11,0,31],[11,47,1],[11,49,30],[12,0,30],[12,46,33],[13,0,30],[13,46,33],[14,0,35],[14,42,1],[14,45,34],[15,0,5],[15,6,30],[15,40,39],[16,0,4],[16,7,24],[16,41,38],[17,0,2],[17,11,17],[17,47,17],[17,66,13],[18,14,13],[18,48,12],[18,67,12],[19,17,9],[19,49,8],[19,68,11],[20,27,1],[20,70,9],[21,1,3],[21,5,4],[21,22,7],[21,72,7],[22,0,17],[22,19,10],[22,48,2],[22,54,2],[22,62,2],[22,65,2],[22,74,5],[23,0,29],[23,48,20],[23,76,3],[24,0,29],[24,43,2],[24,49,27],[24,78,1],[25,0,30],[25,43,3],[25,49,30],[26,0,31],[26,43,36],[27,0,30],[27,44,35],[28,0,30],[28,45,34],[29,0,29],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,41,38],[5,0,31],[5,46,5],[5,52,27],[6,0,31],[6,52,27],[7,0,30],[7,52,27],[8,0,31],[8,53,26],[9,0,27],[9,48,1],[9,51,28],[10,0,28],[10,48,31],[11,0,31],[11,47,1],[11,49,30],[12,0,30],[12,47,32],[13,0,30],[13,46,33],[14,0,35],[14,43,36],[15,0,5],[15,6,30],[15,40,39],[16,0,4],[16,7,24],[16,42,37],[17,0,2],[17,11,17],[17,47,17],[17,66,13],[18,14,13],[18,48,12],[18,67,12],[19,17,9],[19,49,8],[19,68,11],[20,26,2],[20,70,9],[21,1,3],[21,5,4],[21,22,6],[21,72,7],[22,0,17],[22,19,10],[22,48,3],[22,54,2],[22,61,3],[22,65,2],[22,74,5],[23,0,29],[23,43,2],[23,48,20],[23,76,3],[24,0,29],[24,43,2],[24,49,28],[25,0,30],[25,43,3],[25,49,30],[26,0,31],[26,43,36],[27,0,30],[27,44,35],[28,0,30],[28,45,34],[29,0,29],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,41,38],[5,0,31],[5,46,5],[5,52,27],[6,0,31],[6,47,1],[6,52,27],[7,0,30],[7,52,27],[8,0,31],[8,54,25],[9,0,27],[9,48,1],[9,51,28],[10,0,28],[10,48,31],[11,0,30],[11,47,1],[11,49,30],[12,0,30],[12,46,33],[13,0,30],[13,46,33],[14,0,33],[14,34,2],[14,40,1],[14,43,36],[15,0,4],[15,6,30],[15,40,39],[16,0,4],[16,8,23],[16,41,38],[17,0,2],[17,11,17],[17,47,17],[17,66,13],[18,13,14],[18,48,12],[18,67,12],[19,17,9],[19,50,6],[19,69,10],[20,26,2],[20,70,9],[21,1,3],[21,5,4],[21,22,6],[21,72,7],[22,0,17],[22,19,10],[22,48,3],[22,54,3],[22,61,3],[22,65,3],[22,74,5],[23,0,29],[23,43,2],[23,48,21],[23,77,2],[24,0,29],[24,43,2],[24,49,28],[25,0,29],[25,43,2],[25,49,30],[26,0,31],[26,43,36],[27,0,30],[27,44,35],[28,0,29],[28,45,34],[29,0,29],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,41,38],[5,0,31],[5,46,5],[5,52,27],[6,0,31],[6,47,1],[6,52,27],[7,0,30],[7,52,27],[8,0,30],[8,53,26],[9,0,28],[9,51,28],[10,0,28],[10,48,31],[11,0,30],[11,47,1],[11,49,30],[12,0,30],[12,46,33],[13,0,31],[13,46,33],[14,0,33],[14,35,1],[14,44,35],[15,0,5],[15,6,30],[15,40,39],[16,0,4],[16,8,24],[16,41,38],[17,0,2],[17,11,17],[17,47,17],[17,67,12],[18,13,14],[18,48,12],[18,67,12],[19,17,9],[19,49,7],[19,69,10],[20,70,9],[21,1,3],[21,5,4],[21,22,6],[21,72,7],[22,0,17],[22,19,10],[22,48,3],[22,54,3],[22,61,3],[22,65,3],[22,75,4],[23,0,29],[23,43,2],[23,48,21],[23,77,2],[24,0,29],[24,43,2],[24,49,28],[25,0,29],[25,43,2],[25,49,30],[26,0,31],[26,43,36],[27,0,30],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,38,41],[5,0,31],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,30],[7,52,27],[8,0,30],[8,53,26],[9,0,27],[9,51,28],[10,0,27],[10,48,31],[11,0,30],[11,49,30],[12,0,30],[12,46,33],[13,0,29],[13,46,33],[14,0,32],[14,35,1],[14,46,33],[15,0,5],[15,6,29],[15,40,39],[16,0,4],[16,7,27],[16,40,39],[17,0,2],[17,11,17],[17,47,17],[17,66,13],[18,13,14],[18,48,12],[18,67,12],[19,16,10],[19,49,8],[19,69,10],[20,70,9],[21,1,3],[21,5,4],[21,23,5],[21,72,7],[22,0,16],[22,20,9],[22,48,2],[22,54,2],[22,62,2],[22,66,2],[22,75,4],[23,0,29],[23,43,2],[23,48,21],[23,77,2],[24,0,29],[24,43,2],[24,48,29],[25,0,29],[25,43,2],[25,49,30],[26,0,30],[26,43,36],[27,0,30],[27,44,35],[28,0,29],[28,45,34],[29,0,30],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,44,35],[6,0,31],[6,46,3],[6,52,27],[7,0,30],[7,52,27],[8,0,30],[8,54,25],[9,0,28],[9,51,28],[10,0,27],[10,48,1],[10,51,28],[11,0,29],[11,49,30],[12,0,30],[12,47,32],[13,0,29],[13,46,33],[14,0,32],[14,46,33],[15,0,36],[15,40,39],[16,0,4],[16,7,29],[16,40,39],[17,0,3],[17,10,18],[17,45,19],[17,66,13],[18,0,1],[18,13,14],[18,47,14],[18,67,12],[19,15,12],[19,48,9],[19,68,11],[20,70,9],[21,2,2],[21,5,3],[21,24,4],[21,72,7],[22,0,10],[22,11,5],[22,21,7],[22,48,2],[22,66,1],[22,74,5],[23,0,29],[23,48,10],[23,59,10],[23,77,2],[24,0,29],[24,43,2],[24,48,22],[24,72,4],[25,0,29],[25,43,2],[25,49,30],[26,0,31],[26,43,36],[27,0,31],[27,43,36],[28,0,29],[28,44,35],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,43,36],[6,0,31],[6,46,3],[6,52,27],[7,0,31],[7,52,27],[8,0,30],[8,53,26],[9,0,30],[9,51,28],[10,0,27],[10,51,28],[11,0,29],[11,48,31],[12,0,30],[12,47,32],[13,0,29],[13,46,33],[14,0,32],[14,46,33],[15,0,36],[15,40,2],[15,43,36],[16,0,5],[16,7,29],[16,40,39],[17,0,4],[17,10,19],[17,44,21],[17,66,13],[18,0,1],[18,13,15],[18,47,15],[18,67,12],[19,15,12],[19,48,10],[19,68,11],[20,24,1],[20,70,9],[21,2,3],[21,6,2],[21,25,3],[21,72,7],[22,1,9],[22,11,5],[22,21,7],[22,48,2],[22,74,5],[23,0,29],[23,48,10],[23,59,10],[23,76,3],[24,0,29],[24,43,2],[24,48,22],[25,0,29],[25,43,2],[25,49,30],[26,0,31],[26,43,36],[27,0,31],[27,43,36],[28,0,30],[28,44,35],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,44,35],[6,0,31],[6,46,4],[6,52,27],[7,0,31],[7,52,27],[8,0,30],[8,53,26],[9,0,30],[9,51,28],[10,0,27],[10,51,28],[11,0,30],[11,48,31],[12,0,30],[12,47,32],[13,0,29],[13,46,33],[14,0,32],[14,47,32],[15,0,36],[15,40,39],[16,0,6],[16,8,28],[16,40,39],[17,0,4],[17,11,18],[17,45,20],[17,67,12],[18,0,2],[18,13,15],[18,48,14],[18,67,12],[19,16,11],[19,48,10],[19,69,10],[20,24,1],[20,70,9],[21,3,2],[21,6,3],[21,25,3],[21,72,7],[22,1,9],[22,12,4],[22,21,7],[22,48,2],[22,74,5],[23,0,29],[23,48,11],[23,60,9],[23,76,3],[24,0,29],[24,43,2],[24,48,22],[25,0,29],[25,43,2],[25,49,30],[26,0,31],[26,43,36],[27,0,31],[27,44,35],[28,0,30],[28,45,34],[29,0,30],[29,45,34],[30,0,30],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,44,35],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,30],[9,51,28],[10,0,28],[10,48,2],[10,51,28],[11,0,30],[11,49,30],[12,0,31],[12,46,33],[13,0,29],[13,46,33],[14,0,32],[14,47,32],[15,0,36],[15,40,39],[16,0,6],[16,8,28],[16,40,39],[17,0,4],[17,12,17],[17,47,18],[17,67,12],[18,0,2],[18,14,14],[18,48,13],[18,68,11],[19,17,10],[19,49,9],[19,69,10],[20,71,8],[21,3,3],[21,7,3],[21,25,3],[21,73,6],[22,0,1],[22,2,9],[22,12,5],[22,21,8],[22,48,3],[22,55,2],[22,63,2],[22,66,2],[22,75,4],[23,0,29],[23,48,21],[23,77,2],[24,0,29],[24,48,23],[24,73,2],[25,0,29],[25,44,1],[25,49,30],[26,0,31],[26,44,35],[27,0,31],[27,44,35],[28,0,30],[28,46,33],[29,0,31],[29,46,33],[30,0,30],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,32],[5,46,33],[6,0,31],[6,47,2],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,53,26],[9,0,30],[9,51,28],[10,0,28],[10,49,1],[10,51,28],[11,0,31],[11,49,30],[12,0,31],[12,46,33],[13,0,30],[13,47,32],[14,0,33],[14,45,34],[15,0,7],[15,9,27],[15,41,38],[16,0,6],[16,10,26],[16,41,38],[17,0,5],[17,13,16],[17,48,18],[17,68,11],[18,0,3],[18,15,13],[18,49,12],[18,69,10],[19,18,9],[19,49,9],[19,70,9],[20,72,7],[21,4,7],[21,25,4],[21,74,5],[22,0,18],[22,22,7],[22,48,4],[22,55,3],[22,62,7],[22,76,3],[23,0,29],[23,48,22],[23,78,1],[24,0,29],[24,49,28],[25,0,29],[25,44,2],[25,49,30],[26,0,32],[26,44,35],[27,0,32],[27,45,34],[28,0,30],[28,46,33],[29,0,31],[29,46,33],[30,0,30],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,46,33],[6,0,31],[6,52,27],[7,0,31],[7,52,27],[8,0,31],[8,54,25],[9,0,30],[9,51,28],[10,0,28],[10,49,1],[10,51,28],[11,0,31],[11,48,31],[12,0,31],[12,47,32],[13,0,31],[13,47,32],[14,0,33],[14,41,1],[14,46,33],[15,0,8],[15,9,28],[15,41,38],[16,0,7],[16,11,24],[16,42,37],[17,0,5],[17,14,15],[17,48,18],[17,69,10],[18,0,3],[18,16,12],[18,49,12],[18,70,9],[19,19,8],[19,50,7],[19,71,8],[20,5,1],[20,73,6],[21,4,8],[21,25,4],[21,75,4],[22,0,19],[22,22,7],[22,48,5],[22,55,5],[22,62,4],[22,67,3],[22,77,2],[23,0,29],[23,48,23],[24,0,29],[24,49,30],[25,0,29],[25,49,30],[26,0,32],[26,45,34],[27,0,32],[27,46,33],[28,0,31],[28,47,32],[29,0,31],[29,46,33],[30,0,31],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,36],[4,41,38],[5,0,33],[5,46,5],[5,52,27],[6,0,31],[6,52,27],[7,0,31],[7,53,26],[8,0,31],[8,51,2],[8,54,25],[9,0,30],[9,51,28],[10,0,28],[10,49,30],[11,0,32],[11,48,31],[12,0,31],[12,47,32],[13,0,31],[13,47,32],[14,0,36],[14,44,35],[15,0,8],[15,10,27],[15,41,38],[16,0,7],[16,12,20],[16,44,23],[16,69,10],[17,0,5],[17,15,14],[17,49,16],[17,70,9],[18,0,3],[18,17,11],[18,50,11],[18,71,8],[19,0,1],[19,20,8],[19,52,5],[19,72,7],[20,5,2],[20,9,1],[20,74,5],[21,4,8],[21,16,1],[21,24,5],[21,50,2],[21,76,3],[22,0,20],[22,22,8],[22,49,5],[22,55,6],[22,62,9],[22,78,1],[23,0,29],[23,49,23],[24,0,29],[24,49,30],[25,0,29],[25,49,30],[26,0,33],[26,45,34],[27,0,32],[27,46,33],[28,0,32],[28,47,32],[29,0,32],[29,47,32],[30,0,31],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,43,36],[5,0,32],[5,46,3],[5,52,27],[6,0,31],[6,52,27],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,30],[9,49,1],[9,51,28],[10,0,28],[10,50,29],[11,0,32],[11,48,31],[12,0,32],[12,47,32],[13,0,31],[13,48,31],[14,0,37],[14,43,36],[15,0,9],[15,11,26],[15,42,37],[16,0,8],[16,13,19],[16,46,22],[16,69,10],[17,0,6],[17,16,13],[17,50,15],[17,70,9],[18,0,4],[18,18,10],[18,50,11],[18,72,7],[19,0,1],[19,22,6],[19,54,3],[19,73,6],[20,6,2],[20,9,2],[20,75,4],[21,0,1],[21,5,8],[21,16,2],[21,25,4],[21,50,3],[21,69,2],[21,77,2],[22,0,21],[22,22,8],[22,49,6],[22,56,6],[22,63,8],[23,0,30],[23,49,23],[23,75,3],[24,0,29],[24,49,30],[25,0,30],[25,49,30],[26,0,33],[26,46,33],[27,0,33],[27,47,32],[28,0,32],[28,48,31],[29,0,32],[29,47,32],[30,0,31],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,35],[4,44,35],[5,0,32],[5,46,2],[5,52,27],[6,0,31],[6,53,26],[7,0,31],[7,54,25],[8,0,31],[8,48,1],[8,52,27],[9,0,30],[9,48,31],[10,0,28],[10,50,29],[11,0,32],[11,48,31],[12,0,32],[12,47,32],[13,0,31],[13,48,31],[14,0,37],[14,42,2],[14,45,34],[15,0,10],[15,12,25],[15,42,37],[16,0,8],[16,14,18],[16,47,21],[16,70,9],[17,0,6],[17,17,12],[17,50,15],[17,71,8],[18,0,4],[18,19,10],[18,51,10],[18,72,7],[19,0,1],[19,22,5],[19,54,3],[19,74,5],[20,7,2],[20,10,2],[20,76,3],[21,0,2],[21,5,9],[21,16,3],[21,25,4],[21,50,3],[21,67,1],[21,69,2],[21,78,1],[22,0,21],[22,23,7],[22,49,6],[22,56,16],[23,0,30],[23,49,30],[24,0,29],[24,49,30],[25,0,31],[25,49,30],[26,0,33],[26,46,33],[27,0,33],[27,47,32],[28,0,32],[28,48,31],[29,0,33],[29,48,31],[30,0,32],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,39],[4,43,7],[4,52,27],[5,0,32],[5,46,2],[5,52,27],[6,0,31],[6,53,26],[7,0,31],[7,54,25],[8,0,31],[8,48,1],[8,52,27],[9,0,31],[9,48,31],[10,0,28],[10,50,29],[11,0,31],[11,48,31],[12,0,32],[12,47,32],[13,0,32],[13,48,31],[14,0,35],[14,36,1],[14,42,2],[14,45,34],[15,0,11],[15,13,24],[15,42,37],[16,0,9],[16,14,18],[16,46,23],[16,70,9],[17,0,7],[17,17,13],[17,50,15],[17,71,8],[18,0,5],[18,19,10],[18,51,11],[18,73,6],[19,0,2],[19,22,6],[19,54,4],[19,74,5],[20,7,2],[20,11,1],[20,76,3],[21,0,2],[21,6,8],[21,17,2],[21,26,3],[21,50,4],[21,67,1],[21,70,2],[22,0,22],[22,24,6],[22,49,7],[22,57,6],[22,64,9],[23,0,30],[23,49,30],[24,0,30],[24,50,29],[25,0,31],[25,50,29],[26,0,33],[26,46,33],[27,0,33],[27,47,32],[28,0,32],[28,48,31],[29,0,33],[29,48,31],[30,0,32],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,50],[4,51,28],[5,0,32],[5,46,2],[5,52,27],[6,0,31],[6,54,25],[7,0,31],[7,53,26],[8,0,31],[8,48,1],[8,52,27],[9,0,31],[9,48,31],[10,0,28],[10,50,29],[11,0,29],[11,48,31],[12,0,32],[12,47,32],[13,0,31],[13,48,31],[14,0,33],[14,44,35],[15,0,11],[15,13,25],[15,42,37],[16,0,10],[16,14,21],[16,45,24],[16,71,8],[17,0,8],[17,17,13],[17,50,16],[17,71,8],[18,0,6],[18,19,10],[18,51,11],[18,73,6],[19,0,3],[19,22,6],[19,54,5],[19,75,4],[20,8,2],[20,77,2],[21,0,2],[21,6,9],[21,27,2],[21,50,4],[21,68,1],[21,70,2],[22,0,22],[22,25,5],[22,49,7],[22,58,5],[22,64,9],[23,0,30],[23,49,30],[24,0,30],[24,50,29],[25,0,31],[25,50,29],[26,0,33],[26,46,33],[27,0,33],[27,47,32],[28,0,32],[28,48,31],[29,0,33],[29,48,31],[30,0,32],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,50],[4,51,28],[5,0,33],[5,45,2],[5,52,27],[6,0,31],[6,54,25],[7,0,31],[7,52,27],[8,0,30],[8,51,28],[9,0,31],[9,48,31],[10,0,28],[10,50,29],[11,0,28],[11,48,31],[12,0,32],[12,47,32],[13,0,32],[13,48,31],[14,0,33],[14,45,34],[15,0,12],[15,14,24],[15,42,37],[16,0,10],[16,14,23],[16,43,26],[16,71,8],[17,0,9],[17,18,12],[17,50,17],[17,72,7],[18,0,6],[18,20,9],[18,51,12],[18,73,6],[19,0,3],[19,22,6],[19,51,9],[19,75,4],[20,8,2],[20,77,2],[21,0,2],[21,7,8],[21,50,3],[21,71,2],[22,0,23],[22,25,5],[22,49,7],[22,58,6],[22,65,8],[23,0,30],[23,49,30],[24,0,30],[24,50,29],[25,0,31],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,33],[28,49,30],[29,0,33],[29,48,31],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,49],[4,51,28],[5,0,33],[5,45,3],[5,51,28],[6,0,31],[6,53,26],[7,0,31],[7,53,26],[8,0,30],[8,51,28],[9,0,31],[9,48,31],[10,0,30],[10,49,30],[11,0,28],[11,48,31],[12,0,32],[12,47,32],[13,0,32],[13,49,30],[14,0,32],[14,47,32],[15,0,38],[15,42,37],[16,0,11],[16,14,24],[16,42,37],[17,0,10],[17,18,12],[17,50,18],[17,72,7],[18,0,8],[18,20,9],[18,51,13],[18,73,6],[19,0,5],[19,22,7],[19,51,10],[19,75,4],[20,0,1],[20,77,2],[21,8,3],[21,12,4],[21,51,2],[22,0,23],[22,27,3],[22,49,7],[22,59,5],[22,66,8],[23,0,30],[23,50,25],[23,76,3],[24,0,30],[24,50,29],[25,0,30],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,33],[28,49,30],[29,0,33],[29,48,31],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,37],[5,44,4],[5,51,28],[6,0,32],[6,53,26],[7,0,31],[7,54,25],[8,0,30],[8,51,28],[9,0,31],[9,48,2],[9,51,28],[10,0,31],[10,48,31],[11,0,28],[11,49,30],[12,0,29],[12,31,1],[12,48,31],[13,0,32],[13,48,31],[14,0,32],[14,48,31],[15,0,35],[15,36,2],[15,42,37],[16,0,13],[16,15,23],[16,42,37],[17,0,11],[17,17,15],[17,49,20],[17,72,7],[18,0,9],[18,20,10],[18,50,15],[18,73,6],[19,0,6],[19,22,7],[19,51,11],[19,75,4],[20,0,3],[20,77,2],[21,9,3],[21,13,2],[21,50,3],[22,0,6],[22,7,10],[22,18,5],[22,27,3],[22,50,6],[22,60,3],[22,66,4],[22,71,3],[23,0,31],[23,50,25],[23,77,2],[24,0,30],[24,50,29],[25,0,30],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,33],[28,49,30],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,48],[5,51,28],[6,0,32],[6,45,2],[6,52,27],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,31],[9,47,2],[9,51,28],[10,0,31],[10,48,31],[11,0,28],[11,49,30],[12,0,28],[12,47,32],[13,0,32],[13,48,31],[14,0,32],[14,47,1],[14,49,30],[15,0,34],[15,36,2],[15,43,36],[16,0,13],[16,15,23],[16,42,37],[17,0,12],[17,17,18],[17,48,22],[17,72,7],[18,0,10],[18,20,10],[18,50,16],[18,73,6],[19,0,7],[19,22,7],[19,51,12],[19,75,4],[20,0,4],[20,25,4],[20,77,2],[21,10,2],[21,13,2],[21,50,2],[22,0,6],[22,8,9],[22,19,3],[22,28,2],[22,50,6],[22,61,2],[22,67,3],[22,71,3],[23,0,25],[23,26,5],[23,50,25],[23,78,1],[24,0,30],[24,50,29],[25,0,30],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,34],[28,48,31],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,48],[5,50,29],[6,0,33],[6,45,2],[6,51,28],[7,0,31],[7,53,26],[8,0,31],[8,51,28],[9,0,31],[9,47,2],[9,51,28],[10,0,31],[10,48,31],[11,0,29],[11,49,30],[12,0,28],[12,47,32],[13,0,32],[13,48,31],[14,0,32],[14,47,1],[14,49,30],[15,0,34],[15,36,2],[15,43,36],[16,0,14],[16,16,22],[16,42,37],[17,0,13],[17,17,18],[17,48,22],[17,72,7],[18,0,10],[18,20,10],[18,50,16],[18,74,5],[19,0,8],[19,22,7],[19,51,12],[19,75,4],[20,0,5],[20,25,4],[20,77,2],[21,0,1],[21,10,2],[21,14,2],[21,50,2],[22,0,6],[22,9,9],[22,20,3],[22,28,2],[22,50,6],[22,61,3],[22,67,7],[23,0,25],[23,26,5],[23,50,25],[23,78,1],[24,0,31],[24,50,29],[25,0,30],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,34],[28,48,31],[29,0,33],[29,49,30],[30,0,34],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,39],[5,43,5],[5,50,29],[6,0,32],[6,51,28],[7,0,31],[7,53,26],[8,0,31],[8,51,28],[9,0,31],[9,47,2],[9,51,28],[10,0,31],[10,48,31],[11,0,29],[11,49,30],[12,0,28],[12,48,31],[13,0,32],[13,48,31],[14,0,32],[14,47,32],[15,0,35],[15,36,2],[15,43,36],[16,0,14],[16,16,22],[16,43,36],[17,0,13],[17,18,16],[17,49,21],[17,73,6],[18,0,11],[18,20,10],[18,51,15],[18,74,5],[19,0,8],[19,23,6],[19,51,12],[19,76,3],[20,0,5],[20,26,3],[20,77,2],[21,0,2],[21,11,2],[21,14,2],[21,50,3],[22,0,6],[22,9,9],[22,20,3],[22,28,2],[22,50,7],[22,61,4],[22,67,7],[23,0,25],[23,26,5],[23,50,25],[23,77,2],[24,0,31],[24,50,29],[25,0,31],[25,50,29],[26,0,34],[26,47,32],[27,0,34],[27,47,32],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,37],[5,44,4],[5,51,28],[6,0,32],[6,51,28],[7,0,31],[7,53,26],[8,0,31],[8,51,28],[9,0,31],[9,48,2],[9,51,28],[10,0,31],[10,48,31],[11,0,28],[11,48,31],[12,0,29],[12,48,31],[13,0,33],[13,48,31],[14,0,32],[14,47,32],[15,0,38],[15,42,37],[16,0,14],[16,16,22],[16,43,28],[16,73,6],[17,0,13],[17,18,15],[17,50,19],[17,74,5],[18,0,11],[18,21,9],[18,51,14],[18,75,4],[19,0,8],[19,23,7],[19,52,10],[19,76,3],[20,0,6],[20,78,1],[21,0,2],[21,11,2],[21,14,3],[21,51,3],[21,72,1],[22,0,6],[22,9,9],[22,19,5],[22,28,3],[22,50,8],[22,61,4],[22,67,7],[23,0,31],[23,50,25],[23,76,3],[24,0,31],[24,50,29],[25,0,31],[25,50,29],[26,0,35],[26,47,32],[27,0,35],[27,47,32],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,35],[5,44,4],[5,51,28],[6,0,32],[6,51,28],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,31],[9,48,2],[9,51,28],[10,0,31],[10,49,30],[11,0,28],[11,48,31],[12,0,32],[12,48,31],[13,0,33],[13,49,30],[14,0,32],[14,46,33],[15,0,38],[15,42,37],[16,0,14],[16,16,22],[16,43,29],[16,73,6],[17,0,12],[17,19,13],[17,50,18],[17,74,5],[18,0,11],[18,21,9],[18,51,14],[18,75,4],[19,0,8],[19,23,7],[19,52,9],[19,77,2],[20,0,6],[20,78,1],[21,0,2],[21,11,2],[21,14,3],[21,51,4],[21,70,1],[21,72,2],[22,0,7],[22,9,9],[22,19,5],[22,28,3],[22,50,8],[22,61,5],[22,67,8],[23,0,31],[23,50,29],[24,0,31],[24,50,29],[25,0,31],[25,50,29],[26,0,35],[26,47,32],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,46,2],[5,51,28],[6,0,32],[6,53,26],[7,0,31],[7,54,25],[8,0,31],[8,51,28],[9,0,31],[9,48,3],[9,52,27],[10,0,30],[10,50,29],[11,0,28],[11,48,31],[12,0,32],[12,48,31],[13,0,33],[13,49,30],[14,0,32],[14,46,33],[15,0,38],[15,43,36],[16,0,13],[16,16,22],[16,43,29],[16,74,5],[17,0,12],[17,19,13],[17,50,17],[17,75,4],[18,0,10],[18,21,9],[18,51,14],[18,76,3],[19,0,8],[19,24,6],[19,52,2],[19,77,2],[20,0,5],[20,50,1],[21,0,1],[21,11,6],[21,50,7],[21,69,2],[21,72,2],[22,0,7],[22,9,9],[22,19,5],[22,28,3],[22,50,9],[22,60,15],[23,0,31],[23,50,29],[24,0,31],[24,51,28],[25,0,31],[25,51,28],[26,0,35],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,46,2],[5,52,27],[6,0,31],[6,53,26],[7,0,31],[7,54,25],[8,0,31],[8,48,1],[8,52,27],[9,0,31],[9,48,3],[9,52,27],[10,0,30],[10,50,29],[11,0,28],[11,48,31],[12,0,33],[12,48,31],[13,0,32],[13,50,29],[14,0,33],[14,46,33],[15,0,38],[15,43,36],[16,0,13],[16,16,22],[16,44,27],[16,74,5],[17,0,12],[17,19,13],[17,50,17],[17,75,4],[18,0,10],[18,22,9],[18,51,13],[18,76,3],[19,0,8],[19,24,6],[19,53,1],[19,78,1],[20,0,5],[20,51,1],[21,11,6],[21,51,6],[21,63,2],[21,68,7],[22,0,7],[22,9,16],[22,28,3],[22,50,26],[22,78,1],[23,0,31],[23,50,29],[24,0,31],[24,51,28],[25,0,31],[25,51,28],[26,0,35],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,50],[4,52,27],[5,0,32],[5,46,2],[5,52,27],[6,0,31],[6,54,25],[7,0,31],[7,52,27],[8,0,31],[8,52,27],[9,0,31],[9,49,30],[10,0,29],[10,50,29],[11,0,29],[11,49,30],[12,0,33],[12,48,31],[13,0,32],[13,50,29],[14,0,34],[14,37,1],[14,45,34],[15,0,38],[15,43,29],[15,74,5],[16,0,13],[16,16,22],[16,45,25],[16,74,5],[17,0,12],[17,20,12],[17,51,16],[17,76,3],[18,0,10],[18,22,9],[18,51,13],[18,77,2],[19,0,7],[19,25,5],[20,0,4],[20,51,3],[21,0,1],[21,10,8],[21,51,8],[21,62,4],[21,68,7],[22,0,8],[22,9,16],[22,27,5],[22,50,26],[22,77,2],[23,0,31],[23,50,29],[24,0,31],[24,51,28],[25,0,31],[25,51,28],[26,0,35],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,39],[4,44,6],[4,52,27],[5,0,32],[5,47,2],[5,52,27],[6,0,32],[6,55,24],[7,0,31],[7,52,27],[8,0,31],[8,49,1],[8,53,26],[9,0,31],[9,49,30],[10,0,29],[10,50,29],[11,0,29],[11,49,30],[12,0,33],[12,49,30],[13,0,32],[13,49,30],[14,0,35],[14,44,35],[15,0,39],[15,43,30],[15,74,5],[16,0,13],[16,17,20],[16,47,23],[16,75,4],[17,0,11],[17,20,12],[17,51,15],[17,76,3],[18,0,10],[18,22,9],[18,52,11],[18,78,1],[19,0,7],[19,25,5],[20,0,4],[20,51,4],[20,73,2],[21,0,1],[21,10,8],[21,51,8],[21,62,5],[21,68,8],[22,0,8],[22,9,17],[22,28,4],[22,50,29],[23,0,32],[23,51,28],[24,0,31],[24,51,28],[25,0,31],[25,51,28],[26,0,35],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,37],[4,45,5],[4,52,27],[5,0,32],[5,47,2],[5,53,26],[6,0,32],[6,55,24],[7,0,31],[7,53,26],[8,0,32],[8,49,1],[8,53,26],[9,0,31],[9,49,30],[10,0,29],[10,51,28],[11,0,30],[11,48,31],[12,0,33],[12,49,30],[13,0,33],[13,49,30],[14,0,37],[14,44,35],[15,0,15],[15,16,23],[15,43,30],[15,75,4],[16,0,13],[16,17,20],[16,48,21],[16,75,4],[17,0,11],[17,20,12],[17,51,15],[17,77,2],[18,0,10],[18,23,8],[18,52,11],[18,78,1],[19,0,7],[19,26,4],[20,0,4],[20,51,5],[20,71,1],[20,73,2],[21,0,1],[21,10,8],[21,51,8],[21,62,5],[21,68,8],[22,0,26],[22,28,4],[22,50,29],[23,0,32],[23,51,28],[24,0,31],[24,51,28],[25,0,31],[25,34,2],[25,51,28],[26,0,35],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,36],[4,46,4],[4,53,26],[5,0,33],[5,53,26],[6,0,32],[6,56,23],[7,0,32],[7,53,26],[8,0,32],[8,50,1],[8,53,26],[9,0,31],[9,49,30],[10,0,29],[10,51,28],[11,0,30],[11,32,1],[11,49,30],[12,0,33],[12,49,30],[13,0,32],[13,50,29],[14,0,36],[14,45,34],[15,0,15],[15,16,23],[15,43,30],[15,75,4],[16,0,13],[16,17,20],[16,48,22],[16,76,3],[17,0,11],[17,21,11],[17,51,15],[17,77,2],[18,0,9],[18,23,8],[18,52,11],[18,78,1],[19,0,7],[19,26,4],[20,0,4],[20,11,2],[20,52,4],[20,71,1],[20,73,2],[21,10,8],[21,51,9],[21,62,5],[21,68,8],[22,0,26],[22,28,4],[22,51,28],[23,0,32],[23,51,28],[24,0,31],[24,51,28],[25,0,31],[25,34,2],[25,51,28],[26,0,36],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,40],[4,44,7],[4,53,26],[5,0,33],[5,47,2],[5,54,25],[6,0,32],[6,56,23],[7,0,32],[7,53,26],[8,0,32],[8,49,1],[8,54,25],[9,0,32],[9,49,30],[10,0,29],[10,51,28],[11,0,30],[11,50,29],[12,0,33],[12,49,30],[13,0,33],[13,50,29],[14,0,36],[14,47,32],[15,0,39],[15,44,29],[15,75,4],[16,0,13],[16,17,21],[16,45,25],[16,75,4],[17,0,12],[17,20,12],[17,51,16],[17,77,2],[18,0,10],[18,23,8],[18,52,12],[18,78,1],[19,0,7],[19,25,6],[20,0,4],[20,52,4],[20,74,2],[21,0,1],[21,10,8],[21,51,8],[21,63,4],[21,69,7],[22,0,8],[22,9,17],[22,28,4],[22,51,28],[23,0,32],[23,51,28],[24,0,32],[24,51,28],[25,0,31],[25,34,2],[25,51,28],[26,0,36],[26,48,31],[27,0,35],[27,48,31],[28,0,34],[28,50,29],[29,0,33],[29,49,30],[30,0,34],[30,50,29]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,52],[4,53,26],[5,0,35],[5,47,3],[5,54,25],[6,0,33],[6,56,23],[7,0,32],[7,56,23],[8,0,32],[8,54,25],[9,0,32],[9,50,2],[9,54,25],[10,0,30],[10,51,28],[11,0,29],[11,51,28],[12,0,33],[12,49,30],[13,0,33],[13,50,29],[14,0,33],[14,47,1],[14,50,29],[15,0,36],[15,37,2],[15,43,36],[16,0,14],[16,17,22],[16,44,29],[16,75,4],[17,0,13],[17,20,14],[17,50,18],[17,76,3],[18,0,11],[18,22,10],[18,52,13],[18,78,1],[19,0,8],[19,24,7],[19,53,2],[20,0,5],[21,0,1],[21,11,3],[21,15,3],[21,51,6],[21,70,6],[22,0,7],[22,9,10],[22,20,5],[22,29,2],[22,51,28],[23,0,32],[23,51,28],[24,0,32],[24,51,28],[25,0,31],[25,51,28],[26,0,36],[26,51,28],[27,0,35],[27,48,31],[28,0,34],[28,49,30],[29,0,33],[29,49,30],[30,0,34],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,38],[5,45,6],[5,54,25],[6,0,34],[6,48,1],[6,55,24],[7,0,32],[7,57,22],[8,0,32],[8,54,25],[9,0,32],[9,54,25],[10,0,32],[10,50,29],[11,0,29],[11,51,28],[12,0,33],[12,50,29],[13,0,34],[13,49,30],[14,0,33],[14,50,29],[15,0,35],[15,37,2],[15,44,2],[15,47,32],[16,0,15],[16,17,22],[16,44,29],[16,75,4],[17,0,13],[17,19,18],[17,48,22],[17,76,3],[18,0,11],[18,22,10],[18,51,16],[18,77,2],[19,0,9],[19,24,7],[19,52,11],[20,0,5],[21,1,1],[21,11,3],[21,15,3],[21,52,4],[21,71,2],[21,74,2],[22,0,7],[22,10,9],[22,21,4],[22,29,3],[22,51,9],[22,62,15],[23,0,32],[23,51,28],[24,0,32],[24,51,28],[25,0,31],[25,51,28],[26,0,36],[26,51,28],[27,0,35],[27,48,31],[28,0,35],[28,48,31],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,38],[5,46,5],[5,54,25],[6,0,34],[6,48,2],[6,55,24],[7,0,33],[7,56,23],[8,0,32],[8,54,25],[9,0,33],[9,54,25],[10,0,32],[10,50,29],[11,0,30],[11,51,28],[12,0,33],[12,50,29],[13,0,34],[13,50,29],[14,0,33],[14,50,29],[15,0,35],[15,37,2],[15,44,1],[15,47,32],[16,0,15],[16,17,22],[16,44,30],[16,76,3],[17,0,13],[17,20,17],[17,47,24],[17,76,3],[18,0,11],[18,22,10],[18,51,16],[18,77,2],[19,0,9],[19,25,6],[19,52,12],[20,0,6],[21,0,2],[21,12,2],[21,15,3],[21,52,4],[21,74,2],[22,0,8],[22,10,15],[22,29,3],[22,51,9],[22,62,6],[22,69,8],[23,0,32],[23,51,28],[24,0,32],[24,51,28],[25,0,31],[25,51,28],[26,0,35],[26,51,28],[27,0,35],[27,48,31],[28,0,34],[28,48,31],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,37],[5,46,5],[5,54,25],[6,0,34],[6,48,2],[6,55,24],[7,0,33],[7,57,22],[8,0,32],[8,54,25],[9,0,33],[9,54,25],[10,0,32],[10,50,29],[11,0,30],[11,51,28],[12,0,34],[12,49,30],[13,0,34],[13,50,29],[14,0,33],[14,50,29],[15,0,35],[15,37,2],[15,46,33],[16,0,14],[16,17,22],[16,44,31],[16,76,3],[17,0,13],[17,20,17],[17,47,25],[17,77,2],[18,0,11],[18,23,9],[18,52,16],[18,78,1],[19,0,9],[19,25,6],[19,52,13],[20,0,6],[21,0,3],[21,12,6],[21,52,4],[22,0,9],[22,10,15],[22,29,2],[22,51,9],[22,63,4],[22,70,7],[23,0,32],[23,51,28],[24,0,31],[24,51,28],[25,0,31],[25,51,28],[26,0,32],[26,33,2],[26,51,28],[27,0,35],[27,48,31],[28,0,34],[28,48,31],[29,0,33],[29,49,30],[30,0,33],[30,49,30]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,35],[5,47,5],[5,55,24],[6,0,34],[6,55,24],[7,0,33],[7,57,22],[8,0,32],[8,54,25],[9,0,33],[9,50,1],[9,54,25],[10,0,32],[10,50,29],[11,0,29],[11,51,28],[12,0,34],[12,50,29],[13,0,34],[13,50,29],[14,0,32],[14,50,29],[15,0,36],[15,37,2],[15,46,33],[16,0,14],[16,17,22],[16,44,35],[17,0,13],[17,20,15],[17,47,27],[17,77,2],[18,0,11],[18,23,9],[18,52,17],[18,78,1],[19,0,9],[19,25,6],[19,52,14],[20,0,6],[21,0,3],[21,11,7],[21,53,2],[22,0,25],[22,29,2],[22,51,8],[22,64,2],[22,71,3],[22,75,3],[23,0,31],[23,51,28],[24,0,31],[24,51,28],[25,0,30],[25,51,28],[26,0,31],[26,33,2],[26,51,28],[27,0,35],[27,47,32],[28,0,34],[28,47,32],[29,0,33],[29,49,30],[30,0,32],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,34],[5,48,4],[5,55,24],[6,0,33],[6,56,23],[7,0,33],[7,57,22],[8,0,32],[8,55,24],[9,0,32],[9,50,1],[9,55,24],[10,0,31],[10,50,29],[11,0,29],[11,52,27],[12,0,34],[12,50,29],[13,0,34],[13,50,29],[14,0,32],[14,50,29],[15,0,15],[15,17,22],[15,44,35],[16,0,14],[16,18,21],[16,44,35],[17,0,13],[17,20,14],[17,46,29],[17,77,2],[18,0,11],[18,22,9],[18,52,18],[19,0,8],[19,25,5],[19,52,15],[20,0,4],[20,13,1],[20,54,1],[21,0,7],[21,11,7],[22,0,25],[22,28,2],[22,52,6],[22,74,1],[22,77,1],[23,0,31],[23,51,10],[23,62,7],[23,70,9],[24,0,30],[24,50,29],[25,0,30],[25,50,29],[26,0,30],[26,50,29],[27,0,34],[27,47,32],[28,0,34],[28,47,32],[29,0,32],[29,48,31],[30,0,31],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,34],[5,48,4],[5,56,23],[6,0,33],[6,56,23],[7,0,32],[7,58,21],[8,0,32],[8,55,24],[9,0,32],[9,55,24],[10,0,30],[10,50,29],[11,0,29],[11,52,27],[12,0,34],[12,50,29],[13,0,33],[13,50,29],[14,0,32],[14,51,28],[15,0,15],[15,17,22],[15,44,35],[16,0,13],[16,18,21],[16,44,35],[17,0,12],[17,20,13],[17,46,30],[17,78,1],[18,0,10],[18,22,9],[18,52,19],[19,0,7],[19,24,5],[19,53,15],[20,0,3],[20,12,1],[20,15,1],[20,54,1],[20,61,2],[21,0,8],[21,11,7],[22,0,24],[22,51,6],[23,0,30],[23,51,9],[23,63,5],[23,71,8],[24,0,29],[24,50,29],[25,0,29],[25,50,29],[26,0,29],[26,50,29],[27,0,33],[27,48,31],[28,0,33],[28,47,32],[29,0,32],[29,48,31],[30,0,31],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,33],[5,49,3],[5,57,22],[6,0,33],[6,57,22],[7,0,32],[7,59,20],[8,0,32],[8,56,23],[9,0,32],[9,50,2],[9,56,23],[10,0,29],[10,51,28],[11,0,29],[11,52,27],[12,0,34],[12,50,29],[13,0,33],[13,50,29],[14,0,33],[14,51,28],[15,0,15],[15,17,22],[15,44,2],[15,48,31],[16,0,14],[16,18,21],[16,44,35],[17,0,12],[17,20,13],[17,45,31],[17,78,1],[18,0,9],[18,22,8],[18,52,21],[19,0,7],[19,24,5],[19,52,17],[20,0,4],[20,11,2],[20,14,2],[20,53,3],[20,58,7],[21,0,9],[21,10,8],[22,0,24],[22,51,5],[23,0,29],[23,51,8],[23,64,3],[23,73,3],[23,78,1],[24,0,29],[24,50,29],[25,0,28],[25,50,29],[26,0,28],[26,31,2],[26,50,29],[27,0,33],[27,50,29],[28,0,32],[28,46,33],[29,0,31],[29,46,33],[30,0,30],[30,48,31]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,36],[4,47,8],[4,57,22],[5,0,33],[5,49,2],[5,57,22],[6,0,32],[6,58,21],[7,0,32],[7,60,19],[8,0,32],[8,57,22],[9,0,31],[9,50,2],[9,57,22],[10,0,28],[10,51,28],[11,0,30],[11,52,27],[12,0,33],[12,51,28],[13,0,33],[13,50,29],[14,0,33],[14,51,28],[15,0,14],[15,17,22],[15,45,1],[15,48,31],[16,0,13],[16,18,21],[16,43,36],[17,0,11],[17,20,12],[17,45,32],[17,78,1],[18,0,9],[18,22,8],[18,52,23],[19,0,5],[19,12,1],[19,24,5],[19,52,18],[20,0,7],[20,11,2],[20,14,2],[20,53,13],[21,0,17],[22,0,24],[22,52,3],[23,0,28],[23,51,7],[24,0,28],[24,50,11],[24,62,7],[24,71,6],[24,78,1],[25,0,27],[25,49,30],[26,0,27],[26,49,30],[27,0,32],[27,49,30],[28,0,32],[28,46,33],[29,0,31],[29,46,33],[30,0,30],[30,47,32]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,48,7],[4,58,21],[5,0,33],[5,50,1],[5,58,21],[6,0,32],[6,59,20],[7,0,32],[7,60,19],[8,0,32],[8,58,21],[9,0,30],[9,51,2],[9,57,22],[10,0,28],[10,51,28],[11,0,31],[11,52,27],[12,0,33],[12,51,28],[13,0,33],[13,50,29],[14,0,33],[14,51,28],[15,0,14],[15,17,22],[15,48,31],[16,0,12],[16,19,20],[16,44,35],[17,0,11],[17,21,10],[17,45,34],[18,0,9],[18,22,7],[18,52,25],[19,0,5],[19,24,4],[19,52,19],[20,0,8],[20,11,5],[20,53,15],[21,0,17],[22,0,24],[22,52,2],[23,0,27],[23,51,6],[24,0,27],[24,49,11],[24,63,5],[24,73,4],[25,0,26],[25,49,30],[26,0,26],[26,49,30],[27,0,31],[27,48,31],[28,0,31],[28,45,34],[29,0,30],[29,45,34],[30,0,29],[30,46,33]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,49,5],[4,59,20],[5,0,33],[5,50,1],[5,59,20],[6,0,32],[6,60,19],[7,0,32],[7,61,18],[8,0,32],[8,58,21],[9,0,29],[9,51,2],[9,58,21],[10,0,28],[10,51,28],[11,0,31],[11,52,27],[12,0,33],[12,51,28],[13,0,33],[13,51,28],[14,0,33],[14,51,28],[15,0,14],[15,18,21],[15,46,1],[15,48,31],[16,0,13],[16,20,18],[16,44,35],[17,0,11],[17,21,10],[17,45,34],[18,0,8],[18,23,6],[18,51,27],[19,0,6],[19,25,3],[19,52,21],[20,0,9],[20,11,6],[20,52,17],[21,0,18],[21,19,2],[21,54,1],[21,61,2],[22,0,24],[23,0,26],[23,50,6],[24,0,26],[24,50,9],[24,65,1],[25,0,25],[25,49,21],[25,71,7],[26,0,25],[26,48,31],[27,0,30],[27,48,31],[28,0,30],[28,47,32],[29,0,30],[29,45,34],[30,0,29],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,34],[4,49,5],[4,60,19],[5,0,33],[5,60,19],[6,0,32],[6,61,18],[7,0,32],[7,62,17],[8,0,31],[8,59,20],[9,0,28],[9,51,2],[9,59,20],[10,0,28],[10,51,28],[11,0,32],[11,52,27],[12,0,33],[12,51,28],[13,0,33],[13,51,28],[14,0,17],[14,18,15],[14,34,1],[14,51,28],[15,0,15],[15,19,19],[15,44,1],[15,48,31],[16,0,13],[16,21,17],[16,44,35],[17,0,11],[17,22,9],[17,45,34],[18,0,8],[18,23,6],[18,51,27],[19,0,9],[19,25,3],[19,52,22],[20,0,11],[20,12,6],[20,52,18],[21,0,22],[21,53,2],[21,59,7],[22,0,23],[23,0,25],[23,50,6],[24,0,25],[24,50,9],[25,0,25],[25,48,13],[25,63,6],[25,72,6],[26,0,25],[26,48,31],[27,0,30],[27,47,32],[28,0,30],[28,47,32],[29,0,29],[29,44,35],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,79],[3,0,38],[3,46,33],[4,0,34],[4,50,4],[4,60,19],[5,0,33],[5,61,18],[6,0,32],[6,62,17],[7,0,32],[7,63,16],[8,0,30],[8,59,20],[9,0,27],[9,51,3],[9,59,20],[10,0,30],[10,51,28],[11,0,32],[11,52,27],[12,0,33],[12,51,28],[13,0,33],[13,51,28],[14,0,18],[14,19,16],[14,51,28],[15,0,16],[15,20,18],[15,45,2],[15,49,30],[16,0,14],[16,22,16],[16,45,34],[17,0,12],[17,23,8],[17,45,34],[18,0,9],[18,24,5],[18,51,28],[19,0,11],[19,16,2],[19,26,1],[19,52,23],[20,0,19],[20,52,19],[21,0,20],[21,52,4],[21,58,9],[22,0,21],[23,0,24],[23,50,5],[24,0,24],[24,50,8],[25,0,24],[25,48,13],[25,64,5],[25,74,5],[26,0,25],[26,29,1],[26,47,24],[26,72,7],[27,0,30],[27,47,32],[28,0,29],[28,46,33],[29,0,29],[29,44,35],[30,0,28],[30,44,35]],[[0,0,79],[1,0,79],[2,0,79],[3,0,36],[3,48,11],[3,61,18],[4,0,34],[4,50,3],[4,61,18],[5,0,33],[5,61,18],[6,0,32],[6,63,16],[7,0,32],[7,63,16],[8,0,29],[8,60,19],[9,0,27],[9,51,4],[9,60,19],[10,0,30],[10,52,27],[11,0,32],[11,52,27],[12,0,33],[12,52,27],[13,0,33],[13,51,28],[14,0,19],[14,21,12],[14,34,1],[14,49,1],[14,51,28],[15,0,17],[15,22,17],[15,46,2],[15,49,30],[16,0,16],[16,23,16],[16,44,35],[17,0,13],[17,24,7],[17,45,34],[18,0,11],[18,26,3],[18,50,29],[19,0,13],[19,16,3],[19,52,24],[20,0,20],[20,52,19],[21,0,20],[21,52,4],[21,57,10],[22,0,20],[23,0,23],[23,50,5],[24,0,24],[24,49,9],[25,0,24],[25,47,14],[25,65,3],[25,77,1],[26,0,25],[26,47,24],[26,73,6],[27,0,29],[27,46,33],[28,0,29],[28,46,33],[29,0,29],[29,44,35],[30,0,28],[30,44,35]],[[0,0,79],[1,0,79],[2,0,79],[3,0,35],[3,49,8],[3,62,17],[4,0,34],[4,51,2],[4,62,17],[5,0,33],[5,62,17],[6,0,33],[6,63,16],[7,0,32],[7,64,15],[8,0,28],[8,61,18],[9,0,27],[9,52,4],[9,60,19],[10,0,31],[10,52,27],[11,0,32],[11,52,27],[12,0,33],[12,52,27],[13,0,33],[13,52,27],[14,0,20],[14,23,11],[14,36,1],[14,52,27],[15,0,19],[15,24,15],[15,46,2],[15,49,30],[16,0,17],[16,25,14],[16,44,35],[17,0,15],[17,26,6],[17,46,33],[18,0,13],[18,27,3],[18,51,28],[19,0,15],[19,17,2],[19,52,23],[20,0,20],[20,52,19],[21,0,19],[21,52,16],[22,0,19],[23,0,24],[23,51,4],[24,0,24],[24,49,9],[25,0,24],[25,47,14],[25,66,2],[26,0,25],[26,47,24],[26,73,6],[27,0,29],[27,46,33],[28,0,29],[28,45,34],[29,0,29],[29,44,35],[30,0,28],[30,44,35]],[[0,0,79],[1,0,79],[2,0,79],[3,0,35],[3,51,4],[3,63,16],[4,0,34],[4,63,16],[5,0,33],[5,63,16],[6,0,33],[6,65,14],[7,0,32],[7,61,18],[8,0,27],[8,62,17],[9,0,29],[9,52,5],[9,60,19],[10,0,31],[10,53,26],[11,0,34],[11,53,26],[12,0,34],[12,53,26],[13,0,23],[13,24,10],[13,52,27],[14,0,22],[14,25,10],[14,52,27],[15,0,21],[15,26,14],[15,45,4],[15,50,29],[16,0,19],[16,27,13],[16,45,34],[17,0,16],[17,27,5],[17,48,31],[18,0,17],[18,29,1],[18,51,28],[19,0,18],[19,52,25],[20,0,19],[20,52,21],[21,0,18],[21,53,16],[22,0,18],[23,0,21],[23,22,2],[23,51,4],[24,0,24],[24,49,9],[25,0,24],[25,47,14],[26,0,25],[26,46,18],[26,65,7],[26,75,4],[27,0,30],[27,46,33],[28,0,29],[28,45,34],[29,0,29],[29,44,35],[30,0,28],[30,45,34]],[[0,0,79],[1,0,79],[2,0,37],[2,50,8],[2,64,15],[3,0,34],[3,52,1],[3,63,16],[4,0,34],[4,64,15],[5,0,33],[5,64,15],[6,0,33],[6,66,13],[7,0,31],[7,62,17],[8,0,27],[8,63,16],[9,0,29],[9,53,6],[9,60,19],[10,0,32],[10,53,26],[11,0,33],[11,54,25],[12,0,34],[12,54,25],[13,0,25],[13,27,7],[13,53,26],[14,0,24],[14,27,11],[14,51,1],[14,53,26],[15,0,23],[15,28,12],[15,46,33],[16,0,21],[16,29,11],[16,46,33],[17,0,19],[17,30,3],[17,49,30],[18,0,20],[18,23,2],[18,52,27],[19,0,17],[19,53,25],[20,0,18],[20,53,21],[21,0,17],[21,53,18],[22,0,17],[23,0,20],[23,21,3],[23,51,5],[24,0,24],[24,49,10],[25,0,25],[25,47,15],[26,0,26],[26,46,18],[26,67,5],[26,77,2],[27,0,30],[27,46,29],[27,76,3],[28,0,30],[28,45,34],[29,0,29],[29,45,34],[30,0,28],[30,45,34]],[[0,0,79],[1,0,44],[1,46,33],[2,0,35],[2,52,3],[2,64,15],[3,0,34],[3,64,15],[4,0,34],[4,65,14],[5,0,33],[5,66,13],[6,0,33],[6,63,16],[7,0,27],[7,64,15],[8,0,27],[8,54,3],[8,62,17],[9,0,32],[9,54,25],[10,0,32],[10,54,25],[11,0,34],[11,55,24],[12,0,35],[12,53,26],[13,0,28],[13,30,5],[13,53,26],[14,0,26],[14,31,9],[14,48,2],[14,51,28],[15,0,25],[15,31,10],[15,46,33],[16,0,24],[16,32,3],[16,47,32],[17,0,23],[17,33,1],[17,50,29],[18,0,24],[18,26,2],[18,53,26],[19,0,16],[19,53,26],[20,0,17],[20,53,23],[21,0,16],[21,55,17],[22,0,17],[23,0,24],[23,52,5],[24,0,25],[24,49,11],[25,0,25],[25,47,16],[26,0,26],[26,47,18],[26,68,6],[27,0,30],[27,46,30],[27,78,1],[28,0,30],[28,46,33],[29,0,30],[29,45,34],[30,0,29],[30,46,33]],[[0,0,44],[0,47,13],[0,65,14],[1,0,38],[1,51,5],[1,65,14],[2,0,35],[2,65,14],[3,0,34],[3,65,14],[4,0,34],[4,67,12],[5,0,34],[5,64,1],[5,67,12],[6,0,32],[6,64,15],[7,0,26],[7,64,15],[8,0,30],[8,55,5],[8,61,18],[9,0,32],[9,55,24],[10,0,33],[10,56,23],[11,0,35],[11,56,23],[12,0,35],[12,54,25],[13,0,31],[13,33,4],[13,54,25],[14,0,30],[14,34,7],[14,49,1],[14,52,27],[15,0,29],[15,34,7],[15,47,32],[16,0,27],[16,48,31],[17,0,27],[17,52,27],[18,0,28],[18,29,2],[18,54,25],[19,0,15],[19,27,2],[19,54,25],[20,0,16],[20,54,23],[21,0,15],[21,56,18],[22,0,17],[23,0,24],[23,52,6],[24,0,25],[24,50,11],[25,0,26],[25,48,16],[26,0,27],[26,47,19],[26,70,5],[27,0,31],[27,47,31],[28,0,31],[28,46,33],[29,0,31],[29,46,33],[30,0,29],[30,46,33]],[[0,0,40],[0,51,5],[0,65,14],[1,0,37],[1,52,1],[1,65,14],[2,0,35],[2,66,13],[3,0,34],[3,67,12],[4,0,34],[4,65,1],[4,68,11],[5,0,34],[5,64,15],[6,0,31],[6,65,14],[7,0,26],[7,56,2],[7,63,16],[8,0,32],[8,56,23],[9,0,33],[9,56,23],[10,0,34],[10,57,22],[11,0,36],[11,54,1],[11,57,22],[12,0,36],[12,54,25],[13,0,35],[13,37,2],[13,50,1],[13,55,24],[14,0,34],[14,37,6],[14,48,4],[14,53,26],[15,0,33],[15,38,4],[15,48,31],[16,0,31],[16,50,29],[17,0,32],[17,53,26],[18,0,33],[18,54,25],[19,0,15],[19,54,25],[20,0,16],[20,54,24],[21,0,14],[21,58,17],[22,0,17],[23,0,25],[23,53,6],[24,0,26],[24,50,12],[25,0,27],[25,48,17],[26,0,28],[26,48,19],[26,72,4],[27,0,32],[27,47,32],[28,0,32],[28,47,32],[29,0,31],[29,47,32],[30,0,30],[30,47,32]],[[0,0,40],[0,65,14],[1,0,37],[1,66,13],[2,0,35],[2,67,12],[3,0,34],[3,68,11],[4,0,34],[4,65,14],[5,0,34],[5,66,13],[6,0,31],[6,64,15],[7,0,27],[7,56,23],[8,0,32],[8,56,23],[9,0,33],[9,57,22],[10,0,35],[10,59,20],[11,0,37],[11,55,3],[11,59,20],[12,0,37],[12,56,23],[13,0,39],[13,42,1],[13,55,24],[14,0,39],[14,41,3],[14,49,30],[15,0,38],[15,41,2],[15,49,30],[16,0,37],[16,51,28],[17,0,36],[17,54,25],[18,0,34],[18,55,24],[19,0,15],[19,31,2],[19,55,24],[20,0,16],[20,55,24],[21,0,15],[21,59,17],[22,0,17],[22,23,2],[22,54,1],[23,0,26],[23,53,7],[24,0,27],[24,50,13],[25,0,28],[25,49,16],[26,0,30],[26,48,20],[26,74,3],[27,0,33],[27,48,22],[27,71,8],[28,0,33],[28,47,32],[29,0,32],[29,47,32],[30,0,31],[30,48,31]],[[0,0,41],[0,66,13],[1,0,38],[1,66,13],[2,0,36],[2,67,12],[3,0,35],[3,64,15],[4,0,35],[4,67,12],[5,0,35],[5,66,13],[6,0,32],[6,63,16],[7,0,27],[7,57,22],[8,0,32],[8,58,21],[9,0,34],[9,58,21],[10,0,36],[10,37,1],[10,60,19],[11,0,38],[11,57,22],[12,0,38],[12,57,22],[13,0,40],[13,55,24],[14,0,44],[14,51,28],[15,0,43],[15,50,29],[16,0,39],[16,52,27],[17,0,38],[17,54,25],[18,0,36],[18,56,23],[19,0,15],[19,31,4],[19,55,24],[20,0,17],[20,35,1],[20,55,24],[21,0,15],[21,59,18],[22,0,18],[22,23,2],[23,0,27],[23,53,8],[24,0,28],[24,50,13],[25,0,29],[25,49,17],[26,0,32],[26,49,19],[26,76,1],[27,0,34],[27,48,22],[27,73,6],[28,0,34],[28,48,31],[29,0,34],[29,48,31],[30,0,32],[30,49,30]],[[0,0,44],[0,66,13],[1,0,40],[1,67,12],[2,0,37],[2,64,2],[2,67,12],[3,0,36],[3,64,15],[4,0,36],[4,67,12],[5,0,36],[5,65,14],[6,0,34],[6,62,17],[7,0,29],[7,59,20],[8,0,29],[8,31,2],[8,59,20],[9,0,35],[9,60,19],[10,0,37],[10,61,18],[11,0,39],[11,58,3],[11,62,17],[12,0,39],[12,59,20],[13,0,41],[13,56,23],[14,0,46],[14,52,27],[15,0,45],[15,52,27],[16,0,41],[16,53,26],[17,0,40],[17,55,24],[18,0,16],[18,17,21],[18,56,23],[19,0,16],[19,31,5],[19,56,23],[20,0,18],[20,35,2],[20,56,23],[21,0,17],[21,60,18],[22,0,19],[23,0,28],[23,54,7],[24,0,30],[24,51,13],[25,0,31],[25,50,16],[26,0,34],[26,50,18],[27,0,36],[27,49,21],[27,74,5],[28,0,36],[28,49,30],[29,0,35],[29,50,29],[30,0,34],[30,50,29]],[[0,0,47],[0,51,2],[0,66,13],[1,0,43],[1,66,13],[2,0,40],[2,64,15],[3,0,38],[3,64,15],[4,0,37],[4,66,13],[5,0,37],[5,64,15],[6,0,36],[6,62,17],[7,0,33],[7,60,19],[8,0,30],[8,60,19],[9,0,36],[9,61,18],[10,0,39],[10,62,17],[11,0,40],[11,60,19],[12,0,40],[12,60,19],[13,0,42],[13,57,22],[14,0,48],[14,55,24],[15,0,47],[15,55,24],[16,0,43],[16,55,24],[17,0,42],[17,55,24],[18,0,40],[18,57,22],[19,0,17],[19,31,7],[19,57,22],[20,0,17],[20,35,4],[20,57,22],[21,0,18],[21,61,18],[22,0,20],[22,64,1],[22,70,5],[23,0,30],[23,55,7],[24,0,31],[24,52,13],[25,0,32],[25,51,16],[26,0,36],[26,51,18],[27,0,37],[27,51,20],[27,76,3],[28,0,37],[28,50,29],[29,0,37],[29,51,28],[30,0,36],[30,52,27]],[[0,0,54],[0,65,14],[1,0,47],[1,66,13],[2,0,42],[2,62,17],[3,0,40],[3,62,17],[4,0,39],[4,67,12],[5,0,39],[5,65,14],[6,0,38],[6,62,17],[7,0,36],[7,62,17],[8,0,32],[8,62,17],[9,0,37],[9,62,17],[10,0,38],[10,64,15],[11,0,41],[11,61,3],[11,65,14],[12,0,42],[12,62,17],[13,0,43],[13,56,1],[13,59,20],[14,0,49],[14,56,2],[14,59,20],[15,0,49],[15,55,3],[15,60,19],[16,0,46],[16,55,3],[16,60,19],[17,0,44],[17,60,19],[18,0,18],[18,19,24],[18,61,18],[19,0,18],[19,32,8],[19,58,21],[20,0,18],[20,35,5],[20,58,21],[21,0,20],[21,37,2],[21,61,18],[22,0,22],[22,28,2],[22,37,2],[22,64,2],[22,69,8],[23,0,31],[23,55,7],[24,0,32],[24,53,12],[25,0,34],[25,53,14],[26,0,36],[26,52,17],[27,0,37],[27,52,19],[27,77,2],[28,0,39],[28,52,21],[28,75,4],[29,0,39],[29,52,27],[30,0,38],[30,53,26]],[[0,0,54],[0,65,14],[1,0,53],[1,66,13],[2,0,45],[2,63,16],[3,0,42],[3,63,16],[4,0,41],[4,67,12],[5,0,40],[5,65,14],[6,0,40],[6,64,15],[7,0,39],[7,63,16],[8,0,35],[8,63,16],[9,0,34],[9,63,16],[10,0,39],[10,65,14],[11,0,43],[11,63,2],[11,66,13],[12,0,43],[12,63,16],[13,0,44],[13,60,1],[13,63,16],[14,0,46],[14,49,2],[14,58,1],[14,60,2],[14,63,16],[15,0,51],[15,56,5],[15,64,15],[16,0,49],[16,56,5],[16,65,14],[17,0,46],[17,57,4],[17,65,14],[18,0,19],[18,20,25],[18,58,2],[18,66,13],[19,0,19],[19,33,9],[19,63,1],[19,65,14],[20,0,20],[20,36,6],[20,62,17],[21,0,21],[21,37,4],[21,62,17],[22,0,26],[22,27,4],[22,38,3],[22,65,13],[23,0,33],[23,56,7],[24,0,34],[24,54,11],[25,0,35],[25,54,13],[26,0,36],[26,53,16],[27,0,38],[27,53,18],[28,0,40],[28,53,20],[28,76,3],[29,0,41],[29,53,26],[30,0,40],[30,55,24]],[[0,0,56],[0,65,14],[1,0,54],[1,66,13],[2,0,47],[2,66,13],[3,0,44],[3,62,17],[4,0,42],[4,68,11],[5,0,41],[5,66,13],[6,0,41],[6,65,14],[7,0,41],[7,65,14],[8,0,38],[8,64,15],[9,0,35],[9,64,15],[10,0,40],[10,66,13],[11,0,44],[11,64,2],[11,68,11],[12,0,45],[12,65,14],[13,0,46],[13,65,14],[14,0,46],[14,50,2],[14,59,1],[14,61,4],[14,67,12],[15,0,52],[15,57,8],[15,67,12],[16,0,50],[16,57,7],[16,68,11],[17,0,48],[17,58,6],[17,69,10],[18,0,20],[18,21,25],[18,59,4],[18,71,8],[19,0,20],[19,33,11],[19,60,3],[19,70,9],[20,0,21],[20,36,8],[20,60,1],[20,65,14],[21,0,22],[21,37,6],[21,64,15],[22,0,32],[22,38,4],[22,65,14],[23,0,34],[23,57,6],[24,0,35],[24,55,11],[25,0,36],[25,55,13],[26,0,37],[26,54,15],[27,0,38],[27,54,17],[28,0,42],[28,54,19],[28,77,2],[29,0,42],[29,54,25],[30,0,42],[30,56,23]],[[0,0,56],[0,65,14],[1,0,55],[1,66,13],[2,0,49],[2,66,13],[3,0,45],[3,64,15],[4,0,43],[4,68,11],[5,0,43],[5,67,12],[6,0,42],[6,66,13],[7,0,42],[7,65,14],[8,0,40],[8,65,14],[9,0,36],[9,65,14],[10,0,40],[10,66,13],[11,0,42],[11,44,1],[11,65,2],[11,69,10],[12,0,45],[12,66,13],[13,0,46],[13,65,14],[14,0,47],[14,51,2],[14,60,1],[14,62,5],[14,69,10],[15,0,53],[15,58,9],[15,70,9],[16,0,51],[16,58,8],[16,71,8],[17,0,49],[17,59,7],[17,73,6],[18,0,20],[18,22,25],[18,60,5],[18,75,4],[19,0,21],[19,34,11],[19,60,5],[19,69,2],[19,74,5],[20,0,22],[20,36,9],[20,60,3],[20,68,11],[21,0,23],[21,38,6],[21,66,13],[22,0,33],[22,39,4],[22,66,13],[23,0,34],[23,40,2],[23,58,4],[24,0,35],[24,56,10],[25,0,36],[25,55,13],[26,0,37],[26,55,15],[27,0,39],[27,55,16],[28,0,43],[28,55,18],[28,78,1],[29,0,43],[29,55,24],[30,0,43],[30,57,22]],[[0,0,57],[0,65,14],[1,0,55],[1,66,13],[2,0,50],[2,67,12],[3,0,46],[3,64,15],[4,0,44],[4,64,15],[5,0,43],[5,68,11],[6,0,43],[6,66,13],[7,0,43],[7,66,13],[8,0,41],[8,66,13],[9,0,37],[9,65,14],[10,0,38],[10,40,2],[10,67,12],[11,0,43],[11,66,2],[11,69,10],[12,0,46],[12,67,12],[13,0,46],[13,65,14],[14,0,48],[14,52,2],[14,63,5],[14,71,8],[15,0,54],[15,59,9],[15,72,7],[16,0,52],[16,59,9],[16,73,6],[17,0,50],[17,59,8],[17,75,4],[18,0,21],[18,22,26],[18,60,7],[18,78,1],[19,0,21],[19,35,11],[19,61,5],[19,71,3],[19,77,2],[20,0,22],[20,37,8],[20,61,3],[20,69,10],[21,0,24],[21,38,6],[21,68,11],[22,0,33],[22,39,5],[22,67,12],[23,0,34],[23,72,6],[24,0,36],[24,57,9],[25,0,37],[25,56,12],[26,0,38],[26,56,14],[27,0,39],[27,55,16],[28,0,44],[28,55,18],[29,0,44],[29,56,18],[29,76,3],[30,0,43],[30,58,21]],[[0,0,58],[0,66,13],[1,0,56],[1,67,12],[2,0,51],[2,68,11],[3,0,47],[3,65,14],[4,0,45],[4,65,14],[5,0,44],[5,69,10],[6,0,44],[6,67,12],[7,0,43],[7,67,12],[8,0,42],[8,67,12],[9,0,38],[9,66,13],[10,0,39],[10,41,1],[10,68,11],[11,0,43],[11,67,1],[11,70,9],[12,0,47],[12,68,11],[13,0,47],[13,66,13],[14,0,49],[14,53,1],[14,64,6],[14,72,7],[15,0,54],[15,60,10],[15,74,5],[16,0,53],[16,60,9],[16,75,4],[17,0,51],[17,60,9],[17,77,2],[18,0,49],[18,61,7],[19,0,22],[19,35,11],[19,61,6],[19,73,2],[20,0,23],[20,37,9],[20,61,5],[20,71,8],[21,0,24],[21,39,6],[21,69,10],[22,0,33],[22,40,4],[22,68,11],[23,0,34],[23,68,11],[24,0,36],[24,58,8],[25,0,37],[25,57,11],[26,0,38],[26,56,14],[27,0,39],[27,56,15],[28,0,44],[28,56,17],[29,0,44],[29,56,18],[29,78,1],[30,0,44],[30,57,22]],[[0,0,59],[0,68,11],[1,0,57],[1,68,11],[2,0,51],[2,69,10],[3,0,48],[3,66,13],[4,0,46],[4,66,13],[5,0,45],[5,71,8],[6,0,45],[6,69,10],[7,0,44],[7,69,10],[8,0,42],[8,68,11],[9,0,39],[9,68,11],[10,0,40],[10,42,1],[10,69,10],[11,0,44],[11,46,1],[11,70,9],[12,0,48],[12,69,10],[13,0,48],[13,68,11],[14,0,49],[14,65,6],[14,73,6],[15,0,55],[15,61,2],[15,64,7],[15,75,4],[16,0,54],[16,61,10],[16,76,3],[17,0,52],[17,61,9],[17,78,1],[18,0,22],[18,23,27],[18,62,7],[19,0,22],[19,36,11],[19,62,7],[19,75,2],[20,0,23],[20,38,9],[20,62,6],[20,72,6],[21,0,25],[21,39,6],[21,72,7],[22,0,33],[22,40,5],[22,70,9],[23,0,35],[23,69,10],[24,0,36],[24,59,7],[24,69,1],[24,77,2],[25,0,37],[25,58,10],[26,0,38],[26,57,13],[27,0,39],[27,57,15],[28,0,45],[28,57,16],[29,0,45],[29,57,17],[30,0,45],[30,58,18],[30,78,1]],[[0,0,60],[0,69,10],[1,0,58],[1,70,9],[2,0,52],[2,71,8],[3,0,49],[3,68,11],[4,0,47],[4,68,11],[5,0,46],[5,72,7],[6,0,46],[6,70,9],[7,0,45],[7,70,9],[8,0,43],[8,70,9],[9,0,39],[9,69,10],[10,0,43],[10,70,9],[11,0,45],[11,46,2],[11,71,8],[12,0,49],[12,71,1],[12,73,6],[13,0,48],[13,69,1],[13,71,8],[14,0,50],[14,67,6],[14,74,5],[15,0,56],[15,65,8],[15,76,3],[16,0,56],[16,62,10],[16,77,2],[17,0,54],[17,62,9],[18,0,22],[18,32,20],[18,63,8],[19,0,22],[19,36,12],[19,63,7],[19,76,1],[20,0,24],[20,38,10],[20,64,5],[20,75,4],[21,0,26],[21,40,6],[21,65,2],[21,73,6],[22,0,33],[22,41,4],[22,72,7],[23,0,35],[23,71,8],[24,0,36],[24,63,1],[24,71,1],[24,74,5],[25,0,37],[25,59,10],[26,0,38],[26,59,11],[27,0,39],[27,58,14],[28,0,41],[28,44,2],[28,58,16],[29,0,46],[29,58,17],[30,0,46],[30,58,18]],[[0,0,62],[0,72,7],[1,0,60],[1,72,7],[2,0,53],[2,73,6],[3,0,50],[3,70,9],[4,0,48],[4,70,9],[5,0,47],[5,74,5],[6,0,47],[6,72,7],[7,0,46],[7,72,7],[8,0,44],[8,72,7],[9,0,40],[9,71,8],[10,0,44],[10,71,8],[11,0,46],[11,48,1],[11,73,6],[12,0,50],[12,72,1],[12,75,4],[13,0,49],[13,72,7],[14,0,51],[14,68,1],[14,71,8],[15,0,53],[15,54,3],[15,68,6],[15,76,3],[16,0,57],[16,63,11],[16,78,1],[17,0,56],[17,63,10],[18,0,21],[18,33,20],[18,64,8],[19,0,22],[19,37,12],[19,65,7],[20,0,24],[20,38,11],[20,65,6],[20,77,2],[21,0,26],[21,40,7],[21,65,4],[21,75,4],[22,0,33],[22,41,5],[22,74,5],[23,0,34],[23,42,2],[23,73,6],[24,0,36],[24,72,7],[25,0,36],[25,61,8],[25,78,1],[26,0,37],[26,60,11],[27,0,39],[27,60,13],[28,0,41],[28,45,2],[28,59,15],[29,0,47],[29,59,17],[30,0,47],[30,59,18]],[[0,0,63],[0,75,4],[1,0,61],[1,75,4],[2,0,54],[2,75,4],[3,0,51],[3,72,7],[4,0,49],[4,73,3],[4,77,2],[5,0,48],[5,76,3],[6,0,48],[6,74,5],[7,0,47],[7,74,5],[8,0,44],[8,74,5],[9,0,41],[9,73,6],[10,0,46],[10,73,6],[11,0,47],[11,74,5],[12,0,51],[12,76,3],[13,0,50],[13,74,5],[14,0,52],[14,72,7],[15,0,53],[15,57,1],[15,70,5],[15,77,2],[16,0,58],[16,65,1],[16,68,7],[16,78,1],[17,0,57],[17,65,10],[18,0,21],[18,33,22],[18,65,9],[19,0,22],[19,37,15],[19,66,7],[20,0,24],[20,39,11],[20,66,7],[21,0,26],[21,40,7],[21,66,6],[21,78,1],[22,0,33],[22,41,6],[22,69,1],[22,76,3],[23,0,34],[23,43,2],[23,74,5],[24,0,35],[24,74,5],[25,0,36],[25,74,5],[26,0,37],[26,62,9],[27,0,38],[27,61,12],[28,0,40],[28,46,2],[28,61,14],[29,0,48],[29,61,15],[30,0,48],[30,61,17]],[[0,0,64],[0,77,2],[1,0,62],[1,78,1],[2,0,55],[2,78,1],[3,0,52],[3,74,5],[4,0,50],[4,76,3],[5,0,49],[5,78,1],[6,0,49],[6,76,3],[7,0,48],[7,76,3],[8,0,42],[8,76,3],[9,0,42],[9,75,4],[10,0,46],[10,74,5],[11,0,48],[11,75,4],[12,0,52],[12,77,2],[13,0,51],[13,76,1],[13,78,1],[14,0,52],[14,76,3],[15,0,54],[15,56,1],[15,71,6],[15,78,1],[16,0,60],[16,69,7],[17,0,59],[17,66,10],[18,0,20],[18,34,23],[18,66,9],[19,0,22],[19,37,18],[19,67,8],[20,0,23],[20,39,12],[20,68,6],[21,0,26],[21,40,10],[21,68,6],[22,0,33],[22,41,7],[22,68,4],[22,78,1],[23,0,34],[23,43,2],[23,76,3],[24,0,35],[24,75,4],[25,0,36],[25,75,4],[26,0,37],[26,64,7],[26,77,1],[27,0,38],[27,63,11],[28,0,40],[28,47,2],[28,63,13],[29,0,49],[29,62,15],[30,0,49],[30,62,17]],[[0,0,66],[1,0,61],[2,0,56],[3,0,53],[3,75,4],[4,0,51],[4,78,1],[5,0,51],[6,0,50],[7,0,49],[7,78,1],[8,0,43],[8,78,1],[9,0,43],[9,77,2],[10,0,47],[10,76,3],[11,0,49],[11,76,3],[12,0,53],[12,78,1],[13,0,52],[13,77,1],[14,0,53],[14,77,2],[15,0,54],[15,76,3],[16,0,61],[16,70,1],[16,72,6],[17,0,60],[17,67,2],[17,70,7],[18,0,20],[18,35,24],[18,67,10],[19,0,22],[19,37,19],[19,68,8],[20,0,23],[20,39,13],[20,69,7],[21,0,25],[21,41,11],[21,69,6],[22,0,33],[22,41,7],[22,69,5],[23,0,34],[23,43,3],[24,0,35],[24,77,2],[25,0,36],[25,76,3],[26,0,37],[26,76,3],[27,0,38],[27,65,9],[28,0,39],[28,48,2],[28,64,12],[29,0,50],[29,64,14],[30,0,50],[30,63,16]],[[0,0,67],[1,0,61],[2,0,56],[3,0,54],[3,77,2],[4,0,52],[5,0,51],[6,0,51],[7,0,49],[8,0,44],[9,0,44],[10,0,48],[10,78,1],[11,0,49],[11,78,1],[12,0,54],[13,0,53],[14,0,54],[14,78,1],[15,0,55],[15,76,1],[15,78,1],[16,0,62],[16,71,1],[16,74,4],[17,0,19],[17,20,42],[17,68,1],[17,71,2],[17,74,4],[18,0,19],[18,36,24],[18,68,10],[19,0,21],[19,38,20],[19,69,8],[20,0,22],[20,39,13],[20,70,7],[21,0,25],[21,29,2],[21,41,11],[21,71,6],[22,0,32],[22,42,7],[22,71,5],[23,0,34],[23,43,4],[23,71,3],[24,0,34],[24,78,1],[25,0,36],[25,78,1],[26,0,37],[26,78,1],[27,0,38],[27,67,6],[28,0,39],[28,49,2],[28,66,10],[29,0,51],[29,65,13],[30,0,51],[30,65,14]],[[0,0,68],[1,0,62],[2,0,57],[3,0,54],[4,0,53],[5,0,52],[6,0,52],[7,0,49],[8,0,44],[9,0,44],[10,0,49],[11,0,50],[12,0,54],[13,0,54],[14,0,54],[15,0,55],[16,0,56],[16,61,1],[16,75,1],[16,77,2],[17,0,18],[17,30,33],[17,69,1],[17,72,2],[17,75,4],[18,0,19],[18,36,26],[18,69,10],[19,0,21],[19,38,21],[19,70,8],[20,0,21],[20,39,14],[20,71,7],[21,0,24],[21,27,4],[21,41,11],[21,71,6],[22,0,32],[22,42,8],[22,72,5],[23,0,33],[23,43,4],[23,72,4],[24,0,35],[25,0,35],[25,78,1],[26,0,36],[26,78,1],[27,0,38],[28,0,39],[28,49,2],[28,67,9],[29,0,51],[29,67,12],[30,0,51],[30,66,13]],[[0,0,70],[1,0,62],[2,0,58],[3,0,55],[4,0,54],[5,0,53],[6,0,52],[7,0,50],[8,0,45],[9,0,45],[10,0,49],[11,0,50],[12,0,55],[13,0,54],[14,0,54],[15,0,56],[16,0,57],[16,61,2],[17,0,18],[17,32,31],[17,73,1],[17,75,4],[18,0,19],[18,36,26],[18,70,2],[18,73,6],[19,0,21],[19,38,23],[19,70,9],[20,0,21],[20,39,15],[20,71,7],[21,0,31],[21,40,13],[21,72,6],[22,0,32],[22,42,8],[22,72,6],[23,0,33],[23,43,4],[23,73,4],[24,0,34],[24,74,1],[25,0,35],[26,0,36],[27,0,38],[28,0,39],[28,50,2],[28,68,7],[29,0,52],[29,68,11],[30,0,52],[30,67,12]],[[0,0,70],[1,0,63],[2,0,58],[3,0,56],[4,0,54],[5,0,53],[6,0,52],[7,0,50],[8,0,45],[9,0,45],[10,0,50],[11,0,51],[12,0,55],[13,0,54],[14,0,54],[15,0,56],[16,0,58],[16,61,1],[17,0,17],[17,34,29],[17,73,1],[17,76,3],[18,0,19],[18,36,27],[18,70,2],[18,73,2],[18,76,3],[19,0,20],[19,38,23],[19,70,9],[20,0,20],[20,40,14],[20,71,8],[21,0,30],[21,41,12],[21,72,6],[22,0,32],[22,42,8],[22,73,5],[23,0,33],[23,43,3],[23,73,4],[24,0,34],[24,73,3],[25,0,35],[26,0,36],[27,0,38],[28,0,40],[28,49,2],[28,68,6],[29,0,52],[29,68,10],[30,0,52],[30,67,12]],[[0,0,71],[1,0,63],[2,0,58],[3,0,56],[4,0,54],[5,0,54],[6,0,52],[7,0,50],[8,0,45],[9,0,46],[10,0,50],[11,0,51],[12,0,54],[13,0,54],[14,0,54],[15,0,56],[16,0,17],[16,19,3],[16,26,32],[16,61,2],[17,0,17],[17,34,29],[17,73,1],[17,76,3],[18,0,19],[18,36,26],[18,70,1],[18,73,2],[18,76,3],[19,0,20],[19,38,23],[19,70,9],[20,0,22],[20,40,14],[20,71,7],[21,0,30],[21,41,12],[21,72,6],[22,0,32],[22,42,8],[22,73,5],[23,0,33],[23,43,3],[23,73,4],[24,0,34],[24,73,3],[25,0,35],[26,0,36],[27,0,38],[28,0,40],[28,47,5],[28,68,5],[29,0,52],[29,68,10],[30,0,52],[30,67,12]],[[0,0,72],[1,0,64],[2,0,59],[3,0,56],[4,0,55],[5,0,54],[6,0,53],[7,0,50],[8,0,45],[9,0,46],[10,0,51],[11,0,51],[12,0,55],[13,0,54],[14,0,54],[15,0,56],[16,0,17],[16,19,1],[16,28,30],[16,61,2],[17,0,17],[17,35,28],[17,73,1],[17,76,3],[18,0,19],[18,36,27],[18,70,1],[18,73,2],[18,76,3],[19,0,20],[19,38,24],[19,70,9],[20,0,22],[20,39,15],[20,71,7],[21,0,30],[21,41,12],[21,72,6],[22,0,32],[22,42,8],[22,72,6],[23,0,33],[23,43,2],[23,73,4],[24,0,34],[24,73,3],[25,0,35],[26,0,36],[27,0,38],[28,0,41],[28,45,7],[28,69,3],[29,0,52],[29,68,9],[30,0,52],[30,67,12]],[[0,0,72],[1,0,65],[2,0,59],[3,0,56],[4,0,55],[5,0,54],[6,0,53],[7,0,49],[8,0,45],[9,0,46],[10,0,51],[11,0,51],[12,0,55],[13,0,54],[14,0,54],[15,0,56],[16,0,16],[16,29,29],[16,61,1],[17,0,17],[17,35,28],[17,76,1],[17,78,1],[18,0,19],[18,36,27],[18,70,1],[18,73,2],[18,76,3],[19,0,19],[19,38,24],[19,70,9],[20,0,22],[20,39,15],[20,71,7],[21,0,30],[21,41,12],[21,72,6],[22,0,32],[22,42,8],[22,72,5],[23,0,33],[23,43,2],[23,73,4],[24,0,34],[24,73,3],[25,0,35],[26,0,36],[27,0,38],[28,0,52],[28,69,1],[29,0,52],[29,68,9],[30,0,52],[30,67,12]],[[0,0,73],[1,0,66],[1,69,2],[2,0,60],[3,0,57],[4,0,55],[5,0,54],[6,0,53],[7,0,49],[8,0,45],[9,0,47],[10,0,51],[11,0,52],[12,0,55],[13,0,54],[14,0,54],[15,0,56],[16,0,16],[16,29,29],[16,61,1],[17,0,17],[17,35,28],[17,76,1],[17,78,1],[18,0,19],[18,36,27],[18,73,6],[19,0,19],[19,38,23],[19,71,7],[20,0,23],[20,27,2],[20,39,15],[20,71,7],[21,0,30],[21,40,13],[21,72,6],[22,0,32],[22,42,8],[22,72,5],[23,0,33],[23,43,2],[23,72,5],[24,0,34],[24,72,4],[25,0,35],[26,0,36],[26,78,1],[27,0,39],[27,50,2],[27,78,1],[28,0,52],[29,0,52],[29,68,9],[30,0,52],[30,67,12]],[[0,0,74],[1,0,72],[2,0,60],[3,0,57],[4,0,55],[5,0,55],[6,0,53],[7,0,46],[7,47,2],[8,0,46],[9,0,47],[10,0,51],[11,0,52],[12,0,55],[13,0,54],[14,0,54],[15,0,21],[15,22,1],[15,24,31],[16,0,16],[16,29,29],[16,61,1],[17,0,17],[17,35,28],[17,76,1],[17,78,1],[18,0,19],[18,36,27],[18,73,1],[18,75,3],[19,0,19],[19,38,23],[19,70,8],[20,0,24],[20,27,2],[20,39,15],[20,71,7],[21,0,30],[21,40,13],[21,72,6],[22,0,32],[22,42,8],[22,72,5],[23,0,33],[23,43,2],[23,72,5],[24,0,34],[24,72,4],[25,0,36],[26,0,37],[26,78,1],[27,0,39],[27,49,3],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,67,12]],[[0,0,74],[1,0,72],[2,0,61],[3,0,57],[4,0,56],[5,0,55],[6,0,53],[7,0,46],[8,0,46],[9,0,47],[10,0,51],[11,0,51],[12,0,55],[13,0,54],[14,0,54],[15,0,20],[15,22,1],[15,24,1],[15,26,29],[16,0,15],[16,30,28],[16,61,1],[17,0,17],[17,35,28],[18,0,18],[18,36,27],[18,75,3],[19,0,19],[19,38,24],[19,71,7],[20,0,24],[20,27,2],[20,39,15],[20,58,1],[20,71,7],[21,0,30],[21,40,13],[21,72,6],[22,0,32],[22,42,7],[22,72,5],[23,0,33],[23,43,2],[23,72,5],[24,0,34],[24,72,4],[25,0,36],[25,74,1],[26,0,37],[26,78,1],[27,0,39],[27,47,4],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,67,11]],[[0,0,75],[1,0,73],[2,0,61],[3,0,58],[4,0,56],[5,0,55],[6,0,53],[7,0,46],[8,0,46],[9,0,47],[10,0,51],[11,0,52],[12,0,55],[13,0,54],[14,0,54],[15,0,19],[15,20,1],[15,22,1],[15,24,1],[15,26,29],[16,0,15],[16,30,28],[16,61,1],[17,0,17],[17,35,28],[18,0,18],[18,36,27],[18,72,2],[18,75,3],[19,0,19],[19,38,24],[19,70,8],[20,0,29],[20,39,15],[20,71,7],[21,0,30],[21,40,13],[21,72,5],[22,0,32],[22,42,7],[22,72,5],[23,0,33],[23,72,5],[24,0,34],[24,72,4],[25,0,36],[25,74,1],[26,0,37],[26,78,1],[27,0,40],[27,45,7],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,67,11]],[[0,0,76],[1,0,74],[2,0,61],[3,0,58],[4,0,56],[5,0,55],[6,0,54],[7,0,47],[8,0,46],[9,0,48],[10,0,51],[11,0,54],[12,0,55],[13,0,54],[14,0,55],[15,0,16],[15,18,1],[15,24,1],[15,26,29],[16,0,15],[16,30,28],[16,61,1],[17,0,17],[17,35,28],[18,0,18],[18,36,27],[18,72,2],[18,75,3],[19,0,19],[19,38,24],[19,71,7],[20,0,29],[20,40,14],[20,71,7],[21,0,30],[21,41,12],[21,72,5],[22,0,32],[22,42,6],[22,72,5],[23,0,33],[23,72,5],[24,0,35],[24,72,4],[25,0,36],[25,74,1],[26,0,37],[26,78,1],[27,0,52],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,67,11]],[[0,0,77],[1,0,74],[2,0,62],[3,0,58],[4,0,56],[5,0,56],[6,0,53],[7,0,47],[8,0,47],[9,0,51],[10,0,52],[11,0,54],[12,0,55],[13,0,54],[14,0,55],[15,0,15],[15,18,1],[15,25,1],[15,27,29],[16,0,15],[16,31,27],[16,61,1],[17,0,17],[17,35,28],[18,0,18],[18,36,27],[18,72,2],[18,75,3],[19,0,20],[19,38,24],[19,71,3],[19,75,3],[20,0,29],[20,40,14],[20,71,7],[21,0,30],[21,41,10],[21,52,2],[21,72,5],[22,0,32],[22,42,6],[22,72,5],[23,0,33],[23,72,5],[24,0,35],[24,72,4],[25,0,36],[25,74,1],[26,0,38],[26,78,1],[27,0,52],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,67,11]],[[0,0,78],[1,0,75],[2,0,62],[3,0,58],[4,0,57],[5,0,56],[6,0,53],[7,0,47],[8,0,48],[9,0,51],[10,0,52],[11,0,55],[12,0,56],[13,0,54],[14,0,55],[15,0,14],[15,26,30],[16,0,15],[16,31,27],[16,61,1],[17,0,17],[17,35,28],[18,0,18],[18,36,27],[18,72,2],[18,75,3],[19,0,20],[19,38,24],[19,71,3],[19,75,3],[20,0,29],[20,40,14],[20,71,7],[21,0,31],[21,41,10],[21,72,5],[22,0,32],[22,42,5],[22,72,5],[23,0,33],[23,72,5],[24,0,35],[24,72,4],[25,0,37],[25,74,1],[26,0,39],[26,78,1],[27,0,52],[27,78,1],[28,0,52],[29,0,52],[29,68,8],[30,0,52],[30,68,10]],[[0,0,78],[1,0,75],[2,0,62],[3,0,59],[4,0,57],[5,0,56],[6,0,48],[6,50,2],[7,0,47],[8,0,48],[9,0,51],[10,0,52],[11,0,55],[12,0,55],[13,0,54],[14,0,55],[15,0,14],[15,26,1],[15,28,28],[16,0,15],[16,31,27],[16,59,1],[16,61,2],[17,0,17],[17,35,28],[18,0,18],[18,37,26],[18,72,2],[18,75,3],[19,0,20],[19,38,24],[19,71,3],[19,75,3],[20,0,29],[20,40,14],[20,71,7],[21,0,31],[21,42,8],[21,72,5],[22,0,32],[22,43,3],[22,72,5],[23,0,34],[23,73,4],[24,0,35],[24,72,4],[25,0,37],[25,74,1],[26,0,40],[26,49,3],[26,78,1],[27,0,52],[27,78,1],[28,0,52],[28,69,2],[29,0,52],[29,68,9],[30,0,52],[30,68,11]],[[0,0,78],[1,0,68],[1,72,3],[2,0,61],[3,0,59],[4,0,57],[5,0,56],[6,0,48],[7,0,48],[8,0,49],[9,0,52],[10,0,53],[11,0,56],[12,0,55],[13,0,54],[14,0,55],[15,0,14],[15,27,29],[16,0,15],[16,33,30],[17,0,17],[17,35,28],[18,0,17],[18,37,26],[18,72,2],[18,75,3],[19,0,21],[19,39,23],[19,71,7],[20,0,29],[20,40,14],[20,71,7],[21,0,31],[21,42,8],[21,72,5],[22,0,33],[22,43,2],[22,73,4],[23,0,34],[23,73,4],[24,0,36],[24,73,3],[25,0,38],[26,0,42],[26,44,8],[26,78,1],[27,0,52],[27,78,1],[28,0,52],[28,69,5],[29,0,52],[29,68,9],[30,0,52],[30,68,11]],[[0,0,78],[1,0,66],[1,74,1],[2,0,61],[3,0,59],[4,0,58],[5,0,55],[6,0,48],[7,0,49],[8,0,49],[9,0,53],[10,0,55],[11,0,56],[12,0,54],[13,0,55],[14,0,18],[14,24,32],[15,0,14],[15,28,28],[16,0,15],[16,33,30],[17,0,17],[17,35,28],[17,78,1],[18,0,17],[18,37,26],[18,72,2],[18,75,4],[19,0,21],[19,39,16],[19,60,1],[19,71,7],[20,0,30],[20,41,13],[20,72,6],[21,0,31],[21,42,8],[21,72,6],[22,0,33],[22,73,4],[23,0,35],[23,73,4],[24,0,36],[24,73,3],[25,0,39],[26,0,52],[27,0,52],[28,0,52],[28,69,6],[29,0,52],[29,68,10],[30,0,52],[30,68,11]],[[0,0,70],[0,72,5],[1,0,65],[2,0,61],[3,0,59],[4,0,57],[5,0,49],[6,0,48],[7,0,49],[8,0,52],[9,0,53],[10,0,56],[11,0,56],[12,0,55],[13,0,56],[14,0,16],[14,25,31],[15,0,14],[15,30,27],[15,59,1],[16,0,15],[16,34,29],[17,0,17],[17,36,28],[17,76,1],[17,78,1],[18,0,17],[18,38,24],[18,72,2],[18,75,4],[19,0,21],[19,26,2],[19,39,16],[19,72,6],[20,0,30],[20,41,10],[20,53,1],[20,72,6],[21,0,32],[21,42,5],[21,73,5],[22,0,34],[22,73,4],[23,0,35],[23,73,4],[24,0,37],[24,74,2],[25,0,40],[25,50,3],[26,0,52],[27,0,52],[28,0,53],[28,69,7],[29,0,52],[29,68,11],[30,0,52],[30,68,11]],[[0,0,66],[1,0,63],[2,0,60],[3,0,58],[4,0,57],[5,0,49],[6,0,49],[7,0,50],[8,0,53],[9,0,54],[10,0,57],[11,0,55],[12,0,55],[13,0,56],[14,0,15],[14,27,30],[15,0,14],[15,30,1],[15,32,28],[15,61,2],[16,0,15],[16,34,30],[17,0,17],[17,36,28],[17,73,1],[17,76,1],[18,0,17],[18,38,24],[18,72,3],[18,76,3],[19,0,29],[19,40,14],[19,72,7],[20,0,31],[20,42,9],[20,73,6],[21,0,33],[21,43,3],[21,73,5],[22,0,34],[22,74,4],[23,0,36],[23,73,4],[24,0,39],[25,0,53],[26,0,53],[27,0,53],[27,70,5],[28,0,53],[28,69,9],[29,0,53],[29,69,10],[30,0,53],[30,68,11]],[[0,0,65],[1,0,62],[2,0,60],[3,0,59],[4,0,50],[5,0,50],[6,0,51],[7,0,54],[8,0,54],[9,0,57],[10,0,58],[11,0,56],[12,0,57],[13,0,17],[13,24,34],[14,0,16],[14,29,31],[15,0,14],[15,32,33],[16,0,15],[16,35,30],[17,0,17],[17,37,27],[17,74,1],[17,77,2],[18,0,17],[18,40,16],[18,74,5],[19,0,30],[19,42,12],[19,74,5],[20,0,32],[20,43,9],[20,75,4],[21,0,34],[21,75,4],[22,0,36],[22,75,4],[23,0,38],[23,76,3],[24,0,40],[25,0,54],[26,0,54],[27,0,54],[27,71,7],[28,0,54],[28,70,9],[29,0,54],[29,70,9],[30,0,53],[30,69,10]],[[0,0,64],[1,0,62],[2,0,61],[3,0,52],[4,0,51],[5,0,52],[6,0,53],[7,0,56],[8,0,59],[9,0,59],[10,0,58],[11,0,59],[12,0,59],[13,0,18],[13,27,33],[14,0,15],[14,31,35],[15,0,15],[15,35,32],[16,0,16],[16,37,30],[17,0,18],[17,39,26],[17,76,3],[18,0,18],[18,42,15],[18,76,3],[19,0,32],[19,44,10],[19,77,2],[20,0,34],[20,45,5],[20,78,1],[21,0,36],[21,78,1],[22,0,38],[22,78,1],[23,0,40],[24,0,43],[24,51,4],[25,0,55],[26,0,55],[27,0,55],[27,73,6],[28,0,55],[28,73,6],[29,0,55],[29,72,7],[30,0,55],[30,72,7]],[[0,0,65],[1,0,63],[2,0,54],[3,0,54],[4,0,54],[5,0,55],[6,0,58],[7,0,59],[8,0,62],[9,0,61],[10,0,61],[11,0,62],[12,0,20],[12,25,37],[13,0,16],[13,19,2],[13,31,34],[13,67,2],[14,0,16],[14,35,34],[15,0,15],[15,37,32],[16,0,16],[16,40,29],[17,0,18],[17,42,18],[18,0,19],[18,29,3],[18,44,14],[19,0,19],[19,24,10],[19,47,8],[20,0,36],[20,48,1],[21,0,38],[22,0,40],[23,0,43],[24,0,58],[25,0,57],[26,0,57],[26,76,3],[27,0,57],[27,76,3],[28,0,57],[28,76,3],[29,0,57],[29,75,4],[30,0,57],[30,75,4]],[[0,0,58],[1,0,57],[2,0,56],[3,0,57],[4,0,58],[4,59,1],[5,0,61],[6,0,64],[7,0,64],[8,0,63],[9,0,64],[10,0,65],[11,0,20],[11,24,41],[12,0,20],[12,31,37],[12,70,2],[13,0,13],[13,35,38],[14,0,16],[14,18,2],[14,38,35],[15,0,16],[15,18,2],[15,40,32],[16,0,16],[16,43,23],[17,0,17],[17,31,1],[17,46,16],[18,0,19],[18,27,7],[18,48,10],[19,0,20],[19,26,11],[19,49,4],[20,0,39],[21,0,41],[22,0,43],[23,0,47],[24,0,60],[25,0,60],[26,0,60],[27,0,60],[28,0,60],[29,0,60],[30,0,60],[30,78,1]],[[0,0,60],[1,0,60],[2,0,60],[3,0,65],[4,0,65],[5,0,67],[6,0,67],[7,0,67],[8,0,68],[9,0,69],[10,0,21],[10,26,43],[11,0,23],[11,32,39],[11,74,3],[12,0,12],[12,37,40],[13,0,14],[13,40,36],[14,0,15],[14,43,33],[15,0,19],[15,21,2],[15,45,22],[15,68,2],[16,0,22],[16,48,17],[17,0,17],[17,32,4],[17,50,11],[18,0,19],[18,29,9],[18,53,5],[19,0,21],[19,28,12],[20,0,21],[20,28,15],[21,0,45],[22,0,48],[23,0,52],[23,57,7],[24,0,64],[25,0,64],[26,0,63],[27,0,63],[28,0,63],[29,0,63],[30,0,63]],[[0,0,63],[1,0,65],[2,0,69],[3,0,71],[4,0,71],[5,0,71],[6,0,72],[7,0,73],[8,0,23],[8,25,48],[9,0,25],[9,29,44],[9,74,1],[10,0,26],[10,36,39],[10,77,2],[11,0,13],[11,40,39],[12,0,13],[12,43,36],[13,0,15],[13,46,30],[14,0,19],[14,23,1],[14,49,21],[15,0,23],[15,51,18],[16,0,26],[16,34,4],[16,54,11],[17,0,18],[17,22,4],[17,33,7],[17,57,5],[18,0,19],[18,32,11],[19,0,21],[19,31,14],[20,0,22],[20,29,18],[21,0,23],[21,29,21],[22,0,54],[22,66,1],[23,0,67],[24,0,67],[25,0,67],[26,0,67],[27,0,67],[28,0,67],[29,0,67],[30,0,67]],[[0,0,73],[1,0,73],[1,74,1],[2,0,75],[3,0,76],[4,0,77],[5,0,77],[6,0,78],[7,0,25],[7,30,48],[8,0,28],[8,35,42],[8,78,1],[9,0,16],[9,41,38],[10,0,14],[10,44,35],[11,0,15],[11,47,32],[12,0,17],[12,50,29],[13,0,20],[13,53,20],[14,0,24],[14,56,16],[15,0,25],[15,37,4],[15,59,9],[16,0,44],[16,61,5],[17,0,46],[18,0,20],[18,35,14],[19,0,20],[19,34,17],[20,0,21],[20,33,20],[21,0,24],[21,31,26],[22,0,24],[22,31,41],[23,0,71],[24,0,71],[25,0,71],[26,0,71],[27,0,71],[28,0,71],[29,0,71],[30,0,71]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,27],[5,32,47],[6,0,30],[6,37,42],[7,0,18],[7,43,36],[8,0,16],[8,46,33],[9,0,16],[9,24,4],[9,49,30],[10,0,18],[10,25,1],[10,53,26],[11,0,22],[11,56,23],[12,0,22],[12,59,18],[13,0,26],[13,62,11],[14,0,27],[14,39,5],[14,65,7],[15,0,47],[15,67,1],[16,0,50],[17,0,52],[18,0,55],[19,0,24],[19,36,22],[20,0,21],[20,36,26],[20,75,1],[21,0,22],[21,36,40],[22,0,24],[22,33,43],[23,0,25],[23,33,43],[24,0,25],[24,33,43],[25,0,76],[26,0,76],[27,0,76],[28,0,76],[29,0,76],[30,0,75]],[[0,0,79],[1,0,79],[2,0,29],[2,31,48],[3,0,31],[3,35,44],[4,0,31],[4,41,38],[5,0,17],[5,46,33],[6,0,17],[6,25,1],[6,50,29],[7,0,17],[7,22,1],[7,24,8],[7,53,26],[8,0,19],[8,56,23],[9,0,23],[9,60,19],[10,0,24],[10,28,1],[10,63,16],[11,0,29],[11,66,13],[12,0,28],[12,69,7],[13,0,30],[13,40,7],[13,72,2],[14,0,50],[15,0,53],[16,0,56],[17,0,59],[18,0,64],[19,0,69],[19,76,3],[20,0,79],[21,0,21],[21,38,41],[22,0,22],[22,38,41],[23,0,23],[23,37,42],[24,0,25],[24,35,44],[25,0,26],[25,34,45],[26,0,26],[26,34,45],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,33],[0,37,42],[1,0,33],[1,40,39],[2,0,19],[2,46,33],[3,0,19],[3,51,28],[4,0,18],[4,23,1],[4,25,1],[4,27,1],[4,29,1],[4,31,1],[4,54,25],[5,0,21],[5,24,9],[5,58,21],[6,0,21],[6,61,18],[7,0,25],[7,32,1],[7,65,14],[8,0,26],[8,31,2],[8,69,10],[9,0,35],[9,72,7],[10,0,29],[10,75,4],[11,0,29],[11,44,3],[11,78,1],[12,0,32],[12,41,9],[13,0,54],[14,0,56],[15,0,60],[16,0,63],[17,0,72],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,22],[23,40,39],[24,0,22],[24,40,39],[25,0,23],[25,39,40],[26,0,25],[26,37,42],[27,0,27],[27,36,43],[28,0,27],[28,35,44],[29,0,29],[29,33,46],[30,0,79]],[[0,0,21],[0,54,25],[1,0,19],[1,22,10],[1,56,23],[2,0,22],[2,25,7],[2,60,19],[3,0,22],[3,30,1],[3,64,15],[4,0,26],[4,68,11],[5,0,26],[5,71,8],[6,0,40],[6,75,4],[7,0,38],[7,78,1],[8,0,32],[9,0,30],[10,0,32],[10,44,7],[11,0,54],[12,0,57],[13,0,60],[14,0,63],[15,0,69],[15,76,3],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,30],[24,37,42],[25,0,22],[25,41,38],[26,0,22],[26,41,38],[27,0,23],[27,40,39],[28,0,25],[28,38,41],[29,0,27],[29,36,43],[30,0,28],[30,36,43]],[[0,0,25],[0,27,3],[0,31,3],[0,68,11],[1,0,27],[1,70,9],[2,0,27],[2,75,4],[3,0,42],[3,78,1],[4,0,42],[5,0,40],[6,0,35],[7,0,30],[8,0,30],[8,46,5],[9,0,35],[9,42,12],[10,0,58],[11,0,61],[12,0,64],[13,0,68],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,23],[26,41,38],[27,0,22],[27,41,38],[28,0,22],[28,41,38],[29,0,23],[29,39,40],[30,0,27],[30,37,42]],[[0,0,39],[0,43,11],[1,0,42],[1,52,7],[2,0,42],[2,56,6],[3,0,40],[3,60,6],[4,0,36],[4,64,5],[5,0,30],[5,68,1],[5,70,1],[6,0,30],[6,47,4],[6,73,1],[6,75,1],[7,0,34],[7,43,11],[7,75,1],[8,0,58],[9,0,61],[10,0,64],[11,0,68],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,32],[26,36,43],[27,0,22],[27,41,38],[28,0,21],[28,41,38],[29,0,22],[29,41,38],[30,0,24],[30,38,41]],[[0,0,42],[0,61,9],[1,0,39],[1,63,11],[2,0,34],[2,67,10],[3,0,30],[3,71,8],[4,0,33],[4,46,7],[4,75,4],[5,0,56],[6,0,60],[7,0,63],[8,0,67],[9,0,73],[9,78,1],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,23],[27,41,38],[28,0,21],[28,42,37],[29,0,21],[29,41,38],[30,0,22],[30,40,39]],[[0,0,32],[0,73,6],[1,0,31],[1,48,5],[1,75,4],[2,0,35],[2,44,12],[3,0,60],[4,0,63],[5,0,67],[6,0,72],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,24],[27,42,37],[28,0,20],[28,42,37],[29,0,21],[29,42,37],[30,0,22],[30,40,39]],[[0,0,60],[1,0,64],[2,0,67],[3,0,73],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,21],[27,43,36],[28,0,20],[28,43,36],[29,0,21],[29,42,37],[30,0,22],[30,40,39]],[[0,0,71],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,24],[26,44,35],[27,0,21],[27,44,35],[28,0,21],[28,43,36],[29,0,22],[29,42,37],[30,0,24],[30,40,39]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,23],[25,45,34],[26,0,21],[26,45,34],[27,0,21],[27,44,35],[28,0,22],[28,43,36],[29,0,24],[29,41,38],[30,0,27],[30,39,40]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,22],[24,46,33],[25,0,22],[25,46,33],[26,0,22],[26,45,34],[27,0,24],[27,44,35],[28,0,26],[28,42,37],[29,0,27],[29,40,39],[30,0,28],[30,39,40]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,23],[22,47,32],[23,0,22],[23,47,32],[24,0,23],[24,46,33],[25,0,24],[25,45,34],[26,0,26],[26,43,36],[27,0,28],[27,41,38],[28,0,29],[28,40,39],[29,0,29],[29,40,39],[30,0,29],[30,30,49]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,44],[19,46,33],[20,0,23],[20,48,31],[21,0,23],[21,48,31],[22,0,24],[22,47,32],[23,0,25],[23,46,33],[24,0,27],[24,44,35],[25,0,29],[25,42,37],[26,0,29],[26,41,38],[27,0,30],[27,41,38],[28,0,29],[28,41,38],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,32],[17,39,6],[17,48,31],[18,0,24],[18,48,31],[19,0,24],[19,48,31],[20,0,25],[20,48,31],[21,0,26],[21,47,32],[22,0,28],[22,45,34],[23,0,29],[23,43,36],[24,0,30],[24,42,37],[25,0,30],[25,42,37],[26,0,30],[26,42,37],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,27],[15,28,2],[15,43,3],[15,49,30],[16,0,25],[16,49,30],[17,0,25],[17,49,30],[18,0,25],[18,49,30],[19,0,26],[19,48,31],[20,0,28],[20,46,33],[21,0,30],[21,44,35],[22,0,31],[22,43,36],[23,0,31],[23,43,36],[24,0,31],[24,43,36],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,28],[13,50,29],[14,0,26],[14,50,29],[15,0,26],[15,50,29],[16,0,26],[16,49,30],[17,0,27],[17,49,30],[18,0,29],[18,47,32],[19,0,31],[19,45,34],[20,0,31],[20,43,36],[21,0,32],[21,43,36],[22,0,32],[22,43,36],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,29],[11,45,5],[11,51,28],[12,0,27],[12,49,1],[12,51,28],[13,0,26],[13,51,28],[14,0,27],[14,50,29],[15,0,27],[15,49,30],[16,0,29],[16,48,31],[17,0,31],[17,46,33],[18,0,32],[18,44,35],[19,0,32],[19,43,36],[20,0,32],[20,43,36],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,32],[9,42,37],[10,0,28],[10,49,2],[10,52,27],[11,0,27],[11,50,1],[11,52,27],[12,0,27],[12,51,28],[13,0,27],[13,50,29],[14,0,28],[14,49,30],[15,0,31],[15,47,32],[16,0,32],[16,45,34],[17,0,32],[17,44,35],[18,0,32],[18,44,35],[19,0,35],[19,43,36],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,30],[8,46,4],[8,52,27],[9,0,27],[9,50,2],[9,53,26],[10,0,27],[10,50,1],[10,52,27],[11,0,27],[11,51,28],[12,0,28],[12,50,29],[13,0,29],[13,48,31],[14,0,32],[14,46,33],[15,0,32],[15,44,35],[16,0,32],[16,44,35],[17,0,32],[17,44,35],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,29],[7,47,3],[7,53,26],[8,0,28],[8,50,2],[8,53,26],[9,0,28],[9,50,2],[9,53,26],[10,0,28],[10,52,27],[11,0,29],[11,50,29],[12,0,30],[12,48,31],[13,0,32],[13,46,33],[14,0,33],[14,44,35],[15,0,32],[15,44,35],[16,0,33],[16,44,35],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,34],[5,40,39],[6,0,28],[6,47,4],[6,52,27],[7,0,28],[7,50,3],[7,54,25],[8,0,28],[8,50,2],[8,53,26],[9,0,28],[9,52,27],[10,0,29],[10,49,30],[11,0,31],[11,48,31],[12,0,32],[12,45,34],[13,0,33],[13,44,35],[14,0,32],[14,44,35],[15,0,35],[15,43,36],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,33],[4,41,38],[5,0,28],[5,47,32],[6,0,28],[6,51,2],[6,54,25],[7,0,28],[7,51,2],[7,54,25],[8,0,28],[8,51,1],[8,53,26],[9,0,29],[9,50,29],[10,0,31],[10,48,31],[11,0,32],[11,45,34],[12,0,33],[12,44,35],[13,0,32],[13,43,36],[14,0,35],[14,43,36],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,34],[3,39,40],[4,0,28],[4,47,32],[5,0,28],[5,51,2],[5,55,24],[6,0,28],[6,51,2],[6,55,24],[7,0,28],[7,50,29],[8,0,29],[8,51,28],[9,0,31],[9,48,31],[10,0,32],[10,45,34],[11,0,33],[11,44,35],[12,0,32],[12,43,36],[13,0,35],[13,43,36],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,28],[3,46,33],[4,0,28],[4,49,30],[5,0,28],[5,51,3],[5,55,24],[6,0,28],[6,51,2],[6,55,24],[7,0,29],[7,51,28],[8,0,31],[8,49,30],[9,0,32],[9,46,33],[10,0,32],[10,44,35],[11,0,32],[11,43,36],[12,0,34],[12,43,36],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,29],[2,44,35],[3,0,28],[3,49,30],[4,0,28],[4,51,3],[4,55,24],[5,0,28],[5,51,3],[5,55,24],[6,0,29],[6,50,3],[6,54,25],[7,0,31],[7,50,29],[8,0,32],[8,47,32],[9,0,32],[9,44,35],[10,0,32],[10,43,36],[11,0,33],[11,43,36],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,31],[1,39,40],[2,0,28],[2,47,32],[3,0,28],[3,50,29],[4,0,28],[4,52,2],[4,56,23],[5,0,29],[5,51,3],[5,55,24],[6,0,30],[6,50,3],[6,54,25],[7,0,32],[7,50,29],[8,0,32],[8,45,34],[9,0,32],[9,43,36],[10,0,32],[10,43,36],[11,0,37],[11,43,36],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,32],[0,37,42],[1,0,28],[1,42,37],[2,0,28],[2,48,31],[3,0,28],[3,51,3],[3,55,24],[4,0,28],[4,52,3],[4,56,23],[5,0,29],[5,50,4],[5,55,24],[6,0,31],[6,49,30],[7,0,32],[7,49,30],[8,0,32],[8,45,34],[9,0,31],[9,43,36],[10,0,33],[10,43,36],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,29],[0,40,39],[1,0,28],[1,44,35],[2,0,28],[2,49,30],[3,0,28],[3,52,27],[4,0,28],[4,52,3],[4,56,23],[5,0,30],[5,50,4],[5,56,23],[6,0,31],[6,49,30],[7,0,32],[7,47,32],[8,0,32],[8,44,35],[9,0,31],[9,42,37],[10,0,36],[10,42,37],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,28],[0,41,38],[1,0,28],[1,44,35],[2,0,28],[2,49,30],[3,0,28],[3,52,27],[4,0,29],[4,52,3],[4,56,23],[5,0,30],[5,50,5],[5,56,23],[6,0,31],[6,49,4],[6,55,24],[7,0,32],[7,47,32],[8,0,32],[8,43,36],[9,0,31],[9,42,37],[10,0,37],[10,42,37],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,28],[0,40,39],[1,0,28],[1,44,35],[2,0,28],[2,49,30],[3,0,28],[3,51,28],[4,0,29],[4,52,3],[4,56,23],[5,0,30],[5,50,5],[5,56,23],[6,0,31],[6,49,5],[6,55,24],[7,0,31],[7,49,30],[8,0,31],[8,43,36],[9,0,31],[9,42,37],[10,0,38],[10,42,37],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,28],[0,39,40],[1,0,28],[1,43,36],[2,0,28],[2,49,30],[3,0,28],[3,51,28],[4,0,29],[4,52,3],[4,56,23],[5,0,30],[5,52,3],[5,57,22],[6,0,31],[6,49,5],[6,55,24],[7,0,31],[7,48,3],[7,52,27],[8,0,31],[8,45,34],[9,0,31],[9,42,37],[10,0,37],[10,42,37],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,29],[0,36,43],[1,0,28],[1,41,38],[2,0,28],[2,47,32],[3,0,28],[3,51,28],[4,0,28],[4,53,1],[4,56,23],[5,0,30],[5,52,4],[5,57,22],[6,0,31],[6,50,5],[6,56,23],[7,0,31],[7,49,4],[7,54,25],[8,0,31],[8,45,34],[9,0,30],[9,43,36],[10,0,34],[10,42,37],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,28],[1,36,43],[2,0,27],[2,44,35],[3,0,27],[3,48,31],[4,0,28],[4,52,27],[5,0,29],[5,53,2],[5,57,22],[6,0,30],[6,52,4],[6,57,22],[7,0,31],[7,49,6],[7,56,23],[8,0,31],[8,49,3],[8,54,25],[9,0,31],[9,45,34],[10,0,30],[10,42,37],[11,0,37],[11,42,37],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,28],[2,37,42],[3,0,27],[3,44,35],[4,0,27],[4,49,30],[5,0,28],[5,52,27],[6,0,29],[6,53,2],[6,57,22],[7,0,30],[7,53,3],[7,57,22],[8,0,31],[8,49,6],[8,57,22],[9,0,31],[9,49,3],[9,55,24],[10,0,30],[10,45,34],[11,0,31],[11,42,37],[12,0,38],[12,42,37],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,28],[3,35,44],[4,0,27],[4,42,37],[5,0,27],[5,48,31],[6,0,28],[6,51,28],[7,0,29],[7,57,22],[8,0,30],[8,53,3],[8,57,22],[9,0,31],[9,50,6],[9,57,22],[10,0,31],[10,49,5],[10,56,23],[11,0,30],[11,46,5],[11,52,27],[12,0,30],[12,42,37],[13,0,37],[13,42,37],[14,0,79],[15,0,79],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,28],[4,30,49],[5,0,27],[5,38,41],[6,0,27],[6,45,34],[7,0,28],[7,49,30],[8,0,28],[8,52,27],[9,0,30],[9,54,2],[9,57,22],[10,0,31],[10,51,5],[10,57,22],[11,0,31],[11,48,7],[11,57,22],[12,0,31],[12,49,1],[12,53,1],[12,55,24],[13,0,30],[13,44,35],[14,0,33],[14,42,37],[15,0,41],[15,42,37],[16,0,79],[17,0,79],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,28],[6,31,48],[7,0,27],[7,39,40],[8,0,27],[8,45,34],[9,0,28],[9,50,29],[10,0,29],[10,57,22],[11,0,30],[11,53,3],[11,58,21],[12,0,31],[12,50,6],[12,58,21],[13,0,31],[13,49,5],[13,57,22],[14,0,30],[14,46,6],[14,54,25],[15,0,30],[15,43,36],[16,0,33],[16,34,1],[16,42,37],[17,0,40],[17,41,38],[18,0,79],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,27],[8,31,48],[9,0,27],[9,38,41],[10,0,27],[10,43,36],[11,0,28],[11,49,30],[12,0,28],[12,57,22],[13,0,30],[13,53,3],[13,58,21],[14,0,31],[14,50,6],[14,58,21],[15,0,31],[15,49,5],[15,56,23],[16,0,30],[16,46,5],[16,53,26],[17,0,30],[17,43,36],[18,0,33],[18,42,37],[19,0,79],[20,0,79],[21,0,79],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,27],[10,30,49],[11,0,27],[11,37,42],[12,0,27],[12,43,36],[13,0,27],[13,48,31],[14,0,28],[14,56,23],[15,0,30],[15,53,3],[15,58,21],[16,0,31],[16,50,6],[16,58,21],[17,0,31],[17,49,6],[17,57,22],[18,0,30],[18,47,4],[18,54,25],[19,0,30],[19,43,36],[20,0,33],[20,42,37],[21,0,39],[21,41,38],[22,0,79],[23,0,79],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,28],[12,30,49],[13,0,27],[13,37,42],[14,0,27],[14,43,36],[15,0,27],[15,48,31],[16,0,28],[16,53,26],[17,0,29],[17,58,21],[18,0,30],[18,51,5],[18,58,21],[19,0,31],[19,50,5],[19,57,22],[20,0,30],[20,49,3],[20,55,24],[21,0,30],[21,43,36],[22,0,31],[22,42,37],[23,0,36],[23,41,38],[24,0,79],[25,0,79],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,27],[15,37,42],[16,0,27],[16,43,36],[17,0,27],[17,48,31],[18,0,28],[18,52,27],[19,0,29],[19,57,22],[20,0,30],[20,53,3],[20,58,21],[21,0,31],[21,51,5],[21,57,22],[22,0,31],[22,50,3],[22,56,23],[23,0,30],[23,45,34],[24,0,30],[24,42,37],[25,0,33],[25,42,37],[26,0,79],[27,0,79],[28,0,79],[29,0,79],[30,0,79]],[[0,0,79],[1,0,79],[2,0,79],[3,0,79],[4,0,79],[5,0,79],[6,0,79],[7,0,79],[8,0,79],[9,0,79],[10,0,79],[11,0,79],[12,0,79],[13,0,79],[14,0,79],[15,0,79],[16,0,79],[17,0,28],[17,35,44],[18,0,27],[18,42,37],[19,0,27],[19,46,33],[20,0,27],[20,51,28],[21,0,28],[21,53,26],[22,0,29],[22,54,2],[22,58,21],[23,0,31],[23,53,3],[23,58,21],[24,0,31],[24,50,5],[24,57,22],[25,0,30],[25,49,3],[25,54,25],[26,0,30],[26,43,36],[27,0,31],[27,42,37],[28,0,35],[28,41,38],[29,0,79],[30,0,79]],[[18,27,5],[19,25,15],[20,25,19],[21,25,24],[22,25,27],[23,25,30],[24,27,32],[25,28,33],[26,29,28],[26,58,3],[27,29,31],[28,28,30],[29,27,19],[29,52,2],[30,29,14]],[[19,25,14],[20,25,20],[21,24,25],[22,25,27],[23,25,30],[24,26,34],[25,27,34],[26,29,27],[26,59,3],[27,29,24],[27,56,5],[28,28,32],[29,27,20],[29,52,4],[30,29,15]],[[19,24,17],[20,24,22],[21,24,13],[21,38,12],[22,24,28],[23,24,31],[24,26,34],[25,28,34],[26,28,29],[26,59,4],[27,28,26],[27,58,4],[28,27,34],[29,27,20],[29,53,5],[30,28,16]],[[18,25,1],[19,24,12],[19,38,4],[20,24,12],[20,38,9],[21,23,13],[21,38,13],[22,24,13],[22,38,16],[23,24,31],[24,25,34],[25,27,35],[26,28,30],[26,60,3],[27,28,27],[27,59,4],[28,27,35],[29,27,21],[29,54,5],[30,28,16]],[[18,23,7],[18,39,1],[19,23,12],[19,38,5],[20,23,12],[20,38,10],[21,23,13],[21,38,13],[22,23,14],[22,38,12],[22,51,3],[23,24,25],[23,50,6],[24,25,23],[24,49,9],[25,26,36],[26,28,31],[26,61,3],[27,28,29],[27,60,4],[28,27,35],[29,27,22],[29,53,7],[30,28,17]],[[18,22,11],[18,40,1],[19,22,12],[19,39,5],[20,22,13],[20,39,10],[21,22,15],[21,39,12],[22,23,15],[22,39,11],[22,51,4],[23,24,6],[23,32,17],[23,51,5],[24,25,7],[24,33,15],[24,50,9],[25,26,37],[26,28,32],[26,61,3],[27,28,31],[27,61,3],[28,27,36],[29,27,22],[29,54,7],[30,28,17]],[[18,20,12],[18,40,2],[19,20,13],[19,39,6],[20,22,14],[20,39,11],[21,23,29],[22,22,6],[22,31,20],[22,52,3],[23,23,7],[23,33,6],[23,40,10],[23,51,6],[24,25,7],[24,34,9],[24,46,2],[24,50,10],[25,26,22],[25,49,14],[26,28,37],[27,27,32],[27,62,3],[28,26,38],[29,27,21],[29,54,8],[30,28,18]],[[18,19,5],[18,25,6],[18,40,2],[19,19,15],[19,36,1],[19,40,6],[20,21,30],[21,21,6],[21,28,8],[21,39,13],[22,22,5],[22,33,4],[22,40,11],[22,53,3],[23,23,7],[23,33,17],[23,52,5],[24,24,8],[24,34,14],[24,51,9],[25,26,22],[25,49,14],[26,28,37],[27,27,33],[27,62,3],[28,26,38],[29,27,22],[29,54,9],[30,28,14],[30,43,3]],[[18,19,1],[18,22,2],[18,25,5],[18,34,4],[18,40,3],[19,18,20],[19,40,7],[20,21,14],[20,40,12],[21,22,4],[21,33,4],[21,40,12],[22,21,7],[22,33,6],[22,41,10],[22,53,3],[23,23,7],[23,34,6],[23,42,8],[23,52,6],[23,59,1],[24,24,9],[24,35,13],[24,51,9],[25,26,22],[25,49,14],[26,28,37],[27,27,10],[27,38,23],[27,63,3],[28,26,40],[29,27,22],[29,54,10],[30,28,14],[30,43,3]],[[16,34,2],[17,32,5],[18,21,2],[18,24,11],[18,41,3],[19,17,15],[19,40,8],[20,20,7],[20,33,3],[20,40,13],[21,20,5],[21,33,4],[21,40,12],[22,21,7],[22,34,5],[22,41,10],[22,54,2],[23,22,8],[23,34,6],[23,46,2],[23,53,5],[23,59,2],[24,23,10],[24,35,13],[24,51,10],[25,25,23],[25,50,12],[26,27,38],[27,26,11],[27,38,24],[27,63,3],[28,26,40],[29,27,23],[29,55,9],[30,28,14],[30,44,2]],[[15,31,4],[16,30,5],[17,28,4],[17,41,1],[18,20,2],[18,24,6],[18,41,4],[19,17,11],[19,33,2],[19,41,8],[20,19,4],[20,34,2],[20,41,12],[21,20,5],[21,34,4],[21,41,12],[22,21,7],[22,34,6],[22,42,9],[22,54,3],[23,22,8],[23,35,6],[23,53,5],[23,60,2],[24,23,10],[24,36,13],[24,52,9],[25,26,9],[25,36,12],[25,49,14],[26,27,38],[27,26,11],[27,38,25],[27,64,3],[28,26,34],[28,61,6],[29,27,24],[29,55,10],[30,28,14],[30,45,2],[30,60,1]],[[13,30,2],[14,29,4],[15,28,3],[16,27,3],[17,24,5],[17,42,1],[18,19,9],[18,41,4],[19,17,9],[19,34,2],[19,41,9],[20,19,3],[20,34,3],[20,41,12],[21,20,5],[21,35,3],[21,42,11],[22,20,8],[22,35,5],[22,43,8],[22,55,2],[22,61,1],[23,22,8],[23,36,5],[23,54,5],[23,60,3],[24,23,10],[24,36,13],[24,52,9],[25,26,9],[25,37,10],[25,50,13],[26,27,10],[26,38,28],[27,26,11],[27,38,25],[27,64,3],[28,26,35],[28,63,4],[29,27,24],[29,56,10],[30,28,14],[30,46,2],[30,60,2]],[[12,27,2],[13,26,4],[14,26,3],[15,25,4],[16,24,4],[17,20,8],[17,43,1],[18,19,8],[18,42,4],[19,18,7],[19,35,2],[19,41,10],[19,52,1],[20,18,4],[20,35,3],[20,41,13],[21,19,6],[21,35,4],[21,43,10],[22,20,8],[22,36,5],[22,45,7],[22,56,2],[23,21,9],[23,36,6],[23,54,9],[24,23,11],[24,37,12],[24,52,10],[25,26,10],[25,37,10],[25,50,13],[26,27,9],[26,38,28],[27,25,12],[27,39,28],[28,27,11],[28,39,23],[28,64,3],[29,27,25],[29,56,10],[30,28,14],[30,60,3]],[[11,24,2],[12,24,3],[13,24,3],[14,24,3],[15,23,4],[16,20,7],[17,20,7],[17,42,2],[18,18,8],[18,42,5],[19,17,8],[19,36,2],[19,42,9],[19,52,1],[20,18,3],[20,22,1],[20,36,3],[20,42,12],[21,19,6],[21,36,4],[21,43,10],[22,19,8],[22,36,5],[22,56,2],[22,62,1],[23,21,10],[23,37,6],[23,55,9],[24,23,11],[24,37,13],[24,53,9],[25,26,10],[25,38,9],[25,50,13],[26,27,9],[26,38,28],[27,25,12],[27,39,29],[28,27,35],[28,64,4],[29,27,26],[29,57,9],[30,28,14],[30,60,4]],[[11,20,4],[12,21,3],[13,23,2],[14,22,4],[15,19,7],[16,19,8],[17,20,6],[17,43,2],[18,17,9],[18,42,6],[19,17,3],[19,37,2],[19,42,11],[20,17,4],[20,22,1],[20,37,2],[20,43,11],[21,18,7],[21,37,4],[21,44,9],[22,19,8],[22,37,5],[22,57,2],[22,63,2],[23,20,11],[23,37,6],[23,55,9],[24,21,13],[24,38,14],[24,53,9],[25,25,11],[25,38,9],[25,51,12],[26,26,10],[26,39,27],[27,25,11],[27,39,28],[28,27,36],[28,64,4],[29,27,26],[29,57,10],[30,28,14],[30,60,4]],[[11,18,3],[12,19,4],[13,20,5],[14,19,7],[15,20,7],[16,21,6],[17,43,2],[18,17,2],[18,43,5],[19,16,3],[19,37,2],[19,43,11],[20,16,4],[20,21,2],[20,38,2],[20,43,11],[21,17,8],[21,38,3],[21,46,8],[22,18,9],[22,38,4],[22,57,2],[22,63,2],[23,20,11],[23,38,7],[23,55,10],[24,21,13],[24,38,24],[25,25,11],[25,39,8],[25,51,13],[26,26,10],[26,39,27],[27,25,12],[27,39,29],[28,27,37],[28,65,3],[29,27,27],[29,57,10],[30,28,14],[30,60,5]],[[11,16,6],[12,16,9],[13,20,7],[14,21,6],[15,25,2],[17,43,3],[18,16,2],[18,43,6],[19,15,4],[19,38,2],[19,43,12],[20,16,4],[20,21,1],[20,38,3],[20,44,10],[21,17,7],[21,38,4],[21,49,4],[22,18,9],[22,38,5],[22,58,2],[22,63,3],[23,20,11],[23,39,8],[23,55,10],[24,22,13],[24,39,11],[24,51,11],[25,25,11],[25,39,8],[25,52,12],[26,25,11],[26,39,27],[27,25,12],[27,40,28],[28,27,28],[28,56,12],[29,26,16],[29,43,12],[29,58,4],[29,63,4],[30,28,14],[30,60,5]],[[10,18,5],[11,16,10],[12,15,12],[13,24,4],[17,17,1],[17,43,4],[18,15,3],[18,43,6],[19,15,3],[19,39,2],[19,44,11],[20,15,4],[20,21,1],[20,39,3],[20,45,10],[21,16,8],[21,39,3],[21,52,1],[22,18,9],[22,39,4],[22,58,3],[22,63,4],[23,19,12],[23,39,12],[23,52,1],[23,55,11],[24,21,14],[24,39,11],[24,51,11],[25,25,11],[25,40,7],[25,53,11],[26,25,11],[26,39,10],[26,51,15],[27,25,12],[27,40,28],[28,27,28],[28,56,13],[29,27,14],[29,43,12],[29,58,5],[29,64,4],[30,28,14],[30,49,3],[30,61,5]],[[9,17,8],[10,16,11],[11,15,12],[12,14,6],[12,25,2],[13,15,1],[16,44,1],[17,16,1],[17,44,3],[18,15,2],[18,44,6],[19,14,4],[19,40,2],[19,44,11],[20,15,4],[20,20,2],[20,40,3],[20,47,8],[21,16,4],[21,21,3],[21,40,3],[22,17,10],[22,40,4],[22,58,5],[22,64,3],[23,19,12],[23,40,11],[23,52,14],[24,21,14],[24,40,10],[24,54,8],[25,25,10],[25,40,7],[25,52,12],[26,25,11],[26,39,10],[26,51,15],[27,25,13],[27,40,29],[28,27,14],[28,42,12],[28,57,12],[29,26,16],[29,43,12],[29,59,3],[29,63,5],[30,28,13],[30,48,5],[30,61,5]],[[7,15,8],[8,14,11],[9,15,11],[10,15,11],[11,14,7],[12,14,4],[13,14,2],[16,44,1],[17,15,1],[17,44,4],[18,14,2],[18,44,7],[19,13,4],[19,20,1],[19,41,2],[19,46,9],[20,14,4],[20,20,2],[20,41,2],[20,49,6],[21,15,5],[21,21,3],[21,41,3],[21,66,1],[22,17,10],[22,41,4],[22,58,10],[23,18,13],[23,41,10],[23,52,14],[24,21,14],[24,40,10],[24,55,7],[25,25,10],[25,39,9],[25,53,11],[26,24,12],[26,39,10],[26,51,15],[27,26,42],[28,27,14],[28,42,12],[28,57,3],[28,61,8],[29,26,16],[29,44,12],[29,59,3],[29,64,4],[30,28,13],[30,48,7],[30,61,6]],[[5,14,5],[6,13,9],[7,12,12],[8,13,12],[9,14,8],[10,15,5],[11,15,4],[12,15,3],[13,16,1],[16,45,1],[17,14,1],[17,44,4],[18,13,3],[18,44,7],[18,52,1],[19,13,3],[19,20,1],[19,42,2],[19,46,9],[20,13,5],[20,20,2],[20,42,2],[20,50,5],[21,15,5],[21,21,3],[21,41,4],[21,66,2],[22,16,11],[22,41,5],[22,53,2],[22,58,10],[23,18,13],[23,41,10],[23,53,13],[24,20,15],[24,41,9],[24,56,6],[25,25,10],[25,39,9],[25,53,11],[26,24,12],[26,39,11],[26,51,15],[27,26,14],[27,41,28],[28,27,14],[28,42,12],[28,58,11],[29,26,16],[29,45,11],[29,59,4],[29,64,4],[30,28,13],[30,48,7],[30,61,6]],[[4,11,5],[5,10,10],[6,11,11],[7,11,11],[8,13,7],[9,13,7],[10,15,4],[11,16,3],[12,16,2],[16,45,1],[17,14,1],[17,45,4],[18,13,2],[18,45,7],[18,53,1],[19,12,4],[19,43,2],[19,47,9],[20,13,4],[20,20,1],[20,42,3],[20,52,3],[21,14,10],[21,42,3],[21,66,2],[22,15,12],[22,42,4],[22,53,4],[22,58,11],[23,17,14],[23,41,10],[23,54,12],[24,20,14],[24,41,9],[24,57,5],[25,24,11],[25,39,9],[25,53,11],[26,25,11],[26,40,10],[26,52,14],[27,26,14],[27,41,28],[28,27,14],[28,43,11],[28,58,3],[28,62,7],[29,26,16],[29,45,11],[29,59,4],[29,64,4],[30,27,13],[30,48,8],[30,61,6]],[[3,9,2],[4,8,8],[5,8,12],[6,9,10],[7,10,9],[8,12,7],[9,14,5],[10,16,4],[11,17,3],[16,45,2],[17,13,1],[17,45,4],[18,12,2],[18,46,9],[19,11,4],[19,19,1],[19,48,8],[20,12,5],[20,19,2],[20,43,3],[21,13,6],[21,20,4],[21,43,3],[21,61,2],[21,67,3],[22,15,12],[22,42,5],[22,54,16],[23,17,15],[23,41,10],[23,56,10],[24,20,14],[24,41,8],[24,57,5],[25,24,11],[25,39,10],[25,54,10],[26,25,11],[26,40,10],[26,51,15],[27,26,14],[27,42,27],[28,26,15],[28,43,10],[28,59,2],[28,62,8],[29,26,16],[29,45,10],[29,60,3],[29,65,3],[30,27,13],[30,48,9],[30,61,7]],[[3,6,3],[4,6,9],[5,7,10],[6,8,9],[7,10,8],[8,13,7],[9,16,5],[10,19,1],[16,45,2],[17,12,1],[17,45,5],[18,11,3],[18,47,8],[19,11,4],[19,19,1],[19,44,1],[19,49,7],[20,11,5],[20,19,2],[20,44,2],[21,13,6],[21,20,4],[21,44,3],[21,54,2],[21,61,4],[21,67,4],[22,14,13],[22,42,6],[22,54,16],[23,16,16],[23,41,10],[23,58,6],[24,19,15],[24,40,9],[24,57,5],[25,24,11],[25,40,10],[25,54,10],[26,24,13],[26,40,10],[26,52,14],[27,25,15],[27,43,26],[28,26,15],[28,43,10],[28,59,3],[28,63,6],[29,26,16],[29,45,10],[29,60,3],[29,65,3],[30,27,12],[30,48,9],[30,61,7]],[[3,17,2],[4,1,4],[4,13,7],[5,1,16],[6,5,8],[16,46,3],[17,47,6],[18,9,2],[18,49,7],[19,9,3],[19,18,1],[19,52,4],[20,9,5],[20,18,2],[20,47,2],[20,56,1],[21,10,13],[21,46,3],[21,56,17],[22,12,15],[22,42,7],[22,58,14],[23,14,19],[23,42,9],[24,18,16],[24,40,10],[24,58,4],[25,23,13],[25,40,11],[25,55,9],[26,24,10],[26,41,11],[26,54,11],[27,25,15],[27,44,8],[27,56,13],[28,26,15],[28,44,9],[28,60,10],[29,26,15],[29,46,9],[29,61,2],[29,65,5],[30,27,11],[30,48,8],[30,61,7]],[[2,15,3],[3,13,5],[4,10,5],[5,1,13],[6,2,9],[16,46,3],[17,47,6],[18,9,2],[18,49,8],[19,9,3],[19,18,1],[19,52,5],[20,10,4],[20,18,2],[20,47,2],[21,10,8],[21,19,4],[21,47,3],[21,57,11],[21,70,3],[22,12,15],[22,43,7],[22,58,14],[23,14,18],[23,42,10],[24,17,17],[24,40,11],[24,58,4],[25,23,13],[25,40,11],[25,56,8],[26,24,12],[26,41,11],[26,54,11],[27,25,15],[27,44,9],[27,56,13],[28,26,15],[28,44,10],[28,61,9],[29,26,16],[29,45,10],[29,61,2],[29,65,5],[30,27,12],[30,48,8],[30,62,7]],[[1,14,2],[2,13,3],[3,12,3],[4,10,4],[5,4,10],[6,2,10],[7,5,5],[16,47,2],[17,47,6],[18,49,6],[19,10,3],[19,51,7],[20,10,4],[20,18,3],[20,49,1],[21,11,5],[21,20,2],[21,48,3],[21,58,2],[21,65,1],[21,73,1],[22,12,14],[22,44,2],[22,48,3],[22,58,17],[23,14,16],[23,43,10],[23,61,12],[24,16,19],[24,42,10],[24,61,2],[25,20,16],[25,41,11],[25,59,5],[26,25,12],[26,42,11],[26,55,10],[27,26,11],[27,39,1],[27,43,11],[27,56,12],[28,26,16],[28,45,9],[28,59,12],[29,28,15],[29,46,9],[29,62,2],[29,65,7],[30,28,15],[30,48,9],[30,62,3],[30,67,4]],[[1,13,2],[2,13,2],[3,12,2],[4,10,4],[5,6,8],[6,5,9],[7,5,7],[16,48,1],[17,48,3],[18,49,6],[19,51,7],[20,12,3],[20,54,6],[21,12,4],[21,20,2],[21,50,2],[22,13,5],[22,21,3],[22,50,3],[22,60,2],[22,68,1],[23,14,14],[23,45,3],[23,50,3],[23,60,17],[24,16,17],[24,45,9],[24,63,13],[25,18,19],[25,43,11],[25,62,3],[26,21,16],[26,43,11],[26,60,6],[27,26,13],[27,44,11],[27,57,11],[28,27,10],[28,41,1],[28,45,11],[28,58,13],[29,28,16],[29,47,9],[29,61,12],[30,30,15],[30,48,10],[30,64,2],[30,67,7]],[[1,12,1],[2,11,3],[3,12,2],[4,11,4],[5,8,7],[6,8,7],[7,8,7],[8,11,3],[17,50,1],[18,50,3],[19,51,6],[20,53,7],[21,14,3],[21,56,6],[22,15,3],[22,22,2],[23,15,5],[23,23,3],[23,53,2],[23,62,2],[24,16,14],[24,47,4],[24,53,3],[24,63,16],[25,18,17],[25,47,10],[25,65,14],[26,19,19],[26,45,12],[26,63,4],[26,70,6],[27,21,18],[27,45,12],[27,62,6],[28,26,16],[28,46,12],[28,59,11],[29,30,5],[29,40,1],[29,48,10],[29,60,12],[30,30,16],[30,50,9],[30,63,13]],[[2,12,1],[3,11,3],[4,12,3],[5,11,6],[6,11,6],[7,11,7],[8,14,4],[18,52,1],[19,52,3],[20,53,6],[21,55,8],[22,17,2],[22,58,6],[23,17,4],[23,24,2],[24,18,4],[24,25,3],[25,18,6],[25,26,6],[25,50,2],[25,56,4],[25,66,2],[26,19,17],[26,49,11],[26,67,12],[27,21,19],[27,49,12],[27,67,12],[28,23,19],[28,47,13],[28,65,6],[28,75,3],[29,25,18],[29,48,13],[29,64,8],[30,30,15],[30,50,3],[30,54,8],[30,63,11]],[[4,11,4],[5,12,6],[6,14,6],[7,15,6],[8,18,3],[9,19,2],[20,55,3],[21,56,5],[22,58,6],[23,60,7],[24,21,2],[24,27,1],[24,65,1],[25,21,3],[25,27,3],[26,21,5],[26,29,4],[26,61,1],[27,22,6],[27,30,7],[27,53,4],[27,61,2],[27,71,1],[28,23,19],[28,52,13],[28,71,8],[29,24,20],[29,50,14],[29,68,11],[30,26,20],[30,50,16],[30,68,7],[30,77,2]],[[5,14,6],[6,12,10],[7,13,11],[8,21,4],[9,22,3],[21,58,2],[22,58,4],[23,60,5],[24,62,7],[25,66,4],[26,25,1],[26,30,2],[27,25,3],[27,31,3],[28,25,4],[28,32,5],[28,57,1],[28,65,1],[29,26,5],[29,34,7],[29,56,7],[29,65,3],[30,27,20],[30,55,15],[30,73,6]],[[5,18,2],[6,17,8],[7,15,12],[8,14,14],[9,14,4],[9,25,3],[22,61,1],[23,61,3],[24,62,6],[25,64,7],[26,67,7],[27,70,4],[28,34,2],[29,29,2],[29,34,4],[30,30,4],[30,36,6],[30,60,4],[30,71,1]],[[6,20,8],[7,19,11],[8,18,12],[9,17,13],[10,17,6],[11,18,2],[24,64,3],[25,65,3],[26,67,5],[27,69,6],[28,71,6],[29,74,3],[30,37,3]],[[6,22,8],[7,22,9],[8,22,10],[9,21,11],[10,21,8],[11,21,6],[12,20,5],[13,21,2],[26,68,2],[27,69,3],[28,70,7],[29,72,7],[30,76,3]],[[6,26,4],[7,24,8],[8,23,10],[9,23,11],[10,24,8],[11,24,7],[12,24,6],[13,25,4],[14,25,3],[15,27,1],[27,72,1],[28,72,3],[29,73,4],[30,75,4]],[[7,26,4],[8,25,8],[9,25,10],[10,25,9],[11,26,8],[12,27,6],[13,28,5],[14,29,4],[15,30,3],[16,32,1],[29,76,1],[30,76,3]],[[8,26,4],[9,26,8],[10,26,9],[11,27,8],[12,28,7],[13,29,7],[14,31,6],[15,33,5],[16,35,3]],[[9,28,1],[10,27,5],[11,27,8],[12,28,8],[13,29,8],[14,32,7],[15,35,7],[16,38,4]],[[11,27,2],[12,27,8],[13,28,9],[14,30,13],[15,32,1],[15,34,12],[16,42,2]],[[13,28,1],[14,28,10],[14,41,6],[15,29,18],[16,33,7]],[[13,44,4],[14,42,6],[15,29,16],[16,29,13],[17,31,7]],[[12,45,2],[13,43,4],[14,42,3],[15,40,3],[16,30,12],[17,30,10],[18,32,4]],[[12,42,3],[13,42,3],[14,41,3],[15,41,2],[16,35,7],[17,32,9],[18,32,7],[19,35,1]],[[12,40,4],[13,40,3],[14,40,3],[15,40,3],[16,37,6],[17,35,7],[18,34,7],[19,35,4]],[[12,38,3],[13,38,4],[14,39,3],[15,39,4],[16,38,5],[17,38,5],[18,37,5],[19,37,4]],[[12,37,1],[13,36,4],[14,37,4],[15,38,5],[16,39,4],[17,39,5],[18,39,4],[19,39,4]],[[13,33,5],[14,33,9],[15,36,8],[16,38,6],[17,39,6],[18,40,5],[19,40,5]],[[14,31,13],[15,32,14],[16,35,12],[17,39,8],[18,41,6],[19,42,3]],[[13,40,5],[14,36,11],[15,31,18],[16,30,19],[17,33,15],[18,43,4]],[[12,41,6],[13,39,10],[14,37,12],[15,35,14],[16,32,17],[17,30,18],[18,31,4]],[[11,40,8],[12,39,9],[13,37,11],[14,36,12],[15,35,13],[16,34,14],[17,33,9],[18,32,6],[19,32,3]],[[10,40,5],[11,38,8],[12,37,9],[13,36,11],[14,36,12],[15,36,12],[16,35,9],[17,35,6],[18,35,5],[19,34,5],[20,35,3]],[[9,39,2],[10,38,5],[11,36,8],[12,35,11],[13,35,12],[14,35,12],[15,35,10],[16,36,7],[17,36,6],[18,36,6],[19,36,5],[20,37,4],[21,38,2]],[[9,36,2],[10,35,5],[11,34,9],[12,34,11],[13,33,13],[14,34,10],[15,34,10],[16,35,8],[17,37,6],[18,38,5],[19,39,4],[20,39,4],[21,41,2]],[[10,33,4],[11,32,10],[12,32,12],[13,32,12],[14,32,12],[15,33,11],[16,35,9],[17,37,7],[18,39,6],[19,41,5],[20,42,4]],[[11,30,10],[12,30,12],[13,31,12],[14,31,13],[15,32,12],[16,33,12],[17,36,10],[18,40,8],[19,44,5]],[[12,28,12],[13,28,14],[14,29,14],[15,31,14],[16,32,16],[17,34,17],[18,45,6]],[[12,34,4],[13,27,15],[14,26,18],[15,28,24],[16,31,21],[17,32,13],[17,48,3],[18,35,4]],[[13,33,9],[14,31,21],[15,26,26],[16,26,20],[17,28,16],[18,33,8]],[[12,47,4],[13,34,17],[14,32,17],[15,31,15],[16,29,16],[17,26,18],[18,27,14],[19,36,3]],[[10,47,2],[11,45,5],[12,43,6],[13,36,11],[14,33,13],[15,32,14],[16,32,13],[17,31,13],[18,27,15],[19,28,13],[20,28,4]],[[9,44,3],[10,43,4],[11,42,4],[12,41,4],[13,36,9],[14,35,11],[15,33,12],[16,32,13],[17,33,12],[18,33,11],[19,31,11],[20,29,7],[21,30,4]],[[8,40,3],[9,40,4],[10,40,4],[11,39,4],[12,39,4],[13,35,10],[14,34,11],[15,34,11],[16,33,13],[17,33,13],[18,34,11],[19,35,8],[20,34,5],[21,32,6],[22,33,4]],[[8,35,5],[9,36,5],[10,36,5],[11,37,4],[12,37,5],[13,37,7],[14,34,11],[15,34,12],[16,34,13],[17,34,12],[18,35,10],[19,37,6],[20,37,4],[21,36,5],[22,35,6],[23,38,1]],[[9,32,5],[10,33,4],[11,34,4],[12,35,7],[13,36,8],[14,33,13],[15,33,14],[16,35,12],[17,35,12],[18,36,10],[19,38,6],[20,40,4],[21,40,4],[22,39,5],[23,42,1]],[[9,30,2],[10,28,6],[11,29,6],[12,32,10],[13,34,11],[14,35,12],[15,33,14],[16,33,14],[17,36,11],[18,37,9],[19,40,6],[20,43,5],[21,43,5],[22,43,5]],[[11,25,6],[12,25,9],[12,36,7],[13,29,17],[14,33,14],[15,34,14],[16,33,15],[17,33,14],[18,39,9],[19,45,6],[20,46,5],[21,47,4]],[[12,35,9],[13,24,8],[13,34,12],[14,24,23],[15,31,17],[16,34,14],[17,34,18],[18,40,4],[18,46,7],[19,49,5]],[[11,41,1],[12,35,10],[13,33,13],[14,33,14],[15,23,26],[16,23,32],[17,23,3],[17,35,10],[17,48,8],[18,34,4],[18,52,2]],[[11,39,3],[12,36,9],[13,33,13],[14,32,24],[15,32,24],[16,28,18],[16,53,2],[17,24,20],[18,24,6],[18,36,3],[19,24,3]],[[11,37,5],[12,35,10],[12,49,7],[13,34,22],[14,32,19],[15,31,15],[16,32,13],[17,31,12],[18,28,6],[18,37,4],[19,26,6],[19,38,1],[20,26,4],[21,27,2]],[[10,49,5],[11,37,5],[11,46,8],[12,34,17],[13,33,14],[14,32,14],[15,31,15],[16,31,13],[17,33,10],[18,33,9],[19,31,4],[19,39,2],[20,29,5],[21,28,5],[22,28,5]],[[8,46,4],[9,45,7],[10,44,7],[11,37,10],[12,34,12],[13,32,13],[14,32,13],[15,32,13],[16,32,12],[17,32,12],[18,34,10],[19,35,3],[19,41,1],[20,34,4],[21,32,5],[22,31,6],[23,32,5]],[[7,42,5],[8,42,5],[9,41,5],[10,41,3],[11,36,7],[12,34,9],[13,32,12],[14,31,13],[15,31,14],[16,32,12],[17,32,13],[18,33,8],[18,43,3],[19,36,5],[20,38,3],[21,37,4],[22,37,5],[23,36,6],[24,39,2]],[[6,37,5],[7,37,5],[8,37,4],[9,37,4],[10,37,4],[11,36,4],[12,33,9],[13,32,11],[14,31,13],[15,31,14],[16,31,16],[17,32,15],[18,34,9],[19,35,8],[20,41,4],[21,41,4],[22,41,6],[23,42,5],[24,43,1]],[[6,33,1],[6,35,1],[7,32,5],[8,31,6],[9,33,4],[10,34,3],[11,35,3],[12,33,7],[13,32,11],[14,31,13],[15,31,16],[16,30,17],[17,32,13],[18,34,12],[19,36,6],[19,43,5],[20,44,5],[21,46,6],[22,47,6]],[[7,31,1],[8,27,5],[9,27,6],[10,29,5],[11,30,5],[12,33,6],[13,32,11],[14,31,16],[15,30,17],[16,31,15],[17,31,18],[18,33,19],[18,53,2],[19,36,7],[19,47,9],[20,50,6]],[[9,25,2],[10,23,6],[11,24,7],[12,26,7],[12,39,2],[13,29,17],[14,31,15],[15,30,18],[16,30,28],[17,31,15],[17,47,11],[18,32,14],[18,53,3],[19,34,10]],[[12,21,5],[12,39,6],[13,20,11],[13,34,11],[13,53,5],[14,22,37],[15,28,29],[16,30,17],[17,31,16],[18,32,14],[19,34,10]],[[10,53,2],[11,51,5],[12,38,5],[12,47,10],[13,36,20],[14,33,16],[15,20,27],[16,20,28],[17,21,6],[17,31,17],[18,32,14],[19,34,9],[20,38,2]],[[8,50,4],[9,49,5],[10,47,7],[11,38,3],[11,45,6],[12,37,4],[12,42,7],[13,35,11],[14,35,12],[15,33,15],[16,31,17],[17,22,25],[18,21,25],[19,22,7],[19,34,10],[20,23,1],[20,37,5]],[[6,45,3],[7,45,5],[8,44,6],[9,44,5],[10,43,4],[11,37,2],[11,42,4],[12,36,9],[13,35,12],[14,34,14],[15,34,14],[16,33,15],[17,33,14],[18,31,15],[19,28,17],[20,23,10],[20,37,5],[21,24,7],[22,25,5]],[[5,40,3],[5,44,1],[6,40,5],[7,40,5],[8,40,4],[9,40,4],[10,40,3],[11,39,4],[12,33,4],[12,38,7],[13,34,13],[14,34,14],[15,34,14],[16,34,14],[17,34,14],[18,34,13],[19,34,11],[20,32,5],[20,38,4],[21,31,5],[22,28,7],[23,28,6],[24,29,4]],[[5,33,6],[6,34,6],[7,35,5],[8,35,5],[9,36,4],[10,36,4],[11,37,3],[11,41,2],[12,36,10],[13,32,15],[14,32,15],[15,34,14],[16,34,15],[17,34,14],[18,35,12],[19,37,8],[20,37,5],[21,36,4],[22,35,5],[23,34,5],[24,33,7],[25,35,3]],[[6,28,6],[7,28,7],[8,30,5],[9,32,4],[10,33,4],[11,34,4],[11,39,4],[12,35,10],[13,35,11],[14,31,17],[15,31,18],[16,34,15],[17,35,13],[18,36,11],[19,38,7],[20,40,3],[21,40,4],[22,39,5],[23,39,6],[24,39,7],[25,39,2],[25,42,2]],[[8,23,7],[9,23,9],[10,26,7],[11,29,6],[11,37,5],[12,32,13],[13,33,14],[14,34,15],[15,31,18],[16,31,18],[17,36,12],[18,37,10],[19,40,6],[20,43,4],[21,43,5],[22,44,6],[23,44,6],[24,45,5]],[[10,22,4],[11,21,9],[11,36,6],[12,20,13],[12,34,12],[13,28,20],[14,32,17],[15,34,15],[16,31,18],[17,32,16],[18,38,11],[19,45,5],[20,47,6],[21,48,6],[22,49,6],[23,50,3]],[[11,36,8],[12,22,2],[12,33,13],[13,19,12],[13,32,16],[14,19,30],[15,19,4],[15,25,24],[16,33,16],[17,33,20],[18,33,12],[18,48,8],[19,50,9],[20,52,3],[20,57,1]],[[11,37,7],[12,33,13],[13,31,17],[14,31,18],[15,21,36],[16,19,40],[17,19,9],[17,34,12],[17,52,8],[18,20,3],[18,34,8],[18,56,1],[19,35,2]],[[11,36,9],[12,34,13],[12,54,6],[13,32,27],[14,30,30],[15,30,18],[15,58,2],[16,31,15],[17,27,18],[18,22,12],[18,36,5],[19,20,9],[19,36,4],[20,21,6],[21,24,1]],[[9,53,5],[10,50,8],[11,35,10],[11,47,12],[12,33,21],[12,57,1],[13,32,17],[14,31,16],[15,30,17],[16,30,15],[17,31,13],[18,31,12],[19,29,6],[19,39,3],[20,27,6],[21,24,8],[22,24,6],[23,26,3]],[[6,49,5],[7,49,7],[8,47,9],[9,45,8],[10,38,4],[10,45,5],[11,34,14],[12,32,14],[13,31,15],[14,31,15],[15,30,16],[16,30,15],[17,30,14],[18,32,13],[19,34,5],[19,41,4],[20,33,4],[21,32,5],[22,30,6],[23,29,6],[24,29,6],[25,31,4]],[[4,45,5],[5,44,8],[6,43,8],[7,43,6],[8,42,5],[9,41,5],[10,36,9],[11,34,10],[12,32,12],[13,30,16],[14,30,17],[15,30,16],[16,30,15],[17,30,16],[18,31,16],[19,32,9],[19,44,2],[20,37,4],[21,36,5],[22,36,5],[23,36,5],[24,35,6],[25,34,8],[26,37,5]],[[2,39,5],[3,38,7],[4,37,8],[5,38,6],[6,38,5],[7,38,4],[8,38,4],[9,38,4],[10,36,6],[11,33,11],[12,31,15],[13,30,17],[14,29,18],[15,29,17],[16,29,18],[17,30,18],[18,31,13],[18,45,3],[19,32,12],[20,34,11],[21,41,5],[22,41,5],[23,41,6],[24,41,7],[25,41,10],[26,43,8]],[[1,31,2],[2,31,7],[3,29,9],[4,30,8],[5,32,6],[6,32,6],[7,33,5],[8,34,4],[9,34,5],[10,34,11],[11,32,15],[12,30,17],[13,29,18],[14,28,18],[15,28,19],[16,28,21],[17,28,21],[18,30,18],[19,31,18],[20,33,10],[20,44,7],[21,36,5],[21,46,6],[22,47,7],[23,47,12],[24,48,11],[25,51,4]],[[2,23,8],[3,22,9],[4,23,7],[5,23,9],[6,25,7],[7,27,6],[8,29,6],[8,38,2],[9,30,16],[10,32,15],[11,33,14],[12,30,17],[13,28,18],[14,27,21],[15,27,22],[16,27,24],[17,27,26],[18,28,28],[19,29,19],[19,50,11],[20,31,15],[20,47,1],[20,51,15],[21,34,10],[21,53,12],[22,38,4],[22,55,8]],[[4,15,1],[4,18,4],[5,14,9],[6,16,9],[7,17,10],[7,35,9],[8,20,9],[8,36,10],[9,24,23],[10,27,20],[11,29,18],[12,32,15],[13,29,21],[14,27,28],[15,26,35],[15,68,1],[16,26,22],[16,49,22],[17,26,23],[17,54,16],[18,26,25],[18,58,10],[19,27,24],[19,61,3],[20,28,20],[21,30,18],[22,33,13]],[[6,33,12],[7,11,4],[7,34,12],[8,11,6],[8,33,14],[9,8,18],[9,32,15],[10,8,38],[11,11,42],[11,69,1],[11,71,2],[12,11,1],[12,27,46],[13,33,39],[14,29,23],[14,56,16],[15,27,20],[15,63,2],[15,66,3],[16,25,25],[17,25,28],[18,25,28],[19,25,26],[20,26,25],[21,27,24],[22,29,21],[23,31,16],[24,33,1],[24,35,5]],[[4,36,7],[5,31,14],[6,32,14],[7,31,15],[8,31,15],[9,32,14],[9,48,2],[9,61,12],[10,28,45],[11,26,44],[12,6,5],[12,16,1],[12,19,35],[12,62,1],[13,6,42],[14,5,19],[14,33,14],[15,4,16],[15,34,15],[16,9,5],[16,16,1],[16,27,26],[17,26,27],[18,25,27],[19,24,29],[20,24,30],[21,25,29],[22,26,26],[23,28,23],[24,29,19],[25,32,13],[26,36,5]],[[3,34,8],[4,30,14],[5,30,16],[6,31,15],[7,30,16],[7,66,4],[8,30,16],[8,47,3],[8,59,12],[9,32,37],[10,33,32],[11,27,26],[12,25,22],[13,24,23],[14,21,25],[15,18,11],[15,31,18],[16,14,10],[16,34,19],[17,7,4],[17,12,10],[17,34,18],[18,5,15],[18,28,24],[19,4,1],[19,6,12],[19,26,28],[20,4,11],[20,24,32],[21,4,1],[21,24,32],[22,24,31],[23,24,30],[24,25,27],[25,27,24],[26,29,20],[27,33,14],[28,36,7],[29,36,5],[30,39,1]],[[2,35,6],[3,30,1],[3,32,13],[4,29,16],[5,30,16],[6,30,16],[7,29,17],[7,64,4],[8,30,20],[8,57,10],[9,31,35],[10,31,2],[10,35,27],[11,30,21],[12,26,21],[13,25,22],[14,25,22],[15,23,10],[15,34,13],[16,22,29],[17,20,7],[17,29,21],[18,18,7],[18,30,2],[18,34,16],[19,15,9],[19,33,21],[20,13,9],[20,30,26],[21,11,9],[21,27,30],[22,5,15],[22,25,32],[23,4,13],[23,24,32],[24,5,5],[24,15,1],[24,24,31],[25,6,2],[25,24,30],[26,25,28],[27,27,25],[28,30,21],[29,34,14],[30,36,7]],[[2,34,9],[3,29,16],[4,28,17],[5,30,15],[6,30,15],[7,29,16],[8,30,16],[8,47,1],[9,31,33],[10,31,2],[10,35,28],[11,32,28],[11,61,1],[12,29,20],[13,27,19],[14,26,22],[15,26,22],[16,25,23],[17,24,24],[18,23,24],[19,21,26],[19,48,1],[20,20,7],[20,29,2],[20,33,21],[21,19,8],[21,32,24],[22,17,8],[22,31,26],[23,16,8],[23,29,28],[24,12,12],[24,27,30],[25,10,11],[25,25,32],[26,8,9],[26,25,31],[27,8,5],[27,25,30],[28,11,2],[28,25,30],[29,27,27],[30,31,21]],[[2,35,5],[2,41,2],[3,31,13],[4,28,18],[5,28,17],[6,30,15],[7,29,16],[8,30,15],[9,30,16],[10,31,2],[10,34,15],[11,31,2],[11,35,25],[12,32,28],[13,30,18],[13,52,7],[14,28,19],[15,27,21],[16,28,20],[17,28,20],[18,27,7],[18,35,12],[19,27,20],[20,25,22],[21,25,26],[22,22,10],[22,33,21],[23,21,8],[23,32,23],[24,20,9],[24,32,24],[25,18,9],[25,31,25],[26,17,9],[26,29,28],[27,15,6],[27,27,30],[28,15,5],[28,26,31],[29,19,1],[29,26,30],[30,27,28]],[[3,34,10],[4,30,14],[5,29,16],[6,29,16],[7,30,15],[8,30,15],[9,30,15],[10,30,15],[11,32,2],[11,35,13],[12,31,2],[12,35,14],[12,52,2],[13,31,27],[14,31,27],[15,29,18],[15,50,7],[16,29,19],[17,30,18],[18,30,18],[19,31,16],[20,29,18],[21,28,19],[22,27,20],[23,26,23],[23,50,1],[24,25,28],[25,24,30],[26,23,8],[26,32,23],[27,23,6],[27,31,25],[28,23,33],[29,28,28],[30,27,29]],[[4,32,2],[4,35,8],[5,31,13],[6,29,16],[7,29,16],[8,30,15],[9,30,15],[10,30,15],[11,30,15],[12,32,11],[13,32,2],[13,35,11],[14,32,15],[15,31,23],[16,31,24],[17,30,24],[18,32,15],[18,52,2],[19,32,15],[20,33,14],[21,30,17],[22,29,18],[23,28,19],[24,29,18],[25,29,19],[26,26,26],[27,24,5],[27,31,22],[28,24,2],[28,32,22],[29,31,24],[30,29,26]],[[5,33,1],[5,35,6],[6,31,13],[7,30,15],[8,30,15],[9,31,14],[10,31,14],[11,30,15],[12,30,15],[13,33,9],[14,32,2],[14,35,9],[15,32,13],[16,32,14],[17,31,20],[18,32,20],[19,33,19],[20,33,14],[20,49,2],[21,33,14],[22,31,16],[23,30,16],[24,29,18],[25,29,18],[26,30,2],[26,33,15],[27,27,4],[27,33,15],[28,24,6],[28,33,17],[29,22,5],[29,32,19],[30,22,2],[30,31,22]],[[6,33,8],[7,32,12],[8,30,14],[9,30,15],[10,31,14],[11,31,14],[12,31,13],[13,32,13],[14,33,9],[15,33,10],[16,32,13],[17,32,14],[18,32,15],[19,33,16],[20,34,15],[21,34,15],[22,32,16],[23,31,15],[24,30,16],[25,30,17],[26,30,18],[27,29,3],[27,33,15],[28,27,4],[28,33,15],[29,25,4],[29,33,15],[30,22,5],[30,32,17]],[[7,33,10],[8,32,12],[9,30,15],[10,31,13],[11,31,14],[12,31,13],[13,31,14],[14,33,10],[15,33,9],[16,33,10],[17,32,13],[18,32,14],[19,32,15],[20,34,13],[21,34,13],[22,34,12],[23,32,14],[24,31,18],[25,31,19],[26,31,20],[27,30,3],[27,34,12],[27,47,4],[28,29,3],[28,33,16],[29,26,5],[29,33,14],[30,24,5],[30,33,14]],[[7,36,3],[7,40,1],[8,33,11],[9,31,13],[10,31,13],[11,31,13],[12,31,13],[13,31,14],[14,33,11],[15,34,8],[16,33,10],[17,32,12],[18,32,14],[19,32,14],[20,34,12],[21,34,12],[22,35,11],[23,33,15],[24,32,19],[25,31,21],[26,31,15],[26,47,5],[27,31,15],[27,49,4],[28,30,2],[28,33,14],[28,48,3],[29,28,4],[29,33,13],[30,25,5],[30,33,13]],[[8,33,11],[9,32,12],[10,31,13],[11,32,12],[12,31,13],[13,31,13],[14,31,13],[15,34,8],[16,34,8],[17,32,12],[18,33,12],[19,33,13],[20,34,12],[21,33,13],[22,35,11],[23,33,16],[24,32,20],[25,31,15],[25,47,5],[26,31,15],[26,48,6],[27,32,14],[27,50,3],[28,31,2],[28,34,12],[28,49,3],[29,30,2],[29,33,13],[30,27,4],[30,33,13]],[[8,33,10],[9,32,12],[10,31,13],[11,32,12],[12,31,13],[13,31,13],[14,31,13],[15,33,9],[16,34,8],[17,33,11],[18,33,12],[19,34,12],[20,33,13],[21,33,13],[22,34,14],[23,34,16],[24,33,20],[25,31,15],[25,48,5],[26,31,15],[26,49,5],[27,32,15],[27,50,4],[28,31,16],[28,51,1],[29,30,17],[30,29,17]],[[8,33,10],[9,32,12],[10,31,13],[11,31,13],[12,31,13],[13,31,13],[14,31,14],[15,33,9],[16,34,8],[17,33,11],[18,33,12],[19,34,12],[20,33,13],[21,33,14],[22,35,14],[23,33,20],[24,32,13],[24,47,6],[25,31,15],[25,48,5],[26,31,15],[26,50,4],[27,32,15],[27,50,3],[28,31,16],[29,31,16],[30,30,17]],[[8,33,9],[9,32,12],[10,31,13],[11,31,13],[12,31,13],[13,31,13],[14,31,13],[15,33,10],[16,34,8],[17,32,12],[18,32,13],[19,34,12],[20,34,12],[21,34,14],[22,36,14],[23,33,20],[24,32,14],[24,48,5],[25,31,15],[25,49,5],[26,31,15],[26,50,4],[27,31,16],[27,50,2],[28,31,16],[29,31,16],[30,31,17]],[[8,33,2],[8,36,6],[9,32,12],[10,31,13],[11,31,13],[12,31,13],[13,31,13],[14,31,13],[15,33,10],[16,33,9],[17,32,12],[18,32,13],[19,34,12],[20,35,12],[21,36,14],[22,37,16],[23,33,20],[24,31,15],[24,48,6],[25,31,15],[25,50,4],[26,31,16],[26,50,3],[27,32,15],[28,31,16],[29,31,17],[30,31,17]],[[8,32,9],[9,32,12],[10,31,13],[11,31,13],[12,31,13],[13,31,13],[14,31,13],[15,32,10],[16,33,9],[17,32,12],[18,32,13],[19,34,12],[20,35,15],[21,36,15],[22,37,15],[23,32,14],[23,48,5],[24,31,15],[24,50,4],[25,30,16],[25,50,4],[26,30,17],[27,31,16],[28,31,16],[29,31,17],[30,31,17]],[[8,32,9],[9,32,12],[10,30,14],[11,30,14],[12,31,13],[13,31,13],[14,30,14],[15,32,10],[16,33,9],[17,32,12],[18,32,14],[19,34,13],[20,35,16],[21,36,16],[22,37,16],[23,32,14],[23,49,5],[24,31,15],[24,50,4],[25,30,16],[26,30,17],[27,31,16],[28,31,17],[29,31,17],[30,30,19]],[[8,32,11],[9,31,13],[10,30,14],[11,30,14],[12,31,13],[13,31,13],[14,30,14],[15,31,11],[16,33,10],[17,32,12],[18,32,14],[19,33,16],[20,35,17],[21,36,16],[22,37,10],[22,48,5],[23,32,15],[23,49,4],[24,31,15],[24,49,3],[25,30,17],[26,30,17],[27,31,16],[28,31,17],[29,30,18],[30,30,19]],[[8,32,11],[9,31,13],[10,30,14],[11,30,14],[12,31,13],[13,31,13],[14,30,14],[15,31,11],[16,34,9],[17,32,13],[18,32,17],[19,33,17],[20,35,17],[21,36,16],[22,37,10],[22,49,4],[23,31,16],[23,48,4],[24,31,16],[25,30,18],[26,30,18],[27,31,16],[28,31,17],[29,30,18],[30,30,19]],[[8,32,11],[9,32,12],[10,30,14],[11,30,14],[12,31,13],[13,31,13],[14,30,14],[15,32,10],[16,33,11],[17,32,14],[18,32,18],[19,33,18],[20,35,16],[21,36,10],[21,48,4],[22,37,10],[22,48,4],[23,32,15],[23,49,1],[24,30,18],[25,30,19],[26,30,19],[27,31,18],[28,31,17],[29,30,18],[30,29,20]],[[8,32,12],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,31,13],[14,31,13],[15,32,10],[16,33,11],[17,32,17],[18,32,18],[19,34,17],[20,35,16],[21,36,15],[22,37,13],[23,31,17],[24,30,20],[25,30,21],[26,30,21],[27,31,19],[28,31,17],[29,30,18],[30,29,20]],[[8,33,11],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,31,13],[14,31,14],[15,33,9],[16,32,14],[17,32,16],[18,32,18],[19,34,16],[20,35,16],[21,36,13],[22,37,12],[23,30,20],[24,30,22],[25,30,22],[26,30,22],[27,31,16],[28,31,17],[29,30,18],[30,29,19]],[[8,33,11],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,31,13],[14,31,12],[15,33,9],[16,31,15],[17,30,18],[18,32,16],[19,34,15],[20,35,14],[21,36,14],[22,36,14],[23,30,22],[24,30,22],[25,30,22],[26,30,17],[27,32,16],[28,31,17],[29,30,18],[30,29,19]],[[8,33,11],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,31,14],[14,32,11],[15,33,9],[16,30,15],[17,29,18],[18,29,18],[19,33,16],[20,35,15],[21,36,15],[22,36,14],[23,30,22],[24,29,22],[25,30,16],[26,31,16],[27,32,16],[28,31,17],[29,30,18],[30,29,20]],[[8,33,11],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,31,13],[14,33,10],[15,29,14],[16,28,17],[17,28,20],[18,29,19],[19,33,16],[20,35,16],[21,35,17],[22,35,16],[23,29,22],[24,29,21],[25,30,16],[26,31,16],[27,32,15],[28,31,17],[29,30,18],[30,29,20]],[[8,33,2],[8,36,7],[9,32,12],[10,30,14],[11,31,13],[12,31,14],[13,32,13],[14,33,10],[15,28,4],[15,33,10],[16,26,20],[17,26,22],[18,28,21],[19,34,15],[20,34,17],[21,35,10],[21,47,5],[22,29,5],[22,35,17],[23,29,21],[24,29,20],[25,30,16],[26,31,16],[27,32,15],[28,31,17],[29,30,18],[30,29,20]],[[8,35,8],[9,32,12],[10,31,13],[11,31,14],[12,32,13],[13,32,13],[14,33,10],[15,29,4],[15,34,9],[16,24,23],[17,24,25],[18,28,21],[19,34,15],[20,34,17],[21,34,11],[21,46,5],[22,29,22],[23,29,20],[24,30,18],[25,31,14],[26,32,14],[27,31,16],[28,31,16],[29,30,18],[30,29,20]],[[8,39,4],[9,32,12],[10,31,14],[11,32,13],[12,32,13],[13,33,13],[14,34,12],[15,29,3],[15,33,3],[15,37,6],[16,24,23],[17,23,26],[18,24,26],[19,33,16],[20,34,16],[21,34,16],[22,30,20],[23,30,19],[24,31,17],[25,32,14],[26,32,14],[27,31,16],[28,30,17],[29,30,18],[30,29,20]],[[8,38,4],[9,32,12],[10,32,14],[11,33,13],[12,32,14],[13,33,13],[14,34,12],[15,27,5],[15,34,2],[15,37,6],[16,24,24],[17,23,26],[18,23,27],[19,32,17],[20,34,15],[21,34,15],[22,31,17],[23,32,18],[24,33,17],[25,32,15],[26,31,15],[27,31,15],[28,30,17],[29,29,19],[30,28,21]],[[8,38,4],[9,33,12],[10,33,13],[11,33,13],[12,33,14],[13,34,13],[14,34,13],[15,27,5],[15,34,3],[15,38,6],[16,24,24],[17,23,26],[18,23,27],[19,31,18],[20,34,14],[21,33,14],[22,31,15],[23,31,20],[24,33,17],[25,32,17],[26,31,16],[27,30,16],[28,30,17],[29,29,19],[30,27,23]],[[8,37,6],[9,33,12],[10,33,14],[11,33,14],[12,33,14],[13,34,13],[14,35,12],[15,27,6],[15,35,2],[15,38,7],[16,25,23],[17,23,26],[18,23,26],[19,31,18],[20,33,14],[21,33,13],[22,30,2],[22,33,11],[23,29,22],[24,32,19],[25,32,17],[26,31,17],[27,30,16],[28,29,18],[29,28,20],[30,26,23]],[[8,36,8],[9,34,12],[10,34,13],[11,34,13],[12,34,14],[13,35,13],[14,36,12],[15,28,6],[15,35,10],[16,26,22],[17,24,25],[18,23,26],[19,32,17],[20,33,13],[21,33,12],[22,29,2],[22,33,11],[23,28,23],[24,33,18],[25,32,18],[26,31,18],[27,30,16],[28,29,18],[29,28,19],[30,26,23]],[[8,35,2],[8,38,7],[9,34,12],[10,34,13],[11,34,14],[12,34,14],[13,35,13],[14,36,11],[15,28,6],[15,36,10],[16,27,21],[17,25,24],[18,24,25],[19,25,3],[19,32,15],[20,33,12],[21,33,11],[22,28,16],[23,27,22],[24,33,18],[25,32,18],[26,31,18],[27,30,17],[28,29,19],[29,28,20],[30,25,23]],[[8,35,11],[9,34,13],[10,35,13],[11,34,14],[12,35,13],[13,35,13],[14,36,2],[14,39,8],[15,28,17],[16,26,22],[17,26,22],[18,25,23],[19,25,4],[19,33,14],[20,33,12],[21,32,12],[22,26,18],[23,27,21],[24,33,17],[25,31,19],[26,31,17],[27,30,17],[28,29,19],[29,28,21],[30,26,24]],[[8,35,11],[9,35,12],[10,35,13],[11,34,14],[12,35,13],[13,36,12],[14,38,9],[15,29,17],[16,27,21],[17,27,21],[18,25,23],[19,25,5],[19,34,12],[20,31,13],[21,25,3],[21,29,15],[22,25,19],[23,33,15],[24,32,18],[25,31,19],[26,31,17],[27,30,17],[28,29,19],[29,29,21],[30,26,26]],[[7,38,3],[8,35,11],[9,35,12],[10,35,13],[11,34,14],[12,35,13],[13,36,12],[14,39,8],[15,29,17],[16,27,20],[17,27,20],[18,26,21],[19,26,4],[19,33,12],[20,30,14],[21,24,20],[22,25,3],[22,29,15],[23,33,15],[24,32,18],[25,31,19],[26,30,18],[27,30,17],[28,29,19],[29,29,20],[30,27,26]],[[7,36,8],[8,35,12],[9,35,12],[10,35,13],[11,34,14],[12,35,13],[13,36,12],[14,38,9],[15,30,3],[15,34,12],[16,28,19],[17,28,19],[18,27,19],[19,27,17],[20,23,21],[21,23,20],[22,33,10],[23,32,16],[24,32,18],[25,31,19],[26,30,18],[27,30,17],[28,29,19],[29,29,20],[30,28,25]],[[7,36,8],[8,35,12],[9,35,12],[10,35,13],[11,35,13],[12,36,12],[13,37,11],[14,38,9],[15,30,16],[16,28,19],[17,28,18],[18,28,17],[19,23,21],[20,22,22],[21,33,10],[22,33,11],[23,32,17],[24,31,19],[25,31,19],[26,30,18],[27,29,17],[28,29,18],[29,29,19],[30,28,23]],[[7,36,10],[8,35,12],[9,35,13],[10,35,13],[11,35,13],[12,36,12],[13,37,11],[14,32,1],[14,39,6],[15,30,16],[16,29,17],[17,29,17],[18,21,1],[18,24,20],[19,21,23],[20,22,2],[20,28,15],[21,33,10],[22,32,13],[23,32,17],[24,31,19],[25,31,18],[26,30,17],[27,29,17],[28,29,18],[29,29,19],[30,28,22]],[[6,39,3],[7,36,11],[8,35,12],[9,35,13],[10,35,13],[11,36,12],[12,36,12],[13,36,12],[14,32,3],[14,36,9],[15,30,16],[16,27,19],[17,24,21],[18,20,24],[19,20,24],[20,33,10],[21,33,10],[22,32,13],[23,32,17],[24,31,19],[25,30,19],[26,30,17],[27,29,17],[28,29,18],[29,29,18],[30,28,20]],[[6,36,8],[7,36,11],[8,35,12],[9,35,14],[10,34,15],[11,36,12],[12,36,12],[13,36,2],[13,39,9],[14,31,4],[14,36,9],[15,26,1],[15,30,16],[16,24,21],[17,18,26],[18,19,25],[19,29,14],[20,33,10],[21,32,11],[22,32,14],[23,32,17],[24,31,18],[25,30,19],[26,30,17],[27,29,17],[28,29,18],[29,28,19],[30,28,20]],[[6,36,8],[7,36,11],[8,36,12],[9,34,15],[10,34,15],[11,36,12],[12,35,13],[13,36,2],[13,39,9],[14,31,14],[15,24,21],[16,19,26],[17,18,26],[18,28,16],[19,29,14],[20,33,10],[21,32,11],[22,32,14],[23,32,17],[24,31,18],[25,30,19],[26,30,17],[27,29,17],[28,29,18],[29,28,19],[30,28,20]],[[6,36,8],[7,36,11],[8,35,12],[9,34,15],[10,35,14],[11,36,12],[12,35,13],[13,39,9],[14,23,6],[14,31,14],[15,20,25],[16,17,28],[17,18,2],[17,24,1],[17,27,17],[18,29,15],[19,29,14],[20,32,10],[21,32,11],[22,32,14],[23,32,17],[24,31,18],[25,30,18],[26,29,18],[27,29,17],[28,29,18],[29,28,19],[30,28,20]],[[5,39,2],[6,36,10],[7,36,11],[8,35,13],[9,34,15],[10,35,14],[11,35,13],[12,36,12],[13,23,2],[13,32,1],[13,35,1],[13,39,9],[14,19,11],[14,31,14],[15,16,29],[16,17,4],[16,23,21],[17,30,14],[18,29,14],[19,30,13],[20,32,10],[21,32,10],[22,32,14],[23,31,18],[24,31,18],[25,30,18],[26,29,17],[27,29,17],[28,29,18],[29,28,19],[30,28,20]],[[5,39,3],[6,36,10],[7,36,11],[8,35,14],[9,34,15],[10,35,14],[11,35,13],[12,22,3],[12,36,12],[13,19,9],[13,32,5],[13,38,9],[14,15,29],[15,16,29],[16,28,16],[17,30,14],[18,29,14],[19,29,14],[20,32,10],[21,32,11],[22,32,14],[23,31,17],[24,31,17],[25,30,18],[26,29,17],[27,29,18],[28,29,18],[29,28,19],[30,29,19]],[[5,39,3],[6,37,10],[7,36,11],[8,35,14],[9,35,14],[10,36,13],[11,35,13],[12,20,8],[12,36,12],[13,17,30],[14,15,29],[15,16,1],[15,22,1],[15,25,20],[16,30,14],[17,29,15],[18,29,14],[19,30,13],[20,32,10],[21,32,12],[22,32,14],[23,31,17],[24,31,17],[25,30,18],[26,30,16],[27,29,18],[28,29,18],[29,28,19],[30,29,19]],[[5,39,4],[6,37,10],[7,36,12],[8,35,14],[9,35,14],[10,36,13],[11,21,3],[11,36,12],[12,15,13],[12,36,12],[13,14,33],[14,21,2],[14,24,21],[15,29,16],[16,30,14],[17,29,15],[18,29,14],[19,30,13],[20,32,10],[21,32,12],[22,32,15],[23,31,17],[24,31,17],[25,30,18],[26,30,16],[27,29,18],[28,29,18],[29,29,19],[30,29,19]],[[5,40,3],[6,37,10],[7,36,12],[8,35,14],[9,35,14],[10,22,1],[10,35,14],[11,14,14],[11,36,13],[12,14,18],[12,36,12],[13,18,30],[14,25,1],[14,28,17],[15,31,14],[16,30,14],[17,29,15],[18,28,15],[19,32,11],[20,32,10],[21,32,12],[22,32,14],[23,32,16],[24,31,17],[25,30,18],[26,30,16],[27,29,18],[28,29,18],[29,29,19],[30,29,19]],[[5,40,3],[6,37,10],[7,36,12],[8,35,14],[9,35,14],[10,13,11],[10,35,14],[11,14,14],[11,36,13],[12,17,18],[12,37,11],[13,21,1],[13,24,24],[14,30,15],[15,30,15],[16,29,15],[17,28,16],[18,28,15],[19,32,11],[20,32,10],[21,32,11],[22,32,14],[23,32,16],[24,31,17],[25,31,17],[26,30,16],[27,30,17],[28,29,18],[29,29,19],[30,29,19]],[[5,40,2],[6,38,9],[7,37,11],[8,35,13],[9,14,5],[9,35,14],[10,15,10],[10,36,13],[11,17,12],[11,36,13],[12,20,15],[12,36,12],[13,24,24],[14,30,15],[15,30,15],[16,29,15],[17,28,16],[18,27,16],[19,32,10],[20,32,10],[21,32,11],[22,32,14],[23,32,16],[24,31,17],[25,31,17],[26,30,16],[27,30,17],[28,30,17],[29,29,19],[30,30,18]],[[6,38,7],[7,38,10],[8,15,3],[8,36,12],[9,16,5],[9,22,2],[9,35,14],[10,17,9],[10,36,14],[11,19,11],[11,36,13],[12,21,13],[12,36,13],[13,25,23],[14,30,15],[14,47,1],[15,29,16],[16,29,16],[17,27,17],[18,27,4],[18,32,11],[19,32,10],[20,32,10],[21,32,11],[22,32,14],[23,32,15],[24,31,17],[25,31,17],[26,31,16],[27,30,17],[28,30,17],[29,30,18],[30,30,19]],[[6,38,7],[7,17,2],[7,38,10],[8,17,3],[8,36,12],[9,18,7],[9,35,14],[10,19,9],[10,35,15],[11,21,9],[11,36,14],[12,24,9],[12,36,13],[13,27,22],[14,30,18],[15,29,16],[16,28,17],[17,27,17],[18,27,4],[18,32,11],[19,32,10],[20,32,10],[21,32,11],[22,32,13],[23,32,15],[24,32,16],[25,31,17],[26,31,16],[27,31,16],[28,30,18],[29,30,18],[30,30,19]],[[6,39,1],[6,41,3],[7,18,3],[7,38,10],[8,18,3],[8,36,12],[9,19,7],[9,36,14],[10,20,9],[10,36,14],[11,22,9],[11,37,13],[12,25,8],[12,37,12],[13,28,21],[14,30,18],[15,29,16],[16,28,17],[17,26,18],[18,27,4],[18,32,11],[19,32,10],[20,32,10],[21,32,11],[22,32,13],[23,32,14],[24,32,16],[25,32,16],[26,31,16],[27,31,16],[28,31,17],[29,31,17],[30,31,18]],[[6,19,3],[6,41,3],[7,19,3],[7,38,10],[8,19,3],[8,37,12],[9,20,6],[9,36,13],[10,21,8],[10,36,14],[11,23,8],[11,37,13],[12,25,8],[12,37,12],[13,28,21],[14,30,19],[15,29,18],[16,27,18],[17,26,18],[18,27,3],[18,32,11],[19,32,11],[20,31,11],[21,31,11],[22,32,12],[23,32,14],[24,32,16],[25,32,16],[26,31,16],[27,31,16],[28,31,17],[29,31,17],[30,31,18]],[[6,20,2],[6,41,3],[7,20,3],[7,39,9],[8,20,5],[8,37,12],[9,20,7],[9,36,13],[10,22,7],[10,36,14],[11,24,7],[11,37,13],[12,26,8],[12,37,12],[13,29,20],[14,30,19],[15,29,18],[16,27,18],[17,26,18],[18,27,3],[18,32,12],[19,32,11],[20,31,11],[21,31,11],[22,32,12],[23,32,14],[24,32,15],[25,32,16],[26,32,15],[27,31,16],[28,31,17],[29,31,18],[30,31,18]],[[6,20,3],[6,41,3],[7,20,4],[7,39,9],[8,20,6],[8,37,12],[9,21,6],[9,36,13],[10,23,7],[10,36,14],[11,25,8],[11,37,13],[12,25,10],[12,37,12],[13,29,20],[14,30,19],[15,28,17],[16,27,18],[17,26,18],[18,27,3],[18,33,11],[19,32,11],[20,31,11],[21,31,11],[22,32,12],[23,32,14],[24,32,15],[25,32,16],[26,32,15],[27,31,16],[28,31,17],[29,31,18],[30,31,18]],[[5,22,2],[6,21,3],[6,41,3],[7,20,3],[7,38,10],[8,20,7],[8,37,12],[9,21,7],[9,36,13],[10,23,7],[10,36,14],[11,25,8],[11,37,13],[12,28,8],[12,37,12],[13,30,19],[14,30,19],[15,28,17],[16,27,18],[17,26,18],[18,27,3],[18,33,10],[19,32,11],[20,31,11],[21,31,11],[22,31,13],[23,32,14],[24,32,15],[25,32,16],[26,32,15],[27,31,17],[28,31,17],[29,31,18],[30,32,17]],[[5,23,1],[6,22,3],[6,41,3],[7,20,5],[7,38,10],[8,20,7],[8,37,12],[9,22,7],[9,36,13],[10,23,8],[10,36,14],[11,25,9],[11,37,13],[12,28,8],[12,37,12],[13,30,19],[14,30,18],[15,28,17],[16,27,18],[17,26,18],[18,27,3],[18,33,10],[19,32,10],[20,31,11],[21,31,11],[22,31,13],[23,32,14],[24,32,15],[25,32,16],[26,32,15],[27,32,16],[28,31,17],[29,31,18],[30,32,18]],[[6,22,4],[6,41,3],[7,21,4],[7,38,10],[8,21,6],[8,36,13],[9,22,8],[9,36,13],[10,23,8],[10,36,14],[11,25,8],[11,37,13],[12,28,8],[12,37,12],[13,30,19],[14,29,19],[15,28,17],[15,46,1],[16,27,18],[17,26,18],[18,27,3],[18,33,10],[19,32,10],[20,31,10],[21,31,12],[22,31,14],[23,32,14],[24,32,15],[25,32,16],[26,32,15],[27,32,16],[28,31,17],[29,31,18],[30,32,18]],[[6,22,4],[6,39,5],[7,21,4],[7,38,10],[8,21,6],[8,36,12],[9,23,7],[9,36,14],[10,24,7],[10,36,14],[11,26,7],[11,37,13],[12,28,21],[13,30,19],[14,29,19],[15,28,19],[16,27,18],[17,26,18],[18,27,3],[18,33,10],[19,32,10],[20,31,10],[21,31,12],[22,31,14],[23,32,14],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,22,4],[6,39,6],[7,21,5],[7,38,10],[8,21,6],[8,36,12],[9,22,8],[9,36,14],[10,25,6],[10,36,14],[11,26,7],[11,37,13],[12,28,21],[13,30,19],[14,29,19],[15,28,16],[16,27,17],[17,27,17],[18,27,3],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,14],[23,32,14],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,22,4],[6,39,6],[7,21,5],[7,38,10],[8,22,5],[8,36,12],[9,22,7],[9,36,13],[10,24,7],[10,36,14],[11,26,7],[11,37,13],[12,28,21],[13,30,19],[14,29,19],[15,28,16],[16,27,17],[17,27,17],[18,27,3],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,15],[23,32,15],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,22,4],[6,39,6],[7,21,5],[7,38,10],[8,22,5],[8,36,12],[9,23,6],[9,36,13],[10,24,7],[10,36,14],[11,25,8],[11,37,13],[12,28,21],[13,30,18],[14,29,19],[15,28,16],[16,27,17],[17,27,17],[18,27,3],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,15],[23,32,15],[24,32,16],[25,32,15],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,22,5],[6,39,6],[7,22,4],[7,38,10],[8,23,4],[8,36,12],[9,23,6],[9,36,13],[10,24,8],[10,36,14],[11,25,8],[11,37,13],[12,28,21],[13,30,18],[14,29,19],[15,28,16],[16,27,17],[17,27,17],[18,28,2],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,15],[23,32,15],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,23,4],[6,38,7],[7,22,5],[7,38,10],[8,23,3],[8,36,12],[9,22,8],[9,35,14],[10,24,7],[10,35,15],[11,26,7],[11,37,13],[12,28,21],[13,30,19],[14,29,19],[15,28,16],[16,27,17],[17,27,17],[18,28,2],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,15],[23,32,15],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,18]],[[6,24,2],[6,38,7],[7,22,5],[7,38,10],[8,23,4],[8,36,12],[9,23,5],[9,35,14],[10,22,8],[10,35,15],[11,25,7],[11,36,13],[12,26,8],[12,36,12],[13,29,20],[14,29,19],[15,29,16],[16,28,17],[17,27,17],[18,27,4],[18,32,11],[19,31,11],[20,31,10],[21,31,12],[22,31,15],[23,32,15],[24,32,16],[25,32,16],[26,32,15],[27,32,16],[28,32,16],[29,32,17],[30,32,17]],[[5,40,2],[6,37,10],[7,23,4],[7,37,11],[8,22,6],[8,35,13],[9,23,4],[9,35,14],[10,23,6],[10,35,15],[11,23,1],[11,25,5],[11,36,13],[12,25,8],[12,36,13],[13,26,22],[14,29,19],[15,29,16],[16,28,17],[17,27,17],[18,27,16],[19,31,11],[20,31,11],[21,31,10],[22,31,15],[23,31,16],[24,32,16],[25,31,17],[26,31,16],[27,31,16],[28,31,17],[29,31,18],[30,31,18]],[[5,39,3],[6,37,10],[7,36,11],[8,24,4],[8,34,14],[9,23,5],[9,34,15],[10,23,6],[10,34,16],[11,23,7],[11,36,13],[12,25,6],[12,36,13],[13,25,24],[14,26,1],[14,28,19],[15,29,16],[16,29,16],[17,27,17],[18,26,18],[19,27,3],[19,32,11],[20,31,11],[21,31,11],[22,31,15],[23,31,16],[24,32,16],[25,31,17],[26,31,17],[27,31,16],[28,31,17],[29,31,18],[30,31,18]],[[5,38,5],[6,36,10],[7,35,12],[8,34,15],[9,25,3],[9,33,16],[10,23,6],[10,34,15],[11,23,7],[11,35,14],[12,24,6],[12,35,14],[13,24,8],[13,33,4],[13,38,11],[14,27,20],[15,27,19],[16,29,17],[17,28,17],[18,26,18],[19,26,4],[19,31,12],[20,31,12],[21,31,11],[22,31,13],[23,31,17],[24,31,17],[25,31,18],[26,31,18],[27,31,17],[28,30,18],[29,30,18],[30,30,19]],[[5,34,2],[5,37,7],[6,35,11],[7,35,12],[8,33,16],[9,32,17],[10,26,2],[10,33,16],[11,25,5],[11,35,14],[12,24,6],[12,35,14],[13,24,7],[13,35,13],[14,25,22],[15,26,21],[16,28,19],[17,28,19],[18,27,18],[19,26,18],[20,28,2],[20,31,12],[21,31,12],[22,31,12],[23,31,17],[24,31,18],[25,31,18],[26,31,19],[27,30,19],[28,30,18],[29,29,19],[30,29,20]],[[5,34,9],[6,34,12],[7,34,13],[8,32,17],[9,31,18],[10,32,17],[11,34,15],[12,27,4],[12,34,15],[13,25,6],[13,35,13],[14,25,7],[14,34,12],[15,25,22],[16,26,22],[17,29,19],[18,27,21],[19,26,20],[20,26,4],[20,31,13],[21,31,13],[22,31,12],[23,31,15],[24,31,19],[25,31,20],[26,31,20],[27,30,21],[28,29,20],[29,29,19],[30,28,21]],[[4,33,3],[5,32,11],[6,33,13],[7,32,15],[8,31,18],[9,31,18],[10,31,18],[11,33,16],[12,34,15],[13,34,14],[14,29,3],[14,34,11],[15,27,21],[16,26,23],[17,26,24],[18,28,22],[19,26,22],[20,26,20],[21,27,2],[21,31,14],[22,31,13],[23,31,13],[24,31,19],[25,31,21],[26,31,21],[27,30,22],[28,29,22],[29,29,21],[30,28,21]],[[4,32,7],[5,31,13],[6,31,16],[7,31,17],[8,30,19],[9,29,20],[10,30,19],[11,33,16],[12,33,17],[13,33,16],[14,35,10],[15,31,18],[16,29,21],[17,28,23],[18,28,23],[19,27,24],[20,26,23],[21,26,22],[22,28,1],[22,31,17],[23,31,15],[24,31,15],[25,31,23],[26,31,23],[27,30,23],[28,29,23],[29,28,19],[29,48,3],[30,28,21]],[[4,31,8],[5,30,15],[6,29,18],[7,30,18],[8,29,20],[9,29,20],[10,29,20],[11,31,18],[12,33,16],[13,33,15],[14,33,12],[15,31,19],[16,29,22],[17,28,24],[18,27,26],[19,28,25],[20,27,24],[21,26,25],[22,27,24],[23,30,20],[24,31,18],[25,31,21],[26,31,24],[27,31,24],[28,30,24],[29,29,18],[29,48,5],[30,27,21],[30,49,3]],[[4,29,11],[5,29,16],[6,29,18],[7,29,19],[8,28,21],[9,28,21],[10,28,21],[11,30,19],[12,32,17],[13,32,17],[14,33,12],[15,30,21],[16,29,23],[17,27,26],[18,27,27],[19,27,28],[20,28,25],[21,27,26],[22,27,26],[23,28,25],[24,30,23],[25,30,22],[26,31,25],[27,32,24],[28,30,26],[29,29,25],[30,28,20],[30,49,4]],[[4,27,15],[5,28,17],[6,28,19],[7,28,20],[8,27,22],[9,27,22],[10,27,22],[11,29,20],[12,32,18],[13,32,18],[14,32,2],[14,35,11],[15,30,21],[16,29,23],[17,27,26],[18,27,28],[19,26,29],[20,28,27],[21,28,26],[22,28,26],[23,29,25],[24,30,25],[25,31,24],[26,31,24],[27,32,25],[28,31,26],[29,30,25],[30,29,25]],[[3,31,3],[4,27,16],[5,28,18],[6,28,19],[7,28,21],[8,27,22],[9,26,23],[10,27,22],[11,28,22],[12,31,19],[13,32,17],[14,32,14],[15,30,1],[15,32,19],[16,29,24],[17,28,25],[18,27,27],[19,27,28],[20,27,29],[21,29,25],[22,30,24],[23,31,23],[24,32,23],[25,29,26],[26,29,26],[27,31,27],[28,32,26],[29,31,25],[30,29,25]],[[3,29,2],[3,32,2],[4,26,17],[5,27,19],[6,27,20],[7,28,21],[8,27,22],[9,26,23],[10,26,23],[11,27,24],[12,31,19],[13,32,18],[14,32,14],[15,32,3],[15,36,14],[16,29,25],[17,28,28],[18,28,29],[19,28,29],[20,28,28],[21,29,25],[22,32,21],[23,32,21],[24,33,21],[25,28,4],[25,33,22],[26,28,26],[27,29,29],[28,31,27],[29,32,24],[30,29,26]],[[3,27,1],[3,29,5],[4,26,17],[5,27,19],[6,26,22],[7,27,22],[8,26,23],[9,26,24],[10,26,24],[11,27,23],[12,29,1],[12,31,20],[13,32,18],[14,32,15],[15,32,16],[15,54,1],[16,30,27],[17,29,31],[18,28,32],[19,29,30],[20,29,26],[21,30,24],[22,32,20],[23,33,22],[24,33,23],[25,34,23],[26,27,31],[27,27,31],[28,29,28],[29,31,26],[30,31,24]],[[3,31,2],[4,26,17],[5,27,19],[6,26,22],[7,27,22],[8,26,24],[9,26,24],[10,26,24],[11,26,24],[12,29,22],[13,32,19],[14,32,17],[15,33,1],[15,35,13],[15,54,5],[16,31,20],[16,52,9],[17,30,33],[18,29,33],[19,29,32],[20,30,27],[21,31,23],[22,32,21],[23,33,23],[24,34,23],[25,35,24],[26,26,34],[27,27,32],[28,28,29],[29,29,27],[30,31,23]],[[3,31,2],[4,26,17],[5,27,19],[6,27,21],[7,27,22],[8,27,23],[9,26,24],[10,26,24],[11,27,23],[12,29,22],[13,32,19],[14,32,18],[14,57,2],[15,33,14],[15,54,7],[16,32,19],[16,53,10],[17,30,34],[18,30,32],[19,30,29],[20,31,28],[21,32,23],[22,33,21],[23,34,22],[24,34,25],[25,35,24],[26,26,34],[27,26,32],[28,28,30],[29,29,28],[30,30,24]],[[3,30,1],[3,32,2],[4,26,17],[5,27,20],[6,28,20],[7,27,23],[8,27,23],[9,26,24],[10,26,25],[11,27,24],[11,57,1],[12,29,22],[12,57,3],[13,32,20],[13,55,5],[14,33,15],[14,55,7],[15,33,2],[15,36,13],[15,54,9],[16,33,18],[16,55,9],[17,31,33],[18,31,30],[19,31,29],[20,32,25],[21,33,23],[22,33,22],[23,34,22],[24,35,24],[25,36,24],[26,26,9],[26,36,25],[27,26,33],[28,27,32],[29,29,27],[30,30,24]],[[4,27,17],[5,27,20],[6,28,21],[6,57,2],[7,28,22],[7,57,2],[8,28,23],[8,57,2],[9,27,24],[9,57,3],[10,27,24],[10,56,5],[11,28,24],[11,56,5],[12,29,23],[12,56,6],[13,33,20],[13,56,6],[14,34,17],[14,56,8],[15,34,14],[15,56,8],[16,34,18],[16,54,10],[17,32,30],[18,32,30],[19,32,29],[20,33,25],[21,33,23],[22,34,22],[23,35,22],[24,36,24],[25,36,25],[26,27,8],[26,37,25],[27,27,33],[28,28,32],[29,29,28],[29,58,1],[30,30,24]],[[1,57,2],[2,57,2],[3,57,2],[4,28,17],[4,57,2],[5,28,20],[5,57,3],[6,29,21],[6,57,3],[7,29,22],[7,57,5],[8,29,23],[8,56,6],[9,28,24],[9,56,5],[10,28,24],[10,57,5],[11,29,24],[11,57,6],[12,30,23],[12,57,7],[13,34,20],[13,57,6],[14,35,17],[14,57,8],[15,35,15],[15,57,8],[16,35,18],[16,55,8],[17,33,29],[18,33,30],[19,33,27],[20,34,25],[21,34,24],[22,35,22],[23,36,21],[24,37,24],[25,38,24],[26,27,9],[26,38,25],[27,28,33],[28,29,32],[29,30,28],[29,59,1],[30,31,24]],[[0,57,2],[1,57,3],[2,57,3],[3,57,3],[4,30,16],[4,57,3],[5,29,20],[5,58,3],[6,30,21],[6,58,3],[7,30,23],[7,57,6],[8,30,23],[8,56,6],[9,29,24],[9,58,5],[10,29,25],[10,58,6],[11,30,24],[11,58,7],[12,31,23],[12,58,8],[13,35,20],[13,58,7],[14,36,18],[14,59,8],[15,36,16],[15,56,9],[16,36,18],[16,56,8],[17,35,30],[18,34,30],[19,35,26],[20,35,25],[21,36,23],[22,36,22],[23,37,21],[24,38,25],[25,39,24],[26,29,7],[26,39,25],[27,28,34],[28,29,33],[29,31,28],[29,60,1],[30,32,25]],[[0,59,2],[1,58,3],[2,58,3],[3,59,3],[4,31,16],[4,59,3],[5,31,20],[5,59,2],[6,31,21],[6,59,3],[6,63,1],[7,32,21],[7,58,6],[8,32,22],[8,59,5],[9,31,24],[9,59,6],[10,30,25],[10,59,6],[11,31,24],[11,59,7],[12,32,24],[12,59,7],[13,36,20],[13,60,6],[14,37,17],[14,60,8],[15,37,16],[15,58,8],[16,37,18],[16,58,7],[17,36,30],[18,35,28],[18,64,1],[19,36,26],[20,37,24],[21,37,24],[22,38,21],[23,38,21],[24,39,24],[25,40,25],[26,30,7],[26,41,24],[27,30,34],[28,31,32],[29,32,28],[30,33,25]],[[0,60,2],[1,60,3],[2,60,3],[3,36,1],[3,60,3],[4,32,17],[4,60,3],[5,33,19],[5,61,2],[6,32,22],[6,61,4],[7,33,22],[7,59,6],[8,33,23],[8,59,1],[8,61,4],[9,32,24],[9,61,5],[10,32,24],[10,61,5],[11,32,25],[11,60,8],[12,34,23],[12,61,7],[13,38,19],[13,61,6],[14,38,18],[14,62,8],[15,38,15],[15,59,8],[16,39,18],[16,59,8],[17,37,31],[18,37,30],[19,37,27],[20,38,25],[21,38,24],[22,39,22],[23,40,21],[24,41,23],[25,41,25],[26,31,7],[26,42,24],[27,31,34],[28,32,32],[29,33,29],[30,35,24]],[[0,61,3],[1,61,3],[2,61,2],[3,37,1],[3,40,2],[3,61,3],[4,34,16],[4,62,3],[5,34,20],[5,62,2],[6,34,21],[6,62,3],[6,66,1],[7,34,22],[7,60,7],[8,34,23],[8,62,4],[9,33,24],[9,62,5],[10,33,25],[10,62,6],[11,34,24],[11,62,7],[12,35,23],[12,62,7],[13,39,20],[13,62,7],[14,39,15],[14,55,2],[14,63,8],[15,40,14],[15,60,9],[16,40,18],[16,60,8],[17,39,30],[18,38,30],[19,39,26],[20,39,25],[21,39,24],[22,40,22],[23,41,21],[24,42,24],[25,43,24],[26,32,8],[26,43,25],[27,32,34],[28,33,32],[29,35,28],[29,64,1],[30,36,24]],[[0,63,2],[1,62,3],[2,62,3],[3,38,2],[3,41,2],[3,63,2],[4,35,17],[4,63,3],[5,35,20],[5,63,2],[6,35,22],[6,63,3],[6,67,1],[7,36,21],[7,62,6],[8,35,23],[8,62,5],[9,35,24],[9,63,5],[10,34,24],[10,63,6],[11,35,24],[11,63,7],[12,37,23],[12,63,7],[13,40,20],[13,64,6],[14,41,17],[14,64,8],[15,41,15],[15,61,9],[16,41,18],[16,61,8],[17,40,20],[17,61,8],[18,39,30],[19,40,26],[20,40,25],[21,41,23],[22,41,22],[23,42,21],[24,43,24],[25,44,24],[26,33,8],[26,44,25],[27,33,34],[28,35,31],[29,36,28],[29,65,1],[30,37,25]],[[0,64,2],[1,63,3],[2,63,3],[3,40,1],[3,42,3],[3,64,3],[4,36,17],[4,64,2],[5,37,20],[5,64,2],[6,36,22],[6,65,2],[7,37,22],[7,63,7],[8,37,23],[8,63,5],[9,36,24],[9,64,5],[10,36,23],[10,65,5],[11,36,25],[11,64,7],[12,38,23],[12,64,7],[13,41,19],[13,65,6],[14,42,17],[14,65,7],[15,42,15],[15,63,9],[16,42,19],[16,63,7],[17,41,30],[18,41,29],[19,41,27],[20,42,25],[21,42,24],[22,43,22],[23,44,20],[24,44,24],[25,45,24],[26,35,8],[26,45,25],[27,35,33],[28,36,32],[29,37,30],[30,39,24]],[[0,65,2],[1,65,2],[2,65,2],[3,41,2],[3,44,2],[3,65,2],[4,37,17],[4,65,2],[5,38,20],[5,65,2],[6,37,22],[6,65,3],[7,38,22],[7,65,5],[8,38,23],[8,64,5],[9,37,24],[9,66,4],[10,37,24],[10,66,5],[11,37,25],[11,65,7],[12,39,23],[12,65,7],[13,42,19],[13,66,6],[14,43,15],[14,59,1],[14,66,8],[15,43,3],[15,48,10],[15,66,8],[16,43,19],[16,63,9],[17,42,29],[18,41,30],[19,42,27],[20,43,25],[21,43,24],[22,43,23],[23,44,21],[24,45,24],[25,46,24],[26,36,8],[26,46,25],[27,36,33],[28,37,31],[29,38,30],[30,40,24]],[[0,66,1],[1,65,3],[2,65,2],[3,42,2],[3,45,2],[3,65,3],[4,38,18],[4,66,2],[5,39,20],[5,66,2],[6,38,22],[6,66,2],[7,39,22],[7,66,5],[8,38,24],[8,65,5],[9,38,23],[9,66,5],[10,38,23],[10,66,6],[11,38,25],[11,66,7],[12,40,23],[12,66,7],[13,43,19],[13,66,7],[14,44,15],[14,60,1],[14,67,8],[15,44,3],[15,49,10],[15,67,8],[16,44,19],[16,64,8],[17,43,29],[18,42,30],[19,43,27],[20,43,26],[21,44,24],[22,44,22],[23,45,21],[24,46,24],[25,47,23],[26,37,8],[26,47,24],[27,37,32],[27,70,1],[28,38,31],[29,39,30],[30,41,25]],[[0,66,1],[1,66,2],[2,66,2],[3,42,2],[3,45,3],[3,66,2],[4,39,17],[4,66,2],[5,40,19],[5,67,2],[6,38,22],[6,67,2],[7,40,21],[7,67,4],[8,39,23],[8,65,5],[9,38,25],[9,67,5],[10,38,24],[10,67,5],[11,39,24],[11,67,6],[12,41,22],[12,67,7],[13,44,19],[13,67,7],[14,44,18],[14,68,7],[15,44,15],[15,68,7],[16,45,18],[16,65,8],[17,43,21],[17,65,8],[18,43,30],[19,44,26],[20,44,25],[21,44,24],[22,45,22],[23,46,21],[24,47,23],[25,47,24],[26,37,9],[26,48,23],[27,37,34],[28,38,32],[29,40,28],[30,41,24]],[[0,67,1],[1,67,2],[2,67,1],[3,43,2],[3,46,3],[3,67,2],[4,39,18],[4,67,2],[5,40,20],[5,67,2],[6,39,22],[6,67,2],[7,40,21],[7,66,1],[7,68,4],[8,39,23],[8,66,5],[9,39,24],[9,68,4],[10,39,23],[10,68,5],[11,39,25],[11,67,7],[12,42,22],[12,67,7],[13,44,19],[13,67,7],[14,45,14],[14,68,8],[15,44,16],[15,68,8],[16,45,19],[16,65,8],[17,44,20],[17,65,8],[18,43,30],[19,44,27],[20,44,26],[21,45,23],[22,45,22],[23,46,21],[24,47,23],[25,47,24],[26,37,9],[26,48,24],[27,38,33],[28,39,31],[29,40,29],[30,42,24]],[[0,67,1],[1,67,2],[2,67,2],[3,43,2],[3,46,3],[3,67,2],[4,39,18],[4,67,2],[5,40,20],[5,68,2],[6,39,22],[6,68,2],[7,40,22],[7,66,1],[7,68,4],[8,39,24],[8,66,4],[9,39,23],[9,68,4],[10,39,23],[10,68,5],[11,40,24],[11,67,8],[12,42,22],[12,67,8],[13,44,19],[13,68,7],[14,45,15],[14,61,1],[14,68,8],[15,45,16],[15,62,1],[15,68,8],[16,45,19],[16,65,9],[17,44,21],[17,66,7],[18,43,30],[19,44,27],[20,44,26],[21,45,24],[22,45,23],[23,46,21],[24,47,23],[25,48,23],[26,37,10],[26,48,24],[27,38,33],[28,39,31],[29,40,29],[30,42,24]],[[0,68,2],[1,68,2],[2,68,2],[3,43,8],[3,68,2],[4,40,18],[4,68,2],[5,40,20],[5,68,2],[6,39,22],[6,68,2],[7,40,22],[7,68,4],[8,39,24],[8,67,5],[9,39,23],[9,68,5],[10,39,24],[10,68,6],[11,40,24],[11,68,7],[12,42,22],[12,68,8],[13,44,19],[13,68,7],[14,45,15],[14,61,1],[14,68,8],[15,45,18],[15,68,8],[16,45,19],[16,66,8],[17,44,21],[17,66,8],[18,44,30],[19,44,27],[20,45,25],[21,45,24],[22,46,22],[23,46,21],[24,47,23],[25,48,23],[26,37,10],[26,48,24],[27,38,33],[28,39,31],[29,40,28],[30,42,23]],[[0,69,2],[1,68,3],[2,68,2],[3,41,1],[3,43,9],[3,69,1],[4,40,18],[4,69,2],[5,40,21],[5,69,2],[6,39,23],[6,69,2],[7,41,21],[7,68,5],[8,39,23],[8,68,4],[9,39,24],[9,69,4],[10,39,24],[10,68,6],[11,40,25],[11,68,8],[12,43,22],[12,68,8],[13,45,18],[13,68,8],[14,45,15],[14,69,8],[15,45,3],[15,50,13],[15,66,10],[16,45,19],[16,67,8],[17,44,21],[17,66,8],[18,44,30],[19,45,26],[20,45,25],[21,45,24],[22,46,22],[23,47,20],[24,47,23],[25,48,23],[26,37,35],[27,38,33],[28,39,31],[29,41,27],[29,69,1],[30,42,23]],[[0,69,1],[1,69,2],[2,69,2],[3,40,13],[3,69,2],[4,40,19],[4,69,2],[5,40,21],[5,70,1],[6,39,23],[6,70,2],[7,41,21],[7,68,5],[8,39,24],[8,68,5],[9,39,24],[9,69,5],[10,40,24],[10,69,6],[11,40,25],[11,68,9],[12,43,21],[12,68,9],[13,45,18],[13,69,7],[14,45,15],[14,70,8],[15,45,2],[15,50,14],[15,67,9],[16,45,20],[16,67,8],[17,44,21],[17,66,9],[18,44,31],[19,45,26],[20,45,25],[21,45,24],[22,46,22],[23,47,20],[24,48,22],[25,48,23],[26,37,35],[27,37,34],[28,39,31],[29,41,27],[29,69,1],[30,42,23]],[[0,70,2],[1,70,2],[2,70,2],[3,40,14],[3,70,2],[4,41,18],[4,70,2],[5,40,21],[5,70,2],[6,39,23],[6,70,4],[7,41,22],[7,69,5],[8,40,23],[8,70,4],[9,39,24],[9,70,4],[10,40,24],[10,69,7],[11,41,24],[11,69,8],[12,44,19],[12,69,8],[13,45,17],[13,70,7],[14,45,15],[14,70,8],[15,46,18],[15,67,9],[16,45,20],[16,67,8],[17,44,21],[17,66,9],[18,44,29],[18,74,1],[19,45,27],[20,45,26],[21,46,23],[22,47,21],[23,47,20],[24,48,22],[25,48,23],[26,37,35],[27,38,33],[28,39,32],[29,41,26],[29,69,1],[30,42,23]],[[0,70,1],[1,70,2],[2,70,2],[3,40,15],[3,70,2],[4,41,19],[4,70,2],[5,40,21],[5,70,2],[6,40,22],[6,71,3],[7,41,22],[7,69,5],[8,40,24],[8,70,4],[9,40,23],[9,70,5],[10,40,25],[10,69,8],[11,41,25],[11,69,9],[12,45,19],[12,69,8],[13,45,19],[13,70,8],[14,45,14],[14,70,8],[15,46,18],[15,68,8],[16,46,19],[16,68,8],[17,45,31],[18,45,28],[18,74,1],[19,45,27],[20,45,26],[21,46,24],[22,47,21],[23,47,20],[24,48,22],[25,49,22],[26,37,11],[26,49,23],[27,38,33],[28,39,32],[29,41,26],[29,69,1],[30,42,23]],[[0,70,2],[1,70,2],[2,44,2],[2,48,2],[2,70,2],[3,41,16],[3,70,2],[4,41,20],[4,71,1],[5,40,22],[5,71,2],[6,40,23],[6,71,4],[7,41,23],[7,69,5],[8,40,23],[8,71,4],[9,40,24],[9,70,6],[10,40,26],[10,70,8],[11,42,24],[11,70,8],[12,45,19],[12,70,8],[13,46,14],[13,62,2],[13,71,8],[14,46,14],[14,62,1],[14,69,1],[14,71,8],[15,46,19],[15,68,9],[16,46,19],[16,68,8],[17,45,31],[18,45,28],[19,46,26],[20,46,25],[21,46,24],[22,47,22],[23,48,19],[24,48,22],[25,49,22],[26,37,35],[27,38,33],[28,39,32],[29,41,25],[29,69,1],[30,42,23]],[[0,70,2],[1,70,2],[2,45,2],[2,48,3],[2,70,2],[3,41,19],[3,71,2],[4,42,20],[4,71,2],[5,40,23],[5,71,2],[6,41,23],[6,71,4],[7,42,23],[7,70,5],[8,41,23],[8,72,4],[9,41,24],[9,71,6],[10,41,25],[10,71,8],[11,43,23],[11,71,8],[12,46,18],[12,71,8],[13,46,17],[13,72,7],[14,46,15],[14,63,1],[14,69,10],[15,46,19],[15,69,9],[16,46,20],[16,69,9],[17,46,31],[18,46,28],[19,46,27],[20,47,25],[21,47,24],[22,48,20],[23,48,19],[24,49,21],[25,49,22],[26,37,35],[27,38,33],[28,39,32],[29,41,25],[29,69,1],[30,42,23]],[[0,71,1],[1,70,2],[2,45,10],[2,71,2],[3,42,19],[3,71,2],[4,42,21],[4,71,3],[5,41,23],[5,72,2],[5,75,1],[6,43,21],[6,72,4],[7,42,23],[7,71,6],[8,41,24],[8,72,6],[9,41,24],[9,72,7],[10,42,26],[10,72,7],[11,45,22],[11,73,6],[12,47,18],[12,74,5],[13,47,14],[13,72,7],[14,47,17],[14,71,8],[15,47,19],[15,71,8],[16,47,19],[16,69,10],[17,46,21],[17,68,8],[18,47,28],[19,47,27],[20,47,25],[21,48,23],[22,48,20],[23,49,19],[24,49,21],[25,38,7],[25,49,22],[26,37,35],[27,38,33],[28,40,31],[29,41,25],[29,68,2],[30,42,23]],[[0,71,1],[1,50,1],[1,70,2],[2,42,15],[2,71,2],[3,42,20],[3,71,2],[4,42,22],[4,72,2],[5,41,23],[5,72,2],[5,76,1],[6,43,22],[6,71,6],[7,42,23],[7,71,6],[8,42,24],[8,73,5],[9,42,25],[9,73,6],[10,43,24],[10,74,5],[11,47,19],[11,74,5],[12,47,17],[12,74,5],[13,47,15],[13,72,7],[14,47,18],[14,72,7],[15,47,19],[15,71,8],[16,47,20],[16,69,10],[17,47,20],[17,68,8],[18,47,28],[19,47,27],[20,48,24],[21,48,22],[22,49,19],[23,49,19],[24,49,21],[25,37,11],[25,49,22],[26,37,35],[27,38,33],[28,40,31],[29,41,24],[29,69,1],[30,42,23]],[[0,70,1],[1,50,1],[1,52,1],[1,70,2],[2,42,15],[2,70,2],[3,43,19],[3,71,2],[4,41,22],[4,71,2],[5,41,23],[5,72,4],[6,43,22],[6,71,5],[7,42,23],[7,71,6],[8,41,24],[8,72,6],[9,42,25],[9,73,6],[10,43,25],[10,73,6],[11,47,19],[11,74,5],[12,47,16],[12,64,2],[12,74,5],[13,48,13],[13,71,8],[14,48,17],[14,71,8],[15,47,19],[15,70,9],[16,47,19],[16,69,10],[17,47,29],[18,47,27],[19,48,25],[20,48,24],[21,48,22],[22,49,19],[23,49,18],[24,49,21],[25,37,34],[26,37,35],[27,39,32],[28,40,30],[29,41,24],[29,67,3],[30,42,22]],[[1,50,1],[1,69,3],[2,41,3],[2,45,2],[2,48,6],[2,69,3],[3,41,19],[3,70,1],[4,40,22],[4,70,2],[5,40,23],[5,70,3],[6,41,23],[6,69,5],[7,41,23],[7,69,5],[8,40,24],[8,70,5],[9,40,26],[9,70,6],[10,41,25],[10,70,7],[11,43,22],[11,70,7],[12,47,16],[12,64,2],[12,71,8],[13,48,11],[13,60,1],[13,68,10],[14,48,14],[14,68,8],[15,46,19],[15,68,8],[16,46,19],[16,67,9],[17,46,27],[18,47,25],[19,47,24],[20,47,23],[21,48,21],[22,48,19],[23,48,19],[24,48,23],[25,37,34],[26,38,34],[27,39,32],[28,40,30],[29,41,24],[29,67,2],[30,41,23]],[[3,45,2],[4,37,3],[4,44,9],[5,37,19],[6,36,22],[7,37,22],[8,36,23],[9,36,24],[10,35,28],[10,68,1],[11,36,34],[12,37,30],[13,42,18],[14,34,2],[14,40,18],[15,31,1],[15,34,26],[16,28,33],[17,28,34],[18,27,37],[19,24,41],[20,22,44],[21,22,20],[21,44,21],[22,24,6],[22,33,7],[22,44,20],[23,45,24],[24,46,26],[25,38,35],[26,38,35],[27,39,32],[27,72,1],[28,40,31],[29,40,26],[29,67,3],[30,41,23]],[[6,39,9],[7,32,19],[8,32,21],[9,33,21],[10,32,23],[10,56,1],[10,58,2],[11,31,30],[12,31,29],[13,31,28],[14,32,27],[15,37,15],[16,0,6],[16,7,3],[16,37,13],[16,55,1],[17,0,20],[17,31,2],[17,41,16],[18,0,37],[18,43,15],[19,3,1],[19,7,2],[19,10,53],[20,21,43],[21,26,39],[22,29,37],[22,72,1],[23,38,30],[23,69,6],[24,40,37],[25,41,19],[25,64,13],[26,42,19],[26,64,14],[27,42,22],[27,65,9],[27,76,2],[28,42,32],[29,42,27],[30,42,26]],[[7,30,5],[7,38,11],[8,29,22],[9,29,24],[10,29,25],[11,31,28],[12,31,30],[13,31,29],[14,25,2],[14,28,31],[15,8,50],[16,9,41],[16,53,1],[17,16,3],[17,20,35],[18,26,30],[19,30,30],[20,30,33],[21,31,32],[22,37,28],[23,39,35],[24,41,35],[25,42,35],[26,42,35],[27,43,34],[28,44,33],[29,46,29],[30,47,26]],[[7,42,7],[8,32,5],[8,38,14],[9,31,23],[10,31,25],[11,33,24],[12,32,29],[13,32,31],[14,32,31],[15,34,27],[16,38,22],[17,38,16],[18,40,16],[19,40,18],[20,40,21],[21,42,21],[22,44,24],[23,45,26],[24,45,27],[25,46,27],[26,46,26],[27,46,25],[28,48,21],[29,49,30],[30,51,28]],[[8,36,5],[8,43,12],[9,35,22],[10,37,22],[11,36,24],[12,35,26],[12,62,15],[13,35,42],[14,35,42],[15,37,36],[16,41,27],[17,41,24],[18,43,21],[19,45,3],[19,50,13],[20,49,15],[21,49,16],[22,47,19],[23,46,21],[24,48,20],[25,49,21],[26,49,22],[27,50,22],[27,76,2],[28,51,22],[28,75,4],[29,53,26],[30,50,2],[30,55,24]],[[8,43,22],[9,43,24],[10,45,24],[11,44,26],[12,43,28],[12,74,5],[13,42,37],[14,43,36],[15,44,35],[16,48,27],[17,48,25],[18,50,22],[19,55,17],[20,57,16],[21,55,19],[22,54,22],[23,54,23],[24,55,23],[25,56,23],[26,56,23],[27,57,22],[28,59,20],[29,60,19],[30,63,16]],[[8,55,20],[9,55,23],[10,55,24],[11,54,25],[12,53,26],[13,52,27],[14,52,27],[15,54,25],[16,58,21],[17,57,22],[18,57,22],[19,60,19],[20,66,13],[21,66,13],[22,65,14],[23,65,14],[24,65,14],[25,66,13],[26,67,12],[27,68,11],[28,69,10],[29,70,9],[30,73,6]],[[8,68,11],[9,66,13],[10,65,14],[11,64,15],[12,63,16],[13,62,17],[14,62,17],[15,64,15],[16,67,12],[17,65,14],[18,65,14],[19,66,13],[20,69,10],[21,77,2],[22,76,3],[23,76,3],[24,76,3],[25,77,2],[26,77,2],[27,78,1]],[[8,77,2],[9,74,5],[10,75,4],[11,74,5],[12,73,6],[13,72,7],[14,72,7],[15,74,5],[16,76,3],[17,74,5],[18,74,5],[19,74,5],[20,75,4],[21,76,3]],[[17,0,3],[18,1,2]],[[16,3,1],[16,6,3],[17,0,14],[18,0,9],[18,12,2]],[[16,13,1],[16,16,3],[17,0,25],[18,7,12],[18,22,2]],[[16,22,1],[16,24,2],[17,8,24],[18,13,13],[18,29,3]],[[16,27,2],[17,12,23],[18,17,13],[18,32,3]],[[16,30,3],[17,15,24],[18,19,14],[18,35,4]],[[16,33,2],[17,17,25],[18,21,16],[18,38,4],[19,33,2]],[[15,36,1],[16,35,3],[17,20,25],[18,23,22],[19,36,1]],[[15,38,1],[16,38,2],[17,21,26],[18,25,22],[19,38,1]],[[15,40,2],[16,40,3],[17,23,27],[18,26,24],[19,40,2]],[[15,42,2],[16,42,3],[16,50,2],[17,24,28],[18,27,25],[19,42,2]],[[15,44,1],[16,43,3],[16,52,1],[17,25,29],[18,28,26],[19,44,2]],[[15,46,2],[16,29,26],[17,27,29],[18,34,4],[18,45,3],[18,53,3],[19,46,1]],[[15,47,3],[16,27,31],[17,27,31],[18,47,3],[19,47,2]],[[14,50,2],[15,50,3],[16,29,34],[17,29,34],[18,50,3],[19,50,2]],[[14,52,3],[15,51,4],[15,62,2],[16,28,37],[17,31,34],[18,51,4],[19,52,2]],[[13,56,2],[14,55,4],[15,30,40],[16,30,41],[17,34,36],[18,55,4],[19,56,2]],[[13,58,4],[14,58,3],[15,29,44],[16,29,45],[17,36,37],[18,58,3],[19,58,3]],[[12,64,4],[13,64,4],[14,64,4],[15,32,47],[16,32,47],[17,39,34],[17,76,3],[18,64,4],[19,64,4]],[[12,68,6],[13,68,6],[14,58,19],[15,32,47],[16,34,45],[17,44,16],[17,64,11],[18,68,5],[19,68,5]],[[14,39,40],[15,38,41],[16,41,38],[17,50,29]],[[14,41,38],[15,41,38],[16,45,34],[17,66,13]],[[14,44,35],[15,42,37],[16,46,33],[17,69,10]],[[13,77,2],[14,45,34],[15,43,36],[16,47,32],[17,71,8]],[[13,72,7],[14,46,33],[15,44,35],[16,48,31],[17,70,9]],[[13,74,5],[14,45,34],[15,34,45],[16,34,45],[17,50,29],[18,72,7],[19,73,6],[20,70,9],[21,70,9],[22,69,10],[23,68,11],[24,67,12],[25,66,13],[26,66,13],[27,67,12],[28,67,12],[29,68,11],[30,68,11]],[[13,74,5],[14,48,31],[15,25,54],[16,25,54],[17,33,46],[18,60,12],[19,60,13],[20,58,17],[21,58,19],[22,57,20],[23,56,22],[24,55,24],[25,55,24],[26,55,24],[27,55,24],[28,56,23],[29,56,23],[30,57,21]],[[13,72,7],[14,49,30],[15,22,57],[16,16,63],[17,19,56],[17,76,3],[18,49,11],[18,77,2],[19,50,10],[19,74,5],[20,47,16],[20,73,6],[21,47,17],[21,72,7],[22,46,19],[22,72,7],[23,45,20],[23,71,8],[24,44,22],[24,71,8],[25,44,23],[25,71,8],[26,45,22],[26,72,7],[27,45,22],[27,72,7],[28,46,20],[28,73,6],[29,46,19],[29,73,6],[30,46,19],[30,74,5]],[[13,68,11],[14,50,29],[15,23,56],[16,10,69],[17,10,54],[17,65,10],[18,36,2],[18,39,11],[18,65,10],[19,40,10],[19,63,15],[20,38,14],[20,62,17],[21,37,16],[21,61,18],[22,36,18],[22,61,18],[23,36,18],[23,60,19],[24,35,21],[24,60,19],[25,35,21],[25,61,18],[26,35,20],[26,61,18],[27,36,19],[27,62,17],[28,36,18],[28,62,17],[29,37,17],[29,63,16],[30,37,16],[30,63,15]],[[12,73,6],[13,63,16],[14,48,31],[15,24,55],[16,3,69],[16,77,2],[17,3,61],[17,75,4],[18,19,11],[18,31,13],[18,55,9],[18,74,5],[19,31,9],[19,53,13],[19,74,5],[20,29,14],[20,52,15],[20,73,6],[21,29,15],[21,52,16],[21,73,6],[22,28,16],[22,51,18],[22,73,6],[23,27,18],[23,50,20],[23,74,5],[24,27,19],[24,51,19],[24,74,5],[25,27,18],[25,51,18],[25,75,4],[26,27,18],[26,52,17],[26,75,4],[27,28,16],[27,52,16],[27,76,3],[28,28,16],[28,53,15],[28,76,3],[29,29,14],[29,53,14],[29,77,2],[30,29,14],[30,53,14],[30,77,2]],[[11,73,6],[12,67,12],[13,58,21],[14,46,33],[15,25,52],[16,0,64],[16,67,8],[17,0,55],[17,66,12],[18,7,33],[18,46,8],[18,65,14],[19,24,8],[19,44,12],[19,64,15],[20,23,11],[20,43,14],[20,63,16],[21,22,13],[21,43,15],[21,63,16],[22,21,15],[22,42,17],[22,64,15],[23,20,17],[23,42,17],[23,64,15],[24,20,17],[24,42,17],[24,64,15],[25,20,17],[25,43,16],[25,65,14],[26,21,15],[26,43,15],[26,65,14],[27,21,14],[27,44,14],[27,66,12],[28,21,14],[28,44,13],[28,66,12],[29,22,13],[29,44,13],[29,67,10],[30,23,11],[30,45,11],[30,67,10]],[[9,76,3],[10,72,7],[11,67,12],[12,61,18],[13,54,25],[14,43,30],[14,74,5],[15,26,43],[15,74,5],[16,0,56],[16,58,7],[16,73,6],[17,0,49],[17,57,10],[17,72,7],[18,0,35],[18,38,8],[18,56,13],[18,73,6],[19,18,7],[19,37,10],[19,55,15],[19,73,6],[20,16,11],[20,36,12],[20,54,17],[20,74,5],[21,15,13],[21,35,14],[21,54,17],[21,74,5],[22,15,14],[22,34,16],[22,55,15],[22,75,4],[23,14,15],[23,34,16],[23,55,15],[23,75,4],[24,13,17],[24,35,15],[24,56,13],[24,76,3],[25,14,15],[25,35,14],[25,56,13],[25,76,3],[26,15,13],[26,36,13],[26,57,11],[26,77,2],[27,15,13],[27,36,12],[27,57,11],[27,77,2],[28,16,12],[28,36,12],[28,58,9],[28,78,1],[29,16,11],[29,37,10],[29,58,9],[29,78,1],[30,17,9],[30,37,10],[30,59,7]],[[8,72,7],[9,69,10],[10,65,14],[11,61,14],[11,78,1],[12,56,18],[13,49,26],[14,40,25],[14,66,11],[15,25,37],[15,65,13],[16,1,48],[16,50,7],[16,64,14],[17,0,43],[17,49,9],[17,64,15],[18,0,30],[18,31,7],[18,48,12],[18,64,15],[19,12,6],[19,30,10],[19,47,14],[19,65,14],[20,11,9],[20,29,12],[20,47,15],[20,65,13],[21,10,11],[21,28,13],[21,47,15],[21,66,11],[22,9,13],[22,27,15],[22,47,14],[22,66,11],[23,8,15],[23,27,15],[23,48,13],[23,67,10],[24,8,15],[24,28,14],[24,48,12],[24,67,9],[25,9,13],[25,28,13],[25,48,12],[25,67,9],[26,9,13],[26,29,12],[26,49,10],[26,68,7],[27,10,11],[27,29,11],[27,49,10],[27,68,7],[28,10,11],[28,30,10],[28,50,8],[28,69,2],[28,72,2],[29,11,9],[29,30,9],[29,50,8],[30,11,9],[30,31,8],[30,51,6]],[[8,67,5],[9,63,11],[10,59,17],[11,55,23],[12,51,15],[12,70,9],[13,45,21],[13,72,7],[14,37,31],[14,73,6],[15,23,32],[15,58,11],[15,72,7],[16,1,7],[16,9,1],[16,11,39],[16,57,12],[16,71,8],[17,0,38],[17,42,8],[17,56,23],[18,0,24],[18,25,6],[18,41,11],[18,56,23],[19,7,6],[19,24,9],[19,40,13],[19,57,12],[19,70,9],[20,5,10],[20,23,11],[20,40,14],[20,57,12],[20,70,9],[21,5,11],[21,22,13],[21,40,13],[21,58,11],[21,71,8],[22,4,13],[22,21,15],[22,40,13],[22,58,10],[22,71,8],[23,3,14],[23,22,13],[23,41,11],[23,59,9],[23,72,7],[24,3,14],[24,22,13],[24,41,11],[24,59,8],[24,72,7],[25,4,12],[25,23,11],[25,42,10],[25,60,7],[25,73,6],[26,5,11],[26,23,11],[26,42,9],[26,60,6],[26,73,6],[27,5,10],[27,24,9],[27,42,9],[27,61,5],[27,74,5],[28,6,9],[28,24,9],[28,43,7],[28,61,1],[28,74,2],[28,77,2],[29,6,8],[29,24,8],[29,43,7],[30,7,7],[30,25,7],[30,44,5]],[[6,78,1],[7,76,3],[8,76,3],[9,58,7],[10,54,13],[11,50,19],[12,46,13],[12,62,9],[13,41,17],[13,64,9],[14,33,26],[14,65,10],[15,22,27],[15,51,10],[15,65,12],[16,2,2],[16,5,1],[16,7,37],[16,50,11],[16,63,15],[17,0,33],[17,36,7],[17,49,13],[17,63,16],[18,0,18],[18,19,6],[18,35,10],[18,49,30],[19,2,6],[19,19,8],[19,34,12],[19,50,11],[19,62,12],[19,76,3],[20,1,9],[20,18,10],[20,33,13],[20,50,11],[20,63,11],[20,76,3],[21,0,11],[21,17,12],[21,33,13],[21,51,10],[21,63,10],[21,74,5],[22,0,12],[22,16,13],[22,34,12],[22,51,9],[22,64,15],[23,0,12],[23,16,13],[23,34,11],[23,52,8],[23,64,15],[24,0,11],[24,17,11],[24,35,10],[24,52,8],[24,65,7],[24,73,6],[25,0,11],[25,18,10],[25,35,9],[25,53,6],[25,65,7],[25,73,6],[26,0,10],[26,18,9],[26,36,8],[26,53,6],[26,66,6],[26,74,5],[27,1,9],[27,18,9],[27,36,7],[27,54,2],[27,57,1],[27,66,5],[27,74,5],[28,1,9],[28,19,8],[28,37,6],[28,75,4],[29,2,7],[29,19,7],[29,37,6],[29,75,4],[30,2,6],[30,20,6],[30,38,4],[30,76,3]],[[5,78,1],[6,75,4],[7,72,7],[8,71,8],[9,53,4],[9,71,1],[9,76,3],[10,49,10],[10,76,3],[11,46,15],[11,77,2],[12,42,21],[12,77,2],[13,37,14],[13,56,9],[13,78,1],[14,30,22],[14,59,8],[14,78,1],[15,20,24],[15,45,9],[15,58,11],[15,78,1],[16,2,38],[16,44,10],[16,57,14],[17,0,29],[17,31,6],[17,43,12],[17,56,17],[18,0,14],[18,15,5],[18,30,9],[18,43,31],[19,0,4],[19,14,7],[19,29,10],[19,44,10],[19,56,11],[19,69,8],[20,0,5],[20,13,9],[20,28,12],[20,44,10],[20,56,11],[20,69,10],[21,0,6],[21,12,11],[21,28,12],[21,45,9],[21,57,9],[21,67,12],[22,0,7],[22,11,13],[22,29,10],[22,45,8],[22,57,8],[22,66,10],[23,0,7],[23,12,11],[23,29,10],[23,46,7],[23,58,7],[23,66,13],[24,0,7],[24,13,10],[24,29,10],[24,46,7],[24,58,7],[24,66,13],[25,0,6],[25,13,9],[25,30,8],[25,47,5],[25,59,6],[25,66,13],[26,0,6],[26,14,8],[26,30,8],[26,47,5],[26,59,5],[26,67,9],[26,77,2],[27,0,5],[27,14,8],[27,31,6],[27,59,5],[27,67,9],[27,77,2],[28,0,5],[28,15,6],[28,31,6],[28,68,8],[28,78,1],[29,0,4],[29,15,6],[29,32,5],[29,68,7],[29,78,1],[30,0,4],[30,16,4],[30,35,1],[30,69,6]],[[0,75,4],[1,75,4],[2,76,3],[3,76,3],[4,74,5],[5,73,6],[6,71,8],[7,68,11],[8,66,13],[9,66,4],[9,71,8],[10,45,7],[10,70,9],[11,42,12],[11,70,9],[12,38,18],[12,71,8],[13,34,12],[13,50,8],[13,71,8],[14,27,19],[14,52,8],[14,72,7],[15,18,29],[15,52,10],[15,72,7],[16,2,34],[16,39,9],[16,51,13],[16,74,2],[17,0,24],[17,26,5],[17,38,11],[17,50,16],[18,0,10],[18,11,5],[18,25,8],[18,38,11],[18,50,18],[19,10,6],[19,24,10],[19,38,10],[19,50,10],[19,62,8],[19,78,1],[20,0,1],[20,9,9],[20,23,12],[20,39,9],[20,50,10],[20,62,17],[21,0,2],[21,8,11],[21,23,11],[21,39,9],[21,51,8],[21,61,18],[22,0,3],[22,7,12],[22,24,10],[22,40,7],[22,51,8],[22,60,9],[22,72,7],[23,0,3],[23,8,11],[23,24,9],[23,40,7],[23,52,7],[23,60,10],[23,71,8],[24,0,3],[24,9,9],[24,25,8],[24,41,5],[24,52,6],[24,60,19],[25,0,2],[25,9,9],[25,25,8],[25,41,5],[25,53,5],[25,60,9],[25,70,9],[26,0,2],[26,10,7],[26,26,6],[26,41,5],[26,53,5],[26,61,8],[26,70,9],[27,0,1],[27,10,7],[27,26,6],[27,56,1],[27,61,8],[27,71,8],[28,0,1],[28,11,5],[28,26,5],[28,62,7],[28,71,8],[29,0,1],[29,11,5],[29,27,4],[29,62,6],[29,72,7],[30,12,3],[30,63,5],[30,72,7]],[[0,69,10],[1,69,10],[2,69,10],[3,70,9],[4,70,9],[5,69,10],[6,67,12],[7,65,14],[8,62,17],[9,61,18],[10,42,3],[10,61,1],[10,65,14],[11,39,8],[11,65,9],[11,77,2],[12,35,15],[12,65,9],[12,77,2],[13,30,11],[13,44,8],[13,66,8],[13,76,1],[14,24,16],[14,46,8],[14,66,8],[14,78,1],[15,16,25],[15,47,9],[15,67,7],[16,1,31],[16,34,9],[16,46,12],[16,69,2],[16,77,2],[17,0,20],[17,21,5],[17,33,10],[17,45,14],[17,76,3],[18,0,13],[18,21,7],[18,33,10],[18,44,10],[18,55,6],[18,74,5],[19,6,6],[19,20,9],[19,33,10],[19,45,10],[19,57,7],[19,73,6],[20,5,9],[20,19,11],[20,34,8],[20,45,9],[20,57,22],[21,4,11],[21,19,10],[21,34,8],[21,46,8],[21,55,24],[22,4,11],[22,19,10],[22,35,7],[22,46,7],[22,54,9],[22,66,6],[22,73,6],[23,5,9],[23,20,9],[23,35,6],[23,46,7],[23,54,10],[23,65,8],[23,74,5],[24,5,9],[24,20,8],[24,36,5],[24,47,6],[24,54,25],[25,6,7],[25,21,7],[25,36,5],[25,47,5],[25,55,8],[25,64,15],[26,6,7],[26,21,6],[26,37,3],[26,48,4],[26,55,8],[26,65,14],[27,7,6],[27,22,5],[27,56,7],[27,65,14],[28,7,5],[28,22,4],[28,56,6],[28,66,13],[29,8,4],[29,23,2],[29,57,5],[29,66,13],[30,8,3],[30,57,4],[30,66,13]],[[0,65,14],[1,63,16],[2,63,16],[3,64,15],[4,64,15],[5,64,15],[6,63,16],[7,62,17],[8,59,20],[9,57,22],[10,57,2],[10,60,19],[11,35,7],[11,60,19],[12,32,12],[12,60,9],[12,72,7],[13,27,11],[13,39,7],[13,61,8],[13,72,7],[14,22,13],[14,41,7],[14,61,8],[14,73,1],[15,14,22],[15,43,7],[15,62,6],[15,75,4],[16,1,3],[16,5,1],[16,7,21],[16,30,8],[16,42,10],[16,63,3],[16,72,7],[17,0,16],[17,17,6],[17,29,10],[17,41,13],[17,71,8],[18,0,10],[18,17,7],[18,29,10],[18,40,16],[18,69,10],[19,3,6],[19,16,9],[19,29,9],[19,40,9],[19,52,7],[19,68,11],[20,2,8],[20,15,11],[20,30,8],[20,40,9],[20,52,27],[21,1,10],[21,15,10],[21,30,7],[21,41,8],[21,50,7],[21,58,21],[22,1,10],[22,16,9],[22,30,7],[22,41,7],[22,49,9],[22,61,5],[22,68,11],[23,1,10],[23,17,7],[23,31,5],[23,42,6],[23,49,18],[23,69,10],[24,2,8],[24,17,7],[24,31,5],[24,42,5],[24,49,9],[24,59,20],[25,2,8],[25,18,5],[25,32,4],[25,43,4],[25,50,8],[25,59,20],[26,3,6],[26,18,5],[26,43,4],[26,50,8],[26,60,7],[26,68,11],[27,3,6],[27,19,4],[27,51,6],[27,60,19],[28,4,4],[28,18,4],[28,51,6],[28,60,6],[28,67,12],[29,4,4],[29,52,4],[29,61,18],[30,5,2],[30,52,4],[30,61,18]],[[0,61,4],[0,67,12],[1,59,20],[2,59,20],[3,59,20],[4,59,20],[5,59,20],[6,60,19],[7,58,21],[8,56,23],[9,54,25],[10,53,26],[11,32,5],[11,56,8],[11,65,14],[12,29,10],[12,56,8],[12,67,12],[13,25,16],[13,56,8],[13,67,1],[13,69,10],[14,19,12],[14,36,7],[14,57,7],[14,70,1],[14,74,5],[15,12,20],[15,38,7],[15,57,7],[15,71,8],[16,1,1],[16,3,21],[16,26,7],[16,38,9],[16,59,3],[16,68,11],[17,0,19],[17,25,9],[17,36,13],[17,66,13],[18,0,8],[18,14,6],[18,25,9],[18,36,8],[18,46,5],[18,65,14],[19,0,5],[19,13,8],[19,25,9],[19,36,9],[19,47,7],[19,63,16],[20,0,7],[20,12,10],[20,26,7],[20,36,8],[20,47,32],[21,0,8],[21,12,9],[21,26,7],[21,37,7],[21,46,7],[21,54,25],[22,0,8],[22,13,8],[22,27,6],[22,37,7],[22,45,8],[22,56,5],[22,63,16],[23,0,7],[23,13,7],[23,27,5],[23,38,5],[23,45,9],[23,55,7],[23,64,15],[24,0,7],[24,14,6],[24,27,5],[24,38,5],[24,45,8],[24,54,9],[24,64,15],[25,0,6],[25,14,5],[25,28,3],[25,38,4],[25,46,7],[25,54,25],[26,0,6],[26,15,4],[26,39,2],[26,46,7],[26,55,7],[26,63,16],[27,1,4],[27,15,4],[27,46,6],[27,55,7],[27,63,16],[28,1,4],[28,16,2],[28,47,5],[28,56,5],[28,63,16],[29,2,3],[29,47,4],[29,56,5],[29,62,17],[30,2,1],[30,49,1],[30,57,3],[30,61,18]],[[0,64,15],[1,56,23],[2,55,24],[3,54,25],[4,55,24],[5,54,25],[6,54,25],[7,56,23],[8,54,25],[9,51,28],[10,50,29],[11,30,2],[11,50,1],[11,52,27],[12,26,8],[12,52,8],[12,63,16],[13,22,15],[13,52,8],[13,63,16],[14,17,11],[14,32,7],[14,53,7],[14,66,1],[14,70,9],[15,11,17],[15,34,7],[15,53,6],[15,67,12],[16,0,21],[16,23,6],[16,34,9],[16,55,3],[16,64,15],[17,0,16],[17,22,8],[17,33,12],[17,62,17],[18,0,6],[18,11,5],[18,21,10],[18,32,8],[18,41,6],[18,61,18],[19,0,3],[19,10,7],[19,22,8],[19,32,9],[19,43,7],[19,59,20],[20,0,4],[20,9,9],[20,22,8],[20,33,7],[20,43,36],[21,0,5],[21,9,9],[21,23,6],[21,33,7],[21,42,6],[21,50,29],[22,0,5],[22,10,7],[22,23,6],[22,33,6],[22,41,8],[22,52,5],[22,59,20],[23,0,4],[23,10,7],[23,24,4],[23,34,5],[23,41,8],[23,50,8],[23,60,19],[24,0,4],[24,11,5],[24,24,4],[24,34,5],[24,41,8],[24,50,9],[24,60,19],[25,0,3],[25,11,5],[25,24,4],[25,35,3],[25,42,7],[25,50,8],[25,60,19],[26,0,3],[26,12,4],[26,36,1],[26,42,6],[26,51,7],[26,59,20],[27,0,2],[27,12,3],[27,43,5],[27,51,6],[27,59,20],[28,0,2],[28,13,2],[28,43,4],[28,52,5],[28,59,20],[29,0,2],[29,43,4],[29,52,4],[29,58,21],[30,53,3],[30,57,22]],[[0,62,17],[1,54,3],[1,59,20],[2,52,27],[3,50,29],[4,50,29],[5,51,28],[6,50,29],[7,52,27],[8,51,28],[9,49,30],[10,47,32],[11,47,1],[11,49,30],[12,24,7],[12,49,8],[12,60,19],[13,20,13],[13,49,8],[13,60,15],[14,15,10],[14,28,7],[14,49,7],[14,61,3],[14,66,10],[15,9,15],[15,30,7],[15,50,6],[15,64,15],[16,0,18],[16,20,6],[16,31,8],[16,50,5],[16,60,19],[17,0,13],[17,14,1],[17,19,8],[17,29,12],[17,58,21],[18,0,4],[18,8,5],[18,18,9],[18,29,8],[18,38,5],[18,57,22],[19,7,8],[19,19,8],[19,29,8],[19,40,6],[19,56,23],[20,0,2],[20,7,8],[20,19,7],[20,29,8],[20,39,40],[21,0,2],[21,7,8],[21,20,6],[21,30,6],[21,38,7],[21,47,32],[22,0,2],[22,7,7],[22,21,5],[22,30,6],[22,37,8],[22,48,5],[22,55,24],[23,0,2],[23,8,6],[23,21,4],[23,31,4],[23,37,9],[23,47,7],[23,57,22],[24,0,1],[24,8,6],[24,21,4],[24,31,4],[24,38,7],[24,46,9],[24,56,23],[25,0,1],[25,9,4],[25,21,3],[25,31,4],[25,38,7],[25,47,7],[25,56,23],[26,9,4],[26,39,5],[26,47,7],[26,56,23],[27,10,2],[27,39,5],[27,48,5],[27,55,24],[28,10,1],[28,40,3],[28,48,5],[28,55,24],[29,40,3],[29,48,4],[29,54,25],[30,49,3],[30,54,25]],[[0,60,2],[0,63,10],[1,57,19],[2,49,5],[2,55,22],[3,48,30],[4,47,31],[5,47,31],[6,47,32],[7,49,30],[8,49,30],[9,47,32],[10,45,34],[11,44,35],[12,22,5],[12,46,8],[12,56,20],[13,18,11],[13,45,8],[13,57,15],[14,14,9],[14,25,7],[14,46,7],[14,56,1],[14,58,2],[14,63,9],[15,8,13],[15,27,7],[15,46,6],[15,61,14],[16,0,16],[16,17,6],[16,28,8],[16,47,5],[16,57,21],[17,0,10],[17,11,2],[17,17,7],[17,27,11],[17,48,2],[17,55,24],[18,0,2],[18,6,5],[18,16,8],[18,26,8],[18,35,5],[18,54,25],[19,5,7],[19,16,8],[19,26,8],[19,36,7],[19,53,26],[20,4,9],[20,17,6],[20,26,7],[20,36,43],[21,4,8],[21,18,5],[21,27,6],[21,35,6],[21,44,35],[22,5,7],[22,18,5],[22,27,6],[22,34,8],[22,45,5],[22,52,27],[23,5,6],[23,18,4],[23,28,4],[23,34,8],[23,43,8],[23,53,26],[24,6,5],[24,19,3],[24,28,4],[24,35,7],[24,43,8],[24,53,26],[25,6,4],[25,20,1],[25,29,3],[25,35,6],[25,44,7],[25,53,26],[26,7,3],[26,36,5],[26,44,6],[26,52,27],[27,7,3],[27,36,4],[27,44,6],[27,52,27],[28,37,3],[28,45,4],[28,52,27],[29,37,2],[29,45,4],[29,51,28],[30,46,2],[30,51,28]],[[1,56,16],[2,48,3],[2,53,21],[3,45,29],[4,44,31],[5,44,31],[6,44,30],[7,44,34],[8,46,32],[9,45,32],[10,43,33],[11,42,8],[11,51,24],[12,20,4],[12,43,8],[12,54,19],[13,17,9],[13,43,8],[13,54,15],[14,12,9],[14,22,6],[14,43,7],[14,55,2],[14,59,9],[15,6,13],[15,24,7],[15,44,6],[15,57,1],[15,59,12],[16,0,14],[16,15,5],[16,26,7],[16,45,4],[16,54,21],[17,0,11],[17,15,6],[17,25,10],[17,45,2],[17,52,24],[18,0,1],[18,4,4],[18,14,8],[18,23,8],[18,32,5],[18,51,26],[19,3,7],[19,14,7],[19,23,8],[19,34,6],[19,50,28],[20,2,8],[20,15,6],[20,24,7],[20,34,45],[21,2,8],[21,15,6],[21,24,6],[21,32,7],[21,41,38],[22,3,6],[22,16,4],[22,25,5],[22,32,7],[22,42,5],[22,50,29],[23,3,6],[23,16,4],[23,25,4],[23,32,7],[23,40,8],[23,51,28],[24,4,4],[24,17,2],[24,26,3],[24,32,7],[24,40,8],[24,50,29],[25,4,4],[25,17,2],[25,26,3],[25,33,5],[25,41,6],[25,50,29],[26,5,3],[26,33,5],[26,41,6],[26,50,29],[27,5,2],[27,34,3],[27,42,5],[27,49,30],[28,34,3],[28,42,4],[28,49,30],[29,35,1],[29,43,3],[29,49,29],[30,44,1],[30,48,30]],[[1,54,1],[1,56,11],[2,51,19],[3,44,5],[3,50,21],[4,42,30],[5,42,30],[6,42,29],[7,41,33],[8,44,30],[9,43,31],[10,42,31],[11,40,8],[11,49,23],[12,19,3],[12,41,7],[12,51,19],[13,15,9],[13,41,8],[13,52,15],[13,68,1],[14,11,8],[14,20,6],[14,41,7],[14,53,2],[14,56,10],[15,5,12],[15,22,6],[15,41,6],[15,56,12],[16,0,18],[16,24,6],[16,43,4],[16,52,19],[17,0,10],[17,13,6],[17,23,9],[17,43,2],[17,50,23],[18,2,4],[18,12,8],[18,21,8],[18,30,4],[18,49,25],[19,1,7],[19,12,7],[19,21,8],[19,31,7],[19,48,27],[20,1,7],[20,13,6],[20,22,6],[20,31,48],[21,1,7],[21,13,5],[21,22,6],[21,30,6],[21,39,40],[22,1,6],[22,14,4],[22,23,5],[22,29,8],[22,39,5],[22,48,28],[23,2,5],[23,14,3],[23,23,4],[23,29,8],[23,38,7],[23,48,30],[24,2,5],[24,15,2],[24,24,3],[24,30,6],[24,38,7],[24,48,29],[25,3,3],[25,24,2],[25,30,6],[25,38,7],[25,48,29],[26,3,3],[26,31,4],[26,39,5],[26,47,29],[27,4,1],[27,31,4],[27,39,5],[27,47,29],[28,32,3],[28,40,3],[28,47,28],[29,33,1],[29,40,3],[29,46,29],[30,41,1],[30,46,29]],[[1,53,2],[1,56,1],[1,62,1],[2,50,17],[3,42,5],[3,48,20],[4,40,29],[5,40,29],[6,40,29],[7,39,30],[8,41,30],[9,41,30],[10,40,30],[11,38,32],[12,18,2],[12,39,8],[12,48,22],[13,14,8],[13,39,8],[13,50,15],[14,10,14],[14,39,7],[14,51,2],[14,54,9],[15,4,11],[15,20,6],[15,39,7],[15,52,1],[15,55,9],[16,0,11],[16,12,4],[16,22,6],[16,41,4],[16,50,19],[17,0,9],[17,11,6],[17,21,9],[17,42,1],[17,48,22],[18,1,4],[18,11,7],[18,20,7],[18,28,4],[18,47,24],[19,0,6],[19,11,6],[19,19,8],[19,29,7],[19,46,26],[20,0,7],[20,11,6],[20,20,6],[20,29,50],[21,0,6],[21,12,4],[21,20,6],[21,28,6],[21,37,42],[22,0,6],[22,12,4],[22,21,5],[22,27,8],[22,37,5],[22,46,28],[22,78,1],[23,0,5],[23,13,3],[23,21,4],[23,28,7],[23,36,7],[23,46,29],[23,77,2],[24,1,4],[24,13,2],[24,22,3],[24,28,6],[24,36,7],[24,46,29],[24,77,2],[25,1,3],[25,22,2],[25,29,5],[25,36,7],[25,46,28],[25,78,1],[26,2,2],[26,29,4],[26,37,5],[26,45,28],[26,78,1],[27,2,1],[27,29,4],[27,37,5],[27,45,28],[28,30,2],[28,38,3],[28,45,27],[29,38,3],[29,44,28],[30,44,28]],[[2,49,15],[3,42,3],[3,47,19],[4,39,28],[5,38,29],[6,38,29],[7,37,30],[8,38,31],[9,40,29],[10,39,5],[10,45,24],[11,37,7],[11,45,23],[12,17,1],[12,38,30],[13,13,7],[13,37,8],[13,48,15],[13,64,1],[14,9,13],[14,37,8],[14,49,2],[14,52,10],[15,3,11],[15,18,6],[15,38,6],[15,50,1],[15,53,9],[16,0,14],[16,20,6],[16,38,6],[16,48,18],[17,0,7],[17,10,6],[17,20,8],[17,40,2],[17,46,22],[18,0,3],[18,9,7],[18,18,7],[18,26,4],[18,45,24],[19,0,5],[19,9,7],[19,18,7],[19,28,6],[19,44,26],[20,0,5],[20,10,5],[20,18,7],[20,28,51],[21,0,5],[21,10,5],[21,20,4],[21,26,6],[21,35,44],[22,0,4],[22,11,3],[22,19,5],[22,26,7],[22,35,5],[22,44,27],[22,75,4],[23,0,4],[23,11,3],[23,20,4],[23,26,7],[23,34,7],[23,44,28],[23,75,4],[24,0,3],[24,12,2],[24,20,3],[24,27,5],[24,34,7],[24,44,28],[24,75,4],[25,0,3],[25,21,2],[25,27,5],[25,35,6],[25,44,27],[25,76,3],[26,1,2],[26,27,5],[26,35,5],[26,44,27],[26,76,3],[27,28,3],[27,36,4],[27,44,27],[27,77,2],[28,28,3],[28,36,3],[28,43,27],[28,77,2],[29,37,2],[29,43,27],[29,78,1],[30,43,27]],[[2,49,13],[3,46,18],[4,38,27],[5,37,28],[6,36,30],[7,36,29],[8,36,30],[9,39,28],[10,38,5],[10,44,23],[11,37,6],[11,44,22],[12,36,30],[13,12,7],[13,36,8],[13,47,14],[13,62,1],[14,8,12],[14,36,7],[14,48,2],[14,51,9],[15,3,10],[15,17,6],[15,37,6],[15,49,1],[15,52,8],[16,0,13],[16,19,6],[16,38,4],[16,47,18],[17,0,7],[17,9,5],[17,18,9],[17,39,1],[17,45,21],[18,0,2],[18,8,7],[18,17,7],[18,25,4],[18,44,23],[19,0,4],[19,8,7],[19,17,7],[19,27,6],[19,43,25],[19,78,1],[20,0,4],[20,9,5],[20,17,7],[20,27,52],[21,0,4],[21,9,5],[21,18,5],[21,25,6],[21,34,44],[22,0,3],[22,10,3],[22,19,4],[22,25,7],[22,34,5],[22,43,26],[22,73,6],[23,0,3],[23,10,3],[23,19,3],[23,25,6],[23,33,7],[23,42,28],[23,73,6],[24,0,2],[24,11,1],[24,19,3],[24,25,6],[24,33,7],[24,43,27],[24,73,6],[25,0,2],[25,20,1],[25,26,5],[25,34,5],[25,43,26],[25,74,5],[26,0,2],[26,26,4],[26,34,5],[26,42,27],[26,74,4],[27,27,3],[27,34,4],[27,42,26],[27,75,3],[28,27,2],[28,35,3],[28,42,26],[28,75,3],[29,35,2],[29,42,26],[29,76,1],[30,41,27]],[[2,49,10],[3,45,17],[4,38,25],[5,36,28],[6,36,29],[7,35,29],[8,35,30],[9,38,28],[10,37,29],[11,36,6],[11,43,22],[12,36,28],[13,12,5],[13,35,8],[13,46,14],[13,61,1],[14,8,12],[14,35,8],[14,47,2],[14,50,9],[15,2,10],[15,16,6],[15,36,6],[15,51,8],[16,0,12],[16,18,6],[16,36,5],[16,46,17],[17,0,6],[17,8,5],[17,18,8],[17,37,2],[17,44,21],[18,0,1],[18,7,7],[18,16,7],[18,24,4],[18,43,23],[19,0,3],[19,8,6],[19,16,7],[19,26,6],[19,42,25],[19,76,3],[20,0,3],[20,8,5],[20,16,7],[20,26,53],[21,0,3],[21,9,4],[21,17,5],[21,24,6],[21,33,44],[22,0,2],[22,9,3],[22,17,5],[22,24,7],[22,33,5],[22,42,26],[22,72,6],[23,0,2],[23,9,3],[23,18,3],[23,24,6],[23,32,7],[23,42,27],[23,72,6],[24,0,2],[24,9,2],[24,18,3],[24,25,5],[24,32,7],[24,42,27],[24,72,6],[25,0,1],[25,25,5],[25,33,5],[25,42,26],[25,73,4],[26,0,1],[26,25,4],[26,33,5],[26,42,26],[26,73,4],[27,26,3],[27,33,4],[27,41,26],[27,74,3],[28,26,2],[28,34,3],[28,41,26],[28,74,2],[29,34,2],[29,41,26],[29,74,2],[30,41,26]],[[2,50,7],[2,59,1],[3,40,1],[3,45,17],[4,37,5],[4,43,19],[5,36,27],[6,35,29],[7,35,28],[8,34,30],[9,38,26],[10,37,5],[10,43,22],[11,36,6],[11,43,22],[12,35,29],[13,11,6],[13,35,7],[13,45,16],[14,7,12],[14,35,7],[14,45,13],[15,2,9],[15,15,6],[15,35,6],[15,47,1],[15,50,9],[16,0,11],[16,18,5],[16,36,5],[16,46,17],[17,0,6],[17,8,5],[17,17,8],[17,37,2],[17,43,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,23],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,3],[20,8,5],[20,17,5],[20,25,54],[21,0,2],[21,8,4],[21,16,5],[21,24,6],[21,33,43],[22,0,2],[22,9,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,6],[23,0,1],[23,9,2],[23,17,4],[23,24,6],[23,32,6],[23,41,27],[23,71,6],[24,0,1],[24,9,2],[24,18,2],[24,24,5],[24,32,6],[24,41,27],[24,71,6],[25,0,1],[25,19,1],[25,24,5],[25,32,5],[25,41,26],[25,72,4],[26,25,3],[26,32,5],[26,41,26],[26,72,4],[27,25,3],[27,33,4],[27,41,25],[27,73,3],[28,26,2],[28,33,3],[28,40,26],[28,73,2],[29,34,2],[29,40,26],[29,74,1],[30,40,26]],[[2,51,1],[2,53,1],[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,29],[7,34,29],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,35,29],[13,11,6],[13,35,7],[13,45,14],[13,60,2],[14,7,11],[14,35,7],[14,45,2],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,23],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,32,43],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[23,0,1],[23,9,2],[23,18,2],[23,23,7],[23,31,7],[23,41,26],[23,71,6],[24,0,1],[24,9,2],[24,18,2],[24,24,5],[24,31,7],[24,41,26],[24,71,6],[25,24,5],[25,32,5],[25,41,26],[25,72,4],[26,25,3],[26,32,5],[26,41,25],[26,72,4],[27,25,3],[27,33,3],[27,41,25],[27,73,2],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[2,51,1],[2,53,1],[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,29],[7,34,29],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,35,29],[13,11,5],[13,35,7],[13,45,14],[13,60,2],[14,7,11],[14,35,7],[14,45,3],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,3],[17,43,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,23],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,32,43],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,18,2],[23,23,7],[23,31,7],[23,41,26],[23,71,6],[24,0,1],[24,9,2],[24,17,3],[24,24,5],[24,31,7],[24,41,26],[24,71,6],[25,24,5],[25,32,5],[25,41,26],[25,72,4],[26,25,3],[26,32,5],[26,41,25],[26,72,4],[27,25,3],[27,33,3],[27,41,25],[27,73,2],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[2,51,1],[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,29],[7,34,29],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,34,30],[13,11,5],[13,35,7],[13,45,14],[13,60,1],[14,7,11],[14,35,7],[14,45,2],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,3],[17,43,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,23],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,32,43],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,18,2],[23,23,6],[23,31,7],[23,41,26],[23,71,6],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,7],[24,41,27],[24,71,5],[25,24,5],[25,32,5],[25,41,26],[25,72,4],[26,25,3],[26,32,5],[26,41,25],[26,72,4],[27,25,3],[27,33,3],[27,41,25],[27,73,2],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[3,44,17],[4,37,5],[4,43,19],[5,35,27],[6,35,28],[7,34,29],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,34,30],[13,11,5],[13,35,7],[13,45,14],[13,60,1],[14,7,11],[14,35,7],[14,45,2],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,21],[18,7,6],[18,16,6],[18,23,4],[18,42,23],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,67,8],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,18,2],[23,23,6],[23,31,7],[23,41,26],[23,71,6],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,7],[24,41,27],[24,71,5],[25,24,5],[25,32,5],[25,41,26],[25,72,4],[26,25,3],[26,32,5],[26,41,25],[26,72,3],[27,25,3],[27,33,3],[27,40,26],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,28],[7,34,29],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,34,30],[13,11,5],[13,35,7],[13,45,14],[13,60,1],[14,7,11],[14,34,8],[14,45,2],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,21],[18,7,6],[18,16,6],[18,23,4],[18,42,22],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,25],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,67,8],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,18,2],[23,23,6],[23,31,7],[23,41,26],[23,71,6],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,7],[24,41,27],[24,71,5],[25,24,5],[25,32,5],[25,41,26],[25,71,5],[26,25,3],[26,32,5],[26,41,25],[26,72,3],[27,25,3],[27,33,3],[27,40,26],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,28],[7,34,28],[8,34,29],[9,38,27],[10,36,29],[11,35,29],[12,34,30],[13,11,5],[13,35,7],[13,45,14],[13,60,1],[14,7,12],[14,34,8],[14,46,2],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,22],[19,0,2],[19,7,6],[19,15,7],[19,25,6],[19,41,26],[19,68,1],[19,75,4],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,68,7],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,17,3],[23,23,6],[23,31,7],[23,41,27],[23,70,7],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,7],[24,41,26],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,5],[26,25,3],[26,32,5],[26,41,25],[26,72,3],[27,25,3],[27,33,3],[27,40,25],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,2],[29,34,1],[29,40,26],[29,73,1],[30,40,26]],[[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,35,28],[7,34,28],[8,34,29],[9,38,26],[10,36,29],[11,35,29],[12,34,30],[13,11,5],[13,34,8],[13,45,14],[14,7,12],[14,34,8],[14,46,12],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,4],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,22],[19,0,2],[19,7,6],[19,15,7],[19,25,7],[19,41,30],[19,74,5],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,71,4],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,9,2],[23,17,3],[23,23,6],[23,31,7],[23,41,27],[23,70,7],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,7],[24,41,26],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,5],[26,25,3],[26,32,5],[26,41,25],[26,72,3],[27,25,3],[27,33,3],[27,40,25],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,1],[29,40,25],[29,73,1],[30,40,25]],[[3,44,17],[4,37,5],[4,43,19],[5,35,28],[6,34,29],[7,34,28],[8,34,29],[9,38,26],[10,36,29],[11,35,29],[12,34,29],[13,11,5],[13,34,8],[13,45,14],[14,7,12],[14,34,8],[14,46,12],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,36,4],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,37,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,22],[19,0,2],[19,7,6],[19,15,7],[19,25,7],[19,41,30],[19,74,5],[20,0,2],[20,7,5],[20,16,6],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,26],[22,71,5],[22,78,1],[23,0,1],[23,8,3],[23,17,3],[23,23,6],[23,31,7],[23,41,27],[23,70,6],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,6],[24,41,26],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,5],[26,25,3],[26,32,5],[26,41,25],[26,72,3],[27,25,2],[27,33,3],[27,40,25],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,1],[29,33,1],[29,40,25],[29,73,1],[30,40,25]],[[2,57,1],[3,44,17],[4,37,5],[4,43,18],[5,35,27],[6,34,29],[7,34,28],[8,34,29],[9,38,26],[10,36,29],[11,35,6],[11,42,22],[12,34,29],[13,11,5],[13,34,8],[13,45,14],[14,7,11],[14,34,8],[14,46,12],[15,2,9],[15,15,6],[15,35,6],[15,50,8],[16,0,11],[16,17,6],[16,35,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,36,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,42,22],[19,0,2],[19,7,6],[19,15,7],[19,25,7],[19,41,30],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,4],[22,23,7],[22,32,5],[22,41,25],[22,70,6],[22,78,1],[23,0,1],[23,8,3],[23,17,3],[23,23,6],[23,31,7],[23,40,27],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,6],[24,41,26],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,4],[26,25,3],[26,32,4],[26,41,25],[26,72,3],[27,25,2],[27,33,3],[27,40,25],[27,72,3],[28,25,2],[28,33,3],[28,40,25],[28,73,1],[29,40,25],[29,73,1],[30,40,25]],[[3,44,16],[4,37,5],[4,43,18],[5,35,27],[6,34,29],[7,34,28],[8,34,29],[9,38,25],[10,36,5],[10,42,22],[11,35,6],[11,42,22],[12,34,29],[13,11,5],[13,34,8],[13,45,13],[14,7,11],[14,34,7],[14,45,13],[15,2,9],[15,15,6],[15,35,6],[15,49,9],[16,0,11],[16,17,6],[16,35,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,36,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,2],[19,7,6],[19,15,7],[19,25,7],[19,41,31],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,32,5],[22,41,25],[22,70,6],[22,78,1],[23,0,1],[23,8,3],[23,17,3],[23,23,6],[23,31,7],[23,40,28],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,6],[24,41,26],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,4],[26,25,3],[26,32,4],[26,41,25],[26,72,3],[27,25,2],[27,33,3],[27,40,25],[27,72,2],[28,26,1],[28,33,2],[28,40,25],[28,72,2],[29,34,1],[29,40,25],[30,40,25]],[[2,57,1],[3,44,16],[4,37,5],[4,43,18],[5,35,27],[6,34,29],[7,34,28],[8,33,30],[9,38,25],[10,36,5],[10,42,22],[11,35,6],[11,42,22],[12,34,28],[13,11,5],[13,34,8],[13,44,15],[14,7,11],[14,34,7],[14,45,13],[15,2,9],[15,15,6],[15,35,6],[15,49,9],[16,0,11],[16,17,6],[16,35,5],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,36,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,2],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,6],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,24,5],[21,33,33],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,32,5],[22,41,26],[22,70,6],[22,78,1],[23,0,1],[23,8,3],[23,17,3],[23,23,6],[23,31,7],[23,40,27],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,3],[24,24,5],[24,31,6],[24,41,25],[24,71,5],[25,24,4],[25,32,5],[25,41,25],[25,71,4],[26,25,3],[26,32,4],[26,40,25],[26,71,4],[27,25,2],[27,33,3],[27,40,25],[27,72,2],[28,26,1],[28,33,2],[28,40,25],[28,72,2],[29,33,2],[29,40,25],[30,40,25]],[[3,44,16],[4,37,4],[4,43,18],[5,35,27],[6,34,29],[7,34,28],[8,33,30],[9,38,25],[10,36,5],[10,42,22],[11,35,6],[11,42,22],[12,34,7],[12,42,20],[13,11,5],[13,34,8],[13,44,16],[14,7,11],[14,34,7],[14,45,3],[14,49,9],[15,2,9],[15,15,6],[15,35,6],[15,46,2],[15,49,9],[16,0,11],[16,17,6],[16,36,4],[16,45,17],[17,0,5],[17,7,5],[17,17,8],[17,36,2],[17,43,20],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,2],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,6],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,23,6],[21,33,32],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,32,5],[22,41,25],[22,70,6],[22,78,1],[23,0,1],[23,8,3],[23,17,3],[23,23,6],[23,31,7],[23,40,27],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,2],[24,24,5],[24,31,6],[24,41,25],[24,70,5],[25,24,4],[25,32,5],[25,41,25],[25,71,4],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,25],[27,72,2],[28,26,1],[28,33,2],[28,40,25],[28,72,2],[29,34,1],[29,40,25],[30,40,25]],[[3,44,16],[4,37,4],[4,43,18],[5,35,27],[6,34,28],[7,33,29],[8,33,30],[9,38,26],[10,36,28],[11,35,6],[11,42,21],[12,34,7],[12,42,20],[13,11,5],[13,34,8],[13,44,16],[14,7,11],[14,34,7],[14,45,3],[14,49,8],[15,2,9],[15,15,6],[15,34,7],[15,46,2],[15,49,9],[16,0,11],[16,17,6],[16,36,4],[16,44,18],[17,0,5],[17,7,5],[17,17,8],[17,37,1],[17,42,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,2],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,5],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,23,6],[21,33,32],[21,71,4],[21,78,1],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,32,5],[22,41,25],[22,70,6],[22,77,2],[23,0,1],[23,9,2],[23,17,3],[23,23,6],[23,31,7],[23,40,27],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,2],[24,24,5],[24,31,6],[24,41,25],[24,70,5],[24,78,1],[25,24,4],[25,32,5],[25,41,25],[25,71,4],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,25],[27,72,2],[28,26,1],[28,33,2],[28,40,25],[28,72,2],[29,34,1],[29,40,26],[30,39,26]],[[3,44,16],[4,37,4],[4,43,18],[5,35,27],[6,34,28],[7,33,29],[8,33,30],[9,37,27],[10,36,28],[11,35,6],[11,42,21],[12,34,7],[12,42,20],[13,11,5],[13,34,7],[13,44,14],[13,59,2],[14,7,12],[14,34,7],[14,45,3],[14,49,8],[15,2,9],[15,15,6],[15,34,6],[15,46,2],[15,49,8],[16,0,11],[16,17,6],[16,36,4],[16,44,18],[17,0,5],[17,7,5],[17,17,8],[17,37,1],[17,42,21],[18,0,1],[18,7,6],[18,15,7],[18,23,4],[18,41,23],[19,0,2],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,5],[19,74,5],[20,0,2],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,23,6],[21,33,32],[21,70,5],[21,77,2],[22,0,2],[22,8,3],[22,17,3],[22,23,6],[22,31,6],[22,41,25],[22,70,5],[22,77,2],[23,0,1],[23,9,2],[23,17,3],[23,23,6],[23,31,6],[23,40,27],[23,70,6],[23,78,1],[24,0,1],[24,9,1],[24,17,2],[24,24,5],[24,31,6],[24,41,25],[24,70,5],[24,78,1],[25,24,4],[25,32,5],[25,40,25],[25,71,4],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,24],[27,72,2],[28,26,1],[28,33,2],[28,40,25],[28,72,1],[29,33,2],[29,39,27],[30,39,27]],[[3,44,16],[4,37,4],[4,43,18],[5,35,27],[6,34,28],[7,33,28],[8,33,29],[9,37,27],[10,36,28],[11,35,6],[11,42,21],[12,34,7],[12,42,21],[13,11,6],[13,34,7],[13,44,14],[14,7,11],[14,34,7],[14,44,4],[14,49,8],[15,1,10],[15,15,6],[15,34,6],[15,46,1],[15,49,8],[15,58,1],[16,0,7],[16,8,3],[16,17,6],[16,36,4],[16,44,18],[17,0,5],[17,7,5],[17,17,8],[17,36,2],[17,42,21],[18,0,1],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,3],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,6],[19,74,5],[20,0,3],[20,7,5],[20,16,5],[20,25,54],[21,0,2],[21,8,4],[21,17,4],[21,23,6],[21,33,6],[21,41,24],[21,70,4],[21,77,2],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,31,6],[22,40,26],[22,70,5],[22,77,2],[23,0,1],[23,9,2],[23,17,3],[23,23,6],[23,31,6],[23,40,27],[23,70,5],[23,78,1],[24,0,1],[24,9,1],[24,17,2],[24,24,5],[24,31,6],[24,41,25],[24,70,5],[24,78,1],[25,24,4],[25,32,5],[25,40,25],[25,71,3],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,24],[27,71,3],[28,26,1],[28,33,2],[28,40,25],[28,72,1],[29,34,1],[29,39,26],[30,39,26]],[[2,55,1],[3,44,15],[4,36,5],[4,42,18],[5,34,27],[6,33,29],[7,32,29],[8,33,30],[9,37,26],[10,36,27],[11,35,5],[11,41,22],[12,33,29],[13,11,6],[13,34,7],[13,44,14],[14,7,12],[14,34,7],[14,45,12],[15,1,10],[15,15,6],[15,34,6],[15,46,1],[15,49,8],[15,58,1],[16,0,7],[16,8,4],[16,18,6],[16,35,5],[16,44,18],[17,0,5],[17,7,6],[17,17,8],[17,36,2],[17,42,21],[18,0,2],[18,7,6],[18,16,6],[18,23,4],[18,41,23],[19,0,3],[19,7,6],[19,15,7],[19,25,8],[19,40,25],[19,66,13],[20,0,3],[20,8,4],[20,17,4],[20,25,54],[21,0,2],[21,8,4],[21,16,5],[21,23,6],[21,33,5],[21,41,24],[21,70,4],[21,77,2],[22,0,2],[22,8,3],[22,17,3],[22,23,7],[22,31,6],[22,40,26],[22,69,6],[22,77,2],[23,0,1],[23,9,2],[23,18,2],[23,23,6],[23,31,7],[23,40,27],[23,70,5],[23,78,1],[24,0,1],[24,9,1],[24,17,2],[24,24,5],[24,31,6],[24,41,25],[24,70,5],[24,78,1],[25,24,4],[25,32,5],[25,40,25],[25,70,4],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,24],[27,71,2],[28,26,1],[28,33,2],[28,39,25],[28,72,1],[29,34,1],[29,39,25],[30,39,25]],[[3,43,15],[4,35,24],[5,33,28],[6,32,29],[7,32,29],[8,34,29],[9,37,26],[10,35,27],[11,33,7],[11,41,21],[12,32,9],[12,42,20],[13,11,6],[13,34,7],[13,43,14],[13,58,1],[14,7,13],[14,34,7],[14,43,13],[15,1,11],[15,16,5],[15,34,6],[15,48,9],[15,58,1],[16,0,7],[16,8,4],[16,18,6],[16,35,5],[16,44,18],[17,0,5],[17,8,5],[17,17,9],[17,36,3],[17,42,21],[18,0,2],[18,7,6],[18,15,7],[18,24,4],[18,41,23],[19,0,3],[19,7,6],[19,16,6],[19,26,7],[19,38,1],[19,40,39],[20,0,3],[20,8,4],[20,17,5],[20,25,52],[20,78,1],[21,0,3],[21,8,4],[21,16,5],[21,24,6],[21,33,5],[21,41,24],[21,70,5],[21,77,2],[22,0,2],[22,9,2],[22,17,3],[22,23,7],[22,31,6],[22,41,25],[22,69,6],[22,77,2],[23,0,1],[23,8,3],[23,17,3],[23,24,5],[23,31,7],[23,40,27],[23,70,5],[23,78,1],[24,0,1],[24,17,2],[24,24,5],[24,32,5],[24,41,25],[24,70,5],[24,78,1],[25,24,4],[25,32,5],[25,40,25],[25,70,4],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,24],[27,71,2],[28,33,2],[28,39,25],[28,72,1],[29,39,25],[30,39,25]],[[3,38,1],[3,42,16],[4,34,25],[5,33,27],[6,32,28],[7,32,28],[8,36,28],[9,36,27],[10,35,26],[11,32,28],[12,15,1],[12,32,29],[13,11,7],[13,34,7],[13,42,14],[13,57,1],[14,7,13],[14,33,8],[14,44,12],[15,0,12],[15,16,6],[15,34,6],[15,48,11],[16,0,7],[16,8,5],[16,18,6],[16,35,5],[16,44,18],[17,0,2],[17,3,1],[17,8,6],[17,17,9],[17,36,2],[17,42,21],[18,0,3],[18,8,6],[18,16,6],[18,24,4],[18,41,23],[18,77,1],[19,0,3],[19,8,5],[19,16,6],[19,26,7],[19,38,1],[19,40,39],[20,0,4],[20,8,5],[20,16,6],[20,25,50],[20,78,1],[21,0,3],[21,9,3],[21,17,4],[21,24,6],[21,33,4],[21,40,25],[21,70,5],[21,77,2],[22,0,2],[22,9,2],[22,18,3],[22,23,7],[22,32,6],[22,41,25],[22,69,6],[22,77,2],[23,0,2],[23,9,2],[23,17,3],[23,24,5],[23,31,7],[23,41,26],[23,70,5],[23,78,1],[24,0,1],[24,18,1],[24,24,5],[24,32,5],[24,41,25],[24,70,5],[24,78,1],[25,25,3],[25,32,5],[25,40,25],[25,70,4],[25,78,1],[26,25,3],[26,32,4],[26,40,25],[26,71,3],[27,25,2],[27,33,3],[27,40,24],[27,71,2],[28,33,2],[28,39,25],[29,39,25],[30,39,25]],[[3,37,20],[4,34,24],[5,32,27],[6,32,27],[7,33,27],[8,36,28],[9,36,28],[10,32,28],[11,30,30],[12,15,2],[12,30,2],[12,34,26],[13,11,8],[13,33,26],[14,6,14],[14,33,7],[14,44,12],[15,0,13],[15,17,6],[15,34,6],[15,48,11],[16,0,7],[16,9,4],[16,18,7],[16,35,4],[16,44,18],[17,0,3],[17,8,6],[17,17,5],[17,23,4],[17,36,2],[17,42,21],[18,0,3],[18,8,6],[18,16,7],[18,25,4],[18,41,22],[18,76,3],[19,0,4],[19,8,6],[19,16,7],[19,26,9],[19,38,1],[19,40,39],[20,0,4],[20,9,4],[20,17,5],[20,25,49],[20,78,1],[21,0,3],[21,9,3],[21,18,3],[21,24,6],[21,34,3],[21,41,25],[21,70,5],[21,77,2],[22,0,3],[22,9,3],[22,17,4],[22,24,6],[22,32,6],[22,41,25],[22,69,6],[22,77,2],[23,0,2],[23,9,2],[23,17,3],[23,24,6],[23,32,6],[23,41,26],[23,70,5],[23,78,1],[24,0,1],[24,24,5],[24,32,6],[24,41,25],[24,70,4],[24,78,1],[25,0,1],[25,25,3],[25,32,5],[25,40,25],[25,70,4],[25,78,1],[26,25,3],[26,33,3],[26,40,25],[26,71,2],[27,25,2],[27,33,3],[27,40,24],[27,71,2],[28,33,2],[28,39,25],[29,39,25],[30,39,25]],[[2,45,7],[3,36,21],[4,34,25],[5,33,27],[6,33,26],[7,36,25],[8,36,29],[9,34,30],[10,30,31],[11,30,29],[12,15,3],[12,34,26],[13,11,9],[13,33,8],[13,42,15],[14,6,15],[14,33,7],[14,43,13],[15,0,13],[15,18,6],[15,34,6],[15,48,11],[16,0,8],[16,10,4],[16,19,7],[16,35,3],[16,44,17],[17,0,3],[17,9,6],[17,18,5],[17,24,3],[17,42,20],[18,0,4],[18,9,6],[18,17,6],[18,25,4],[18,41,22],[18,75,4],[19,0,5],[19,9,5],[19,17,6],[19,26,9],[19,37,2],[19,40,39],[20,0,4],[20,9,4],[20,17,5],[20,25,49],[20,77,2],[21,0,4],[21,9,3],[21,17,5],[21,24,7],[21,34,4],[21,40,26],[21,70,5],[21,77,2],[22,0,3],[22,10,2],[22,18,3],[22,24,7],[22,32,6],[22,41,26],[22,69,6],[22,77,2],[23,0,2],[23,9,2],[23,18,2],[23,24,6],[23,32,7],[23,41,26],[23,70,5],[23,78,1],[24,0,1],[24,25,4],[24,32,6],[24,41,25],[24,70,4],[24,78,1],[25,0,1],[25,25,4],[25,33,4],[25,40,25],[25,71,3],[25,78,1],[26,25,3],[26,33,3],[26,40,24],[26,71,2],[27,26,1],[27,33,3],[27,40,24],[27,71,2],[28,33,2],[28,39,25],[29,39,26],[30,39,25]],[[2,42,12],[3,37,21],[4,36,24],[5,35,25],[6,35,25],[7,38,23],[8,35,31],[9,31,34],[10,30,32],[11,34,27],[12,15,3],[12,34,26],[13,11,10],[13,34,7],[13,43,14],[14,5,10],[14,17,5],[14,34,6],[14,44,1],[14,46,10],[15,0,14],[15,19,5],[15,34,4],[15,48,11],[16,0,8],[16,10,5],[16,19,7],[16,36,1],[16,44,17],[17,1,4],[17,9,6],[17,18,10],[17,42,20],[18,0,5],[18,9,6],[18,17,7],[18,26,4],[18,41,22],[18,69,1],[18,74,5],[19,0,5],[19,9,5],[19,17,6],[19,27,8],[19,38,1],[19,40,39],[20,0,5],[20,10,4],[20,18,5],[20,26,48],[20,77,2],[21,0,4],[21,10,3],[21,18,4],[21,24,7],[21,34,4],[21,41,25],[21,70,5],[21,77,2],[22,0,3],[22,9,3],[22,18,3],[22,25,6],[22,32,7],[22,41,25],[22,70,5],[22,77,2],[23,0,2],[23,10,1],[23,18,2],[23,25,5],[23,32,7],[23,41,26],[23,70,5],[23,78,1],[24,0,2],[24,25,4],[24,33,5],[24,41,25],[24,70,4],[24,78,1],[25,25,4],[25,33,4],[25,40,25],[25,71,3],[25,78,1],[26,25,3],[26,33,4],[26,40,24],[26,71,2],[27,33,3],[27,40,24],[27,71,2],[28,34,1],[28,39,25],[29,39,25],[30,38,26]],[[2,43,12],[3,40,19],[4,39,21],[5,38,23],[6,38,22],[7,37,24],[8,33,32],[9,31,34],[10,32,31],[11,34,27],[12,15,4],[12,35,25],[13,11,11],[13,34,7],[13,43,14],[14,5,10],[14,18,5],[14,34,6],[14,43,1],[14,46,10],[15,0,15],[15,20,5],[15,36,2],[15,48,11],[16,0,5],[16,6,2],[16,11,5],[16,19,8],[16,44,17],[17,1,5],[17,10,6],[17,18,6],[17,25,4],[17,42,20],[18,0,6],[18,10,6],[18,18,6],[18,27,4],[18,41,22],[18,68,2],[18,71,1],[18,74,5],[19,0,6],[19,10,5],[19,18,6],[19,27,8],[19,38,1],[19,40,39],[20,0,5],[20,10,4],[20,18,5],[20,26,5],[20,32,42],[20,77,2],[21,0,5],[21,10,3],[21,18,4],[21,25,6],[21,34,5],[21,41,25],[21,70,5],[21,77,2],[22,0,4],[22,10,2],[22,18,3],[22,25,6],[22,33,6],[22,41,25],[22,70,5],[22,77,2],[23,0,3],[23,18,3],[23,25,5],[23,33,6],[23,41,26],[23,70,5],[23,78,1],[24,1,1],[24,25,5],[24,33,5],[24,41,25],[24,70,4],[24,78,1],[25,26,3],[25,33,5],[25,40,25],[25,71,3],[25,78,1],[26,26,2],[26,33,4],[26,40,24],[26,71,2],[27,34,2],[27,40,24],[27,71,2],[28,35,1],[28,39,24],[29,39,24],[30,38,26]],[[1,48,1],[1,50,1],[2,43,13],[3,41,18],[4,39,21],[5,38,23],[6,38,23],[7,35,26],[8,33,32],[9,33,33],[10,33,30],[11,34,1],[11,36,26],[12,15,5],[12,36,24],[13,11,11],[13,36,6],[13,43,12],[13,56,2],[14,3,12],[14,19,5],[14,35,5],[14,47,8],[15,0,11],[15,12,4],[15,21,5],[15,36,3],[15,48,11],[16,0,2],[16,3,3],[16,11,5],[16,20,8],[16,44,17],[17,2,5],[17,10,7],[17,19,6],[17,26,3],[17,42,20],[18,1,6],[18,11,5],[18,18,7],[18,27,5],[18,41,22],[18,67,5],[18,74,5],[19,1,6],[19,11,4],[19,18,6],[19,28,8],[19,38,1],[19,40,39],[20,1,5],[20,11,3],[20,18,5],[20,26,6],[20,33,33],[20,67,2],[20,71,3],[20,77,2],[21,1,4],[21,11,2],[21,19,4],[21,25,7],[21,35,4],[21,41,25],[21,70,5],[21,77,2],[22,1,3],[22,10,3],[22,19,3],[22,25,7],[22,33,6],[22,41,26],[22,70,5],[22,78,1],[23,1,2],[23,19,2],[23,26,5],[23,33,6],[23,41,26],[23,70,5],[23,78,1],[24,1,1],[24,26,4],[24,33,6],[24,41,25],[24,70,4],[24,78,1],[25,26,3],[25,33,5],[25,40,25],[25,71,2],[26,26,2],[26,34,3],[26,40,24],[26,71,2],[27,34,2],[27,40,24],[27,71,1],[28,39,24],[29,39,24],[30,38,26]],[[1,48,1],[1,50,1],[1,52,1],[2,43,14],[3,41,19],[4,40,21],[5,39,23],[6,38,24],[7,34,27],[8,35,28],[9,34,31],[10,33,30],[10,64,1],[11,38,25],[12,15,6],[12,38,22],[13,10,13],[13,37,22],[14,2,14],[14,20,5],[14,36,6],[14,46,9],[15,0,11],[15,12,5],[15,22,5],[15,37,3],[15,48,11],[16,0,2],[16,3,4],[16,11,6],[16,20,8],[16,44,17],[17,3,5],[17,11,6],[17,19,6],[17,26,4],[17,42,20],[18,2,6],[18,11,6],[18,19,6],[18,28,5],[18,41,22],[18,65,6],[18,73,6],[19,2,5],[19,11,5],[19,19,5],[19,28,9],[19,40,39],[20,2,4],[20,11,4],[20,19,5],[20,26,6],[20,34,32],[20,71,4],[20,77,2],[21,2,4],[21,11,3],[21,19,4],[21,26,6],[21,35,4],[21,41,26],[21,70,5],[21,77,2],[22,2,3],[22,11,2],[22,19,3],[22,26,6],[22,33,7],[22,41,26],[22,70,5],[22,78,1],[23,2,2],[23,19,2],[23,26,5],[23,33,7],[23,41,25],[23,70,5],[23,78,1],[24,26,4],[24,34,5],[24,41,25],[24,70,4],[24,78,1],[25,26,4],[25,34,4],[25,40,25],[25,71,2],[26,26,3],[26,34,3],[26,40,24],[26,71,2],[27,34,3],[27,40,24],[27,71,1],[28,39,24],[29,38,25],[30,38,26]],[[1,53,1],[2,44,13],[3,41,19],[4,40,21],[5,39,23],[6,37,25],[7,35,26],[8,36,26],[9,34,32],[10,34,32],[11,39,24],[12,15,7],[12,39,21],[13,10,13],[13,38,22],[14,0,17],[14,20,5],[14,38,8],[14,47,8],[15,0,11],[15,13,4],[15,22,5],[15,39,4],[15,48,11],[16,0,1],[16,4,4],[16,12,6],[16,21,8],[16,44,17],[17,3,6],[17,12,6],[17,20,6],[17,27,3],[17,42,20],[17,78,1],[18,3,6],[18,12,5],[18,19,7],[18,29,4],[18,41,22],[18,65,7],[18,74,5],[19,3,5],[19,12,4],[19,19,6],[19,28,10],[19,40,39],[20,3,4],[20,12,3],[20,19,5],[20,26,6],[20,35,31],[20,71,4],[20,77,2],[21,3,3],[21,11,3],[21,20,3],[21,26,7],[21,35,4],[21,41,26],[21,70,5],[21,77,2],[22,3,2],[22,11,2],[22,20,2],[22,26,6],[22,34,6],[22,41,26],[22,70,5],[22,78,1],[23,3,1],[23,20,2],[23,26,5],[23,34,6],[23,41,25],[23,70,5],[23,78,1],[24,27,4],[24,34,5],[24,40,26],[24,71,3],[24,78,1],[25,27,3],[25,34,4],[25,40,25],[25,71,2],[26,27,2],[26,34,4],[26,40,25],[26,71,2],[27,28,1],[27,34,3],[27,40,24],[27,71,1],[28,39,24],[29,38,25],[30,38,25]],[[1,48,1],[2,44,14],[3,41,19],[4,40,21],[5,39,23],[6,36,26],[7,36,25],[8,37,25],[9,34,31],[10,34,32],[11,40,23],[12,15,7],[12,42,19],[13,10,14],[13,41,18],[14,0,17],[14,21,5],[14,40,8],[14,49,6],[15,0,11],[15,14,4],[15,22,6],[15,41,4],[15,47,12],[16,5,3],[16,12,6],[16,21,8],[16,44,17],[17,3,6],[17,12,6],[17,20,6],[17,27,4],[17,42,20],[17,78,1],[18,3,6],[18,12,5],[18,20,6],[18,29,5],[18,41,22],[18,65,7],[18,73,6],[19,3,5],[19,13,3],[19,20,5],[19,28,11],[19,40,39],[20,3,4],[20,13,3],[20,20,4],[20,27,6],[20,35,31],[20,70,5],[20,77,2],[21,3,4],[21,12,3],[21,20,4],[21,26,7],[21,35,4],[21,41,26],[21,70,5],[21,77,2],[22,3,3],[22,13,1],[22,20,3],[22,27,5],[22,34,6],[22,41,26],[22,70,5],[22,78,1],[23,3,2],[23,20,2],[23,27,5],[23,34,6],[23,41,25],[23,70,4],[23,78,1],[24,27,4],[24,34,5],[24,40,26],[24,71,3],[24,78,1],[25,27,3],[25,34,5],[25,40,25],[25,71,2],[26,27,2],[26,35,3],[26,40,25],[26,71,2],[27,35,2],[27,40,22],[27,63,1],[28,39,24],[29,38,25],[30,38,24]],[[1,47,2],[1,54,1],[2,44,14],[3,41,19],[4,40,21],[5,39,23],[6,36,27],[7,38,23],[8,36,26],[9,34,31],[10,35,31],[11,20,1],[11,40,22],[12,15,7],[12,43,18],[13,10,15],[13,43,12],[13,56,4],[14,0,17],[14,21,5],[14,43,12],[15,0,12],[15,14,4],[15,22,6],[15,45,14],[16,5,4],[16,13,5],[16,21,8],[16,44,17],[17,4,5],[17,13,5],[17,20,6],[17,28,3],[17,42,20],[17,77,2],[18,0,1],[18,4,5],[18,13,5],[18,20,6],[18,29,5],[18,41,22],[18,65,14],[19,4,5],[19,13,4],[19,20,5],[19,28,11],[19,40,36],[19,78,1],[20,4,4],[20,13,3],[20,20,5],[20,27,6],[20,35,31],[20,70,4],[20,77,2],[21,4,3],[21,13,2],[21,21,3],[21,27,6],[21,35,5],[21,41,26],[21,70,5],[21,77,2],[22,4,2],[22,14,1],[22,21,2],[22,27,6],[22,34,6],[22,41,26],[22,70,5],[22,78,1],[23,4,1],[23,22,1],[23,27,5],[23,34,6],[23,41,25],[23,70,4],[23,78,1],[24,27,4],[24,34,5],[24,40,26],[24,71,3],[24,78,1],[25,27,4],[25,35,4],[25,40,25],[25,71,2],[26,28,2],[26,35,3],[26,40,22],[26,63,2],[26,71,2],[27,35,3],[27,40,22],[27,63,1],[28,35,1],[28,39,23],[29,38,25],[30,38,25]],[[1,47,2],[1,50,1],[1,54,1],[2,44,14],[3,41,19],[4,40,21],[5,39,24],[6,37,26],[7,38,23],[8,36,26],[9,34,31],[10,35,3],[10,39,27],[11,20,1],[11,40,22],[12,15,7],[12,43,18],[13,10,14],[13,44,11],[13,56,4],[14,0,17],[14,21,5],[14,46,9],[15,0,12],[15,14,4],[15,22,6],[15,46,13],[16,5,4],[16,13,6],[16,21,8],[16,44,17],[17,4,5],[17,13,6],[17,20,6],[17,28,3],[17,42,20],[17,77,2],[18,0,1],[18,4,6],[18,13,5],[18,20,6],[18,29,5],[18,41,22],[18,65,14],[19,4,5],[19,13,4],[19,20,6],[19,28,47],[19,77,2],[20,4,4],[20,14,2],[20,21,4],[20,27,6],[20,35,31],[20,70,4],[20,77,2],[21,4,3],[21,13,3],[21,21,3],[21,27,6],[21,35,5],[21,41,25],[21,69,6],[21,77,2],[22,5,2],[22,13,2],[22,21,3],[22,27,6],[22,34,6],[22,41,26],[22,70,5],[22,77,2],[23,5,1],[23,21,2],[23,27,5],[23,34,6],[23,41,25],[23,70,4],[23,78,1],[24,28,4],[24,35,31],[24,71,3],[24,78,1],[25,28,3],[25,35,4],[25,40,25],[25,71,2],[26,28,2],[26,35,4],[26,40,22],[26,63,2],[26,71,2],[27,35,3],[27,40,22],[27,63,1],[28,39,23],[29,38,24],[30,38,25]],[[1,54,1],[2,44,14],[3,41,19],[4,40,21],[5,38,24],[6,37,26],[7,38,23],[8,36,26],[9,34,31],[10,35,3],[10,39,27],[11,40,22],[12,15,7],[12,43,18],[13,10,15],[13,44,11],[13,56,4],[14,0,17],[14,21,5],[14,43,1],[14,48,7],[15,0,12],[15,14,4],[15,22,6],[15,47,12],[16,5,4],[16,13,6],[16,21,8],[16,44,16],[17,4,6],[17,12,7],[17,20,7],[17,28,3],[17,42,19],[17,76,3],[18,0,1],[18,4,6],[18,13,5],[18,20,6],[18,29,5],[18,41,22],[18,65,14],[19,4,5],[19,14,3],[19,21,5],[19,29,46],[19,77,2],[20,4,4],[20,13,4],[20,22,3],[20,27,6],[20,35,31],[20,70,4],[20,77,2],[21,5,3],[21,14,2],[21,21,4],[21,27,6],[21,35,5],[21,41,25],[21,69,6],[21,77,2],[22,5,2],[22,15,1],[22,22,2],[22,27,6],[22,34,6],[22,41,25],[22,70,5],[22,77,2],[23,5,2],[23,23,1],[23,28,4],[23,34,6],[23,41,25],[23,70,4],[23,78,1],[24,28,4],[24,35,31],[24,71,3],[24,78,1],[25,28,3],[25,35,4],[25,40,25],[25,71,2],[26,29,2],[26,35,4],[26,40,22],[26,63,2],[26,71,2],[27,36,2],[27,40,22],[28,36,2],[28,39,23],[29,38,25],[30,38,25]],[[1,54,1],[2,44,14],[3,41,19],[4,40,21],[5,38,24],[6,37,25],[7,38,23],[8,36,26],[9,34,30],[10,35,3],[10,39,26],[11,40,22],[12,15,7],[12,43,17],[13,10,14],[13,43,15],[14,0,17],[14,21,5],[14,47,1],[14,49,7],[15,0,12],[15,14,4],[15,22,6],[15,47,12],[16,5,3],[16,13,6],[16,21,8],[16,44,16],[17,4,5],[17,12,7],[17,20,7],[17,28,3],[17,42,19],[17,76,3],[18,0,1],[18,4,6],[18,13,5],[18,20,6],[18,29,5],[18,41,22],[18,65,14],[19,4,5],[19,14,4],[19,21,5],[19,29,45],[19,77,2],[20,5,4],[20,14,3],[20,21,5],[20,27,6],[20,35,30],[20,70,4],[20,76,3],[21,5,3],[21,14,3],[21,22,3],[21,27,6],[21,36,4],[21,41,25],[21,69,6],[21,77,2],[22,6,2],[22,15,1],[22,22,3],[22,27,6],[22,34,33],[22,70,4],[22,77,2],[23,6,1],[23,22,2],[23,28,5],[23,35,31],[23,70,4],[23,78,1],[24,28,4],[24,35,26],[24,62,3],[24,71,2],[24,78,1],[25,29,3],[25,35,4],[25,40,22],[25,63,2],[25,71,2],[26,29,2],[26,36,3],[26,40,22],[26,63,2],[26,72,1],[27,30,1],[27,36,2],[27,40,22],[28,39,23],[29,38,25],[30,38,24]],[[1,48,1],[1,52,1],[1,54,1],[2,43,15],[3,41,19],[4,40,21],[5,37,25],[6,37,25],[7,38,23],[8,35,26],[9,34,30],[10,35,2],[10,39,26],[11,19,1],[11,40,22],[12,15,7],[12,42,18],[13,10,14],[13,43,15],[14,0,17],[14,21,4],[14,45,2],[14,48,9],[15,0,12],[15,14,4],[15,22,6],[15,46,13],[16,0,1],[16,5,3],[16,13,6],[16,21,8],[16,43,17],[17,4,5],[17,13,6],[17,20,11],[17,42,19],[17,75,4],[18,4,5],[18,13,5],[18,20,6],[18,29,5],[18,41,22],[18,65,14],[19,4,5],[19,14,4],[19,21,5],[19,29,44],[19,77,2],[20,5,4],[20,15,2],[20,22,4],[20,27,6],[20,35,30],[20,69,5],[20,76,3],[21,5,3],[21,15,2],[21,22,3],[21,27,6],[21,36,30],[21,69,5],[21,77,2],[22,6,2],[22,16,1],[22,23,2],[22,27,6],[22,34,33],[22,69,5],[22,77,2],[23,7,1],[23,24,1],[23,28,5],[23,35,31],[23,70,4],[23,78,1],[24,28,4],[24,35,26],[24,62,3],[24,71,2],[24,78,1],[25,29,3],[25,36,25],[25,63,3],[25,71,2],[26,29,3],[26,36,3],[26,40,22],[26,63,2],[26,72,1],[27,36,3],[27,40,23],[28,38,25],[29,38,25],[30,38,24]],[[1,46,1],[1,48,1],[2,43,15],[3,41,19],[4,40,21],[5,37,25],[6,38,24],[7,38,23],[8,35,26],[9,34,30],[10,35,1],[10,38,27],[11,19,1],[11,40,22],[12,15,7],[12,43,17],[13,10,8],[13,19,4],[13,43,16],[14,0,16],[14,20,5],[14,48,9],[15,0,12],[15,13,5],[15,22,5],[15,46,13],[16,0,1],[16,4,4],[16,13,6],[16,21,8],[16,43,17],[16,78,1],[17,3,6],[17,13,6],[17,20,11],[17,42,19],[17,75,4],[18,3,6],[18,13,5],[18,20,7],[18,29,5],[18,41,21],[18,65,14],[19,4,5],[19,14,4],[19,21,5],[19,29,44],[19,76,3],[20,5,4],[20,15,3],[20,22,4],[20,27,6],[20,35,30],[20,69,5],[20,76,3],[21,6,3],[21,15,2],[21,23,3],[21,27,7],[21,36,30],[21,69,5],[21,77,2],[22,6,2],[22,16,1],[22,23,2],[22,28,5],[22,35,31],[22,69,5],[22,77,2],[23,7,1],[23,23,2],[23,28,5],[23,35,31],[23,70,4],[23,78,1],[24,29,4],[24,35,26],[24,62,3],[24,71,2],[24,78,1],[25,29,3],[25,36,3],[25,41,20],[25,63,3],[25,71,2],[26,30,2],[26,36,25],[26,63,2],[27,37,2],[27,40,22],[28,37,26],[29,38,24],[30,38,23]],[[1,46,1],[1,48,1],[1,52,1],[1,55,1],[2,43,15],[3,41,19],[4,39,22],[5,37,25],[6,38,24],[7,38,23],[8,35,26],[9,33,31],[10,38,27],[11,40,21],[12,15,7],[12,43,17],[13,10,13],[13,42,17],[14,0,16],[14,20,5],[14,42,1],[14,48,9],[15,0,11],[15,12,5],[15,22,5],[15,46,13],[16,0,2],[16,4,4],[16,13,6],[16,21,8],[16,43,17],[16,78,1],[17,3,6],[17,13,5],[17,20,11],[17,41,20],[17,74,5],[18,3,6],[18,13,5],[18,20,7],[18,29,4],[18,40,22],[18,64,15],[19,4,5],[19,14,4],[19,22,4],[19,29,44],[19,76,3],[20,5,4],[20,15,3],[20,22,4],[20,27,6],[20,35,30],[20,69,5],[20,76,3],[21,6,3],[21,16,2],[21,23,3],[21,27,7],[21,36,30],[21,69,5],[21,76,3],[22,7,2],[22,23,3],[22,28,5],[22,35,31],[22,69,5],[22,77,2],[23,28,5],[23,35,30],[23,70,3],[23,78,1],[24,29,4],[24,35,26],[24,62,3],[24,70,3],[24,78,1],[25,30,2],[25,36,3],[25,41,20],[25,63,2],[25,71,2],[26,30,2],[26,36,25],[26,63,2],[27,37,25],[28,39,23],[29,38,24],[30,38,24]],[[1,46,1],[1,48,1],[1,50,1],[1,55,1],[2,43,15],[3,41,18],[4,39,22],[5,37,25],[6,38,24],[7,38,23],[8,35,26],[9,33,30],[10,38,27],[11,42,19],[12,15,6],[12,42,18],[13,10,13],[13,43,16],[14,0,16],[14,20,5],[14,42,1],[14,48,8],[15,0,11],[15,12,5],[15,22,5],[15,45,14],[16,0,2],[16,4,3],[16,13,5],[16,21,8],[16,43,17],[16,78,1],[17,3,6],[17,12,6],[17,20,10],[17,41,20],[17,74,5],[18,3,6],[18,13,5],[18,20,7],[18,29,4],[18,40,22],[18,63,16],[19,4,5],[19,14,4],[19,22,4],[19,29,9],[19,39,34],[19,76,3],[20,5,4],[20,15,3],[20,22,4],[20,28,5],[20,34,31],[20,69,5],[20,76,3],[21,6,3],[21,16,2],[21,23,3],[21,27,7],[21,36,30],[21,69,5],[21,76,3],[22,7,2],[22,17,1],[22,24,2],[22,28,5],[22,35,31],[22,69,5],[22,77,2],[23,25,1],[23,28,5],[23,35,30],[23,70,3],[23,78,1],[24,29,4],[24,35,26],[24,62,4],[24,70,3],[24,78,1],[25,30,3],[25,36,25],[25,63,2],[25,71,2],[26,30,2],[26,37,24],[26,63,1],[27,37,24],[28,38,24],[29,38,24],[30,38,24]],[[1,46,1],[1,48,1],[1,50,1],[1,54,2],[2,43,14],[3,40,19],[4,39,21],[5,37,24],[6,38,24],[7,38,22],[8,34,27],[9,33,31],[10,38,27],[11,42,19],[12,15,6],[12,42,17],[13,10,13],[13,43,14],[14,1,15],[14,20,5],[14,42,1],[14,48,7],[15,0,11],[15,12,5],[15,22,5],[15,45,14],[16,0,7],[16,13,5],[16,21,8],[16,42,18],[16,78,1],[17,3,6],[17,12,6],[17,20,10],[17,41,19],[17,74,5],[18,3,6],[18,13,5],[18,20,7],[18,28,4],[18,40,39],[19,4,5],[19,14,4],[19,22,4],[19,29,9],[19,39,34],[19,76,3],[20,5,4],[20,15,3],[20,22,4],[20,28,5],[20,34,31],[20,69,5],[20,75,4],[21,6,3],[21,16,2],[21,23,3],[21,27,7],[21,36,30],[21,68,6],[21,76,3],[22,7,2],[22,24,2],[22,28,5],[22,35,25],[22,61,5],[22,69,4],[22,77,2],[23,24,2],[23,29,4],[23,35,30],[23,70,3],[23,77,2],[24,29,4],[24,35,26],[24,62,4],[24,70,3],[24,78,1],[25,30,3],[25,36,25],[25,63,2],[25,71,2],[26,30,3],[26,37,24],[26,63,1],[27,37,24],[28,38,24],[29,38,24],[30,38,24]],[[1,46,1],[1,48,2],[1,52,1],[1,54,1],[2,43,14],[3,40,19],[4,39,21],[5,37,24],[6,38,23],[7,38,22],[8,34,27],[9,33,30],[10,38,26],[11,42,18],[12,15,6],[12,42,17],[13,10,13],[13,43,14],[14,1,15],[14,20,5],[14,48,7],[15,0,11],[15,13,4],[15,22,5],[15,45,14],[16,0,7],[16,12,6],[16,21,7],[16,42,17],[16,77,2],[17,3,5],[17,12,6],[17,20,10],[17,41,19],[17,73,6],[18,3,6],[18,13,5],[18,20,7],[18,28,4],[18,40,39],[19,3,6],[19,14,4],[19,22,4],[19,28,10],[19,39,34],[19,76,3],[20,5,4],[20,15,3],[20,22,4],[20,27,6],[20,34,31],[20,68,6],[20,75,4],[21,6,3],[21,16,2],[21,23,3],[21,27,7],[21,36,29],[21,68,6],[21,76,3],[22,7,2],[22,24,2],[22,28,5],[22,35,30],[22,69,4],[22,77,2],[23,25,1],[23,29,4],[23,35,25],[23,61,4],[23,70,3],[23,77,2],[24,29,4],[24,35,26],[24,62,4],[24,70,3],[24,78,1],[25,30,3],[25,36,25],[25,63,2],[25,71,2],[26,31,2],[26,37,24],[26,63,2],[26,71,1],[27,37,24],[28,38,24],[29,38,24],[30,38,24]],[[1,46,1],[1,48,2],[1,52,1],[1,54,1],[2,43,14],[3,40,19],[4,39,22],[5,37,24],[6,38,23],[7,37,23],[8,34,26],[9,33,30],[10,38,26],[11,42,18],[11,62,1],[12,15,6],[12,41,18],[13,10,13],[13,43,13],[14,1,14],[14,19,5],[14,47,7],[15,0,11],[15,13,4],[15,21,6],[15,44,14],[16,0,7],[16,12,6],[16,21,7],[16,42,17],[16,77,2],[17,3,5],[17,12,6],[17,20,10],[17,41,19],[17,73,6],[18,2,7],[18,13,5],[18,20,7],[18,28,4],[18,40,39],[19,3,6],[19,14,4],[19,22,4],[19,28,9],[19,39,34],[19,75,4],[20,4,5],[20,15,3],[20,22,4],[20,27,6],[20,34,31],[20,68,5],[20,75,4],[21,6,3],[21,16,2],[21,23,3],[21,27,7],[21,36,29],[21,68,6],[21,76,3],[22,7,2],[22,24,2],[22,28,5],[22,35,30],[22,69,4],[22,77,2],[23,25,1],[23,29,4],[23,35,25],[23,61,5],[23,69,4],[23,77,2],[24,29,4],[24,35,26],[24,62,3],[24,70,3],[24,78,1],[25,30,3],[25,36,25],[25,63,2],[25,71,1],[26,31,2],[26,37,24],[26,63,2],[26,71,1],[27,32,1],[27,38,23],[28,39,23],[29,38,24],[30,38,24]],[[1,45,1],[1,48,3],[1,52,1],[2,42,15],[3,40,19],[4,39,21],[5,37,24],[6,37,24],[7,36,24],[8,34,26],[9,33,30],[10,38,26],[11,42,18],[11,62,1],[12,14,7],[12,41,18],[13,10,13],[13,44,12],[14,2,13],[14,19,5],[14,47,7],[15,0,11],[15,12,5],[15,21,5],[15,44,14],[16,0,2],[16,3,4],[16,12,6],[16,21,7],[16,42,17],[16,77,2],[17,2,6],[17,12,6],[17,20,10],[17,41,19],[17,73,6],[18,2,6],[18,13,5],[18,20,7],[18,28,5],[18,40,39],[19,3,6],[19,14,4],[19,21,5],[19,28,9],[19,39,33],[19,75,4],[20,4,5],[20,15,3],[20,22,4],[20,27,6],[20,34,30],[20,68,5],[20,75,4],[21,5,4],[21,16,2],[21,23,3],[21,27,7],[21,36,29],[21,68,5],[21,76,3],[22,7,2],[22,17,1],[22,24,2],[22,28,5],[22,35,31],[22,69,4],[22,76,3],[23,8,1],[23,24,2],[23,28,5],[23,35,25],[23,61,4],[23,69,4],[23,77,2],[24,29,4],[24,36,24],[24,62,3],[24,70,2],[24,78,1],[25,30,3],[25,36,25],[25,62,3],[25,71,2],[26,31,2],[26,37,25],[26,63,2],[26,71,1],[27,32,1],[27,38,23],[28,39,23],[29,38,24],[30,38,24]],[[1,46,4],[1,52,2],[2,42,15],[3,40,19],[4,39,21],[5,37,24],[6,37,24],[7,36,24],[8,34,26],[9,33,30],[10,38,26],[11,42,18],[12,14,7],[12,41,18],[13,10,13],[13,44,12],[14,2,13],[14,19,5],[14,46,8],[15,0,11],[15,12,4],[15,21,5],[15,44,14],[16,0,7],[16,12,6],[16,21,7],[16,42,17],[16,77,2],[17,2,6],[17,12,6],[17,20,10],[17,41,19],[17,73,6],[18,2,6],[18,13,5],[18,20,6],[18,28,4],[18,40,39],[19,2,6],[19,14,4],[19,21,5],[19,28,9],[19,39,33],[19,75,4],[20,4,4],[20,15,3],[20,22,4],[20,27,6],[20,34,30],[20,68,5],[20,75,4],[21,5,4],[21,16,2],[21,23,3],[21,27,7],[21,36,29],[21,68,5],[21,76,3],[22,6,3],[22,17,1],[22,24,2],[22,28,5],[22,35,31],[22,69,4],[22,76,3],[23,8,1],[23,24,2],[23,28,5],[23,34,26],[23,61,4],[23,69,4],[23,77,2],[24,29,4],[24,36,24],[24,62,2],[24,70,2],[24,78,1],[25,30,3],[25,36,25],[25,62,3],[25,71,2],[26,30,3],[26,37,25],[26,63,2],[26,71,1],[27,32,1],[27,38,24],[28,38,24],[29,38,24],[30,38,24]],[[1,46,4],[1,52,2],[2,42,15],[3,40,19],[4,38,22],[5,37,24],[6,37,24],[7,36,24],[8,34,26],[9,33,30],[10,38,26],[11,42,18],[12,15,6],[12,41,18],[13,10,13],[13,44,12],[14,2,13],[14,19,5],[14,46,8],[15,0,11],[15,12,4],[15,21,5],[15,44,14],[16,0,6],[16,12,6],[16,21,7],[16,42,17],[16,77,2],[17,2,5],[17,12,6],[17,20,10],[17,41,19],[17,73,6],[18,2,6],[18,13,5],[18,20,6],[18,28,4],[18,40,39],[19,2,6],[19,14,4],[19,21,5],[19,28,9],[19,39,33],[19,75,4],[20,3,5],[20,15,3],[20,22,4],[20,27,6],[20,34,30],[20,68,5],[20,75,4],[21,5,3],[21,16,2],[21,23,3],[21,27,6],[21,36,29],[21,68,5],[21,76,3],[22,6,2],[22,16,2],[22,24,2],[22,27,6],[22,35,31],[22,68,5],[22,76,3],[23,7,2],[23,24,2],[23,28,5],[23,34,26],[23,61,4],[23,69,3],[23,77,2],[24,29,4],[24,35,25],[24,62,2],[24,70,2],[24,77,2],[25,30,3],[25,36,25],[25,62,3],[25,70,3],[26,30,3],[26,37,24],[26,63,2],[27,31,2],[27,38,23],[28,39,23],[29,38,24],[30,38,24]],[[1,46,4],[1,52,1],[2,42,15],[3,40,19],[4,38,22],[5,37,24],[6,37,24],[7,36,24],[8,34,26],[9,32,31],[10,38,26],[11,41,19],[12,14,6],[12,41,18],[13,10,13],[13,42,11],[13,55,3],[14,2,13],[14,19,5],[14,46,8],[15,0,11],[15,12,4],[15,21,5],[15,44,14],[16,0,2],[16,3,3],[16,12,6],[16,21,7],[16,41,18],[16,77,2],[17,2,5],[17,12,6],[17,20,10],[17,40,20],[17,72,7],[18,2,6],[18,12,6],[18,20,6],[18,28,4],[18,39,40],[19,2,6],[19,13,5],[19,21,5],[19,28,9],[19,39,33],[19,75,4],[20,3,5],[20,14,4],[20,22,4],[20,27,6],[20,34,30],[20,68,5],[20,75,4],[21,4,4],[21,15,3],[21,22,4],[21,27,6],[21,35,4],[21,40,25],[21,68,5],[21,75,4],[22,5,3],[22,16,2],[22,23,3],[22,27,6],[22,34,31],[22,68,5],[22,76,3],[23,6,2],[23,24,2],[23,28,5],[23,34,30],[23,69,3],[23,76,3],[24,29,4],[24,35,25],[24,61,4],[24,69,3],[24,77,1],[25,30,3],[25,36,24],[25,62,2],[25,70,2],[26,30,3],[26,37,24],[27,37,25],[28,38,24],[29,38,24],[30,38,24]],[[1,48,1],[1,50,1],[1,52,1],[2,42,14],[3,39,19],[4,38,21],[5,37,23],[6,37,23],[7,36,23],[8,33,27],[9,32,30],[10,37,26],[11,41,18],[12,14,6],[12,41,17],[13,9,13],[13,43,12],[14,2,13],[14,19,5],[14,45,9],[15,0,10],[15,12,4],[15,21,5],[15,43,15],[16,0,2],[16,3,3],[16,12,5],[16,20,8],[16,41,18],[16,76,3],[17,2,5],[17,11,6],[17,19,10],[17,40,19],[17,72,7],[18,2,6],[18,12,5],[18,19,7],[18,27,6],[18,39,39],[19,2,6],[19,13,4],[19,21,4],[19,27,44],[19,74,5],[20,3,5],[20,14,3],[20,21,4],[20,26,6],[20,34,30],[20,67,5],[20,74,5],[21,4,4],[21,15,2],[21,22,3],[21,26,7],[21,34,5],[21,40,25],[21,67,5],[21,74,5],[22,5,3],[22,15,2],[22,23,2],[22,27,5],[22,34,30],[22,67,5],[22,75,4],[23,6,2],[23,24,1],[23,28,4],[23,34,30],[23,68,3],[23,76,2],[24,28,4],[24,35,28],[24,69,2],[24,76,2],[25,29,3],[25,36,24],[25,61,3],[25,69,2],[26,30,2],[26,36,25],[27,37,24],[28,38,23],[29,38,23],[30,37,24]],[[1,44,1],[1,50,1],[2,41,14],[3,38,19],[4,37,21],[5,36,23],[6,36,23],[7,35,23],[8,33,26],[9,31,30],[10,36,26],[11,40,18],[12,13,7],[12,41,16],[13,9,13],[13,42,10],[13,53,1],[14,2,12],[14,18,5],[14,44,9],[15,0,9],[15,12,4],[15,20,5],[15,42,15],[15,78,1],[16,0,2],[16,3,3],[16,11,6],[16,19,8],[16,40,18],[16,76,3],[17,3,5],[17,11,6],[17,18,7],[17,26,3],[17,39,20],[17,65,2],[17,71,7],[18,2,6],[18,12,5],[18,19,6],[18,27,8],[18,38,39],[19,3,5],[19,13,4],[19,20,5],[19,26,44],[19,73,5],[20,3,5],[20,13,3],[20,21,3],[20,25,7],[20,34,29],[20,66,5],[20,73,6],[21,4,3],[21,14,2],[21,21,3],[21,25,7],[21,33,5],[21,39,24],[21,66,5],[21,73,5],[22,5,2],[22,15,1],[22,22,2],[22,26,5],[22,33,30],[22,66,5],[22,74,3],[23,5,2],[23,27,4],[23,33,30],[23,67,3],[23,74,3],[24,28,3],[24,34,28],[24,67,3],[24,75,1],[25,28,3],[25,35,3],[25,39,23],[25,68,1],[26,29,2],[26,35,3],[26,39,22],[27,36,24],[28,37,24],[29,37,24],[30,36,25]],[[1,44,1],[1,48,1],[2,40,14],[3,37,18],[4,36,21],[5,35,22],[6,35,23],[7,34,23],[8,32,25],[9,30,30],[10,35,25],[11,16,1],[11,39,18],[12,13,6],[12,40,16],[13,9,6],[13,16,5],[13,41,10],[13,52,1],[14,4,10],[14,18,5],[14,43,11],[15,0,9],[15,11,4],[15,19,6],[15,40,16],[15,77,2],[16,0,7],[16,11,5],[16,18,9],[16,39,18],[16,74,5],[17,3,5],[17,11,5],[17,17,7],[17,25,4],[17,38,20],[17,61,6],[17,68,9],[17,78,1],[18,0,1],[18,3,5],[18,11,5],[18,18,6],[18,26,7],[18,37,39],[19,0,1],[19,3,5],[19,12,4],[19,19,4],[19,25,36],[19,65,4],[19,71,6],[20,4,3],[20,13,2],[20,20,3],[20,24,6],[20,32,4],[20,38,24],[20,64,6],[20,71,6],[21,4,3],[21,13,2],[21,20,3],[21,25,5],[21,32,5],[21,38,24],[21,64,6],[21,72,5],[22,5,2],[22,21,2],[22,25,5],[22,32,30],[22,65,4],[22,72,4],[23,5,1],[23,26,4],[23,33,4],[23,38,23],[23,65,4],[23,73,2],[24,27,3],[24,33,4],[24,38,23],[24,66,2],[24,73,2],[25,28,2],[25,34,3],[25,38,22],[25,66,2],[26,29,1],[26,34,3],[26,38,21],[27,35,25],[28,37,23],[29,36,24],[30,35,25]],[[1,46,1],[2,39,13],[3,36,18],[4,35,20],[5,34,22],[6,34,22],[7,33,22],[8,31,25],[9,29,30],[10,34,22],[10,57,1],[11,38,17],[12,13,5],[12,39,15],[13,10,11],[13,41,9],[14,6,8],[14,17,6],[14,42,11],[14,78,1],[15,0,15],[15,18,7],[15,39,16],[15,75,4],[16,0,8],[16,10,6],[16,17,9],[16,38,18],[16,73,6],[17,0,1],[17,3,5],[17,10,5],[17,17,6],[17,25,5],[17,37,20],[17,58,6],[17,66,9],[17,76,3],[18,0,2],[18,3,5],[18,11,4],[18,18,5],[18,25,49],[18,77,2],[19,0,2],[19,3,5],[19,11,4],[19,18,4],[19,24,5],[19,32,27],[19,63,4],[19,70,5],[19,77,2],[20,0,1],[20,3,4],[20,12,2],[20,19,3],[20,23,7],[20,31,5],[20,37,23],[20,62,6],[20,70,5],[20,77,2],[21,4,2],[21,12,2],[21,19,3],[21,24,5],[21,30,7],[21,38,22],[21,63,5],[21,70,5],[21,77,2],[22,4,2],[22,20,2],[22,25,4],[22,31,6],[22,38,22],[22,63,4],[22,70,4],[23,25,4],[23,32,4],[23,38,14],[23,53,6],[23,64,3],[23,71,2],[24,26,3],[24,32,4],[24,38,14],[24,54,5],[24,64,2],[24,71,2],[25,26,2],[25,33,3],[25,38,15],[25,54,5],[26,33,2],[26,37,16],[26,54,5],[27,36,23],[28,35,24],[29,34,25],[30,33,26]],[[1,42,2],[2,38,12],[3,35,17],[4,33,20],[5,33,21],[6,33,21],[7,32,22],[8,30,25],[9,28,29],[10,33,21],[10,55,1],[11,37,17],[12,13,5],[12,37,14],[13,11,9],[13,38,1],[13,41,7],[13,78,1],[14,8,5],[14,17,6],[14,40,12],[14,75,4],[15,4,10],[15,17,7],[15,37,16],[15,71,8],[16,0,7],[16,10,5],[16,17,5],[16,23,3],[16,36,18],[16,69,10],[17,0,8],[17,10,5],[17,16,6],[17,24,8],[17,36,36],[17,74,5],[18,0,2],[18,3,5],[18,10,4],[18,17,5],[18,24,42],[18,67,5],[18,74,5],[19,0,2],[19,3,5],[19,11,3],[19,18,3],[19,23,6],[19,31,4],[19,36,22],[19,60,5],[19,67,6],[19,75,4],[20,0,2],[20,3,4],[20,11,3],[20,18,3],[20,23,6],[20,30,5],[20,37,22],[20,60,6],[20,67,6],[20,75,3],[21,3,3],[21,11,2],[21,18,3],[21,23,6],[21,30,6],[21,37,21],[21,61,4],[21,68,4],[21,75,3],[22,3,2],[22,19,1],[22,24,4],[22,30,6],[22,37,21],[22,61,4],[22,68,4],[23,3,2],[23,24,4],[23,31,4],[23,37,14],[23,52,5],[23,62,3],[23,69,2],[24,25,2],[24,31,4],[24,37,14],[24,52,6],[24,62,2],[24,70,1],[25,25,2],[25,32,2],[25,37,15],[25,53,5],[26,32,2],[26,36,16],[26,53,5],[27,34,24],[28,33,25],[29,32,25],[30,31,27]],[[2,37,11],[3,33,17],[4,32,19],[5,31,21],[6,31,22],[7,31,21],[8,29,25],[9,27,28],[10,28,1],[10,32,20],[11,35,16],[12,13,4],[12,36,13],[13,11,9],[13,38,9],[13,74,5],[14,9,4],[14,16,7],[14,38,12],[14,70,9],[15,6,7],[15,17,8],[15,36,15],[15,67,8],[16,3,12],[16,16,5],[16,23,4],[16,36,16],[16,55,15],[16,71,5],[16,78,1],[17,0,7],[17,9,6],[17,16,6],[17,25,8],[17,35,34],[17,71,6],[17,78,1],[18,0,8],[18,10,4],[18,17,4],[18,24,32],[18,58,4],[18,65,5],[18,72,4],[18,78,1],[19,0,2],[19,3,5],[19,10,4],[19,16,5],[19,23,6],[19,31,25],[19,58,5],[19,65,5],[19,72,4],[20,0,1],[20,2,5],[20,10,3],[20,17,3],[20,23,6],[20,30,27],[20,58,5],[20,65,5],[20,73,3],[21,0,1],[21,2,4],[21,10,2],[21,17,3],[21,23,5],[21,30,26],[21,59,4],[21,66,4],[21,73,2],[22,2,3],[22,11,1],[22,17,2],[22,23,5],[22,30,5],[22,36,13],[22,50,6],[22,59,4],[22,67,2],[23,2,2],[23,24,3],[23,30,4],[23,36,13],[23,51,5],[23,60,3],[23,67,2],[24,2,1],[24,24,2],[24,31,3],[24,36,14],[24,51,5],[25,25,1],[25,31,2],[25,36,14],[25,51,5],[26,34,22],[27,33,23],[28,31,25],[29,30,26],[30,28,29]],[[2,35,11],[3,32,17],[4,30,20],[5,30,21],[6,30,22],[7,30,21],[8,28,24],[9,26,27],[10,27,1],[10,31,20],[11,34,15],[12,14,3],[12,34,13],[12,72,2],[13,13,8],[13,39,7],[13,69,8],[14,11,3],[14,17,7],[14,36,12],[14,66,7],[14,74,5],[15,8,6],[15,18,8],[15,35,14],[15,64,8],[15,74,5],[16,6,9],[16,17,5],[16,23,5],[16,35,16],[16,52,14],[16,68,11],[17,3,12],[17,16,6],[17,26,7],[17,34,32],[17,68,5],[17,74,5],[18,0,8],[18,10,5],[18,17,5],[18,25,29],[18,55,5],[18,62,5],[18,69,4],[18,75,4],[19,0,8],[19,10,4],[19,17,4],[19,23,6],[19,32,23],[19,56,5],[19,62,5],[19,70,3],[19,76,3],[20,0,2],[20,3,5],[20,10,3],[20,16,4],[20,23,6],[20,30,24],[20,56,5],[20,63,4],[20,71,2],[20,77,2],[21,0,7],[21,9,3],[21,16,3],[21,23,5],[21,30,24],[21,57,3],[21,64,3],[22,0,1],[22,2,4],[22,10,1],[22,23,4],[22,30,17],[22,49,5],[22,58,2],[22,65,2],[23,2,3],[23,23,3],[23,30,3],[23,35,12],[23,49,5],[23,59,1],[24,2,1],[24,23,2],[24,30,2],[24,35,13],[24,49,5],[25,30,1],[25,34,20],[26,32,22],[27,30,24],[28,29,25],[29,27,28],[30,26,5],[30,32,23]],[[2,34,10],[3,30,18],[4,29,20],[5,28,22],[6,29,21],[7,29,20],[8,26,25],[9,25,26],[10,29,19],[11,33,15],[12,16,3],[12,33,11],[12,67,3],[13,15,7],[13,37,8],[13,63,9],[14,13,4],[14,18,8],[14,35,11],[14,61,6],[14,69,5],[15,11,5],[15,20,7],[15,34,13],[15,52,2],[15,57,20],[16,9,7],[16,18,6],[16,25,5],[16,34,28],[16,64,15],[17,7,10],[17,18,6],[17,27,25],[17,53,4],[17,58,5],[17,66,3],[17,71,8],[18,4,5],[18,10,6],[18,18,4],[18,26,26],[18,53,5],[18,59,5],[18,67,3],[18,72,7],[19,1,14],[19,17,4],[19,25,6],[19,32,20],[19,54,4],[19,60,4],[19,69,1],[19,75,4],[20,0,13],[20,17,3],[20,24,6],[20,31,21],[20,55,3],[20,61,3],[20,77,2],[21,0,9],[21,10,1],[21,17,1],[21,24,5],[21,31,14],[21,46,6],[21,56,2],[21,63,1],[22,0,7],[22,23,4],[22,30,15],[22,47,5],[22,57,1],[23,0,2],[23,3,2],[23,23,3],[23,30,3],[23,34,12],[23,47,5],[24,34,12],[24,47,5],[25,33,19],[26,30,22],[27,28,23],[28,27,25],[29,25,5],[29,32,21],[30,25,4],[30,31,22]],[[2,33,10],[3,29,18],[4,28,20],[5,27,22],[6,28,22],[7,28,20],[8,25,25],[9,23,26],[10,29,18],[11,32,15],[12,20,2],[12,32,12],[12,61,4],[13,18,7],[13,36,8],[13,58,9],[14,16,12],[14,34,10],[14,55,14],[15,15,5],[15,22,9],[15,34,11],[15,48,10],[15,59,13],[16,13,7],[16,21,6],[16,28,31],[16,61,14],[17,11,16],[17,30,30],[17,64,2],[17,69,10],[18,8,10],[18,19,6],[18,28,27],[18,57,4],[18,69,10],[19,5,11],[19,18,4],[19,27,23],[19,52,3],[19,59,3],[19,73,6],[20,3,10],[20,18,1],[20,26,24],[20,53,3],[20,76,3],[21,0,12],[21,25,5],[21,32,11],[21,44,6],[22,0,9],[22,24,3],[22,31,12],[22,45,5],[23,0,5],[23,30,2],[23,33,17],[24,0,4],[24,33,17],[25,31,18],[26,29,20],[27,27,22],[28,25,5],[28,31,19],[29,24,5],[29,31,19],[30,23,6],[30,31,19]],[[2,32,10],[3,28,19],[4,27,21],[5,26,23],[6,27,23],[7,27,22],[8,24,23],[9,23,24],[10,28,18],[11,31,13],[12,26,2],[12,32,11],[12,55,5],[13,23,7],[13,35,8],[13,52,10],[14,22,11],[14,34,9],[14,51,13],[15,20,24],[15,45,10],[15,56,11],[16,17,15],[16,33,23],[16,62,9],[17,16,15],[17,32,20],[17,53,5],[17,63,12],[18,14,13],[18,31,17],[18,49,3],[18,56,2],[18,67,12],[19,11,8],[19,29,19],[19,51,3],[19,71,8],[20,9,9],[20,27,22],[20,75,4],[21,6,12],[21,26,4],[21,32,17],[22,3,10],[22,32,16],[23,0,10],[23,32,15],[24,0,9],[24,32,15],[25,0,2],[25,30,17],[26,0,2],[26,28,18],[27,26,21],[28,24,6],[28,32,15],[29,23,5],[29,31,17],[30,23,6],[30,31,19]],[[2,30,12],[3,27,20],[4,26,22],[5,26,23],[6,27,23],[7,26,22],[8,23,23],[9,22,23],[10,28,17],[11,30,14],[12,31,13],[12,48,6],[13,30,13],[13,47,10],[14,29,14],[14,45,15],[15,26,25],[15,54,8],[16,23,31],[16,56,10],[17,19,30],[17,51,3],[17,59,11],[17,71,1],[18,19,11],[18,31,15],[18,47,4],[18,63,10],[19,18,10],[19,31,16],[19,69,4],[20,15,12],[20,29,15],[20,45,2],[21,12,15],[21,32,13],[22,9,11],[22,32,13],[23,7,12],[23,32,13],[24,4,14],[24,32,13],[25,0,10],[25,11,5],[25,30,15],[26,0,9],[26,28,17],[27,0,9],[27,26,20],[28,4,3],[28,25,6],[28,32,14],[29,24,6],[29,32,15],[30,23,7],[30,31,17]],[[1,35,2],[2,29,13],[2,45,1],[3,27,21],[4,26,23],[5,26,24],[6,27,23],[7,26,22],[8,23,23],[9,22,23],[10,29,16],[11,30,15],[12,34,13],[13,33,19],[14,32,22],[15,31,26],[16,27,34],[17,25,24],[17,52,11],[18,30,18],[19,27,19],[20,21,23],[21,21,23],[22,23,21],[23,17,27],[24,14,30],[25,14,30],[26,10,18],[26,30,15],[27,6,40],[28,3,43],[29,0,12],[29,14,5],[29,20,5],[29,26,21],[30,1,3],[30,5,3],[30,9,2],[30,12,4],[30,25,23]],[[1,38,1],[2,29,13],[3,27,22],[4,26,24],[5,26,25],[6,27,24],[7,26,23],[8,23,23],[9,23,23],[10,28,18],[11,29,17],[12,30,2],[12,34,11],[12,54,2],[13,32,12],[13,51,5],[14,31,25],[15,31,26],[16,31,26],[17,30,27],[18,30,23],[18,54,3],[19,30,27],[20,30,26],[21,31,24],[22,31,25],[23,31,26],[24,27,28],[25,32,23],[26,31,23],[27,27,2],[27,30,25],[28,22,32],[29,22,5],[29,28,25],[30,28,21],[30,50,2]],[[1,35,2],[1,38,1],[2,29,14],[3,27,23],[4,27,23],[5,27,25],[6,27,25],[7,26,23],[8,24,23],[9,23,24],[10,29,18],[11,29,18],[12,28,5],[12,34,12],[12,61,1],[13,28,17],[13,58,5],[14,28,18],[14,51,13],[15,29,17],[15,48,17],[16,30,36],[17,30,27],[17,58,1],[17,60,6],[18,30,25],[18,59,8],[19,30,20],[19,53,15],[20,31,16],[20,50,19],[21,31,16],[21,62,4],[21,67,3],[22,31,16],[22,57,14],[23,31,16],[23,51,21],[24,31,16],[24,48,25],[25,31,14],[25,60,1],[25,62,5],[25,69,5],[26,31,16],[26,59,17],[27,30,17],[27,54,22],[28,30,18],[28,51,26],[29,29,20],[29,50,25],[29,76,2],[30,29,21],[30,77,2]],[[1,38,1],[2,29,14],[2,47,1],[3,28,22],[4,27,24],[5,27,26],[6,28,25],[7,26,25],[8,24,24],[9,25,23],[10,30,18],[11,23,1],[11,30,18],[12,22,9],[12,35,12],[13,22,8],[13,32,14],[13,63,6],[14,22,24],[14,59,12],[15,21,26],[15,51,1],[15,57,15],[16,22,3],[16,28,45],[17,29,30],[17,66,8],[18,31,27],[18,69,8],[19,31,19],[19,67,11],[20,31,17],[20,67,12],[21,31,17],[21,75,4],[22,32,16],[22,72,7],[23,32,16],[23,72,7],[24,32,16],[24,73,6],[25,31,16],[26,30,17],[26,77,2],[27,30,18],[27,77,2],[28,29,19],[29,29,20],[30,28,22]],[[2,31,13],[3,29,22],[4,28,24],[5,28,25],[6,28,26],[7,28,25],[8,25,24],[9,26,24],[10,30,20],[11,30,19],[12,18,4],[12,29,3],[12,36,5],[12,42,7],[13,17,7],[13,33,14],[13,66,5],[14,16,12],[14,31,16],[14,62,11],[15,14,7],[15,23,25],[15,50,2],[15,60,9],[15,70,9],[16,14,4],[16,23,39],[16,64,4],[16,70,9],[17,28,20],[17,50,5],[17,56,5],[17,71,6],[18,31,17],[18,49,5],[18,57,3],[18,75,4],[19,32,16],[19,49,2],[19,75,4],[20,31,17],[20,76,3],[21,32,16],[22,32,17],[23,32,17],[24,32,16],[25,31,16],[26,30,17],[27,30,18],[28,29,20],[29,28,22],[30,28,23]],[[2,33,11],[3,30,16],[3,47,4],[4,29,24],[5,29,25],[6,29,26],[7,28,26],[8,26,24],[9,27,24],[10,30,21],[11,30,21],[12,14,4],[12,30,3],[12,36,6],[12,43,7],[13,11,9],[13,33,16],[13,68,3],[14,10,13],[14,31,17],[14,63,10],[15,7,8],[15,19,29],[15,50,1],[15,60,19],[16,6,7],[16,19,44],[16,65,14],[17,26,23],[17,50,14],[17,72,6],[18,30,19],[18,51,4],[18,59,2],[18,76,3],[19,31,17],[19,77,2],[20,32,16],[21,32,17],[22,32,17],[23,31,18],[24,31,18],[25,30,18],[26,30,18],[27,29,19],[28,29,20],[29,28,22],[30,28,23]],[[2,33,1],[2,38,5],[3,31,15],[3,48,3],[4,30,23],[5,29,26],[6,29,26],[7,30,25],[8,27,24],[9,27,25],[10,30,22],[11,31,21],[12,11,4],[12,31,2],[12,36,6],[12,45,7],[13,7,11],[13,34,1],[13,36,7],[13,44,6],[13,68,2],[14,5,14],[14,32,17],[14,63,9],[15,1,10],[15,12,3],[15,16,13],[15,31,17],[15,60,19],[16,0,8],[16,16,63],[17,0,5],[17,18,2],[17,24,3],[17,29,37],[17,72,7],[18,30,19],[18,51,5],[18,59,2],[18,76,3],[19,31,18],[19,77,2],[20,31,18],[21,32,17],[22,32,17],[23,31,18],[24,30,19],[25,30,19],[26,29,19],[27,29,19],[28,28,21],[29,28,22],[30,28,23]],[[3,32,15],[4,30,24],[5,30,24],[6,30,26],[7,30,26],[8,28,24],[9,27,26],[10,31,22],[11,32,21],[12,9,3],[12,31,3],[12,36,7],[12,46,7],[13,6,10],[13,37,6],[13,46,6],[13,68,2],[14,0,18],[14,32,19],[14,63,8],[15,0,15],[15,16,6],[15,24,5],[15,31,17],[15,60,17],[16,0,6],[16,12,67],[17,0,4],[17,14,6],[17,22,5],[17,30,38],[17,71,8],[18,30,19],[18,52,11],[18,75,4],[19,31,18],[19,77,2],[20,31,18],[21,31,18],[22,31,18],[23,30,19],[24,30,19],[25,29,20],[26,29,20],[27,28,21],[28,28,21],[29,28,22],[30,27,24]],[[3,32,14],[4,31,16],[4,48,5],[5,30,24],[6,30,26],[7,31,25],[8,29,24],[9,28,25],[10,30,24],[11,32,22],[12,9,1],[12,32,3],[12,37,6],[12,47,7],[13,7,7],[13,32,1],[13,37,6],[13,47,7],[14,1,17],[14,33,14],[14,48,4],[14,65,6],[15,0,14],[15,15,6],[15,27,2],[15,31,17],[15,61,14],[16,0,79],[17,0,4],[17,10,17],[17,30,49],[18,0,1],[18,24,1],[18,30,19],[18,52,14],[18,75,4],[19,31,18],[19,76,3],[20,31,18],[21,31,18],[22,31,18],[23,30,19],[24,29,21],[25,29,21],[26,29,21],[27,28,21],[28,28,21],[29,27,23],[30,27,23]],[[3,33,13],[4,31,17],[4,49,4],[5,31,23],[6,30,25],[7,31,25],[8,29,26],[9,28,25],[10,31,24],[11,32,23],[12,32,3],[12,37,7],[12,48,7],[13,8,5],[13,37,6],[13,49,6],[14,4,13],[14,33,14],[14,49,4],[14,66,5],[15,0,15],[15,16,4],[15,28,1],[15,32,16],[15,62,11],[16,0,58],[16,59,5],[16,65,11],[17,0,4],[17,10,17],[17,29,49],[18,0,3],[18,16,2],[18,22,3],[18,30,19],[18,53,15],[18,75,4],[19,31,19],[19,58,5],[19,75,4],[20,31,18],[21,30,19],[22,30,19],[23,30,19],[24,29,21],[25,29,21],[26,28,22],[27,28,22],[28,27,23],[29,27,23],[30,27,24]],[[3,33,13],[4,31,17],[4,49,3],[5,31,23],[6,31,24],[7,31,24],[8,30,25],[9,28,25],[10,29,1],[10,31,24],[11,33,22],[12,33,3],[12,37,8],[12,49,7],[13,9,3],[13,33,1],[13,37,6],[13,50,5],[14,7,10],[14,33,13],[14,51,3],[14,66,5],[15,2,18],[15,28,1],[15,32,16],[15,62,11],[16,0,14],[16,16,39],[16,58,17],[17,0,7],[17,11,17],[17,29,49],[18,0,3],[18,10,15],[18,30,20],[18,53,14],[18,74,5],[19,0,1],[19,30,20],[19,56,7],[19,74,5],[20,30,20],[21,30,20],[22,30,20],[23,29,20],[24,29,21],[25,28,22],[26,28,22],[27,27,23],[28,27,24],[29,27,24],[30,26,25]],[[3,34,12],[4,32,16],[5,31,22],[6,31,24],[7,31,24],[8,30,24],[9,28,20],[9,49,5],[10,29,1],[10,31,17],[10,49,6],[11,33,15],[11,49,7],[12,33,3],[12,37,9],[12,49,7],[13,8,4],[13,37,6],[13,50,6],[14,6,11],[14,33,13],[14,51,4],[14,65,5],[15,4,5],[15,10,10],[15,32,16],[15,61,7],[15,69,3],[16,1,13],[16,17,37],[16,57,1],[16,59,4],[16,64,10],[17,0,11],[17,14,63],[18,0,3],[18,11,15],[18,30,19],[18,53,12],[18,73,6],[19,0,1],[19,11,2],[19,30,20],[19,55,8],[19,73,6],[20,30,20],[20,77,2],[21,30,20],[22,29,21],[23,29,20],[24,28,22],[25,28,22],[26,27,24],[27,27,24],[28,27,3],[28,31,20],[29,26,25],[30,26,26]],[[3,34,12],[4,32,16],[5,31,22],[6,31,23],[7,31,23],[8,30,24],[9,28,20],[9,49,4],[10,29,1],[10,31,17],[10,49,6],[11,33,15],[11,49,7],[12,33,3],[12,37,9],[12,50,6],[13,8,3],[13,34,1],[13,37,7],[13,51,5],[14,6,10],[14,33,13],[14,52,3],[14,65,5],[15,4,4],[15,10,9],[15,31,17],[15,61,6],[15,68,3],[16,1,7],[16,9,5],[16,17,36],[16,57,1],[16,59,15],[17,0,13],[17,15,47],[17,64,13],[18,0,5],[18,7,2],[18,13,13],[18,30,19],[18,52,12],[18,71,8],[19,0,2],[19,12,7],[19,29,21],[19,54,8],[19,72,3],[19,76,3],[20,29,21],[20,76,3],[21,29,21],[22,29,22],[23,29,20],[24,28,22],[25,28,4],[25,33,18],[26,27,24],[27,27,24],[28,26,4],[28,31,21],[29,26,26],[30,26,26]],[[3,34,12],[4,32,16],[5,31,21],[6,31,23],[7,31,23],[8,30,24],[9,28,20],[9,49,5],[10,29,1],[10,31,17],[10,49,6],[11,32,15],[11,49,6],[12,34,12],[12,50,6],[13,8,3],[13,37,6],[13,51,5],[14,6,9],[14,33,13],[14,52,3],[14,64,5],[15,4,4],[15,11,8],[15,31,17],[15,60,7],[15,68,3],[16,1,7],[16,10,5],[16,16,6],[16,23,30],[16,55,1],[16,58,15],[17,0,8],[17,9,4],[17,16,45],[17,63,13],[18,0,6],[18,8,3],[18,15,11],[18,29,20],[18,52,10],[18,67,1],[18,71,8],[19,0,3],[19,13,10],[19,29,21],[19,53,9],[19,71,3],[19,75,4],[20,0,1],[20,13,2],[20,29,21],[20,75,4],[21,29,22],[22,29,22],[23,29,21],[24,28,22],[25,27,5],[25,33,18],[26,27,24],[27,27,25],[28,26,4],[28,31,21],[29,26,26],[30,26,27]],[[3,34,12],[4,32,15],[5,31,21],[6,31,22],[7,31,23],[8,30,24],[9,28,20],[9,49,4],[10,29,1],[10,31,17],[10,49,5],[11,32,16],[11,49,6],[12,34,12],[12,49,7],[13,8,2],[13,37,5],[13,44,2],[13,51,5],[14,6,9],[14,33,13],[14,52,3],[14,64,5],[15,4,4],[15,10,9],[15,31,17],[15,60,7],[15,68,3],[16,1,7],[16,10,5],[16,16,37],[16,58,7],[16,66,7],[17,0,9],[17,10,5],[17,17,43],[17,62,3],[17,66,10],[18,0,2],[18,4,3],[18,10,3],[18,16,10],[18,29,20],[18,52,9],[18,62,1],[18,66,1],[18,70,9],[19,0,2],[19,4,2],[19,15,10],[19,28,22],[19,53,8],[19,69,10],[20,0,1],[20,14,6],[20,28,22],[20,73,6],[21,29,22],[22,29,22],[23,29,20],[24,28,22],[25,27,5],[25,33,18],[26,27,4],[26,32,19],[27,26,26],[28,26,26],[29,26,3],[29,30,22],[30,25,28]],[[3,34,11],[4,32,15],[5,31,20],[6,31,22],[7,31,23],[8,30,24],[9,28,26],[10,29,1],[10,31,17],[10,49,5],[11,31,17],[11,49,6],[12,34,12],[12,49,6],[13,8,2],[13,35,7],[13,44,2],[13,50,5],[14,6,8],[14,33,13],[14,51,4],[14,64,5],[15,4,4],[15,10,8],[15,31,17],[15,60,6],[15,67,3],[16,1,8],[16,11,4],[16,16,36],[16,55,10],[16,66,7],[17,0,9],[17,11,4],[17,17,43],[17,61,8],[17,70,6],[18,0,2],[18,5,3],[18,11,3],[18,17,9],[18,29,20],[18,51,9],[18,61,1],[18,65,2],[18,69,10],[19,0,3],[19,5,2],[19,12,1],[19,16,10],[19,28,22],[19,52,7],[19,68,11],[20,0,2],[20,16,6],[20,27,23],[20,57,1],[20,72,7],[21,0,1],[21,16,2],[21,27,2],[21,30,21],[22,29,22],[23,28,21],[24,28,22],[25,27,4],[25,32,19],[26,26,4],[26,32,19],[27,26,3],[27,31,21],[28,25,4],[28,30,22],[29,24,4],[29,30,23],[30,24,4],[30,29,24]],[[3,34,11],[4,31,16],[5,31,20],[6,30,23],[7,31,23],[8,30,24],[9,28,19],[9,48,6],[10,29,1],[10,31,17],[10,49,5],[11,31,17],[11,49,5],[12,34,12],[12,49,6],[13,8,1],[13,35,7],[13,44,2],[13,50,5],[14,6,8],[14,33,13],[14,51,3],[14,63,6],[15,4,4],[15,10,8],[15,31,17],[15,60,6],[15,67,4],[16,1,8],[16,11,41],[16,53,11],[16,65,8],[17,0,9],[17,11,4],[17,17,42],[17,60,9],[17,70,6],[18,0,2],[18,5,4],[18,12,3],[18,16,5],[18,22,4],[18,29,20],[18,51,11],[18,63,4],[18,69,10],[19,0,3],[19,6,3],[19,13,2],[19,17,9],[19,28,22],[19,51,8],[19,67,12],[20,0,3],[20,17,7],[20,27,23],[20,55,2],[20,71,8],[21,0,2],[21,17,5],[21,27,2],[21,30,21],[21,78,1],[22,1,1],[22,29,20],[23,28,22],[24,27,4],[24,33,17],[25,26,5],[25,32,19],[26,25,5],[26,31,20],[27,24,5],[27,30,22],[28,22,6],[28,30,22],[29,20,7],[29,29,24],[30,20,6],[30,28,25]],[[3,34,11],[4,31,16],[5,30,21],[6,30,23],[7,31,23],[8,30,24],[9,28,19],[9,48,5],[10,29,24],[11,31,15],[11,48,6],[12,34,12],[12,48,6],[13,8,1],[13,35,7],[13,49,5],[14,6,8],[14,33,13],[14,50,3],[14,63,6],[15,4,4],[15,9,9],[15,31,16],[15,59,7],[15,67,4],[16,1,8],[16,11,53],[16,65,8],[17,0,10],[17,11,5],[17,18,51],[17,70,7],[18,0,2],[18,6,4],[18,12,4],[18,17,10],[18,29,20],[18,51,11],[18,63,4],[18,69,10],[19,0,3],[19,7,3],[19,14,2],[19,17,9],[19,28,22],[19,51,7],[19,67,12],[20,0,3],[20,8,2],[20,18,7],[20,27,23],[20,53,3],[20,71,8],[21,1,2],[21,19,4],[21,26,2],[21,30,19],[21,76,3],[22,2,1],[22,21,1],[22,29,20],[23,27,23],[24,26,5],[24,33,17],[25,25,5],[25,32,14],[25,47,4],[26,19,10],[26,31,21],[27,16,11],[27,30,22],[28,16,10],[28,30,18],[28,49,3],[29,18,7],[29,29,24],[30,28,25]],[[3,34,10],[4,31,16],[5,30,21],[6,30,23],[7,30,24],[8,30,24],[9,28,19],[9,48,5],[10,29,18],[10,48,5],[11,31,16],[11,48,6],[12,33,13],[12,48,6],[13,8,1],[13,36,6],[13,49,5],[14,6,7],[14,33,12],[14,50,3],[14,63,6],[15,4,4],[15,10,7],[15,31,16],[15,59,7],[15,68,3],[16,1,8],[16,12,52],[16,65,9],[17,0,10],[17,12,4],[17,18,51],[17,70,7],[18,0,2],[18,6,4],[18,13,3],[18,18,4],[18,23,4],[18,29,19],[18,50,11],[18,62,5],[18,69,10],[19,0,4],[19,8,3],[19,14,3],[19,18,4],[19,23,4],[19,28,21],[19,50,8],[19,67,12],[20,0,4],[20,9,2],[20,16,1],[20,19,3],[20,23,3],[20,27,23],[20,52,3],[20,66,2],[20,70,9],[21,1,3],[21,20,5],[21,26,2],[21,30,19],[21,75,4],[22,3,1],[22,22,2],[22,29,20],[23,27,23],[24,26,5],[24,33,17],[25,15,14],[25,32,14],[25,47,4],[26,16,11],[26,31,21],[27,17,9],[27,30,22],[28,19,4],[28,30,18],[28,49,4],[29,29,19],[29,49,4],[30,28,25]],[[3,34,10],[4,31,16],[5,30,21],[6,30,22],[7,30,24],[8,30,24],[9,27,20],[9,48,5],[10,28,19],[10,48,4],[11,31,16],[11,48,6],[12,33,9],[12,43,3],[12,48,6],[13,36,6],[13,44,1],[13,48,5],[14,6,7],[14,33,12],[14,50,2],[14,63,6],[15,4,4],[15,10,7],[15,31,16],[15,59,7],[15,68,3],[16,1,7],[16,12,44],[16,57,7],[16,65,9],[17,0,5],[17,6,4],[17,12,4],[17,18,51],[17,71,6],[18,0,2],[18,6,5],[18,13,4],[18,18,4],[18,23,4],[18,29,19],[18,50,11],[18,62,5],[18,69,5],[18,75,4],[19,0,4],[19,8,3],[19,15,7],[19,23,4],[19,28,21],[19,50,8],[19,62,1],[19,67,6],[19,74,5],[20,0,5],[20,10,2],[20,17,1],[20,19,4],[20,24,2],[20,27,23],[20,51,4],[20,66,2],[20,71,8],[21,2,3],[21,21,5],[21,27,22],[21,75,4],[22,4,1],[22,24,1],[22,27,22],[23,15,3],[23,26,5],[23,32,18],[24,15,9],[24,25,5],[24,32,13],[24,46,5],[25,17,11],[25,32,14],[25,47,4],[26,18,8],[26,31,21],[27,30,17],[27,48,4],[28,30,18],[28,49,4],[29,29,19],[29,49,4],[30,28,26]],[[3,34,10],[4,31,15],[5,30,21],[6,30,22],[7,30,23],[8,29,25],[9,27,20],[9,48,5],[10,28,1],[10,30,17],[10,48,5],[11,31,16],[11,48,5],[12,33,12],[12,48,6],[13,34,1],[13,36,6],[13,44,1],[13,48,5],[13,66,2],[14,6,7],[14,33,12],[14,49,3],[14,63,7],[15,4,4],[15,10,7],[15,31,16],[15,60,5],[15,68,4],[16,2,7],[16,12,44],[16,57,7],[16,65,10],[17,0,5],[17,6,4],[17,12,5],[17,18,51],[17,71,7],[18,0,3],[18,6,5],[18,13,4],[18,18,4],[18,24,4],[18,29,19],[18,49,12],[18,63,4],[18,69,5],[18,76,3],[19,0,4],[19,8,4],[19,15,3],[19,19,4],[19,24,34],[19,62,2],[19,67,6],[19,74,5],[20,0,5],[20,10,2],[20,17,1],[20,20,3],[20,24,3],[20,28,23],[20,52,3],[20,66,4],[20,72,7],[21,2,4],[21,21,3],[21,25,24],[21,71,3],[21,76,3],[22,4,2],[22,16,3],[22,25,24],[23,16,7],[23,25,6],[23,32,18],[24,17,13],[24,32,13],[24,46,5],[25,18,9],[25,32,14],[25,47,4],[26,31,21],[27,30,17],[27,48,4],[28,30,18],[28,49,4],[29,29,19],[29,49,4],[30,28,26]],[[3,33,12],[4,31,15],[5,30,21],[6,30,22],[7,30,23],[8,29,25],[9,27,20],[9,48,5],[10,28,1],[10,30,17],[10,48,5],[11,31,22],[12,33,12],[12,47,6],[13,34,1],[13,36,6],[13,44,1],[13,48,5],[13,66,2],[14,7,6],[14,33,12],[14,48,3],[14,62,8],[15,4,4],[15,10,7],[15,31,16],[15,59,6],[15,68,5],[16,2,7],[16,12,52],[16,65,11],[17,0,5],[17,6,5],[17,12,5],[17,18,45],[17,64,5],[17,72,7],[18,0,3],[18,6,5],[18,13,5],[18,19,4],[18,24,3],[18,29,19],[18,49,4],[18,54,7],[18,63,4],[18,70,5],[18,76,3],[19,0,5],[19,8,4],[19,15,3],[19,19,4],[19,24,28],[19,53,6],[19,62,2],[19,68,6],[19,75,4],[20,1,5],[20,10,3],[20,17,2],[20,20,4],[20,25,25],[20,52,2],[20,66,5],[20,73,6],[21,2,4],[21,12,1],[21,16,2],[21,22,2],[21,26,23],[21,71,5],[21,78,1],[22,5,2],[22,15,5],[22,26,23],[22,71,1],[22,77,2],[23,16,7],[23,24,7],[23,33,17],[24,17,12],[24,32,13],[24,46,5],[25,19,6],[25,32,14],[25,47,4],[26,31,21],[27,30,17],[27,48,4],[28,30,18],[28,49,4],[29,29,24],[30,28,26]],[[3,33,12],[4,31,15],[5,30,21],[6,30,22],[7,30,23],[8,29,25],[9,27,20],[9,48,4],[10,27,2],[10,30,23],[11,31,22],[12,33,12],[12,47,6],[13,34,1],[13,36,6],[13,48,5],[13,66,3],[14,7,6],[14,33,12],[14,49,2],[14,62,9],[15,5,3],[15,10,7],[15,31,16],[15,58,7],[15,68,5],[16,2,7],[16,12,52],[16,66,11],[17,0,5],[17,6,5],[17,12,5],[17,18,46],[17,65,4],[17,72,7],[18,0,3],[18,7,4],[18,13,5],[18,19,4],[18,24,4],[18,29,19],[18,49,4],[18,54,8],[18,63,5],[18,70,5],[18,77,2],[19,1,4],[19,8,4],[19,15,37],[19,53,6],[19,62,3],[19,69,5],[19,76,3],[20,1,5],[20,11,2],[20,17,2],[20,21,3],[20,25,25],[20,52,2],[20,67,5],[20,74,5],[21,3,4],[21,22,3],[21,27,21],[21,67,2],[21,72,6],[22,5,2],[22,14,3],[22,27,22],[22,72,2],[22,78,1],[23,0,1],[23,14,8],[23,24,7],[23,33,17],[23,78,1],[24,0,1],[24,15,14],[24,32,13],[24,46,5],[25,18,7],[25,32,19],[26,31,21],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,28,26]],[[3,33,12],[4,30,17],[5,30,22],[6,30,23],[7,30,23],[8,29,25],[9,27,25],[10,28,1],[10,30,23],[11,30,16],[11,47,6],[12,33,11],[12,47,6],[13,35,6],[13,42,2],[13,48,5],[13,66,3],[14,7,6],[14,33,13],[14,49,2],[14,62,9],[15,5,3],[15,10,8],[15,31,16],[15,58,8],[15,69,5],[16,2,7],[16,12,17],[16,30,34],[16,66,11],[17,0,5],[17,7,4],[17,13,4],[17,18,46],[17,65,5],[17,73,6],[18,0,3],[18,7,5],[18,14,4],[18,19,4],[18,25,28],[18,54,8],[18,64,4],[18,71,4],[18,78,1],[19,1,4],[19,9,3],[19,16,8],[19,25,27],[19,53,4],[19,58,2],[19,63,3],[19,70,5],[19,77,2],[20,1,5],[20,11,2],[20,17,2],[20,21,3],[20,26,23],[20,52,2],[20,68,5],[20,75,4],[21,3,4],[21,23,2],[21,27,22],[21,51,2],[21,68,2],[21,74,5],[22,5,2],[22,13,2],[22,27,23],[22,73,3],[23,0,1],[23,12,9],[23,24,7],[23,33,17],[24,0,1],[24,14,15],[24,32,13],[24,46,5],[25,15,10],[25,32,19],[26,31,21],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,28,26]],[[3,32,13],[4,30,17],[5,30,22],[6,30,23],[7,30,23],[8,29,25],[9,27,25],[10,29,17],[10,47,6],[11,30,16],[11,47,6],[12,33,12],[12,47,6],[13,36,8],[13,48,5],[13,66,3],[14,7,7],[14,33,13],[14,49,2],[14,62,10],[15,5,3],[15,10,8],[15,31,16],[15,58,7],[15,69,5],[16,2,7],[16,13,52],[16,66,4],[16,72,6],[17,0,5],[17,7,4],[17,13,4],[17,18,36],[17,55,4],[17,60,4],[17,65,5],[17,74,5],[18,0,3],[18,7,5],[18,14,4],[18,19,4],[18,24,29],[18,54,8],[18,65,4],[18,71,5],[19,1,5],[19,9,3],[19,15,3],[19,19,5],[19,25,26],[19,53,4],[19,58,2],[19,64,3],[19,70,5],[19,77,2],[20,1,5],[20,11,2],[20,17,2],[20,21,3],[20,26,23],[20,52,3],[20,64,1],[20,69,5],[20,76,3],[21,3,4],[21,23,2],[21,28,21],[21,69,2],[21,75,4],[22,0,1],[22,5,3],[22,27,23],[22,74,4],[23,0,2],[23,24,7],[23,33,17],[24,0,2],[24,11,18],[24,32,19],[25,12,14],[25,32,19],[26,15,5],[26,31,21],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,28,26]],[[3,32,13],[4,30,17],[5,30,22],[6,30,23],[7,30,24],[8,29,25],[9,27,25],[10,29,17],[10,47,6],[11,30,1],[11,32,13],[11,47,6],[12,33,2],[12,36,9],[12,47,6],[13,36,6],[13,48,5],[13,65,5],[14,7,7],[14,33,13],[14,49,2],[14,61,11],[15,5,4],[15,10,8],[15,31,16],[15,58,7],[15,69,6],[16,2,7],[16,13,47],[16,61,4],[16,67,12],[17,0,5],[17,7,4],[17,13,4],[17,18,36],[17,55,4],[17,60,4],[17,66,4],[17,74,5],[18,0,4],[18,7,5],[18,14,4],[18,19,4],[18,25,28],[18,54,9],[18,65,4],[18,72,4],[19,1,5],[19,9,3],[19,15,3],[19,19,5],[19,25,26],[19,53,4],[19,59,2],[19,65,2],[19,71,5],[19,78,1],[20,2,4],[20,10,3],[20,17,2],[20,21,3],[20,27,22],[20,52,3],[20,65,1],[20,71,3],[20,77,2],[21,3,4],[21,12,1],[21,23,2],[21,29,20],[21,52,2],[21,70,3],[21,77,2],[22,0,1],[22,5,2],[22,27,23],[22,70,1],[22,76,3],[23,0,2],[23,24,7],[23,33,17],[23,76,1],[24,0,2],[24,17,12],[24,32,19],[25,11,15],[25,32,14],[25,47,4],[26,12,10],[26,31,21],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[3,32,13],[4,30,17],[5,30,22],[6,30,23],[7,30,24],[8,28,26],[9,27,25],[10,29,24],[11,30,1],[11,32,13],[11,47,6],[12,33,2],[12,36,9],[12,47,6],[13,34,1],[13,36,8],[13,48,5],[13,65,5],[14,7,7],[14,33,13],[14,49,2],[14,61,7],[14,69,3],[15,5,4],[15,10,8],[15,31,16],[15,58,7],[15,69,6],[16,3,6],[16,13,47],[16,61,4],[16,67,12],[17,0,5],[17,7,4],[17,13,4],[17,18,36],[17,55,4],[17,60,5],[17,66,5],[17,74,5],[18,0,4],[18,7,4],[18,14,3],[18,19,4],[18,25,28],[18,54,5],[18,60,3],[18,66,4],[18,72,5],[19,1,5],[19,9,3],[19,15,3],[19,19,5],[19,26,25],[19,53,4],[19,60,2],[19,66,2],[19,72,5],[20,2,4],[20,10,2],[20,17,1],[20,21,3],[20,27,22],[20,53,2],[20,66,1],[20,72,3],[20,78,1],[21,3,4],[21,23,2],[21,29,20],[21,52,2],[21,71,3],[21,78,1],[22,0,1],[22,5,2],[22,27,23],[22,71,1],[22,78,1],[23,0,1],[23,24,7],[23,33,18],[23,78,1],[24,0,2],[24,18,2],[24,22,7],[24,32,19],[25,11,1],[25,16,10],[25,32,14],[25,47,4],[26,10,13],[26,31,21],[27,12,6],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[3,32,13],[4,30,17],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,28,26],[9,27,25],[10,30,23],[11,32,13],[11,47,6],[12,32,3],[12,36,9],[12,47,6],[13,34,1],[13,36,8],[13,48,5],[13,65,5],[14,7,7],[14,33,13],[14,48,4],[14,61,7],[14,69,3],[15,5,4],[15,10,8],[15,31,16],[15,58,7],[15,69,6],[16,3,6],[16,13,47],[16,61,4],[16,67,12],[17,0,5],[17,7,4],[17,13,4],[17,18,36],[17,55,4],[17,61,4],[17,67,4],[17,74,5],[18,0,4],[18,7,4],[18,13,4],[18,18,5],[18,25,28],[18,55,4],[18,61,3],[18,67,3],[18,73,4],[19,1,5],[19,8,4],[19,15,3],[19,19,5],[19,26,25],[19,54,4],[19,60,2],[19,67,2],[19,73,4],[20,1,5],[20,10,2],[20,17,1],[20,21,3],[20,28,21],[20,53,3],[20,60,1],[20,67,1],[20,73,3],[21,3,3],[21,22,3],[21,29,20],[21,53,2],[21,73,2],[22,0,1],[22,5,2],[22,27,5],[22,33,17],[22,73,1],[23,0,1],[23,6,1],[23,24,7],[23,33,17],[24,0,1],[24,18,2],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,10,13],[26,31,21],[27,12,6],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[3,32,14],[4,30,17],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,28,26],[9,27,20],[9,48,4],[10,30,23],[11,32,13],[11,47,6],[12,32,3],[12,36,9],[12,47,7],[13,36,8],[13,48,5],[13,65,5],[14,7,7],[14,33,13],[14,48,4],[14,61,7],[14,69,3],[15,5,4],[15,10,8],[15,31,16],[15,58,7],[15,69,6],[16,3,6],[16,13,47],[16,62,4],[16,67,12],[17,0,5],[17,7,4],[17,13,4],[17,18,36],[17,55,4],[17,61,4],[17,67,5],[17,74,5],[18,0,4],[18,7,4],[18,13,4],[18,18,5],[18,25,28],[18,55,5],[18,61,3],[18,68,3],[18,73,4],[19,1,4],[19,8,3],[19,15,2],[19,19,4],[19,26,25],[19,54,4],[19,61,2],[19,68,2],[19,73,4],[20,1,5],[20,10,1],[20,16,1],[20,21,3],[20,28,21],[20,54,3],[20,61,1],[20,68,1],[20,74,3],[21,3,3],[21,22,2],[21,29,20],[21,54,2],[21,74,2],[22,5,1],[22,26,6],[22,33,17],[22,74,1],[23,0,1],[23,24,7],[23,33,17],[24,0,1],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[2,41,1],[3,32,14],[4,30,17],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,28,25],[9,27,20],[9,48,4],[10,30,23],[11,32,14],[11,47,6],[12,33,2],[12,36,9],[12,47,7],[13,36,8],[13,48,5],[13,65,5],[14,7,7],[14,33,13],[14,48,4],[14,61,7],[14,69,3],[15,5,4],[15,10,8],[15,31,16],[15,58,8],[15,69,6],[16,2,7],[16,12,49],[16,62,4],[16,68,11],[17,0,10],[17,12,4],[17,18,36],[17,56,4],[17,62,4],[17,68,4],[17,74,5],[18,0,4],[18,7,4],[18,13,3],[18,18,5],[18,25,28],[18,55,5],[18,62,3],[18,68,3],[18,74,4],[19,1,4],[19,8,3],[19,14,2],[19,19,4],[19,26,26],[19,55,4],[19,62,2],[19,69,2],[19,74,4],[20,1,4],[20,9,2],[20,21,2],[20,28,21],[20,55,2],[20,62,1],[20,69,1],[20,74,3],[21,3,3],[21,22,2],[21,29,20],[21,55,1],[21,75,2],[22,4,2],[22,26,24],[22,75,2],[23,24,7],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[2,41,1],[3,32,14],[4,30,17],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,28,25],[9,27,20],[9,48,4],[10,30,23],[11,32,14],[11,47,7],[12,33,2],[12,36,8],[12,48,6],[13,9,1],[13,36,8],[13,48,5],[13,66,4],[14,7,7],[14,33,13],[14,49,3],[14,62,10],[15,5,4],[15,10,8],[15,31,17],[15,58,8],[15,69,6],[16,2,7],[16,12,49],[16,62,4],[16,68,10],[17,0,10],[17,12,4],[17,18,36],[17,56,4],[17,62,4],[17,68,4],[17,74,5],[18,0,4],[18,7,3],[18,13,3],[18,18,5],[18,25,29],[18,56,4],[18,63,2],[18,69,3],[18,74,4],[19,1,4],[19,8,2],[19,14,2],[19,19,4],[19,26,26],[19,56,3],[19,63,2],[19,69,3],[19,74,4],[20,1,4],[20,9,1],[20,21,2],[20,28,22],[20,55,3],[20,63,1],[20,70,1],[20,75,3],[21,3,2],[21,21,2],[21,29,20],[21,55,2],[21,76,2],[22,4,1],[22,26,24],[22,77,1],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,18],[28,49,4],[29,29,24],[30,29,25]],[[2,41,1],[3,32,14],[4,31,16],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,28,26],[9,27,20],[9,48,4],[10,31,22],[11,32,14],[11,47,7],[12,33,2],[12,36,8],[12,48,6],[13,9,1],[13,36,7],[13,48,5],[13,66,4],[14,7,8],[14,33,13],[14,49,3],[14,62,10],[15,5,4],[15,10,9],[15,31,17],[15,58,8],[15,69,6],[16,2,7],[16,12,49],[16,62,4],[16,68,10],[17,0,10],[17,12,4],[17,18,36],[17,56,4],[17,63,3],[17,68,5],[17,75,4],[18,0,4],[18,6,4],[18,13,3],[18,18,4],[18,25,29],[18,56,5],[18,63,3],[18,69,3],[18,74,5],[19,1,4],[19,7,3],[19,13,2],[19,19,3],[19,26,26],[19,56,3],[19,64,2],[19,70,2],[19,74,5],[20,1,4],[20,8,1],[20,20,2],[20,28,22],[20,56,3],[20,64,1],[20,71,1],[20,76,3],[21,2,2],[21,29,20],[21,56,2],[21,77,2],[22,26,24],[22,78,1],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,23],[29,29,24],[30,29,25]],[[2,41,1],[3,32,14],[4,31,16],[4,48,2],[5,30,22],[6,30,23],[7,30,24],[8,29,25],[9,27,20],[9,48,4],[10,31,16],[10,48,5],[11,32,14],[11,48,6],[12,34,10],[12,48,6],[13,9,1],[13,36,6],[13,48,5],[13,66,4],[14,7,8],[14,33,13],[14,49,3],[14,62,10],[15,5,3],[15,10,9],[15,31,17],[15,59,7],[15,69,6],[16,2,7],[16,12,49],[16,63,4],[16,69,9],[17,0,10],[17,12,4],[17,19,35],[17,56,4],[17,63,4],[17,69,4],[17,75,4],[18,0,4],[18,6,4],[18,12,3],[18,18,4],[18,25,23],[18,49,5],[18,56,5],[18,64,2],[18,70,3],[18,75,4],[19,0,5],[19,7,2],[19,13,2],[19,18,4],[19,26,27],[19,57,3],[19,64,3],[19,71,2],[19,75,4],[20,1,3],[20,8,1],[20,20,2],[20,28,23],[20,57,2],[20,65,1],[20,72,1],[20,76,3],[21,2,2],[21,21,1],[21,29,21],[21,57,2],[21,78,1],[22,26,6],[22,33,17],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,23],[29,29,24],[30,29,25]],[[3,32,14],[4,31,19],[5,30,22],[6,30,24],[7,30,24],[8,29,24],[9,28,19],[9,48,4],[10,31,22],[11,32,15],[11,48,6],[12,34,10],[12,48,6],[13,9,1],[13,36,8],[13,48,5],[13,66,4],[14,7,8],[14,33,13],[14,49,3],[14,62,10],[15,5,3],[15,11,8],[15,31,17],[15,59,7],[15,69,5],[16,2,8],[16,12,49],[16,63,4],[16,69,8],[17,0,5],[17,6,4],[17,12,4],[17,18,31],[17,50,10],[17,63,4],[17,69,4],[17,74,5],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,24,30],[18,57,4],[18,64,3],[18,70,3],[18,75,4],[19,0,4],[19,7,2],[19,12,2],[19,18,4],[19,25,23],[19,49,4],[19,57,4],[19,65,3],[19,71,3],[19,75,4],[20,1,3],[20,7,1],[20,19,3],[20,27,25],[20,57,3],[20,66,1],[20,73,1],[20,76,3],[21,2,1],[21,28,22],[21,58,2],[21,78,1],[22,27,5],[22,33,16],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,23],[29,29,24],[30,29,24]],[[2,36,1],[3,32,14],[4,31,19],[5,30,22],[6,30,24],[7,30,24],[8,29,25],[9,28,19],[9,48,4],[10,31,22],[11,32,15],[11,48,6],[12,34,11],[12,48,6],[13,9,2],[13,36,8],[13,49,4],[13,67,3],[14,7,8],[14,33,13],[14,50,2],[14,63,9],[15,5,4],[15,11,8],[15,31,17],[15,59,8],[15,70,4],[16,2,7],[16,12,50],[16,63,4],[16,69,8],[17,0,5],[17,6,4],[17,11,5],[17,18,43],[17,64,3],[17,69,10],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,24,5],[18,30,19],[18,50,4],[18,57,5],[18,64,3],[18,70,4],[18,75,4],[19,0,4],[19,6,2],[19,12,2],[19,18,4],[19,25,4],[19,30,18],[19,50,4],[19,57,4],[19,65,3],[19,72,2],[19,75,4],[20,1,3],[20,19,2],[20,27,25],[20,58,3],[20,67,1],[20,73,1],[20,77,2],[21,1,2],[21,20,1],[21,28,23],[21,59,2],[22,26,6],[22,33,17],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,11,7],[27,30,22],[28,30,23],[29,29,24],[30,29,24]],[[3,32,14],[4,31,19],[5,30,22],[6,30,24],[7,30,24],[8,29,24],[9,28,19],[9,48,4],[10,31,23],[11,32,15],[11,48,6],[12,33,9],[12,43,2],[12,48,6],[13,9,2],[13,36,6],[13,49,5],[13,67,3],[14,7,8],[14,33,13],[14,50,2],[14,63,9],[15,4,5],[15,11,8],[15,31,17],[15,59,8],[15,70,4],[16,2,7],[16,11,4],[16,16,46],[16,63,4],[16,69,8],[17,0,5],[17,6,4],[17,11,4],[17,18,43],[17,63,5],[17,69,10],[18,0,4],[18,6,3],[18,12,2],[18,17,5],[18,24,5],[18,30,19],[18,50,5],[18,57,5],[18,65,3],[18,70,4],[18,75,4],[19,0,4],[19,6,2],[19,11,2],[19,18,4],[19,25,4],[19,30,19],[19,50,4],[19,57,5],[19,66,3],[19,72,7],[20,0,3],[20,18,3],[20,26,3],[20,30,19],[20,50,3],[20,58,4],[20,67,1],[20,74,1],[20,77,2],[21,1,1],[21,18,2],[21,28,21],[21,50,2],[21,59,3],[22,27,5],[22,34,15],[22,50,1],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,12,6],[27,30,22],[28,30,23],[29,29,24],[30,29,24]],[[2,36,1],[3,32,14],[4,31,19],[5,30,22],[6,30,24],[7,31,23],[8,29,24],[9,28,19],[9,48,4],[10,31,23],[11,32,15],[11,48,6],[12,33,9],[12,43,2],[12,48,6],[13,9,2],[13,37,5],[13,49,5],[13,68,2],[14,7,9],[14,33,13],[14,50,2],[14,63,8],[15,4,5],[15,11,8],[15,31,17],[15,60,7],[15,70,4],[16,1,8],[16,11,4],[16,17,45],[16,64,4],[16,70,7],[17,0,9],[17,11,4],[17,18,43],[17,64,4],[17,70,9],[18,0,4],[18,5,4],[18,11,3],[18,17,5],[18,24,5],[18,30,19],[18,50,5],[18,57,5],[18,65,3],[18,70,4],[18,75,4],[19,0,4],[19,6,2],[19,12,1],[19,17,4],[19,25,4],[19,30,19],[19,50,5],[19,58,4],[19,66,3],[19,72,7],[20,0,3],[20,18,2],[20,26,3],[20,30,19],[20,50,4],[20,59,3],[20,67,3],[20,74,1],[20,77,2],[21,0,2],[21,19,1],[21,29,21],[21,51,2],[21,60,2],[22,27,5],[22,34,16],[22,51,2],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,11,7],[27,30,22],[28,30,23],[29,29,24],[30,29,24]],[[2,36,1],[3,33,13],[4,31,19],[5,30,23],[6,30,24],[7,31,23],[8,29,24],[9,28,19],[9,48,5],[10,31,16],[10,48,6],[11,32,15],[11,48,6],[12,33,9],[12,43,2],[12,48,6],[13,9,2],[13,34,2],[13,37,5],[13,49,5],[13,68,1],[14,7,9],[14,33,13],[14,50,2],[14,63,8],[15,4,5],[15,12,7],[15,32,16],[15,60,7],[15,70,4],[16,1,8],[16,11,4],[16,17,45],[16,64,4],[16,70,6],[17,0,9],[17,11,4],[17,18,43],[17,64,4],[17,70,9],[18,0,3],[18,5,4],[18,11,3],[18,17,5],[18,24,4],[18,30,19],[18,51,4],[18,57,5],[18,65,3],[18,70,9],[19,0,4],[19,5,2],[19,10,3],[19,17,4],[19,24,4],[19,29,20],[19,51,4],[19,58,4],[19,66,3],[19,72,7],[20,0,3],[20,5,1],[20,17,3],[20,25,3],[20,29,20],[20,51,3],[20,59,4],[20,68,2],[20,74,2],[20,77,2],[21,0,1],[21,17,2],[21,26,2],[21,29,21],[21,51,3],[21,60,3],[22,27,5],[22,34,16],[22,52,2],[22,61,2],[23,25,6],[23,33,17],[24,22,7],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,11,7],[27,30,22],[28,30,23],[29,29,24],[30,29,25]],[[3,33,13],[4,31,17],[4,49,1],[5,30,23],[6,30,24],[7,31,23],[8,29,25],[9,28,25],[10,31,16],[10,48,6],[11,32,15],[11,48,6],[12,33,3],[12,37,8],[12,48,6],[13,9,2],[13,37,5],[13,49,5],[13,68,1],[14,7,9],[14,33,13],[14,50,2],[14,64,7],[15,4,5],[15,12,7],[15,32,16],[15,60,7],[15,70,4],[16,1,8],[16,11,4],[16,17,46],[16,64,4],[16,70,6],[17,0,9],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,3],[18,11,3],[18,17,5],[18,24,4],[18,29,20],[18,51,4],[18,58,4],[18,65,4],[18,70,9],[19,0,4],[19,5,2],[19,10,3],[19,17,4],[19,24,4],[19,29,20],[19,51,4],[19,58,5],[19,66,3],[19,72,7],[20,0,3],[20,5,1],[20,17,3],[20,25,3],[20,29,21],[20,51,4],[20,59,4],[20,68,2],[20,74,5],[21,0,1],[21,17,2],[21,26,1],[21,29,21],[21,52,3],[21,60,3],[22,27,5],[22,33,17],[22,52,2],[22,61,2],[23,24,7],[23,33,17],[24,22,8],[24,32,19],[25,16,10],[25,32,14],[25,47,5],[26,11,12],[26,31,21],[27,11,7],[27,30,23],[28,30,18],[28,49,4],[29,29,20],[29,50,3],[30,29,25]],[[3,33,14],[4,31,17],[5,30,23],[6,30,24],[7,31,23],[8,29,25],[9,28,25],[10,30,17],[10,48,6],[11,32,15],[11,48,6],[12,33,3],[12,37,9],[12,48,6],[13,8,3],[13,37,5],[13,49,5],[14,6,10],[14,33,13],[14,49,4],[14,64,7],[15,4,4],[15,12,7],[15,32,16],[15,60,7],[15,69,4],[16,1,8],[16,11,4],[16,17,46],[16,64,4],[16,70,6],[17,0,9],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,3],[18,11,3],[18,17,4],[18,24,4],[18,29,20],[18,51,4],[18,58,4],[18,65,4],[18,70,9],[19,0,3],[19,5,2],[19,10,3],[19,17,4],[19,24,4],[19,29,20],[19,51,5],[19,58,5],[19,66,3],[19,72,7],[20,0,3],[20,5,1],[20,17,3],[20,24,3],[20,29,21],[20,52,4],[20,59,4],[20,68,2],[20,74,5],[21,0,1],[21,17,2],[21,25,2],[21,29,21],[21,52,3],[21,60,3],[21,75,1],[21,78,1],[22,27,5],[22,33,17],[22,53,2],[22,62,2],[23,25,6],[23,33,17],[24,22,8],[24,32,19],[25,16,11],[25,32,14],[25,47,5],[26,11,12],[26,31,16],[26,48,4],[27,11,7],[27,30,23],[28,30,18],[28,49,4],[29,29,20],[29,50,4],[30,29,25]],[[3,33,14],[4,31,17],[5,31,22],[6,30,24],[7,31,23],[8,29,26],[9,28,20],[9,49,4],[10,30,24],[11,32,15],[11,48,6],[12,33,3],[12,37,9],[12,48,6],[13,8,4],[13,37,5],[13,49,5],[14,6,10],[14,33,13],[14,49,4],[14,65,6],[15,4,4],[15,12,7],[15,32,16],[15,61,12],[16,1,8],[16,11,4],[16,17,46],[16,64,3],[16,70,6],[17,0,4],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,3],[18,11,3],[18,17,4],[18,24,4],[18,29,20],[18,51,4],[18,58,4],[18,65,4],[18,70,9],[19,0,3],[19,5,2],[19,10,3],[19,16,5],[19,24,4],[19,29,20],[19,51,5],[19,58,5],[19,66,3],[19,72,3],[19,76,3],[20,0,2],[20,5,1],[20,16,4],[20,24,3],[20,29,21],[20,52,4],[20,59,3],[20,68,2],[20,73,6],[21,0,1],[21,16,3],[21,24,2],[21,29,21],[21,53,3],[21,60,4],[21,75,1],[21,78,1],[22,27,5],[22,33,17],[22,54,2],[22,62,2],[23,25,6],[23,33,18],[24,22,8],[24,32,19],[25,16,11],[25,32,14],[25,47,5],[26,11,12],[26,31,16],[26,48,4],[27,11,7],[27,30,18],[27,49,4],[28,30,19],[28,50,3],[29,29,20],[29,50,4],[30,29,25]],[[3,33,14],[4,31,17],[5,31,22],[6,30,24],[7,31,24],[8,29,26],[9,28,20],[9,49,4],[10,30,18],[10,49,5],[11,31,16],[11,48,7],[12,33,3],[12,37,8],[12,49,5],[13,8,4],[13,37,6],[13,49,5],[14,6,10],[14,33,13],[14,49,4],[14,65,6],[15,4,4],[15,12,7],[15,32,16],[15,61,12],[16,0,9],[16,11,4],[16,17,50],[16,70,6],[17,0,4],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,3],[18,11,3],[18,17,4],[18,24,4],[18,29,20],[18,52,3],[18,58,4],[18,65,4],[18,70,4],[18,75,4],[19,0,3],[19,4,3],[19,10,3],[19,16,5],[19,23,5],[19,29,20],[19,51,5],[19,58,5],[19,66,3],[19,71,8],[20,0,2],[20,4,2],[20,9,2],[20,16,4],[20,24,3],[20,29,21],[20,52,4],[20,59,4],[20,67,3],[20,73,2],[20,76,3],[21,0,1],[21,16,3],[21,24,2],[21,29,21],[21,53,3],[21,60,4],[21,75,1],[21,78,1],[22,27,5],[22,33,17],[22,54,2],[22,62,2],[23,25,6],[23,33,18],[24,22,8],[24,32,19],[25,16,11],[25,32,14],[25,48,4],[26,11,12],[26,31,16],[26,49,4],[27,11,7],[27,30,18],[27,50,3],[28,30,19],[28,50,4],[29,29,20],[29,51,4],[30,29,21],[30,51,5]],[[2,37,1],[3,33,14],[4,31,17],[5,31,22],[6,30,24],[7,31,24],[8,29,26],[9,28,20],[9,49,4],[10,30,18],[10,49,5],[11,31,16],[11,48,7],[12,34,2],[12,37,8],[12,49,6],[13,8,4],[13,37,6],[13,49,5],[14,6,10],[14,33,13],[14,50,3],[14,65,6],[15,4,4],[15,12,7],[15,32,16],[15,61,12],[16,1,8],[16,11,4],[16,17,50],[16,70,6],[17,0,4],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,3],[18,11,3],[18,17,4],[18,24,4],[18,29,21],[18,52,4],[18,58,4],[18,65,4],[18,70,4],[18,75,4],[19,0,3],[19,4,3],[19,10,3],[19,16,5],[19,23,4],[19,30,19],[19,52,5],[19,58,5],[19,66,3],[19,71,8],[20,0,2],[20,4,2],[20,10,2],[20,16,4],[20,23,4],[20,29,21],[20,52,5],[20,59,4],[20,67,3],[20,73,2],[20,76,3],[21,0,1],[21,16,3],[21,23,3],[21,29,21],[21,54,3],[21,60,4],[21,74,1],[21,77,2],[22,27,5],[22,33,17],[22,55,2],[22,62,2],[23,25,6],[23,33,18],[24,22,8],[24,32,14],[24,47,5],[25,16,11],[25,32,15],[25,48,5],[26,10,14],[26,31,17],[26,49,5],[27,11,7],[27,30,18],[27,50,4],[28,30,19],[28,51,5],[29,29,21],[29,52,5],[30,29,21],[30,52,6]],[[2,37,1],[3,33,14],[4,31,17],[5,31,22],[6,30,24],[7,31,24],[8,29,26],[9,28,20],[9,49,4],[10,31,17],[10,49,5],[11,31,16],[11,49,6],[12,34,2],[12,37,8],[12,49,6],[13,8,4],[13,37,6],[13,49,5],[14,6,10],[14,34,12],[14,50,3],[14,66,5],[15,4,4],[15,12,7],[15,32,16],[15,61,12],[16,1,8],[16,11,4],[16,17,50],[16,70,6],[17,0,3],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,7],[18,0,3],[18,5,3],[18,11,3],[18,17,4],[18,23,5],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,70,4],[18,76,3],[19,0,3],[19,5,2],[19,10,3],[19,16,5],[19,23,4],[19,30,19],[19,52,5],[19,58,5],[19,66,3],[19,71,3],[19,75,4],[20,0,2],[20,4,2],[20,11,1],[20,16,4],[20,23,3],[20,29,21],[20,53,4],[20,59,3],[20,67,3],[20,72,7],[21,0,1],[21,16,3],[21,23,3],[21,29,21],[21,54,3],[21,60,3],[21,68,1],[21,74,1],[21,77,2],[22,23,2],[22,27,23],[22,55,2],[22,62,2],[22,78,1],[23,25,6],[23,33,18],[24,22,8],[24,32,14],[24,47,5],[25,16,11],[25,32,15],[25,48,5],[26,10,14],[26,31,17],[26,50,5],[27,11,8],[27,30,18],[27,51,8],[28,30,19],[28,52,8],[29,29,21],[29,53,8],[30,29,21],[30,54,6]],[[2,37,1],[3,33,14],[4,31,17],[5,31,22],[6,30,24],[7,31,24],[8,29,26],[9,28,20],[9,49,4],[10,31,17],[10,49,5],[11,31,16],[11,49,6],[12,34,11],[12,49,6],[13,8,4],[13,37,7],[13,49,5],[14,6,10],[14,34,12],[14,50,3],[14,66,5],[15,3,5],[15,12,7],[15,32,16],[15,62,11],[16,1,8],[16,11,4],[16,17,35],[16,53,2],[16,57,10],[16,70,6],[17,0,3],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,9],[18,0,3],[18,5,4],[18,11,3],[18,17,4],[18,23,5],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,70,4],[18,76,3],[19,0,3],[19,5,2],[19,10,3],[19,16,5],[19,23,5],[19,30,19],[19,52,5],[19,58,5],[19,65,3],[19,71,3],[19,75,4],[20,0,3],[20,5,1],[20,11,1],[20,16,4],[20,23,3],[20,29,21],[20,53,4],[20,59,4],[20,67,2],[20,72,2],[20,75,4],[21,0,1],[21,16,3],[21,23,3],[21,29,21],[21,54,3],[21,60,3],[21,68,1],[21,73,1],[21,76,3],[22,16,2],[22,27,23],[22,55,3],[22,61,2],[22,78,1],[23,25,6],[23,33,19],[24,22,8],[24,32,14],[24,48,5],[25,16,11],[25,32,15],[25,49,11],[26,11,13],[26,31,17],[26,51,12],[27,11,8],[27,31,17],[27,52,10],[28,30,19],[28,54,7],[29,29,21],[29,56,3],[30,29,21]],[[2,37,1],[3,33,14],[4,31,17],[5,31,22],[6,31,23],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,31,17],[10,49,5],[11,31,16],[11,49,6],[12,34,11],[12,49,6],[13,8,4],[13,37,7],[13,49,5],[14,6,10],[14,34,12],[14,50,3],[14,66,5],[15,3,5],[15,12,7],[15,32,16],[15,62,11],[16,1,8],[16,11,4],[16,17,35],[16,53,1],[16,57,10],[16,70,5],[17,0,3],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,11,3],[18,17,4],[18,23,5],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,70,4],[18,76,3],[19,0,3],[19,5,3],[19,11,2],[19,16,5],[19,23,5],[19,30,20],[19,52,5],[19,58,5],[19,65,3],[19,70,4],[19,75,4],[20,0,3],[20,5,2],[20,10,2],[20,16,4],[20,23,3],[20,29,21],[20,53,4],[20,59,4],[20,66,3],[20,71,3],[20,75,4],[21,0,1],[21,5,1],[21,16,3],[21,23,2],[21,29,21],[21,54,3],[21,60,3],[21,67,1],[21,72,2],[21,76,3],[22,16,2],[22,27,23],[22,55,3],[22,61,1],[22,77,2],[23,25,6],[23,33,13],[23,47,5],[23,78,1],[24,22,8],[24,32,15],[24,48,16],[25,16,11],[25,32,15],[25,50,13],[26,10,14],[26,31,17],[26,52,10],[27,10,9],[27,31,17],[27,56,3],[28,30,19],[29,29,21],[30,29,21]],[[3,33,14],[4,31,18],[5,31,22],[6,31,23],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,31,17],[10,49,5],[11,31,16],[11,49,6],[12,34,12],[12,49,6],[13,8,4],[13,37,7],[13,49,6],[14,6,10],[14,34,12],[14,50,3],[14,67,4],[15,3,5],[15,12,7],[15,32,16],[15,62,11],[16,1,8],[16,11,4],[16,17,37],[16,58,9],[16,71,4],[17,0,3],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,11,3],[18,17,4],[18,24,3],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,70,4],[18,75,4],[19,0,3],[19,5,3],[19,11,2],[19,16,5],[19,23,4],[19,30,20],[19,52,5],[19,58,5],[19,65,3],[19,70,3],[19,75,4],[20,0,3],[20,5,2],[20,10,3],[20,16,4],[20,23,3],[20,29,21],[20,53,4],[20,59,4],[20,66,3],[20,71,2],[20,75,4],[21,0,2],[21,5,1],[21,16,3],[21,22,3],[21,29,21],[21,54,3],[21,60,3],[21,67,1],[21,72,1],[21,76,3],[22,0,1],[22,16,2],[22,22,2],[22,28,22],[22,55,3],[22,61,2],[22,76,3],[23,25,6],[23,33,13],[23,47,6],[23,59,5],[23,77,2],[24,22,8],[24,32,15],[24,48,15],[25,16,11],[25,32,15],[25,51,10],[26,9,15],[26,31,17],[27,10,9],[27,31,17],[28,30,19],[29,29,21],[30,29,21]],[[3,33,14],[4,31,20],[5,31,22],[6,31,23],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,31,17],[10,49,5],[11,31,16],[11,49,6],[12,34,12],[12,49,6],[13,8,4],[13,37,6],[13,50,5],[14,6,10],[14,34,12],[14,51,3],[14,67,4],[15,3,5],[15,12,7],[15,32,16],[15,62,11],[16,1,8],[16,11,4],[16,17,37],[16,59,8],[16,71,4],[17,0,3],[17,5,4],[17,11,4],[17,18,43],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,11,3],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,69,5],[18,75,4],[19,0,3],[19,5,3],[19,11,3],[19,16,5],[19,23,4],[19,30,20],[19,52,5],[19,58,5],[19,65,3],[19,70,3],[19,75,4],[20,0,3],[20,5,2],[20,11,2],[20,16,4],[20,22,4],[20,29,21],[20,53,3],[20,59,4],[20,66,2],[20,71,2],[20,75,4],[21,0,2],[21,16,3],[21,22,3],[21,29,21],[21,54,3],[21,60,2],[21,66,1],[21,71,2],[21,75,4],[22,0,1],[22,17,1],[22,22,2],[22,28,23],[22,56,2],[22,61,3],[22,76,2],[23,25,6],[23,33,13],[23,47,6],[23,58,7],[23,77,1],[24,23,7],[24,32,15],[24,48,15],[25,16,11],[25,32,15],[25,51,10],[26,9,15],[26,31,16],[27,10,9],[27,31,17],[28,30,19],[29,29,21],[30,29,21]],[[3,33,14],[4,31,20],[5,31,22],[6,31,23],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,31,17],[10,49,6],[11,31,16],[11,49,6],[12,34,12],[12,49,6],[13,8,4],[13,37,6],[13,50,5],[14,5,11],[14,34,12],[14,51,2],[14,67,4],[15,3,5],[15,12,7],[15,32,16],[15,62,11],[16,1,8],[16,11,4],[16,17,32],[16,50,4],[16,59,8],[16,71,4],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,11,4],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,69,4],[18,75,4],[19,0,3],[19,5,3],[19,12,2],[19,16,5],[19,23,4],[19,30,20],[19,52,5],[19,58,5],[19,65,2],[19,70,3],[19,75,4],[20,0,3],[20,6,1],[20,11,2],[20,17,3],[20,22,4],[20,29,21],[20,53,4],[20,58,4],[20,65,3],[20,70,3],[20,75,4],[21,0,2],[21,6,1],[21,17,2],[21,22,3],[21,29,21],[21,54,3],[21,59,3],[21,66,1],[21,71,1],[21,75,4],[22,0,1],[22,17,2],[22,22,2],[22,27,25],[22,55,3],[22,60,1],[22,76,2],[23,25,6],[23,32,14],[23,47,7],[23,63,3],[23,76,1],[24,23,7],[24,32,15],[24,48,18],[25,16,11],[25,32,15],[25,52,12],[26,9,15],[26,31,16],[27,10,9],[27,31,17],[28,30,19],[29,29,21],[30,29,21]],[[3,32,15],[4,31,20],[5,31,22],[6,31,24],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,30,25],[11,31,17],[11,49,6],[12,34,12],[12,49,6],[13,8,4],[13,37,6],[13,50,5],[14,5,11],[14,34,12],[14,51,2],[14,67,4],[15,2,6],[15,12,8],[15,32,16],[15,63,10],[16,0,9],[16,11,4],[16,17,37],[16,59,8],[16,71,4],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,12,3],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,69,4],[18,75,4],[19,0,3],[19,6,2],[19,12,2],[19,17,4],[19,23,4],[19,30,20],[19,52,5],[19,58,5],[19,64,3],[19,70,3],[19,75,4],[20,0,3],[20,6,2],[20,11,2],[20,17,3],[20,22,4],[20,29,21],[20,53,4],[20,58,4],[20,65,2],[20,70,2],[20,75,4],[21,0,2],[21,6,1],[21,17,3],[21,22,3],[21,29,21],[21,54,3],[21,59,3],[21,70,2],[21,75,3],[22,0,2],[22,17,2],[22,22,2],[22,28,24],[22,55,2],[22,60,1],[22,75,2],[23,0,1],[23,25,6],[23,32,14],[23,47,7],[23,75,2],[24,23,7],[24,32,15],[24,48,15],[24,64,3],[25,16,11],[25,32,15],[25,52,15],[26,9,3],[26,13,11],[26,31,16],[26,58,6],[27,10,9],[27,30,18],[28,15,1],[28,30,19],[29,29,21],[30,29,21]],[[3,32,15],[4,31,20],[5,31,22],[6,31,24],[7,31,24],[8,29,25],[9,28,20],[9,49,4],[10,31,24],[11,31,17],[11,49,6],[12,34,12],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,51,3],[14,67,4],[15,2,6],[15,12,8],[15,32,16],[15,63,10],[16,0,9],[16,11,4],[16,17,32],[16,50,4],[16,59,8],[16,71,5],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,8],[18,0,3],[18,5,4],[18,12,3],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,69,4],[18,76,3],[19,0,4],[19,6,2],[19,12,2],[19,17,4],[19,23,4],[19,29,21],[19,52,5],[19,58,4],[19,64,3],[19,69,4],[19,75,4],[20,0,3],[20,6,2],[20,12,2],[20,17,4],[20,22,4],[20,29,21],[20,53,4],[20,58,4],[20,65,2],[20,70,2],[20,74,5],[21,0,2],[21,17,3],[21,22,3],[21,29,21],[21,54,3],[21,59,3],[21,65,1],[21,70,1],[21,75,3],[22,0,2],[22,17,2],[22,22,2],[22,27,25],[22,55,2],[22,75,2],[23,25,6],[23,32,14],[23,47,7],[23,75,1],[24,23,7],[24,32,15],[24,48,14],[25,16,11],[25,32,15],[25,52,16],[26,9,3],[26,14,10],[26,31,17],[26,56,11],[27,10,9],[27,30,18],[28,15,1],[28,30,19],[29,29,21],[30,29,21]],[[3,32,16],[4,31,21],[5,30,23],[6,31,24],[7,31,24],[8,29,25],[9,28,20],[9,49,5],[10,31,24],[11,31,17],[11,49,6],[12,34,2],[12,37,9],[12,49,6],[13,7,6],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,51,2],[14,67,5],[15,2,6],[15,12,8],[15,32,16],[15,63,10],[16,0,9],[16,11,4],[16,17,37],[16,59,8],[16,71,5],[17,0,3],[17,5,4],[17,11,4],[17,18,4],[17,24,38],[17,64,4],[17,70,8],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,69,4],[18,76,3],[19,0,4],[19,6,3],[19,12,3],[19,17,4],[19,23,4],[19,29,21],[19,52,5],[19,58,4],[19,64,3],[19,69,4],[19,75,4],[20,0,3],[20,6,2],[20,12,2],[20,17,4],[20,23,3],[20,29,21],[20,53,4],[20,58,3],[20,64,2],[20,69,3],[20,74,5],[21,0,3],[21,7,1],[21,17,3],[21,23,2],[21,29,21],[21,54,3],[21,59,2],[21,70,1],[21,74,4],[22,1,1],[22,19,1],[22,23,1],[22,28,24],[22,55,2],[22,59,1],[22,74,3],[23,25,6],[23,33,13],[23,47,7],[23,74,2],[24,23,7],[24,32,15],[24,48,12],[25,16,11],[25,32,15],[25,52,10],[26,9,3],[26,14,10],[26,31,17],[26,55,13],[27,10,10],[27,30,18],[27,60,7],[28,13,1],[28,15,1],[28,30,19],[29,29,21],[30,29,21]],[[2,45,1],[3,32,16],[4,31,21],[5,30,24],[6,31,24],[7,31,24],[8,29,25],[9,28,20],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,34,2],[12,37,9],[12,49,6],[13,7,6],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,51,2],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,10],[16,0,10],[16,11,5],[16,17,32],[16,50,4],[16,59,8],[16,71,5],[17,0,3],[17,5,5],[17,11,4],[17,18,4],[17,24,38],[17,64,4],[17,70,8],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,23,4],[18,29,21],[18,52,4],[18,58,3],[18,64,4],[18,69,4],[18,76,3],[19,0,4],[19,6,3],[19,12,3],[19,17,4],[19,23,4],[19,29,21],[19,52,5],[19,58,4],[19,64,3],[19,69,4],[19,75,4],[20,0,3],[20,7,2],[20,12,2],[20,17,4],[20,23,3],[20,29,21],[20,52,5],[20,58,4],[20,64,2],[20,69,3],[20,74,4],[21,0,3],[21,7,1],[21,18,2],[21,23,3],[21,29,21],[21,54,3],[21,58,3],[21,64,1],[21,69,2],[21,74,4],[22,1,1],[22,18,2],[22,23,2],[22,28,24],[22,55,1],[22,59,1],[22,74,2],[23,25,6],[23,33,13],[23,47,7],[23,74,1],[24,23,7],[24,32,15],[24,48,9],[25,15,12],[25,32,15],[25,52,10],[26,10,2],[26,14,10],[26,31,17],[26,55,9],[27,10,10],[27,30,18],[27,60,9],[28,13,1],[28,15,1],[28,30,19],[28,63,4],[29,29,21],[30,29,21]],[[2,37,1],[2,41,3],[2,45,1],[3,32,16],[4,31,21],[5,30,24],[6,31,24],[7,31,24],[8,29,25],[9,28,20],[9,49,5],[10,31,17],[10,49,6],[11,32,16],[11,49,6],[12,34,2],[12,37,6],[12,44,2],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,51,3],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,11],[16,0,10],[16,11,5],[16,17,37],[16,59,9],[16,71,5],[17,0,3],[17,5,5],[17,11,5],[17,18,4],[17,23,39],[17,63,5],[17,70,8],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,23,4],[18,29,21],[18,52,4],[18,58,3],[18,64,4],[18,69,4],[18,76,3],[19,0,4],[19,6,3],[19,13,2],[19,17,4],[19,23,4],[19,29,21],[19,52,10],[19,64,3],[19,69,4],[19,75,4],[20,0,3],[20,7,2],[20,13,2],[20,18,3],[20,23,4],[20,29,21],[20,52,4],[20,58,3],[20,64,2],[20,69,2],[20,74,5],[21,1,2],[21,18,3],[21,23,2],[21,28,22],[21,53,3],[21,58,3],[21,69,1],[21,74,4],[22,1,2],[22,18,2],[22,23,2],[22,28,24],[22,54,2],[22,58,2],[22,74,2],[23,25,6],[23,33,13],[23,47,7],[23,74,1],[24,23,7],[24,32,15],[24,48,9],[25,15,12],[25,32,15],[25,52,10],[26,14,10],[26,31,17],[26,55,9],[27,9,11],[27,30,18],[27,59,10],[28,13,3],[28,30,19],[28,63,4],[29,29,21],[30,29,21]],[[2,37,1],[2,40,4],[3,32,16],[4,31,21],[5,30,24],[6,30,25],[7,31,24],[8,29,25],[9,28,20],[9,49,5],[10,31,17],[10,49,6],[11,32,16],[11,49,6],[12,34,2],[12,37,9],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,51,3],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,11],[16,0,10],[16,11,5],[16,17,37],[16,59,9],[16,71,5],[17,0,3],[17,5,5],[17,11,5],[17,18,44],[17,63,5],[17,70,9],[18,0,4],[18,6,3],[18,12,3],[18,17,5],[18,23,5],[18,29,21],[18,52,4],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,2],[19,13,2],[19,17,5],[19,23,4],[19,29,21],[19,52,4],[19,57,5],[19,64,2],[19,69,4],[19,75,4],[20,0,3],[20,7,2],[20,13,2],[20,18,3],[20,23,3],[20,29,21],[20,52,4],[20,58,3],[20,64,2],[20,69,2],[20,74,5],[21,1,2],[21,8,1],[21,18,3],[21,23,3],[21,28,22],[21,53,3],[21,58,2],[21,69,1],[21,74,4],[22,1,2],[22,19,2],[22,23,2],[22,28,24],[22,54,2],[22,58,1],[22,74,2],[23,2,1],[23,25,6],[23,33,13],[23,47,7],[23,73,2],[24,23,7],[24,32,15],[24,48,9],[25,15,12],[25,32,15],[25,51,12],[26,10,1],[26,15,9],[26,31,17],[26,55,8],[27,9,11],[27,30,18],[27,59,9],[28,12,3],[28,30,19],[28,63,4],[29,29,21],[30,29,21]],[[2,35,4],[2,40,4],[3,32,16],[4,31,21],[5,30,24],[6,30,25],[7,31,24],[8,28,26],[9,28,20],[9,49,5],[10,31,17],[10,49,6],[11,32,16],[11,49,6],[12,34,2],[12,37,6],[12,44,2],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,3],[14,9,7],[14,33,13],[14,50,4],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,11],[16,0,9],[16,11,5],[16,17,32],[16,50,4],[16,59,9],[16,71,5],[17,0,3],[17,5,5],[17,11,5],[17,18,44],[17,63,5],[17,70,8],[18,0,3],[18,6,4],[18,12,3],[18,17,5],[18,24,4],[18,29,21],[18,52,4],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,2],[19,13,2],[19,17,5],[19,23,5],[19,29,21],[19,52,4],[19,57,5],[19,63,3],[19,69,4],[19,75,4],[20,0,3],[20,7,2],[20,13,2],[20,18,3],[20,23,4],[20,29,20],[20,52,4],[20,57,4],[20,63,3],[20,69,2],[20,74,5],[21,1,2],[21,8,1],[21,19,2],[21,23,3],[21,28,22],[21,53,3],[21,58,2],[21,69,1],[21,74,4],[22,2,1],[22,19,2],[22,23,2],[22,28,23],[22,54,1],[22,58,1],[22,73,3],[23,25,6],[23,33,13],[23,47,7],[23,73,2],[24,23,7],[24,32,15],[24,48,8],[25,15,12],[25,32,15],[25,51,12],[26,10,1],[26,15,9],[26,31,17],[26,55,8],[27,9,11],[27,30,18],[27,59,10],[28,12,3],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,35,4],[2,40,5],[3,32,16],[4,31,21],[5,30,24],[6,30,25],[7,31,24],[8,28,26],[9,28,20],[9,49,5],[10,31,17],[10,49,6],[11,32,16],[11,49,6],[12,34,2],[12,37,6],[12,44,2],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,50,4],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,11],[16,0,9],[16,11,5],[16,17,32],[16,50,4],[16,59,9],[16,71,5],[17,0,3],[17,5,5],[17,11,5],[17,18,44],[17,63,5],[17,70,8],[18,0,3],[18,6,4],[18,12,4],[18,17,5],[18,24,4],[18,29,21],[18,52,4],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,3],[19,13,2],[19,17,5],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,63,3],[19,69,4],[19,75,4],[20,0,4],[20,8,1],[20,14,1],[20,18,3],[20,23,4],[20,29,20],[20,52,4],[20,57,4],[20,63,2],[20,69,2],[20,74,5],[21,1,2],[21,19,2],[21,23,3],[21,28,22],[21,53,2],[21,57,3],[21,63,1],[21,68,2],[21,74,4],[22,2,1],[22,19,2],[22,24,2],[22,28,23],[22,53,2],[22,58,1],[22,73,3],[23,25,6],[23,33,13],[23,47,7],[23,73,2],[24,23,7],[24,32,15],[24,48,8],[25,15,12],[25,32,15],[25,51,12],[26,15,9],[26,31,16],[26,55,8],[27,9,12],[27,30,18],[27,59,10],[28,12,3],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,35,10],[3,32,16],[4,31,21],[5,30,24],[6,30,25],[7,31,24],[8,28,26],[9,28,20],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,3],[12,37,6],[12,44,2],[12,49,6],[13,7,5],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,50,4],[14,68,4],[15,2,6],[15,12,7],[15,32,16],[15,63,11],[16,0,9],[16,11,5],[16,17,32],[16,50,2],[16,53,1],[16,59,8],[16,72,4],[17,0,3],[17,5,5],[17,11,5],[17,18,44],[17,63,5],[17,70,8],[18,0,3],[18,6,4],[18,12,4],[18,17,5],[18,24,4],[18,29,21],[18,52,4],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,3],[19,13,3],[19,18,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,63,3],[19,69,4],[19,75,4],[20,0,4],[20,8,2],[20,14,1],[20,18,4],[20,23,4],[20,29,20],[20,52,4],[20,57,4],[20,63,2],[20,69,2],[20,74,5],[21,1,3],[21,19,2],[21,24,3],[21,28,22],[21,52,3],[21,57,3],[21,63,1],[21,68,2],[21,74,4],[22,2,2],[22,20,1],[22,24,2],[22,28,23],[22,53,2],[22,57,2],[22,73,3],[23,25,6],[23,33,13],[23,47,7],[23,73,2],[24,23,7],[24,32,15],[24,48,8],[25,15,13],[25,32,15],[25,51,12],[26,15,9],[26,31,16],[26,55,8],[27,9,12],[27,31,17],[27,59,10],[28,11,4],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,35,10],[3,32,16],[4,31,21],[5,30,24],[6,30,25],[7,30,25],[8,28,27],[9,28,20],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,3],[12,37,9],[12,49,6],[13,7,4],[13,34,1],[13,37,6],[13,50,5],[14,5,11],[14,33,13],[14,50,4],[14,67,5],[15,2,5],[15,11,8],[15,32,16],[15,63,11],[16,0,9],[16,11,4],[16,16,36],[16,53,1],[16,59,8],[16,72,4],[17,0,2],[17,5,5],[17,11,5],[17,18,44],[17,63,5],[17,70,8],[18,0,3],[18,6,4],[18,12,4],[18,17,5],[18,24,4],[18,29,21],[18,52,3],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,3],[19,13,3],[19,18,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,63,3],[19,69,4],[19,75,4],[20,0,4],[20,8,2],[20,14,2],[20,19,3],[20,23,4],[20,29,20],[20,52,4],[20,57,4],[20,63,2],[20,69,2],[20,74,5],[21,1,3],[21,9,1],[21,19,3],[21,24,3],[21,28,22],[21,52,3],[21,57,3],[21,63,1],[21,69,1],[21,74,4],[22,2,2],[22,20,1],[22,24,2],[22,28,23],[22,52,2],[22,57,2],[22,74,3],[23,3,1],[23,25,6],[23,33,20],[23,73,2],[24,23,7],[24,32,15],[24,48,8],[24,73,1],[25,15,13],[25,32,15],[25,51,12],[26,9,1],[26,15,10],[26,31,16],[26,55,8],[27,8,13],[27,31,17],[27,59,10],[28,11,5],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,34,11],[3,31,17],[4,30,23],[5,30,24],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,3],[12,37,9],[12,49,6],[13,7,4],[13,34,1],[13,37,6],[13,50,5],[14,5,10],[14,33,13],[14,50,4],[14,67,5],[15,2,5],[15,11,8],[15,32,16],[15,63,11],[16,0,9],[16,11,4],[16,16,36],[16,54,1],[16,59,8],[16,72,5],[17,0,2],[17,5,5],[17,11,5],[17,18,44],[17,64,4],[17,70,8],[18,0,3],[18,6,4],[18,12,4],[18,18,4],[18,24,4],[18,29,21],[18,52,3],[18,58,3],[18,63,5],[18,69,4],[18,76,3],[19,0,4],[19,7,3],[19,13,3],[19,18,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,63,4],[19,69,4],[19,75,4],[20,0,4],[20,8,2],[20,14,2],[20,19,3],[20,23,4],[20,29,20],[20,51,4],[20,57,4],[20,63,2],[20,69,2],[20,75,4],[21,1,3],[21,9,1],[21,19,3],[21,24,3],[21,28,22],[21,52,3],[21,57,3],[21,63,1],[21,69,1],[21,74,4],[22,2,2],[22,20,1],[22,25,1],[22,28,23],[22,52,2],[22,57,2],[22,74,3],[23,3,1],[23,25,6],[23,33,21],[23,74,1],[24,23,7],[24,32,15],[24,48,8],[25,15,13],[25,32,15],[25,51,12],[26,9,1],[26,15,10],[26,31,16],[26,55,8],[27,8,13],[27,31,17],[27,59,10],[28,11,5],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,34,11],[3,31,17],[4,30,23],[5,30,24],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,3],[12,37,9],[12,49,6],[13,7,4],[13,34,1],[13,37,6],[13,50,5],[14,5,10],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,11,7],[15,31,17],[15,63,11],[16,0,9],[16,11,4],[16,16,36],[16,54,1],[16,59,8],[16,72,5],[17,0,2],[17,5,4],[17,11,5],[17,18,44],[17,64,4],[17,70,8],[18,0,3],[18,6,4],[18,12,4],[18,18,4],[18,24,4],[18,29,21],[18,52,3],[18,58,3],[18,63,5],[18,69,5],[18,76,3],[19,0,4],[19,7,3],[19,13,3],[19,18,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,63,4],[19,69,4],[19,75,4],[20,0,4],[20,8,2],[20,14,2],[20,19,3],[20,24,3],[20,29,20],[20,51,4],[20,57,4],[20,63,3],[20,69,3],[20,75,4],[21,1,3],[21,9,1],[21,15,1],[21,19,3],[21,24,3],[21,28,22],[21,52,2],[21,57,3],[21,63,1],[21,69,2],[21,74,4],[22,2,2],[22,20,2],[22,25,2],[22,28,23],[22,52,2],[22,57,2],[22,74,3],[23,3,1],[23,25,6],[23,33,20],[23,74,2],[24,23,7],[24,32,15],[24,48,8],[25,15,13],[25,32,15],[25,51,12],[26,9,1],[26,15,10],[26,31,16],[26,55,8],[27,8,13],[27,31,17],[27,59,10],[28,10,6],[28,30,19],[28,63,5],[29,29,21],[30,29,21]],[[2,34,12],[3,31,17],[4,30,23],[5,30,24],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,31,24],[11,33,15],[11,49,6],[12,33,3],[12,37,9],[12,49,7],[13,7,3],[13,37,6],[13,50,5],[14,5,10],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,10,8],[15,31,17],[15,63,12],[16,0,8],[16,11,4],[16,16,33],[16,50,2],[16,54,1],[16,59,9],[16,72,5],[17,0,2],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,9],[18,0,3],[18,5,4],[18,12,4],[18,17,5],[18,23,5],[18,29,21],[18,52,3],[18,58,3],[18,64,4],[18,69,5],[18,77,2],[19,0,3],[19,6,4],[19,13,3],[19,18,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,64,3],[19,69,4],[19,76,3],[20,0,4],[20,7,3],[20,14,2],[20,18,4],[20,24,3],[20,29,20],[20,51,4],[20,57,4],[20,63,3],[20,69,3],[20,75,4],[21,1,3],[21,9,1],[21,19,3],[21,24,3],[21,28,22],[21,51,3],[21,57,3],[21,64,1],[21,69,2],[21,75,4],[22,2,2],[22,20,2],[22,25,2],[22,28,23],[22,52,1],[22,57,2],[22,74,3],[23,3,1],[23,25,6],[23,33,20],[23,74,2],[24,23,8],[24,32,15],[24,48,8],[25,15,13],[25,32,15],[25,51,12],[26,15,10],[26,31,16],[26,54,9],[27,8,14],[27,31,17],[27,59,10],[28,10,6],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,34,12],[3,31,17],[4,30,23],[5,30,25],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,13],[12,49,7],[13,7,3],[13,37,6],[13,50,5],[14,5,10],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,10,8],[15,31,16],[15,63,12],[16,0,8],[16,11,41],[16,54,1],[16,59,9],[16,72,5],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,9],[18,0,2],[18,5,4],[18,12,3],[18,17,5],[18,23,5],[18,29,21],[18,52,3],[18,58,3],[18,64,4],[18,70,4],[18,77,2],[19,0,3],[19,6,3],[19,13,2],[19,17,5],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,64,3],[19,69,4],[19,76,3],[20,0,3],[20,7,2],[20,13,2],[20,18,4],[20,24,4],[20,29,20],[20,51,4],[20,57,4],[20,64,2],[20,69,3],[20,75,4],[21,0,4],[21,8,1],[21,19,3],[21,24,3],[21,28,22],[21,51,3],[21,57,3],[21,64,1],[21,69,2],[21,75,4],[22,1,3],[22,20,2],[22,25,2],[22,28,25],[22,57,2],[22,75,3],[23,3,1],[23,25,6],[23,33,20],[23,75,1],[24,23,8],[24,32,15],[24,48,8],[25,15,4],[25,20,8],[25,32,15],[25,51,12],[26,15,10],[26,31,16],[26,54,9],[27,8,14],[27,31,17],[27,59,10],[28,10,7],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,34,12],[3,31,17],[4,30,23],[5,30,25],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,12],[12,49,6],[13,7,3],[13,37,6],[13,50,5],[14,5,9],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,10,8],[15,31,16],[15,63,12],[16,0,8],[16,11,41],[16,54,1],[16,58,10],[16,72,5],[17,0,2],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,9],[18,0,2],[18,5,4],[18,11,4],[18,17,5],[18,23,5],[18,29,21],[18,52,3],[18,58,3],[18,64,4],[18,70,4],[18,77,2],[19,0,3],[19,6,3],[19,12,3],[19,17,5],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,64,3],[19,70,3],[19,76,3],[20,0,3],[20,7,2],[20,13,2],[20,18,4],[20,24,4],[20,29,20],[20,51,4],[20,57,4],[20,64,2],[20,70,2],[20,75,4],[21,0,3],[21,8,1],[21,19,3],[21,24,3],[21,29,21],[21,51,3],[21,57,3],[21,64,2],[21,70,2],[21,75,4],[22,1,2],[22,20,1],[22,25,2],[22,28,25],[22,57,2],[22,75,3],[23,2,1],[23,25,6],[23,33,20],[23,75,2],[24,23,8],[24,32,15],[24,48,8],[24,75,1],[25,15,4],[25,21,7],[25,32,15],[25,51,12],[26,15,10],[26,32,15],[26,54,9],[27,8,14],[27,31,17],[27,59,10],[28,10,7],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,30,25],[6,30,25],[7,30,26],[8,28,26],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,3],[13,34,2],[13,37,7],[13,50,5],[14,5,9],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,10,8],[15,31,16],[15,63,12],[16,0,8],[16,11,38],[16,50,2],[16,54,1],[16,58,10],[16,72,5],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,9],[18,0,2],[18,5,4],[18,11,4],[18,17,5],[18,23,4],[18,29,21],[18,52,3],[18,58,4],[18,64,4],[18,70,4],[18,77,2],[19,0,3],[19,6,3],[19,12,3],[19,17,5],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,64,3],[19,70,4],[19,76,3],[20,0,3],[20,7,2],[20,13,2],[20,18,3],[20,24,4],[20,29,20],[20,51,4],[20,57,5],[20,64,2],[20,70,3],[20,75,4],[21,0,3],[21,8,1],[21,14,1],[21,19,2],[21,25,2],[21,29,21],[21,51,3],[21,57,4],[21,64,2],[21,70,2],[21,75,4],[22,1,2],[22,19,2],[22,25,2],[22,28,25],[22,58,2],[22,70,1],[22,76,2],[23,2,1],[23,25,6],[23,33,20],[23,76,1],[24,23,8],[24,32,15],[24,48,8],[25,15,4],[25,21,7],[25,32,15],[25,51,12],[26,15,10],[26,32,15],[26,54,9],[27,9,13],[27,31,17],[27,59,10],[28,9,8],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,30,25],[6,30,25],[7,30,26],[8,28,27],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,2],[13,34,2],[13,37,5],[13,43,1],[13,50,5],[14,5,9],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,9,8],[15,31,16],[15,63,12],[16,0,8],[16,11,3],[16,15,34],[16,50,2],[16,54,1],[16,58,10],[16,72,6],[17,0,3],[17,5,4],[17,11,4],[17,18,44],[17,64,4],[17,70,9],[18,0,2],[18,5,4],[18,11,4],[18,17,4],[18,23,4],[18,29,21],[18,52,3],[18,58,4],[18,64,4],[18,70,4],[18,77,2],[19,0,3],[19,6,3],[19,12,3],[19,17,4],[19,23,5],[19,29,21],[19,51,5],[19,57,5],[19,64,3],[19,70,4],[19,76,3],[20,0,3],[20,7,2],[20,13,2],[20,18,3],[20,24,4],[20,29,21],[20,51,4],[20,58,4],[20,64,3],[20,70,3],[20,76,3],[21,0,3],[21,7,2],[21,14,1],[21,19,2],[21,25,2],[21,29,21],[21,51,3],[21,58,3],[21,64,2],[21,70,2],[21,76,3],[22,1,2],[22,19,2],[22,25,2],[22,28,25],[22,58,2],[22,76,3],[23,2,1],[23,26,5],[23,33,20],[23,58,1],[23,76,2],[24,23,8],[24,32,15],[24,48,8],[24,76,1],[25,15,4],[25,21,7],[25,32,15],[25,51,12],[26,15,10],[26,32,15],[26,54,9],[27,8,14],[27,31,17],[27,58,11],[28,9,8],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,30,25],[6,30,25],[7,30,26],[8,28,26],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,34,11],[12,49,7],[13,7,2],[13,35,7],[13,43,1],[13,50,5],[14,5,9],[14,33,13],[14,50,4],[14,67,6],[15,2,5],[15,9,8],[15,31,16],[15,63,8],[15,72,3],[16,0,8],[16,11,38],[16,50,2],[16,54,1],[16,58,10],[16,72,6],[17,0,3],[17,4,5],[17,11,4],[17,17,45],[17,64,4],[17,71,8],[18,0,2],[18,4,5],[18,11,4],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,4],[18,70,4],[18,77,2],[19,0,3],[19,5,4],[19,12,3],[19,17,4],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,64,4],[19,70,4],[19,76,3],[20,0,3],[20,6,3],[20,13,2],[20,18,3],[20,24,4],[20,29,21],[20,51,4],[20,58,4],[20,65,2],[20,71,2],[20,76,3],[21,0,3],[21,7,2],[21,18,3],[21,25,3],[21,29,21],[21,51,3],[21,58,3],[21,65,2],[21,71,2],[21,76,3],[22,1,2],[22,19,2],[22,25,2],[22,28,25],[22,58,2],[22,71,1],[22,76,3],[23,1,2],[23,26,5],[23,33,20],[23,58,1],[23,76,2],[24,23,8],[24,32,15],[24,48,8],[24,77,1],[25,15,4],[25,21,7],[25,32,15],[25,50,13],[26,14,11],[26,32,15],[26,54,9],[27,8,14],[27,31,17],[27,58,11],[28,9,8],[28,30,19],[28,62,7],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,29,26],[6,30,25],[7,30,26],[8,28,26],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,2],[13,36,6],[13,43,1],[13,50,5],[14,5,8],[14,33,13],[14,50,4],[14,67,6],[15,3,4],[15,9,8],[15,31,16],[15,63,12],[16,0,7],[16,11,18],[16,30,19],[16,50,2],[16,54,1],[16,58,10],[16,72,6],[17,0,3],[17,4,5],[17,10,5],[17,17,45],[17,64,5],[17,71,8],[18,0,1],[18,4,5],[18,11,4],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,5],[18,70,5],[18,77,2],[19,0,3],[19,5,3],[19,12,2],[19,16,5],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,65,3],[19,71,3],[19,77,2],[20,0,3],[20,6,2],[20,12,2],[20,18,3],[20,24,4],[20,29,21],[20,51,4],[20,58,4],[20,65,2],[20,71,3],[20,76,3],[21,0,3],[21,7,1],[21,13,1],[21,18,3],[21,25,2],[21,29,21],[21,51,3],[21,58,3],[21,65,2],[21,71,2],[21,76,3],[22,0,3],[22,19,2],[22,25,2],[22,28,22],[22,51,2],[22,58,2],[22,71,1],[22,77,2],[23,1,1],[23,26,6],[23,33,20],[23,58,1],[23,77,2],[24,23,8],[24,32,14],[24,48,8],[24,77,1],[25,16,2],[25,21,7],[25,32,15],[25,50,13],[26,14,11],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,58,11],[28,9,8],[28,30,19],[28,62,8],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,29,26],[6,30,25],[7,30,26],[8,28,26],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,2],[13,36,6],[13,43,1],[13,50,5],[14,5,8],[14,33,13],[14,50,4],[14,67,6],[15,3,4],[15,9,8],[15,31,16],[15,63,12],[16,0,7],[16,11,18],[16,30,19],[16,50,2],[16,54,1],[16,58,10],[16,72,6],[17,0,3],[17,4,5],[17,10,5],[17,17,45],[17,64,5],[17,71,8],[18,0,1],[18,4,4],[18,11,3],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,64,5],[18,70,5],[18,77,2],[19,0,3],[19,5,3],[19,11,3],[19,16,5],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,65,3],[19,71,3],[19,77,2],[20,0,3],[20,6,2],[20,12,2],[20,17,4],[20,24,4],[20,29,21],[20,51,4],[20,58,4],[20,65,2],[20,71,3],[20,76,3],[21,0,2],[21,6,2],[21,13,1],[21,18,3],[21,24,3],[21,29,21],[21,51,3],[21,58,3],[21,65,2],[21,71,2],[21,77,2],[22,0,2],[22,19,2],[22,25,2],[22,28,22],[22,51,2],[22,58,3],[22,72,1],[22,77,2],[23,1,1],[23,26,27],[23,77,2],[24,23,8],[24,32,15],[24,48,8],[24,78,1],[25,21,7],[25,32,15],[25,50,14],[26,14,11],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,58,10],[28,9,9],[28,30,19],[28,61,9],[29,29,21],[30,29,21]],[[2,33,13],[3,31,17],[4,30,23],[5,29,26],[6,30,25],[7,30,26],[8,27,28],[9,27,21],[9,49,5],[10,31,24],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,2],[13,36,6],[13,50,5],[14,5,8],[14,33,13],[14,50,4],[14,67,6],[15,3,4],[15,9,8],[15,31,16],[15,63,12],[16,0,7],[16,10,19],[16,30,19],[16,50,2],[16,54,1],[16,59,9],[16,72,6],[17,0,8],[17,10,4],[17,17,45],[17,65,4],[17,71,8],[18,0,1],[18,4,4],[18,10,4],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,65,4],[18,71,4],[18,77,2],[19,0,2],[19,5,3],[19,11,3],[19,16,5],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,65,3],[19,71,4],[19,77,2],[20,0,2],[20,5,3],[20,12,2],[20,17,4],[20,23,5],[20,29,21],[20,51,4],[20,58,4],[20,65,3],[20,71,3],[20,77,2],[21,0,2],[21,6,2],[21,13,1],[21,18,3],[21,24,3],[21,28,22],[21,51,4],[21,58,3],[21,66,1],[21,72,2],[21,77,2],[22,0,2],[22,18,2],[22,25,2],[22,28,22],[22,51,3],[22,59,2],[22,72,1],[22,77,2],[23,0,2],[23,26,27],[23,59,1],[23,78,1],[24,23,8],[24,32,14],[24,48,8],[24,78,1],[25,21,7],[25,32,15],[25,50,14],[26,14,11],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,58,9],[28,8,10],[28,30,19],[28,61,9],[29,29,21],[30,29,21]],[[2,33,13],[3,30,18],[4,30,23],[5,29,26],[6,30,25],[7,30,26],[8,27,28],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,8],[14,33,13],[14,50,4],[14,67,6],[15,3,4],[15,8,9],[15,31,16],[15,63,12],[16,0,7],[16,10,19],[16,30,19],[16,50,2],[16,54,1],[16,59,9],[16,72,6],[17,0,8],[17,10,4],[17,17,45],[17,65,4],[17,71,8],[18,0,1],[18,4,4],[18,10,4],[18,17,4],[18,23,4],[18,29,21],[18,52,4],[18,58,4],[18,65,4],[18,71,4],[18,77,2],[19,0,2],[19,4,4],[19,11,3],[19,16,5],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,65,3],[19,71,4],[19,77,2],[20,0,2],[20,5,3],[20,11,3],[20,17,4],[20,23,5],[20,29,21],[20,51,5],[20,58,4],[20,66,2],[20,72,2],[20,77,2],[21,0,2],[21,6,1],[21,12,1],[21,18,2],[21,24,3],[21,28,22],[21,51,4],[21,59,3],[21,66,2],[21,72,2],[21,77,2],[22,0,2],[22,18,2],[22,25,2],[22,28,22],[22,51,3],[22,59,2],[22,73,1],[22,78,1],[23,0,1],[23,25,28],[23,59,1],[23,78,1],[24,23,8],[24,32,14],[24,48,8],[25,21,7],[25,32,15],[25,50,14],[26,14,11],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,58,9],[28,8,10],[28,30,19],[28,61,9],[29,13,1],[29,29,21],[29,65,1],[30,29,21]],[[2,33,13],[3,30,18],[4,30,23],[5,29,25],[6,30,25],[7,30,26],[8,27,28],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,6],[12,33,12],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,8],[14,33,13],[14,50,4],[14,67,7],[15,3,4],[15,8,8],[15,31,16],[15,63,13],[16,0,7],[16,10,19],[16,30,19],[16,50,2],[16,54,1],[16,59,10],[16,72,6],[17,0,8],[17,10,4],[17,17,45],[17,65,4],[17,71,8],[18,0,1],[18,4,4],[18,10,4],[18,17,4],[18,23,4],[18,28,23],[18,52,4],[18,58,4],[18,65,4],[18,71,4],[18,77,2],[19,0,2],[19,4,4],[19,11,3],[19,16,5],[19,23,5],[19,29,21],[19,51,5],[19,58,5],[19,65,4],[19,71,4],[19,77,2],[20,0,2],[20,5,2],[20,11,2],[20,17,4],[20,23,4],[20,29,21],[20,51,5],[20,58,5],[20,66,2],[20,72,3],[20,77,2],[21,0,2],[21,6,1],[21,12,1],[21,17,3],[21,24,3],[21,28,22],[21,51,4],[21,59,3],[21,66,2],[21,72,2],[21,77,2],[22,0,2],[22,18,2],[22,25,2],[22,28,23],[22,52,2],[22,59,3],[22,73,1],[22,78,1],[23,0,1],[23,26,28],[23,59,2],[24,23,8],[24,32,14],[24,48,8],[25,21,8],[25,32,15],[25,50,14],[26,14,12],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,58,9],[28,8,10],[28,30,19],[28,61,9],[29,12,2],[29,29,21],[29,65,1],[30,29,21]],[[2,32,14],[3,30,18],[4,30,23],[5,29,25],[6,30,25],[7,30,26],[8,27,27],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,7],[12,33,12],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,50,4],[14,67,7],[15,3,4],[15,8,8],[15,31,16],[15,63,13],[16,0,6],[16,10,19],[16,30,19],[16,50,2],[16,53,2],[16,59,10],[16,72,6],[17,0,8],[17,10,4],[17,17,45],[17,65,4],[17,71,8],[18,0,1],[18,4,4],[18,10,4],[18,16,4],[18,23,4],[18,28,23],[18,52,4],[18,59,3],[18,65,4],[18,71,4],[18,77,2],[19,0,2],[19,4,3],[19,10,3],[19,16,5],[19,22,6],[19,29,21],[19,51,5],[19,58,5],[19,65,4],[19,71,4],[19,78,1],[20,0,2],[20,5,2],[20,11,2],[20,17,3],[20,23,4],[20,29,21],[20,51,5],[20,58,5],[20,66,2],[20,72,3],[20,77,2],[21,0,2],[21,5,2],[21,12,1],[21,17,3],[21,24,3],[21,28,22],[21,52,3],[21,59,3],[21,66,3],[21,73,2],[21,78,1],[22,0,1],[22,18,2],[22,25,2],[22,28,23],[22,52,2],[22,59,3],[22,73,1],[22,78,1],[23,0,1],[23,26,28],[23,60,1],[24,23,8],[24,32,14],[24,48,8],[25,21,8],[25,32,15],[25,50,14],[26,14,12],[26,32,15],[26,54,10],[27,8,14],[27,31,17],[27,57,9],[27,68,1],[28,8,10],[28,30,19],[28,61,9],[29,12,3],[29,29,21],[29,65,2],[30,29,21]],[[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,26],[7,30,26],[8,27,27],[9,27,21],[9,49,5],[10,30,25],[11,32,16],[11,49,7],[12,32,13],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,50,4],[14,67,7],[15,3,4],[15,8,8],[15,31,16],[15,63,13],[16,0,6],[16,10,11],[16,23,6],[16,30,19],[16,50,4],[16,59,9],[16,73,5],[17,0,8],[17,10,4],[17,17,45],[17,65,4],[17,71,8],[18,0,1],[18,3,5],[18,10,4],[18,16,4],[18,23,4],[18,28,23],[18,52,4],[18,59,3],[18,65,4],[18,71,5],[18,77,2],[19,0,2],[19,4,3],[19,10,3],[19,16,5],[19,22,5],[19,29,21],[19,51,5],[19,58,5],[19,66,3],[19,72,3],[19,78,1],[20,0,2],[20,4,3],[20,11,2],[20,16,4],[20,23,4],[20,29,21],[20,51,5],[20,59,4],[20,66,3],[20,72,3],[20,77,2],[21,0,2],[21,5,1],[21,11,1],[21,17,3],[21,24,3],[21,28,23],[21,52,3],[21,59,4],[21,67,2],[21,73,2],[21,78,1],[22,0,1],[22,17,2],[22,25,2],[22,28,23],[22,52,2],[22,59,3],[22,67,1],[22,73,1],[22,78,1],[23,0,1],[23,25,29],[23,60,2],[24,23,8],[24,32,14],[24,48,8],[25,21,8],[25,32,15],[25,50,13],[26,14,12],[26,32,15],[26,53,11],[27,8,15],[27,31,17],[27,57,9],[28,8,10],[28,30,19],[28,61,9],[29,12,1],[29,14,1],[29,29,21],[29,65,2],[30,29,21]],[[1,36,1],[1,42,1],[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,26],[7,29,27],[8,27,27],[9,28,20],[9,49,6],[10,30,25],[11,32,16],[11,49,7],[12,33,12],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,50,4],[14,67,7],[15,3,3],[15,8,8],[15,31,16],[15,63,13],[16,0,6],[16,10,11],[16,23,6],[16,30,24],[16,59,10],[16,73,5],[17,0,8],[17,9,5],[17,17,45],[17,65,4],[17,72,7],[18,0,1],[18,3,5],[18,10,4],[18,16,4],[18,23,4],[18,28,23],[18,52,4],[18,59,4],[18,65,4],[18,71,5],[18,77,2],[19,0,2],[19,4,3],[19,10,3],[19,15,6],[19,22,5],[19,28,22],[19,51,5],[19,58,5],[19,66,3],[19,72,4],[19,78,1],[20,0,2],[20,4,3],[20,10,3],[20,17,3],[20,23,4],[20,29,21],[20,52,4],[20,59,4],[20,66,3],[20,72,3],[20,77,2],[21,0,1],[21,5,1],[21,11,1],[21,16,4],[21,24,3],[21,28,23],[21,52,3],[21,59,4],[21,67,2],[21,73,2],[21,78,1],[22,0,1],[22,17,2],[22,24,3],[22,28,23],[22,52,2],[22,60,2],[22,74,1],[23,18,1],[23,26,28],[23,60,1],[24,23,8],[24,32,14],[24,48,8],[25,21,8],[25,32,15],[25,50,13],[26,14,12],[26,32,15],[26,53,11],[27,8,15],[27,31,17],[27,57,9],[28,8,10],[28,30,19],[28,61,9],[29,11,2],[29,14,1],[29,29,21],[29,64,3],[30,29,21]],[[1,35,2],[1,42,1],[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,25],[7,29,27],[8,27,27],[9,28,20],[9,49,6],[10,30,25],[11,31,17],[11,49,7],[12,33,2],[12,36,9],[12,49,7],[13,7,1],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,51,3],[14,67,7],[15,3,3],[15,8,8],[15,31,16],[15,63,13],[16,0,6],[16,10,10],[16,23,6],[16,30,19],[16,50,4],[16,59,10],[16,73,5],[17,0,8],[17,9,5],[17,16,47],[17,65,5],[17,72,7],[18,0,1],[18,3,5],[18,9,5],[18,16,4],[18,23,4],[18,28,23],[18,52,4],[18,59,4],[18,65,5],[18,71,5],[18,78,1],[19,0,2],[19,4,3],[19,10,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,58,6],[19,66,3],[19,72,4],[19,78,1],[20,0,2],[20,4,2],[20,10,2],[20,16,4],[20,23,4],[20,29,21],[20,52,4],[20,59,4],[20,66,3],[20,73,2],[20,78,1],[21,0,1],[21,4,2],[21,11,1],[21,17,3],[21,24,3],[21,28,23],[21,52,4],[21,59,3],[21,67,2],[21,73,2],[21,78,1],[22,0,1],[22,17,2],[22,24,2],[22,28,23],[22,52,3],[22,60,3],[22,74,1],[23,25,29],[23,60,2],[24,23,8],[24,32,14],[24,48,8],[25,21,8],[25,32,15],[25,50,13],[26,14,12],[26,32,15],[26,53,11],[27,7,2],[27,11,12],[27,31,17],[27,57,9],[28,8,10],[28,30,19],[28,61,9],[29,11,2],[29,14,1],[29,29,21],[29,64,4],[30,29,21]],[[1,34,1],[1,38,1],[1,42,2],[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,25],[7,28,28],[8,27,21],[8,49,5],[9,28,27],[10,30,25],[11,31,17],[11,49,7],[12,33,1],[12,36,9],[12,49,6],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,51,3],[14,67,7],[15,3,13],[15,31,16],[15,63,13],[16,0,6],[16,10,10],[16,24,5],[16,30,19],[16,50,4],[16,59,10],[16,73,5],[17,0,7],[17,9,5],[17,16,47],[17,65,5],[17,72,7],[18,0,1],[18,3,4],[18,9,4],[18,16,4],[18,23,4],[18,28,23],[18,52,4],[18,59,4],[18,65,5],[18,72,4],[18,78,1],[19,0,1],[19,3,4],[19,10,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,3],[19,72,4],[19,78,1],[20,0,2],[20,4,2],[20,10,2],[20,16,4],[20,23,4],[20,29,21],[20,52,4],[20,59,4],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,4,2],[21,10,2],[21,17,2],[21,23,4],[21,28,23],[21,52,4],[21,59,3],[21,67,3],[21,73,2],[21,78,1],[22,16,3],[22,24,2],[22,28,23],[22,53,2],[22,60,3],[22,74,1],[23,25,29],[23,61,2],[24,23,8],[24,32,14],[24,48,7],[25,21,8],[25,32,15],[25,50,12],[26,14,12],[26,32,15],[26,53,11],[27,8,1],[27,12,11],[27,31,17],[27,57,9],[28,8,11],[28,30,19],[28,61,10],[29,11,4],[29,29,21],[29,64,4],[30,29,21]],[[1,34,1],[1,40,1],[1,42,1],[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,25],[7,27,28],[8,27,21],[8,49,5],[9,28,27],[10,30,25],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,49,6],[13,36,6],[13,50,5],[14,5,7],[14,33,13],[14,51,3],[14,67,7],[15,3,13],[15,31,16],[15,63,13],[16,0,6],[16,10,10],[16,24,25],[16,50,4],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,65,5],[17,72,7],[18,0,1],[18,3,4],[18,9,4],[18,16,4],[18,22,5],[18,28,23],[18,52,4],[18,59,4],[18,65,5],[18,72,4],[19,0,1],[19,3,4],[19,10,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,3],[19,72,4],[19,78,1],[20,0,1],[20,4,2],[20,10,2],[20,15,5],[20,22,5],[20,29,21],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,4,2],[21,10,1],[21,17,2],[21,23,3],[21,28,23],[21,52,4],[21,60,3],[21,67,3],[21,74,2],[21,78,1],[22,4,1],[22,16,3],[22,24,2],[22,27,24],[22,53,3],[22,60,3],[22,74,1],[23,17,1],[23,25,30],[23,61,2],[24,23,8],[24,32,14],[24,48,7],[25,21,8],[25,32,15],[25,50,12],[26,14,12],[26,32,15],[26,53,11],[27,8,1],[27,12,11],[27,31,17],[27,57,9],[28,7,12],[28,30,19],[28,61,10],[29,10,3],[29,14,1],[29,29,21],[29,64,4],[30,29,21]],[[1,34,1],[1,38,1],[1,42,1],[2,32,15],[3,30,18],[4,30,24],[5,29,26],[6,30,25],[7,27,28],[8,26,22],[8,49,5],[9,28,27],[10,30,25],[11,31,17],[11,49,7],[12,33,12],[12,50,5],[13,36,6],[13,50,5],[14,5,6],[14,33,13],[14,51,3],[14,68,6],[15,3,13],[15,31,16],[15,63,13],[16,0,6],[16,10,10],[16,24,5],[16,30,19],[16,50,4],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,65,5],[17,72,7],[18,0,1],[18,3,4],[18,9,4],[18,16,4],[18,22,4],[18,28,23],[18,52,4],[18,59,4],[18,65,5],[18,72,4],[19,0,1],[19,3,4],[19,9,4],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,10,2],[20,15,5],[20,22,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,4,1],[21,9,2],[21,16,3],[21,23,3],[21,28,23],[21,52,4],[21,60,3],[21,67,3],[21,74,2],[21,78,1],[22,4,1],[22,16,3],[22,23,3],[22,27,24],[22,53,3],[22,60,3],[22,68,1],[22,74,1],[23,16,2],[23,25,30],[23,61,2],[24,23,8],[24,32,14],[24,48,7],[25,21,8],[25,32,15],[25,50,8],[25,59,3],[26,14,12],[26,32,15],[26,53,11],[27,12,11],[27,31,17],[27,57,8],[28,7,12],[28,30,19],[28,61,10],[29,10,3],[29,14,1],[29,29,21],[29,64,5],[30,29,21]],[[1,34,1],[1,36,1],[1,42,1],[2,31,16],[3,30,18],[4,29,26],[5,29,26],[6,30,24],[7,27,27],[8,26,22],[8,49,6],[9,28,27],[10,30,25],[11,31,17],[11,49,6],[12,33,12],[12,50,5],[13,36,6],[13,50,5],[14,5,6],[14,33,13],[14,51,2],[14,68,6],[15,3,12],[15,31,16],[15,63,13],[16,0,6],[16,10,10],[16,24,4],[16,30,19],[16,50,4],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,66,4],[17,72,7],[18,3,4],[18,9,4],[18,16,4],[18,23,3],[18,28,23],[18,52,4],[18,59,4],[18,66,4],[18,72,4],[19,0,1],[19,3,4],[19,9,4],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,10,2],[20,15,5],[20,22,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,4,1],[21,9,2],[21,16,3],[21,23,3],[21,28,23],[21,53,3],[21,60,3],[21,68,2],[21,74,2],[21,78,1],[22,4,1],[22,16,2],[22,23,3],[22,27,24],[22,53,3],[22,60,3],[22,68,1],[22,74,1],[23,16,2],[23,24,1],[23,26,27],[23,54,2],[23,61,2],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,50,8],[25,59,2],[26,14,12],[26,32,15],[26,53,11],[27,8,1],[27,12,11],[27,31,17],[27,56,9],[28,7,12],[28,30,19],[28,61,9],[29,10,3],[29,14,1],[29,29,21],[29,63,6],[30,29,21]],[[1,34,1],[1,40,1],[1,44,1],[2,31,16],[3,30,18],[3,52,1],[4,29,26],[5,29,26],[6,29,25],[7,27,27],[8,26,22],[8,49,6],[9,28,27],[10,30,25],[11,31,17],[11,49,6],[12,33,12],[12,50,5],[13,36,6],[13,50,5],[14,5,6],[14,33,13],[14,51,2],[14,68,6],[15,3,12],[15,31,16],[15,64,12],[16,0,6],[16,10,9],[16,25,3],[16,30,19],[16,51,3],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,66,4],[17,72,7],[18,3,4],[18,9,4],[18,16,4],[18,23,3],[18,28,23],[18,53,3],[18,59,4],[18,66,4],[18,72,4],[19,0,1],[19,3,4],[19,9,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,22,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,10,1],[21,15,4],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[21,78,1],[22,16,2],[22,23,3],[22,27,24],[22,53,3],[22,60,3],[22,68,1],[22,74,1],[23,17,1],[23,24,1],[23,26,27],[23,54,2],[23,61,2],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,50,8],[25,60,1],[26,14,12],[26,32,15],[26,53,11],[27,13,10],[27,31,17],[27,56,9],[28,7,12],[28,30,19],[28,60,11],[29,9,6],[29,29,21],[29,64,5],[30,29,21]],[[1,34,1],[1,38,1],[1,40,1],[1,44,1],[2,31,16],[3,30,18],[3,51,3],[4,29,26],[5,29,26],[6,29,25],[7,27,27],[8,26,22],[8,49,6],[9,28,27],[10,30,25],[11,31,17],[11,49,7],[12,33,12],[12,50,5],[13,36,6],[13,50,5],[14,4,7],[14,33,13],[14,51,2],[14,68,6],[15,2,13],[15,31,16],[15,64,12],[16,0,6],[16,10,9],[16,25,3],[16,30,19],[16,51,3],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,66,4],[17,72,7],[18,2,5],[18,9,4],[18,16,4],[18,23,3],[18,28,23],[18,53,4],[18,59,4],[18,66,4],[18,72,4],[18,78,1],[19,0,1],[19,3,3],[19,9,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,22,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,10,1],[21,15,4],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[21,78,1],[22,16,2],[22,23,2],[22,27,24],[22,53,3],[22,61,2],[22,68,1],[22,74,1],[23,17,1],[23,23,2],[23,26,26],[23,54,2],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,13],[26,32,15],[26,53,11],[27,13,10],[27,31,17],[27,56,9],[28,7,13],[28,30,19],[28,60,11],[29,9,5],[29,29,21],[29,64,5],[30,29,21]],[[1,33,2],[1,36,1],[1,40,1],[1,42,1],[1,44,1],[2,31,16],[3,30,18],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,27,27],[8,26,22],[8,49,6],[9,28,27],[10,30,26],[11,31,17],[11,49,6],[12,32,13],[12,50,5],[13,36,6],[13,50,5],[14,4,7],[14,33,13],[14,51,2],[14,68,6],[15,2,13],[15,31,16],[15,64,13],[16,0,6],[16,9,10],[16,25,3],[16,30,19],[16,51,3],[16,59,10],[16,73,6],[17,0,7],[17,9,4],[17,16,47],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,9,4],[18,16,3],[18,23,3],[18,28,23],[18,53,4],[18,59,4],[18,66,4],[18,72,4],[18,78,1],[19,3,3],[19,9,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,22,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,15,4],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[22,15,3],[22,23,2],[22,27,24],[22,54,2],[22,61,2],[22,68,1],[22,74,1],[23,17,1],[23,24,1],[23,26,26],[23,54,2],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,13],[26,32,15],[26,53,11],[27,13,10],[27,31,17],[27,56,9],[28,7,13],[28,30,19],[28,60,11],[29,9,6],[29,29,21],[29,64,5],[30,29,21]],[[1,33,2],[1,36,1],[1,38,5],[1,44,1],[2,31,16],[3,30,19],[3,52,2],[4,29,26],[5,29,26],[6,29,26],[7,27,28],[8,26,22],[8,49,6],[9,28,27],[10,30,25],[11,31,17],[11,49,6],[12,32,13],[12,50,5],[13,36,6],[13,50,5],[14,4,7],[14,33,13],[14,51,2],[14,68,7],[15,2,13],[15,31,16],[15,64,13],[16,0,5],[16,10,8],[16,25,3],[16,30,19],[16,51,3],[16,60,9],[16,73,6],[17,0,7],[17,9,4],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,9,4],[18,16,3],[18,23,3],[18,28,23],[18,53,3],[18,59,4],[18,66,4],[18,72,5],[18,78,1],[19,2,4],[19,9,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,22,4],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[21,78,1],[22,3,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,61,2],[22,68,1],[22,74,1],[23,16,2],[23,24,1],[23,26,26],[23,54,2],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,13],[26,32,15],[26,53,12],[27,13,10],[27,31,17],[27,56,9],[28,7,13],[28,30,19],[28,60,11],[29,9,6],[29,29,21],[29,64,6],[30,29,21]],[[1,33,1],[1,35,8],[1,44,1],[2,31,16],[3,30,19],[4,29,26],[5,29,26],[6,29,26],[7,27,28],[8,26,22],[8,49,6],[9,28,27],[10,30,26],[11,31,17],[11,49,6],[12,32,13],[12,50,5],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,2],[14,68,7],[15,2,13],[15,31,16],[15,64,13],[16,0,5],[16,10,8],[16,25,3],[16,30,19],[16,51,3],[16,60,9],[16,73,6],[17,0,7],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,23,3],[18,28,23],[18,53,3],[18,59,4],[18,66,4],[18,72,5],[18,78,1],[19,2,4],[19,9,3],[19,15,5],[19,22,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,22,4],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[22,3,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,61,2],[22,74,1],[23,16,2],[23,23,2],[23,26,26],[23,54,2],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,13],[26,31,16],[26,52,13],[27,13,10],[27,31,17],[27,56,9],[28,7,13],[28,30,19],[28,60,11],[29,8,7],[29,29,21],[29,64,6],[30,29,21]],[[1,33,12],[2,31,16],[3,30,19],[4,29,26],[5,29,26],[6,29,26],[7,27,28],[8,26,22],[8,49,6],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,5],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,2],[14,68,7],[15,2,13],[15,31,16],[15,64,13],[16,0,5],[16,9,9],[16,25,3],[16,30,19],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,23,3],[18,28,23],[18,53,3],[18,59,4],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,68,2],[21,74,2],[22,3,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,61,2],[22,74,1],[23,16,2],[23,22,2],[23,26,26],[23,54,3],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,14],[26,31,16],[26,52,13],[27,13,10],[27,31,17],[27,56,9],[28,7,13],[28,30,19],[28,60,10],[29,8,7],[29,29,21],[29,64,6],[30,29,21]],[[1,34,11],[2,31,16],[3,30,19],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,5],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,2],[14,68,7],[15,2,12],[15,31,16],[15,64,13],[16,0,5],[16,9,9],[16,25,3],[16,30,19],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,59,4],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,67,3],[21,73,2],[22,3,2],[22,10,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,61,2],[22,74,1],[23,16,2],[23,22,2],[23,26,26],[23,54,3],[23,61,1],[24,24,7],[24,32,15],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,14],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,56,9],[28,6,14],[28,30,19],[28,60,10],[29,8,7],[29,29,21],[29,64,6],[30,29,21]],[[1,34,10],[2,31,16],[3,30,19],[3,52,2],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,5],[13,36,6],[13,50,4],[13,72,1],[14,4,6],[14,33,13],[14,51,2],[14,68,7],[15,2,12],[15,31,16],[15,64,13],[16,0,5],[16,9,9],[16,25,3],[16,30,19],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,59,4],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,4],[21,67,3],[21,73,2],[21,78,1],[22,3,2],[22,10,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[22,74,1],[23,16,2],[23,22,2],[23,26,26],[23,55,2],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,21,8],[25,32,15],[25,49,9],[26,13,14],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,56,9],[28,6,14],[28,30,19],[28,60,11],[29,8,7],[29,29,21],[29,63,8],[30,29,21]],[[1,33,12],[2,31,16],[3,30,19],[3,52,2],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,5],[13,36,6],[13,50,4],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,73,4],[16,0,5],[16,9,9],[16,25,3],[16,30,19],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,14,6],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[19,78,1],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,22],[20,53,4],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,0,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,3,2],[22,10,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[22,74,1],[23,16,2],[23,22,2],[23,26,26],[23,55,2],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,32,15],[25,49,9],[26,13,5],[26,19,8],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,56,9],[28,6,15],[28,30,19],[28,60,11],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,33,12],[2,31,17],[3,30,19],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,5],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,73,4],[16,0,5],[16,9,8],[16,25,2],[16,30,19],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,22],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,10,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[22,74,1],[23,16,2],[23,22,2],[23,26,26],[23,55,2],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,32,15],[25,49,9],[26,13,5],[26,19,8],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,7,14],[28,30,19],[28,60,12],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,33,12],[2,31,17],[3,30,19],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,74,3],[16,0,5],[16,9,8],[16,25,2],[16,29,20],[16,51,3],[16,61,9],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,14,6],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,23],[20,53,4],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,3,2],[21,9,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,10,1],[22,15,3],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[23,16,2],[23,22,2],[23,27,25],[23,55,2],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,31,16],[25,49,9],[26,13,5],[26,19,8],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,7,14],[28,30,19],[28,60,11],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,32,13],[2,30,18],[3,29,20],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,74,3],[16,0,5],[16,9,8],[16,25,2],[16,29,20],[16,51,3],[16,61,9],[16,74,5],[17,0,6],[17,8,5],[17,15,48],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,23],[20,53,4],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,3,2],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,10,1],[22,16,2],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[22,73,1],[23,16,2],[23,22,2],[23,27,25],[23,54,2],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,31,16],[25,49,9],[26,13,5],[26,19,8],[26,31,17],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,7,14],[28,30,19],[28,60,12],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,32,13],[2,30,18],[3,29,20],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,33,2],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,74,3],[16,0,5],[16,9,8],[16,25,2],[16,29,20],[16,51,3],[16,60,10],[16,74,5],[17,0,6],[17,8,5],[17,15,49],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,3,3],[20,9,3],[20,15,4],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,10,1],[22,16,3],[22,22,3],[22,27,24],[22,54,3],[22,60,3],[22,73,1],[23,16,2],[23,22,2],[23,27,25],[23,55,1],[23,61,2],[24,24,7],[24,32,14],[24,48,7],[25,22,8],[25,31,16],[25,49,9],[26,13,5],[26,19,8],[26,31,17],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,7,14],[28,30,19],[28,60,11],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,32,13],[2,30,18],[3,29,20],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,33,2],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[13,72,1],[14,4,6],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,8],[15,74,4],[16,0,5],[16,9,8],[16,25,2],[16,29,20],[16,51,3],[16,61,9],[16,74,5],[17,0,6],[17,8,5],[17,15,49],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,3],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,15,5],[19,21,5],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,3,3],[20,9,3],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,67,2],[20,73,3],[20,78,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,10,1],[22,16,3],[22,22,3],[22,27,24],[22,54,3],[22,60,2],[22,73,1],[23,16,2],[23,22,3],[23,27,25],[23,54,2],[23,60,2],[24,17,1],[24,24,7],[24,32,14],[24,48,7],[25,22,8],[25,32,15],[25,49,9],[26,13,5],[26,19,8],[26,31,16],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,7,14],[28,30,19],[28,59,12],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,32,13],[2,30,18],[3,29,20],[3,51,3],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,49,6],[10,30,26],[11,31,17],[11,49,7],[12,33,2],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[14,4,5],[14,33,13],[14,51,3],[14,68,7],[15,2,12],[15,31,17],[15,64,9],[15,74,4],[16,0,5],[16,9,8],[16,25,2],[16,30,19],[16,51,3],[16,61,9],[16,74,5],[17,0,6],[17,8,5],[17,14,50],[17,66,4],[17,72,7],[18,0,1],[18,2,5],[18,8,5],[18,16,4],[18,22,4],[18,27,24],[18,53,3],[18,60,3],[18,66,4],[18,72,5],[19,2,4],[19,9,4],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,3,3],[20,9,3],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,66,3],[20,73,3],[20,78,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[21,78,1],[22,4,1],[22,16,3],[22,22,3],[22,27,24],[22,54,3],[22,60,2],[22,73,1],[23,16,2],[23,22,3],[23,27,25],[23,54,2],[23,60,2],[24,17,1],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,32,15],[25,49,9],[26,13,5],[26,19,8],[26,31,17],[26,52,13],[27,13,11],[27,31,17],[27,55,10],[28,6,15],[28,30,19],[28,60,12],[29,7,9],[29,29,21],[29,63,8],[30,29,21]],[[1,33,13],[2,31,17],[3,29,20],[3,52,2],[4,29,26],[5,29,26],[6,29,26],[7,26,29],[8,26,29],[9,28,20],[9,50,5],[10,30,26],[11,31,17],[11,49,7],[12,32,3],[12,36,9],[12,50,6],[13,36,6],[13,50,5],[14,4,5],[14,33,13],[14,51,3],[14,69,6],[15,2,11],[15,31,16],[15,65,12],[16,0,5],[16,9,8],[16,30,19],[16,52,1],[16,62,8],[16,74,5],[17,0,6],[17,8,5],[17,14,50],[17,66,4],[17,73,6],[18,0,1],[18,2,5],[18,8,5],[18,16,36],[18,53,4],[18,59,4],[18,66,4],[18,72,5],[19,2,5],[19,9,4],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,66,3],[20,73,3],[20,78,1],[21,0,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,59,4],[21,67,2],[21,73,2],[21,78,1],[22,4,2],[22,11,1],[22,16,3],[22,22,3],[22,27,24],[22,53,4],[22,60,2],[22,67,1],[22,73,1],[23,16,2],[23,22,3],[23,27,25],[23,54,2],[23,60,2],[24,17,1],[24,24,7],[24,32,14],[24,48,7],[25,21,9],[25,32,15],[25,49,9],[26,12,15],[26,31,16],[26,52,14],[27,12,12],[27,31,17],[27,56,10],[28,5,15],[28,30,19],[28,60,12],[29,8,7],[29,29,21],[29,64,7],[30,29,21]],[[1,33,12],[2,31,16],[3,30,19],[4,29,26],[5,29,26],[6,29,26],[7,27,28],[8,26,29],[9,27,22],[9,50,5],[10,29,27],[11,31,17],[11,49,7],[12,32,14],[12,50,6],[13,37,5],[13,50,5],[14,4,4],[14,33,12],[14,51,3],[14,69,6],[15,2,11],[15,31,16],[15,65,12],[16,0,5],[16,8,9],[16,30,19],[16,62,8],[16,74,5],[17,0,6],[17,9,4],[17,14,50],[17,66,4],[17,73,6],[18,0,1],[18,2,5],[18,8,5],[18,16,47],[18,66,4],[18,72,5],[18,78,1],[19,2,5],[19,9,4],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,66,3],[20,72,4],[20,78,1],[21,0,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,59,4],[21,67,2],[21,73,2],[21,78,1],[22,4,2],[22,10,2],[22,16,3],[22,22,3],[22,27,24],[22,53,3],[22,60,2],[22,67,1],[22,73,1],[22,78,1],[23,16,3],[23,22,3],[23,27,25],[23,54,2],[23,60,2],[24,17,1],[24,24,22],[24,48,8],[25,12,3],[25,20,10],[25,32,15],[25,48,18],[26,12,15],[26,31,16],[26,52,14],[27,6,17],[27,31,17],[27,56,16],[28,6,13],[28,30,19],[28,61,11],[29,10,1],[29,29,21],[29,66,3],[30,29,21]],[[1,34,1],[1,40,1],[1,42,1],[1,44,1],[2,31,16],[3,30,18],[4,29,26],[5,29,26],[6,29,26],[7,28,27],[8,26,29],[9,27,22],[9,50,5],[10,30,26],[11,31,17],[11,49,7],[12,32,14],[12,50,6],[13,36,6],[13,50,6],[14,5,3],[14,34,10],[14,51,3],[14,70,4],[15,3,10],[15,31,16],[15,52,1],[15,65,11],[16,1,4],[16,8,8],[16,30,19],[16,62,8],[16,74,5],[17,0,6],[17,9,3],[17,13,52],[17,66,4],[17,73,6],[18,0,7],[18,8,5],[18,16,47],[18,66,4],[18,72,5],[18,78,1],[19,2,5],[19,9,4],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,4],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,66,3],[20,72,4],[20,78,1],[21,0,1],[21,3,3],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,59,4],[21,66,3],[21,73,2],[21,78,1],[22,4,2],[22,10,2],[22,16,3],[22,22,4],[22,27,24],[22,53,3],[22,60,2],[22,67,1],[22,73,1],[22,78,1],[23,17,2],[23,23,2],[23,27,25],[23,54,2],[23,60,2],[23,78,1],[24,23,23],[24,48,8],[25,12,6],[25,19,11],[25,32,15],[25,48,19],[26,5,2],[26,10,17],[26,31,16],[26,51,16],[26,72,1],[27,5,18],[27,31,17],[27,57,16],[28,7,9],[28,30,19],[28,63,9],[29,29,20],[30,29,21]],[[1,34,1],[1,40,1],[1,43,1],[2,31,16],[3,30,18],[4,29,25],[5,29,26],[6,29,26],[7,28,28],[8,26,29],[9,26,23],[9,50,5],[10,29,27],[11,30,18],[11,49,7],[12,32,14],[12,50,6],[13,36,6],[13,50,6],[14,4,5],[14,34,10],[14,51,4],[14,69,6],[15,2,11],[15,31,16],[15,53,1],[15,65,12],[16,0,5],[16,8,9],[16,30,19],[16,62,8],[16,74,5],[17,0,6],[17,9,4],[17,14,50],[17,66,4],[17,73,6],[18,0,1],[18,2,5],[18,9,4],[18,16,47],[18,66,4],[18,72,5],[19,2,5],[19,9,4],[19,15,5],[19,22,4],[19,28,23],[19,52,5],[19,59,5],[19,66,4],[19,72,4],[20,0,1],[20,3,3],[20,9,3],[20,15,5],[20,21,5],[20,28,23],[20,52,5],[20,59,5],[20,66,3],[20,72,4],[20,78,1],[21,0,1],[21,4,2],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,59,4],[21,67,2],[21,73,2],[21,78,1],[22,4,2],[22,10,2],[22,16,3],[22,22,4],[22,27,25],[22,53,3],[22,60,2],[22,67,1],[22,73,1],[23,17,2],[23,23,2],[23,26,26],[23,54,1],[23,60,2],[24,12,2],[24,23,23],[24,48,8],[24,64,3],[25,12,18],[25,32,15],[25,48,19],[26,5,23],[26,31,17],[26,50,23],[27,6,16],[27,31,17],[27,57,16],[28,11,3],[28,30,18],[28,65,5],[29,29,20],[30,29,21]],[[1,34,1],[2,31,16],[3,30,18],[4,29,25],[5,29,26],[6,29,27],[7,29,27],[8,26,29],[9,26,23],[9,50,5],[10,29,27],[11,31,17],[11,49,7],[12,32,14],[12,50,7],[13,5,3],[13,36,6],[13,43,2],[13,50,6],[13,69,6],[14,2,10],[14,35,10],[14,51,4],[14,66,11],[15,0,5],[15,8,8],[15,31,16],[15,53,1],[15,63,7],[15,74,5],[16,0,6],[16,9,12],[16,22,5],[16,30,19],[16,51,2],[16,55,15],[16,73,6],[17,0,1],[17,2,5],[17,8,5],[17,15,48],[17,66,4],[17,72,5],[18,2,5],[18,9,4],[18,15,4],[18,22,4],[18,27,24],[18,53,3],[18,59,5],[18,66,4],[18,72,5],[19,2,4],[19,9,3],[19,14,6],[19,21,5],[19,27,24],[19,52,5],[19,59,5],[19,66,3],[19,73,3],[20,3,3],[20,10,2],[20,15,4],[20,21,5],[20,27,24],[20,53,4],[20,59,5],[20,67,2],[20,73,2],[21,4,1],[21,10,2],[21,16,3],[21,22,4],[21,28,23],[21,53,4],[21,60,3],[21,67,2],[21,73,2],[22,4,1],[22,16,3],[22,22,3],[22,27,25],[22,53,3],[22,60,2],[23,16,2],[23,23,2],[23,26,26],[23,54,2],[23,60,1],[24,11,4],[24,24,31],[24,63,4],[25,5,2],[25,12,18],[25,32,15],[25,48,19],[25,72,1],[26,5,23],[26,31,17],[26,49,25],[27,6,17],[27,31,17],[27,56,17],[28,30,18],[28,67,3],[29,30,19],[30,29,21]],[[1,33,2],[1,40,1],[1,44,1],[2,31,17],[3,29,20],[4,29,25],[5,29,26],[6,29,27],[7,28,29],[8,26,29],[9,27,22],[9,50,5],[10,29,27],[11,31,17],[11,49,8],[12,5,4],[12,32,14],[12,50,7],[12,68,7],[13,2,11],[13,36,6],[13,43,2],[13,50,7],[13,65,13],[14,0,5],[14,9,7],[14,34,11],[14,51,4],[14,62,8],[14,73,6],[15,0,6],[15,9,10],[15,31,16],[15,52,3],[15,57,8],[15,66,4],[15,72,7],[16,2,5],[16,8,5],[16,15,34],[16,50,13],[16,66,4],[16,72,5],[17,2,4],[17,9,4],[17,15,4],[17,21,31],[17,53,3],[17,59,5],[17,66,4],[17,73,4],[18,2,4],[18,9,3],[18,14,6],[18,22,4],[18,28,23],[18,52,5],[18,59,5],[18,66,4],[18,73,3],[19,3,2],[19,9,3],[19,14,5],[19,21,5],[19,27,24],[19,52,5],[19,59,4],[19,67,2],[19,73,3],[20,3,2],[20,10,1],[20,16,3],[20,22,4],[20,27,24],[20,53,4],[20,60,3],[20,67,2],[20,74,1],[21,4,1],[21,10,1],[21,16,3],[21,22,3],[21,28,23],[21,53,4],[21,60,3],[21,74,1],[22,16,2],[22,22,3],[22,27,25],[22,54,2],[22,61,2],[23,17,1],[23,26,26],[23,54,1],[23,66,1],[24,11,3],[24,24,30],[24,63,4],[25,4,4],[25,12,6],[25,20,10],[25,31,16],[25,48,19],[25,71,4],[26,5,24],[26,31,17],[26,49,25],[27,6,19],[27,31,17],[27,54,18],[28,8,11],[28,31,17],[28,62,9],[29,30,19],[30,29,21]],[[1,33,12],[2,31,17],[3,30,19],[4,29,26],[5,29,28],[6,29,28],[7,27,30],[8,26,31],[9,27,22],[9,50,5],[10,29,28],[10,70,1],[11,5,5],[11,31,18],[11,50,7],[11,67,8],[12,1,12],[12,33,13],[12,50,7],[12,64,7],[12,72,7],[13,0,6],[13,9,7],[13,36,6],[13,43,2],[13,50,7],[13,62,7],[13,73,6],[14,0,7],[14,9,10],[14,33,11],[14,51,5],[14,57,7],[14,65,5],[14,72,5],[15,2,5],[15,9,4],[15,16,12],[15,31,16],[15,50,13],[15,65,5],[15,72,5],[16,2,4],[16,9,4],[16,15,5],[16,21,35],[16,59,5],[16,66,4],[16,73,3],[17,3,3],[17,9,3],[17,14,6],[17,22,4],[17,28,23],[17,52,5],[17,59,5],[17,66,3],[17,73,3],[18,3,2],[18,9,3],[18,15,4],[18,21,30],[18,52,5],[18,59,4],[18,67,3],[18,74,2],[19,3,2],[19,10,1],[19,16,3],[19,22,4],[19,27,24],[19,53,4],[19,60,4],[19,68,2],[19,74,1],[20,10,1],[20,15,3],[20,22,4],[20,27,24],[20,53,4],[20,60,3],[21,16,2],[21,22,3],[21,27,24],[21,54,2],[21,61,2],[22,23,2],[22,26,26],[22,54,2],[23,26,26],[24,11,3],[24,25,6],[24,32,21],[24,64,4],[25,4,3],[25,12,4],[25,21,9],[25,31,16],[25,48,10],[25,62,5],[25,71,4],[26,5,24],[26,31,17],[26,49,25],[27,6,20],[27,31,17],[27,52,21],[28,7,14],[28,30,18],[28,58,14],[29,30,19],[29,64,1],[30,29,21]],[[1,33,14],[2,31,18],[3,30,20],[4,30,25],[5,30,26],[6,30,27],[7,27,31],[8,27,31],[9,29,20],[9,50,6],[10,8,2],[10,30,19],[10,50,7],[10,67,6],[11,4,9],[11,32,17],[11,50,7],[11,64,15],[12,0,7],[12,10,6],[12,33,2],[12,36,10],[12,50,7],[12,61,7],[12,72,7],[13,0,7],[13,10,9],[13,36,6],[13,50,14],[13,65,4],[13,71,5],[13,78,1],[14,0,1],[14,3,4],[14,9,5],[14,16,12],[14,32,13],[14,50,12],[14,65,5],[14,72,4],[14,78,1],[15,0,1],[15,3,4],[15,9,4],[15,16,40],[15,59,4],[15,66,3],[15,72,4],[15,78,1],[16,3,3],[16,9,4],[16,15,5],[16,23,4],[16,28,22],[16,51,5],[16,58,6],[16,66,3],[16,73,3],[17,3,2],[17,9,3],[17,15,5],[17,22,5],[17,28,29],[17,59,5],[17,67,3],[17,74,2],[18,3,1],[18,9,2],[18,16,3],[18,22,29],[18,52,5],[18,60,4],[18,68,2],[18,75,1],[19,16,3],[19,22,4],[19,27,24],[19,53,3],[19,60,3],[20,15,3],[20,22,3],[20,27,24],[20,53,3],[20,61,2],[21,16,1],[21,22,3],[21,27,25],[21,54,2],[22,26,26],[23,25,28],[24,11,2],[24,25,5],[24,32,21],[24,65,3],[25,4,2],[25,11,4],[25,22,8],[25,31,16],[25,48,9],[25,63,4],[25,72,3],[26,4,13],[26,18,11],[26,31,17],[26,49,25],[27,5,22],[27,31,17],[27,51,23],[28,6,17],[28,30,19],[28,56,17],[29,8,1],[29,14,4],[29,29,20],[29,61,4],[29,70,1],[30,29,21]],[[0,36,2],[0,39,1],[1,33,14],[2,31,19],[3,31,19],[4,30,25],[5,30,26],[6,28,30],[7,27,31],[8,28,30],[9,29,27],[9,68,2],[10,8,3],[10,29,27],[10,65,9],[11,4,11],[11,32,17],[11,50,7],[11,62,6],[11,71,8],[12,0,8],[12,11,7],[12,33,2],[12,36,11],[12,50,7],[12,59,9],[12,71,8],[13,0,2],[13,3,5],[13,10,4],[13,15,7],[13,36,6],[13,50,12],[13,64,5],[13,71,5],[13,77,2],[14,0,2],[14,3,5],[14,9,5],[14,17,12],[14,32,14],[14,48,9],[14,58,4],[14,65,4],[14,72,4],[14,77,2],[15,0,1],[15,3,3],[15,9,4],[15,16,4],[15,24,26],[15,51,5],[15,58,5],[15,66,3],[15,73,3],[15,78,1],[16,3,3],[16,9,3],[16,15,5],[16,23,4],[16,29,21],[16,51,5],[16,58,6],[16,67,3],[16,74,2],[17,2,2],[17,9,3],[17,16,4],[17,22,34],[17,59,5],[17,68,2],[17,75,1],[18,9,2],[18,15,4],[18,22,29],[18,52,4],[18,60,3],[19,15,3],[19,22,4],[19,27,24],[19,53,3],[19,61,2],[20,15,2],[20,22,3],[20,27,24],[20,53,3],[21,23,2],[21,26,26],[21,54,2],[22,26,26],[23,25,28],[24,25,5],[24,31,22],[24,67,1],[25,4,1],[25,11,3],[25,22,8],[25,31,16],[25,49,8],[25,64,4],[25,73,2],[26,4,12],[26,19,10],[26,31,17],[26,49,11],[26,63,12],[27,4,23],[27,31,17],[27,51,24],[28,5,18],[28,30,19],[28,55,19],[29,8,1],[29,12,7],[29,29,21],[29,59,13],[30,28,23]],[[0,0,79],[1,0,35],[1,42,37],[2,0,33],[2,49,30],[3,0,32],[3,50,29],[4,0,32],[4,51,28],[5,0,32],[5,56,23],[6,0,28],[6,56,23],[7,0,28],[7,57,22],[8,0,31],[8,51,1],[8,57,22],[9,0,31],[9,50,2],[9,55,24],[10,0,32],[10,37,1],[10,49,2],[10,56,11],[10,71,8],[11,0,7],[11,12,21],[11,36,5],[11,48,3],[11,56,7],[11,67,4],[11,74,5],[12,0,5],[12,7,5],[12,16,21],[12,39,3],[12,43,2],[12,46,5],[12,57,4],[12,63,2],[12,67,4],[13,7,5],[13,14,2],[13,18,19],[13,41,9],[13,61,3],[13,69,2],[13,76,1],[14,2,1],[14,7,3],[14,14,4],[14,23,2],[14,29,6],[14,42,7],[14,50,2],[14,56,2],[14,61,4],[14,69,4],[14,76,2],[15,1,2],[15,6,3],[15,13,3],[15,19,6],[15,26,5],[15,49,3],[15,55,4],[15,63,4],[15,69,5],[15,76,3],[16,0,2],[16,4,5],[16,12,4],[16,20,3],[16,27,3],[16,48,3],[16,55,4],[16,63,5],[16,69,6],[16,77,2],[17,0,2],[17,3,6],[17,11,5],[17,19,4],[17,50,2],[17,55,5],[17,63,6],[17,70,9],[18,0,9],[18,10,6],[18,18,5],[18,26,2],[18,50,3],[18,55,6],[18,63,16],[19,0,16],[19,17,7],[19,25,3],[19,50,3],[19,55,7],[19,63,16],[20,0,16],[20,17,7],[20,25,3],[20,50,4],[20,55,24],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,30,2],[23,52,27],[24,0,26],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,29,3],[25,47,3],[25,55,11],[25,67,12],[26,0,4],[26,5,7],[26,14,6],[26,28,4],[26,47,3],[26,58,6],[26,67,6],[26,75,4],[27,0,4],[27,15,2],[27,25,6],[27,47,6],[27,62,1],[27,75,4],[28,0,6],[28,22,9],[28,48,9],[28,74,5],[29,0,16],[29,18,12],[29,49,12],[29,65,5],[29,71,8],[30,0,29],[30,50,29]],[[0,0,79],[1,0,36],[1,41,38],[2,0,33],[2,49,30],[3,0,32],[3,50,29],[4,0,32],[4,51,28],[5,0,32],[5,57,22],[6,0,27],[6,57,22],[7,0,29],[7,57,22],[8,0,31],[8,56,23],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,37,1],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,4],[11,48,3],[11,56,8],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,39,3],[12,43,1],[12,46,5],[12,56,5],[12,64,1],[12,67,4],[12,78,1],[13,7,5],[13,14,2],[13,18,19],[13,41,10],[13,61,3],[13,69,2],[13,76,1],[14,2,1],[14,8,2],[14,14,4],[14,22,3],[14,29,7],[14,42,7],[14,50,2],[14,56,2],[14,60,5],[14,69,4],[14,76,2],[15,1,2],[15,6,3],[15,13,3],[15,19,6],[15,26,5],[15,49,3],[15,55,4],[15,63,4],[15,69,6],[15,77,2],[16,0,2],[16,4,5],[16,12,4],[16,20,3],[16,27,3],[16,48,3],[16,55,4],[16,63,5],[16,70,6],[16,77,2],[17,0,2],[17,3,6],[17,11,5],[17,19,4],[17,50,1],[17,55,5],[17,63,6],[17,70,9],[18,0,9],[18,10,6],[18,18,6],[18,26,2],[18,50,3],[18,55,6],[18,63,16],[19,0,16],[19,17,7],[19,26,2],[19,50,3],[19,55,7],[19,63,16],[20,0,16],[20,17,7],[20,25,3],[20,50,4],[20,55,24],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,30,2],[23,52,27],[24,0,26],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,29,3],[25,47,3],[25,55,11],[25,67,12],[26,0,4],[26,5,7],[26,14,6],[26,28,4],[26,47,4],[26,58,6],[26,67,6],[26,74,5],[27,0,4],[27,15,2],[27,25,6],[27,47,6],[27,62,1],[27,75,4],[28,0,6],[28,22,9],[28,48,9],[28,74,5],[29,0,15],[29,18,12],[29,49,12],[29,66,4],[29,71,8],[30,0,29],[30,50,29]],[[0,0,79],[1,0,36],[1,41,38],[2,0,33],[2,49,30],[3,0,32],[3,50,29],[4,0,32],[4,51,28],[5,0,32],[5,51,2],[5,57,22],[6,0,27],[6,57,22],[7,0,29],[7,57,22],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,37,1],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,4],[11,48,3],[11,56,8],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,39,4],[12,46,5],[12,56,5],[12,64,1],[12,67,4],[12,78,1],[13,7,5],[13,14,2],[13,18,19],[13,41,10],[13,61,3],[13,69,2],[13,76,1],[14,2,1],[14,8,2],[14,14,4],[14,22,4],[14,29,7],[14,42,7],[14,51,1],[14,56,2],[14,60,5],[14,69,4],[14,76,2],[15,1,2],[15,6,4],[15,13,4],[15,19,6],[15,26,5],[15,49,3],[15,55,4],[15,63,4],[15,69,6],[15,77,2],[16,0,2],[16,4,5],[16,12,4],[16,20,3],[16,27,3],[16,48,3],[16,55,4],[16,63,5],[16,70,6],[16,77,2],[17,0,2],[17,3,6],[17,11,5],[17,19,4],[17,55,5],[17,63,6],[17,70,9],[18,0,9],[18,10,6],[18,18,6],[18,26,2],[18,50,3],[18,55,6],[18,63,16],[19,0,16],[19,17,7],[19,26,2],[19,50,3],[19,55,7],[19,63,16],[20,0,16],[20,17,7],[20,25,3],[20,50,29],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,47,1],[23,52,27],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,29,3],[25,47,3],[25,55,11],[25,67,12],[26,0,4],[26,5,7],[26,14,6],[26,28,4],[26,47,4],[26,58,7],[26,67,6],[26,75,4],[27,0,4],[27,15,2],[27,25,6],[27,47,6],[27,62,1],[27,75,4],[28,0,6],[28,22,9],[28,48,9],[28,74,5],[29,0,15],[29,18,12],[29,49,12],[29,66,4],[29,71,8],[30,0,29],[30,50,29]],[[0,0,79],[1,0,36],[1,42,37],[2,0,33],[2,49,30],[3,0,32],[3,50,29],[4,0,32],[4,51,28],[5,0,32],[5,51,2],[5,57,22],[6,0,27],[6,58,21],[7,0,29],[7,58,21],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,37,1],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,2],[11,49,2],[11,56,8],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,41,2],[12,47,4],[12,56,5],[12,62,1],[12,64,1],[12,67,4],[12,78,1],[13,7,5],[13,14,2],[13,18,19],[13,41,11],[13,56,1],[13,61,4],[13,69,2],[13,76,2],[14,2,1],[14,7,3],[14,14,4],[14,22,4],[14,29,7],[14,42,7],[14,51,1],[14,55,3],[14,60,5],[14,69,4],[14,76,3],[15,0,3],[15,6,4],[15,13,4],[15,19,6],[15,26,3],[15,30,1],[15,49,3],[15,55,4],[15,63,4],[15,69,6],[15,77,2],[16,0,2],[16,4,5],[16,12,4],[16,20,3],[16,27,3],[16,48,3],[16,55,4],[16,63,5],[16,70,6],[16,78,1],[17,0,2],[17,3,6],[17,11,5],[17,19,4],[17,55,5],[17,63,6],[17,70,9],[18,0,9],[18,10,6],[18,18,6],[18,26,2],[18,50,3],[18,55,6],[18,63,16],[19,0,16],[19,17,7],[19,26,2],[19,50,3],[19,54,8],[19,63,16],[20,0,16],[20,17,7],[20,25,3],[20,50,29],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,47,2],[23,52,27],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,29,3],[25,47,3],[25,55,11],[25,67,12],[26,0,4],[26,5,7],[26,14,6],[26,28,4],[26,47,4],[26,59,6],[26,67,6],[26,75,4],[27,0,4],[27,15,2],[27,25,6],[27,47,6],[27,62,1],[27,74,5],[28,0,5],[28,22,9],[28,48,9],[28,74,5],[29,0,15],[29,18,12],[29,49,12],[29,66,4],[29,71,8],[30,0,29],[30,50,29]],[[0,0,79],[1,0,35],[1,42,37],[2,0,33],[2,49,30],[3,0,32],[3,50,29],[4,0,32],[4,51,28],[5,0,32],[5,51,2],[5,57,22],[6,0,27],[6,58,21],[7,0,29],[7,58,21],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,37,2],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,2],[11,49,3],[11,56,8],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,41,2],[12,44,1],[12,47,5],[12,56,5],[12,62,1],[12,64,1],[12,67,4],[12,78,1],[13,7,5],[13,14,2],[13,18,19],[13,41,11],[13,56,1],[13,61,4],[13,69,2],[13,76,2],[14,1,2],[14,7,3],[14,14,4],[14,22,4],[14,29,7],[14,42,7],[14,55,3],[14,60,5],[14,69,4],[14,76,3],[15,0,3],[15,6,4],[15,13,4],[15,19,6],[15,26,3],[15,30,1],[15,47,5],[15,55,4],[15,63,4],[15,69,6],[15,77,2],[16,0,2],[16,4,6],[16,12,4],[16,20,3],[16,27,2],[16,48,3],[16,55,4],[16,63,5],[16,69,7],[16,78,1],[17,0,2],[17,3,6],[17,11,5],[17,19,5],[17,55,5],[17,63,6],[17,70,9],[18,0,1],[18,2,7],[18,10,6],[18,18,6],[18,26,2],[18,50,2],[18,54,7],[18,63,16],[19,0,16],[19,18,6],[19,26,2],[19,50,3],[19,54,8],[19,63,16],[20,0,16],[20,17,7],[20,25,3],[20,50,3],[20,54,25],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,30,1],[23,47,2],[23,52,27],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,28,4],[25,47,3],[25,55,11],[25,68,11],[26,0,4],[26,5,7],[26,14,6],[26,28,4],[26,47,4],[26,59,6],[26,67,6],[26,75,4],[27,0,4],[27,15,2],[27,25,6],[27,47,6],[27,62,2],[27,75,4],[28,0,5],[28,22,9],[28,48,9],[28,74,5],[29,0,15],[29,18,12],[29,49,12],[29,66,4],[29,72,7],[30,0,29],[30,50,29]],[[0,0,79],[1,0,35],[1,43,36],[2,0,33],[2,49,30],[3,0,32],[3,51,28],[4,0,32],[4,51,28],[5,0,32],[5,51,2],[5,57,22],[6,0,27],[6,58,21],[7,0,29],[7,58,21],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,36,2],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,2],[11,49,3],[11,56,9],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,41,1],[12,43,2],[12,47,5],[12,56,5],[12,62,1],[12,64,1],[12,67,5],[12,78,1],[13,7,5],[13,14,2],[13,18,19],[13,41,11],[13,56,1],[13,61,4],[13,69,2],[13,76,2],[14,1,2],[14,7,3],[14,14,4],[14,22,3],[14,29,6],[14,43,6],[14,51,1],[14,55,4],[14,61,4],[14,69,4],[14,76,3],[15,0,3],[15,6,4],[15,13,3],[15,19,6],[15,26,3],[15,30,1],[15,47,5],[15,55,4],[15,63,4],[15,69,6],[15,77,2],[16,0,2],[16,4,6],[16,12,4],[16,20,3],[16,27,2],[16,48,2],[16,55,4],[16,63,5],[16,69,7],[16,78,1],[17,0,2],[17,4,6],[17,11,5],[17,19,5],[17,55,5],[17,63,6],[17,70,9],[18,0,10],[18,11,5],[18,19,5],[18,26,2],[18,50,2],[18,54,7],[18,63,16],[19,0,16],[19,18,6],[19,26,2],[19,51,2],[19,54,7],[19,62,17],[20,0,24],[20,25,3],[20,51,2],[20,54,25],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,29,2],[23,47,2],[23,52,27],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,28,4],[25,47,3],[25,55,11],[25,68,11],[26,0,4],[26,5,6],[26,14,6],[26,28,3],[26,47,4],[26,59,6],[26,67,7],[26,75,4],[27,0,3],[27,15,2],[27,25,6],[27,47,6],[27,62,2],[27,75,4],[28,0,5],[28,22,9],[28,48,9],[28,74,5],[29,0,14],[29,18,12],[29,49,12],[29,67,3],[29,72,7],[30,0,29],[30,50,29]],[[0,0,79],[1,0,35],[1,44,35],[2,0,33],[2,49,30],[3,0,32],[3,51,28],[4,0,32],[4,51,28],[5,0,32],[5,51,2],[5,57,22],[6,0,27],[6,58,21],[7,0,29],[7,58,21],[8,0,31],[8,56,23],[9,0,31],[9,49,3],[9,56,23],[10,0,32],[10,36,2],[10,49,3],[10,56,12],[10,70,9],[11,0,8],[11,11,22],[11,37,2],[11,48,4],[11,56,9],[11,67,4],[11,73,6],[12,0,5],[12,7,5],[12,15,22],[12,41,1],[12,43,2],[12,47,5],[12,57,4],[12,62,1],[12,64,1],[12,67,5],[12,78,1],[13,7,5],[13,13,3],[13,18,19],[13,41,11],[13,61,4],[13,69,3],[13,76,2],[14,1,2],[14,7,3],[14,14,4],[14,22,3],[14,29,6],[14,43,6],[14,51,1],[14,55,4],[14,61,4],[14,69,4],[14,76,3],[15,0,3],[15,6,4],[15,13,3],[15,19,6],[15,26,3],[15,30,1],[15,47,1],[15,49,3],[15,55,3],[15,63,3],[15,69,6],[15,77,2],[16,0,2],[16,5,5],[16,12,4],[16,20,3],[16,27,2],[16,49,1],[16,55,4],[16,63,4],[16,69,7],[16,78,1],[17,0,2],[17,4,6],[17,11,5],[17,19,5],[17,55,5],[17,63,5],[17,69,8],[17,78,1],[18,0,10],[18,11,5],[18,19,5],[18,26,2],[18,50,2],[18,54,7],[18,62,17],[19,0,16],[19,18,6],[19,26,1],[19,51,2],[19,54,7],[19,62,17],[20,0,27],[20,51,2],[20,54,25],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,29,2],[23,47,2],[23,52,27],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,28,4],[25,47,3],[25,55,12],[25,68,11],[26,0,3],[26,5,6],[26,13,7],[26,28,3],[26,47,4],[26,59,6],[26,67,7],[26,75,4],[27,0,3],[27,15,2],[27,25,6],[27,47,6],[27,62,2],[27,76,3],[28,0,4],[28,22,9],[28,48,9],[28,75,4],[29,0,14],[29,18,12],[29,49,12],[29,67,3],[29,72,7],[30,0,29],[30,50,29]],[[0,0,37],[0,40,39],[1,0,34],[1,45,34],[2,0,33],[2,50,29],[3,0,32],[3,51,28],[4,0,32],[4,51,28],[5,0,31],[5,51,1],[5,57,22],[6,0,27],[6,58,21],[7,0,29],[7,57,22],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,57,22],[10,0,32],[10,36,3],[10,49,3],[10,56,12],[10,70,9],[11,0,7],[11,11,22],[11,37,3],[11,48,4],[11,56,9],[11,68,3],[11,74,5],[12,0,4],[12,7,4],[12,15,22],[12,43,2],[12,47,5],[12,57,4],[12,62,1],[12,64,1],[12,67,5],[12,78,1],[13,7,4],[13,13,3],[13,18,19],[13,41,10],[13,61,4],[13,69,3],[13,76,2],[14,1,2],[14,7,3],[14,14,4],[14,23,1],[14,29,4],[14,34,1],[14,42,7],[14,51,1],[14,55,4],[14,61,4],[14,69,4],[14,76,3],[15,0,3],[15,6,4],[15,13,3],[15,19,6],[15,26,5],[15,47,1],[15,49,3],[15,55,3],[15,63,3],[15,69,5],[15,77,2],[16,0,2],[16,5,5],[16,12,4],[16,20,3],[16,27,3],[16,49,1],[16,55,4],[16,63,4],[16,69,6],[16,77,2],[17,0,2],[17,4,6],[17,12,4],[17,19,5],[17,55,5],[17,63,5],[17,69,8],[17,78,1],[18,0,2],[18,3,7],[18,11,5],[18,19,5],[18,26,2],[18,50,2],[18,54,7],[18,62,17],[19,0,17],[19,18,7],[19,51,1],[19,54,7],[19,62,17],[20,0,17],[20,18,9],[20,51,28],[21,0,27],[21,51,28],[22,0,26],[22,52,27],[23,0,26],[23,29,2],[23,47,2],[23,53,26],[24,0,25],[24,29,3],[24,47,2],[24,53,26],[25,0,23],[25,28,4],[25,47,3],[25,55,12],[25,68,11],[26,0,3],[26,5,6],[26,13,7],[26,27,4],[26,47,4],[26,59,6],[26,67,7],[26,75,4],[27,0,3],[27,14,3],[27,25,6],[27,48,5],[27,62,2],[27,76,3],[28,0,4],[28,22,9],[28,48,9],[28,75,4],[29,0,13],[29,18,12],[29,49,12],[29,68,2],[29,72,7],[30,0,29],[30,50,29]],[[0,0,36],[0,41,38],[1,0,35],[1,46,33],[2,0,33],[2,50,29],[3,0,32],[3,51,28],[4,0,32],[4,51,28],[5,0,31],[5,58,21],[6,0,28],[6,58,21],[7,0,29],[7,57,22],[8,0,31],[8,57,22],[9,0,31],[9,49,3],[9,57,22],[10,0,32],[10,36,2],[10,39,1],[10,49,3],[10,56,12],[10,71,8],[11,0,7],[11,11,22],[11,
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment