diff --git a/lib/index.js b/lib/index.js index 9687411028d..7b2e86c05a3 100644 --- a/lib/index.js +++ b/lib/index.js @@ -28,6 +28,7 @@ Plotly.register([ require('./mesh3d'), require('./cone'), require('./streamtube'), + require('./isosurface'), require('./scattergeo'), require('./choropleth'), diff --git a/lib/isosurface.js b/lib/isosurface.js new file mode 100644 index 00000000000..7bc97ae239e --- /dev/null +++ b/lib/isosurface.js @@ -0,0 +1,11 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +module.exports = require('../src/traces/isosurface'); diff --git a/package-lock.json b/package-lock.json index 4c7f3dfea92..afaaa6eb962 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4618,6 +4618,33 @@ } } }, + "gl-isosurface3d": { + "version": "git://github.com/gl-vis/gl-isosurface3d.git#33711824b895b7af1abc59b6d8dc0bbdaeda1b21", + "from": "git://github.com/gl-vis/gl-isosurface3d.git#33711824b895b7af1abc59b6d8dc0bbdaeda1b21", + "requires": { + "barycentric": "^1.0.1", + "colormap": "^2.1.0", + "gl-buffer": "^2.1.2", + "gl-mat4": "^1.0.0", + "gl-shader": "4.2.1", + "gl-texture2d": "^2.1.0", + "gl-vao": "^1.1.3", + "glsl-out-of-range": "^1.0.3", + "glsl-specular-cook-torrance": "^2.0.1", + "glslify": "^6.3.1", + "ndarray": "^1.0.18", + "polytope-closest-point": "^1.0.0", + "simplicial-complex-contour": "^1.0.2", + "typedarray-pool": "^1.1.0" + }, + "dependencies": { + "glsl-out-of-range": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/glsl-out-of-range/-/glsl-out-of-range-1.0.3.tgz", + "integrity": "sha512-3uSoD4aX4TjHx3uRJnJbUpegePR0tRPf9VWLS7EjDMbHHV+qrKjl8ov93ifG3kqzcxIOmaSXDK248EmM5uoQ/g==" + } + } + }, "gl-line3d": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/gl-line3d/-/gl-line3d-1.1.6.tgz", diff --git a/package.json b/package.json index f55ac120e16..bea77b3fcc4 100644 --- a/package.json +++ b/package.json @@ -70,6 +70,7 @@ "es6-promise": "^3.0.2", "fast-isnumeric": "^1.1.2", "font-atlas-sdf": "^1.3.3", + "gl-isosurface3d": "git://github.com/gl-vis/gl-isosurface3d.git#33711824b895b7af1abc59b6d8dc0bbdaeda1b21", "gl-cone3d": "^1.2.1", "gl-contour2d": "^1.1.4", "gl-error3d": "^1.0.9", diff --git a/src/traces/isosurface/attributes.js b/src/traces/isosurface/attributes.js new file mode 100644 index 00000000000..4007bab020e --- /dev/null +++ b/src/traces/isosurface/attributes.js @@ -0,0 +1,168 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +var colorscaleAttrs = require('../../components/colorscale/attributes'); +var colorbarAttrs = require('../../components/colorbar/attributes'); +var mesh3dAttrs = require('../mesh3d/attributes'); +var baseAttrs = require('../../plots/attributes'); + +var extendFlat = require('../../lib/extend').extendFlat; + +var attrs = { + x: { + valType: 'data_array', + role: 'info', + editType: 'calc+clearAxisTypes', + description: [ + 'Sets the x coordinates of the volume data', + '(from which the isosurface will be calculated)' + ].join(' ') + }, + y: { + valType: 'data_array', + role: 'info', + editType: 'calc+clearAxisTypes', + description: [ + 'Sets the y coordinates of the volume data', + '(from which the isosurface will be calculated)' + ].join(' ') + }, + z: { + valType: 'data_array', + role: 'info', + editType: 'calc+clearAxisTypes', + description: [ + 'Sets the z coordinates of the volume data', + '(from which the isosurface will be calculated)' + ].join(' ') + }, + + value: { + valType: 'data_array', + role: 'info', + editType: 'calc', + description: 'Sets the intensity values of the volume data.' + }, + + isomin: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the minimum intensity bound of the isosurface.' + }, + + isomax: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the maximum intensity bound of the isosurface.' + }, + + xmin: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the minimum x bound of the isosurface.' + }, + + xmax: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the maximum x bound of the isosurface.' + }, + + ymin: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the minimum y bound of the isosurface.' + }, + + ymax: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the maximum y bound of the isosurface.' + }, + + zmin: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the minimum z bound of the isosurface.' + }, + + zmax: { + valType: 'number', + role: 'info', + editType: 'calc', + description: 'Sets the maximum z bound of the isosurface.' + }, + + smoothnormals: { + valType: 'boolean', + role: 'info', + editType: 'calc', + description: 'Smooth normals of the isosurface. By default this is set to true.' + }, + + isocaps: { + valType: 'boolean', + role: 'info', + editType: 'calc', + description: 'Whether to generate isocaps for the isosurface. By default this is set to true.' + }, + + surfacecolor: { + valType: 'data_array', + role: 'style', + editType: 'calc', + description: [ + 'Sets the color of the isosurface.', + 'By default the isosurface color is computed from the colorscale.', + 'Isocaps still use the colorscale colors even with this set.' + ].join(' ') + }, + + text: { + valType: 'string', + role: 'info', + dflt: '', + arrayOk: true, + editType: 'calc', + description: [ + 'Sets the text elements associated with the isosurface points.', + 'If trace `hoverinfo` contains a *text* flag and *hovertext* is not set,', + 'these elements will be seen in the hover labels.' + ].join(' ') + } +}; + +extendFlat(attrs, colorscaleAttrs('', { + colorAttr: 'value', + showScaleDflt: true, + editTypeOverride: 'calc' +}), { + colorbar: colorbarAttrs +}); + +var fromMesh3d = ['opacity', 'lightposition', 'lighting']; +fromMesh3d.forEach(function(k) { + attrs[k] = mesh3dAttrs[k]; +}); + +attrs.hoverinfo = extendFlat({}, baseAttrs.hoverinfo, { + editType: 'calc', + flags: ['x', 'y', 'z', 'value', 'text', 'name'], + dflt: 'x+y+z+value+text+name' +}); + +module.exports = attrs; diff --git a/src/traces/isosurface/calc.js b/src/traces/isosurface/calc.js new file mode 100644 index 00000000000..31d0c4e2b5b --- /dev/null +++ b/src/traces/isosurface/calc.js @@ -0,0 +1,71 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +var colorscaleCalc = require('../../components/colorscale/calc'); + +module.exports = function calc(gd, trace) { + var value = trace.value; + var len = value.length; + var vMax = -Infinity; + var vMin = Infinity; + var i = 0; + + for(i = 0; i < len; i++) { + var v = value[i]; + vMax = Math.max(vMax, v); + vMin = Math.min(vMin, v); + } + + trace._vMax = vMax; + + if(trace.surfacecolor) { + colorscaleCalc(gd, trace, { + vals: trace.surfacecolor, + containerStr: '', + cLetter: 'c' + }); + } else { + colorscaleCalc(gd, trace, { + vals: [vMin, vMax], + containerStr: '', + cLetter: 'c' + }); + } + + var x = trace.x; + var y = trace.y; + var z = trace.z; + + var xMax = -Infinity; + var xMin = Infinity; + var yMax = -Infinity; + var yMin = Infinity; + var zMax = -Infinity; + var zMin = Infinity; + + for(i = 0; i < len; i++) { + var xx = x[i]; + xMax = Math.max(xMax, xx); + xMin = Math.min(xMin, xx); + + var yy = y[i]; + yMax = Math.max(yMax, yy); + yMin = Math.min(yMin, yy); + + var zz = z[i]; + zMax = Math.max(zMax, zz); + zMin = Math.min(zMin, zz); + } + + trace._xbnds = [xMin, xMax]; + trace._ybnds = [yMin, yMax]; + trace._zbnds = [zMin, zMax]; + +}; diff --git a/src/traces/isosurface/convert.js b/src/traces/isosurface/convert.js new file mode 100644 index 00000000000..cad37888071 --- /dev/null +++ b/src/traces/isosurface/convert.js @@ -0,0 +1,221 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +var isosurfacePlot = require('gl-isosurface3d'); + +var simpleMap = require('../../lib').simpleMap; +var parseColorScale = require('../../lib/gl_format_color').parseColorScale; +var str2RgbaArray = require('../../lib/str2rgbarray'); + +function Isosurface(scene, uid) { + this.scene = scene; + this.uid = uid; + this.mesh = null; + this.data = null; +} + +var proto = Isosurface.prototype; + +proto.handlePick = function(selection) { + if(selection.object === this.mesh) { + var selectIndex = selection.index = selection.data.index; + + selection.traceCoordinate = [ + selection.data.position[0], + selection.data.position[1], + selection.data.position[2], + selection.data.intensity + ]; + + var text = this.data.text; + selection.textLabel = 'value: ' + selection.data.intensity.toPrecision(3); + + if(Array.isArray(text) && text[selectIndex] !== undefined) { + selection.textLabel = '
' + text[selectIndex]; + } else if(text) { + selection.textLabel = '
' + text; + } + + return true; + } +}; + +var axisName2scaleIndex = {xaxis: 0, yaxis: 1, zaxis: 2}; + +function getSequence(src) { + var xs = [src[0]]; + for(var i = 1, last = xs[0]; i < src.length; i++) { + var p = src[i]; + if(p >= last) { + if(p > last) { + xs.push(p); + } + last = p; + } else { + break; + } + } + return xs; +} + +// This should find the bounding box min +// edge index so that `value` lies at the edge or outside +// the range starting from xs[edge index]. +// That is, xs[edge index] >= value. +function findMinIndex(xs, value) { + for(var i = 0; i < xs.length; i++) { + if(xs[i] >= value) { + return i; + } + } + return xs.length; +} + +// This should find the bounding box max +// edge index so that `value` lies at the edge or outside +// the range ending at xs[edge index]. +// That is, xs[edge index] <= value. +function findMaxIndex(xs, value) { + for(var i = xs.length - 1; i >= 0; i--) { + if(xs[i] <= value) { + return i; + } + } + return -1; +} + +function toDataCoords(scene, arr, axisName) { + var sceneLayout = scene.fullSceneLayout; + var dataScale = scene.dataScale; + var ax = sceneLayout[axisName]; + var scale = dataScale[axisName2scaleIndex[axisName]]; + return simpleMap(arr, function(v) { return ax.d2l(v) * scale; }); +} + +function convert(scene, trace) { + var isosurfaceOpts = {}; + + var xs = getSequence(trace.x); + var ys = getSequence(trace.y); + var zs = getSequence(trace.z); + + isosurfaceOpts.dimensions = [xs.length, ys.length, zs.length]; + isosurfaceOpts.meshgrid = [ + toDataCoords(scene, xs, 'xaxis'), + toDataCoords(scene, ys, 'yaxis'), + toDataCoords(scene, zs, 'zaxis') + ]; + + + isosurfaceOpts.values = trace.value; + + if(trace.colorscale) { + isosurfaceOpts.colormap = parseColorScale(trace.colorscale); + } + if(trace.color) { + isosurfaceOpts.capsColormap = isosurfaceOpts.colormap; + var color = str2RgbaArray(trace.color).map(function(c) { return c * 255; }); + isosurfaceOpts.colormap = [{index: 0, rgb: color}, {index: 1, rgb: color}]; + if(!isosurfaceOpts.capsColormap) { + isosurfaceOpts.capsColormap = isosurfaceOpts.colormap; + } + } + isosurfaceOpts.vertexIntensityBounds = [trace.cmin, trace.cmax]; + isosurfaceOpts.isoBounds = [trace.isomin, trace.isomax]; + + isosurfaceOpts.isoCaps = trace.isocaps; + isosurfaceOpts.singleMesh = false; + + isosurfaceOpts.smoothNormals = trace.smoothnormals === undefined ? true : trace.smoothnormals; + + var bounds = [[0, 0, 0], isosurfaceOpts.dimensions.slice()]; + + if(trace.xmin !== undefined) { + bounds[0][0] = findMinIndex(xs, trace.xmin); + } + if(trace.ymin !== undefined) { + bounds[0][1] = findMinIndex(ys, trace.ymin); + } + if(trace.zmin !== undefined) { + bounds[0][2] = findMinIndex(zs, trace.zmin); + } + if(trace.xmax !== undefined) { + bounds[1][0] = findMaxIndex(xs, trace.xmax); + } + if(trace.ymax !== undefined) { + bounds[1][1] = findMaxIndex(ys, trace.ymax); + } + if(trace.zmax !== undefined) { + bounds[1][2] = findMaxIndex(zs, trace.zmax); + } + + var meshData = isosurfacePlot(isosurfaceOpts, bounds); + + // pass gl-mesh3d lighting attributes + var lp = trace.lightposition; + meshData.lightPosition = [lp.x, lp.y, lp.z]; + meshData.ambient = trace.lighting.ambient; + meshData.diffuse = trace.lighting.diffuse; + meshData.specular = trace.lighting.specular; + meshData.roughness = trace.lighting.roughness; + meshData.fresnel = trace.lighting.fresnel; + meshData.opacity = trace.opacity; + + return meshData; +} + +proto.update = function(data) { + this.data = data; + + var meshData = convert(this.scene, data); + this.mesh.update(meshData); +}; + +proto.dispose = function() { + this.scene.glplot.remove(this.mesh); + this.mesh.dispose(); +}; + +function createIsosurfaceTrace(scene, data) { + var gl = scene.glplot.gl; + + var meshData = convert(scene, data); + var mesh = isosurfacePlot.createTriMesh(gl, meshData); + var capMesh = isosurfacePlot.createTriMesh(gl, meshData.caps); + var trace = data; + var xbnds = toDataCoords(scene, trace._xbnds, 'xaxis'); + var ybnds = toDataCoords(scene, trace._ybnds, 'yaxis'); + var zbnds = toDataCoords(scene, trace._zbnds, 'zaxis'); + mesh.bounds = [ + [xbnds[0], ybnds[0], zbnds[0]], + [xbnds[1], ybnds[1], zbnds[1]], + ]; + + var isosurface = new Isosurface(scene, data.uid); + isosurface.mesh = mesh; + isosurface.data = data; + isosurface.meshData = meshData; + mesh._trace = isosurface; + + var caps = new Isosurface(scene, data.uid); + caps.mesh = capMesh; + caps.data = data; + caps.meshData = meshData; + capMesh._trace = caps; + + isosurface.caps = caps; + + scene.glplot.add(mesh); + scene.glplot.add(capMesh); + + return isosurface; +} + +module.exports = createIsosurfaceTrace; diff --git a/src/traces/isosurface/defaults.js b/src/traces/isosurface/defaults.js new file mode 100644 index 00000000000..8ec62a57985 --- /dev/null +++ b/src/traces/isosurface/defaults.js @@ -0,0 +1,66 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + + +'use strict'; + +var Lib = require('../../lib'); + +var colorscaleDefaults = require('../../components/colorscale/defaults'); +var attributes = require('./attributes'); + +module.exports = function supplyDefaults(traceIn, traceOut, defaultColor, layout) { + function coerce(attr, dflt) { + return Lib.coerce(traceIn, traceOut, attributes, attr, dflt); + } + + var value = coerce('value'); + + var x = coerce('x'); + var y = coerce('y'); + var z = coerce('z'); + + if( + !value || !value.length || + !x || !x.length || !y || !y.length || !z || !z.length + ) { + traceOut.visible = false; + return; + } + + coerce('surfacecolor'); + + coerce('isomin'); + coerce('isomax'); + coerce('smoothnormals'); + coerce('isocaps'); + + coerce('xmin'); + coerce('ymin'); + coerce('zmin'); + + coerce('xmax'); + coerce('ymax'); + coerce('zmax'); + + coerce('lighting.ambient'); + coerce('lighting.diffuse'); + coerce('lighting.specular'); + coerce('lighting.roughness'); + coerce('lighting.fresnel'); + coerce('lightposition.x'); + coerce('lightposition.y'); + coerce('lightposition.z'); + + colorscaleDefaults(traceIn, traceOut, layout, coerce, {prefix: '', cLetter: 'c'}); + + coerce('text'); + + // disable 1D transforms (for now) + traceOut._length = null; +}; diff --git a/src/traces/isosurface/index.js b/src/traces/isosurface/index.js new file mode 100644 index 00000000000..654e32812a8 --- /dev/null +++ b/src/traces/isosurface/index.js @@ -0,0 +1,35 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +module.exports = { + moduleType: 'trace', + name: 'isosurface', + basePlotModule: require('../../plots/gl3d'), + categories: ['gl3d'], + + attributes: require('./attributes'), + supplyDefaults: require('./defaults'), + colorbar: { + min: 'cmin', + max: 'cmax' + }, + calc: require('./calc'), + plot: require('./convert'), + + meta: { + description: [ + 'Use isosurfaces to visualize volumetric data.', + '', + 'Specify a volume using 4 1D arrays,', + '3 position arrays `x`, `y` and `z`', + 'and intensity array `u`.' + ].join(' ') + } +}; diff --git a/test/image/baselines/gl3d_isosurface_math.png b/test/image/baselines/gl3d_isosurface_math.png new file mode 100644 index 00000000000..f6eef8628d1 Binary files /dev/null and b/test/image/baselines/gl3d_isosurface_math.png differ diff --git a/test/image/mocks/gl3d_isosurface_math.json b/test/image/mocks/gl3d_isosurface_math.json new file mode 100644 index 00000000000..a28f6f23aa2 --- /dev/null +++ b/test/image/mocks/gl3d_isosurface_math.json @@ -0,0 +1,6917 @@ +{ + "data": [ + { + "type": "isosurface", + "x": [ + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40, + 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 + ], + "y": [ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40 + ], + "z": [ + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, + + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, + + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, + + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10, + + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, + + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + 12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12, + + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13, + + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + 14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14, + + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15, + + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16, + + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17, + + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18, + + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + 19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19, + + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20, + + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + 21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21, + + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + 22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22, + + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + 23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23, + + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + 24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24, + + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + 25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25, + + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + 26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26, + + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + 27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27, + + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + 28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28, + + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + 29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29, + + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + 30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30, + + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + 31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31, + + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32, + + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + 33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33, + + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, + + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + 35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35, + + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + 36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36, + + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + 37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37, + + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + 38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38, + + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + 39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39, + + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40, + 40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40 + ], + "value": [ + 732,351,-22,-377,-706,-1001,-1256,-1464,-1621,-1722,-1766,-1751,-1678,-1549,-1366,-1134,-858,-545,-202,163,541,924,1302,1667,2010,2323,2599,2831,3013,3143,3216,3230,3187,3085,2929,2720,2466,2171,1842,1487,1114, + 541,160,-213,-568,-897,-1192,-1447,-1655,-1812,-1913,-1957,-1942,-1869,-1740,-1557,-1325,-1049,-736,-393,-28,350,733,1111,1476,1819,2132,2408,2640,2822,2952,3025,3039,2995,2894,2737,2529,2275,1979,1650,1295,923, + 376,-6,-378,-733,-1062,-1358,-1612,-1820,-1977,-2078,-2122,-2108,-2035,-1905,-1722,-1490,-1215,-902,-559,-194,185,567,946,1310,1653,1967,2242,2474,2657,2787,2859,2874,2830,2729,2572,2364,2110,1814,1485,1130,758, + 239,-143,-516,-871,-1200,-1495,-1749,-1958,-2114,-2216,-2259,-2245,-2172,-2043,-1860,-1628,-1352,-1039,-696,-331,47,430,808,1173,1516,1829,2105,2337,2520,2649,2722,2737,2693,2592,2435,2227,1972,1677,1348,993,620, + 131,-250,-623,-978,-1307,-1602,-1857,-2065,-2221,-2323,-2367,-2352,-2279,-2150,-1967,-1735,-1459,-1146,-803,-438,-60,323,701,1066,1409,1722,1998,2230,2413,2542,2615,2630,2586,2484,2328,2120,1865,1570,1241,886,513, + 55,-326,-699,-1054,-1383,-1678,-1933,-2141,-2298,-2399,-2443,-2428,-2355,-2226,-2043,-1811,-1535,-1222,-879,-514,-136,247,625,990,1333,1646,1922,2154,2337,2466,2539,2553,2510,2408,2252,2044,1789,1494,1165,810,437, + 11,-370,-743,-1098,-1427,-1722,-1977,-2185,-2341,-2443,-2487,-2472,-2399,-2270,-2087,-1855,-1579,-1266,-923,-558,-180,203,581,946,1289,1602,1878,2110,2293,2422,2495,2510,2466,2364,2208,2000,1745,1450,1121,766,393, + 0,-381,-754,-1109,-1438,-1733,-1988,-2196,-2352,-2454,-2498,-2483,-2410,-2281,-2098,-1866,-1590,-1277,-934,-569,-191,192,570,935,1278,1591,1867,2099,2282,2411,2484,2499,2455,2353,2197,1989,1734,1439,1110,755,382, + 22,-359,-732,-1087,-1416,-1711,-1966,-2174,-2330,-2432,-2476,-2461,-2388,-2259,-2076,-1844,-1568,-1255,-912,-547,-169,214,592,957,1300,1613,1889,2121,2304,2433,2506,2521,2477,2375,2219,2011,1756,1461,1132,777,404, + 77,-305,-677,-1032,-1361,-1656,-1911,-2119,-2276,-2377,-2421,-2406,-2334,-2204,-2021,-1789,-1513,-1200,-857,-493,-114,268,647,1012,1355,1668,1944,2176,2358,2488,2561,2575,2531,2430,2273,2065,1811,1515,1186,831,459, + 164,-218,-591,-946,-1275,-1570,-1824,-2033,-2189,-2291,-2334,-2320,-2247,-2117,-1935,-1703,-1427,-1114,-771,-406,-28,355,733,1098,1441,1754,2030,2262,2445,2574,2647,2662,2618,2517,2360,2152,1897,1602,1273,918,545, + 281,-100,-473,-828,-1157,-1452,-1707,-1915,-2072,-2173,-2217,-2202,-2129,-2000,-1817,-1585,-1309,-996,-653,-288,90,473,851,1216,1559,1872,2148,2380,2563,2692,2765,2779,2736,2634,2478,2269,2015,1720,1391,1036,663, + 428,46,-326,-681,-1010,-1306,-1560,-1768,-1925,-2026,-2070,-2056,-1983,-1853,-1670,-1438,-1163,-850,-507,-142,237,619,998,1363,1706,2019,2294,2526,2709,2839,2912,2926,2882,2781,2624,2416,2162,1866,1537,1182,810, + 602,220,-152,-507,-836,-1131,-1386,-1594,-1751,-1852,-1896,-1881,-1809,-1679,-1496,-1264,-989,-675,-332,32,411,793,1172,1537,1880,2193,2468,2701,2883,3013,3086,3100,3056,2955,2798,2590,2336,2040,1711,1356,984, + 801,420,47,-308,-637,-932,-1187,-1395,-1552,-1653,-1697,-1682,-1609,-1480,-1297,-1065,-789,-476,-133,232,610,993,1371,1736,2079,2392,2668,2900,3082,3212,3285,3299,3256,3154,2998,2789,2535,2240,1911,1556,1183, + 1023,641,268,-87,-415,-711,-965,-1173,-1330,-1431,-1475,-1461,-1388,-1258,-1076,-844,-568,-255,88,453,831,1214,1592,1957,2300,2613,2889,3121,3304,3433,3506,3521,3477,3376,3219,3011,2756,2461,2132,1777,1404, + 1264,882,510,155,-174,-470,-724,-932,-1089,-1190,-1234,-1220,-1147,-1017,-835,-603,-327,-14,329,694,1072,1455,1833,2198,2541,2854,3130,3362,3545,3674,3747,3762,3718,3617,3460,3252,2997,2702,2373,2018,1645, + 1521,1140,767,412,83,-212,-467,-675,-832,-933,-977,-962,-889,-760,-577,-345,-69,244,587,952,1330,1713,2091,2456,2799,3112,3388,3620,3802,3932,4005,4019,3975,3874,3717,3509,3255,2960,2631,2276,1903, + 1791,1410,1037,682,353,58,-197,-405,-561,-663,-707,-692,-619,-490,-307,-75,201,514,857,1222,1600,1983,2361,2726,3069,3382,3658,3890,4073,4202,4275,4290,4246,4144,3988,3780,3525,3230,2901,2546,2173, + 2071,1689,1317,962,633,338,83,-125,-282,-383,-427,-412,-340,-210,-27,205,481,794,1137,1501,1880,2262,2641,3006,3349,3662,3938,4170,4352,4482,4555,4569,4525,4424,4267,4059,3805,3509,3180,2825,2453, + 2356,1975,1602,1247,918,623,368,160,4,-98,-142,-127,-54,75,258,490,766,1079,1422,1787,2165,2548,2926,3291,3634,3947,4223,4455,4638,4767,4840,4855,4811,4709,4553,4345,4090,3795,3466,3111,2738, + 2644,2262,1889,1534,1205,910,655,447,291,189,145,160,233,362,545,777,1053,1366,1709,2074,2452,2835,3213,3578,3921,4234,4510,4742,4925,5054,5127,5142,5098,4996,4840,4632,4377,4082,3753,3398,3025, + 2929,2547,2175,1820,1491,1195,941,733,576,475,431,445,518,648,830,1062,1338,1651,1994,2359,2738,3120,3499,3863,4206,4519,4795,5027,5210,5340,5412,5427,5383,5282,5125,4917,4662,4367,4038,3683,3311, + 3209,2827,2454,2099,1770,1475,1220,1012,856,754,710,725,798,927,1110,1342,1618,1931,2274,2639,3017,3400,3778,4143,4486,4799,5075,5307,5490,5619,5692,5707,5663,5561,5405,5197,4942,4647,4318,3963,3590, + 3479,3097,2724,2369,2040,1745,1491,1283,1126,1025,981,995,1068,1198,1380,1612,1888,2201,2544,2909,3287,3670,4048,4413,4756,5069,5345,5577,5760,5889,5962,5977,5933,5832,5675,5467,5212,4917,4588,4233,3860, + 3736,3355,2982,2627,2298,2003,1748,1540,1383,1282,1238,1253,1326,1455,1638,1870,2146,2459,2802,3167,3545,3928,4306,4671,5014,5327,5603,5835,6017,6147,6220,6234,6190,6089,5932,5724,5470,5174,4845,4490,4118, + 3977,3596,3223,2868,2539,2244,1989,1781,1624,1523,1479,1494,1567,1696,1879,2111,2387,2700,3043,3408,3786,4169,4547,4912,5255,5568,5844,6076,6258,6388,6461,6475,6431,6330,6173,5965,5711,5415,5087,4732,4359, + 4199,3817,3444,3089,2760,2465,2211,2002,1846,1744,1701,1715,1788,1918,2100,2332,2608,2921,3264,3629,4007,4390,4768,5133,5476,5789,6065,6297,6480,6609,6682,6697,6653,6552,6395,6187,5932,5637,5308,4953,4580, + 4398,4016,3644,3289,2960,2664,2410,2202,2045,1944,1900,1914,1987,2117,2299,2532,2807,3120,3463,3828,4207,4589,4968,5332,5675,5989,6264,6496,6679,6809,6881,6896,6852,6751,6594,6386,6131,5836,5507,5152,4780, + 4572,4190,3818,3463,3134,2838,2584,2376,2219,2118,2074,2088,2161,2291,2474,2706,2981,3294,3637,4002,4381,4763,5142,5507,5850,6163,6438,6670,6853,6983,7056,7070,7026,6925,6768,6560,6306,6010,5681,5326,4954, + 4719,4337,3964,3609,3280,2985,2731,2522,2366,2264,2221,2235,2308,2437,2620,2852,3128,3441,3784,4149,4527,4910,5288,5653,5996,6309,6585,6817,7000,7129,7202,7217,7173,7072,6915,6707,6452,6157,5828,5473,5100, + 4836,4455,4082,3727,3398,3103,2848,2640,2483,2382,2338,2353,2426,2555,2738,2970,3246,3559,3902,4267,4645,5028,5406,5771,6114,6427,6703,6935,7117,7247,7320,7334,7291,7189,7033,6824,6570,6275,5946,5591,5218, + 4923,4541,4169,3814,3485,3189,2935,2727,2570,2469,2425,2439,2512,2642,2824,3056,3332,3645,3988,4353,4732,5114,5493,5857,6200,6513,6789,7021,7204,7334,7406,7421,7377,7276,7119,6911,6656,6361,6032,5677,5305, + 4978,4596,4223,3868,3539,3244,2989,2781,2625,2523,2479,2494,2567,2696,2879,3111,3387,3700,4043,4408,4786,5169,5547,5912,6255,6568,6844,7076,7259,7388,7461,7476,7432,7330,7174,6966,6711,6416,6087,5732,5359, + 5000,4618,4245,3890,3561,3266,3011,2803,2647,2545,2501,2516,2589,2718,2901,3133,3409,3722,4065,4430,4808,5191,5569,5934,6277,6590,6866,7098,7281,7410,7483,7498,7454,7352,7196,6988,6733,6438,6109,5754,5381, + 4989,4607,4234,3879,3550,3255,3000,2792,2636,2534,2490,2505,2578,2707,2890,3122,3398,3711,4054,4419,4797,5180,5558,5923,6266,6579,6855,7087,7270,7399,7472,7487,7443,7341,7185,6977,6722,6427,6098,5743,5370, + 4945,4563,4190,3835,3506,3211,2956,2748,2592,2490,2447,2461,2534,2663,2846,3078,3354,3667,4010,4375,4753,5136,5514,5879,6222,6535,6811,7043,7226,7355,7428,7443,7399,7298,7141,6933,6678,6383,6054,5699,5326, + 4869,4487,4114,3759,3430,3135,2880,2672,2516,2414,2370,2385,2458,2587,2770,3002,3278,3591,3934,4299,4677,5060,5438,5803,6146,6459,6735,6967,7150,7279,7352,7367,7323,7221,7065,6857,6602,6307,5978,5623,5250, + 4761,4380,4007,3652,3323,3028,2773,2565,2408,2307,2263,2278,2351,2480,2663,2895,3171,3484,3827,4192,4570,4953,5331,5696,6039,6352,6628,6860,7043,7172,7245,7259,7216,7114,6958,6749,6495,6200,5871,5516,5143, + 4624,4242,3870,3515,3186,2890,2636,2428,2271,2170,2126,2141,2213,2343,2526,2758,3033,3347,3690,4054,4433,4815,5194,5559,5902,6215,6490,6722,6905,7035,7108,7122,7078,6977,6820,6612,6358,6062,5733,5378,5006, + 4459,4077,3705,3350,3021,2725,2471,2263,2106,2005,1961,1975,2048,2178,2360,2592,2868,3181,3524,3889,4267,4650,5028,5393,5736,6049,6325,6557,6740,6869,6942,6957,6913,6812,6655,6447,6192,5897,5568,5213,4840, + + 718,336,-37,-392,-721,-1016,-1271,-1479,-1635,-1737,-1781,-1766,-1693,-1564,-1381,-1149,-873,-560,-217,148,526,909,1287,1652,1995,2308,2584,2816,2999,3128,3201,3216,3172,3070,2914,2706,2451,2156,1827,1472,1099, + 527,145,-228,-583,-912,-1207,-1462,-1670,-1826,-1928,-1972,-1957,-1884,-1755,-1572,-1340,-1064,-751,-408,-43,335,718,1096,1461,1804,2117,2393,2625,2808,2937,3010,3025,2981,2879,2723,2515,2260,1965,1636,1281,908, + 361,-20,-393,-748,-1077,-1372,-1627,-1835,-1992,-2093,-2137,-2122,-2049,-1920,-1737,-1505,-1229,-916,-573,-208,170,553,931,1296,1639,1952,2228,2460,2643,2772,2845,2859,2816,2714,2558,2350,2095,1800,1471,1116,743, + 224,-158,-530,-885,-1214,-1509,-1764,-1972,-2129,-2230,-2274,-2259,-2187,-2057,-1874,-1642,-1367,-1053,-710,-346,33,415,794,1159,1502,1815,2090,2323,2505,2635,2708,2722,2678,2577,2420,2212,1958,1662,1333,978,606, + 117,-265,-638,-993,-1322,-1617,-1871,-2080,-2236,-2338,-2381,-2367,-2294,-2165,-1982,-1750,-1474,-1161,-818,-453,-75,308,686,1051,1394,1707,1983,2215,2398,2527,2600,2615,2571,2470,2313,2105,1850,1555,1226,871,498, + 41,-341,-714,-1069,-1398,-1693,-1948,-2156,-2312,-2414,-2458,-2443,-2370,-2241,-2058,-1826,-1550,-1237,-894,-529,-151,232,610,975,1318,1631,1907,2139,2322,2451,2524,2539,2495,2393,2237,2029,1774,1479,1150,795,422, + -3,-385,-757,-1112,-1441,-1737,-1991,-2199,-2356,-2457,-2501,-2487,-2414,-2284,-2102,-1870,-1594,-1281,-938,-573,-195,188,566,931,1274,1587,1863,2095,2278,2407,2480,2495,2451,2350,2193,1985,1730,1435,1106,751,378, + -14,-396,-768,-1123,-1452,-1748,-2002,-2210,-2367,-2468,-2512,-2498,-2425,-2295,-2113,-1881,-1605,-1292,-949,-584,-206,177,555,920,1263,1576,1852,2084,2267,2396,2469,2484,2440,2339,2182,1974,1719,1424,1095,740,367, + 8,-374,-747,-1102,-1431,-1726,-1980,-2188,-2345,-2446,-2490,-2476,-2403,-2273,-2091,-1859,-1583,-1270,-927,-562,-184,199,577,942,1285,1598,1874,2106,2289,2418,2491,2506,2462,2361,2204,1996,1741,1446,1117,762,389, + 62,-319,-692,-1047,-1376,-1671,-1926,-2134,-2290,-2392,-2436,-2421,-2348,-2219,-2036,-1804,-1528,-1215,-872,-507,-129,254,632,997,1340,1653,1929,2161,2344,2473,2546,2561,2517,2415,2259,2051,1796,1501,1172,817,444, + 149,-233,-605,-960,-1289,-1584,-1839,-2047,-2204,-2305,-2349,-2334,-2262,-2132,-1949,-1717,-1441,-1128,-785,-421,-42,340,719,1084,1427,1740,2016,2248,2430,2560,2633,2647,2603,2502,2345,2137,1883,1587,1258,903,531, + 267,-115,-488,-843,-1172,-1467,-1722,-1930,-2086,-2188,-2232,-2217,-2144,-2015,-1832,-1600,-1324,-1011,-668,-303,75,458,836,1201,1544,1857,2133,2365,2548,2677,2750,2765,2721,2619,2463,2255,2000,1705,1376,1021,648, + 413,32,-341,-696,-1025,-1320,-1575,-1783,-1939,-2041,-2085,-2070,-1997,-1868,-1685,-1453,-1177,-864,-521,-156,222,605,983,1348,1691,2004,2280,2512,2695,2824,2897,2912,2868,2766,2610,2402,2147,1852,1523,1168,795, + 587,206,-167,-522,-851,-1146,-1401,-1609,-1765,-1867,-1911,-1896,-1823,-1694,-1511,-1279,-1003,-690,-347,18,396,779,1157,1522,1865,2178,2454,2686,2869,2998,3071,3086,3042,2940,2784,2576,2321,2026,1697,1342,969, + 787,405,32,-323,-652,-947,-1202,-1410,-1566,-1668,-1712,-1697,-1624,-1495,-1312,-1080,-804,-491,-148,217,595,978,1356,1721,2064,2377,2653,2885,3068,3197,3270,3285,3241,3139,2983,2775,2520,2225,1896,1541,1168, + 1008,627,254,-101,-430,-725,-980,-1188,-1345,-1446,-1490,-1475,-1402,-1273,-1090,-858,-582,-269,74,439,817,1200,1578,1943,2286,2599,2875,3107,3289,3419,3492,3506,3462,3361,3204,2996,2742,2446,2117,1762,1390, + 1249,868,495,140,-189,-484,-739,-947,-1104,-1205,-1249,-1234,-1161,-1032,-849,-617,-341,-28,315,680,1058,1441,1819,2184,2527,2840,3116,3348,3530,3660,3733,3747,3703,3602,3445,3237,2983,2687,2359,2004,1631, + 1507,1125,752,397,68,-227,-482,-690,-846,-948,-992,-977,-904,-775,-592,-360,-84,229,572,937,1315,1698,2076,2441,2784,3097,3373,3605,3788,3917,3990,4005,3961,3859,3703,3495,3240,2945,2616,2261,1888, + 1777,1395,1023,668,339,43,-211,-419,-576,-677,-721,-707,-634,-504,-322,-90,186,499,842,1207,1585,1968,2346,2711,3054,3367,3643,3875,4058,4187,4260,4275,4231,4130,3973,3765,3510,3215,2886,2531,2158, + 2056,1675,1302,947,618,323,68,-140,-296,-398,-442,-427,-354,-225,-42,190,466,779,1122,1487,1865,2248,2626,2991,3334,3647,3923,4155,4338,4467,4540,4555,4511,4409,4253,4045,3790,3495,3166,2811,2438, + 2342,1960,1587,1232,903,608,354,145,-11,-113,-156,-142,-69,61,243,475,751,1064,1407,1772,2150,2533,2911,3276,3619,3932,4208,4440,4623,4752,4825,4840,4796,4695,4538,4330,4075,3780,3451,3096,2723, + 2629,2247,1875,1520,1191,895,641,433,276,175,131,145,218,348,531,763,1038,1351,1694,2059,2438,2820,3199,3563,3906,4220,4495,4727,4910,5040,5112,5127,5083,4982,4825,4617,4363,4067,3738,3383,3011, + 2914,2533,2160,1805,1476,1181,926,718,561,460,416,431,504,633,816,1048,1324,1637,1980,2345,2723,3106,3484,3849,4192,4505,4781,5013,5195,5325,5398,5412,5369,5267,5111,4902,4648,4353,4024,3669,3296, + 3194,2812,2440,2085,1756,1460,1206,998,841,740,696,710,783,913,1095,1327,1603,1916,2259,2624,3002,3385,3763,4128,4471,4784,5060,5292,5475,5604,5677,5692,5648,5547,5390,5182,4927,4632,4303,3948,3575, + 3464,3083,2710,2355,2026,1731,1476,1268,1111,1010,966,981,1054,1183,1366,1598,1874,2187,2530,2895,3273,3656,4034,4399,4742,5055,5331,5563,5745,5875,5948,5962,5918,5817,5660,5452,5198,4902,4573,4218,3846, + 3722,3340,2967,2612,2283,1988,1733,1525,1369,1267,1223,1238,1311,1440,1623,1855,2131,2444,2787,3152,3530,3913,4291,4656,4999,5312,5588,5820,6003,6132,6205,6220,6176,6074,5918,5710,5455,5160,4831,4476,4103, + 3963,3581,3208,2853,2524,2229,1974,1766,1610,1508,1464,1479,1552,1681,1864,2096,2372,2685,3028,3393,3771,4154,4532,4897,5240,5553,5829,6061,6244,6373,6446,6461,6417,6315,6159,5951,5696,5401,5072,4717,4344, + 4184,3802,3430,3075,2746,2451,2196,1988,1831,1730,1686,1701,1773,1903,2086,2318,2594,2907,3250,3614,3993,4375,4754,5119,5462,5775,6050,6283,6465,6595,6668,6682,6638,6537,6380,6172,5918,5622,5293,4938,4566, + 4383,4002,3629,3274,2945,2650,2395,2187,2030,1929,1885,1900,1973,2102,2285,2517,2793,3106,3449,3814,4192,4575,4953,5318,5661,5974,6250,6482,6665,6794,6867,6881,6838,6736,6580,6371,6117,5822,5493,5138,4765, + 4557,4176,3803,3448,3119,2824,2569,2361,2204,2103,2059,2074,2147,2276,2459,2691,2967,3280,3623,3988,4366,4749,5127,5492,5835,6148,6424,6656,6839,6968,7041,7056,7012,6910,6754,6546,6291,5996,5667,5312,4939, + 4704,4322,3950,3595,3266,2971,2716,2508,2351,2250,2206,2221,2293,2423,2606,2838,3113,3427,3770,4134,4513,4895,5274,5639,5982,6295,6570,6803,6985,7115,7188,7202,7158,7057,6900,6692,6438,6142,5813,5458,5086, + 4822,4440,4067,3712,3383,3088,2833,2625,2469,2367,2323,2338,2411,2540,2723,2955,3231,3544,3887,4252,4630,5013,5391,5756,6099,6412,6688,6920,7103,7232,7305,7320,7276,7174,7018,6810,6555,6260,5931,5576,5203, + 4908,4527,4154,3799,3470,3175,2920,2712,2555,2454,2410,2425,2498,2627,2810,3042,3318,3631,3974,4339,4717,5100,5478,5843,6186,6499,6775,7007,7189,7319,7392,7406,7363,7261,7105,6896,6642,6347,6018,5663,5290, + 4963,4581,4209,3854,3525,3229,2975,2767,2610,2509,2465,2479,2552,2682,2864,3097,3372,3685,4028,4393,4772,5154,5533,5897,6240,6554,6829,7061,7244,7374,7446,7461,7417,7316,7159,6951,6696,6401,6072,5717,5345, + 4985,4603,4231,3876,3547,3251,2997,2789,2632,2531,2487,2501,2574,2704,2886,3119,3394,3707,4050,4415,4794,5176,5555,5919,6262,6575,6851,7083,7266,7396,7468,7483,7439,7338,7181,6973,6718,6423,6094,5739,5367, + 4974,4592,4220,3865,3536,3240,2986,2778,2621,2520,2476,2490,2563,2693,2875,3108,3383,3696,4039,4404,4783,5165,5544,5908,6251,6564,6840,7072,7255,7385,7457,7472,7428,7327,7170,6962,6707,6412,6083,5728,5356, + 4930,4548,4176,3821,3492,3196,2942,2734,2577,2476,2432,2447,2519,2649,2832,3064,3339,3653,3996,4360,4739,5121,5500,5865,6208,6521,6796,7028,7211,7341,7414,7428,7384,7283,7126,6918,6664,6368,6039,5684,5312, + 4854,4472,4100,3745,3416,3120,2866,2658,2501,2400,2356,2370,2443,2573,2756,2988,3263,3576,3919,4284,4663,5045,5424,5788,6132,6445,6720,6952,7135,7265,7337,7352,7308,7207,7050,6842,6588,6292,5963,5608,5236, + 4747,4365,3992,3637,3308,3013,2758,2550,2394,2292,2248,2263,2336,2465,2648,2880,3156,3469,3812,4177,4555,4938,5316,5681,6024,6337,6613,6845,7028,7157,7230,7245,7201,7099,6943,6735,6480,6185,5856,5501,5128, + 4609,4228,3855,3500,3171,2876,2621,2413,2257,2155,2111,2126,2199,2328,2511,2743,3019,3332,3675,4040,4418,4801,5179,5544,5887,6200,6476,6708,6891,7020,7093,7108,7064,6962,6806,6598,6343,6048,5719,5364,4991, + 4444,4063,3690,3335,3006,2711,2456,2248,2091,1990,1946,1961,2034,2163,2346,2578,2854,3167,3510,3875,4253,4636,5014,5379,5722,6035,6311,6543,6725,6855,6928,6942,6898,6797,6640,6432,6178,5882,5553,5198,4826, + + 674,292,-80,-435,-764,-1060,-1314,-1522,-1679,-1780,-1824,-1810,-1737,-1607,-1424,-1192,-917,-604,-261,104,483,865,1244,1609,1952,2265,2540,2772,2955,3085,3157,3172,3128,3027,2870,2662,2408,2112,1783,1428,1056, + 483,101,-271,-626,-955,-1251,-1505,-1713,-1870,-1971,-2015,-2001,-1928,-1798,-1616,-1383,-1108,-795,-452,-87,292,674,1053,1417,1760,2074,2349,2581,2764,2894,2966,2981,2937,2836,2679,2471,2216,1921,1592,1237,865, + 318,-64,-437,-792,-1121,-1416,-1671,-1879,-2035,-2137,-2180,-2166,-2093,-1964,-1781,-1549,-1273,-960,-617,-252,126,509,887,1252,1595,1908,2184,2416,2599,2728,2801,2816,2772,2671,2514,2306,2051,1756,1427,1072,699, + 180,-201,-574,-929,-1258,-1553,-1808,-2016,-2172,-2274,-2318,-2303,-2230,-2101,-1918,-1686,-1410,-1097,-754,-389,-11,372,750,1115,1458,1771,2047,2279,2462,2591,2664,2679,2635,2533,2377,2169,1914,1619,1290,935,562, + 73,-308,-681,-1036,-1365,-1660,-1915,-2123,-2280,-2381,-2425,-2410,-2337,-2208,-2025,-1793,-1517,-1204,-861,-496,-118,265,643,1008,1351,1664,1940,2172,2354,2484,2557,2571,2527,2426,2269,2061,1807,1511,1182,827,455, + -3,-385,-757,-1112,-1441,-1737,-1991,-2199,-2356,-2457,-2501,-2486,-2414,-2284,-2101,-1869,-1594,-1281,-938,-573,-194,188,567,932,1275,1588,1863,2095,2278,2408,2481,2495,2451,2350,2193,1985,1731,1435,1106,751,379, + -47,-428,-801,-1156,-1485,-1780,-2035,-2243,-2400,-2501,-2545,-2530,-2457,-2328,-2145,-1913,-1637,-1324,-981,-616,-238,145,523,888,1231,1544,1820,2052,2234,2364,2437,2451,2407,2306,2149,1941,1687,1392,1063,708,335, + -58,-439,-812,-1167,-1496,-1791,-2046,-2254,-2411,-2512,-2556,-2541,-2468,-2339,-2156,-1924,-1648,-1335,-992,-627,-249,134,512,877,1220,1533,1809,2041,2223,2353,2426,2440,2396,2295,2138,1930,1676,1381,1052,697,324, + -36,-417,-790,-1145,-1474,-1769,-2024,-2232,-2389,-2490,-2534,-2519,-2446,-2317,-2134,-1902,-1626,-1313,-970,-605,-227,156,534,899,1242,1555,1831,2063,2245,2375,2448,2462,2418,2317,2160,1952,1698,1402,1073,718,346, + 19,-363,-735,-1090,-1419,-1715,-1969,-2177,-2334,-2435,-2479,-2465,-2392,-2262,-2080,-1848,-1572,-1259,-916,-551,-173,210,588,953,1296,1609,1885,2117,2300,2429,2502,2517,2473,2372,2215,2007,1752,1457,1128,773,400, + 106,-276,-649,-1004,-1333,-1628,-1883,-2091,-2247,-2349,-2393,-2378,-2305,-2176,-1993,-1761,-1485,-1172,-829,-464,-86,297,675,1040,1383,1696,1972,2204,2387,2516,2589,2604,2560,2458,2302,2094,1839,1544,1215,860,487, + 223,-159,-531,-886,-1215,-1511,-1765,-1973,-2130,-2231,-2275,-2261,-2188,-2058,-1875,-1643,-1368,-1055,-712,-347,32,414,793,1158,1501,1814,2089,2321,2504,2634,2706,2721,2677,2576,2419,2211,1957,1661,1332,977,605, + 370,-12,-385,-740,-1069,-1364,-1618,-1827,-1983,-2085,-2128,-2114,-2041,-1912,-1729,-1497,-1221,-908,-565,-200,178,561,939,1304,1647,1960,2236,2468,2651,2780,2853,2868,2824,2723,2566,2358,2103,1808,1479,1124,751, + 544,162,-210,-565,-894,-1190,-1444,-1652,-1809,-1910,-1954,-1940,-1867,-1737,-1555,-1323,-1047,-734,-391,-26,352,735,1113,1478,1821,2134,2410,2642,2825,2954,3027,3042,2998,2897,2740,2532,2277,1982,1653,1298,925, + 743,361,-11,-366,-695,-991,-1245,-1453,-1610,-1711,-1755,-1741,-1668,-1538,-1355,-1123,-848,-535,-192,173,552,934,1313,1678,2021,2334,2609,2841,3024,3154,3226,3241,3197,3096,2939,2731,2477,2181,1852,1497,1125, + 965,583,210,-145,-474,-769,-1024,-1232,-1388,-1490,-1534,-1519,-1446,-1317,-1134,-902,-626,-313,30,395,773,1156,1534,1899,2242,2555,2831,3063,3246,3375,3448,3463,3419,3317,3161,2953,2698,2403,2074,1719,1346, + 1206,824,451,96,-233,-528,-783,-991,-1147,-1249,-1293,-1278,-1205,-1076,-893,-661,-385,-72,271,636,1014,1397,1775,2140,2483,2796,3072,3304,3487,3616,3689,3704,3660,3558,3402,3194,2939,2644,2315,1960,1587, + 1463,1081,709,354,25,-271,-525,-733,-890,-991,-1035,-1021,-948,-818,-635,-403,-128,185,528,893,1272,1654,2033,2398,2741,3054,3329,3561,3744,3874,3946,3961,3917,3816,3659,3451,3197,2901,2572,2217,1845, + 1733,1352,979,624,295,-0,-255,-463,-620,-721,-765,-750,-677,-548,-365,-133,143,456,799,1164,1542,1925,2303,2668,3011,3324,3600,3832,4014,4144,4217,4231,4188,4086,3930,3721,3467,3172,2843,2488,2115, + 2013,1631,1259,904,575,279,25,-183,-340,-441,-485,-471,-398,-268,-86,146,422,735,1078,1443,1821,2204,2583,2947,3290,3603,3879,4111,4294,4424,4496,4511,4467,4366,4209,4001,3746,3451,3122,2767,2394, + 2298,1917,1544,1189,860,565,310,102,-55,-156,-200,-185,-112,17,200,432,708,1021,1364,1729,2107,2490,2868,3233,3576,3889,4165,4397,4579,4709,4782,4796,4752,4651,4494,4286,4032,3736,3407,3052,2680, + 2585,2204,1831,1476,1147,852,597,389,232,131,87,102,175,304,487,719,995,1308,1651,2016,2394,2777,3155,3520,3863,4176,4452,4684,4867,4996,5069,5084,5040,4938,4782,4574,4319,4024,3695,3340,2967, + 2871,2489,2116,1761,1432,1137,882,674,518,416,372,387,460,589,772,1004,1280,1593,1936,2301,2679,3062,3440,3805,4148,4461,4737,4969,5152,5281,5354,5369,5325,5223,5067,4859,4604,4309,3980,3625,3252, + 3150,2769,2396,2041,1712,1417,1162,954,797,696,652,667,740,869,1052,1284,1560,1873,2216,2581,2959,3342,3720,4085,4428,4741,5017,5249,5432,5561,5634,5648,5605,5503,5347,5138,4884,4589,4260,3905,3532, + 3421,3039,2666,2311,1982,1687,1432,1224,1068,966,922,937,1010,1139,1322,1554,1830,2143,2486,2851,3229,3612,3990,4355,4698,5011,5287,5519,5702,5831,5904,5919,5875,5773,5617,5409,5154,4859,4530,4175,3802, + 3678,3296,2924,2569,2240,1944,1690,1482,1325,1224,1180,1194,1267,1397,1579,1812,2087,2400,2743,3108,3487,3869,4248,4612,4955,5269,5544,5776,5959,6089,6161,6176,6132,6031,5874,5666,5411,5116,4787,4432,4060, + 3919,3537,3165,2810,2481,2185,1931,1723,1566,1465,1421,1435,1508,1638,1821,2053,2328,2641,2984,3349,3728,4110,4489,4853,5196,5510,5785,6017,6200,6330,6402,6417,6373,6272,6115,5907,5653,5357,5028,4673,4301, + 4141,3759,3386,3031,2702,2407,2152,1944,1788,1686,1642,1657,1730,1859,2042,2274,2550,2863,3206,3571,3949,4332,4710,5075,5418,5731,6007,6239,6422,6551,6624,6639,6595,6493,6337,6129,5874,5579,5250,4895,4522, + 4340,3958,3585,3230,2901,2606,2351,2143,1987,1885,1841,1856,1929,2058,2241,2473,2749,3062,3405,3770,4148,4531,4909,5274,5617,5930,6206,6438,6621,6750,6823,6838,6794,6692,6536,6328,6073,5778,5449,5094,4721, + 4514,4132,3759,3404,3075,2780,2526,2317,2161,2059,2016,2030,2103,2232,2415,2647,2923,3236,3579,3944,4322,4705,5083,5448,5791,6104,6380,6612,6795,6924,6997,7012,6968,6867,6710,6502,6247,5952,5623,5268,4895, + 4660,4279,3906,3551,3222,2927,2672,2464,2308,2206,2162,2177,2250,2379,2562,2794,3070,3383,3726,4091,4469,4852,5230,5595,5938,6251,6527,6759,6942,7071,7144,7159,7115,7013,6857,6649,6394,6099,5770,5415,5042, + 4778,4396,4024,3669,3340,3044,2790,2582,2425,2324,2280,2294,2367,2497,2680,2912,3187,3500,3843,4208,4587,4969,5348,5713,6056,6369,6644,6876,7059,7189,7261,7276,7232,7131,6974,6766,6512,6216,5887,5532,5160, + 4865,4483,4110,3755,3426,3131,2876,2668,2512,2410,2366,2381,2454,2583,2766,2998,3274,3587,3930,4295,4673,5056,5434,5799,6142,6455,6731,6963,7146,7275,7348,7363,7319,7217,7061,6853,6598,6303,5974,5619,5246, + 4919,4538,4165,3810,3481,3186,2931,2723,2566,2465,2421,2436,2509,2638,2821,3053,3329,3642,3985,4350,4728,5111,5489,5854,6197,6510,6786,7018,7201,7330,7403,7417,7374,7272,7116,6908,6653,6358,6029,5674,5301, + 4941,4560,4187,3832,3503,3208,2953,2745,2588,2487,2443,2458,2531,2660,2843,3075,3351,3664,4007,4372,4750,5133,5511,5876,6219,6532,6808,7040,7223,7352,7425,7439,7396,7294,7138,6930,6675,6380,6051,5696,5323, + 4930,4549,4176,3821,3492,3197,2942,2734,2577,2476,2432,2447,2520,2649,2832,3064,3340,3653,3996,4361,4739,5122,5500,5865,6208,6521,6797,7029,7212,7341,7414,7428,7385,7283,7127,6919,6664,6369,6040,5685,5312, + 4886,4505,4132,3777,3448,3153,2898,2690,2534,2432,2388,2403,2476,2605,2788,3020,3296,3609,3952,4317,4695,5078,5456,5821,6164,6477,6753,6985,7168,7297,7370,7385,7341,7239,7083,6875,6620,6325,5996,5641,5268, + 4810,4429,4056,3701,3372,3077,2822,2614,2458,2356,2312,2327,2400,2529,2712,2944,3220,3533,3876,4241,4619,5002,5380,5745,6088,6401,6677,6909,7092,7221,7294,7309,7265,7163,7007,6799,6544,6249,5920,5565,5192, + 4703,4321,3949,3594,3265,2969,2715,2507,2350,2249,2205,2219,2292,2422,2605,2837,3112,3425,3768,4133,4512,4894,5273,5638,5981,6294,6569,6801,6984,7114,7187,7201,7157,7056,6899,6691,6437,6141,5812,5457,5085, + 4566,4184,3812,3457,3128,2832,2578,2370,2213,2112,2068,2082,2155,2285,2467,2699,2975,3288,3631,3996,4374,4757,5135,5500,5843,6156,6432,6664,6847,6976,7049,7064,7020,6919,6762,6554,6299,6004,5675,5320,4947, + 4401,4019,3646,3291,2962,2667,2412,2204,2048,1946,1902,1917,1990,2119,2302,2534,2810,3123,3466,3831,4209,4592,4970,5335,5678,5991,6267,6499,6682,6811,6884,6899,6855,6753,6597,6389,6134,5839,5510,5155,4782, + + 602,221,-152,-507,-836,-1131,-1386,-1594,-1750,-1852,-1896,-1881,-1808,-1679,-1496,-1264,-988,-675,-332,33,411,794,1172,1537,1880,2193,2469,2701,2884,3013,3086,3101,3057,2955,2799,2591,2336,2041,1712,1357,984, + 411,30,-343,-698,-1027,-1322,-1577,-1785,-1941,-2043,-2087,-2072,-1999,-1870,-1687,-1455,-1179,-866,-523,-158,220,603,981,1346,1689,2002,2278,2510,2693,2822,2895,2910,2866,2764,2608,2400,2145,1850,1521,1166,793, + 246,-135,-508,-863,-1192,-1487,-1742,-1950,-2107,-2208,-2252,-2237,-2164,-2035,-1852,-1620,-1344,-1031,-688,-323,55,438,816,1181,1524,1837,2113,2345,2527,2657,2730,2744,2700,2599,2442,2234,1980,1684,1355,1000,628, + 109,-273,-645,-1000,-1329,-1625,-1879,-2087,-2244,-2345,-2389,-2375,-2302,-2172,-1989,-1757,-1482,-1169,-826,-461,-82,300,679,1043,1387,1700,1975,2207,2390,2520,2592,2607,2563,2462,2305,2097,1843,1547,1218,863,491, + 2,-380,-753,-1108,-1437,-1732,-1987,-2195,-2351,-2453,-2497,-2482,-2409,-2280,-2097,-1865,-1589,-1276,-933,-568,-190,193,571,936,1279,1592,1868,2100,2283,2412,2485,2500,2456,2354,2198,1990,1735,1440,1111,756,383, + -74,-456,-829,-1184,-1513,-1808,-2063,-2271,-2427,-2529,-2573,-2558,-2485,-2356,-2173,-1941,-1665,-1352,-1009,-644,-266,117,495,860,1203,1516,1792,2024,2207,2336,2409,2424,2380,2278,2122,1914,1659,1364,1035,680,307, + -118,-500,-873,-1228,-1557,-1852,-2107,-2315,-2471,-2573,-2616,-2602,-2529,-2400,-2217,-1985,-1709,-1396,-1053,-688,-310,73,451,816,1159,1472,1748,1980,2163,2292,2365,2380,2336,2235,2078,1870,1615,1320,991,636,263, + -129,-511,-884,-1239,-1568,-1863,-2118,-2326,-2482,-2584,-2627,-2613,-2540,-2411,-2228,-1996,-1720,-1407,-1064,-699,-321,62,440,805,1148,1461,1737,1969,2152,2281,2354,2369,2325,2224,2067,1859,1604,1309,980,625,252, + -107,-489,-862,-1217,-1546,-1841,-2096,-2304,-2460,-2562,-2606,-2591,-2518,-2389,-2206,-1974,-1698,-1385,-1042,-677,-299,84,462,827,1170,1483,1759,1991,2174,2303,2376,2391,2347,2245,2089,1881,1626,1331,1002,647,274, + -53,-434,-807,-1162,-1491,-1786,-2041,-2249,-2406,-2507,-2551,-2536,-2463,-2334,-2151,-1919,-1643,-1330,-987,-622,-244,139,517,882,1225,1538,1814,2046,2229,2358,2431,2445,2402,2300,2144,1936,1681,1386,1057,702,329, + 34,-348,-720,-1075,-1404,-1700,-1954,-2162,-2319,-2420,-2464,-2450,-2377,-2247,-2064,-1832,-1557,-1244,-901,-536,-157,225,604,969,1312,1625,1900,2132,2315,2445,2517,2532,2488,2387,2230,2022,1768,1472,1143,788,416, + 151,-230,-603,-958,-1287,-1582,-1837,-2045,-2201,-2303,-2347,-2332,-2259,-2130,-1947,-1715,-1439,-1126,-783,-418,-40,343,721,1086,1429,1742,2018,2250,2433,2562,2635,2650,2606,2504,2348,2140,1885,1590,1261,906,533, + 298,-83,-456,-811,-1140,-1435,-1690,-1898,-2055,-2156,-2200,-2185,-2112,-1983,-1800,-1568,-1292,-979,-636,-271,107,490,868,1233,1576,1889,2165,2397,2579,2709,2782,2796,2752,2651,2494,2286,2032,1737,1408,1053,680, + 472,91,-282,-637,-966,-1261,-1516,-1724,-1881,-1982,-2026,-2011,-1938,-1809,-1626,-1394,-1118,-805,-462,-97,281,664,1042,1407,1750,2063,2339,2571,2754,2883,2956,2970,2927,2825,2669,2461,2206,1911,1582,1227,854, + 671,290,-83,-438,-767,-1062,-1317,-1525,-1681,-1783,-1827,-1812,-1739,-1610,-1427,-1195,-919,-606,-263,102,480,863,1241,1606,1949,2262,2538,2770,2953,3082,3155,3170,3126,3024,2868,2660,2405,2110,1781,1426,1053, + 893,511,139,-216,-545,-841,-1095,-1303,-1460,-1561,-1605,-1590,-1518,-1388,-1205,-973,-698,-385,-42,323,702,1084,1463,1828,2171,2484,2759,2991,3174,3304,3377,3391,3347,3246,3089,2881,2627,2331,2002,1647,1275, + 1134,752,380,25,-304,-600,-854,-1062,-1219,-1320,-1364,-1349,-1277,-1147,-964,-732,-457,-143,200,564,943,1325,1704,2069,2412,2725,3000,3232,3415,3545,3618,3632,3588,3487,3330,3122,2868,2572,2243,1888,1516, + 1391,1010,637,282,-47,-342,-597,-805,-961,-1063,-1107,-1092,-1019,-890,-707,-475,-199,114,457,822,1200,1583,1961,2326,2669,2982,3258,3490,3673,3802,3875,3890,3846,3744,3588,3380,3125,2830,2501,2146,1773, + 1662,1280,907,552,223,-72,-327,-535,-691,-793,-836,-822,-749,-620,-437,-205,71,384,727,1092,1470,1853,2231,2596,2939,3252,3528,3760,3943,4072,4145,4160,4116,4015,3858,3650,3395,3100,2771,2416,2043, + 1941,1560,1187,832,503,208,-47,-255,-412,-513,-557,-542,-469,-340,-157,75,351,664,1007,1372,1750,2133,2511,2876,3219,3532,3808,4040,4223,4352,4425,4439,4396,4294,4138,3930,3675,3380,3051,2696,2323, + 2227,1845,1472,1117,788,493,238,30,-126,-228,-272,-257,-184,-55,128,360,636,949,1292,1657,2035,2418,2796,3161,3504,3817,4093,4325,4508,4637,4710,4725,4681,4579,4423,4215,3960,3665,3336,2981,2608, + 2514,2132,1759,1404,1076,780,526,318,161,60,16,30,103,233,415,647,923,1236,1579,1944,2322,2705,3083,3448,3791,4104,4380,4612,4795,4924,4997,5012,4968,4867,4710,4502,4247,3952,3623,3268,2895, + 2799,2417,2045,1690,1361,1066,811,603,446,345,301,316,388,518,701,933,1208,1522,1865,2229,2608,2990,3369,3734,4077,4390,4665,4897,5080,5210,5283,5297,5253,5152,4995,4787,4533,4237,3908,3553,3181, + 3079,2697,2324,1969,1640,1345,1090,882,726,624,581,595,668,797,980,1212,1488,1801,2144,2509,2887,3270,3648,4013,4356,4669,4945,5177,5360,5489,5562,5577,5533,5432,5275,5067,4812,4517,4188,3833,3460, + 3349,2967,2595,2240,1911,1615,1361,1153,996,895,851,865,938,1068,1251,1483,1758,2071,2414,2779,3158,3540,3919,4284,4627,4940,5215,5447,5630,5760,5832,5847,5803,5702,5545,5337,5083,4787,4458,4103,3731, + 3606,3225,2852,2497,2168,1873,1618,1410,1254,1152,1108,1123,1196,1325,1508,1740,2016,2329,2672,3037,3415,3798,4176,4541,4884,5197,5473,5705,5888,6017,6090,6105,6061,5959,5803,5595,5340,5045,4716,4361,3988, + 3847,3466,3093,2738,2409,2114,1859,1651,1495,1393,1349,1364,1437,1566,1749,1981,2257,2570,2913,3278,3656,4039,4417,4782,5125,5438,5714,5946,6129,6258,6331,6346,6302,6200,6044,5836,5581,5286,4957,4602,4229, + 4069,3687,3315,2960,2631,2335,2081,1873,1716,1615,1571,1585,1658,1788,1971,2203,2478,2791,3134,3499,3878,4260,4639,5004,5347,5660,5935,6167,6350,6480,6552,6567,6523,6422,6265,6057,5803,5507,5178,4823,4451, + 4268,3886,3514,3159,2830,2535,2280,2072,1915,1814,1770,1785,1857,1987,2170,2402,2678,2991,3334,3698,4077,4459,4838,5203,5546,5859,6134,6367,6549,6679,6752,6766,6722,6621,6464,6256,6002,5706,5377,5022,4650, + 4442,4061,3688,3333,3004,2709,2454,2246,2089,1988,1944,1959,2032,2161,2344,2576,2852,3165,3508,3873,4251,4634,5012,5377,5720,6033,6309,6541,6723,6853,6926,6940,6896,6795,6638,6430,6176,5881,5552,5197,4824, + 4589,4207,3835,3480,3151,2855,2601,2393,2236,2135,2091,2105,2178,2308,2491,2723,2998,3311,3654,4019,4398,4780,5159,5524,5867,6180,6455,6687,6870,7000,7072,7087,7043,6942,6785,6577,6323,6027,5698,5343,4971, + 4706,4325,3952,3597,3268,2973,2718,2510,2354,2252,2208,2223,2296,2425,2608,2840,3116,3429,3772,4137,4515,4898,5276,5641,5984,6297,6573,6805,6988,7117,7190,7205,7161,7059,6903,6695,6440,6145,5816,5461,5088, + 4793,4411,4039,3684,3355,3060,2805,2597,2440,2339,2295,2310,2382,2512,2695,2927,3202,3516,3859,4223,4602,4984,5363,5728,6071,6384,6659,6892,7074,7204,7277,7291,7247,7146,6989,6781,6527,6231,5902,5547,5175, + 4848,4466,4093,3738,3409,3114,2860,2651,2495,2393,2350,2364,2437,2567,2749,2981,3257,3570,3913,4278,4656,5039,5417,5782,6125,6438,6714,6946,7129,7258,7331,7346,7302,7201,7044,6836,6581,6286,5957,5602,5229, + 4870,4488,4115,3760,3431,3136,2882,2673,2517,2415,2372,2386,2459,2588,2771,3003,3279,3592,3935,4300,4678,5061,5439,5804,6147,6460,6736,6968,7151,7280,7353,7368,7324,7223,7066,6858,6603,6308,5979,5624,5251, + 4859,4477,4104,3749,3420,3125,2871,2662,2506,2404,2361,2375,2448,2577,2760,2992,3268,3581,3924,4289,4667,5050,5428,5793,6136,6449,6725,6957,7140,7269,7342,7357,7313,7212,7055,6847,6592,6297,5968,5613,5240, + 4815,4433,4061,3706,3377,3081,2827,2619,2462,2361,2317,2331,2404,2534,2716,2949,3224,3537,3880,4245,4624,5006,5385,5749,6092,6406,6681,6913,7096,7226,7298,7313,7269,7168,7011,6803,6548,6253,5924,5569,5197, + 4739,4357,3985,3630,3301,3005,2751,2543,2386,2285,2241,2255,2328,2458,2640,2872,3148,3461,3804,4169,4547,4930,5308,5673,6016,6329,6605,6837,7020,7149,7222,7237,7193,7092,6935,6727,6472,6177,5848,5493,5120, + 4631,4250,3877,3522,3193,2898,2643,2435,2279,2177,2133,2148,2221,2350,2533,2765,3041,3354,3697,4062,4440,4823,5201,5566,5909,6222,6498,6730,6913,7042,7115,7130,7086,6984,6828,6620,6365,6070,5741,5386,5013, + 4494,4113,3740,3385,3056,2761,2506,2298,2141,2040,1996,2011,2084,2213,2396,2628,2904,3217,3560,3925,4303,4686,5064,5429,5772,6085,6361,6593,6776,6905,6978,6992,6949,6847,6691,6482,6228,5933,5604,5249,4876, + 4329,3947,3575,3220,2891,2595,2341,2133,1976,1875,1831,1846,1918,2048,2231,2463,2738,3051,3395,3759,4138,4520,4899,5264,5607,5920,6195,6427,6610,6740,6813,6827,6783,6682,6525,6317,6063,5767,5438,5083,4711, + + 505,123,-250,-605,-934,-1229,-1484,-1692,-1848,-1950,-1994,-1979,-1906,-1777,-1594,-1362,-1086,-773,-430,-65,313,696,1074,1439,1782,2095,2371,2603,2786,2915,2988,3003,2959,2857,2701,2493,2238,1943,1614,1259,886, + 314,-68,-441,-796,-1125,-1420,-1675,-1883,-2039,-2141,-2185,-2170,-2097,-1968,-1785,-1553,-1277,-964,-621,-256,122,505,883,1248,1591,1904,2180,2412,2595,2724,2797,2812,2768,2666,2510,2302,2047,1752,1423,1068,695, + 148,-233,-606,-961,-1290,-1585,-1840,-2048,-2204,-2306,-2350,-2335,-2262,-2133,-1950,-1718,-1442,-1129,-786,-421,-43,340,718,1083,1426,1739,2015,2247,2430,2559,2632,2647,2603,2501,2345,2137,1882,1587,1258,903,530, + 11,-370,-743,-1098,-1427,-1722,-1977,-2185,-2342,-2443,-2487,-2472,-2399,-2270,-2087,-1855,-1579,-1266,-923,-558,-180,203,581,946,1289,1602,1878,2110,2292,2422,2495,2509,2465,2364,2207,1999,1745,1449,1120,765,393, + -96,-478,-850,-1205,-1534,-1830,-2084,-2292,-2449,-2550,-2594,-2580,-2507,-2377,-2195,-1963,-1687,-1374,-1031,-666,-288,95,473,838,1181,1494,1770,2002,2185,2314,2387,2402,2358,2257,2100,1892,1637,1342,1013,658,285, + -172,-554,-927,-1282,-1611,-1906,-2161,-2369,-2525,-2627,-2670,-2656,-2583,-2454,-2271,-2039,-1763,-1450,-1107,-742,-364,19,397,762,1105,1418,1694,1926,2109,2238,2311,2326,2282,2181,2024,1816,1561,1266,937,582,209, + -216,-598,-970,-1325,-1654,-1950,-2204,-2412,-2569,-2670,-2714,-2700,-2627,-2497,-2315,-2083,-1807,-1494,-1151,-786,-408,-25,354,718,1061,1374,1650,1882,2065,2195,2267,2282,2238,2137,1980,1772,1517,1222,893,538,165, + -227,-609,-981,-1336,-1665,-1961,-2215,-2423,-2580,-2681,-2725,-2711,-2638,-2508,-2326,-2094,-1818,-1505,-1162,-797,-419,-36,343,707,1050,1363,1639,1871,2054,2184,2256,2271,2227,2126,1969,1761,1506,1211,882,527,154, + -205,-587,-959,-1314,-1643,-1939,-2193,-2401,-2558,-2659,-2703,-2689,-2616,-2486,-2304,-2072,-1796,-1483,-1140,-775,-397,-14,364,729,1072,1385,1661,1893,2076,2205,2278,2293,2249,2148,1991,1783,1528,1233,904,549,176, + -150,-532,-905,-1260,-1589,-1884,-2139,-2347,-2503,-2605,-2649,-2634,-2561,-2432,-2249,-2017,-1741,-1428,-1085,-720,-342,41,419,784,1127,1440,1716,1948,2131,2260,2333,2348,2304,2202,2046,1838,1583,1288,959,604,231, + -64,-445,-818,-1173,-1502,-1797,-2052,-2260,-2417,-2518,-2562,-2547,-2474,-2345,-2162,-1930,-1654,-1341,-998,-633,-255,128,506,871,1214,1527,1803,2035,2217,2347,2420,2434,2390,2289,2132,1924,1670,1374,1045,690,318, + 54,-328,-701,-1056,-1385,-1680,-1935,-2143,-2299,-2401,-2445,-2430,-2357,-2228,-2045,-1813,-1537,-1224,-881,-516,-138,245,623,988,1331,1644,1920,2152,2335,2464,2537,2552,2508,2407,2250,2042,1787,1492,1163,808,435, + 200,-181,-554,-909,-1238,-1533,-1788,-1996,-2152,-2254,-2298,-2283,-2210,-2081,-1898,-1666,-1390,-1077,-734,-369,9,392,770,1135,1478,1791,2067,2299,2482,2611,2684,2699,2655,2553,2397,2189,1934,1639,1310,955,582, + 375,-7,-380,-735,-1064,-1359,-1614,-1822,-1978,-2080,-2124,-2109,-2036,-1907,-1724,-1492,-1216,-903,-560,-195,183,566,944,1309,1652,1965,2241,2473,2656,2785,2858,2873,2829,2727,2571,2363,2108,1813,1484,1129,756, + 574,192,-181,-536,-865,-1160,-1415,-1623,-1779,-1881,-1925,-1910,-1837,-1708,-1525,-1293,-1017,-704,-361,4,382,765,1143,1508,1851,2164,2440,2672,2855,2984,3057,3072,3028,2927,2770,2562,2307,2012,1683,1328,955, + 795,414,41,-314,-643,-938,-1193,-1401,-1558,-1659,-1703,-1688,-1615,-1486,-1303,-1071,-795,-482,-139,226,604,987,1365,1730,2073,2386,2662,2894,3076,3206,3279,3293,3249,3148,2991,2783,2529,2234,1905,1550,1177, + 1036,655,282,-73,-402,-697,-952,-1160,-1317,-1418,-1462,-1447,-1374,-1245,-1062,-830,-554,-241,102,467,845,1228,1606,1971,2314,2627,2903,3135,3318,3447,3520,3534,3491,3389,3233,3024,2770,2475,2146,1791,1418, + 1294,912,539,184,-145,-440,-695,-903,-1059,-1161,-1205,-1190,-1117,-988,-805,-573,-297,16,359,724,1102,1485,1863,2228,2571,2884,3160,3392,3575,3704,3777,3792,3748,3646,3490,3282,3027,2732,2403,2048,1675, + 1564,1182,810,455,126,-170,-424,-632,-789,-890,-934,-920,-847,-717,-535,-302,-27,286,629,994,1373,1755,2134,2498,2841,3155,3430,3662,3845,3975,4047,4062,4018,3917,3760,3552,3297,3002,2673,2318,1946, + 1844,1462,1089,734,405,110,-145,-353,-509,-611,-655,-640,-567,-438,-255,-23,253,566,909,1274,1652,2035,2413,2778,3121,3434,3710,3942,4125,4254,4327,4342,4298,4196,4040,3832,3577,3282,2953,2598,2225, + 2129,1747,1375,1020,691,395,141,-67,-224,-325,-369,-355,-282,-152,30,262,538,851,1194,1559,1937,2320,2698,3063,3406,3719,3995,4227,4410,4539,4612,4627,4583,4482,4325,4117,3862,3567,3238,2883,2510, + 2416,2034,1662,1307,978,682,428,220,63,-38,-82,-68,5,135,318,550,825,1138,1481,1846,2225,2607,2986,3351,3694,4007,4282,4514,4697,4827,4900,4914,4870,4769,4612,4404,4150,3854,3525,3170,2798, + 2701,2320,1947,1592,1263,968,713,505,348,247,203,218,291,420,603,835,1111,1424,1767,2132,2510,2893,3271,3636,3979,4292,4568,4800,4983,5112,5185,5199,5156,5054,4898,4690,4435,4140,3811,3456,3083, + 2981,2599,2227,1872,1543,1247,993,785,628,527,483,497,570,700,883,1115,1390,1703,2046,2411,2790,3172,3551,3915,4258,4572,4847,5079,5262,5392,5464,5479,5435,5334,5177,4969,4715,4419,4090,3735,3363, + 3251,2870,2497,2142,1813,1518,1263,1055,898,797,753,768,841,970,1153,1385,1661,1974,2317,2682,3060,3443,3821,4186,4529,4842,5118,5350,5532,5662,5735,5749,5705,5604,5447,5239,4985,4689,4360,4005,3633, + 3509,3127,2754,2399,2070,1775,1520,1312,1156,1054,1010,1025,1098,1227,1410,1642,1918,2231,2574,2939,3317,3700,4078,4443,4786,5099,5375,5607,5790,5919,5992,6007,5963,5861,5705,5497,5242,4947,4618,4263,3890, + 3750,3368,2995,2640,2311,2016,1761,1553,1397,1295,1251,1266,1339,1468,1651,1883,2159,2472,2815,3180,3558,3941,4319,4684,5027,5340,5616,5848,6031,6160,6233,6248,6204,6102,5946,5738,5483,5188,4859,4504,4131, + 3971,3590,3217,2862,2533,2238,1983,1775,1618,1517,1473,1488,1561,1690,1873,2105,2381,2694,3037,3402,3780,4163,4541,4906,5249,5562,5838,6070,6252,6382,6455,6469,6425,6324,6167,5959,5705,5409,5080,4725,4353, + 4170,3789,3416,3061,2732,2437,2182,1974,1817,1716,1672,1687,1760,1889,2072,2304,2580,2893,3236,3601,3979,4362,4740,5105,5448,5761,6037,6269,6452,6581,6654,6668,6625,6523,6367,6159,5904,5609,5280,4925,4552, + 4344,3963,3590,3235,2906,2611,2356,2148,1992,1890,1846,1861,1934,2063,2246,2478,2754,3067,3410,3775,4153,4536,4914,5279,5622,5935,6211,6443,6626,6755,6828,6843,6799,6697,6541,6333,6078,5783,5454,5099,4726, + 4491,4110,3737,3382,3053,2758,2503,2295,2138,2037,1993,2008,2081,2210,2393,2625,2901,3214,3557,3922,4300,4683,5061,5426,5769,6082,6358,6590,6772,6902,6975,6989,6945,6844,6687,6479,6225,5929,5600,5245,4873, + 4609,4227,3854,3499,3170,2875,2620,2412,2256,2154,2110,2125,2198,2327,2510,2742,3018,3331,3674,4039,4417,4800,5178,5543,5886,6199,6475,6707,6890,7019,7092,7107,7063,6961,6805,6597,6342,6047,5718,5363,4990, + 4695,4314,3941,3586,3257,2962,2707,2499,2342,2241,2197,2212,2285,2414,2597,2829,3105,3418,3761,4126,4504,4887,5265,5630,5973,6286,6562,6794,6977,7106,7179,7193,7150,7048,6892,6684,6429,6134,5805,5450,5077, + 4750,4368,3996,3641,3312,3016,2762,2554,2397,2296,2252,2266,2339,2469,2652,2884,3159,3472,3815,4180,4559,4941,5320,5685,6028,6341,6616,6848,7031,7161,7233,7248,7204,7103,6946,6738,6484,6188,5859,5504,5132, + 4772,4390,4018,3663,3334,3038,2784,2576,2419,2318,2274,2288,2361,2491,2674,2906,3181,3494,3837,4202,4581,4963,5342,5706,6049,6363,6638,6870,7053,7183,7255,7270,7226,7125,6968,6760,6506,6210,5881,5526,5154, + 4761,4379,4007,3652,3323,3027,2773,2565,2408,2307,2263,2277,2350,2480,2663,2895,3170,3483,3826,4191,4570,4952,5331,5695,6038,6352,6627,6859,7042,7172,7244,7259,7215,7114,6957,6749,6495,6199,5870,5515,5143, + 4717,4335,3963,3608,3279,2984,2729,2521,2364,2263,2219,2234,2306,2436,2619,2851,3127,3440,3783,4147,4526,4908,5287,5652,5995,6308,6583,6816,6998,7128,7201,7215,7171,7070,6913,6705,6451,6155,5826,5471,5099, + 4641,4259,3887,3532,3203,2907,2653,2445,2288,2187,2143,2158,2230,2360,2543,2775,3050,3363,3706,4071,4450,4832,5211,5576,5919,6232,6507,6739,6922,7052,7125,7139,7095,6994,6837,6629,6375,6079,5750,5395,5023, + 4534,4152,3779,3424,3095,2800,2545,2337,2181,2079,2035,2050,2123,2252,2435,2667,2943,3256,3599,3964,4342,4725,5103,5468,5811,6124,6400,6632,6815,6944,7017,7032,6988,6887,6730,6522,6267,5972,5643,5288,4915, + 4396,4015,3642,3287,2958,2663,2408,2200,2044,1942,1898,1913,1986,2115,2298,2530,2806,3119,3462,3827,4205,4588,4966,5331,5674,5987,6263,6495,6678,6807,6880,6895,6851,6749,6593,6385,6130,5835,5506,5151,4778, + 4231,3850,3477,3122,2793,2498,2243,2035,1878,1777,1733,1748,1821,1950,2133,2365,2641,2954,3297,3662,4040,4423,4801,5166,5509,5822,6098,6330,6513,6642,6715,6729,6686,6584,6428,6219,5965,5670,5341,4986,4613, + + 383,1,-371,-726,-1055,-1351,-1605,-1813,-1970,-2071,-2115,-2101,-2028,-1898,-1716,-1483,-1208,-895,-552,-187,192,574,953,1317,1660,1973,2249,2481,2664,2794,2866,2881,2837,2736,2579,2371,2116,1821,1492,1137,765, + 192,-190,-562,-917,-1246,-1542,-1796,-2004,-2161,-2262,-2306,-2292,-2219,-2089,-1907,-1675,-1399,-1086,-743,-378,0,383,761,1126,1469,1782,2058,2290,2473,2602,2675,2690,2646,2545,2388,2180,1925,1630,1301,946,573, + 27,-355,-728,-1083,-1412,-1707,-1962,-2170,-2326,-2428,-2472,-2457,-2384,-2255,-2072,-1840,-1564,-1251,-908,-543,-165,218,596,961,1304,1617,1893,2125,2308,2437,2510,2525,2481,2379,2223,2015,1760,1465,1136,781,408, + -111,-492,-865,-1220,-1549,-1844,-2099,-2307,-2463,-2565,-2609,-2594,-2521,-2392,-2209,-1977,-1701,-1388,-1045,-680,-302,81,459,824,1167,1480,1756,1988,2171,2300,2373,2388,2344,2242,2086,1878,1623,1328,999,644,271, + -218,-600,-972,-1327,-1656,-1952,-2206,-2414,-2571,-2672,-2716,-2701,-2629,-2499,-2316,-2084,-1809,-1495,-1152,-788,-409,-27,352,717,1060,1373,1648,1880,2063,2193,2266,2280,2236,2135,1978,1770,1516,1220,891,536,164, + -294,-676,-1048,-1403,-1732,-2028,-2282,-2490,-2647,-2748,-2792,-2778,-2705,-2575,-2392,-2160,-1885,-1572,-1229,-864,-485,-103,276,640,983,1297,1572,1804,1987,2117,2189,2204,2160,2059,1902,1694,1440,1144,815,460,88, + -338,-720,-1092,-1447,-1776,-2071,-2326,-2534,-2691,-2792,-2836,-2821,-2749,-2619,-2436,-2204,-1928,-1615,-1272,-908,-529,-147,232,597,940,1253,1528,1761,1943,2073,2146,2160,2116,2015,1858,1650,1396,1100,771,416,44, + -349,-731,-1103,-1458,-1787,-2082,-2337,-2545,-2702,-2803,-2847,-2832,-2760,-2630,-2447,-2215,-1939,-1626,-1283,-919,-540,-158,221,586,929,1242,1517,1750,1932,2062,2135,2149,2105,2004,1847,1639,1385,1089,760,405,33, + -327,-709,-1081,-1436,-1765,-2060,-2315,-2523,-2680,-2781,-2825,-2810,-2738,-2608,-2425,-2193,-1918,-1604,-1261,-897,-518,-136,243,608,951,1264,1539,1772,1954,2084,2157,2171,2127,2026,1869,1661,1407,1111,782,427,55, + -272,-654,-1027,-1382,-1711,-2006,-2260,-2469,-2625,-2726,-2770,-2756,-2683,-2553,-2371,-2139,-1863,-1550,-1207,-842,-464,-81,297,662,1005,1318,1594,1826,2009,2138,2211,2226,2182,2081,1924,1716,1461,1166,837,482,109, + -186,-567,-940,-1295,-1624,-1919,-2174,-2382,-2538,-2640,-2684,-2669,-2596,-2467,-2284,-2052,-1776,-1463,-1120,-755,-377,6,384,749,1092,1405,1681,1913,2096,2225,2298,2313,2269,2167,2011,1803,1548,1253,924,569,196, + -68,-450,-822,-1177,-1506,-1802,-2056,-2264,-2421,-2522,-2566,-2552,-2479,-2349,-2167,-1934,-1659,-1346,-1003,-638,-259,123,502,866,1209,1523,1798,2030,2213,2343,2415,2430,2386,2285,2128,1920,1665,1370,1041,686,314, + 79,-303,-676,-1031,-1360,-1655,-1910,-2118,-2274,-2376,-2420,-2405,-2332,-2203,-2020,-1788,-1512,-1199,-856,-491,-113,270,648,1013,1356,1669,1945,2177,2360,2489,2562,2577,2533,2432,2275,2067,1812,1517,1188,833,460, + 253,-129,-502,-857,-1186,-1481,-1735,-1944,-2100,-2202,-2245,-2231,-2158,-2029,-1846,-1614,-1338,-1025,-682,-317,61,444,822,1187,1530,1843,2119,2351,2534,2663,2736,2751,2707,2606,2449,2241,1986,1691,1362,1007,634, + 452,70,-302,-657,-986,-1282,-1536,-1744,-1901,-2002,-2046,-2032,-1959,-1829,-1647,-1414,-1139,-826,-483,-118,261,643,1022,1386,1729,2042,2318,2550,2733,2863,2935,2950,2906,2805,2648,2440,2185,1890,1561,1206,834, + 673,292,-81,-436,-765,-1060,-1315,-1523,-1679,-1781,-1825,-1810,-1737,-1608,-1425,-1193,-917,-604,-261,104,482,865,1243,1608,1951,2264,2540,2772,2955,3084,3157,3172,3128,3026,2870,2662,2407,2112,1783,1428,1055, + 915,533,160,-195,-524,-819,-1074,-1282,-1438,-1540,-1584,-1569,-1496,-1367,-1184,-952,-676,-363,-20,345,723,1106,1484,1849,2192,2505,2781,3013,3196,3325,3398,3413,3369,3267,3111,2903,2648,2353,2024,1669,1296, + 1172,790,418,63,-266,-562,-816,-1024,-1181,-1282,-1326,-1312,-1239,-1109,-927,-695,-419,-106,237,602,980,1363,1741,2106,2449,2762,3038,3270,3453,3582,3655,3670,3626,3525,3368,3160,2905,2610,2281,1926,1553, + 1442,1061,688,333,4,-291,-546,-754,-911,-1012,-1056,-1041,-968,-839,-656,-424,-148,165,508,873,1251,1634,2012,2377,2720,3033,3309,3541,3723,3853,3926,3940,3896,3795,3638,3430,3176,2880,2551,2196,1824, + 1722,1340,967,612,283,-12,-266,-475,-631,-732,-776,-762,-689,-559,-377,-145,131,444,787,1152,1530,1913,2291,2656,2999,3312,3588,3820,4003,4132,4205,4220,4176,4075,3918,3710,3455,3160,2831,2476,2103, + 2007,1625,1253,898,569,273,19,-189,-346,-447,-491,-476,-404,-274,-91,141,416,730,1073,1437,1816,2198,2577,2942,3285,3598,3873,4105,4288,4418,4491,4505,4461,4360,4203,3995,3741,3445,3116,2761,2389, + 2294,1913,1540,1185,856,561,306,98,-59,-160,-204,-189,-116,13,196,428,704,1017,1360,1725,2103,2486,2864,3229,3572,3885,4161,4393,4576,4705,4778,4792,4749,4647,4491,4282,4028,3733,3404,3049,2676, + 2580,2198,1825,1470,1141,846,591,383,227,125,81,96,169,298,481,713,989,1302,1645,2010,2388,2771,3149,3514,3857,4170,4446,4678,4861,4990,5063,5078,5034,4932,4776,4568,4313,4018,3689,3334,2961, + 2859,2478,2105,1750,1421,1126,871,663,506,405,361,376,449,578,761,993,1269,1582,1925,2290,2668,3051,3429,3794,4137,4450,4726,4958,5140,5270,5343,5357,5313,5212,5055,4847,4593,4297,3968,3613,3241, + 3129,2748,2375,2020,1691,1396,1141,933,777,675,631,646,719,848,1031,1263,1539,1852,2195,2560,2938,3321,3699,4064,4407,4720,4996,5228,5411,5540,5613,5628,5584,5482,5326,5118,4863,4568,4239,3884,3511, + 3387,3005,2633,2278,1949,1653,1399,1191,1034,933,889,903,976,1106,1288,1520,1796,2109,2452,2817,3195,3578,3956,4321,4664,4977,5253,5485,5668,5797,5870,5885,5841,5740,5583,5375,5120,4825,4496,4141,3768, + 3628,3246,2874,2519,2190,1894,1640,1432,1275,1174,1130,1144,1217,1347,1529,1761,2037,2350,2693,3058,3436,3819,4197,4562,4905,5218,5494,5726,5909,6038,6111,6126,6082,5981,5824,5616,5361,5066,4737,4382,4009, + 3849,3468,3095,2740,2411,2116,1861,1653,1497,1395,1351,1366,1439,1568,1751,1983,2259,2572,2915,3280,3658,4041,4419,4784,5127,5440,5716,5948,6131,6260,6333,6348,6304,6202,6046,5838,5583,5288,4959,4604,4231, + 4049,3667,3294,2939,2610,2315,2060,1852,1696,1594,1550,1565,1638,1767,1950,2182,2458,2771,3114,3479,3857,4240,4618,4983,5326,5639,5915,6147,6330,6459,6532,6547,6503,6401,6245,6037,5782,5487,5158,4803,4430, + 4223,3841,3468,3113,2784,2489,2234,2026,1870,1768,1724,1739,1812,1941,2124,2356,2632,2945,3288,3653,4031,4414,4792,5157,5500,5813,6089,6321,6504,6633,6706,6721,6677,6576,6419,6211,5956,5661,5332,4977,4604, + 4369,3988,3615,3260,2931,2636,2381,2173,2017,1915,1871,1886,1959,2088,2271,2503,2779,3092,3435,3800,4178,4561,4939,5304,5647,5960,6236,6468,6651,6780,6853,6868,6824,6722,6566,6358,6103,5808,5479,5124,4751, + 4487,4105,3733,3378,3049,2753,2499,2291,2134,2033,1989,2003,2076,2206,2388,2621,2896,3209,3552,3917,4296,4678,5057,5421,5764,6077,6353,6585,6768,6898,6970,6985,6941,6840,6683,6475,6220,5925,5596,5241,4869, + 4574,4192,3819,3464,3135,2840,2585,2377,2221,2119,2075,2090,2163,2292,2475,2707,2983,3296,3639,4004,4382,4765,5143,5508,5851,6164,6440,6672,6855,6984,7057,7072,7028,6926,6770,6562,6307,6012,5683,5328,4955, + 4628,4247,3874,3519,3190,2895,2640,2432,2275,2174,2130,2145,2218,2347,2530,2762,3038,3351,3694,4059,4437,4820,5198,5563,5906,6219,6495,6727,6909,7039,7112,7126,7082,6981,6824,6616,6362,6067,5738,5383,5010, + 4650,4269,3896,3541,3212,2917,2662,2454,2297,2196,2152,2167,2240,2369,2552,2784,3060,3373,3716,4081,4459,4842,5220,5585,5928,6241,6517,6749,6931,7061,7134,7148,7104,7003,6846,6638,6384,6088,5759,5404,5032, + 4639,4258,3885,3530,3201,2906,2651,2443,2286,2185,2141,2156,2229,2358,2541,2773,3049,3362,3705,4070,4448,4831,5209,5574,5917,6230,6506,6738,6920,7050,7123,7137,7093,6992,6835,6627,6373,6077,5748,5393,5021, + 4595,4214,3841,3486,3157,2862,2607,2399,2243,2141,2097,2112,2185,2314,2497,2729,3005,3318,3661,4026,4404,4787,5165,5530,5873,6186,6462,6694,6877,7006,7079,7094,7050,6948,6792,6584,6329,6034,5705,5350,4977, + 4519,4138,3765,3410,3081,2786,2531,2323,2166,2065,2021,2036,2109,2238,2421,2653,2929,3242,3585,3950,4328,4711,5089,5454,5797,6110,6386,6618,6801,6930,7003,7017,6974,6872,6716,6507,6253,5958,5629,5274,4901, + 4412,4030,3658,3303,2974,2678,2424,2216,2059,1958,1914,1928,2001,2131,2313,2546,2821,3134,3477,3842,4221,4603,4982,5346,5689,6003,6278,6510,6693,6823,6895,6910,6866,6765,6608,6400,6145,5850,5521,5166,4794, + 4275,3893,3520,3165,2836,2541,2286,2078,1922,1820,1777,1791,1864,1993,2176,2408,2684,2997,3340,3705,4083,4466,4844,5209,5552,5865,6141,6373,6556,6685,6758,6773,6729,6628,6471,6263,6008,5713,5384,5029,4656, + 4109,3728,3355,3000,2671,2376,2121,1913,1757,1655,1611,1626,1699,1828,2011,2243,2519,2832,3175,3540,3918,4301,4679,5044,5387,5700,5976,6208,6391,6520,6593,6608,6564,6462,6306,6098,5843,5548,5219,4864,4491, + + 240,-142,-514,-869,-1198,-1494,-1748,-1956,-2113,-2214,-2258,-2243,-2171,-2041,-1858,-1626,-1351,-1038,-695,-330,49,431,810,1175,1518,1831,2106,2338,2521,2651,2724,2738,2694,2593,2436,2228,1974,1678,1349,994,622, + 49,-333,-705,-1060,-1389,-1685,-1939,-2147,-2304,-2405,-2449,-2435,-2362,-2232,-2049,-1817,-1542,-1229,-886,-521,-142,240,619,983,1326,1640,1915,2147,2330,2460,2532,2547,2503,2402,2245,2037,1783,1487,1158,803,431, + -116,-498,-871,-1226,-1555,-1850,-2105,-2313,-2469,-2571,-2614,-2600,-2527,-2398,-2215,-1983,-1707,-1394,-1051,-686,-308,75,453,818,1161,1474,1750,1982,2165,2294,2367,2382,2338,2237,2080,1872,1617,1322,993,638,265, + -253,-635,-1008,-1363,-1692,-1987,-2242,-2450,-2606,-2708,-2752,-2737,-2664,-2535,-2352,-2120,-1844,-1531,-1188,-823,-445,-62,316,681,1024,1337,1613,1845,2028,2157,2230,2245,2201,2099,1943,1735,1480,1185,856,501,128, + -361,-742,-1115,-1470,-1799,-2094,-2349,-2557,-2714,-2815,-2859,-2844,-2771,-2642,-2459,-2227,-1951,-1638,-1295,-930,-552,-169,209,574,917,1230,1506,1738,1920,2050,2123,2137,2093,1992,1835,1627,1373,1077,748,393,21, + -437,-819,-1191,-1546,-1875,-2171,-2425,-2633,-2790,-2891,-2935,-2920,-2848,-2718,-2535,-2303,-2028,-1714,-1371,-1007,-628,-246,133,498,841,1154,1429,1661,1844,1974,2047,2061,2017,1916,1759,1551,1297,1001,672,317,-55, + -481,-862,-1235,-1590,-1919,-2214,-2469,-2677,-2834,-2935,-2979,-2964,-2891,-2762,-2579,-2347,-2071,-1758,-1415,-1050,-672,-289,89,454,797,1110,1386,1618,1800,1930,2003,2017,1974,1872,1716,1507,1253,958,629,274,-99, + -492,-873,-1246,-1601,-1930,-2225,-2480,-2688,-2845,-2946,-2990,-2975,-2902,-2773,-2590,-2358,-2082,-1769,-1426,-1061,-683,-300,78,443,786,1099,1375,1607,1789,1919,1992,2006,1963,1861,1705,1496,1242,947,618,263,-110, + -470,-851,-1224,-1579,-1908,-2203,-2458,-2666,-2823,-2924,-2968,-2953,-2880,-2751,-2568,-2336,-2060,-1747,-1404,-1039,-661,-278,100,465,808,1121,1397,1629,1811,1941,2014,2028,1984,1883,1727,1518,1264,969,640,285,-88, + -415,-797,-1169,-1524,-1853,-2149,-2403,-2611,-2768,-2869,-2913,-2899,-2826,-2696,-2514,-2281,-2006,-1693,-1350,-985,-606,-224,155,519,862,1176,1451,1683,1866,1996,2068,2083,2039,1938,1781,1573,1318,1023,694,339,-33, + -328,-710,-1083,-1438,-1767,-2062,-2317,-2525,-2681,-2783,-2827,-2812,-2739,-2610,-2427,-2195,-1919,-1606,-1263,-898,-520,-137,241,606,949,1262,1538,1770,1953,2082,2155,2170,2126,2024,1868,1660,1405,1110,781,426,53, + -211,-593,-965,-1320,-1649,-1945,-2199,-2407,-2564,-2665,-2709,-2694,-2622,-2492,-2309,-2077,-1802,-1489,-1146,-781,-402,-20,359,724,1067,1380,1655,1887,2070,2200,2273,2287,2243,2142,1985,1777,1523,1227,898,543,171, + -64,-446,-819,-1174,-1503,-1798,-2052,-2260,-2417,-2518,-2562,-2548,-2475,-2345,-2163,-1931,-1655,-1342,-999,-634,-256,127,505,870,1213,1526,1802,2034,2217,2346,2419,2434,2390,2289,2132,1924,1669,1374,1045,690,317, + 110,-272,-644,-999,-1328,-1624,-1878,-2086,-2243,-2344,-2388,-2374,-2301,-2171,-1989,-1757,-1481,-1168,-825,-460,-81,301,680,1044,1387,1700,1976,2208,2391,2521,2593,2608,2564,2463,2306,2098,1843,1548,1219,864,492, + 309,-73,-445,-800,-1129,-1425,-1679,-1887,-2044,-2145,-2189,-2174,-2102,-1972,-1789,-1557,-1282,-969,-626,-261,118,500,879,1244,1587,1900,2175,2407,2590,2720,2793,2807,2763,2662,2505,2297,2043,1747,1418,1063,691, + 531,149,-224,-579,-908,-1203,-1458,-1666,-1822,-1924,-1968,-1953,-1880,-1751,-1568,-1336,-1060,-747,-404,-39,339,722,1100,1465,1808,2121,2397,2629,2812,2941,3014,3029,2985,2883,2727,2519,2264,1969,1640,1285,912, + 772,390,17,-338,-667,-962,-1217,-1425,-1581,-1683,-1727,-1712,-1639,-1510,-1327,-1095,-819,-506,-163,202,580,963,1341,1706,2049,2362,2638,2870,3053,3182,3255,3270,3226,3124,2968,2760,2505,2210,1881,1526,1153, + 1029,647,275,-80,-409,-705,-959,-1167,-1324,-1425,-1469,-1455,-1382,-1252,-1069,-837,-562,-249,94,459,838,1220,1599,1964,2307,2620,2895,3127,3310,3440,3513,3527,3483,3382,3225,3017,2763,2467,2138,1783,1411, + 1299,918,545,190,-139,-434,-689,-897,-1054,-1155,-1199,-1184,-1111,-982,-799,-567,-291,22,365,730,1108,1491,1869,2234,2577,2890,3166,3398,3581,3710,3783,3797,3754,3652,3496,3288,3033,2738,2409,2054,1681, + 1579,1197,825,470,141,-155,-409,-617,-774,-875,-919,-905,-832,-702,-520,-287,-12,301,644,1009,1388,1770,2149,2513,2856,3170,3445,3677,3860,3990,4062,4077,4033,3932,3775,3567,3312,3017,2688,2333,1961, + 1864,1483,1110,755,426,131,-124,-332,-489,-590,-634,-619,-546,-417,-234,-2,274,587,930,1295,1673,2056,2434,2799,3142,3455,3731,3963,4145,4275,4348,4362,4318,4217,4060,3852,3598,3302,2973,2618,2246, + 2151,1770,1397,1042,713,418,163,-45,-201,-303,-347,-332,-259,-130,53,285,561,874,1217,1582,1960,2343,2721,3086,3429,3742,4018,4250,4433,4562,4635,4650,4606,4504,4348,4140,3885,3590,3261,2906,2533, + 2437,2055,1682,1327,998,703,448,240,84,-18,-62,-47,26,155,338,570,846,1159,1502,1867,2245,2628,3006,3371,3714,4027,4303,4535,4718,4847,4920,4935,4891,4790,4633,4425,4170,3875,3546,3191,2818, + 2716,2335,1962,1607,1278,983,728,520,363,262,218,233,306,435,618,850,1126,1439,1782,2147,2525,2908,3286,3651,3994,4307,4583,4815,4998,5127,5200,5214,5171,5069,4913,4705,4450,4155,3826,3471,3098, + 2987,2605,2232,1877,1548,1253,998,790,634,532,488,503,576,705,888,1120,1396,1709,2052,2417,2795,3178,3556,3921,4264,4577,4853,5085,5268,5397,5470,5485,5441,5339,5183,4975,4720,4425,4096,3741,3368, + 3244,2862,2490,2135,1806,1510,1256,1048,891,790,746,760,833,963,1146,1378,1653,1966,2309,2674,3053,3435,3814,4178,4521,4835,5110,5342,5525,5655,5727,5742,5698,5597,5440,5232,4978,4682,4353,3998,3626, + 3485,3103,2731,2376,2047,1751,1497,1289,1132,1031,987,1001,1074,1204,1387,1619,1894,2207,2550,2915,3294,3676,4055,4420,4763,5076,5351,5583,5766,5896,5968,5983,5939,5838,5681,5473,5219,4923,4594,4239,3867, + 3707,3325,2952,2597,2268,1973,1718,1510,1354,1252,1208,1223,1296,1425,1608,1840,2116,2429,2772,3137,3515,3898,4276,4641,4984,5297,5573,5805,5988,6117,6190,6205,6161,6059,5903,5695,5440,5145,4816,4461,4088, + 3906,3524,3151,2796,2467,2172,1917,1709,1553,1451,1408,1422,1495,1624,1807,2039,2315,2628,2971,3336,3714,4097,4475,4840,5183,5496,5772,6004,6187,6316,6389,6404,6360,6259,6102,5894,5639,5344,5015,4660,4287, + 4080,3698,3325,2970,2641,2346,2092,1883,1727,1626,1582,1596,1669,1799,1981,2213,2489,2802,3145,3510,3888,4271,4649,5014,5357,5670,5946,6178,6361,6490,6563,6578,6534,6433,6276,6068,5813,5518,5189,4834,4461, + 4227,3845,3472,3117,2788,2493,2238,2030,1874,1772,1728,1743,1816,1945,2128,2360,2636,2949,3292,3657,4035,4418,4796,5161,5504,5817,6093,6325,6508,6637,6710,6725,6681,6579,6423,6215,5960,5665,5336,4981,4608, + 4344,3962,3590,3235,2906,2610,2356,2148,1991,1890,1846,1861,1933,2063,2246,2478,2753,3066,3409,3774,4153,4535,4914,5279,5622,5935,6210,6442,6625,6755,6828,6842,6798,6697,6540,6332,6078,5782,5453,5098,4726, + 4431,4049,3676,3321,2992,2697,2442,2234,2078,1976,1932,1947,2020,2149,2332,2564,2840,3153,3496,3861,4239,4622,5000,5365,5708,6021,6297,6529,6712,6841,6914,6929,6885,6784,6627,6419,6164,5869,5540,5185,4812, + 4485,4104,3731,3376,3047,2752,2497,2289,2132,2031,1987,2002,2075,2204,2387,2619,2895,3208,3551,3916,4294,4677,5055,5420,5763,6076,6352,6584,6767,6896,6969,6984,6940,6838,6682,6474,6219,5924,5595,5240,4867, + 4507,4126,3753,3398,3069,2774,2519,2311,2154,2053,2009,2024,2097,2226,2409,2641,2917,3230,3573,3938,4316,4699,5077,5442,5785,6098,6374,6606,6789,6918,6991,7005,6962,6860,6704,6496,6241,5946,5617,5262,4889, + 4496,4115,3742,3387,3058,2763,2508,2300,2143,2042,1998,2013,2086,2215,2398,2630,2906,3219,3562,3927,4305,4688,5066,5431,5774,6087,6363,6595,6778,6907,6980,6994,6951,6849,6693,6485,6230,5935,5606,5251,4878, + 4452,4071,3698,3343,3014,2719,2464,2256,2100,1998,1954,1969,2042,2171,2354,2586,2862,3175,3518,3883,4261,4644,5022,5387,5730,6043,6319,6551,6734,6863,6936,6951,6907,6805,6649,6441,6186,5891,5562,5207,4834, + 4376,3995,3622,3267,2938,2643,2388,2180,2024,1922,1878,1893,1966,2095,2278,2510,2786,3099,3442,3807,4185,4568,4946,5311,5654,5967,6243,6475,6658,6787,6860,6875,6831,6729,6573,6365,6110,5815,5486,5131,4758, + 4269,3887,3515,3160,2831,2535,2281,2073,1916,1815,1771,1786,1858,1988,2171,2403,2678,2991,3334,3699,4078,4460,4839,5204,5547,5860,6135,6367,6550,6680,6753,6767,6723,6622,6465,6257,6003,5707,5378,5023,4651, + 4132,3750,3378,3023,2694,2398,2144,1936,1779,1678,1634,1648,1721,1851,2033,2265,2541,2854,3197,3562,3940,4323,4701,5066,5409,5722,5998,6230,6413,6542,6615,6630,6586,6485,6328,6120,5865,5570,5241,4886,4513, + 3967,3585,3212,2857,2528,2233,1978,1770,1614,1512,1468,1483,1556,1685,1868,2100,2376,2689,3032,3397,3775,4158,4536,4901,5244,5557,5833,6065,6248,6377,6450,6465,6421,6319,6163,5955,5700,5405,5076,4721,4348, + + 79,-302,-675,-1030,-1359,-1654,-1909,-2117,-2273,-2375,-2419,-2404,-2331,-2202,-2019,-1787,-1511,-1198,-855,-490,-112,271,649,1014,1357,1670,1946,2178,2361,2490,2563,2578,2534,2432,2276,2068,1813,1518,1189,834,461, + -112,-493,-866,-1221,-1550,-1845,-2100,-2308,-2465,-2566,-2610,-2595,-2522,-2393,-2210,-1978,-1702,-1389,-1046,-681,-303,80,458,823,1166,1479,1755,1987,2170,2299,2372,2386,2343,2241,2085,1877,1622,1327,998,643,270, + -277,-659,-1031,-1386,-1715,-2010,-2265,-2473,-2630,-2731,-2775,-2760,-2688,-2558,-2375,-2143,-1868,-1554,-1211,-847,-468,-86,293,658,1001,1314,1589,1822,2004,2134,2207,2221,2177,2076,1919,1711,1457,1161,832,477,105, + -414,-796,-1168,-1523,-1852,-2148,-2402,-2610,-2767,-2868,-2912,-2898,-2825,-2695,-2513,-2280,-2005,-1692,-1349,-984,-605,-223,156,520,863,1177,1452,1684,1867,1997,2069,2084,2040,1939,1782,1574,1319,1024,695,340,-32, + -521,-903,-1276,-1631,-1960,-2255,-2510,-2718,-2874,-2976,-3020,-3005,-2932,-2803,-2620,-2388,-2112,-1799,-1456,-1091,-713,-330,48,413,756,1069,1345,1577,1760,1889,1962,1977,1933,1831,1675,1467,1212,917,588,233,-140, + -598,-979,-1352,-1707,-2036,-2331,-2586,-2794,-2950,-3052,-3096,-3081,-3008,-2879,-2696,-2464,-2188,-1875,-1532,-1167,-789,-406,-28,337,680,993,1269,1501,1684,1813,1886,1901,1857,1755,1599,1391,1136,841,512,157,-216, + -641,-1023,-1396,-1751,-2080,-2375,-2630,-2838,-2994,-3096,-3140,-3125,-3052,-2923,-2740,-2508,-2232,-1919,-1576,-1211,-833,-450,-72,293,636,949,1225,1457,1640,1769,1842,1857,1813,1711,1555,1347,1092,797,468,113,-260, + -652,-1034,-1407,-1762,-2091,-2386,-2641,-2849,-3005,-3107,-3151,-3136,-3063,-2934,-2751,-2519,-2243,-1930,-1587,-1222,-844,-461,-83,282,625,938,1214,1446,1629,1758,1831,1846,1802,1700,1544,1336,1081,786,457,102,-271, + -630,-1012,-1385,-1740,-2069,-2364,-2619,-2827,-2983,-3085,-3129,-3114,-3041,-2912,-2729,-2497,-2221,-1908,-1565,-1200,-822,-439,-61,304,647,960,1236,1468,1651,1780,1853,1868,1824,1722,1566,1358,1103,808,479,124,-249, + -576,-957,-1330,-1685,-2014,-2309,-2564,-2772,-2929,-3030,-3074,-3059,-2986,-2857,-2674,-2442,-2166,-1853,-1510,-1145,-767,-384,-6,359,702,1015,1291,1523,1706,1835,1908,1922,1879,1777,1621,1413,1158,863,534,179,-194, + -489,-871,-1243,-1598,-1927,-2223,-2477,-2685,-2842,-2943,-2987,-2973,-2900,-2770,-2587,-2355,-2080,-1767,-1424,-1059,-680,-298,81,445,788,1102,1377,1609,1792,1922,1994,2009,1965,1864,1707,1499,1244,949,620,265,-107, + -372,-753,-1126,-1481,-1810,-2105,-2360,-2568,-2724,-2826,-2870,-2855,-2782,-2653,-2470,-2238,-1962,-1649,-1306,-941,-563,-180,198,563,906,1219,1495,1727,1910,2039,2112,2127,2083,1981,1825,1617,1362,1067,738,383,10, + -225,-606,-979,-1334,-1663,-1958,-2213,-2421,-2578,-2679,-2723,-2708,-2635,-2506,-2323,-2091,-1815,-1502,-1159,-794,-416,-33,345,710,1053,1366,1642,1874,2056,2186,2259,2273,2229,2128,1971,1763,1509,1213,884,529,157, + -51,-432,-805,-1160,-1489,-1784,-2039,-2247,-2404,-2505,-2549,-2534,-2461,-2332,-2149,-1917,-1641,-1328,-985,-620,-242,141,519,884,1227,1540,1816,2048,2231,2360,2433,2447,2404,2302,2146,1937,1683,1388,1059,704,331, + 148,-233,-606,-961,-1290,-1585,-1840,-2048,-2204,-2306,-2350,-2335,-2262,-2133,-1950,-1718,-1442,-1129,-786,-421,-43,340,718,1083,1426,1739,2015,2247,2430,2559,2632,2647,2603,2501,2345,2137,1882,1587,1258,903,530, + 370,-12,-384,-739,-1068,-1364,-1618,-1826,-1983,-2084,-2128,-2114,-2041,-1911,-1728,-1496,-1221,-908,-565,-200,179,561,940,1304,1647,1961,2236,2468,2651,2781,2853,2868,2824,2723,2566,2358,2104,1808,1479,1124,752, + 611,229,-143,-498,-827,-1123,-1377,-1585,-1742,-1843,-1887,-1873,-1800,-1670,-1487,-1255,-980,-667,-324,41,420,802,1181,1546,1889,2202,2477,2709,2892,3022,3095,3109,3065,2964,2807,2599,2345,2049,1720,1365,993, + 868,487,114,-241,-570,-865,-1120,-1328,-1484,-1586,-1630,-1615,-1542,-1413,-1230,-998,-722,-409,-66,299,677,1060,1438,1803,2146,2459,2735,2967,3150,3279,3352,3367,3323,3221,3065,2857,2602,2307,1978,1623,1250, + 1139,757,384,29,-300,-595,-850,-1058,-1214,-1316,-1360,-1345,-1272,-1143,-960,-728,-452,-139,204,569,947,1330,1708,2073,2416,2729,3005,3237,3420,3549,3622,3637,3593,3491,3335,3127,2872,2577,2248,1893,1520, + 1418,1037,664,309,-20,-315,-570,-778,-935,-1036,-1080,-1065,-992,-863,-680,-448,-172,141,484,849,1227,1610,1988,2353,2696,3009,3285,3517,3700,3829,3902,3916,3873,3771,3615,3407,3152,2857,2528,2173,1800, + 1704,1322,949,594,265,-30,-285,-493,-649,-751,-795,-780,-707,-578,-395,-163,113,426,769,1134,1512,1895,2273,2638,2981,3294,3570,3802,3985,4114,4187,4202,4158,4056,3900,3692,3437,3142,2813,2458,2085, + 1991,1609,1236,881,552,257,3,-206,-362,-464,-507,-493,-420,-291,-108,124,400,713,1056,1421,1799,2182,2560,2925,3268,3581,3857,4089,4272,4401,4474,4489,4445,4344,4187,3979,3724,3429,3100,2745,2372, + 2276,1894,1522,1167,838,542,288,80,-77,-178,-222,-207,-135,-5,178,410,685,998,1341,1706,2085,2467,2846,3211,3554,3867,4142,4374,4557,4687,4760,4774,4730,4629,4472,4264,4010,3714,3385,3030,2658, + 2556,2174,1801,1446,1117,822,567,359,203,101,57,72,145,274,457,689,965,1278,1621,1986,2364,2747,3125,3490,3833,4146,4422,4654,4837,4966,5039,5054,5010,4909,4752,4544,4289,3994,3665,3310,2937, + 2826,2444,2072,1717,1388,1092,838,630,473,372,328,342,415,545,728,960,1235,1548,1891,2256,2635,3017,3396,3760,4103,4417,4692,4924,5107,5237,5309,5324,5280,5179,5022,4814,4560,4264,3935,3580,3208, + 3083,2702,2329,1974,1645,1350,1095,887,730,629,585,600,673,802,985,1217,1493,1806,2149,2514,2892,3275,3653,4018,4361,4674,4950,5182,5365,5494,5567,5581,5538,5436,5280,5072,4817,4522,4193,3838,3465, + 3324,2943,2570,2215,1886,1591,1336,1128,972,870,826,841,914,1043,1226,1458,1734,2047,2390,2755,3133,3516,3894,4259,4602,4915,5191,5423,5606,5735,5808,5823,5779,5677,5521,5313,5058,4763,4434,4079,3706, + 3546,3164,2792,2437,2108,1812,1558,1350,1193,1092,1048,1062,1135,1265,1447,1680,1955,2268,2611,2976,3355,3737,4116,4480,4823,5137,5412,5644,5827,5957,6029,6044,6000,5899,5742,5534,5279,4984,4655,4300,3928, + 3745,3363,2991,2636,2307,2011,1757,1549,1392,1291,1247,1262,1334,1464,1647,1879,2154,2468,2811,3175,3554,3936,4315,4680,5023,5336,5611,5843,6026,6156,6229,6243,6199,6098,5941,5733,5479,5183,4854,4499,4127, + 3919,3538,3165,2810,2481,2186,1931,1723,1566,1465,1421,1436,1509,1638,1821,2053,2329,2642,2985,3350,3728,4111,4489,4854,5197,5510,5786,6018,6200,6330,6403,6417,6373,6272,6115,5907,5653,5357,5028,4673,4301, + 4066,3684,3312,2957,2628,2332,2078,1870,1713,1612,1568,1582,1655,1785,1967,2200,2475,2788,3131,3496,3875,4257,4636,5000,5343,5657,5932,6164,6347,6477,6549,6564,6520,6419,6262,6054,5799,5504,5175,4820,4448, + 4183,3802,3429,3074,2745,2450,2195,1987,1831,1729,1685,1700,1773,1902,2085,2317,2593,2906,3249,3614,3992,4375,4753,5118,5461,5774,6050,6282,6465,6594,6667,6682,6638,6536,6380,6172,5917,5622,5293,4938,4565, + 4270,3888,3516,3161,2832,2536,2282,2074,1917,1816,1772,1787,1859,1989,2172,2404,2679,2992,3335,3700,4079,4461,4840,5205,5548,5861,6136,6368,6551,6681,6754,6768,6724,6623,6466,6258,6004,5708,5379,5024,4652, + 4325,3943,3570,3215,2886,2591,2336,2128,1972,1870,1827,1841,1914,2043,2226,2458,2734,3047,3390,3755,4133,4516,4894,5259,5602,5915,6191,6423,6606,6735,6808,6823,6779,6678,6521,6313,6058,5763,5434,5079,4706, + 4347,3965,3592,3237,2908,2613,2358,2150,1994,1892,1849,1863,1936,2065,2248,2480,2756,3069,3412,3777,4155,4538,4916,5281,5624,5937,6213,6445,6628,6757,6830,6845,6801,6700,6543,6335,6080,5785,5456,5101,4728, + 4336,3954,3581,3226,2897,2602,2347,2139,1983,1881,1838,1852,1925,2054,2237,2469,2745,3058,3401,3766,4144,4527,4905,5270,5613,5926,6202,6434,6617,6746,6819,6834,6790,6689,6532,6324,6069,5774,5445,5090,4717, + 4292,3910,3538,3183,2854,2558,2304,2096,1939,1838,1794,1808,1881,2011,2193,2425,2701,3014,3357,3722,4100,4483,4861,5226,5569,5882,6158,6390,6573,6702,6775,6790,6746,6645,6488,6280,6025,5730,5401,5046,4673, + 4216,3834,3461,3106,2777,2482,2228,2019,1863,1761,1718,1732,1805,1934,2117,2349,2625,2938,3281,3646,4024,4407,4785,5150,5493,5806,6082,6314,6497,6626,6699,6714,6670,6569,6412,6204,5949,5654,5325,4970,4597, + 4108,3727,3354,2999,2670,2375,2120,1912,1756,1654,1610,1625,1698,1827,2010,2242,2518,2831,3174,3539,3917,4300,4678,5043,5386,5699,5975,6207,6390,6519,6592,6607,6563,6461,6305,6097,5842,5547,5218,4863,4490, + 3971,3590,3217,2862,2533,2238,1983,1775,1618,1517,1473,1488,1561,1690,1873,2105,2381,2694,3037,3402,3780,4163,4541,4906,5249,5562,5838,6070,6252,6382,6455,6469,6425,6324,6167,5959,5705,5410,5081,4726,4353, + 3806,3424,3052,2697,2368,2072,1818,1610,1453,1352,1308,1322,1395,1525,1708,1940,2215,2528,2871,3236,3615,3997,4376,4741,5084,5397,5672,5904,6087,6217,6289,6304,6260,6159,6002,5794,5540,5244,4915,4560,4188, + + -95,-477,-850,-1205,-1534,-1829,-2083,-2292,-2448,-2550,-2593,-2579,-2506,-2377,-2194,-1962,-1686,-1373,-1030,-665,-287,96,474,839,1182,1495,1771,2003,2186,2315,2388,2403,2359,2258,2101,1893,1638,1343,1014,659,286, + -286,-668,-1041,-1396,-1725,-2020,-2275,-2483,-2639,-2741,-2784,-2770,-2697,-2568,-2385,-2153,-1877,-1564,-1221,-856,-478,-95,283,648,991,1304,1580,1812,1995,2124,2197,2212,2168,2067,1910,1702,1447,1152,823,468,95, + -452,-833,-1206,-1561,-1890,-2185,-2440,-2648,-2804,-2906,-2950,-2935,-2862,-2733,-2550,-2318,-2042,-1729,-1386,-1021,-643,-260,118,483,826,1139,1415,1647,1830,1959,2032,2047,2003,1901,1745,1537,1282,987,658,303,-70, + -589,-970,-1343,-1698,-2027,-2322,-2577,-2785,-2942,-3043,-3087,-3072,-2999,-2870,-2687,-2455,-2179,-1866,-1523,-1158,-780,-397,-19,346,689,1002,1278,1510,1693,1822,1895,1909,1866,1764,1608,1400,1145,850,521,166,-207, + -696,-1078,-1450,-1805,-2134,-2430,-2684,-2892,-3049,-3150,-3194,-3180,-3107,-2977,-2794,-2562,-2287,-1974,-1631,-1266,-887,-505,-126,238,581,895,1170,1402,1585,1715,1787,1802,1758,1657,1500,1292,1037,742,413,58,-314, + -772,-1154,-1526,-1881,-2210,-2506,-2760,-2968,-3125,-3226,-3270,-3256,-3183,-3053,-2871,-2639,-2363,-2050,-1707,-1342,-964,-581,-203,162,505,818,1094,1326,1509,1638,1711,1726,1682,1581,1424,1216,961,666,337,-18,-391, + -816,-1198,-1570,-1925,-2254,-2550,-2804,-3012,-3169,-3270,-3314,-3300,-3227,-3097,-2914,-2682,-2407,-2094,-1751,-1386,-1007,-625,-246,119,462,775,1050,1282,1465,1595,1667,1682,1638,1537,1380,1172,918,622,293,-62,-434, + -827,-1209,-1581,-1936,-2265,-2561,-2815,-3023,-3180,-3281,-3325,-3311,-3238,-3108,-2925,-2693,-2418,-2105,-1762,-1397,-1018,-636,-257,108,451,764,1039,1271,1454,1584,1656,1671,1627,1526,1369,1161,907,611,282,-73,-445, + -805,-1187,-1559,-1914,-2243,-2539,-2793,-3001,-3158,-3259,-3303,-3289,-3216,-3086,-2903,-2671,-2396,-2083,-1740,-1375,-996,-614,-235,130,473,786,1061,1293,1476,1606,1678,1693,1649,1548,1391,1183,929,633,304,-51,-423, + -750,-1132,-1505,-1860,-2189,-2484,-2739,-2947,-3103,-3205,-3249,-3234,-3161,-3032,-2849,-2617,-2341,-2028,-1685,-1320,-942,-559,-181,184,527,840,1116,1348,1531,1660,1733,1748,1704,1602,1446,1238,983,688,359,4,-369, + -664,-1045,-1418,-1773,-2102,-2397,-2652,-2860,-3017,-3118,-3162,-3147,-3074,-2945,-2762,-2530,-2254,-1941,-1598,-1233,-855,-472,-94,271,614,927,1203,1435,1618,1747,1820,1834,1791,1689,1533,1325,1070,775,446,91,-282, + -546,-928,-1301,-1656,-1985,-2280,-2534,-2743,-2899,-3001,-3044,-3030,-2957,-2827,-2645,-2413,-2137,-1824,-1481,-1116,-738,-355,23,388,731,1044,1320,1552,1735,1864,1937,1952,1908,1807,1650,1442,1187,892,563,208,-165, + -399,-781,-1154,-1509,-1838,-2133,-2388,-2596,-2752,-2854,-2898,-2883,-2810,-2681,-2498,-2266,-1990,-1677,-1334,-969,-591,-208,170,535,878,1191,1467,1699,1882,2011,2084,2099,2055,1953,1797,1589,1334,1039,710,355,-18, + -225,-607,-980,-1335,-1664,-1959,-2214,-2422,-2578,-2680,-2724,-2709,-2636,-2507,-2324,-2092,-1816,-1503,-1160,-795,-417,-34,344,709,1052,1365,1641,1873,2056,2185,2258,2273,2229,2127,1971,1763,1508,1213,884,529,156, + -26,-408,-781,-1136,-1465,-1760,-2014,-2223,-2379,-2481,-2524,-2510,-2437,-2307,-2125,-1893,-1617,-1304,-961,-596,-218,165,543,908,1251,1564,1840,2072,2255,2384,2457,2472,2428,2327,2170,1962,1707,1412,1083,728,355, + 195,-186,-559,-914,-1243,-1538,-1793,-2001,-2158,-2259,-2303,-2288,-2215,-2086,-1903,-1671,-1395,-1082,-739,-374,4,387,765,1130,1473,1786,2062,2294,2477,2606,2679,2693,2650,2548,2392,2184,1929,1634,1305,950,577, + 436,55,-318,-673,-1002,-1297,-1552,-1760,-1916,-2018,-2062,-2047,-1974,-1845,-1662,-1430,-1154,-841,-498,-133,245,628,1006,1371,1714,2027,2303,2535,2718,2847,2920,2935,2891,2789,2633,2425,2170,1875,1546,1191,818, + 694,312,-61,-416,-745,-1040,-1294,-1503,-1659,-1761,-1804,-1790,-1717,-1588,-1405,-1173,-897,-584,-241,124,502,885,1263,1628,1971,2284,2560,2792,2975,3104,3177,3192,3148,3047,2890,2682,2427,2132,1803,1448,1075, + 964,582,210,-145,-474,-770,-1024,-1232,-1389,-1490,-1534,-1519,-1447,-1317,-1134,-902,-627,-314,29,394,773,1155,1534,1899,2242,2555,2830,3062,3245,3375,3448,3462,3418,3317,3160,2952,2698,2402,2073,1718,1346, + 1244,862,489,134,-195,-490,-745,-953,-1109,-1211,-1255,-1240,-1167,-1038,-855,-623,-347,-34,309,674,1052,1435,1813,2178,2521,2834,3110,3342,3525,3654,3727,3742,3698,3596,3440,3232,2977,2682,2353,1998,1625, + 1529,1147,775,420,91,-205,-459,-667,-824,-925,-969,-955,-882,-752,-569,-337,-62,251,594,959,1338,1720,2099,2463,2806,3120,3395,3627,3810,3940,4012,4027,3983,3882,3725,3517,3263,2967,2638,2283,1911, + 1816,1434,1062,707,378,83,-172,-380,-537,-638,-682,-667,-595,-465,-282,-50,226,539,882,1246,1625,2007,2386,2751,3094,3407,3682,3915,4097,4227,4300,4314,4270,4169,4012,3804,3550,3254,2925,2570,2198, + 2101,1720,1347,992,663,368,113,-95,-251,-353,-397,-382,-309,-180,3,235,511,824,1167,1532,1910,2293,2671,3036,3379,3692,3968,4200,4383,4512,4585,4600,4556,4454,4298,4090,3835,3540,3211,2856,2483, + 2381,1999,1627,1272,943,647,393,185,28,-73,-117,-102,-30,100,283,515,790,1103,1446,1811,2190,2572,2951,3316,3659,3972,4247,4479,4662,4792,4865,4879,4835,4734,4577,4369,4115,3819,3490,3135,2763, + 2651,2270,1897,1542,1213,918,663,455,298,197,153,168,241,370,553,785,1061,1374,1717,2082,2460,2843,3221,3586,3929,4242,4518,4750,4933,5062,5135,5149,5106,5004,4848,4640,4385,4090,3761,3406,3033, + 2909,2527,2154,1799,1470,1175,920,712,556,454,411,425,498,627,810,1042,1318,1631,1974,2339,2717,3100,3478,3843,4186,4499,4775,5007,5190,5319,5392,5407,5363,5262,5105,4897,4642,4347,4018,3663,3290, + 3150,2768,2395,2040,1711,1416,1161,953,797,695,652,666,739,868,1051,1283,1559,1872,2215,2580,2958,3341,3719,4084,4427,4740,5016,5248,5431,5560,5633,5648,5604,5503,5346,5138,4883,4588,4259,3904,3531, + 3371,2990,2617,2262,1933,1638,1383,1175,1018,917,873,888,961,1090,1273,1505,1781,2094,2437,2802,3180,3563,3941,4306,4649,4962,5238,5470,5653,5782,5855,5869,5826,5724,5568,5360,5105,4810,4481,4126,3753, + 3570,3189,2816,2461,2132,1837,1582,1374,1218,1116,1072,1087,1160,1289,1472,1704,1980,2293,2636,3001,3379,3762,4140,4505,4848,5161,5437,5669,5852,5981,6054,6069,6025,5923,5767,5559,5304,5009,4680,4325,3952, + 3745,3363,2990,2635,2306,2011,1756,1548,1392,1290,1246,1261,1334,1463,1646,1878,2154,2467,2810,3175,3553,3936,4314,4679,5022,5335,5611,5843,6026,6155,6228,6243,6199,6097,5941,5733,5478,5183,4854,4499,4126, + 3891,3510,3137,2782,2453,2158,1903,1695,1538,1437,1393,1408,1481,1610,1793,2025,2301,2614,2957,3322,3700,4083,4461,4826,5169,5482,5758,5990,6173,6302,6375,6389,6346,6244,6088,5880,5625,5330,5001,4646,4273, + 4009,3627,3254,2899,2570,2275,2021,1812,1656,1554,1511,1525,1598,1727,1910,2142,2418,2731,3074,3439,3817,4200,4578,4943,5286,5599,5875,6107,6290,6419,6492,6507,6463,6362,6205,5997,5742,5447,5118,4763,4390, + 4095,3714,3341,2986,2657,2362,2107,1899,1743,1641,1597,1612,1685,1814,1997,2229,2505,2818,3161,3526,3904,4287,4665,5030,5373,5686,5962,6194,6377,6506,6579,6594,6550,6448,6292,6084,5829,5534,5205,4850,4477, + 4150,3768,3396,3041,2712,2416,2162,1954,1797,1696,1652,1667,1739,1869,2052,2284,2559,2873,3216,3580,3959,4341,4720,5085,5428,5741,6016,6248,6431,6561,6634,6648,6604,6503,6346,6138,5884,5588,5259,4904,4532, + 4172,3790,3418,3063,2734,2438,2184,1976,1819,1718,1674,1689,1761,1891,2074,2306,2581,2895,3238,3602,3981,4363,4742,5107,5450,5763,6038,6270,6453,6583,6656,6670,6626,6525,6368,6160,5906,5610,5281,4926,4554, + 4161,3779,3407,3052,2723,2427,2173,1965,1808,1707,1663,1678,1750,1880,2063,2295,2570,2884,3227,3591,3970,4352,4731,5096,5439,5752,6027,6259,6442,6572,6645,6659,6615,6514,6357,6149,5895,5599,5270,4915,4543, + 4117,3736,3363,3008,2679,2384,2129,1921,1764,1663,1619,1634,1707,1836,2019,2251,2527,2840,3183,3548,3926,4309,4687,5052,5395,5708,5984,6216,6398,6528,6601,6615,6571,6470,6314,6105,5851,5556,5227,4872,4499, + 4041,3660,3287,2932,2603,2308,2053,1845,1688,1587,1543,1558,1630,1760,1943,2175,2451,2764,3107,3471,3850,4232,4611,4976,5319,5632,5908,6140,6322,6452,6525,6539,6495,6394,6237,6029,5775,5479,5150,4795,4423, + 3934,3552,3179,2824,2495,2200,1946,1737,1581,1480,1436,1450,1523,1653,1835,2067,2343,2656,2999,3364,3742,4125,4503,4868,5211,5524,5800,6032,6215,6344,6417,6432,6388,6287,6130,5922,5667,5372,5043,4688,4315, + 3797,3415,3042,2687,2358,2063,1808,1600,1444,1342,1298,1313,1386,1515,1698,1930,2206,2519,2862,3227,3605,3988,4366,4731,5074,5387,5663,5895,6078,6207,6280,6295,6251,6149,5993,5785,5530,5235,4906,4551,4178, + 3631,3250,2877,2522,2193,1898,1643,1435,1279,1177,1133,1148,1221,1350,1533,1765,2041,2354,2697,3062,3440,3823,4201,4566,4909,5222,5498,5730,5913,6042,6115,6130,6086,5984,5828,5620,5365,5070,4741,4386,4013, + + -280,-661,-1034,-1389,-1718,-2013,-2268,-2476,-2633,-2734,-2778,-2763,-2690,-2561,-2378,-2146,-1870,-1557,-1214,-849,-471,-88,290,655,998,1311,1587,1819,2001,2131,2204,2218,2174,2073,1917,1708,1454,1159,830,475,102, + -471,-852,-1225,-1580,-1909,-2204,-2459,-2667,-2824,-2925,-2969,-2954,-2881,-2752,-2569,-2337,-2061,-1748,-1405,-1040,-662,-279,99,464,807,1120,1396,1628,1810,1940,2013,2027,1983,1882,1725,1517,1263,967,638,283,-89, + -636,-1018,-1390,-1745,-2074,-2370,-2624,-2832,-2989,-3090,-3134,-3120,-3047,-2917,-2734,-2502,-2227,-1914,-1571,-1206,-827,-445,-66,298,641,955,1230,1462,1645,1775,1847,1862,1818,1717,1560,1352,1098,802,473,118,-254, + -773,-1155,-1528,-1883,-2212,-2507,-2761,-2970,-3126,-3228,-3271,-3257,-3184,-3055,-2872,-2640,-2364,-2051,-1708,-1343,-965,-582,-204,161,504,817,1093,1325,1508,1637,1710,1725,1681,1580,1423,1215,960,665,336,-19,-392, + -881,-1262,-1635,-1990,-2319,-2614,-2869,-3077,-3233,-3335,-3379,-3364,-3291,-3162,-2979,-2747,-2471,-2158,-1815,-1450,-1072,-689,-311,54,397,710,986,1218,1401,1530,1603,1618,1574,1472,1316,1108,853,558,229,-126,-499, + -957,-1338,-1711,-2066,-2395,-2690,-2945,-3153,-3310,-3411,-3455,-3440,-3367,-3238,-3055,-2823,-2547,-2234,-1891,-1526,-1148,-765,-387,-22,321,634,910,1142,1325,1454,1527,1541,1498,1396,1240,1032,777,482,153,-202,-575, + -1001,-1382,-1755,-2110,-2439,-2734,-2989,-3197,-3353,-3455,-3499,-3484,-3411,-3282,-3099,-2867,-2591,-2278,-1935,-1570,-1192,-809,-431,-66,277,590,866,1098,1281,1410,1483,1498,1454,1352,1196,988,733,438,109,-246,-619, + -1012,-1393,-1766,-2121,-2450,-2745,-3000,-3208,-3364,-3466,-3510,-3495,-3422,-3293,-3110,-2878,-2602,-2289,-1946,-1581,-1203,-820,-442,-77,266,579,855,1087,1270,1399,1472,1487,1443,1341,1185,977,722,427,98,-257,-630, + -990,-1371,-1744,-2099,-2428,-2723,-2978,-3186,-3342,-3444,-3488,-3473,-3400,-3271,-3088,-2856,-2580,-2267,-1924,-1559,-1181,-798,-420,-55,288,601,877,1109,1292,1421,1494,1509,1465,1363,1207,999,744,449,120,-235,-608, + -935,-1317,-1689,-2044,-2373,-2668,-2923,-3131,-3288,-3389,-3433,-3418,-3346,-3216,-3033,-2801,-2525,-2212,-1869,-1505,-1126,-744,-365,-0,343,656,931,1164,1346,1476,1549,1563,1519,1418,1261,1053,799,503,174,-181,-553, + -848,-1230,-1603,-1958,-2287,-2582,-2836,-3045,-3201,-3303,-3346,-3332,-3259,-3130,-2947,-2715,-2439,-2126,-1783,-1418,-1040,-657,-279,86,429,742,1018,1250,1433,1562,1635,1650,1606,1505,1348,1140,885,590,261,-94,-467, + -731,-1112,-1485,-1840,-2169,-2464,-2719,-2927,-3084,-3185,-3229,-3214,-3141,-3012,-2829,-2597,-2321,-2008,-1665,-1300,-922,-539,-161,204,547,860,1136,1368,1550,1680,1753,1767,1724,1622,1466,1257,1003,708,379,24,-349, + -584,-966,-1338,-1693,-2022,-2318,-2572,-2780,-2937,-3038,-3082,-3068,-2995,-2865,-2682,-2450,-2175,-1862,-1519,-1154,-775,-393,-14,351,694,1007,1282,1514,1697,1827,1899,1914,1870,1769,1612,1404,1150,854,525,170,-202, + -410,-792,-1164,-1519,-1848,-2143,-2398,-2606,-2763,-2864,-2908,-2893,-2821,-2691,-2508,-2276,-2001,-1687,-1344,-980,-601,-219,160,525,868,1181,1456,1689,1871,2001,2074,2088,2044,1943,1786,1578,1324,1028,699,344,-28, + -211,-592,-965,-1320,-1649,-1944,-2199,-2407,-2564,-2665,-2709,-2694,-2621,-2492,-2309,-2077,-1801,-1488,-1145,-780,-402,-19,359,724,1067,1380,1656,1888,2070,2200,2273,2287,2244,2142,1986,1777,1523,1228,899,544,171, + 11,-371,-744,-1099,-1428,-1723,-1977,-2185,-2342,-2443,-2487,-2473,-2400,-2270,-2088,-1856,-1580,-1267,-924,-559,-181,202,580,945,1288,1601,1877,2109,2292,2421,2494,2509,2465,2364,2207,1999,1744,1449,1120,765,392, + 252,-130,-502,-857,-1186,-1482,-1736,-1944,-2101,-2202,-2246,-2232,-2159,-2029,-1847,-1615,-1339,-1026,-683,-318,60,443,821,1186,1529,1842,2118,2350,2533,2662,2735,2750,2706,2605,2448,2240,1985,1690,1361,1006,633, + 509,128,-245,-600,-929,-1224,-1479,-1687,-1844,-1945,-1989,-1974,-1901,-1772,-1589,-1357,-1081,-768,-425,-60,318,701,1079,1444,1787,2100,2376,2608,2790,2920,2993,3007,2963,2862,2705,2497,2243,1947,1619,1264,891, + 779,398,25,-330,-659,-954,-1209,-1417,-1573,-1675,-1719,-1704,-1631,-1502,-1319,-1087,-811,-498,-155,210,588,971,1349,1714,2057,2370,2646,2878,3061,3190,3263,3278,3234,3132,2976,2768,2513,2218,1889,1534,1161, + 1059,677,305,-50,-379,-674,-929,-1137,-1294,-1395,-1439,-1424,-1352,-1222,-1039,-807,-531,-218,125,489,868,1250,1629,1994,2337,2650,2925,3158,3340,3470,3543,3557,3513,3412,3255,3047,2793,2497,2168,1813,1441, + 1344,963,590,235,-94,-389,-644,-852,-1008,-1110,-1154,-1139,-1066,-937,-754,-522,-246,67,410,775,1153,1536,1914,2279,2622,2935,3211,3443,3626,3755,3828,3843,3799,3697,3541,3333,3078,2783,2454,2099,1726, + 1632,1250,877,522,193,-102,-357,-565,-721,-823,-867,-852,-779,-650,-467,-235,41,354,697,1062,1440,1823,2201,2566,2909,3222,3498,3730,3913,4042,4115,4130,4086,3984,3828,3620,3365,3070,2741,2386,2013, + 1917,1535,1163,808,479,183,-71,-279,-436,-537,-581,-567,-494,-364,-182,50,326,639,982,1347,1725,2108,2487,2851,3194,3507,3783,4015,4198,4328,4400,4415,4371,4270,4113,3905,3650,3355,3026,2671,2298, + 2196,1815,1442,1087,758,463,208,0,-156,-258,-302,-287,-214,-85,98,330,606,919,1262,1627,2005,2388,2766,3131,3474,3787,4063,4295,4478,4607,4680,4695,4651,4549,4393,4185,3930,3635,3306,2951,2578, + 2467,2085,1712,1357,1028,733,479,270,114,13,-31,-17,56,186,368,600,876,1189,1532,1897,2275,2658,3036,3401,3744,4057,4333,4565,4748,4877,4950,4965,4921,4820,4663,4455,4200,3905,3576,3221,2848, + 2724,2343,1970,1615,1286,991,736,528,371,270,226,241,314,443,626,858,1134,1447,1790,2155,2533,2916,3294,3659,4002,4315,4591,4823,5005,5135,5208,5222,5178,5077,4920,4712,4458,4162,3833,3478,3106, + 2965,2584,2211,1856,1527,1232,977,769,612,511,467,482,555,684,867,1099,1375,1688,2031,2396,2774,3157,3535,3900,4243,4556,4832,5064,5246,5376,5449,5463,5419,5318,5161,4953,4699,4403,4074,3719,3347, + 3187,2805,2432,2077,1748,1453,1199,990,834,732,689,703,776,905,1088,1320,1596,1909,2252,2617,2995,3378,3756,4121,4464,4777,5053,5285,5468,5597,5670,5685,5641,5540,5383,5175,4920,4625,4296,3941,3568, + 3386,3004,2632,2277,1948,1652,1398,1190,1033,932,888,902,975,1105,1287,1520,1795,2108,2451,2816,3195,3577,3956,4320,4663,4976,5252,5484,5667,5797,5869,5884,5840,5739,5582,5374,5119,4824,4495,4140,3768, + 3560,3178,2806,2451,2122,1826,1572,1364,1207,1106,1062,1076,1149,1279,1462,1694,1969,2282,2625,2990,3369,3751,4130,4495,4838,5151,5426,5658,5841,5971,6043,6058,6014,5913,5756,5548,5294,4998,4669,4314,3942, + 3707,3325,2952,2597,2268,1973,1719,1510,1354,1252,1209,1223,1296,1425,1608,1840,2116,2429,2772,3137,3515,3898,4276,4641,4984,5297,5573,5805,5988,6117,6190,6205,6161,6060,5903,5695,5440,5145,4816,4461,4088, + 3824,3443,3070,2715,2386,2091,1836,1628,1471,1370,1326,1341,1414,1543,1726,1958,2234,2547,2890,3255,3633,4016,4394,4759,5102,5415,5691,5923,6105,6235,6308,6322,6278,6177,6021,5812,5558,5263,4934,4579,4206, + 3911,3529,3157,2802,2473,2177,1923,1715,1558,1457,1413,1427,1500,1630,1812,2044,2320,2633,2976,3341,3719,4102,4481,4845,5188,5501,5777,6009,6192,6322,6394,6409,6365,6264,6107,5899,5644,5349,5020,4665,4292, + 3966,3584,3211,2856,2527,2232,1977,1769,1613,1511,1467,1482,1555,1684,1867,2099,2375,2688,3031,3396,3774,4157,4535,4900,5243,5556,5832,6064,6247,6376,6449,6464,6420,6318,6162,5954,5699,5404,5075,4720,4347, + 3988,3606,3233,2878,2549,2254,1999,1791,1635,1533,1489,1504,1577,1706,1889,2121,2397,2710,3053,3418,3796,4179,4557,4922,5265,5578,5854,6086,6269,6398,6471,6486,6442,6340,6184,5976,5721,5426,5097,4742,4369, + 3977,3595,3222,2867,2538,2243,1988,1780,1624,1522,1478,1493,1566,1695,1878,2110,2386,2699,3042,3407,3785,4168,4546,4911,5254,5567,5843,6075,6258,6387,6460,6475,6431,6329,6173,5965,5710,5415,5086,4731,4358, + 3933,3551,3178,2823,2494,2199,1944,1736,1580,1478,1435,1449,1522,1651,1834,2066,2342,2655,2998,3363,3741,4124,4502,4867,5210,5523,5799,6031,6214,6343,6416,6431,6387,6286,6129,5921,5666,5371,5042,4687,4314, + 3857,3475,3102,2747,2418,2123,1868,1660,1504,1402,1358,1373,1446,1575,1758,1990,2266,2579,2922,3287,3665,4048,4426,4791,5134,5447,5723,5955,6138,6267,6340,6355,6311,6209,6053,5845,5590,5295,4966,4611,4238, + 3749,3368,2995,2640,2311,2016,1761,1553,1396,1295,1251,1266,1339,1468,1651,1883,2159,2472,2815,3180,3558,3941,4319,4684,5027,5340,5616,5848,6030,6160,6233,6247,6204,6102,5946,5737,5483,5188,4859,4504,4131, + 3612,3230,2858,2503,2174,1878,1624,1416,1259,1158,1114,1129,1201,1331,1514,1746,2021,2335,2678,3042,3421,3803,4182,4547,4890,5203,5478,5710,5893,6023,6096,6110,6066,5965,5808,5600,5346,5050,4721,4366,3994, + 3447,3065,2693,2338,2009,1713,1459,1251,1094,993,949,963,1036,1166,1348,1580,1856,2169,2512,2877,3255,3638,4016,4381,4724,5037,5313,5545,5728,5857,5930,5945,5901,5800,5643,5435,5180,4885,4556,4201,3828, + + -470,-852,-1224,-1579,-1908,-2203,-2458,-2666,-2823,-2924,-2968,-2953,-2881,-2751,-2568,-2336,-2060,-1747,-1404,-1040,-661,-279,100,465,808,1121,1396,1629,1811,1941,2014,2028,1984,1883,1726,1518,1264,968,639,284,-88, + -661,-1043,-1415,-1770,-2099,-2395,-2649,-2857,-3014,-3115,-3159,-3144,-3072,-2942,-2759,-2527,-2252,-1939,-1596,-1231,-852,-470,-91,274,617,930,1205,1437,1620,1750,1823,1837,1793,1692,1535,1327,1073,777,448,93,-279, + -826,-1208,-1580,-1935,-2264,-2560,-2814,-3022,-3179,-3280,-3324,-3310,-3237,-3107,-2925,-2693,-2417,-2104,-1761,-1396,-1018,-635,-257,108,451,764,1040,1272,1455,1584,1657,1672,1628,1527,1370,1162,907,612,283,-72,-445, + -963,-1345,-1718,-2073,-2402,-2697,-2952,-3160,-3316,-3418,-3462,-3447,-3374,-3245,-3062,-2830,-2554,-2241,-1898,-1533,-1155,-772,-394,-29,314,627,903,1135,1318,1447,1520,1535,1491,1389,1233,1025,770,475,146,-209,-582, + -1071,-1452,-1825,-2180,-2509,-2804,-3059,-3267,-3424,-3525,-3569,-3554,-3481,-3352,-3169,-2937,-2661,-2348,-2005,-1640,-1262,-879,-501,-136,207,520,796,1028,1211,1340,1413,1427,1384,1282,1126,918,663,368,39,-316,-689, + -1147,-1528,-1901,-2256,-2585,-2880,-3135,-3343,-3500,-3601,-3645,-3630,-3557,-3428,-3245,-3013,-2737,-2424,-2081,-1716,-1338,-955,-577,-212,131,444,720,952,1134,1264,1337,1351,1307,1206,1049,841,587,291,-38,-393,-765, + -1191,-1572,-1945,-2300,-2629,-2924,-3179,-3387,-3544,-3645,-3689,-3674,-3601,-3472,-3289,-3057,-2781,-2468,-2125,-1760,-1382,-999,-621,-256,87,400,676,908,1091,1220,1293,1308,1264,1162,1006,798,543,248,-81,-436,-809, + -1202,-1583,-1956,-2311,-2640,-2935,-3190,-3398,-3555,-3656,-3700,-3685,-3612,-3483,-3300,-3068,-2792,-2479,-2136,-1771,-1393,-1010,-632,-267,76,389,665,897,1080,1209,1282,1297,1253,1151,995,787,532,237,-92,-447,-820, + -1180,-1561,-1934,-2289,-2618,-2913,-3168,-3376,-3533,-3634,-3678,-3663,-3590,-3461,-3278,-3046,-2770,-2457,-2114,-1749,-1371,-988,-610,-245,98,411,687,919,1102,1231,1304,1318,1275,1173,1017,809,554,259,-70,-425,-798, + -1125,-1507,-1879,-2234,-2563,-2859,-3113,-3321,-3478,-3579,-3623,-3609,-3536,-3406,-3223,-2991,-2716,-2403,-2060,-1695,-1316,-934,-555,-190,153,466,741,973,1156,1286,1359,1373,1329,1228,1071,863,609,313,-16,-371,-743, + -1038,-1420,-1793,-2148,-2477,-2772,-3027,-3235,-3391,-3493,-3537,-3522,-3449,-3320,-3137,-2905,-2629,-2316,-1973,-1608,-1230,-847,-469,-104,239,552,828,1060,1243,1372,1445,1460,1416,1314,1158,950,695,400,71,-284,-657, + -921,-1302,-1675,-2030,-2359,-2654,-2909,-3117,-3274,-3375,-3419,-3404,-3332,-3202,-3019,-2787,-2511,-2198,-1855,-1491,-1112,-730,-351,14,357,670,946,1178,1360,1490,1563,1577,1533,1432,1275,1067,813,517,188,-167,-539, + -774,-1156,-1528,-1883,-2212,-2508,-2762,-2970,-3127,-3228,-3272,-3258,-3185,-3055,-2873,-2641,-2365,-2052,-1709,-1344,-965,-583,-204,160,503,816,1092,1324,1507,1637,1709,1724,1680,1579,1422,1214,959,664,335,-20,-392, + -600,-982,-1354,-1709,-2038,-2334,-2588,-2796,-2953,-3054,-3098,-3084,-3011,-2881,-2698,-2466,-2191,-1878,-1535,-1170,-791,-409,-30,335,678,991,1266,1498,1681,1811,1883,1898,1854,1753,1596,1388,1134,838,509,154,-218, + -401,-783,-1155,-1510,-1839,-2134,-2389,-2597,-2754,-2855,-2899,-2884,-2812,-2682,-2499,-2267,-1991,-1678,-1335,-971,-592,-210,169,534,877,1190,1466,1698,1880,2010,2083,2097,2053,1952,1795,1587,1333,1037,708,353,-19, + -179,-561,-934,-1289,-1618,-1913,-2168,-2376,-2532,-2634,-2677,-2663,-2590,-2461,-2278,-2046,-1770,-1457,-1114,-749,-371,12,390,755,1098,1411,1687,1919,2102,2231,2304,2319,2275,2174,2017,1809,1554,1259,930,575,202, + 62,-320,-693,-1048,-1377,-1672,-1927,-2135,-2291,-2393,-2436,-2422,-2349,-2220,-2037,-1805,-1529,-1216,-873,-508,-130,253,631,996,1339,1652,1928,2160,2343,2472,2545,2560,2516,2415,2258,2050,1795,1500,1171,816,443, + 319,-63,-435,-790,-1119,-1414,-1669,-1877,-2034,-2135,-2179,-2164,-2092,-1962,-1779,-1547,-1272,-958,-615,-251,128,510,889,1254,1597,1910,2185,2418,2600,2730,2803,2817,2773,2672,2515,2307,2053,1757,1428,1073,701, + 589,208,-165,-520,-849,-1144,-1399,-1607,-1763,-1865,-1909,-1894,-1821,-1692,-1509,-1277,-1001,-688,-345,20,398,781,1159,1524,1867,2180,2456,2688,2871,3000,3073,3088,3044,2942,2786,2578,2323,2028,1699,1344,971, + 869,487,115,-240,-569,-865,-1119,-1327,-1484,-1585,-1629,-1615,-1542,-1412,-1229,-997,-722,-409,-66,299,678,1060,1439,1804,2147,2460,2735,2967,3150,3280,3353,3367,3323,3222,3065,2857,2603,2307,1978,1623,1251, + 1154,773,400,45,-284,-579,-834,-1042,-1199,-1300,-1344,-1329,-1256,-1127,-944,-712,-436,-123,220,585,963,1346,1724,2089,2432,2745,3021,3253,3436,3565,3638,3652,3609,3507,3351,3143,2888,2593,2264,1909,1536, + 1441,1060,687,332,3,-292,-547,-755,-911,-1013,-1057,-1042,-969,-840,-657,-425,-149,164,507,872,1250,1633,2011,2376,2719,3032,3308,3540,3723,3852,3925,3940,3896,3794,3638,3430,3175,2880,2551,2196,1823, + 1727,1345,972,617,288,-7,-261,-470,-626,-728,-771,-757,-684,-555,-372,-140,136,449,792,1157,1535,1918,2296,2661,3004,3317,3593,3825,4008,4137,4210,4225,4181,4080,3923,3715,3460,3165,2836,2481,2108, + 2006,1625,1252,897,568,273,18,-190,-346,-448,-492,-477,-404,-275,-92,140,416,729,1072,1437,1815,2198,2576,2941,3284,3597,3873,4105,4288,4417,4490,4505,4461,4359,4203,3995,3740,3445,3116,2761,2388, + 2277,1895,1522,1167,838,543,288,80,-76,-178,-222,-207,-134,-5,178,410,686,999,1342,1707,2085,2468,2846,3211,3554,3867,4143,4375,4558,4687,4760,4775,4731,4630,4473,4265,4010,3715,3386,3031,2658, + 2534,2152,1780,1425,1096,800,546,338,181,80,36,51,123,253,436,668,943,1256,1599,1964,2343,2725,3104,3469,3812,4125,4400,4632,4815,4945,5018,5032,4988,4887,4730,4522,4268,3972,3643,3288,2916, + 2775,2393,2021,1666,1337,1041,787,579,422,321,277,292,364,494,677,909,1184,1498,1841,2205,2584,2966,3345,3710,4053,4366,4641,4873,5056,5186,5259,5273,5229,5128,4971,4763,4509,4213,3884,3529,3157, + 2997,2615,2242,1887,1558,1263,1008,800,644,542,498,513,586,715,898,1130,1406,1719,2062,2427,2805,3188,3566,3931,4274,4587,4863,5095,5278,5407,5480,5495,5451,5349,5193,4985,4730,4435,4106,3751,3378, + 3196,2814,2441,2086,1757,1462,1208,999,843,742,698,712,785,915,1097,1329,1605,1918,2261,2626,3004,3387,3765,4130,4473,4786,5062,5294,5477,5606,5679,5694,5650,5549,5392,5184,4929,4634,4305,3950,3577, + 3370,2988,2616,2261,1932,1636,1382,1174,1017,916,872,886,959,1089,1271,1503,1779,2092,2435,2800,3179,3561,3940,4304,4647,4960,5236,5468,5651,5781,5853,5868,5824,5723,5566,5358,5103,4808,4479,4124,3752, + 3517,3135,2762,2407,2078,1783,1528,1320,1164,1062,1018,1033,1106,1235,1418,1650,1926,2239,2582,2947,3325,3708,4086,4451,4794,5107,5383,5615,5798,5927,6000,6015,5971,5869,5713,5505,5250,4955,4626,4271,3898, + 3634,3252,2880,2525,2196,1901,1646,1438,1281,1180,1136,1151,1223,1353,1536,1768,2044,2357,2700,3064,3443,3825,4204,4569,4912,5225,5500,5733,5915,6045,6118,6132,6088,5987,5830,5622,5368,5072,4743,4388,4016, + 3721,3339,2966,2611,2282,1987,1733,1524,1368,1266,1223,1237,1310,1440,1622,1854,2130,2443,2786,3151,3529,3912,4290,4655,4998,5311,5587,5819,6002,6131,6204,6219,6175,6074,5917,5709,5454,5159,4830,4475,4102, + 3775,3394,3021,2666,2337,2042,1787,1579,1423,1321,1277,1292,1365,1494,1677,1909,2185,2498,2841,3206,3584,3967,4345,4710,5053,5366,5642,5874,6057,6186,6259,6274,6230,6128,5972,5764,5509,5214,4885,4530,4157, + 3797,3416,3043,2688,2359,2064,1809,1601,1445,1343,1299,1314,1387,1516,1699,1931,2207,2520,2863,3228,3606,3989,4367,4732,5075,5388,5664,5896,6079,6208,6281,6296,6252,6150,5994,5786,5531,5236,4907,4552,4179, + 3786,3405,3032,2677,2348,2053,1798,1590,1434,1332,1288,1303,1376,1505,1688,1920,2196,2509,2852,3217,3595,3978,4356,4721,5064,5377,5653,5885,6068,6197,6270,6285,6241,6139,5983,5775,5520,5225,4896,4541,4168, + 3743,3361,2988,2633,2304,2009,1754,1546,1390,1288,1244,1259,1332,1461,1644,1876,2152,2465,2808,3173,3551,3934,4312,4677,5020,5333,5609,5841,6024,6153,6226,6241,6197,6095,5939,5731,5476,5181,4852,4497,4124, + 3666,3285,2912,2557,2228,1933,1678,1470,1314,1212,1168,1183,1256,1385,1568,1800,2076,2389,2732,3097,3475,3858,4236,4601,4944,5257,5533,5765,5948,6077,6150,6165,6121,6019,5863,5655,5400,5105,4776,4421,4048, + 3559,3178,2805,2450,2121,1826,1571,1363,1206,1105,1061,1076,1148,1278,1461,1693,1969,2282,2625,2989,3368,3751,4129,4494,4837,5150,5426,5658,5840,5970,6043,6057,6013,5912,5755,5547,5293,4997,4668,4313,3941, + 3422,3040,2668,2313,1984,1688,1434,1226,1069,968,924,938,1011,1141,1324,1556,1831,2144,2487,2852,3231,3613,3992,4356,4699,5013,5288,5520,5703,5833,5905,5920,5876,5775,5618,5410,5156,4860,4531,4176,3804, + 3257,2875,2502,2147,1818,1523,1268,1060,904,802,759,773,846,975,1158,1390,1666,1979,2322,2687,3065,3448,3826,4191,4534,4847,5123,5355,5538,5667,5740,5755,5711,5610,5453,5245,4990,4695,4366,4011,3638, + + -661,-1043,-1415,-1770,-2099,-2395,-2649,-2857,-3014,-3115,-3159,-3145,-3072,-2942,-2760,-2528,-2252,-1939,-1596,-1231,-852,-470,-91,273,616,929,1205,1437,1620,1750,1822,1837,1793,1692,1535,1327,1072,777,448,93,-279, + -852,-1234,-1606,-1961,-2290,-2586,-2840,-3048,-3205,-3306,-3350,-3336,-3263,-3133,-2951,-2719,-2443,-2130,-1787,-1422,-1044,-661,-283,82,425,738,1014,1246,1429,1558,1631,1646,1602,1501,1344,1136,881,586,257,-98,-471, + -1017,-1399,-1772,-2127,-2456,-2751,-3006,-3214,-3370,-3472,-3516,-3501,-3428,-3299,-3116,-2884,-2608,-2295,-1952,-1587,-1209,-826,-448,-83,260,573,849,1081,1264,1393,1466,1481,1437,1335,1179,971,716,421,92,-263,-636, + -1155,-1536,-1909,-2264,-2593,-2888,-3143,-3351,-3507,-3609,-3653,-3638,-3565,-3436,-3253,-3021,-2745,-2432,-2089,-1724,-1346,-963,-585,-220,123,436,712,944,1127,1256,1329,1344,1300,1198,1042,834,579,284,-45,-400,-773, + -1262,-1644,-2016,-2371,-2700,-2996,-3250,-3458,-3615,-3716,-3760,-3745,-3673,-3543,-3360,-3128,-2853,-2540,-2197,-1832,-1453,-1071,-692,-327,16,329,604,836,1019,1149,1222,1236,1192,1091,934,726,472,176,-153,-508,-880, + -1338,-1720,-2092,-2447,-2776,-3072,-3326,-3534,-3691,-3792,-3836,-3822,-3749,-3619,-3436,-3204,-2929,-2616,-2273,-1908,-1529,-1147,-768,-404,-61,253,528,760,943,1073,1145,1160,1116,1015,858,650,396,100,-229,-584,-956, + -1382,-1764,-2136,-2491,-2820,-3115,-3370,-3578,-3735,-3836,-3880,-3865,-3793,-3663,-3480,-3248,-2973,-2659,-2316,-1952,-1573,-1191,-812,-447,-104,209,484,717,899,1029,1102,1116,1072,971,814,606,352,56,-273,-628,-1000, + -1393,-1775,-2147,-2502,-2831,-3126,-3381,-3589,-3746,-3847,-3891,-3876,-3804,-3674,-3491,-3259,-2984,-2670,-2327,-1963,-1584,-1202,-823,-458,-115,198,473,706,888,1018,1091,1105,1061,960,803,595,341,45,-284,-639,-1011, + -1371,-1753,-2125,-2480,-2809,-3104,-3359,-3567,-3724,-3825,-3869,-3854,-3782,-3652,-3469,-3237,-2962,-2648,-2305,-1941,-1562,-1180,-801,-436,-93,220,495,728,910,1040,1113,1127,1083,982,825,617,363,67,-262,-617,-989, + -1316,-1698,-2071,-2426,-2755,-3050,-3304,-3513,-3669,-3771,-3814,-3800,-3727,-3597,-3415,-3183,-2907,-2594,-2251,-1886,-1508,-1125,-747,-382,-39,274,550,782,965,1094,1167,1182,1138,1037,880,672,417,122,-207,-562,-935, + -1230,-1611,-1984,-2339,-2668,-2963,-3218,-3426,-3582,-3684,-3728,-3713,-3640,-3511,-3328,-3096,-2820,-2507,-2164,-1799,-1421,-1038,-660,-295,48,361,637,869,1052,1181,1254,1269,1225,1123,967,759,504,209,-120,-475,-848, + -1112,-1494,-1866,-2221,-2550,-2846,-3100,-3308,-3465,-3566,-3610,-3596,-3523,-3393,-3211,-2978,-2703,-2390,-2047,-1682,-1303,-921,-542,-178,165,478,754,986,1169,1299,1371,1386,1342,1241,1084,876,621,326,-3,-358,-730, + -965,-1347,-1720,-2075,-2404,-2699,-2954,-3162,-3318,-3420,-3464,-3449,-3376,-3247,-3064,-2832,-2556,-2243,-1900,-1535,-1157,-774,-396,-31,312,625,901,1133,1316,1445,1518,1533,1489,1387,1231,1023,768,473,144,-211,-584, + -791,-1173,-1546,-1901,-2230,-2525,-2779,-2988,-3144,-3246,-3289,-3275,-3202,-3073,-2890,-2658,-2382,-2069,-1726,-1361,-983,-600,-222,143,486,799,1075,1307,1490,1619,1692,1707,1663,1562,1405,1197,942,647,318,-37,-410, + -592,-974,-1346,-1701,-2030,-2326,-2580,-2788,-2945,-3046,-3090,-3076,-3003,-2873,-2691,-2458,-2183,-1870,-1527,-1162,-783,-401,-22,342,685,998,1274,1506,1689,1819,1891,1906,1862,1761,1604,1396,1141,846,517,162,-210, + -371,-752,-1125,-1480,-1809,-2104,-2359,-2567,-2723,-2825,-2869,-2854,-2781,-2652,-2469,-2237,-1961,-1648,-1305,-940,-562,-179,199,564,907,1220,1496,1728,1911,2040,2113,2128,2084,1982,1826,1618,1363,1068,739,384,11, + -130,-511,-884,-1239,-1568,-1863,-2118,-2326,-2482,-2584,-2628,-2613,-2540,-2411,-2228,-1996,-1720,-1407,-1064,-699,-321,62,440,805,1148,1461,1737,1969,2152,2281,2354,2369,2325,2223,2067,1859,1604,1309,980,625,252, + 128,-254,-626,-981,-1310,-1606,-1860,-2068,-2225,-2326,-2370,-2356,-2283,-2153,-1971,-1739,-1463,-1150,-807,-442,-64,319,697,1062,1405,1718,1994,2226,2409,2538,2611,2626,2582,2481,2324,2116,1861,1566,1237,882,509, + 398,17,-356,-711,-1040,-1335,-1590,-1798,-1955,-2056,-2100,-2085,-2012,-1883,-1700,-1468,-1192,-879,-536,-171,207,590,968,1333,1676,1989,2265,2497,2679,2809,2882,2896,2852,2751,2594,2386,2132,1836,1507,1152,780, + 678,296,-77,-432,-761,-1056,-1310,-1519,-1675,-1777,-1820,-1806,-1733,-1603,-1421,-1189,-913,-600,-257,108,486,869,1247,1612,1955,2268,2544,2776,2959,3088,3161,3176,3132,3031,2874,2666,2411,2116,1787,1432,1059, + 963,581,209,-146,-475,-771,-1025,-1233,-1390,-1491,-1535,-1520,-1448,-1318,-1135,-903,-628,-314,29,393,772,1154,1533,1898,2241,2554,2829,3061,3244,3374,3447,3461,3417,3316,3159,2951,2697,2401,2072,1717,1345, + 1250,869,496,141,-188,-483,-738,-946,-1103,-1204,-1248,-1233,-1160,-1031,-848,-616,-340,-27,316,681,1059,1442,1820,2185,2528,2841,3117,3349,3531,3661,3734,3748,3705,3603,3447,3238,2984,2689,2360,2005,1632, + 1536,1154,781,426,97,-198,-453,-661,-817,-919,-963,-948,-875,-746,-563,-331,-55,258,601,966,1344,1727,2105,2470,2813,3126,3402,3634,3817,3946,4019,4034,3990,3888,3732,3524,3269,2974,2645,2290,1917, + 1815,1434,1061,706,377,82,-173,-381,-538,-639,-683,-668,-595,-466,-283,-51,225,538,881,1246,1624,2007,2385,2750,3093,3406,3682,3914,4096,4226,4299,4313,4269,4168,4011,3803,3549,3253,2924,2569,2197, + 2085,1704,1331,976,647,352,97,-111,-267,-369,-413,-398,-325,-196,-13,219,495,808,1151,1516,1894,2277,2655,3020,3363,3676,3952,4184,4367,4496,4569,4584,4540,4438,4282,4074,3819,3524,3195,2840,2467, + 2343,1961,1588,1233,904,609,355,147,-10,-111,-155,-141,-68,62,244,476,752,1065,1408,1773,2151,2534,2912,3277,3620,3933,4209,4441,4624,4753,4826,4841,4797,4696,4539,4331,4076,3781,3452,3097,2724, + 2584,2202,1830,1475,1146,850,596,388,231,130,86,100,173,303,485,717,993,1306,1649,2014,2392,2775,3153,3518,3861,4174,4450,4682,4865,4994,5067,5082,5038,4937,4780,4572,4317,4022,3693,3338,2965, + 2805,2424,2051,1696,1367,1072,817,609,453,351,307,322,395,524,707,939,1215,1528,1871,2236,2614,2997,3375,3740,4083,4396,4672,4904,5087,5216,5289,5304,5260,5158,5002,4794,4539,4244,3915,3560,3187, + 3005,2623,2250,1895,1566,1271,1016,808,652,550,506,521,594,723,906,1138,1414,1727,2070,2435,2813,3196,3574,3939,4282,4595,4871,5103,5286,5415,5488,5503,5459,5357,5201,4993,4738,4443,4114,3759,3386, + 3179,2797,2424,2069,1740,1445,1190,982,826,724,680,695,768,897,1080,1312,1588,1901,2244,2609,2987,3370,3748,4113,4456,4769,5045,5277,5460,5589,5662,5677,5633,5531,5375,5167,4912,4617,4288,3933,3560, + 3325,2944,2571,2216,1887,1592,1337,1129,973,871,827,842,915,1044,1227,1459,1735,2048,2391,2756,3134,3517,3895,4260,4603,4916,5192,5424,5607,5736,5809,5824,5780,5678,5522,5314,5059,4764,4435,4080,3707, + 3443,3061,2689,2334,2005,1709,1455,1247,1090,989,945,959,1032,1162,1344,1576,1852,2165,2508,2873,3252,3634,4013,4377,4720,5033,5309,5541,5724,5854,5926,5941,5897,5796,5639,5431,5176,4881,4552,4197,3825, + 3530,3148,2775,2420,2091,1796,1541,1333,1177,1075,1031,1046,1119,1248,1431,1663,1939,2252,2595,2960,3338,3721,4099,4464,4807,5120,5396,5628,5811,5940,6013,6028,5984,5882,5726,5518,5263,4968,4639,4284,3911, + 3584,3203,2830,2475,2146,1851,1596,1388,1231,1130,1086,1101,1174,1303,1486,1718,1994,2307,2650,3015,3393,3776,4154,4519,4862,5175,5451,5683,5865,5995,6068,6082,6038,5937,5780,5572,5318,5023,4694,4339,3966, + 3606,3225,2852,2497,2168,1873,1618,1410,1253,1152,1108,1123,1196,1325,1508,1740,2016,2329,2672,3037,3415,3798,4176,4541,4884,5197,5473,5705,5887,6017,6090,6104,6060,5959,5802,5594,5340,5044,4715,4360,3988, + 3595,3214,2841,2486,2157,1862,1607,1399,1242,1141,1097,1112,1185,1314,1497,1729,2005,2318,2661,3026,3404,3787,4165,4530,4873,5186,5462,5694,5876,6006,6079,6093,6049,5948,5791,5583,5329,5033,4704,4349,3977, + 3551,3170,2797,2442,2113,1818,1563,1355,1198,1097,1053,1068,1141,1270,1453,1685,1961,2274,2617,2982,3360,3743,4121,4486,4829,5142,5418,5650,5833,5962,6035,6050,6006,5904,5748,5540,5285,4990,4661,4306,3933, + 3475,3094,2721,2366,2037,1742,1487,1279,1122,1021,977,992,1065,1194,1377,1609,1885,2198,2541,2906,3284,3667,4045,4410,4753,5066,5342,5574,5757,5886,5959,5973,5930,5828,5672,5463,5209,4914,4585,4230,3857, + 3368,2986,2614,2259,1930,1634,1380,1172,1015,914,870,884,957,1087,1269,1502,1777,2090,2433,2798,3177,3559,3938,4302,4645,4959,5234,5466,5649,5779,5851,5866,5822,5721,5564,5356,5101,4806,4477,4122,3750, + 3231,2849,2476,2121,1792,1497,1242,1034,878,776,733,747,820,949,1132,1364,1640,1953,2296,2661,3039,3422,3800,4165,4508,4821,5097,5329,5512,5641,5714,5729,5685,5584,5427,5219,4964,4669,4340,3985,3612, + 3065,2684,2311,1956,1627,1332,1077,869,713,611,567,582,655,784,967,1199,1475,1788,2131,2496,2874,3257,3635,4000,4343,4656,4932,5164,5347,5476,5549,5564,5520,5418,5262,5054,4799,4504,4175,3820,3447, + + -849,-1231,-1603,-1958,-2287,-2583,-2837,-3045,-3202,-3303,-3347,-3332,-3260,-3130,-2947,-2715,-2440,-2127,-1784,-1419,-1040,-658,-279,86,429,742,1017,1249,1432,1562,1635,1649,1605,1504,1347,1139,885,589,260,-95,-467, + -1040,-1422,-1794,-2149,-2478,-2774,-3028,-3236,-3393,-3494,-3538,-3524,-3451,-3321,-3138,-2906,-2631,-2318,-1975,-1610,-1231,-849,-470,-106,237,551,826,1058,1241,1371,1443,1458,1414,1313,1156,948,694,398,69,-286,-658, + -1205,-1587,-1960,-2315,-2644,-2939,-3194,-3402,-3558,-3660,-3703,-3689,-3616,-3487,-3304,-3072,-2796,-2483,-2140,-1775,-1397,-1014,-636,-271,72,385,661,893,1076,1205,1278,1293,1249,1148,991,783,528,233,-96,-451,-824, + -1342,-1724,-2097,-2452,-2781,-3076,-3331,-3539,-3695,-3797,-3841,-3826,-3753,-3624,-3441,-3209,-2933,-2620,-2277,-1912,-1534,-1151,-773,-408,-65,248,524,756,939,1068,1141,1156,1112,1010,854,646,391,96,-233,-588,-961, + -1450,-1831,-2204,-2559,-2888,-3183,-3438,-3646,-3803,-3904,-3948,-3933,-3860,-3731,-3548,-3316,-3040,-2727,-2384,-2019,-1641,-1258,-880,-515,-172,141,417,649,831,961,1034,1048,1004,903,746,538,284,-12,-341,-696,-1068, + -1526,-1908,-2280,-2635,-2964,-3260,-3514,-3722,-3879,-3980,-4024,-4009,-3937,-3807,-3624,-3392,-3117,-2803,-2460,-2096,-1717,-1335,-956,-591,-248,65,340,572,755,885,958,972,928,827,670,462,208,-88,-417,-772,-1144, + -1570,-1951,-2324,-2679,-3008,-3303,-3558,-3766,-3923,-4024,-4068,-4053,-3980,-3851,-3668,-3436,-3160,-2847,-2504,-2139,-1761,-1378,-1000,-635,-292,21,297,529,711,841,914,928,885,783,627,418,164,-131,-460,-815,-1188, + -1581,-1962,-2335,-2690,-3019,-3314,-3569,-3777,-3934,-4035,-4079,-4064,-3991,-3862,-3679,-3447,-3171,-2858,-2515,-2150,-1772,-1389,-1011,-646,-303,10,286,518,700,830,903,917,874,772,616,407,153,-142,-471,-826,-1199, + -1559,-1940,-2313,-2668,-2997,-3292,-3547,-3755,-3912,-4013,-4057,-4042,-3969,-3840,-3657,-3425,-3149,-2836,-2493,-2128,-1750,-1367,-989,-624,-281,32,308,540,722,852,925,939,895,794,637,429,175,-120,-449,-804,-1177, + -1504,-1886,-2258,-2613,-2942,-3238,-3492,-3700,-3857,-3958,-4002,-3988,-3915,-3785,-3603,-3370,-3095,-2782,-2439,-2074,-1695,-1313,-934,-570,-227,86,362,594,777,907,979,994,950,849,692,484,229,-66,-395,-750,-1122, + -1417,-1799,-2172,-2527,-2856,-3151,-3406,-3614,-3770,-3872,-3916,-3901,-3828,-3699,-3516,-3284,-3008,-2695,-2352,-1987,-1609,-1226,-848,-483,-140,173,449,681,864,993,1066,1081,1037,935,779,571,316,21,-308,-663,-1036, + -1300,-1682,-2054,-2409,-2738,-3034,-3288,-3496,-3653,-3754,-3798,-3783,-3711,-3581,-3398,-3166,-2891,-2578,-2235,-1870,-1491,-1109,-730,-365,-22,291,566,798,981,1111,1184,1198,1154,1053,896,688,434,138,-191,-546,-918, + -1153,-1535,-1908,-2263,-2592,-2887,-3141,-3350,-3506,-3607,-3651,-3637,-3564,-3434,-3252,-3020,-2744,-2431,-2088,-1723,-1345,-962,-584,-219,124,437,713,945,1128,1257,1330,1345,1301,1200,1043,835,580,285,-44,-399,-772, + -979,-1361,-1733,-2088,-2417,-2713,-2967,-3175,-3332,-3433,-3477,-3463,-3390,-3260,-3078,-2846,-2570,-2257,-1914,-1549,-1171,-788,-409,-45,298,611,887,1119,1302,1432,1504,1519,1475,1374,1217,1009,754,459,130,-225,-598, + -780,-1162,-1534,-1889,-2218,-2514,-2768,-2976,-3133,-3234,-3278,-3263,-3191,-3061,-2878,-2646,-2371,-2058,-1715,-1350,-971,-589,-210,155,498,811,1086,1318,1501,1631,1704,1718,1674,1573,1416,1208,954,658,329,-26,-398, + -558,-940,-1313,-1668,-1997,-2292,-2547,-2755,-2911,-3013,-3057,-3042,-2969,-2840,-2657,-2425,-2149,-1836,-1493,-1128,-750,-367,11,376,719,1032,1308,1540,1723,1852,1925,1940,1896,1794,1638,1430,1175,880,551,196,-177, + -317,-699,-1072,-1427,-1756,-2051,-2306,-2514,-2670,-2772,-2816,-2801,-2728,-2599,-2416,-2184,-1908,-1595,-1252,-887,-509,-126,252,617,960,1273,1549,1781,1964,2093,2166,2181,2137,2035,1879,1671,1416,1121,792,437,64, + -60,-442,-814,-1169,-1498,-1794,-2048,-2256,-2413,-2514,-2558,-2544,-2471,-2341,-2158,-1926,-1651,-1338,-995,-630,-251,131,510,875,1218,1531,1806,2038,2221,2351,2423,2438,2394,2293,2136,1928,1674,1378,1049,694,322, + 210,-171,-544,-899,-1228,-1523,-1778,-1986,-2143,-2244,-2288,-2273,-2200,-2071,-1888,-1656,-1380,-1067,-724,-359,19,402,780,1145,1488,1801,2077,2309,2492,2621,2694,2708,2665,2563,2407,2198,1944,1649,1320,965,592, + 490,108,-264,-619,-948,-1244,-1498,-1706,-1863,-1964,-2008,-1994,-1921,-1791,-1609,-1376,-1101,-788,-445,-80,299,681,1060,1424,1767,2081,2356,2588,2771,2901,2973,2988,2944,2843,2686,2478,2223,1928,1599,1244,872, + 775,394,21,-334,-663,-958,-1213,-1421,-1578,-1679,-1723,-1708,-1635,-1506,-1323,-1091,-815,-502,-159,206,584,967,1345,1710,2053,2366,2642,2874,3056,3186,3259,3273,3229,3128,2971,2763,2509,2213,1884,1529,1157, + 1062,681,308,-47,-376,-671,-926,-1134,-1290,-1392,-1436,-1421,-1348,-1219,-1036,-804,-528,-215,128,493,871,1254,1632,1997,2340,2653,2929,3161,3344,3473,3546,3561,3517,3415,3259,3051,2796,2501,2172,1817,1444, + 1348,966,593,238,-91,-386,-641,-849,-1005,-1107,-1151,-1136,-1063,-934,-751,-519,-243,70,413,778,1156,1539,1917,2282,2625,2938,3214,3446,3629,3758,3831,3846,3802,3701,3544,3336,3081,2786,2457,2102,1729, + 1627,1246,873,518,189,-106,-361,-569,-726,-827,-871,-856,-783,-654,-471,-239,37,350,693,1058,1436,1819,2197,2562,2905,3218,3494,3726,3909,4038,4111,4125,4082,3980,3824,3616,3361,3066,2737,2382,2009, + 1898,1516,1143,788,459,164,-91,-299,-455,-557,-601,-586,-513,-384,-201,31,307,620,963,1328,1706,2089,2467,2832,3175,3488,3764,3996,4179,4308,4381,4396,4352,4250,4094,3886,3631,3336,3007,2652,2279, + 2155,1773,1401,1046,717,421,167,-41,-198,-299,-343,-329,-256,-126,57,289,564,877,1220,1585,1964,2346,2725,3089,3432,3746,4021,4253,4436,4566,4638,4653,4609,4508,4351,4143,3889,3593,3264,2909,2537, + 2396,2014,1642,1287,958,662,408,200,43,-58,-102,-88,-15,115,298,530,805,1118,1461,1826,2205,2587,2966,3331,3674,3987,4262,4494,4677,4807,4879,4894,4850,4749,4592,4384,4130,3834,3505,3150,2778, + 2618,2236,1863,1508,1179,884,629,421,265,163,119,134,207,336,519,751,1027,1340,1683,2048,2426,2809,3187,3552,3895,4208,4484,4716,4899,5028,5101,5116,5072,4970,4814,4606,4351,4056,3727,3372,2999, + 2817,2435,2062,1707,1378,1083,828,620,464,362,319,333,406,535,718,950,1226,1539,1882,2247,2625,3008,3386,3751,4094,4407,4683,4915,5098,5227,5300,5315,5271,5170,5013,4805,4550,4255,3926,3571,3198, + 2991,2609,2236,1881,1552,1257,1003,794,638,537,493,507,580,710,892,1124,1400,1713,2056,2421,2799,3182,3560,3925,4268,4581,4857,5089,5272,5401,5474,5489,5445,5344,5187,4979,4724,4429,4100,3745,3372, + 3138,2756,2383,2028,1699,1404,1149,941,785,683,639,654,727,856,1039,1271,1547,1860,2203,2568,2946,3329,3707,4072,4415,4728,5004,5236,5419,5548,5621,5636,5592,5490,5334,5126,4871,4576,4247,3892,3519, + 3255,2873,2501,2146,1817,1521,1267,1059,902,801,757,771,844,974,1157,1389,1664,1977,2320,2685,3064,3446,3825,4190,4533,4846,5121,5353,5536,5666,5739,5753,5709,5608,5451,5243,4989,4693,4364,4009,3637, + 3342,2960,2587,2232,1903,1608,1353,1145,989,887,843,858,931,1060,1243,1475,1751,2064,2407,2772,3150,3533,3911,4276,4619,4932,5208,5440,5623,5752,5825,5840,5796,5695,5538,5330,5075,4780,4451,4096,3723, + 3396,3015,2642,2287,1958,1663,1408,1200,1043,942,898,913,986,1115,1298,1530,1806,2119,2462,2827,3205,3588,3966,4331,4674,4987,5263,5495,5678,5807,5880,5894,5851,5749,5593,5385,5130,4835,4506,4151,3778, + 3418,3037,2664,2309,1980,1685,1430,1222,1065,964,920,935,1008,1137,1320,1552,1828,2141,2484,2849,3227,3610,3988,4353,4696,5009,5285,5517,5700,5829,5902,5916,5873,5771,5615,5407,5152,4857,4528,4173,3800, + 3407,3026,2653,2298,1969,1674,1419,1211,1054,953,909,924,997,1126,1309,1541,1817,2130,2473,2838,3216,3599,3977,4342,4685,4998,5274,5506,5689,5818,5891,5905,5862,5760,5604,5396,5141,4846,4517,4162,3789, + 3363,2982,2609,2254,1925,1630,1375,1167,1011,909,865,880,953,1082,1265,1497,1773,2086,2429,2794,3172,3555,3933,4298,4641,4954,5230,5462,5645,5774,5847,5862,5818,5716,5560,5352,5097,4802,4473,4118,3745, + 3287,2906,2533,2178,1849,1554,1299,1091,935,833,789,804,877,1006,1189,1421,1697,2010,2353,2718,3096,3479,3857,4222,4565,4878,5154,5386,5569,5698,5771,5786,5742,5640,5484,5276,5021,4726,4397,4042,3669, + 3180,2798,2426,2071,1742,1446,1192,984,827,726,682,697,769,899,1082,1314,1589,1902,2245,2610,2989,3371,3750,4115,4458,4771,5046,5278,5461,5591,5664,5678,5634,5533,5376,5168,4914,4618,4289,3934,3562, + 3043,2661,2289,1934,1605,1309,1055,847,690,589,545,559,632,762,944,1176,1452,1765,2108,2473,2851,3234,3612,3977,4320,4633,4909,5141,5324,5453,5526,5541,5497,5396,5239,5031,4776,4481,4152,3797,3424, + 2878,2496,2123,1768,1439,1144,889,681,525,423,379,394,467,596,779,1011,1287,1600,1943,2308,2686,3069,3447,3812,4155,4468,4744,4976,5159,5288,5361,5376,5332,5230,5074,4866,4611,4316,3987,3632,3259, + + -1029,-1411,-1783,-2138,-2467,-2763,-3017,-3225,-3382,-3483,-3527,-3513,-3440,-3310,-3128,-2895,-2620,-2307,-1964,-1599,-1220,-838,-459,-95,248,562,837,1069,1252,1382,1454,1469,1425,1324,1167,959,704,409,80,-275,-647, + -1220,-1602,-1974,-2329,-2658,-2954,-3208,-3416,-3573,-3674,-3718,-3704,-3631,-3501,-3319,-3087,-2811,-2498,-2155,-1790,-1412,-1029,-651,-286,57,370,646,878,1061,1190,1263,1278,1234,1133,976,768,513,218,-111,-466,-839, + -1385,-1767,-2140,-2495,-2824,-3119,-3374,-3582,-3738,-3840,-3884,-3869,-3796,-3667,-3484,-3252,-2976,-2663,-2320,-1955,-1577,-1194,-816,-451,-108,205,481,713,896,1025,1098,1113,1069,967,811,603,348,53,-276,-631,-1004, + -1523,-1904,-2277,-2632,-2961,-3256,-3511,-3719,-3875,-3977,-4021,-4006,-3933,-3804,-3621,-3389,-3113,-2800,-2457,-2092,-1714,-1331,-953,-588,-245,68,344,576,759,888,961,976,932,830,674,466,211,-84,-413,-768,-1141, + -1630,-2012,-2384,-2739,-3068,-3364,-3618,-3826,-3983,-4084,-4128,-4113,-4041,-3911,-3728,-3496,-3221,-2907,-2564,-2200,-1821,-1439,-1060,-695,-352,-39,236,468,651,781,854,868,824,723,566,358,104,-192,-521,-876,-1248, + -1706,-2088,-2460,-2815,-3144,-3440,-3694,-3902,-4059,-4160,-4204,-4190,-4117,-3987,-3804,-3572,-3297,-2984,-2641,-2276,-1897,-1515,-1136,-771,-428,-115,160,392,575,705,777,792,748,647,490,282,28,-268,-597,-952,-1324, + -1750,-2132,-2504,-2859,-3188,-3483,-3738,-3946,-4103,-4204,-4248,-4233,-4161,-4031,-3848,-3616,-3340,-3027,-2684,-2320,-1941,-1559,-1180,-815,-472,-159,117,349,531,661,734,748,704,603,446,238,-16,-312,-641,-996,-1368, + -1761,-2143,-2515,-2870,-3199,-3494,-3749,-3957,-4114,-4215,-4259,-4244,-4172,-4042,-3859,-3627,-3351,-3038,-2695,-2331,-1952,-1570,-1191,-826,-483,-170,106,338,520,650,723,737,693,592,435,227,-27,-323,-652,-1007,-1379, + -1739,-2121,-2493,-2848,-3177,-3472,-3727,-3935,-4092,-4193,-4237,-4222,-4150,-4020,-3837,-3605,-3329,-3016,-2673,-2309,-1930,-1548,-1169,-804,-461,-148,127,360,542,672,745,759,715,614,457,249,-5,-301,-630,-985,-1357, + -1684,-2066,-2439,-2794,-3123,-3418,-3672,-3880,-4037,-4138,-4182,-4168,-4095,-3965,-3783,-3551,-3275,-2962,-2619,-2254,-1876,-1493,-1115,-750,-407,-94,182,414,597,726,799,814,770,669,512,304,49,-246,-575,-930,-1303, + -1598,-1979,-2352,-2707,-3036,-3331,-3586,-3794,-3950,-4052,-4096,-4081,-4008,-3879,-3696,-3464,-3188,-2875,-2532,-2167,-1789,-1406,-1028,-663,-320,-7,269,501,684,813,886,901,857,755,599,391,136,-159,-488,-843,-1216, + -1480,-1862,-2234,-2589,-2918,-3214,-3468,-3676,-3833,-3934,-3978,-3964,-3891,-3761,-3579,-3346,-3071,-2758,-2415,-2050,-1671,-1289,-910,-546,-203,111,386,618,801,931,1003,1018,974,873,716,508,253,-42,-371,-726,-1098, + -1333,-1715,-2088,-2443,-2772,-3067,-3322,-3530,-3686,-3788,-3831,-3817,-3744,-3615,-3432,-3200,-2924,-2611,-2268,-1903,-1525,-1142,-764,-399,-56,257,533,765,948,1077,1150,1165,1121,1020,863,655,400,105,-224,-579,-952, + -1159,-1541,-1914,-2269,-2598,-2893,-3147,-3356,-3512,-3614,-3657,-3643,-3570,-3440,-3258,-3026,-2750,-2437,-2094,-1729,-1351,-968,-590,-225,118,431,707,939,1122,1251,1324,1339,1295,1194,1037,829,574,279,-50,-405,-778, + -960,-1342,-1714,-2069,-2398,-2694,-2948,-3156,-3313,-3414,-3458,-3444,-3371,-3241,-3059,-2826,-2551,-2238,-1895,-1530,-1151,-769,-390,-26,317,631,906,1138,1321,1451,1523,1538,1494,1393,1236,1028,773,478,149,-206,-578, + -739,-1120,-1493,-1848,-2177,-2472,-2727,-2935,-3091,-3193,-3237,-3222,-3149,-3020,-2837,-2605,-2329,-2016,-1673,-1308,-930,-547,-169,196,539,852,1128,1360,1543,1672,1745,1760,1716,1614,1458,1250,995,700,371,16,-357, + -497,-879,-1252,-1607,-1936,-2231,-2486,-2694,-2850,-2952,-2996,-2981,-2908,-2779,-2596,-2364,-2088,-1775,-1432,-1067,-689,-306,72,437,780,1093,1369,1601,1784,1913,1986,2001,1957,1855,1699,1491,1236,941,612,257,-116, + -240,-622,-994,-1349,-1678,-1974,-2228,-2436,-2593,-2694,-2738,-2724,-2651,-2521,-2339,-2107,-1831,-1518,-1175,-810,-431,-49,330,694,1037,1350,1626,1858,2041,2171,2243,2258,2214,2113,1956,1748,1493,1198,869,514,142, + 30,-351,-724,-1079,-1408,-1703,-1958,-2166,-2323,-2424,-2468,-2453,-2380,-2251,-2068,-1836,-1560,-1247,-904,-539,-161,222,600,965,1308,1621,1897,2129,2311,2441,2514,2528,2484,2383,2226,2018,1764,1468,1139,784,412, + 310,-72,-445,-800,-1129,-1424,-1678,-1886,-2043,-2144,-2188,-2174,-2101,-1971,-1789,-1557,-1281,-968,-625,-260,118,501,879,1244,1587,1900,2176,2408,2591,2720,2793,2808,2764,2663,2506,2298,2043,1748,1419,1064,691, + 595,213,-159,-514,-843,-1139,-1393,-1601,-1758,-1859,-1903,-1888,-1816,-1686,-1503,-1271,-996,-682,-339,25,404,786,1165,1530,1873,2186,2461,2693,2876,3006,3079,3093,3049,2948,2791,2583,2329,2033,1704,1349,977, + 882,501,128,-227,-556,-851,-1106,-1314,-1471,-1572,-1616,-1601,-1528,-1399,-1216,-984,-708,-395,-52,313,691,1074,1452,1817,2160,2473,2749,2981,3164,3293,3366,3380,3337,3235,3079,2870,2616,2321,1992,1637,1264, + 1168,786,413,58,-271,-566,-821,-1029,-1185,-1287,-1331,-1316,-1243,-1114,-931,-699,-423,-110,233,598,976,1359,1737,2102,2445,2758,3034,3266,3449,3578,3651,3666,3622,3520,3364,3156,2901,2606,2277,1922,1549, + 1447,1066,693,338,9,-286,-541,-749,-906,-1007,-1051,-1036,-963,-834,-651,-419,-143,170,513,878,1256,1639,2017,2382,2725,3038,3314,3546,3728,3858,3931,3945,3901,3800,3643,3435,3181,2885,2556,2201,1829, + 1717,1336,963,608,279,-16,-271,-479,-635,-737,-781,-766,-693,-564,-381,-149,127,440,783,1148,1526,1909,2287,2652,2995,3308,3584,3816,3999,4128,4201,4216,4172,4070,3914,3706,3451,3156,2827,2472,2099, + 1975,1593,1221,866,537,241,-13,-221,-378,-479,-523,-509,-436,-306,-124,108,384,697,1040,1405,1783,2166,2544,2909,3252,3565,3841,4073,4256,4385,4458,4473,4429,4328,4171,3963,3708,3413,3084,2729,2356, + 2216,1834,1462,1107,778,482,228,20,-137,-238,-282,-268,-195,-65,117,349,625,938,1281,1646,2024,2407,2785,3150,3493,3806,4082,4314,4497,4626,4699,4714,4670,4569,4412,4204,3949,3654,3325,2970,2597, + 2437,2056,1683,1328,999,704,449,241,85,-17,-61,-46,27,156,339,571,847,1160,1503,1868,2246,2629,3007,3372,3715,4028,4304,4536,4719,4848,4921,4936,4892,4790,4634,4426,4171,3876,3547,3192,2819, + 2637,2255,1882,1527,1198,903,648,440,284,182,138,153,226,355,538,770,1046,1359,1702,2067,2445,2828,3206,3571,3914,4227,4503,4735,4918,5047,5120,5135,5091,4989,4833,4625,4370,4075,3746,3391,3018, + 2811,2429,2056,1701,1372,1077,822,614,458,356,312,327,400,529,712,944,1220,1533,1876,2241,2619,3002,3380,3745,4088,4401,4677,4909,5092,5221,5294,5309,5265,5164,5007,4799,4544,4249,3920,3565,3192, + 2957,2576,2203,1848,1519,1224,969,761,605,503,459,474,547,676,859,1091,1367,1680,2023,2388,2766,3149,3527,3892,4235,4548,4824,5056,5239,5368,5441,5456,5412,5310,5154,4946,4691,4396,4067,3712,3339, + 3075,2693,2321,1966,1637,1341,1087,879,722,621,577,591,664,794,976,1209,1484,1797,2140,2505,2884,3266,3645,4009,4352,4666,4941,5173,5356,5486,5558,5573,5529,5428,5271,5063,4808,4513,4184,3829,3457, + 3162,2780,2407,2052,1723,1428,1173,965,809,707,663,678,751,880,1063,1295,1571,1884,2227,2592,2970,3353,3731,4096,4439,4752,5028,5260,5443,5572,5645,5660,5616,5514,5358,5150,4895,4600,4271,3916,3543, + 3216,2835,2462,2107,1778,1483,1228,1020,863,762,718,733,806,935,1118,1350,1626,1939,2282,2647,3025,3408,3786,4151,4494,4807,5083,5315,5497,5627,5700,5714,5670,5569,5413,5204,4950,4655,4326,3971,3598, + 3238,2857,2484,2129,1800,1505,1250,1042,885,784,740,755,828,957,1140,1372,1648,1961,2304,2669,3047,3430,3808,4173,4516,4829,5105,5337,5519,5649,5722,5736,5692,5591,5434,5226,4972,4677,4348,3993,3620, + 3227,2846,2473,2118,1789,1494,1239,1031,874,773,729,744,817,946,1129,1361,1637,1950,2293,2658,3036,3419,3797,4162,4505,4818,5094,5326,5508,5638,5711,5725,5681,5580,5423,5215,4961,4666,4337,3982,3609, + 3183,2802,2429,2074,1745,1450,1195,987,831,729,685,700,773,902,1085,1317,1593,1906,2249,2614,2992,3375,3753,4118,4461,4774,5050,5282,5465,5594,5667,5682,5638,5536,5380,5172,4917,4622,4293,3938,3565, + 3107,2726,2353,1998,1669,1374,1119,911,754,653,609,624,697,826,1009,1241,1517,1830,2173,2538,2916,3299,3677,4042,4385,4698,4974,5206,5389,5518,5591,5605,5562,5460,5304,5096,4841,4546,4217,3862,3489, + 3000,2618,2246,1891,1562,1266,1012,804,647,546,502,516,589,719,902,1134,1409,1722,2065,2430,2809,3191,3570,3934,4277,4591,4866,5098,5281,5411,5483,5498,5454,5353,5196,4988,4733,4438,4109,3754,3382, + 2863,2481,2108,1753,1424,1129,874,666,510,408,365,379,452,581,764,996,1272,1585,1928,2293,2671,3054,3432,3797,4140,4453,4729,4961,5144,5273,5346,5361,5317,5216,5059,4851,4596,4301,3972,3617,3244, + 2698,2316,1943,1588,1259,964,709,501,345,243,199,214,287,416,599,831,1107,1420,1763,2128,2506,2889,3267,3632,3975,4288,4564,4796,4979,5108,5181,5196,5152,5050,4894,4686,4431,4136,3807,3452,3079, + + -1197,-1579,-1952,-2307,-2636,-2931,-3185,-3394,-3550,-3651,-3695,-3681,-3608,-3478,-3296,-3064,-2788,-2475,-2132,-1767,-1389,-1006,-628,-263,80,393,669,901,1084,1213,1286,1301,1257,1156,999,791,536,241,-88,-443,-816, + -1388,-1770,-2143,-2498,-2827,-3122,-3377,-3585,-3741,-3843,-3886,-3872,-3799,-3670,-3487,-3255,-2979,-2666,-2323,-1958,-1580,-1197,-819,-454,-111,202,478,710,893,1022,1095,1110,1066,965,808,600,345,50,-279,-634,-1007, + -1554,-1935,-2308,-2663,-2992,-3287,-3542,-3750,-3906,-4008,-4052,-4037,-3964,-3835,-3652,-3420,-3144,-2831,-2488,-2123,-1745,-1362,-984,-619,-276,37,313,545,728,857,930,945,901,799,643,435,180,-115,-444,-799,-1172, + -1691,-2072,-2445,-2800,-3129,-3424,-3679,-3887,-4044,-4145,-4189,-4174,-4101,-3972,-3789,-3557,-3281,-2968,-2625,-2260,-1882,-1499,-1121,-756,-413,-100,176,408,591,720,793,807,764,662,506,298,43,-252,-581,-936,-1309, + -1798,-2180,-2552,-2907,-3236,-3532,-3786,-3994,-4151,-4252,-4296,-4282,-4209,-4079,-3896,-3664,-3389,-3076,-2733,-2368,-1989,-1607,-1228,-864,-521,-207,68,300,483,613,685,700,656,555,398,190,-64,-360,-689,-1044,-1416, + -1874,-2256,-2628,-2983,-3312,-3608,-3862,-4070,-4227,-4328,-4372,-4358,-4285,-4155,-3973,-3741,-3465,-3152,-2809,-2444,-2066,-1683,-1305,-940,-597,-284,-8,224,407,536,609,624,580,479,322,114,-141,-436,-765,-1120,-1493, + -1918,-2300,-2672,-3027,-3356,-3652,-3906,-4114,-4271,-4372,-4416,-4402,-4329,-4199,-4016,-3784,-3509,-3196,-2853,-2488,-2109,-1727,-1348,-983,-640,-327,-52,180,363,493,566,580,536,435,278,70,-184,-480,-809,-1164,-1536, + -1929,-2311,-2683,-3038,-3367,-3663,-3917,-4125,-4282,-4383,-4427,-4413,-4340,-4210,-4027,-3795,-3520,-3207,-2864,-2499,-2120,-1738,-1359,-994,-651,-338,-63,169,352,482,555,569,525,424,267,59,-195,-491,-820,-1175,-1547, + -1907,-2289,-2661,-3016,-3345,-3641,-3895,-4103,-4260,-4361,-4405,-4391,-4318,-4188,-4005,-3773,-3498,-3185,-2842,-2477,-2098,-1716,-1337,-972,-629,-316,-41,191,374,504,576,591,547,446,289,81,-173,-469,-798,-1153,-1525, + -1852,-2234,-2607,-2962,-3291,-3586,-3841,-4049,-4205,-4307,-4351,-4336,-4263,-4134,-3951,-3719,-3443,-3130,-2787,-2422,-2044,-1661,-1283,-918,-575,-262,14,246,429,558,631,646,602,501,344,136,-119,-414,-743,-1098,-1471, + -1766,-2147,-2520,-2875,-3204,-3499,-3754,-3962,-4119,-4220,-4264,-4249,-4176,-4047,-3864,-3632,-3356,-3043,-2700,-2335,-1957,-1574,-1196,-831,-488,-175,101,333,516,645,718,732,689,587,431,223,-32,-327,-656,-1011,-1384, + -1648,-2030,-2403,-2758,-3087,-3382,-3636,-3844,-4001,-4102,-4146,-4132,-4059,-3929,-3747,-3515,-3239,-2926,-2583,-2218,-1840,-1457,-1079,-714,-371,-58,218,450,633,762,835,850,806,705,548,340,85,-210,-539,-894,-1267, + -1501,-1883,-2256,-2611,-2940,-3235,-3490,-3698,-3854,-3956,-4000,-3985,-3912,-3783,-3600,-3368,-3092,-2779,-2436,-2071,-1693,-1310,-932,-567,-224,89,365,597,780,909,982,997,953,851,695,487,232,-63,-392,-747,-1120, + -1327,-1709,-2082,-2437,-2766,-3061,-3316,-3524,-3680,-3782,-3826,-3811,-3738,-3609,-3426,-3194,-2918,-2605,-2262,-1897,-1519,-1136,-758,-393,-50,263,539,771,954,1083,1156,1171,1127,1025,869,661,406,111,-218,-573,-946, + -1128,-1510,-1883,-2238,-2567,-2862,-3116,-3324,-3481,-3582,-3626,-3612,-3539,-3409,-3227,-2995,-2719,-2406,-2063,-1698,-1320,-937,-559,-194,149,462,738,970,1153,1282,1355,1370,1326,1225,1068,860,605,310,-19,-374,-747, + -907,-1288,-1661,-2016,-2345,-2640,-2895,-3103,-3260,-3361,-3405,-3390,-3317,-3188,-3005,-2773,-2497,-2184,-1841,-1476,-1098,-715,-337,28,371,684,960,1192,1375,1504,1577,1592,1548,1446,1290,1082,827,532,203,-152,-525, + -666,-1047,-1420,-1775,-2104,-2399,-2654,-2862,-3018,-3120,-3164,-3149,-3076,-2947,-2764,-2532,-2256,-1943,-1600,-1235,-857,-474,-96,269,612,925,1201,1433,1616,1745,1818,1833,1789,1687,1531,1323,1068,773,444,89,-284, + -408,-790,-1163,-1518,-1847,-2142,-2396,-2605,-2761,-2863,-2906,-2892,-2819,-2690,-2507,-2275,-1999,-1686,-1343,-978,-600,-217,161,526,869,1182,1458,1690,1873,2002,2075,2090,2046,1945,1788,1580,1325,1030,701,346,-27, + -138,-520,-892,-1247,-1576,-1872,-2126,-2334,-2491,-2592,-2636,-2621,-2549,-2419,-2236,-2004,-1729,-1416,-1073,-708,-329,53,432,797,1140,1453,1728,1960,2143,2273,2346,2360,2316,2215,2058,1850,1596,1300,971,616,244, + 142,-240,-613,-968,-1297,-1592,-1847,-2055,-2211,-2313,-2357,-2342,-2269,-2140,-1957,-1725,-1449,-1136,-793,-428,-50,333,711,1076,1419,1732,2008,2240,2423,2552,2625,2640,2596,2495,2338,2130,1875,1580,1251,896,523, + 427,45,-327,-682,-1011,-1307,-1561,-1769,-1926,-2027,-2071,-2057,-1984,-1854,-1671,-1439,-1164,-851,-508,-143,236,618,997,1361,1704,2018,2293,2525,2708,2838,2910,2925,2881,2780,2623,2415,2161,1865,1536,1181,809, + 714,333,-40,-395,-724,-1019,-1274,-1482,-1639,-1740,-1784,-1769,-1697,-1567,-1384,-1152,-876,-563,-220,144,523,906,1284,1649,1992,2305,2581,2813,2995,3125,3198,3212,3168,3067,2910,2702,2448,2152,1823,1468,1096, + 999,618,245,-110,-439,-734,-989,-1197,-1353,-1455,-1499,-1484,-1411,-1282,-1099,-867,-591,-278,65,430,808,1191,1569,1934,2277,2590,2866,3098,3281,3410,3483,3498,3454,3352,3196,2988,2733,2438,2109,1754,1381, + 1279,897,525,170,-159,-455,-709,-917,-1074,-1175,-1219,-1204,-1132,-1002,-819,-587,-312,2,345,709,1088,1470,1849,2214,2557,2870,3145,3377,3560,3690,3763,3777,3733,3632,3475,3267,3013,2717,2388,2033,1661, + 1549,1168,795,440,111,-184,-439,-647,-804,-905,-949,-934,-861,-732,-549,-317,-41,272,615,980,1358,1741,2119,2484,2827,3140,3416,3648,3831,3960,4033,4047,4004,3902,3746,3538,3283,2988,2659,2304,1931, + 1807,1425,1052,697,368,73,-182,-390,-546,-648,-691,-677,-604,-475,-292,-60,216,529,872,1237,1615,1998,2376,2741,3084,3397,3673,3905,4088,4217,4290,4305,4261,4160,4003,3795,3540,3245,2916,2561,2188, + 2048,1666,1293,938,609,314,60,-149,-305,-407,-450,-436,-363,-234,-51,181,457,770,1113,1478,1856,2239,2617,2982,3325,3638,3914,4146,4329,4458,4531,4546,4502,4401,4244,4036,3781,3486,3157,2802,2429, + 2269,1888,1515,1160,831,536,281,73,-84,-185,-229,-214,-141,-12,171,403,679,992,1335,1700,2078,2461,2839,3204,3547,3860,4136,4368,4551,4680,4753,4767,4724,4622,4466,4258,4003,3708,3379,3024,2651, + 2468,2087,1714,1359,1030,735,480,272,116,14,-30,-15,58,187,370,602,878,1191,1534,1899,2277,2660,3038,3403,3746,4059,4335,4567,4750,4879,4952,4967,4923,4821,4665,4457,4202,3907,3578,3223,2850, + 2643,2261,1888,1533,1204,909,654,446,290,188,144,159,232,361,544,776,1052,1365,1708,2073,2451,2834,3212,3577,3920,4233,4509,4741,4924,5053,5126,5141,5097,4995,4839,4631,4376,4081,3752,3397,3024, + 2789,2408,2035,1680,1351,1056,801,593,436,335,291,306,379,508,691,923,1199,1512,1855,2220,2598,2981,3359,3724,4067,4380,4656,4888,5071,5200,5273,5287,5244,5142,4986,4778,4523,4228,3899,3544,3171, + 2907,2525,2152,1797,1468,1173,919,710,554,453,409,423,496,626,808,1040,1316,1629,1972,2337,2715,3098,3476,3841,4184,4497,4773,5005,5188,5317,5390,5405,5361,5260,5103,4895,4640,4345,4016,3661,3288, + 2993,2612,2239,1884,1555,1260,1005,797,641,539,495,510,583,712,895,1127,1403,1716,2059,2424,2802,3185,3563,3928,4271,4584,4860,5092,5275,5404,5477,5492,5448,5346,5190,4982,4727,4432,4103,3748,3375, + 3048,2666,2294,1939,1610,1315,1060,852,695,594,550,565,637,767,950,1182,1457,1771,2114,2478,2857,3239,3618,3983,4326,4639,4914,5147,5329,5459,5532,5546,5502,5401,5244,5036,4782,4486,4157,3802,3430, + 3070,2688,2316,1961,1632,1337,1082,874,717,616,572,587,659,789,972,1204,1479,1793,2136,2500,2879,3261,3640,4005,4348,4661,4936,5168,5351,5481,5554,5568,5524,5423,5266,5058,4804,4508,4179,3824,3452, + 3059,2677,2305,1950,1621,1326,1071,863,706,605,561,576,648,778,961,1193,1468,1782,2125,2489,2868,3250,3629,3994,4337,4650,4925,5157,5340,5470,5543,5557,5513,5412,5255,5047,4793,4497,4168,3813,3441, + 3015,2634,2261,1906,1577,1282,1027,819,662,561,517,532,605,734,917,1149,1425,1738,2081,2446,2824,3207,3585,3950,4293,4606,4882,5114,5297,5426,5499,5513,5470,5368,5212,5003,4749,4454,4125,3770,3397, + 2939,2558,2185,1830,1501,1206,951,743,586,485,441,456,529,658,841,1073,1349,1662,2005,2370,2748,3131,3509,3874,4217,4530,4806,5038,5220,5350,5423,5437,5393,5292,5135,4927,4673,4377,4048,3693,3321, + 2832,2450,2077,1722,1393,1098,844,636,479,378,334,348,421,551,733,965,1241,1554,1897,2262,2640,3023,3401,3766,4109,4422,4698,4930,5113,5242,5315,5330,5286,5185,5028,4820,4565,4270,3941,3586,3213, + 2695,2313,1940,1585,1256,961,706,498,342,240,196,211,284,413,596,828,1104,1417,1760,2125,2503,2886,3264,3629,3972,4285,4561,4793,4976,5105,5178,5193,5149,5047,4891,4683,4428,4133,3804,3449,3076, + 2529,2148,1775,1420,1091,796,541,333,177,75,31,46,119,248,431,663,939,1252,1595,1960,2338,2721,3099,3464,3807,4120,4396,4628,4811,4940,5013,5028,4984,4882,4726,4518,4263,3968,3639,3284,2911, + + -1349,-1731,-2104,-2459,-2788,-3083,-3338,-3546,-3702,-3804,-3848,-3833,-3760,-3631,-3448,-3216,-2940,-2627,-2284,-1919,-1541,-1158,-780,-415,-72,241,517,749,932,1061,1134,1149,1105,1003,847,639,384,89,-240,-595,-968, + -1540,-1922,-2295,-2650,-2979,-3274,-3529,-3737,-3893,-3995,-4039,-4024,-3951,-3822,-3639,-3407,-3131,-2818,-2475,-2110,-1732,-1349,-971,-606,-263,50,326,558,741,870,943,958,914,812,656,448,193,-102,-431,-786,-1159, + -1706,-2087,-2460,-2815,-3144,-3439,-3694,-3902,-4059,-4160,-4204,-4189,-4116,-3987,-3804,-3572,-3296,-2983,-2640,-2275,-1897,-1514,-1136,-771,-428,-115,161,393,576,705,778,792,749,647,491,283,28,-267,-596,-951,-1324, + -1843,-2225,-2597,-2952,-3281,-3576,-3831,-4039,-4196,-4297,-4341,-4326,-4254,-4124,-3941,-3709,-3434,-3120,-2777,-2413,-2034,-1652,-1273,-908,-565,-252,23,256,438,568,641,655,611,510,353,145,-109,-405,-734,-1089,-1461, + -1950,-2332,-2705,-3060,-3389,-3684,-3938,-4147,-4303,-4405,-4448,-4434,-4361,-4232,-4049,-3817,-3541,-3228,-2885,-2520,-2142,-1759,-1381,-1016,-673,-360,-84,148,331,460,533,548,504,403,246,38,-217,-512,-841,-1196,-1569, + -2026,-2408,-2781,-3136,-3465,-3760,-4015,-4223,-4379,-4481,-4525,-4510,-4437,-4308,-4125,-3893,-3617,-3304,-2961,-2596,-2218,-1835,-1457,-1092,-749,-436,-160,72,255,384,457,472,428,326,170,-38,-293,-588,-917,-1272,-1645, + -2070,-2452,-2825,-3179,-3508,-3804,-4058,-4266,-4423,-4524,-4568,-4554,-4481,-4351,-4169,-3937,-3661,-3348,-3005,-2640,-2262,-1879,-1501,-1136,-793,-480,-204,28,211,340,413,428,384,283,126,-82,-337,-632,-961,-1316,-1689, + -2081,-2463,-2835,-3190,-3519,-3815,-4069,-4277,-4434,-4535,-4579,-4565,-4492,-4362,-4180,-3948,-3672,-3359,-3016,-2651,-2273,-1890,-1512,-1147,-804,-491,-215,17,200,329,402,417,373,272,115,-93,-348,-643,-972,-1327,-1700, + -2059,-2441,-2814,-3169,-3498,-3793,-4047,-4255,-4412,-4513,-4557,-4543,-4470,-4340,-4158,-3926,-3650,-3337,-2994,-2629,-2251,-1868,-1490,-1125,-782,-469,-193,39,222,351,424,439,395,294,137,-71,-326,-621,-950,-1305,-1678, + -2005,-2386,-2759,-3114,-3443,-3738,-3993,-4201,-4357,-4459,-4503,-4488,-4415,-4286,-4103,-3871,-3595,-3282,-2939,-2574,-2196,-1813,-1435,-1070,-727,-414,-138,94,277,406,479,494,450,348,192,-16,-271,-566,-895,-1250,-1623, + -1918,-2300,-2672,-3027,-3356,-3651,-3906,-4114,-4271,-4372,-4416,-4401,-4329,-4199,-4016,-3784,-3508,-3195,-2852,-2488,-2109,-1727,-1348,-983,-640,-327,-52,181,363,493,566,580,536,435,278,70,-184,-480,-809,-1164,-1536, + -1800,-2182,-2555,-2910,-3239,-3534,-3789,-3997,-4153,-4255,-4299,-4284,-4211,-4082,-3899,-3667,-3391,-3078,-2735,-2370,-1992,-1609,-1231,-866,-523,-210,66,298,481,610,683,698,654,552,396,188,-67,-362,-691,-1046,-1419, + -1654,-2035,-2408,-2763,-3092,-3387,-3642,-3850,-4007,-4108,-4152,-4137,-4064,-3935,-3752,-3520,-3244,-2931,-2588,-2223,-1845,-1462,-1084,-719,-376,-63,213,445,628,757,830,845,801,699,543,335,80,-215,-544,-899,-1272, + -1480,-1861,-2234,-2589,-2918,-3213,-3468,-3676,-3832,-3934,-3978,-3963,-3890,-3761,-3578,-3346,-3070,-2757,-2414,-2049,-1671,-1288,-910,-545,-202,111,387,619,802,931,1004,1019,975,873,717,509,254,-41,-370,-725,-1098, + -1280,-1662,-2035,-2390,-2719,-3014,-3269,-3477,-3633,-3735,-3779,-3764,-3691,-3562,-3379,-3147,-2871,-2558,-2215,-1850,-1472,-1089,-711,-346,-3,310,586,818,1001,1130,1203,1218,1174,1072,916,708,453,158,-171,-526,-899, + -1059,-1440,-1813,-2168,-2497,-2792,-3047,-3255,-3412,-3513,-3557,-3542,-3469,-3340,-3157,-2925,-2649,-2336,-1993,-1628,-1250,-867,-489,-124,219,532,808,1040,1222,1352,1425,1439,1395,1294,1137,929,675,379,50,-305,-677, + -818,-1199,-1572,-1927,-2256,-2551,-2806,-3014,-3171,-3272,-3316,-3301,-3228,-3099,-2916,-2684,-2408,-2095,-1752,-1387,-1009,-626,-248,117,460,773,1049,1281,1463,1593,1666,1680,1636,1535,1378,1170,916,620,291,-64,-436, + -560,-942,-1315,-1670,-1999,-2294,-2549,-2757,-2913,-3015,-3059,-3044,-2971,-2842,-2659,-2427,-2151,-1838,-1495,-1130,-752,-369,9,374,717,1030,1306,1538,1721,1850,1923,1938,1894,1792,1636,1428,1173,878,549,194,-179, + -290,-672,-1044,-1399,-1728,-2024,-2278,-2486,-2643,-2744,-2788,-2774,-2701,-2571,-2389,-2157,-1881,-1568,-1225,-860,-482,-99,279,644,987,1300,1576,1808,1991,2120,2193,2208,2164,2063,1906,1698,1443,1148,819,464,91, + -11,-392,-765,-1120,-1449,-1744,-1999,-2207,-2363,-2465,-2509,-2494,-2421,-2292,-2109,-1877,-1601,-1288,-945,-580,-202,181,559,924,1267,1580,1856,2088,2271,2400,2473,2488,2444,2342,2186,1978,1723,1428,1099,744,371, + 275,-107,-480,-835,-1164,-1459,-1713,-1922,-2078,-2180,-2223,-2209,-2136,-2007,-1824,-1592,-1316,-1003,-660,-295,83,466,844,1209,1552,1865,2141,2373,2556,2685,2758,2773,2729,2628,2471,2263,2008,1713,1384,1029,656, + 562,180,-192,-547,-876,-1172,-1426,-1634,-1791,-1892,-1936,-1922,-1849,-1719,-1536,-1304,-1029,-716,-373,-8,371,753,1132,1496,1839,2153,2428,2660,2843,2973,3045,3060,3016,2915,2758,2550,2296,2000,1671,1316,944, + 847,466,93,-262,-591,-886,-1141,-1349,-1506,-1607,-1651,-1636,-1563,-1434,-1251,-1019,-743,-430,-87,278,656,1039,1417,1782,2125,2438,2714,2946,3128,3258,3331,3345,3301,3200,3044,2835,2581,2286,1957,1602,1229, + 1127,745,373,18,-311,-607,-861,-1069,-1226,-1327,-1371,-1357,-1284,-1154,-972,-740,-464,-151,192,557,935,1318,1696,2061,2404,2717,2993,3225,3408,3537,3610,3625,3581,3480,3323,3115,2860,2565,2236,1881,1508, + 1397,1016,643,288,-41,-336,-591,-799,-956,-1057,-1101,-1086,-1014,-884,-701,-469,-193,120,463,827,1206,1589,1967,2332,2675,2988,3264,3496,3678,3808,3881,3895,3851,3750,3593,3385,3131,2835,2506,2151,1779, + 1654,1273,900,545,216,-79,-334,-542,-698,-800,-844,-829,-756,-627,-444,-212,64,377,720,1085,1463,1846,2224,2589,2932,3245,3521,3753,3936,4065,4138,4153,4109,4007,3851,3643,3388,3093,2764,2409,2036, + 1896,1514,1141,786,457,162,-93,-301,-457,-559,-603,-588,-515,-386,-203,29,305,618,961,1326,1704,2087,2465,2830,3173,3486,3762,3994,4177,4306,4379,4394,4350,4248,4092,3884,3629,3334,3005,2650,2277, + 2117,1735,1363,1008,679,384,129,-79,-236,-337,-381,-366,-294,-164,19,251,526,840,1183,1547,1926,2308,2687,3052,3395,3708,3983,4216,4398,4528,4601,4615,4571,4470,4313,4105,3851,3555,3226,2871,2499, + 2316,1935,1562,1207,878,583,328,120,-37,-138,-182,-167,-94,35,218,450,726,1039,1382,1747,2125,2508,2886,3251,3594,3907,4183,4415,4598,4727,4800,4814,4771,4669,4513,4304,4050,3755,3426,3071,2698, + 2490,2109,1736,1381,1052,757,502,294,137,36,-8,7,80,209,392,624,900,1213,1556,1921,2299,2682,3060,3425,3768,4081,4357,4589,4772,4901,4974,4989,4945,4843,4687,4479,4224,3929,3600,3245,2872, + 2637,2255,1883,1528,1199,904,649,441,284,183,139,154,226,356,539,771,1046,1360,1703,2067,2446,2828,3207,3572,3915,4228,4503,4736,4918,5048,5121,5135,5091,4990,4833,4625,4371,4075,3746,3391,3019, + 2755,2373,2000,1645,1316,1021,766,558,402,300,256,271,344,473,656,888,1164,1477,1820,2185,2563,2946,3324,3689,4032,4345,4621,4853,5036,5165,5238,5253,5209,5107,4951,4743,4488,4193,3864,3509,3136, + 2841,2460,2087,1732,1403,1108,853,645,488,387,343,358,431,560,743,975,1251,1564,1907,2272,2650,3033,3411,3776,4119,4432,4708,4940,5122,5252,5325,5339,5295,5194,5038,4829,4575,4280,3951,3596,3223, + 2896,2514,2142,1787,1458,1162,908,700,543,442,398,412,485,615,797,1030,1305,1618,1961,2326,2705,3087,3466,3830,4173,4487,4762,4994,5177,5307,5379,5394,5350,5249,5092,4884,4629,4334,4005,3650,3278, + 2918,2536,2164,1809,1480,1184,930,722,565,464,420,434,507,637,819,1052,1327,1640,1983,2348,2727,3109,3488,3852,4195,4508,4784,5016,5199,5329,5401,5416,5372,5271,5114,4906,4651,4356,4027,3672,3300, + 2907,2525,2153,1798,1469,1173,919,711,554,453,409,423,496,626,808,1041,1316,1629,1972,2337,2716,3098,3477,3841,4184,4497,4773,5005,5188,5318,5390,5405,5361,5260,5103,4895,4640,4345,4016,3661,3289, + 2863,2481,2109,1754,1425,1129,875,667,510,409,365,380,452,582,765,997,1272,1585,1929,2293,2672,3054,3433,3798,4141,4454,4729,4961,5144,5274,5347,5361,5317,5216,5059,4851,4597,4301,3972,3617,3245, + 2787,2405,2033,1678,1349,1053,799,591,434,333,289,303,376,506,689,921,1196,1509,1852,2217,2596,2978,3357,3721,4064,4378,4653,4885,5068,5198,5270,5285,5241,5140,4983,4775,4521,4225,3896,3541,3169, + 2680,2298,1925,1570,1241,946,691,483,327,225,181,196,269,398,581,813,1089,1402,1745,2110,2488,2871,3249,3614,3957,4270,4546,4778,4961,5090,5163,5178,5134,5032,4876,4668,4413,4118,3789,3434,3061, + 2542,2161,1788,1433,1104,809,554,346,190,88,44,59,132,261,444,676,952,1265,1608,1973,2351,2734,3112,3477,3820,4133,4409,4641,4824,4953,5026,5041,4997,4895,4739,4531,4276,3981,3652,3297,2924, + 2377,1996,1623,1268,939,644,389,181,24,-77,-121,-106,-33,96,279,511,787,1100,1443,1808,2186,2569,2947,3312,3655,3968,4244,4476,4658,4788,4861,4875,4831,4730,4573,4365,4111,3815,3486,3131,2759, + + -1482,-1864,-2236,-2591,-2920,-3216,-3470,-3678,-3835,-3936,-3980,-3966,-3893,-3763,-3581,-3349,-3073,-2760,-2417,-2052,-1674,-1291,-912,-548,-205,108,384,616,799,929,1001,1016,972,871,714,506,251,-44,-373,-728,-1101, + -1673,-2055,-2427,-2782,-3111,-3407,-3661,-3869,-4026,-4127,-4171,-4157,-4084,-3954,-3772,-3540,-3264,-2951,-2608,-2243,-1865,-1482,-1104,-739,-396,-83,193,425,608,737,810,825,781,680,523,315,60,-235,-564,-919,-1292, + -1838,-2220,-2593,-2948,-3277,-3572,-3827,-4035,-4191,-4293,-4337,-4322,-4249,-4120,-3937,-3705,-3429,-3116,-2773,-2408,-2030,-1647,-1269,-904,-561,-248,28,260,443,572,645,660,616,514,358,150,-105,-400,-729,-1084,-1457, + -1976,-2357,-2730,-3085,-3414,-3709,-3964,-4172,-4328,-4430,-4474,-4459,-4386,-4257,-4074,-3842,-3566,-3253,-2910,-2545,-2167,-1784,-1406,-1041,-698,-385,-109,123,306,435,508,523,479,377,221,13,-242,-537,-866,-1221,-1594, + -2083,-2465,-2837,-3192,-3521,-3817,-4071,-4279,-4436,-4537,-4581,-4566,-4494,-4364,-4181,-3949,-3674,-3361,-3018,-2653,-2274,-1892,-1513,-1148,-805,-492,-217,15,198,328,401,415,371,270,113,-95,-349,-645,-974,-1329,-1701, + -2159,-2541,-2913,-3268,-3597,-3893,-4147,-4355,-4512,-4613,-4657,-4643,-4570,-4440,-4257,-4025,-3750,-3437,-3094,-2729,-2350,-1968,-1589,-1225,-882,-568,-293,-61,122,252,324,339,295,194,37,-171,-425,-721,-1050,-1405,-1777, + -2203,-2585,-2957,-3312,-3641,-3936,-4191,-4399,-4556,-4657,-4701,-4686,-4614,-4484,-4301,-4069,-3794,-3480,-3137,-2773,-2394,-2012,-1633,-1268,-925,-612,-337,-104,78,208,281,295,251,150,-7,-215,-469,-765,-1094,-1449,-1821, + -2214,-2596,-2968,-3323,-3652,-3947,-4202,-4410,-4567,-4668,-4712,-4697,-4625,-4495,-4312,-4080,-3805,-3491,-3148,-2784,-2405,-2023,-1644,-1279,-936,-623,-348,-115,67,197,270,284,240,139,-18,-226,-480,-776,-1105,-1460,-1832, + -2192,-2574,-2946,-3301,-3630,-3926,-4180,-4388,-4545,-4646,-4690,-4675,-4603,-4473,-4290,-4058,-3783,-3469,-3126,-2762,-2383,-2001,-1622,-1257,-914,-601,-326,-94,89,219,292,306,262,161,4,-204,-458,-754,-1083,-1438,-1810, + -2137,-2519,-2892,-3247,-3576,-3871,-4125,-4334,-4490,-4592,-4635,-4621,-4548,-4419,-4236,-4004,-3728,-3415,-3072,-2707,-2329,-1946,-1568,-1203,-860,-547,-271,-39,144,273,346,361,317,216,59,-149,-404,-699,-1028,-1383,-1756, + -2051,-2432,-2805,-3160,-3489,-3784,-4039,-4247,-4403,-4505,-4549,-4534,-4461,-4332,-4149,-3917,-3641,-3328,-2985,-2620,-2242,-1859,-1481,-1116,-773,-460,-184,48,231,360,433,448,404,302,146,-62,-317,-612,-941,-1296,-1669, + -1933,-2315,-2687,-3042,-3371,-3667,-3921,-4129,-4286,-4387,-4431,-4417,-4344,-4214,-4032,-3799,-3524,-3211,-2868,-2503,-2124,-1742,-1363,-999,-656,-343,-67,165,348,478,550,565,521,420,263,55,-200,-495,-824,-1179,-1551, + -1786,-2168,-2541,-2896,-3225,-3520,-3775,-3983,-4139,-4241,-4285,-4270,-4197,-4068,-3885,-3653,-3377,-3064,-2721,-2356,-1978,-1595,-1217,-852,-509,-196,80,312,495,624,697,712,668,566,410,202,-53,-348,-677,-1032,-1405, + -1612,-1994,-2367,-2722,-3051,-3346,-3600,-3809,-3965,-4067,-4110,-4096,-4023,-3894,-3711,-3479,-3203,-2890,-2547,-2182,-1804,-1421,-1043,-678,-335,-22,254,486,669,798,871,886,842,741,584,376,121,-174,-503,-858,-1231, + -1413,-1795,-2167,-2522,-2851,-3147,-3401,-3609,-3766,-3867,-3911,-3897,-3824,-3694,-3512,-3280,-3004,-2691,-2348,-1983,-1604,-1222,-843,-479,-136,177,453,685,868,998,1070,1085,1041,940,783,575,320,25,-304,-659,-1031, + -1192,-1573,-1946,-2301,-2630,-2925,-3180,-3388,-3544,-3646,-3690,-3675,-3602,-3473,-3290,-3058,-2782,-2469,-2126,-1761,-1383,-1000,-622,-257,86,399,675,907,1090,1219,1292,1307,1263,1161,1005,797,542,247,-82,-437,-810, + -951,-1332,-1705,-2060,-2389,-2684,-2939,-3147,-3303,-3405,-3449,-3434,-3361,-3232,-3049,-2817,-2541,-2228,-1885,-1520,-1142,-759,-381,-16,327,640,916,1148,1331,1460,1533,1548,1504,1402,1246,1038,783,488,159,-196,-569, + -693,-1075,-1447,-1802,-2131,-2427,-2681,-2889,-3046,-3147,-3191,-3177,-3104,-2974,-2792,-2560,-2284,-1971,-1628,-1263,-885,-502,-124,241,584,897,1173,1405,1588,1717,1790,1805,1761,1660,1503,1295,1040,745,416,61,-312, + -423,-804,-1177,-1532,-1861,-2156,-2411,-2619,-2776,-2877,-2921,-2906,-2834,-2704,-2521,-2289,-2013,-1700,-1357,-993,-614,-231,147,512,855,1168,1444,1676,1858,1988,2061,2075,2031,1930,1773,1565,1311,1015,686,331,-41, + -143,-525,-898,-1253,-1582,-1877,-2131,-2340,-2496,-2598,-2641,-2627,-2554,-2424,-2242,-2010,-1734,-1421,-1078,-713,-335,48,426,791,1134,1447,1723,1955,2138,2267,2340,2355,2311,2210,2053,1845,1590,1295,966,611,238, + 142,-240,-612,-967,-1296,-1592,-1846,-2054,-2211,-2312,-2356,-2341,-2269,-2139,-1956,-1724,-1449,-1135,-792,-428,-49,333,712,1077,1420,1733,2008,2240,2423,2553,2626,2640,2596,2495,2338,2130,1876,1580,1251,896,524, + 429,48,-325,-680,-1009,-1304,-1559,-1767,-1924,-2025,-2069,-2054,-1981,-1852,-1669,-1437,-1161,-848,-505,-140,238,621,999,1364,1707,2020,2296,2528,2710,2840,2913,2927,2884,2782,2626,2417,2163,1868,1539,1184,811, + 715,333,-40,-395,-724,-1019,-1274,-1482,-1638,-1740,-1784,-1769,-1696,-1567,-1384,-1152,-876,-563,-220,145,523,906,1284,1649,1992,2305,2581,2813,2996,3125,3198,3213,3169,3067,2911,2703,2448,2153,1824,1469,1096, + 994,613,240,-115,-444,-739,-994,-1202,-1359,-1460,-1504,-1489,-1416,-1287,-1104,-872,-596,-283,60,425,803,1186,1564,1929,2272,2585,2861,3093,3275,3405,3478,3492,3448,3347,3190,2982,2728,2432,2103,1748,1376, + 1264,883,510,155,-174,-469,-724,-932,-1088,-1190,-1234,-1219,-1146,-1017,-834,-602,-326,-13,330,695,1073,1456,1834,2199,2542,2855,3131,3363,3546,3675,3748,3763,3719,3617,3461,3253,2998,2703,2374,2019,1646, + 1522,1140,767,412,83,-212,-466,-674,-831,-932,-976,-962,-889,-759,-577,-345,-69,244,587,952,1330,1713,2091,2456,2799,3112,3388,3620,3803,3932,4005,4020,3976,3875,3718,3510,3255,2960,2631,2276,1903, + 1763,1381,1009,654,325,29,-225,-433,-590,-691,-735,-721,-648,-518,-336,-104,172,485,828,1193,1571,1954,2332,2697,3040,3353,3629,3861,4044,4173,4246,4261,4217,4116,3959,3751,3496,3201,2872,2517,2144, + 1984,1603,1230,875,546,251,-4,-212,-368,-470,-514,-499,-426,-297,-114,118,394,707,1050,1415,1793,2176,2554,2919,3262,3575,3851,4083,4266,4395,4468,4483,4439,4337,4181,3973,3718,3423,3094,2739,2366, + 2184,1802,1429,1074,745,450,195,-13,-169,-271,-315,-300,-227,-98,85,317,593,906,1249,1614,1992,2375,2753,3118,3461,3774,4050,4282,4465,4594,4667,4682,4638,4536,4380,4172,3917,3622,3293,2938,2565, + 2358,1976,1603,1248,919,624,369,161,5,-97,-141,-126,-53,76,259,491,767,1080,1423,1788,2166,2549,2927,3292,3635,3948,4224,4456,4639,4768,4841,4856,4812,4710,4554,4346,4091,3796,3467,3112,2739, + 2504,2123,1750,1395,1066,771,516,308,152,50,6,21,94,223,406,638,914,1227,1570,1935,2313,2696,3074,3439,3782,4095,4371,4603,4786,4915,4988,5003,4959,4857,4701,4493,4238,3943,3614,3259,2886, + 2622,2240,1868,1513,1184,888,634,426,269,168,124,138,211,341,523,755,1031,1344,1687,2052,2430,2813,3192,3556,3899,4212,4488,4720,4903,5033,5105,5120,5076,4975,4818,4610,4355,4060,3731,3376,3003, + 2709,2327,1954,1599,1270,975,720,512,356,254,210,225,298,427,610,842,1118,1431,1774,2139,2517,2900,3278,3643,3986,4299,4575,4807,4990,5119,5192,5207,5163,5061,4905,4697,4442,4147,3818,3463,3090, + 2763,2382,2009,1654,1325,1030,775,567,410,309,265,280,353,482,665,897,1173,1486,1829,2194,2572,2955,3333,3698,4041,4354,4630,4862,5044,5174,5247,5261,5217,5116,4959,4751,4497,4201,3872,3517,3145, + 2785,2404,2031,1676,1347,1052,797,589,432,331,287,302,375,504,687,919,1195,1508,1851,2216,2594,2977,3355,3720,4063,4376,4652,4884,5066,5196,5269,5283,5239,5138,4981,4773,4519,4223,3894,3539,3167, + 2774,2393,2020,1665,1336,1041,786,578,421,320,276,291,364,493,676,908,1184,1497,1840,2205,2583,2966,3344,3709,4052,4365,4641,4873,5055,5185,5258,5272,5228,5127,4970,4762,4508,4212,3883,3528,3156, + 2730,2349,1976,1621,1292,997,742,534,377,276,232,247,320,449,632,864,1140,1453,1796,2161,2539,2922,3300,3665,4008,4321,4597,4829,5012,5141,5214,5229,5185,5083,4927,4719,4464,4169,3840,3485,3112, + 2654,2273,1900,1545,1216,921,666,458,301,200,156,171,244,373,556,788,1064,1377,1720,2085,2463,2846,3224,3589,3932,4245,4521,4753,4936,5065,5138,5152,5109,5007,4851,4642,4388,4093,3764,3409,3036, + 2547,2165,1793,1438,1109,813,559,351,194,93,49,63,136,266,448,681,956,1269,1612,1977,2356,2738,3117,3481,3824,4137,4413,4645,4828,4958,5030,5045,5001,4900,4743,4535,4280,3985,3656,3301,2929, + 2410,2028,1655,1300,971,676,421,213,57,-45,-88,-74,-1,128,311,543,819,1132,1475,1840,2218,2601,2979,3344,3687,4000,4276,4508,4691,4820,4893,4908,4864,4763,4606,4398,4143,3848,3519,3164,2791, + 2244,1863,1490,1135,806,511,256,48,-108,-210,-254,-239,-166,-37,146,378,654,967,1310,1675,2053,2436,2814,3179,3522,3835,4111,4343,4526,4655,4728,4743,4699,4597,4441,4233,3978,3683,3354,2999,2626, + + -1592,-1974,-2347,-2702,-3031,-3326,-3580,-3789,-3945,-4046,-4090,-4076,-4003,-3873,-3691,-3459,-3183,-2870,-2527,-2162,-1784,-1401,-1023,-658,-315,-2,274,506,689,818,891,906,862,761,604,396,141,-154,-483,-838,-1211, + -1783,-2165,-2538,-2893,-3222,-3517,-3772,-3980,-4136,-4238,-4281,-4267,-4194,-4065,-3882,-3650,-3374,-3061,-2718,-2353,-1975,-1592,-1214,-849,-506,-193,83,315,498,627,700,715,671,570,413,205,-50,-345,-674,-1029,-1402, + -1949,-2330,-2703,-3058,-3387,-3682,-3937,-4145,-4301,-4403,-4447,-4432,-4359,-4230,-4047,-3815,-3539,-3226,-2883,-2518,-2140,-1757,-1379,-1014,-671,-358,-82,150,333,462,535,550,506,404,248,40,-215,-510,-839,-1194,-1567, + -2086,-2467,-2840,-3195,-3524,-3819,-4074,-4282,-4439,-4540,-4584,-4569,-4496,-4367,-4184,-3952,-3676,-3363,-3020,-2655,-2277,-1894,-1516,-1151,-808,-495,-219,13,196,325,398,412,369,267,111,-97,-352,-647,-976,-1331,-1704, + -2193,-2575,-2947,-3302,-3631,-3927,-4181,-4389,-4546,-4647,-4691,-4677,-4604,-4474,-4291,-4059,-3784,-3471,-3128,-2763,-2384,-2002,-1623,-1259,-916,-602,-327,-95,88,218,290,305,261,160,3,-205,-459,-755,-1084,-1439,-1811, + -2269,-2651,-3023,-3378,-3707,-4003,-4257,-4465,-4622,-4723,-4767,-4753,-4680,-4550,-4368,-4136,-3860,-3547,-3204,-2839,-2461,-2078,-1700,-1335,-992,-679,-403,-171,12,141,214,229,185,84,-73,-281,-536,-831,-1160,-1515,-1888, + -2313,-2695,-3067,-3422,-3751,-4047,-4301,-4509,-4666,-4767,-4811,-4797,-4724,-4594,-4411,-4179,-3904,-3591,-3248,-2883,-2504,-2122,-1743,-1378,-1035,-722,-447,-215,-32,98,171,185,141,40,-117,-325,-579,-875,-1204,-1559,-1931, + -2324,-2706,-3078,-3433,-3762,-4058,-4312,-4520,-4677,-4778,-4822,-4808,-4735,-4605,-4422,-4190,-3915,-3602,-3259,-2894,-2515,-2133,-1754,-1389,-1046,-733,-458,-226,-43,87,160,174,130,29,-128,-336,-590,-886,-1215,-1570,-1942, + -2302,-2684,-3056,-3411,-3740,-4036,-4290,-4498,-4655,-4756,-4800,-4786,-4713,-4583,-4400,-4168,-3893,-3580,-3237,-2872,-2493,-2111,-1732,-1367,-1024,-711,-436,-204,-21,109,181,196,152,51,-106,-314,-568,-864,-1193,-1548,-1920, + -2247,-2629,-3002,-3357,-3686,-3981,-4236,-4444,-4600,-4702,-4746,-4731,-4658,-4529,-4346,-4114,-3838,-3525,-3182,-2817,-2439,-2056,-1678,-1313,-970,-657,-381,-149,34,163,236,251,207,106,-51,-259,-514,-809,-1138,-1493,-1866, + -2161,-2542,-2915,-3270,-3599,-3894,-4149,-4357,-4514,-4615,-4659,-4644,-4571,-4442,-4259,-4027,-3751,-3438,-3095,-2730,-2352,-1969,-1591,-1226,-883,-570,-294,-62,121,250,323,337,294,192,36,-172,-427,-722,-1051,-1406,-1779, + -2043,-2425,-2798,-3153,-3482,-3777,-4031,-4239,-4396,-4497,-4541,-4527,-4454,-4324,-4142,-3910,-3634,-3321,-2978,-2613,-2235,-1852,-1474,-1109,-766,-453,-177,55,238,367,440,455,411,310,153,-55,-310,-605,-934,-1289,-1662, + -1896,-2278,-2651,-3006,-3335,-3630,-3885,-4093,-4249,-4351,-4395,-4380,-4307,-4178,-3995,-3763,-3487,-3174,-2831,-2466,-2088,-1705,-1327,-962,-619,-306,-30,202,385,514,587,602,558,456,300,92,-163,-458,-787,-1142,-1515, + -1722,-2104,-2477,-2832,-3161,-3456,-3711,-3919,-4075,-4177,-4221,-4206,-4133,-4004,-3821,-3589,-3313,-3000,-2657,-2292,-1914,-1531,-1153,-788,-445,-132,144,376,559,688,761,776,732,630,474,266,11,-284,-613,-968,-1341, + -1523,-1905,-2278,-2633,-2962,-3257,-3511,-3720,-3876,-3977,-4021,-4007,-3934,-3804,-3622,-3390,-3114,-2801,-2458,-2093,-1715,-1332,-954,-589,-246,67,343,575,758,887,960,975,931,830,673,465,210,-85,-414,-769,-1142, + -1302,-1683,-2056,-2411,-2740,-3035,-3290,-3498,-3655,-3756,-3800,-3785,-3712,-3583,-3400,-3168,-2892,-2579,-2236,-1871,-1493,-1110,-732,-367,-24,289,565,797,980,1109,1182,1197,1153,1051,895,687,432,137,-192,-547,-920, + -1061,-1442,-1815,-2170,-2499,-2794,-3049,-3257,-3413,-3515,-3559,-3544,-3471,-3342,-3159,-2927,-2651,-2338,-1995,-1630,-1252,-869,-491,-126,217,530,806,1038,1221,1350,1423,1438,1394,1292,1136,928,673,378,49,-306,-679, + -803,-1185,-1558,-1913,-2242,-2537,-2791,-3000,-3156,-3258,-3301,-3287,-3214,-3085,-2902,-2670,-2394,-2081,-1738,-1373,-995,-612,-234,131,474,787,1063,1295,1478,1607,1680,1695,1651,1550,1393,1185,930,635,306,-49,-422, + -533,-915,-1287,-1642,-1971,-2267,-2521,-2729,-2886,-2987,-3031,-3016,-2944,-2814,-2631,-2399,-2124,-1811,-1468,-1103,-724,-342,37,402,745,1058,1333,1565,1748,1878,1951,1965,1921,1820,1663,1455,1201,905,576,221,-151, + -253,-635,-1008,-1363,-1692,-1987,-2242,-2450,-2606,-2708,-2752,-2737,-2664,-2535,-2352,-2120,-1844,-1531,-1188,-823,-445,-62,316,681,1024,1337,1613,1845,2028,2157,2230,2245,2201,2100,1943,1735,1480,1185,856,501,128, + 32,-350,-722,-1077,-1406,-1702,-1956,-2164,-2321,-2422,-2466,-2452,-2379,-2249,-2066,-1834,-1559,-1246,-903,-538,-159,223,602,966,1309,1623,1898,2130,2313,2443,2515,2530,2486,2385,2228,2020,1766,1470,1141,786,414, + 319,-62,-435,-790,-1119,-1414,-1669,-1877,-2034,-2135,-2179,-2164,-2092,-1962,-1779,-1547,-1271,-958,-615,-251,128,511,889,1254,1597,1910,2186,2418,2600,2730,2803,2817,2773,2672,2515,2307,2053,1757,1428,1073,701, + 604,223,-150,-505,-834,-1129,-1384,-1592,-1748,-1850,-1894,-1879,-1806,-1677,-1494,-1262,-986,-673,-330,35,413,796,1174,1539,1882,2195,2471,2703,2886,3015,3088,3103,3059,2957,2801,2593,2338,2043,1714,1359,986, + 884,502,130,-225,-554,-850,-1104,-1312,-1469,-1570,-1614,-1599,-1527,-1397,-1214,-982,-707,-394,-50,314,693,1075,1454,1819,2162,2475,2750,2982,3165,3295,3368,3382,3338,3237,3080,2872,2618,2322,1993,1638,1266, + 1154,773,400,45,-284,-579,-834,-1042,-1199,-1300,-1344,-1329,-1256,-1127,-944,-712,-436,-123,220,585,963,1346,1724,2089,2432,2745,3021,3253,3436,3565,3638,3652,3609,3507,3351,3143,2888,2593,2264,1909,1536, + 1412,1030,657,302,-27,-322,-577,-785,-941,-1043,-1086,-1072,-999,-870,-687,-455,-179,134,477,842,1220,1603,1981,2346,2689,3002,3278,3510,3693,3822,3895,3910,3866,3765,3608,3400,3145,2850,2521,2166,1793, + 1653,1271,898,543,214,-81,-335,-544,-700,-802,-845,-831,-758,-629,-446,-214,62,375,718,1083,1461,1844,2222,2587,2930,3243,3519,3751,3934,4063,4136,4151,4107,4006,3849,3641,3386,3091,2762,2407,2034, + 1874,1493,1120,765,436,141,-114,-322,-479,-580,-624,-609,-536,-407,-224,8,284,597,940,1305,1683,2066,2444,2809,3152,3465,3741,3973,4156,4285,4358,4372,4329,4227,4071,3863,3608,3313,2984,2629,2256, + 2073,1692,1319,964,635,340,85,-123,-279,-381,-425,-410,-337,-208,-25,207,483,796,1139,1504,1882,2265,2643,3008,3351,3664,3940,4172,4355,4484,4557,4572,4528,4426,4270,4062,3807,3512,3183,2828,2455, + 2248,1866,1493,1138,809,514,259,51,-105,-207,-251,-236,-163,-34,149,381,657,970,1313,1678,2056,2439,2817,3182,3525,3838,4114,4346,4529,4658,4731,4746,4702,4600,4444,4236,3981,3686,3357,3002,2629, + 2394,2013,1640,1285,956,661,406,198,41,-60,-104,-89,-16,113,296,528,804,1117,1460,1825,2203,2586,2964,3329,3672,3985,4261,4493,4676,4805,4878,4892,4849,4747,4591,4383,4128,3833,3504,3149,2776, + 2512,2130,1757,1402,1073,778,524,315,159,57,14,28,101,231,413,645,921,1234,1577,1942,2320,2703,3081,3446,3789,4102,4378,4610,4793,4922,4995,5010,4966,4865,4708,4500,4245,3950,3621,3266,2893, + 2598,2217,1844,1489,1160,865,610,402,246,144,100,115,188,317,500,732,1008,1321,1664,2029,2407,2790,3168,3533,3876,4189,4465,4697,4880,5009,5082,5097,5053,4951,4795,4587,4332,4037,3708,3353,2980, + 2653,2271,1899,1544,1215,920,665,457,300,199,155,170,242,372,555,787,1062,1376,1719,2083,2462,2844,3223,3588,3931,4244,4519,4752,4934,5064,5137,5151,5107,5006,4849,4641,4387,4091,3762,3407,3035, + 2675,2293,1921,1566,1237,941,687,479,322,221,177,192,264,394,577,809,1084,1398,1741,2105,2484,2866,3245,3610,3953,4266,4541,4773,4956,5086,5159,5173,5129,5028,4871,4663,4409,4113,3784,3429,3057, + 2664,2282,1910,1555,1226,930,676,468,311,210,166,181,253,383,566,798,1073,1387,1730,2094,2473,2855,3234,3599,3942,4255,4530,4762,4945,5075,5148,5162,5118,5017,4860,4652,4398,4102,3773,3418,3046, + 2620,2239,1866,1511,1182,887,632,424,267,166,122,137,210,339,522,754,1030,1343,1686,2051,2429,2812,3190,3555,3898,4211,4487,4719,4902,5031,5104,5118,5075,4973,4817,4608,4354,4059,3730,3375,3002, + 2544,2163,1790,1435,1106,811,556,348,191,90,46,61,134,263,446,678,954,1267,1610,1975,2353,2736,3114,3479,3822,4135,4411,4643,4825,4955,5028,5042,4998,4897,4740,4532,4278,3982,3653,3298,2926, + 2437,2055,1682,1327,998,703,449,241,84,-17,-61,-47,26,156,338,570,846,1159,1502,1867,2245,2628,3006,3371,3714,4027,4303,4535,4718,4847,4920,4935,4891,4790,4633,4425,4170,3875,3546,3191,2818, + 2300,1918,1545,1190,861,566,311,103,-53,-155,-199,-184,-111,18,201,433,709,1022,1365,1730,2108,2491,2869,3234,3577,3890,4166,4398,4581,4710,4783,4798,4754,4652,4496,4288,4033,3738,3409,3054,2681, + 2134,1753,1380,1025,696,401,146,-62,-218,-320,-364,-349,-276,-147,36,268,544,857,1200,1565,1943,2326,2704,3069,3412,3725,4001,4233,4416,4545,4618,4633,4589,4487,4331,4123,3868,3573,3244,2889,2516, + + -1677,-2059,-2431,-2786,-3115,-3411,-3665,-3873,-4030,-4131,-4175,-4161,-4088,-3958,-3776,-3544,-3268,-2955,-2612,-2247,-1869,-1486,-1108,-743,-400,-87,189,421,604,733,806,821,777,676,519,311,56,-239,-568,-923,-1296, + -1868,-2250,-2623,-2978,-3307,-3602,-3856,-4064,-4221,-4322,-4366,-4352,-4279,-4149,-3967,-3735,-3459,-3146,-2803,-2438,-2060,-1677,-1299,-934,-591,-278,-2,230,413,542,615,630,586,485,328,120,-135,-430,-759,-1114,-1487, + -2033,-2415,-2788,-3143,-3472,-3767,-4022,-4230,-4386,-4488,-4532,-4517,-4444,-4315,-4132,-3900,-3624,-3311,-2968,-2603,-2225,-1842,-1464,-1099,-756,-443,-167,65,248,377,450,465,421,319,163,-45,-300,-595,-924,-1279,-1652, + -2171,-2552,-2925,-3280,-3609,-3904,-4159,-4367,-4523,-4625,-4669,-4654,-4581,-4452,-4269,-4037,-3761,-3448,-3105,-2740,-2362,-1979,-1601,-1236,-893,-580,-304,-72,111,240,313,328,284,182,26,-182,-437,-732,-1061,-1416,-1789, + -2278,-2660,-3032,-3387,-3716,-4012,-4266,-4474,-4631,-4732,-4776,-4761,-4689,-4559,-4376,-4144,-3869,-3556,-3213,-2848,-2469,-2087,-1708,-1343,-1000,-687,-412,-180,3,133,206,220,176,75,-82,-290,-544,-840,-1169,-1524,-1896, + -2354,-2736,-3108,-3463,-3792,-4088,-4342,-4550,-4707,-4808,-4852,-4838,-4765,-4635,-4452,-4220,-3945,-3632,-3289,-2924,-2545,-2163,-1784,-1420,-1077,-763,-488,-256,-73,57,129,144,100,-1,-158,-366,-621,-916,-1245,-1600,-1972, + -2398,-2780,-3152,-3507,-3836,-4132,-4386,-4594,-4751,-4852,-4896,-4881,-4809,-4679,-4496,-4264,-3989,-3675,-3332,-2968,-2589,-2207,-1828,-1463,-1120,-807,-532,-300,-117,13,86,100,56,-45,-202,-410,-664,-960,-1289,-1644,-2016, + -2409,-2791,-3163,-3518,-3847,-4143,-4397,-4605,-4762,-4863,-4907,-4892,-4820,-4690,-4507,-4275,-4000,-3686,-3343,-2979,-2600,-2218,-1839,-1474,-1131,-818,-543,-311,-128,2,75,89,45,-56,-213,-421,-675,-971,-1300,-1655,-2027, + -2387,-2769,-3141,-3496,-3825,-4121,-4375,-4583,-4740,-4841,-4885,-4870,-4798,-4668,-4485,-4253,-3978,-3664,-3321,-2957,-2578,-2196,-1817,-1452,-1109,-796,-521,-289,-106,24,97,111,67,-34,-191,-399,-653,-949,-1278,-1633,-2005, + -2332,-2714,-3087,-3442,-3771,-4066,-4320,-4529,-4685,-4787,-4830,-4816,-4743,-4614,-4431,-4199,-3923,-3610,-3267,-2902,-2524,-2141,-1763,-1398,-1055,-742,-466,-234,-51,78,151,166,122,21,-136,-344,-599,-894,-1223,-1578,-1951, + -2246,-2627,-3000,-3355,-3684,-3979,-4234,-4442,-4598,-4700,-4744,-4729,-4656,-4527,-4344,-4112,-3836,-3523,-3180,-2815,-2437,-2054,-1676,-1311,-968,-655,-379,-147,36,165,238,253,209,107,-49,-257,-512,-807,-1136,-1491,-1864, + -2128,-2510,-2882,-3237,-3566,-3862,-4116,-4324,-4481,-4582,-4626,-4612,-4539,-4409,-4227,-3995,-3719,-3406,-3063,-2698,-2320,-1937,-1558,-1194,-851,-538,-262,-30,153,283,355,370,326,225,68,-140,-395,-690,-1019,-1374,-1747, + -1981,-2363,-2736,-3091,-3420,-3715,-3970,-4178,-4334,-4436,-4480,-4465,-4392,-4263,-4080,-3848,-3572,-3259,-2916,-2551,-2173,-1790,-1412,-1047,-704,-391,-115,117,300,429,502,517,473,371,215,7,-248,-543,-872,-1227,-1600, + -1807,-2189,-2562,-2917,-3246,-3541,-3796,-4004,-4160,-4262,-4305,-4291,-4218,-4089,-3906,-3674,-3398,-3085,-2742,-2377,-1999,-1616,-1238,-873,-530,-217,59,291,474,603,676,691,647,546,389,181,-74,-369,-698,-1053,-1426, + -1608,-1990,-2362,-2717,-3046,-3342,-3596,-3804,-3961,-4062,-4106,-4092,-4019,-3889,-3707,-3475,-3199,-2886,-2543,-2178,-1800,-1417,-1039,-674,-331,-18,258,490,673,802,875,890,846,745,588,380,125,-170,-499,-854,-1227, + -1387,-1768,-2141,-2496,-2825,-3120,-3375,-3583,-3739,-3841,-3885,-3870,-3797,-3668,-3485,-3253,-2977,-2664,-2321,-1956,-1578,-1195,-817,-452,-109,204,480,712,895,1024,1097,1112,1068,966,810,602,347,52,-277,-632,-1005, + -1146,-1527,-1900,-2255,-2584,-2879,-3134,-3342,-3498,-3600,-3644,-3629,-3556,-3427,-3244,-3012,-2736,-2423,-2080,-1715,-1337,-954,-576,-211,132,445,721,953,1136,1265,1338,1353,1309,1207,1051,843,588,293,-36,-391,-764, + -888,-1270,-1642,-1997,-2326,-2622,-2876,-3084,-3241,-3342,-3386,-3372,-3299,-3169,-2987,-2755,-2479,-2166,-1823,-1458,-1080,-697,-319,46,389,702,978,1210,1393,1522,1595,1610,1566,1465,1308,1100,845,550,221,-134,-507, + -618,-1000,-1372,-1727,-2056,-2351,-2606,-2814,-2971,-3072,-3116,-3101,-3029,-2899,-2716,-2484,-2208,-1895,-1552,-1188,-809,-427,-48,317,660,973,1248,1481,1663,1793,1866,1880,1836,1735,1578,1370,1116,820,491,136,-236, + -338,-720,-1093,-1448,-1777,-2072,-2326,-2535,-2691,-2793,-2836,-2822,-2749,-2620,-2437,-2205,-1929,-1616,-1273,-908,-530,-147,231,596,939,1252,1528,1760,1943,2072,2145,2160,2116,2015,1858,1650,1395,1100,771,416,43, + -53,-435,-807,-1162,-1491,-1787,-2041,-2249,-2406,-2507,-2551,-2536,-2464,-2334,-2151,-1919,-1644,-1331,-988,-623,-244,138,517,882,1225,1538,1813,2045,2228,2358,2431,2445,2401,2300,2143,1935,1681,1385,1056,701,329, + 234,-147,-520,-875,-1204,-1499,-1754,-1962,-2119,-2220,-2264,-2249,-2176,-2047,-1864,-1632,-1356,-1043,-700,-335,43,426,804,1169,1512,1825,2101,2333,2515,2645,2718,2732,2688,2587,2430,2222,1968,1673,1344,989,616, + 520,138,-235,-590,-919,-1214,-1469,-1677,-1833,-1935,-1979,-1964,-1891,-1762,-1579,-1347,-1071,-758,-415,-50,328,711,1089,1454,1797,2110,2386,2618,2801,2930,3003,3018,2974,2872,2716,2508,2253,1958,1629,1274,901, + 799,418,45,-310,-639,-934,-1189,-1397,-1554,-1655,-1699,-1684,-1612,-1482,-1299,-1067,-791,-478,-135,229,608,991,1369,1734,2077,2390,2666,2898,3080,3210,3283,3297,3253,3152,2995,2787,2533,2237,1908,1553,1181, + 1069,688,315,-40,-369,-664,-919,-1127,-1283,-1385,-1429,-1414,-1341,-1212,-1029,-797,-521,-208,135,500,878,1261,1639,2004,2347,2660,2936,3168,3351,3480,3553,3568,3524,3422,3266,3058,2803,2508,2179,1824,1451, + 1327,945,572,217,-112,-407,-661,-870,-1026,-1127,-1171,-1157,-1084,-954,-772,-540,-264,49,392,757,1135,1518,1896,2261,2604,2917,3193,3425,3608,3737,3810,3825,3781,3680,3523,3315,3060,2765,2436,2081,1708, + 1568,1186,814,459,130,-166,-420,-628,-785,-886,-930,-916,-843,-713,-531,-299,-23,290,633,998,1376,1759,2137,2502,2845,3158,3434,3666,3849,3978,4051,4066,4022,3921,3764,3556,3301,3006,2677,2322,1949, + 1789,1408,1035,680,351,56,-199,-407,-563,-665,-709,-694,-621,-492,-309,-77,199,512,855,1220,1598,1981,2359,2724,3067,3380,3656,3888,4071,4200,4273,4288,4244,4142,3986,3778,3523,3228,2899,2544,2171, + 1989,1607,1234,879,550,255,0,-208,-364,-466,-510,-495,-422,-293,-110,122,398,711,1054,1419,1797,2180,2558,2923,3266,3579,3855,4087,4270,4399,4472,4487,4443,4341,4185,3977,3722,3427,3098,2743,2370, + 2163,1781,1408,1053,724,429,174,-34,-190,-292,-336,-321,-248,-119,64,296,572,885,1228,1593,1971,2354,2732,3097,3440,3753,4029,4261,4444,4573,4646,4661,4617,4515,4359,4151,3896,3601,3272,2917,2544, + 2309,1928,1555,1200,871,576,321,113,-43,-145,-189,-174,-101,28,211,443,719,1032,1375,1740,2118,2501,2879,3244,3587,3900,4176,4408,4591,4720,4793,4808,4764,4662,4506,4298,4043,3748,3419,3064,2691, + 2427,2045,1673,1318,989,693,439,231,74,-27,-71,-57,16,146,328,560,836,1149,1492,1857,2235,2618,2996,3361,3704,4017,4293,4525,4708,4837,4910,4925,4881,4780,4623,4415,4160,3865,3536,3181,2808, + 2514,2132,1759,1404,1075,780,525,317,161,59,15,30,103,232,415,647,923,1236,1579,1944,2322,2705,3083,3448,3791,4104,4380,4612,4795,4924,4997,5012,4968,4866,4710,4502,4247,3952,3623,3268,2895, + 2568,2187,1814,1459,1130,835,580,372,215,114,70,85,158,287,470,702,978,1291,1634,1999,2377,2760,3138,3503,3846,4159,4435,4667,4849,4979,5052,5066,5022,4921,4764,4556,4302,4006,3677,3322,2950, + 2590,2209,1836,1481,1152,857,602,394,237,136,92,107,180,309,492,724,1000,1313,1656,2021,2399,2782,3160,3525,3868,4181,4457,4689,4871,5001,5074,5088,5044,4943,4786,4578,4324,4028,3699,3344,2972, + 2579,2198,1825,1470,1141,846,591,383,226,125,81,96,169,298,481,713,989,1302,1645,2010,2388,2771,3149,3514,3857,4170,4446,4678,4860,4990,5063,5077,5033,4932,4775,4567,4313,4017,3688,3333,2961, + 2535,2154,1781,1426,1097,802,547,339,182,81,37,52,125,254,437,669,945,1258,1601,1966,2344,2727,3105,3470,3813,4126,4402,4634,4817,4946,5019,5033,4990,4888,4732,4524,4269,3974,3645,3290,2917, + 2459,2078,1705,1350,1021,726,471,263,106,5,-39,-24,49,178,361,593,869,1182,1525,1890,2268,2651,3029,3394,3737,4050,4326,4558,4740,4870,4943,4957,4913,4812,4656,4447,4193,3898,3569,3214,2841, + 2352,1970,1598,1243,914,618,364,156,-1,-102,-146,-132,-59,71,253,485,761,1074,1417,1782,2161,2543,2922,3286,3629,3942,4218,4450,4633,4763,4835,4850,4806,4705,4548,4340,4085,3790,3461,3106,2733, + 2215,1833,1460,1105,776,481,226,18,-138,-240,-283,-269,-196,-67,116,348,624,937,1280,1645,2023,2406,2784,3149,3492,3805,4081,4313,4496,4625,4698,4713,4669,4568,4411,4203,3948,3653,3324,2969,2596, + 2049,1668,1295,940,611,316,61,-147,-303,-405,-449,-434,-361,-232,-49,183,459,772,1115,1480,1858,2241,2619,2984,3327,3640,3916,4148,4331,4460,4533,4548,4504,4402,4246,4038,3783,3488,3159,2804,2431, + + -1735,-2117,-2489,-2844,-3173,-3468,-3723,-3931,-4088,-4189,-4233,-4218,-4146,-4016,-3833,-3601,-3325,-3012,-2669,-2305,-1926,-1544,-1165,-800,-457,-144,131,364,546,676,749,763,719,618,461,253,-1,-297,-626,-981,-1353, + -1926,-2308,-2680,-3035,-3364,-3660,-3914,-4122,-4279,-4380,-4424,-4409,-4337,-4207,-4024,-3792,-3517,-3204,-2860,-2496,-2117,-1735,-1356,-991,-648,-335,-60,172,355,485,558,572,528,427,270,62,-192,-488,-817,-1172,-1544, + -2091,-2473,-2845,-3200,-3529,-3825,-4079,-4287,-4444,-4545,-4589,-4575,-4502,-4372,-4190,-3958,-3682,-3369,-3026,-2661,-2283,-1900,-1522,-1157,-814,-501,-225,7,190,319,392,407,363,262,105,-103,-358,-653,-982,-1337,-1710, + -2228,-2610,-2983,-3338,-3667,-3962,-4217,-4425,-4581,-4683,-4727,-4712,-4639,-4510,-4327,-4095,-3819,-3506,-3163,-2798,-2420,-2037,-1659,-1294,-951,-638,-362,-130,53,182,255,270,226,124,-32,-240,-495,-790,-1119,-1474,-1847, + -2336,-2717,-3090,-3445,-3774,-4069,-4324,-4532,-4689,-4790,-4834,-4819,-4746,-4617,-4434,-4202,-3926,-3613,-3270,-2905,-2527,-2144,-1766,-1401,-1058,-745,-469,-237,-54,75,148,162,119,17,-139,-347,-602,-897,-1226,-1581,-1954, + -2412,-2793,-3166,-3521,-3850,-4145,-4400,-4608,-4765,-4866,-4910,-4895,-4822,-4693,-4510,-4278,-4002,-3689,-3346,-2981,-2603,-2220,-1842,-1477,-1134,-821,-545,-313,-131,-1,72,86,42,-59,-216,-424,-678,-974,-1303,-1658,-2030, + -2456,-2837,-3210,-3565,-3894,-4189,-4444,-4652,-4809,-4910,-4954,-4939,-4866,-4737,-4554,-4322,-4046,-3733,-3390,-3025,-2647,-2264,-1886,-1521,-1178,-865,-589,-357,-174,-45,28,43,-1,-103,-259,-467,-722,-1017,-1346,-1701,-2074, + -2467,-2848,-3221,-3576,-3905,-4200,-4455,-4663,-4820,-4921,-4965,-4950,-4877,-4748,-4565,-4333,-4057,-3744,-3401,-3036,-2658,-2275,-1897,-1532,-1189,-876,-600,-368,-185,-56,17,32,-12,-114,-270,-478,-733,-1028,-1357,-1712,-2085, + -2445,-2826,-3199,-3554,-3883,-4178,-4433,-4641,-4798,-4899,-4943,-4928,-4855,-4726,-4543,-4311,-4035,-3722,-3379,-3014,-2636,-2253,-1875,-1510,-1167,-854,-578,-346,-163,-34,39,53,10,-92,-248,-456,-711,-1006,-1335,-1690,-2063, + -2390,-2772,-3144,-3499,-3828,-4124,-4378,-4586,-4743,-4844,-4888,-4874,-4801,-4671,-4488,-4256,-3981,-3668,-3325,-2960,-2581,-2199,-1820,-1455,-1112,-799,-524,-292,-109,21,94,108,64,-37,-194,-402,-656,-952,-1281,-1636,-2008, + -2303,-2685,-3058,-3413,-3742,-4037,-4292,-4500,-4656,-4758,-4802,-4787,-4714,-4585,-4402,-4170,-3894,-3581,-3238,-2873,-2495,-2112,-1734,-1369,-1026,-713,-437,-205,-22,107,180,195,151,49,-107,-315,-570,-865,-1194,-1549,-1922, + -2186,-2567,-2940,-3295,-3624,-3919,-4174,-4382,-4539,-4640,-4684,-4669,-4597,-4467,-4284,-4052,-3776,-3463,-3120,-2756,-2377,-1995,-1616,-1251,-908,-595,-319,-87,95,225,298,312,268,167,10,-198,-452,-748,-1077,-1432,-1804, + -2039,-2421,-2793,-3148,-3477,-3773,-4027,-4235,-4392,-4493,-4537,-4523,-4450,-4320,-4138,-3906,-3630,-3317,-2974,-2609,-2230,-1848,-1469,-1105,-762,-449,-173,59,242,372,444,459,415,314,157,-51,-306,-601,-930,-1285,-1657, + -1865,-2247,-2619,-2974,-3303,-3599,-3853,-4061,-4218,-4319,-4363,-4349,-4276,-4146,-3963,-3731,-3456,-3143,-2800,-2435,-2056,-1674,-1295,-930,-587,-274,1,233,416,546,618,633,589,488,331,123,-131,-427,-756,-1111,-1483, + -1666,-2048,-2420,-2775,-3104,-3399,-3654,-3862,-4019,-4120,-4164,-4149,-4077,-3947,-3764,-3532,-3256,-2943,-2600,-2236,-1857,-1475,-1096,-731,-388,-75,201,433,615,745,818,832,788,687,530,322,68,-228,-557,-912,-1284, + -1444,-1826,-2199,-2554,-2883,-3178,-3433,-3641,-3797,-3899,-3942,-3928,-3855,-3726,-3543,-3311,-3035,-2722,-2379,-2014,-1636,-1253,-875,-510,-167,146,422,654,837,966,1039,1054,1010,909,752,544,289,-6,-335,-690,-1063, + -1203,-1585,-1958,-2313,-2642,-2937,-3192,-3400,-3556,-3658,-3701,-3687,-3614,-3485,-3302,-3070,-2794,-2481,-2138,-1773,-1395,-1012,-634,-269,74,387,663,895,1078,1207,1280,1295,1251,1150,993,785,530,235,-94,-449,-822, + -946,-1328,-1700,-2055,-2384,-2679,-2934,-3142,-3299,-3400,-3444,-3429,-3357,-3227,-3044,-2812,-2537,-2223,-1880,-1516,-1137,-755,-376,-11,332,645,920,1153,1335,1465,1538,1552,1508,1407,1250,1042,788,492,163,-192,-564, + -676,-1057,-1430,-1785,-2114,-2409,-2664,-2872,-3028,-3130,-3174,-3159,-3086,-2957,-2774,-2542,-2266,-1953,-1610,-1245,-867,-484,-106,259,602,915,1191,1423,1606,1735,1808,1823,1779,1677,1521,1313,1058,763,434,79,-294, + -396,-778,-1150,-1505,-1834,-2130,-2384,-2592,-2749,-2850,-2894,-2880,-2807,-2677,-2494,-2262,-1987,-1674,-1331,-966,-587,-205,174,539,882,1195,1470,1702,1885,2015,2088,2102,2058,1957,1800,1592,1338,1042,713,358,-14, + -111,-492,-865,-1220,-1549,-1844,-2099,-2307,-2464,-2565,-2609,-2594,-2521,-2392,-2209,-1977,-1701,-1388,-1045,-680,-302,81,459,824,1167,1480,1756,1988,2171,2300,2373,2387,2344,2242,2086,1878,1623,1328,999,644,271, + 176,-205,-578,-933,-1262,-1557,-1812,-2020,-2176,-2278,-2322,-2307,-2234,-2105,-1922,-1690,-1414,-1101,-758,-393,-15,368,746,1111,1454,1767,2043,2275,2458,2587,2660,2675,2631,2529,2373,2165,1910,1615,1286,931,558, + 462,80,-293,-648,-977,-1272,-1526,-1735,-1891,-1993,-2036,-2022,-1949,-1819,-1637,-1405,-1129,-816,-473,-108,270,653,1031,1396,1739,2052,2328,2560,2743,2872,2945,2960,2916,2815,2658,2450,2195,1900,1571,1216,843, + 741,360,-13,-368,-697,-992,-1247,-1455,-1611,-1713,-1757,-1742,-1669,-1540,-1357,-1125,-849,-536,-193,172,550,933,1311,1676,2019,2332,2608,2840,3023,3152,3225,3240,3196,3094,2938,2730,2475,2180,1851,1496,1123, + 1012,630,257,-98,-427,-722,-977,-1185,-1341,-1443,-1486,-1472,-1399,-1270,-1087,-855,-579,-266,77,442,820,1203,1581,1946,2289,2602,2878,3110,3293,3422,3495,3510,3466,3365,3208,3000,2745,2450,2121,1766,1393, + 1269,887,515,160,-169,-465,-719,-927,-1084,-1185,-1229,-1214,-1142,-1012,-829,-597,-322,-9,334,699,1078,1460,1839,2204,2547,2860,3135,3367,3550,3680,3753,3767,3723,3622,3465,3257,3003,2707,2378,2023,1651, + 1510,1128,756,401,72,-223,-478,-686,-843,-944,-988,-973,-901,-771,-588,-356,-81,233,576,940,1319,1701,2080,2445,2788,3101,3376,3608,3791,3921,3994,4008,3964,3863,3706,3498,3244,2948,2619,2264,1892, + 1732,1350,977,622,293,-2,-257,-465,-621,-723,-767,-752,-679,-550,-367,-135,141,454,797,1162,1540,1923,2301,2666,3009,3322,3598,3830,4013,4142,4215,4230,4186,4084,3928,3720,3465,3170,2841,2486,2113, + 1931,1549,1176,821,492,197,-57,-265,-422,-523,-567,-553,-480,-350,-168,64,340,653,996,1361,1739,2122,2500,2865,3208,3521,3797,4029,4212,4341,4414,4429,4385,4284,4127,3919,3664,3369,3040,2685,2312, + 2105,1723,1351,996,667,371,117,-91,-248,-349,-393,-379,-306,-176,6,238,514,827,1170,1535,1914,2296,2675,3039,3382,3695,3971,4203,4386,4516,4588,4603,4559,4458,4301,4093,3838,3543,3214,2859,2487, + 2252,1870,1497,1142,813,518,263,55,-101,-203,-247,-232,-159,-30,153,385,661,974,1317,1682,2060,2443,2821,3186,3529,3842,4118,4350,4533,4662,4735,4750,4706,4604,4448,4240,3985,3690,3361,3006,2633, + 2369,1987,1615,1260,931,636,381,173,16,-85,-129,-114,-42,88,271,503,779,1092,1435,1799,2178,2560,2939,3304,3647,3960,4235,4468,4650,4780,4853,4867,4823,4722,4565,4357,4103,3807,3478,3123,2751, + 2456,2074,1701,1346,1017,722,468,259,103,1,-42,-28,45,175,357,589,865,1178,1521,1886,2264,2647,3025,3390,3733,4046,4322,4554,4737,4866,4939,4954,4910,4809,4652,4444,4189,3894,3565,3210,2837, + 2510,2129,1756,1401,1072,777,522,314,158,56,12,27,100,229,412,644,920,1233,1576,1941,2319,2702,3080,3445,3788,4101,4377,4609,4792,4921,4994,5009,4965,4863,4707,4499,4244,3949,3620,3265,2892, + 2532,2151,1778,1423,1094,799,544,336,180,78,34,49,122,251,434,666,942,1255,1598,1963,2341,2724,3102,3467,3810,4123,4399,4631,4814,4943,5016,5031,4987,4885,4729,4521,4266,3971,3642,3287,2914, + 2521,2140,1767,1412,1083,788,533,325,169,67,23,38,111,240,423,655,931,1244,1587,1952,2330,2713,3091,3456,3799,4112,4388,4620,4803,4932,5005,5020,4976,4874,4718,4510,4255,3960,3631,3276,2903, + 2478,2096,1723,1368,1039,744,489,281,125,23,-21,-6,67,196,379,611,887,1200,1543,1908,2286,2669,3047,3412,3755,4068,4344,4576,4759,4888,4961,4976,4932,4830,4674,4466,4211,3916,3587,3232,2859, + 2401,2020,1647,1292,963,668,413,205,49,-53,-97,-82,-9,120,303,535,811,1124,1467,1832,2210,2593,2971,3336,3679,3992,4268,4500,4683,4812,4885,4900,4856,4754,4598,4390,4135,3840,3511,3156,2783, + 2294,1913,1540,1185,856,561,306,98,-59,-160,-204,-189,-117,13,196,428,704,1017,1360,1724,2103,2486,2864,3229,3572,3885,4161,4393,4575,4705,4778,4792,4748,4647,4490,4282,4028,3732,3403,3048,2676, + 2157,1775,1403,1048,719,423,169,-39,-196,-297,-341,-327,-254,-124,59,291,566,879,1222,1587,1966,2348,2727,3091,3434,3748,4023,4255,4438,4568,4640,4655,4611,4510,4353,4145,3891,3595,3266,2911,2539, + 1992,1610,1237,882,553,258,3,-205,-361,-463,-506,-492,-419,-290,-107,125,401,714,1057,1422,1800,2183,2561,2926,3269,3582,3858,4090,4273,4402,4475,4490,4446,4345,4188,3980,3725,3430,3101,2746,2373, + + -1764,-2146,-2518,-2873,-3202,-3498,-3752,-3960,-4117,-4218,-4262,-4248,-4175,-4045,-3863,-3630,-3355,-3042,-2699,-2334,-1955,-1573,-1194,-830,-487,-173,102,334,517,647,719,734,690,589,432,224,-31,-326,-655,-1010,-1382, + -1955,-2337,-2709,-3064,-3393,-3689,-3943,-4151,-4308,-4409,-4453,-4439,-4366,-4236,-4054,-3822,-3546,-3233,-2890,-2525,-2147,-1764,-1386,-1021,-678,-365,-89,143,326,455,528,543,499,398,241,33,-222,-517,-846,-1201,-1574, + -2120,-2502,-2875,-3230,-3559,-3854,-4109,-4317,-4473,-4575,-4619,-4604,-4531,-4402,-4219,-3987,-3711,-3398,-3055,-2690,-2312,-1929,-1551,-1186,-843,-530,-254,-22,161,290,363,378,334,232,76,-132,-387,-682,-1011,-1366,-1739, + -2258,-2639,-3012,-3367,-3696,-3991,-4246,-4454,-4610,-4712,-4756,-4741,-4668,-4539,-4356,-4124,-3848,-3535,-3192,-2827,-2449,-2066,-1688,-1323,-980,-667,-391,-159,24,153,226,241,197,95,-61,-269,-524,-819,-1148,-1503,-1876, + -2365,-2747,-3119,-3474,-3803,-4099,-4353,-4561,-4718,-4819,-4863,-4848,-4776,-4646,-4463,-4231,-3956,-3642,-3299,-2935,-2556,-2174,-1795,-1430,-1087,-774,-499,-267,-84,46,119,133,89,-12,-169,-377,-631,-927,-1256,-1611,-1983, + -2441,-2823,-3195,-3550,-3879,-4175,-4429,-4637,-4794,-4895,-4939,-4925,-4852,-4722,-4539,-4307,-4032,-3719,-3376,-3011,-2632,-2250,-1871,-1506,-1163,-850,-575,-343,-160,-30,42,57,13,-88,-245,-453,-707,-1003,-1332,-1687,-2059, + -2485,-2866,-3239,-3594,-3923,-4218,-4473,-4681,-4838,-4939,-4983,-4968,-4896,-4766,-4583,-4351,-4075,-3762,-3419,-3055,-2676,-2294,-1915,-1550,-1207,-894,-618,-386,-204,-74,-1,13,-31,-132,-289,-497,-751,-1047,-1376,-1731,-2103, + -2496,-2877,-3250,-3605,-3934,-4229,-4484,-4692,-4849,-4950,-4994,-4979,-4907,-4777,-4594,-4362,-4086,-3773,-3430,-3066,-2687,-2305,-1926,-1561,-1218,-905,-629,-397,-215,-85,-12,2,-42,-143,-300,-508,-762,-1058,-1387,-1742,-2114, + -2474,-2856,-3228,-3583,-3912,-4207,-4462,-4670,-4827,-4928,-4972,-4957,-4885,-4755,-4572,-4340,-4064,-3751,-3408,-3044,-2665,-2283,-1904,-1539,-1196,-883,-608,-375,-193,-63,10,24,-20,-121,-278,-486,-740,-1036,-1365,-1720,-2092, + -2419,-2801,-3174,-3529,-3858,-4153,-4407,-4615,-4772,-4873,-4917,-4903,-4830,-4700,-4518,-4286,-4010,-3697,-3354,-2989,-2611,-2228,-1850,-1485,-1142,-829,-553,-321,-138,-9,64,79,35,-66,-223,-431,-686,-981,-1310,-1665,-2038, + -2333,-2714,-3087,-3442,-3771,-4066,-4321,-4529,-4685,-4787,-4831,-4816,-4743,-4614,-4431,-4199,-3923,-3610,-3267,-2902,-2524,-2141,-1763,-1398,-1055,-742,-466,-234,-51,78,151,166,122,20,-136,-344,-599,-894,-1223,-1578,-1951, + -2215,-2597,-2969,-3324,-3653,-3949,-4203,-4411,-4568,-4669,-4713,-4699,-4626,-4496,-4314,-4081,-3806,-3493,-3150,-2785,-2406,-2024,-1645,-1281,-938,-624,-349,-117,66,196,268,283,239,138,-19,-227,-482,-777,-1106,-1461,-1833, + -2068,-2450,-2823,-3178,-3507,-3802,-4057,-4265,-4421,-4523,-4566,-4552,-4479,-4350,-4167,-3935,-3659,-3346,-3003,-2638,-2260,-1877,-1499,-1134,-791,-478,-202,30,213,342,415,430,386,285,128,-80,-335,-630,-959,-1314,-1687, + -1894,-2276,-2649,-3004,-3333,-3628,-3882,-4091,-4247,-4349,-4392,-4378,-4305,-4175,-3993,-3761,-3485,-3172,-2829,-2464,-2086,-1703,-1325,-960,-617,-304,-28,204,387,516,589,604,560,459,302,94,-161,-456,-785,-1140,-1513, + -1695,-2077,-2449,-2804,-3133,-3429,-3683,-3891,-4048,-4149,-4193,-4179,-4106,-3976,-3794,-3561,-3286,-2973,-2630,-2265,-1886,-1504,-1125,-761,-418,-104,171,403,586,716,788,803,759,658,501,293,38,-257,-586,-941,-1313, + -1474,-1855,-2228,-2583,-2912,-3207,-3462,-3670,-3826,-3928,-3972,-3957,-3884,-3755,-3572,-3340,-3064,-2751,-2408,-2043,-1665,-1282,-904,-539,-196,117,393,625,808,937,1010,1025,981,879,723,515,260,-35,-364,-719,-1092, + -1232,-1614,-1987,-2342,-2671,-2966,-3221,-3429,-3585,-3687,-3731,-3716,-3643,-3514,-3331,-3099,-2823,-2510,-2167,-1802,-1424,-1041,-663,-298,45,358,634,866,1049,1178,1251,1266,1222,1120,964,756,501,206,-123,-478,-851, + -975,-1357,-1729,-2084,-2413,-2709,-2963,-3171,-3328,-3429,-3473,-3459,-3386,-3256,-3074,-2842,-2566,-2253,-1910,-1545,-1166,-784,-405,-41,302,615,891,1123,1306,1436,1508,1523,1479,1378,1221,1013,758,463,134,-221,-593, + -705,-1086,-1459,-1814,-2143,-2438,-2693,-2901,-3058,-3159,-3203,-3188,-3115,-2986,-2803,-2571,-2295,-1982,-1639,-1274,-896,-513,-135,230,573,886,1162,1394,1576,1706,1779,1793,1749,1648,1491,1283,1029,733,404,49,-323, + -425,-807,-1180,-1535,-1864,-2159,-2413,-2621,-2778,-2879,-2923,-2909,-2836,-2706,-2524,-2292,-2016,-1703,-1360,-995,-617,-234,144,509,852,1165,1441,1673,1856,1985,2058,2073,2029,1928,1771,1563,1308,1013,684,329,-44, + -140,-522,-894,-1249,-1578,-1874,-2128,-2336,-2493,-2594,-2638,-2623,-2551,-2421,-2238,-2006,-1731,-1417,-1074,-710,-331,51,430,795,1138,1451,1726,1958,2141,2271,2344,2358,2314,2213,2056,1848,1594,1298,969,614,242, + 147,-234,-607,-962,-1291,-1586,-1841,-2049,-2206,-2307,-2351,-2336,-2263,-2134,-1951,-1719,-1443,-1130,-787,-422,-44,339,717,1082,1425,1738,2014,2246,2429,2558,2631,2645,2602,2500,2344,2135,1881,1586,1257,902,529, + 433,51,-322,-677,-1006,-1301,-1556,-1764,-1920,-2022,-2066,-2051,-1978,-1849,-1666,-1434,-1158,-845,-502,-137,241,624,1002,1367,1710,2023,2299,2531,2714,2843,2916,2931,2887,2785,2629,2421,2166,1871,1542,1187,814, + 712,331,-42,-397,-726,-1021,-1276,-1484,-1641,-1742,-1786,-1771,-1698,-1569,-1386,-1154,-878,-565,-222,143,521,904,1282,1647,1990,2303,2579,2811,2993,3123,3196,3210,3166,3065,2908,2700,2446,2150,1821,1466,1094, + 982,601,228,-127,-456,-751,-1006,-1214,-1370,-1472,-1516,-1501,-1428,-1299,-1116,-884,-608,-295,48,413,791,1174,1552,1917,2260,2573,2849,3081,3264,3393,3466,3481,3437,3335,3179,2971,2716,2421,2092,1737,1364, + 1240,858,486,131,-198,-494,-748,-956,-1113,-1214,-1258,-1244,-1171,-1041,-859,-627,-351,-38,305,670,1048,1431,1809,2174,2517,2830,3106,3338,3521,3650,3723,3738,3694,3593,3436,3228,2973,2678,2349,1994,1621, + 1481,1099,727,372,43,-253,-507,-715,-872,-973,-1017,-1003,-930,-800,-618,-386,-110,203,546,911,1289,1672,2051,2415,2758,3071,3347,3579,3762,3892,3964,3979,3935,3834,3677,3469,3214,2919,2590,2235,1862, + 1702,1321,948,593,264,-31,-286,-494,-650,-752,-796,-781,-708,-579,-396,-164,112,425,768,1133,1511,1894,2272,2637,2980,3293,3569,3801,3984,4113,4186,4201,4157,4055,3899,3691,3436,3141,2812,2457,2084, + 1902,1520,1147,792,463,168,-87,-295,-451,-553,-597,-582,-509,-380,-197,35,311,624,967,1332,1710,2093,2471,2836,3179,3492,3768,4000,4183,4312,4385,4400,4356,4254,4098,3890,3635,3340,3011,2656,2283, + 2076,1694,1321,966,637,342,87,-121,-277,-379,-422,-408,-335,-206,-23,209,485,798,1141,1506,1884,2267,2645,3010,3353,3666,3942,4174,4357,4486,4559,4574,4530,4429,4272,4064,3809,3514,3185,2830,2457, + 2222,1841,1468,1113,784,489,234,26,-130,-232,-276,-261,-188,-59,124,356,632,945,1288,1653,2031,2414,2792,3157,3500,3813,4089,4321,4504,4633,4706,4721,4677,4575,4419,4211,3956,3661,3332,2977,2604, + 2340,1958,1586,1231,902,606,352,144,-13,-114,-158,-144,-71,59,241,474,749,1062,1405,1770,2149,2531,2910,3274,3617,3931,4206,4438,4621,4751,4823,4838,4794,4693,4536,4328,4073,3778,3449,3094,2722, + 2427,2045,1672,1317,988,693,438,230,74,-28,-72,-57,16,145,328,560,836,1149,1492,1857,2235,2618,2996,3361,3704,4017,4293,4525,4708,4837,4910,4925,4881,4779,4623,4415,4160,3865,3536,3181,2808, + 2481,2100,1727,1372,1043,748,493,285,128,27,-17,-2,71,200,383,615,891,1204,1547,1912,2290,2673,3051,3416,3759,4072,4348,4580,4762,4892,4965,4979,4935,4834,4678,4469,4215,3920,3591,3236,2863, + 2503,2122,1749,1394,1065,770,515,307,150,49,5,20,93,222,405,637,913,1226,1569,1934,2312,2695,3073,3438,3781,4094,4370,4602,4784,4914,4987,5001,4957,4856,4699,4491,4237,3942,3613,3258,2885, + 2492,2111,1738,1383,1054,759,504,296,139,38,-6,9,82,211,394,626,902,1215,1558,1923,2301,2684,3062,3427,3770,4083,4359,4591,4773,4903,4976,4990,4946,4845,4688,4480,4226,3931,3602,3247,2874, + 2448,2067,1694,1339,1010,715,460,252,96,-6,-50,-35,38,167,350,582,858,1171,1514,1879,2257,2640,3018,3383,3726,4039,4315,4547,4730,4859,4932,4947,4903,4801,4645,4437,4182,3887,3558,3203,2830, + 2372,1991,1618,1263,934,639,384,176,19,-82,-126,-111,-38,91,274,506,782,1095,1438,1803,2181,2564,2942,3307,3650,3963,4239,4471,4654,4783,4856,4870,4827,4725,4569,4361,4106,3811,3482,3127,2754, + 2265,1883,1511,1156,827,531,277,69,-88,-189,-233,-219,-146,-16,167,399,674,987,1330,1695,2074,2456,2835,3199,3542,3856,4131,4363,4546,4676,4748,4763,4719,4618,4461,4253,3999,3703,3374,3019,2647, + 2128,1746,1373,1018,689,394,139,-69,-225,-327,-370,-356,-283,-154,29,261,537,850,1193,1558,1936,2319,2697,3062,3405,3718,3994,4226,4409,4538,4611,4626,4582,4481,4324,4116,3861,3566,3237,2882,2509, + 1963,1581,1208,853,524,229,-26,-234,-390,-492,-536,-521,-448,-319,-136,96,372,685,1028,1393,1771,2154,2532,2897,3240,3553,3829,4061,4244,4373,4446,4461,4417,4315,4159,3951,3696,3401,3072,2717,2344, + + -1764,-2146,-2518,-2873,-3202,-3498,-3752,-3960,-4117,-4218,-4262,-4248,-4175,-4045,-3863,-3630,-3355,-3042,-2699,-2334,-1955,-1573,-1194,-830,-487,-173,102,334,517,647,719,734,690,589,432,224,-31,-326,-655,-1010,-1382, + -1955,-2337,-2709,-3064,-3393,-3689,-3943,-4151,-4308,-4409,-4453,-4439,-4366,-4236,-4054,-3822,-3546,-3233,-2890,-2525,-2147,-1764,-1386,-1021,-678,-365,-89,143,326,455,528,543,499,398,241,33,-222,-517,-846,-1201,-1574, + -2120,-2502,-2875,-3230,-3559,-3854,-4109,-4317,-4473,-4575,-4619,-4604,-4531,-4402,-4219,-3987,-3711,-3398,-3055,-2690,-2312,-1929,-1551,-1186,-843,-530,-254,-22,161,290,363,378,334,232,76,-132,-387,-682,-1011,-1366,-1739, + -2258,-2639,-3012,-3367,-3696,-3991,-4246,-4454,-4610,-4712,-4756,-4741,-4668,-4539,-4356,-4124,-3848,-3535,-3192,-2827,-2449,-2066,-1688,-1323,-980,-667,-391,-159,24,153,226,241,197,95,-61,-269,-524,-819,-1148,-1503,-1876, + -2365,-2747,-3119,-3474,-3803,-4099,-4353,-4561,-4718,-4819,-4863,-4848,-4776,-4646,-4463,-4231,-3956,-3642,-3299,-2935,-2556,-2174,-1795,-1430,-1087,-774,-499,-267,-84,46,119,133,89,-12,-169,-377,-631,-927,-1256,-1611,-1983, + -2441,-2823,-3195,-3550,-3879,-4175,-4429,-4637,-4794,-4895,-4939,-4925,-4852,-4722,-4539,-4307,-4032,-3719,-3376,-3011,-2632,-2250,-1871,-1506,-1163,-850,-575,-343,-160,-30,42,57,13,-88,-245,-453,-707,-1003,-1332,-1687,-2059, + -2485,-2866,-3239,-3594,-3923,-4218,-4473,-4681,-4838,-4939,-4983,-4968,-4896,-4766,-4583,-4351,-4075,-3762,-3419,-3055,-2676,-2294,-1915,-1550,-1207,-894,-618,-386,-204,-74,-1,13,-31,-132,-289,-497,-751,-1047,-1376,-1731,-2103, + -2496,-2877,-3250,-3605,-3934,-4229,-4484,-4692,-4849,-4950,-4994,-4979,-4907,-4777,-4594,-4362,-4086,-3773,-3430,-3066,-2687,-2305,-1926,-1561,-1218,-905,-629,-397,-215,-85,-12,2,-42,-143,-300,-508,-762,-1058,-1387,-1742,-2114, + -2474,-2856,-3228,-3583,-3912,-4207,-4462,-4670,-4827,-4928,-4972,-4957,-4885,-4755,-4572,-4340,-4064,-3751,-3408,-3044,-2665,-2283,-1904,-1539,-1196,-883,-608,-375,-193,-63,10,24,-20,-121,-278,-486,-740,-1036,-1365,-1720,-2092, + -2419,-2801,-3174,-3529,-3858,-4153,-4407,-4615,-4772,-4873,-4917,-4903,-4830,-4700,-4518,-4286,-4010,-3697,-3354,-2989,-2611,-2228,-1850,-1485,-1142,-829,-553,-321,-138,-9,64,79,35,-66,-223,-431,-686,-981,-1310,-1665,-2038, + -2333,-2714,-3087,-3442,-3771,-4066,-4321,-4529,-4685,-4787,-4831,-4816,-4743,-4614,-4431,-4199,-3923,-3610,-3267,-2902,-2524,-2141,-1763,-1398,-1055,-742,-466,-234,-51,78,151,166,122,20,-136,-344,-599,-894,-1223,-1578,-1951, + -2215,-2597,-2969,-3324,-3653,-3949,-4203,-4411,-4568,-4669,-4713,-4699,-4626,-4496,-4314,-4081,-3806,-3493,-3150,-2785,-2406,-2024,-1645,-1281,-938,-624,-349,-117,66,196,268,283,239,138,-19,-227,-482,-777,-1106,-1461,-1833, + -2068,-2450,-2823,-3178,-3507,-3802,-4057,-4265,-4421,-4523,-4566,-4552,-4479,-4350,-4167,-3935,-3659,-3346,-3003,-2638,-2260,-1877,-1499,-1134,-791,-478,-202,30,213,342,415,430,386,285,128,-80,-335,-630,-959,-1314,-1687, + -1894,-2276,-2649,-3004,-3333,-3628,-3882,-4091,-4247,-4349,-4392,-4378,-4305,-4175,-3993,-3761,-3485,-3172,-2829,-2464,-2086,-1703,-1325,-960,-617,-304,-28,204,387,516,589,604,560,459,302,94,-161,-456,-785,-1140,-1513, + -1695,-2077,-2449,-2804,-3133,-3429,-3683,-3891,-4048,-4149,-4193,-4179,-4106,-3976,-3794,-3561,-3286,-2973,-2630,-2265,-1886,-1504,-1125,-761,-418,-104,171,403,586,716,788,803,759,658,501,293,38,-257,-586,-941,-1313, + -1474,-1855,-2228,-2583,-2912,-3207,-3462,-3670,-3826,-3928,-3972,-3957,-3884,-3755,-3572,-3340,-3064,-2751,-2408,-2043,-1665,-1282,-904,-539,-196,117,393,625,808,937,1010,1025,981,879,723,515,260,-35,-364,-719,-1092, + -1232,-1614,-1987,-2342,-2671,-2966,-3221,-3429,-3585,-3687,-3731,-3716,-3643,-3514,-3331,-3099,-2823,-2510,-2167,-1802,-1424,-1041,-663,-298,45,358,634,866,1049,1178,1251,1266,1222,1120,964,756,501,206,-123,-478,-851, + -975,-1357,-1729,-2084,-2413,-2709,-2963,-3171,-3328,-3429,-3473,-3459,-3386,-3256,-3074,-2842,-2566,-2253,-1910,-1545,-1166,-784,-405,-41,302,615,891,1123,1306,1436,1508,1523,1479,1378,1221,1013,758,463,134,-221,-593, + -705,-1086,-1459,-1814,-2143,-2438,-2693,-2901,-3058,-3159,-3203,-3188,-3115,-2986,-2803,-2571,-2295,-1982,-1639,-1274,-896,-513,-135,230,573,886,1162,1394,1576,1706,1779,1793,1749,1648,1491,1283,1029,733,404,49,-323, + -425,-807,-1180,-1535,-1864,-2159,-2413,-2621,-2778,-2879,-2923,-2909,-2836,-2706,-2524,-2292,-2016,-1703,-1360,-995,-617,-234,144,509,852,1165,1441,1673,1856,1985,2058,2073,2029,1928,1771,1563,1308,1013,684,329,-44, + -140,-522,-894,-1249,-1578,-1874,-2128,-2336,-2493,-2594,-2638,-2623,-2551,-2421,-2238,-2006,-1731,-1417,-1074,-710,-331,51,430,795,1138,1451,1726,1958,2141,2271,2344,2358,2314,2213,2056,1848,1594,1298,969,614,242, + 147,-234,-607,-962,-1291,-1586,-1841,-2049,-2206,-2307,-2351,-2336,-2263,-2134,-1951,-1719,-1443,-1130,-787,-422,-44,339,717,1082,1425,1738,2014,2246,2429,2558,2631,2645,2602,2500,2344,2135,1881,1586,1257,902,529, + 433,51,-322,-677,-1006,-1301,-1556,-1764,-1920,-2022,-2066,-2051,-1978,-1849,-1666,-1434,-1158,-845,-502,-137,241,624,1002,1367,1710,2023,2299,2531,2714,2843,2916,2931,2887,2785,2629,2421,2166,1871,1542,1187,814, + 712,331,-42,-397,-726,-1021,-1276,-1484,-1641,-1742,-1786,-1771,-1698,-1569,-1386,-1154,-878,-565,-222,143,521,904,1282,1647,1990,2303,2579,2811,2993,3123,3196,3210,3166,3065,2908,2700,2446,2150,1821,1466,1094, + 982,601,228,-127,-456,-751,-1006,-1214,-1370,-1472,-1516,-1501,-1428,-1299,-1116,-884,-608,-295,48,413,791,1174,1552,1917,2260,2573,2849,3081,3264,3393,3466,3481,3437,3335,3179,2971,2716,2421,2092,1737,1364, + 1240,858,486,131,-198,-494,-748,-956,-1113,-1214,-1258,-1244,-1171,-1041,-859,-627,-351,-38,305,670,1048,1431,1809,2174,2517,2830,3106,3338,3521,3650,3723,3738,3694,3593,3436,3228,2973,2678,2349,1994,1621, + 1481,1099,727,372,43,-253,-507,-715,-872,-973,-1017,-1003,-930,-800,-618,-386,-110,203,546,911,1289,1672,2051,2415,2758,3071,3347,3579,3762,3892,3964,3979,3935,3834,3677,3469,3214,2919,2590,2235,1862, + 1702,1321,948,593,264,-31,-286,-494,-650,-752,-796,-781,-708,-579,-396,-164,112,425,768,1133,1511,1894,2272,2637,2980,3293,3569,3801,3984,4113,4186,4201,4157,4055,3899,3691,3436,3141,2812,2457,2084, + 1902,1520,1147,792,463,168,-87,-295,-451,-553,-597,-582,-509,-380,-197,35,311,624,967,1332,1710,2093,2471,2836,3179,3492,3768,4000,4183,4312,4385,4400,4356,4254,4098,3890,3635,3340,3011,2656,2283, + 2076,1694,1321,966,637,342,87,-121,-277,-379,-422,-408,-335,-206,-23,209,485,798,1141,1506,1884,2267,2645,3010,3353,3666,3942,4174,4357,4486,4559,4574,4530,4429,4272,4064,3809,3514,3185,2830,2457, + 2222,1841,1468,1113,784,489,234,26,-130,-232,-276,-261,-188,-59,124,356,632,945,1288,1653,2031,2414,2792,3157,3500,3813,4089,4321,4504,4633,4706,4721,4677,4575,4419,4211,3956,3661,3332,2977,2604, + 2340,1958,1586,1231,902,606,352,144,-13,-114,-158,-144,-71,59,241,474,749,1062,1405,1770,2149,2531,2910,3274,3617,3931,4206,4438,4621,4751,4823,4838,4794,4693,4536,4328,4073,3778,3449,3094,2722, + 2427,2045,1672,1317,988,693,438,230,74,-28,-72,-57,16,145,328,560,836,1149,1492,1857,2235,2618,2996,3361,3704,4017,4293,4525,4708,4837,4910,4925,4881,4779,4623,4415,4160,3865,3536,3181,2808, + 2481,2100,1727,1372,1043,748,493,285,128,27,-17,-2,71,200,383,615,891,1204,1547,1912,2290,2673,3051,3416,3759,4072,4348,4580,4762,4892,4965,4979,4935,4834,4678,4469,4215,3920,3591,3236,2863, + 2503,2122,1749,1394,1065,770,515,307,150,49,5,20,93,222,405,637,913,1226,1569,1934,2312,2695,3073,3438,3781,4094,4370,4602,4784,4914,4987,5001,4957,4856,4699,4491,4237,3942,3613,3258,2885, + 2492,2111,1738,1383,1054,759,504,296,139,38,-6,9,82,211,394,626,902,1215,1558,1923,2301,2684,3062,3427,3770,4083,4359,4591,4773,4903,4976,4990,4946,4845,4688,4480,4226,3931,3602,3247,2874, + 2448,2067,1694,1339,1010,715,460,252,96,-6,-50,-35,38,167,350,582,858,1171,1514,1879,2257,2640,3018,3383,3726,4039,4315,4547,4730,4859,4932,4947,4903,4801,4645,4437,4182,3887,3558,3203,2830, + 2372,1991,1618,1263,934,639,384,176,19,-82,-126,-111,-38,91,274,506,782,1095,1438,1803,2181,2564,2942,3307,3650,3963,4239,4471,4654,4783,4856,4870,4827,4725,4569,4361,4106,3811,3482,3127,2754, + 2265,1883,1511,1156,827,531,277,69,-88,-189,-233,-219,-146,-16,167,399,674,987,1330,1695,2074,2456,2835,3199,3542,3856,4131,4363,4546,4676,4748,4763,4719,4618,4461,4253,3999,3703,3374,3019,2647, + 2128,1746,1373,1018,689,394,139,-69,-225,-327,-370,-356,-283,-154,29,261,537,850,1193,1558,1936,2319,2697,3062,3405,3718,3994,4226,4409,4538,4611,4626,4582,4481,4324,4116,3861,3566,3237,2882,2509, + 1963,1581,1208,853,524,229,-26,-234,-390,-492,-536,-521,-448,-319,-136,96,372,685,1028,1393,1771,2154,2532,2897,3240,3553,3829,4061,4244,4373,4446,4461,4417,4315,4159,3951,3696,3401,3072,2717,2344, + + -1735,-2117,-2489,-2844,-3173,-3468,-3723,-3931,-4088,-4189,-4233,-4218,-4146,-4016,-3833,-3601,-3325,-3012,-2669,-2305,-1926,-1544,-1165,-800,-457,-144,131,364,546,676,749,763,719,618,461,253,-1,-297,-626,-981,-1353, + -1926,-2308,-2680,-3035,-3364,-3660,-3914,-4122,-4279,-4380,-4424,-4409,-4337,-4207,-4024,-3792,-3517,-3204,-2860,-2496,-2117,-1735,-1356,-991,-648,-335,-60,172,355,485,558,572,528,427,270,62,-192,-488,-817,-1172,-1544, + -2091,-2473,-2845,-3200,-3529,-3825,-4079,-4287,-4444,-4545,-4589,-4575,-4502,-4372,-4190,-3958,-3682,-3369,-3026,-2661,-2283,-1900,-1522,-1157,-814,-501,-225,7,190,319,392,407,363,262,105,-103,-358,-653,-982,-1337,-1710, + -2228,-2610,-2983,-3338,-3667,-3962,-4217,-4425,-4581,-4683,-4727,-4712,-4639,-4510,-4327,-4095,-3819,-3506,-3163,-2798,-2420,-2037,-1659,-1294,-951,-638,-362,-130,53,182,255,270,226,124,-32,-240,-495,-790,-1119,-1474,-1847, + -2336,-2717,-3090,-3445,-3774,-4069,-4324,-4532,-4689,-4790,-4834,-4819,-4746,-4617,-4434,-4202,-3926,-3613,-3270,-2905,-2527,-2144,-1766,-1401,-1058,-745,-469,-237,-54,75,148,162,119,17,-139,-347,-602,-897,-1226,-1581,-1954, + -2412,-2793,-3166,-3521,-3850,-4145,-4400,-4608,-4765,-4866,-4910,-4895,-4822,-4693,-4510,-4278,-4002,-3689,-3346,-2981,-2603,-2220,-1842,-1477,-1134,-821,-545,-313,-131,-1,72,86,42,-59,-216,-424,-678,-974,-1303,-1658,-2030, + -2456,-2837,-3210,-3565,-3894,-4189,-4444,-4652,-4809,-4910,-4954,-4939,-4866,-4737,-4554,-4322,-4046,-3733,-3390,-3025,-2647,-2264,-1886,-1521,-1178,-865,-589,-357,-174,-45,28,43,-1,-103,-259,-467,-722,-1017,-1346,-1701,-2074, + -2467,-2848,-3221,-3576,-3905,-4200,-4455,-4663,-4820,-4921,-4965,-4950,-4877,-4748,-4565,-4333,-4057,-3744,-3401,-3036,-2658,-2275,-1897,-1532,-1189,-876,-600,-368,-185,-56,17,32,-12,-114,-270,-478,-733,-1028,-1357,-1712,-2085, + -2445,-2826,-3199,-3554,-3883,-4178,-4433,-4641,-4798,-4899,-4943,-4928,-4855,-4726,-4543,-4311,-4035,-3722,-3379,-3014,-2636,-2253,-1875,-1510,-1167,-854,-578,-346,-163,-34,39,53,10,-92,-248,-456,-711,-1006,-1335,-1690,-2063, + -2390,-2772,-3144,-3499,-3828,-4124,-4378,-4586,-4743,-4844,-4888,-4874,-4801,-4671,-4488,-4256,-3981,-3668,-3325,-2960,-2581,-2199,-1820,-1455,-1112,-799,-524,-292,-109,21,94,108,64,-37,-194,-402,-656,-952,-1281,-1636,-2008, + -2303,-2685,-3058,-3413,-3742,-4037,-4292,-4500,-4656,-4758,-4802,-4787,-4714,-4585,-4402,-4170,-3894,-3581,-3238,-2873,-2495,-2112,-1734,-1369,-1026,-713,-437,-205,-22,107,180,195,151,49,-107,-315,-570,-865,-1194,-1549,-1922, + -2186,-2567,-2940,-3295,-3624,-3919,-4174,-4382,-4539,-4640,-4684,-4669,-4597,-4467,-4284,-4052,-3776,-3463,-3120,-2756,-2377,-1995,-1616,-1251,-908,-595,-319,-87,95,225,298,312,268,167,10,-198,-452,-748,-1077,-1432,-1804, + -2039,-2421,-2793,-3148,-3477,-3773,-4027,-4235,-4392,-4493,-4537,-4523,-4450,-4320,-4138,-3906,-3630,-3317,-2974,-2609,-2230,-1848,-1469,-1105,-762,-449,-173,59,242,372,444,459,415,314,157,-51,-306,-601,-930,-1285,-1657, + -1865,-2247,-2619,-2974,-3303,-3599,-3853,-4061,-4218,-4319,-4363,-4349,-4276,-4146,-3963,-3731,-3456,-3143,-2800,-2435,-2056,-1674,-1295,-930,-587,-274,1,233,416,546,618,633,589,488,331,123,-131,-427,-756,-1111,-1483, + -1666,-2048,-2420,-2775,-3104,-3399,-3654,-3862,-4019,-4120,-4164,-4149,-4077,-3947,-3764,-3532,-3256,-2943,-2600,-2236,-1857,-1475,-1096,-731,-388,-75,201,433,615,745,818,832,788,687,530,322,68,-228,-557,-912,-1284, + -1444,-1826,-2199,-2554,-2883,-3178,-3433,-3641,-3797,-3899,-3942,-3928,-3855,-3726,-3543,-3311,-3035,-2722,-2379,-2014,-1636,-1253,-875,-510,-167,146,422,654,837,966,1039,1054,1010,909,752,544,289,-6,-335,-690,-1063, + -1203,-1585,-1958,-2313,-2642,-2937,-3192,-3400,-3556,-3658,-3701,-3687,-3614,-3485,-3302,-3070,-2794,-2481,-2138,-1773,-1395,-1012,-634,-269,74,387,663,895,1078,1207,1280,1295,1251,1150,993,785,530,235,-94,-449,-822, + -946,-1328,-1700,-2055,-2384,-2679,-2934,-3142,-3299,-3400,-3444,-3429,-3357,-3227,-3044,-2812,-2537,-2223,-1880,-1516,-1137,-755,-376,-11,332,645,920,1153,1335,1465,1538,1552,1508,1407,1250,1042,788,492,163,-192,-564, + -676,-1057,-1430,-1785,-2114,-2409,-2664,-2872,-3028,-3130,-3174,-3159,-3086,-2957,-2774,-2542,-2266,-1953,-1610,-1245,-867,-484,-106,259,602,915,1191,1423,1606,1735,1808,1823,1779,1677,1521,1313,1058,763,434,79,-294, + -396,-778,-1150,-1505,-1834,-2130,-2384,-2592,-2749,-2850,-2894,-2880,-2807,-2677,-2494,-2262,-1987,-1674,-1331,-966,-587,-205,174,539,882,1195,1470,1702,1885,2015,2088,2102,2058,1957,1800,1592,1338,1042,713,358,-14, + -111,-492,-865,-1220,-1549,-1844,-2099,-2307,-2464,-2565,-2609,-2594,-2521,-2392,-2209,-1977,-1701,-1388,-1045,-680,-302,81,459,824,1167,1480,1756,1988,2171,2300,2373,2387,2344,2242,2086,1878,1623,1328,999,644,271, + 176,-205,-578,-933,-1262,-1557,-1812,-2020,-2176,-2278,-2322,-2307,-2234,-2105,-1922,-1690,-1414,-1101,-758,-393,-15,368,746,1111,1454,1767,2043,2275,2458,2587,2660,2675,2631,2529,2373,2165,1910,1615,1286,931,558, + 462,80,-293,-648,-977,-1272,-1526,-1735,-1891,-1993,-2036,-2022,-1949,-1819,-1637,-1405,-1129,-816,-473,-108,270,653,1031,1396,1739,2052,2328,2560,2743,2872,2945,2960,2916,2815,2658,2450,2195,1900,1571,1216,843, + 741,360,-13,-368,-697,-992,-1247,-1455,-1611,-1713,-1757,-1742,-1669,-1540,-1357,-1125,-849,-536,-193,172,550,933,1311,1676,2019,2332,2608,2840,3023,3152,3225,3240,3196,3094,2938,2730,2475,2180,1851,1496,1123, + 1012,630,257,-98,-427,-722,-977,-1185,-1341,-1443,-1486,-1472,-1399,-1270,-1087,-855,-579,-266,77,442,820,1203,1581,1946,2289,2602,2878,3110,3293,3422,3495,3510,3466,3365,3208,3000,2745,2450,2121,1766,1393, + 1269,887,515,160,-169,-465,-719,-927,-1084,-1185,-1229,-1214,-1142,-1012,-829,-597,-322,-9,334,699,1078,1460,1839,2204,2547,2860,3135,3367,3550,3680,3753,3767,3723,3622,3465,3257,3003,2707,2378,2023,1651, + 1510,1128,756,401,72,-223,-478,-686,-843,-944,-988,-973,-901,-771,-588,-356,-81,233,576,940,1319,1701,2080,2445,2788,3101,3376,3608,3791,3921,3994,4008,3964,3863,3706,3498,3244,2948,2619,2264,1892, + 1732,1350,977,622,293,-2,-257,-465,-621,-723,-767,-752,-679,-550,-367,-135,141,454,797,1162,1540,1923,2301,2666,3009,3322,3598,3830,4013,4142,4215,4230,4186,4084,3928,3720,3465,3170,2841,2486,2113, + 1931,1549,1176,821,492,197,-57,-265,-422,-523,-567,-553,-480,-350,-168,64,340,653,996,1361,1739,2122,2500,2865,3208,3521,3797,4029,4212,4341,4414,4429,4385,4284,4127,3919,3664,3369,3040,2685,2312, + 2105,1723,1351,996,667,371,117,-91,-248,-349,-393,-379,-306,-176,6,238,514,827,1170,1535,1914,2296,2675,3039,3382,3695,3971,4203,4386,4516,4588,4603,4559,4458,4301,4093,3838,3543,3214,2859,2487, + 2252,1870,1497,1142,813,518,263,55,-101,-203,-247,-232,-159,-30,153,385,661,974,1317,1682,2060,2443,2821,3186,3529,3842,4118,4350,4533,4662,4735,4750,4706,4604,4448,4240,3985,3690,3361,3006,2633, + 2369,1987,1615,1260,931,636,381,173,16,-85,-129,-114,-42,88,271,503,779,1092,1435,1799,2178,2560,2939,3304,3647,3960,4235,4468,4650,4780,4853,4867,4823,4722,4565,4357,4103,3807,3478,3123,2751, + 2456,2074,1701,1346,1017,722,468,259,103,1,-42,-28,45,175,357,589,865,1178,1521,1886,2264,2647,3025,3390,3733,4046,4322,4554,4737,4866,4939,4954,4910,4809,4652,4444,4189,3894,3565,3210,2837, + 2510,2129,1756,1401,1072,777,522,314,158,56,12,27,100,229,412,644,920,1233,1576,1941,2319,2702,3080,3445,3788,4101,4377,4609,4792,4921,4994,5009,4965,4863,4707,4499,4244,3949,3620,3265,2892, + 2532,2151,1778,1423,1094,799,544,336,180,78,34,49,122,251,434,666,942,1255,1598,1963,2341,2724,3102,3467,3810,4123,4399,4631,4814,4943,5016,5031,4987,4885,4729,4521,4266,3971,3642,3287,2914, + 2521,2140,1767,1412,1083,788,533,325,169,67,23,38,111,240,423,655,931,1244,1587,1952,2330,2713,3091,3456,3799,4112,4388,4620,4803,4932,5005,5020,4976,4874,4718,4510,4255,3960,3631,3276,2903, + 2478,2096,1723,1368,1039,744,489,281,125,23,-21,-6,67,196,379,611,887,1200,1543,1908,2286,2669,3047,3412,3755,4068,4344,4576,4759,4888,4961,4976,4932,4830,4674,4466,4211,3916,3587,3232,2859, + 2401,2020,1647,1292,963,668,413,205,49,-53,-97,-82,-9,120,303,535,811,1124,1467,1832,2210,2593,2971,3336,3679,3992,4268,4500,4683,4812,4885,4900,4856,4754,4598,4390,4135,3840,3511,3156,2783, + 2294,1913,1540,1185,856,561,306,98,-59,-160,-204,-189,-117,13,196,428,704,1017,1360,1724,2103,2486,2864,3229,3572,3885,4161,4393,4575,4705,4778,4792,4748,4647,4490,4282,4028,3732,3403,3048,2676, + 2157,1775,1403,1048,719,423,169,-39,-196,-297,-341,-327,-254,-124,59,291,566,879,1222,1587,1966,2348,2727,3091,3434,3748,4023,4255,4438,4568,4640,4655,4611,4510,4353,4145,3891,3595,3266,2911,2539, + 1992,1610,1237,882,553,258,3,-205,-361,-463,-506,-492,-419,-290,-107,125,401,714,1057,1422,1800,2183,2561,2926,3269,3582,3858,4090,4273,4402,4475,4490,4446,4345,4188,3980,3725,3430,3101,2746,2373, + + -1677,-2059,-2431,-2786,-3115,-3411,-3665,-3873,-4030,-4131,-4175,-4161,-4088,-3958,-3776,-3544,-3268,-2955,-2612,-2247,-1869,-1486,-1108,-743,-400,-87,189,421,604,733,806,821,777,676,519,311,56,-239,-568,-923,-1296, + -1868,-2250,-2623,-2978,-3307,-3602,-3856,-4064,-4221,-4322,-4366,-4352,-4279,-4149,-3967,-3735,-3459,-3146,-2803,-2438,-2060,-1677,-1299,-934,-591,-278,-2,230,413,542,615,630,586,485,328,120,-135,-430,-759,-1114,-1487, + -2033,-2415,-2788,-3143,-3472,-3767,-4022,-4230,-4386,-4488,-4532,-4517,-4444,-4315,-4132,-3900,-3624,-3311,-2968,-2603,-2225,-1842,-1464,-1099,-756,-443,-167,65,248,377,450,465,421,319,163,-45,-300,-595,-924,-1279,-1652, + -2171,-2552,-2925,-3280,-3609,-3904,-4159,-4367,-4523,-4625,-4669,-4654,-4581,-4452,-4269,-4037,-3761,-3448,-3105,-2740,-2362,-1979,-1601,-1236,-893,-580,-304,-72,111,240,313,328,284,182,26,-182,-437,-732,-1061,-1416,-1789, + -2278,-2660,-3032,-3387,-3716,-4012,-4266,-4474,-4631,-4732,-4776,-4761,-4689,-4559,-4376,-4144,-3869,-3556,-3213,-2848,-2469,-2087,-1708,-1343,-1000,-687,-412,-180,3,133,206,220,176,75,-82,-290,-544,-840,-1169,-1524,-1896, + -2354,-2736,-3108,-3463,-3792,-4088,-4342,-4550,-4707,-4808,-4852,-4838,-4765,-4635,-4452,-4220,-3945,-3632,-3289,-2924,-2545,-2163,-1784,-1420,-1077,-763,-488,-256,-73,57,129,144,100,-1,-158,-366,-621,-916,-1245,-1600,-1972, + -2398,-2780,-3152,-3507,-3836,-4132,-4386,-4594,-4751,-4852,-4896,-4881,-4809,-4679,-4496,-4264,-3989,-3675,-3332,-2968,-2589,-2207,-1828,-1463,-1120,-807,-532,-300,-117,13,86,100,56,-45,-202,-410,-664,-960,-1289,-1644,-2016, + -2409,-2791,-3163,-3518,-3847,-4143,-4397,-4605,-4762,-4863,-4907,-4892,-4820,-4690,-4507,-4275,-4000,-3686,-3343,-2979,-2600,-2218,-1839,-1474,-1131,-818,-543,-311,-128,2,75,89,45,-56,-213,-421,-675,-971,-1300,-1655,-2027, + -2387,-2769,-3141,-3496,-3825,-4121,-4375,-4583,-4740,-4841,-4885,-4870,-4798,-4668,-4485,-4253,-3978,-3664,-3321,-2957,-2578,-2196,-1817,-1452,-1109,-796,-521,-289,-106,24,97,111,67,-34,-191,-399,-653,-949,-1278,-1633,-2005, + -2332,-2714,-3087,-3442,-3771,-4066,-4320,-4529,-4685,-4787,-4830,-4816,-4743,-4614,-4431,-4199,-3923,-3610,-3267,-2902,-2524,-2141,-1763,-1398,-1055,-742,-466,-234,-51,78,151,166,122,21,-136,-344,-599,-894,-1223,-1578,-1951, + -2246,-2627,-3000,-3355,-3684,-3979,-4234,-4442,-4598,-4700,-4744,-4729,-4656,-4527,-4344,-4112,-3836,-3523,-3180,-2815,-2437,-2054,-1676,-1311,-968,-655,-379,-147,36,165,238,253,209,107,-49,-257,-512,-807,-1136,-1491,-1864, + -2128,-2510,-2882,-3237,-3566,-3862,-4116,-4324,-4481,-4582,-4626,-4612,-4539,-4409,-4227,-3995,-3719,-3406,-3063,-2698,-2320,-1937,-1558,-1194,-851,-538,-262,-30,153,283,355,370,326,225,68,-140,-395,-690,-1019,-1374,-1747, + -1981,-2363,-2736,-3091,-3420,-3715,-3970,-4178,-4334,-4436,-4480,-4465,-4392,-4263,-4080,-3848,-3572,-3259,-2916,-2551,-2173,-1790,-1412,-1047,-704,-391,-115,117,300,429,502,517,473,371,215,7,-248,-543,-872,-1227,-1600, + -1807,-2189,-2562,-2917,-3246,-3541,-3796,-4004,-4160,-4262,-4305,-4291,-4218,-4089,-3906,-3674,-3398,-3085,-2742,-2377,-1999,-1616,-1238,-873,-530,-217,59,291,474,603,676,691,647,546,389,181,-74,-369,-698,-1053,-1426, + -1608,-1990,-2362,-2717,-3046,-3342,-3596,-3804,-3961,-4062,-4106,-4092,-4019,-3889,-3707,-3475,-3199,-2886,-2543,-2178,-1800,-1417,-1039,-674,-331,-18,258,490,673,802,875,890,846,745,588,380,125,-170,-499,-854,-1227, + -1387,-1768,-2141,-2496,-2825,-3120,-3375,-3583,-3739,-3841,-3885,-3870,-3797,-3668,-3485,-3253,-2977,-2664,-2321,-1956,-1578,-1195,-817,-452,-109,204,480,712,895,1024,1097,1112,1068,966,810,602,347,52,-277,-632,-1005, + -1146,-1527,-1900,-2255,-2584,-2879,-3134,-3342,-3498,-3600,-3644,-3629,-3556,-3427,-3244,-3012,-2736,-2423,-2080,-1715,-1337,-954,-576,-211,132,445,721,953,1136,1265,1338,1353,1309,1207,1051,843,588,293,-36,-391,-764, + -888,-1270,-1642,-1997,-2326,-2622,-2876,-3084,-3241,-3342,-3386,-3372,-3299,-3169,-2987,-2755,-2479,-2166,-1823,-1458,-1080,-697,-319,46,389,702,978,1210,1393,1522,1595,1610,1566,1465,1308,1100,845,550,221,-134,-507, + -618,-1000,-1372,-1727,-2056,-2351,-2606,-2814,-2971,-3072,-3116,-3101,-3029,-2899,-2716,-2484,-2208,-1895,-1552,-1188,-809,-427,-48,317,660,973,1248,1481,1663,1793,1866,1880,1836,1735,1578,1370,1116,820,491,136,-236, + -338,-720,-1093,-1448,-1777,-2072,-2326,-2535,-2691,-2793,-2836,-2822,-2749,-2620,-2437,-2205,-1929,-1616,-1273,-908,-530,-147,231,596,939,1252,1528,1760,1943,2072,2145,2160,2116,2015,1858,1650,1395,1100,771,416,43, + -53,-435,-807,-1162,-1491,-1787,-2041,-2249,-2406,-2507,-2551,-2536,-2464,-2334,-2151,-1919,-1644,-1331,-988,-623,-244,138,517,882,1225,1538,1813,2045,2228,2358,2431,2445,2401,2300,2143,1935,1681,1385,1056,701,329, + 234,-147,-520,-875,-1204,-1499,-1754,-1962,-2119,-2220,-2264,-2249,-2176,-2047,-1864,-1632,-1356,-1043,-700,-335,43,426,804,1169,1512,1825,2101,2333,2515,2645,2718,2732,2688,2587,2430,2222,1968,1673,1344,989,616, + 520,138,-235,-590,-919,-1214,-1469,-1677,-1833,-1935,-1979,-1964,-1891,-1762,-1579,-1347,-1071,-758,-415,-50,328,711,1089,1454,1797,2110,2386,2618,2801,2930,3003,3018,2974,2872,2716,2508,2253,1958,1629,1274,901, + 799,418,45,-310,-639,-934,-1189,-1397,-1554,-1655,-1699,-1684,-1612,-1482,-1299,-1067,-791,-478,-135,229,608,991,1369,1734,2077,2390,2666,2898,3080,3210,3283,3297,3253,3152,2995,2787,2533,2237,1908,1553,1181, + 1069,688,315,-40,-369,-664,-919,-1127,-1283,-1385,-1429,-1414,-1341,-1212,-1029,-797,-521,-208,135,500,878,1261,1639,2004,2347,2660,2936,3168,3351,3480,3553,3568,3524,3422,3266,3058,2803,2508,2179,1824,1451, + 1327,945,572,217,-112,-407,-661,-870,-1026,-1127,-1171,-1157,-1084,-954,-772,-540,-264,49,392,757,1135,1518,1896,2261,2604,2917,3193,3425,3608,3737,3810,3825,3781,3680,3523,3315,3060,2765,2436,2081,1708, + 1568,1186,814,459,130,-166,-420,-628,-785,-886,-930,-916,-843,-713,-531,-299,-23,290,633,998,1376,1759,2137,2502,2845,3158,3434,3666,3849,3978,4051,4066,4022,3921,3764,3556,3301,3006,2677,2322,1949, + 1789,1408,1035,680,351,56,-199,-407,-563,-665,-709,-694,-621,-492,-309,-77,199,512,855,1220,1598,1981,2359,2724,3067,3380,3656,3888,4071,4200,4273,4288,4244,4142,3986,3778,3523,3228,2899,2544,2171, + 1989,1607,1234,879,550,255,0,-208,-364,-466,-510,-495,-422,-293,-110,122,398,711,1054,1419,1797,2180,2558,2923,3266,3579,3855,4087,4270,4399,4472,4487,4443,4341,4185,3977,3722,3427,3098,2743,2370, + 2163,1781,1408,1053,724,429,174,-34,-190,-292,-336,-321,-248,-119,64,296,572,885,1228,1593,1971,2354,2732,3097,3440,3753,4029,4261,4444,4573,4646,4661,4617,4515,4359,4151,3896,3601,3272,2917,2544, + 2309,1928,1555,1200,871,576,321,113,-43,-145,-189,-174,-101,28,211,443,719,1032,1375,1740,2118,2501,2879,3244,3587,3900,4176,4408,4591,4720,4793,4808,4764,4662,4506,4298,4043,3748,3419,3064,2691, + 2427,2045,1673,1318,989,693,439,231,74,-27,-71,-57,16,146,328,560,836,1149,1492,1857,2235,2618,2996,3361,3704,4017,4293,4525,4708,4837,4910,4925,4881,4780,4623,4415,4160,3865,3536,3181,2808, + 2514,2132,1759,1404,1075,780,525,317,161,59,15,30,103,232,415,647,923,1236,1579,1944,2322,2705,3083,3448,3791,4104,4380,4612,4795,4924,4997,5012,4968,4866,4710,4502,4247,3952,3623,3268,2895, + 2568,2187,1814,1459,1130,835,580,372,215,114,70,85,158,287,470,702,978,1291,1634,1999,2377,2760,3138,3503,3846,4159,4435,4667,4849,4979,5052,5066,5022,4921,4764,4556,4302,4006,3677,3322,2950, + 2590,2209,1836,1481,1152,857,602,394,237,136,92,107,180,309,492,724,1000,1313,1656,2021,2399,2782,3160,3525,3868,4181,4457,4689,4871,5001,5074,5088,5044,4943,4786,4578,4324,4028,3699,3344,2972, + 2579,2198,1825,1470,1141,846,591,383,226,125,81,96,169,298,481,713,989,1302,1645,2010,2388,2771,3149,3514,3857,4170,4446,4678,4860,4990,5063,5077,5033,4932,4775,4567,4313,4017,3688,3333,2961, + 2535,2154,1781,1426,1097,802,547,339,182,81,37,52,125,254,437,669,945,1258,1601,1966,2344,2727,3105,3470,3813,4126,4402,4634,4817,4946,5019,5033,4990,4888,4732,4524,4269,3974,3645,3290,2917, + 2459,2078,1705,1350,1021,726,471,263,106,5,-39,-24,49,178,361,593,869,1182,1525,1890,2268,2651,3029,3394,3737,4050,4326,4558,4740,4870,4943,4957,4913,4812,4656,4447,4193,3898,3569,3214,2841, + 2352,1970,1598,1243,914,618,364,156,-1,-102,-146,-132,-59,71,253,485,761,1074,1417,1782,2161,2543,2922,3286,3629,3942,4218,4450,4633,4763,4835,4850,4806,4705,4548,4340,4085,3790,3461,3106,2733, + 2215,1833,1460,1105,776,481,226,18,-138,-240,-283,-269,-196,-67,116,348,624,937,1280,1645,2023,2406,2784,3149,3492,3805,4081,4313,4496,4625,4698,4713,4669,4568,4411,4203,3948,3653,3324,2969,2596, + 2049,1668,1295,940,611,316,61,-147,-303,-405,-449,-434,-361,-232,-49,183,459,772,1115,1480,1858,2241,2619,2984,3327,3640,3916,4148,4331,4460,4533,4548,4504,4402,4246,4038,3783,3488,3159,2804,2431, + + -1592,-1974,-2347,-2702,-3031,-3326,-3580,-3789,-3945,-4046,-4090,-4076,-4003,-3873,-3691,-3459,-3183,-2870,-2527,-2162,-1784,-1401,-1023,-658,-315,-2,274,506,689,818,891,906,862,761,604,396,141,-154,-483,-838,-1211, + -1783,-2165,-2538,-2893,-3222,-3517,-3772,-3980,-4136,-4238,-4281,-4267,-4194,-4065,-3882,-3650,-3374,-3061,-2718,-2353,-1975,-1592,-1214,-849,-506,-193,83,315,498,627,700,715,671,570,413,205,-50,-345,-674,-1029,-1402, + -1949,-2330,-2703,-3058,-3387,-3682,-3937,-4145,-4301,-4403,-4447,-4432,-4359,-4230,-4047,-3815,-3539,-3226,-2883,-2518,-2140,-1757,-1379,-1014,-671,-358,-82,150,333,462,535,550,506,404,248,40,-215,-510,-839,-1194,-1567, + -2086,-2467,-2840,-3195,-3524,-3819,-4074,-4282,-4439,-4540,-4584,-4569,-4496,-4367,-4184,-3952,-3676,-3363,-3020,-2655,-2277,-1894,-1516,-1151,-808,-495,-219,13,196,325,398,412,369,267,111,-97,-352,-647,-976,-1331,-1704, + -2193,-2575,-2947,-3302,-3631,-3927,-4181,-4389,-4546,-4647,-4691,-4677,-4604,-4474,-4291,-4059,-3784,-3471,-3128,-2763,-2384,-2002,-1623,-1259,-916,-602,-327,-95,88,218,290,305,261,160,3,-205,-459,-755,-1084,-1439,-1811, + -2269,-2651,-3023,-3378,-3707,-4003,-4257,-4465,-4622,-4723,-4767,-4753,-4680,-4550,-4368,-4136,-3860,-3547,-3204,-2839,-2461,-2078,-1700,-1335,-992,-679,-403,-171,12,141,214,229,185,84,-73,-281,-536,-831,-1160,-1515,-1888, + -2313,-2695,-3067,-3422,-3751,-4047,-4301,-4509,-4666,-4767,-4811,-4797,-4724,-4594,-4411,-4179,-3904,-3591,-3248,-2883,-2504,-2122,-1743,-1378,-1035,-722,-447,-215,-32,98,171,185,141,40,-117,-325,-579,-875,-1204,-1559,-1931, + -2324,-2706,-3078,-3433,-3762,-4058,-4312,-4520,-4677,-4778,-4822,-4808,-4735,-4605,-4422,-4190,-3915,-3602,-3259,-2894,-2515,-2133,-1754,-1389,-1046,-733,-458,-226,-43,87,160,174,130,29,-128,-336,-590,-886,-1215,-1570,-1942, + -2302,-2684,-3056,-3411,-3740,-4036,-4290,-4498,-4655,-4756,-4800,-4786,-4713,-4583,-4400,-4168,-3893,-3580,-3237,-2872,-2493,-2111,-1732,-1367,-1024,-711,-436,-204,-21,109,181,196,152,51,-106,-314,-568,-864,-1193,-1548,-1920, + -2247,-2629,-3002,-3357,-3686,-3981,-4236,-4444,-4600,-4702,-4746,-4731,-4658,-4529,-4346,-4114,-3838,-3525,-3182,-2817,-2439,-2056,-1678,-1313,-970,-657,-381,-149,34,163,236,251,207,106,-51,-259,-514,-809,-1138,-1493,-1866, + -2161,-2542,-2915,-3270,-3599,-3894,-4149,-4357,-4514,-4615,-4659,-4644,-4571,-4442,-4259,-4027,-3751,-3438,-3095,-2730,-2352,-1969,-1591,-1226,-883,-570,-294,-62,121,250,323,337,294,192,36,-172,-427,-722,-1051,-1406,-1779, + -2043,-2425,-2798,-3153,-3482,-3777,-4031,-4239,-4396,-4497,-4541,-4527,-4454,-4324,-4142,-3910,-3634,-3321,-2978,-2613,-2235,-1852,-1474,-1109,-766,-453,-177,55,238,367,440,455,411,310,153,-55,-310,-605,-934,-1289,-1662, + -1896,-2278,-2651,-3006,-3335,-3630,-3885,-4093,-4249,-4351,-4395,-4380,-4307,-4178,-3995,-3763,-3487,-3174,-2831,-2466,-2088,-1705,-1327,-962,-619,-306,-30,202,385,514,587,602,558,456,300,92,-163,-458,-787,-1142,-1515, + -1722,-2104,-2477,-2832,-3161,-3456,-3711,-3919,-4075,-4177,-4221,-4206,-4133,-4004,-3821,-3589,-3313,-3000,-2657,-2292,-1914,-1531,-1153,-788,-445,-132,144,376,559,688,761,776,732,630,474,266,11,-284,-613,-968,-1341, + -1523,-1905,-2278,-2633,-2962,-3257,-3511,-3720,-3876,-3977,-4021,-4007,-3934,-3804,-3622,-3390,-3114,-2801,-2458,-2093,-1715,-1332,-954,-589,-246,67,343,575,758,887,960,975,931,830,673,465,210,-85,-414,-769,-1142, + -1302,-1683,-2056,-2411,-2740,-3035,-3290,-3498,-3655,-3756,-3800,-3785,-3712,-3583,-3400,-3168,-2892,-2579,-2236,-1871,-1493,-1110,-732,-367,-24,289,565,797,980,1109,1182,1197,1153,1051,895,687,432,137,-192,-547,-920, + -1061,-1442,-1815,-2170,-2499,-2794,-3049,-3257,-3413,-3515,-3559,-3544,-3471,-3342,-3159,-2927,-2651,-2338,-1995,-1630,-1252,-869,-491,-126,217,530,806,1038,1221,1350,1423,1438,1394,1292,1136,928,673,378,49,-306,-679, + -803,-1185,-1558,-1913,-2242,-2537,-2791,-3000,-3156,-3258,-3301,-3287,-3214,-3085,-2902,-2670,-2394,-2081,-1738,-1373,-995,-612,-234,131,474,787,1063,1295,1478,1607,1680,1695,1651,1550,1393,1185,930,635,306,-49,-422, + -533,-915,-1287,-1642,-1971,-2267,-2521,-2729,-2886,-2987,-3031,-3016,-2944,-2814,-2631,-2399,-2124,-1811,-1468,-1103,-724,-342,37,402,745,1058,1333,1565,1748,1878,1951,1965,1921,1820,1663,1455,1201,905,576,221,-151, + -253,-635,-1008,-1363,-1692,-1987,-2242,-2450,-2606,-2708,-2752,-2737,-2664,-2535,-2352,-2120,-1844,-1531,-1188,-823,-445,-62,316,681,1024,1337,1613,1845,2028,2157,2230,2245,2201,2100,1943,1735,1480,1185,856,501,128, + 32,-350,-722,-1077,-1406,-1702,-1956,-2164,-2321,-2422,-2466,-2452,-2379,-2249,-2066,-1834,-1559,-1246,-903,-538,-159,223,602,966,1309,1623,1898,2130,2313,2443,2515,2530,2486,2385,2228,2020,1766,1470,1141,786,414, + 319,-62,-435,-790,-1119,-1414,-1669,-1877,-2034,-2135,-2179,-2164,-2092,-1962,-1779,-1547,-1271,-958,-615,-251,128,511,889,1254,1597,1910,2186,2418,2600,2730,2803,2817,2773,2672,2515,2307,2053,1757,1428,1073,701, + 604,223,-150,-505,-834,-1129,-1384,-1592,-1748,-1850,-1894,-1879,-1806,-1677,-1494,-1262,-986,-673,-330,35,413,796,1174,1539,1882,2195,2471,2703,2886,3015,3088,3103,3059,2957,2801,2593,2338,2043,1714,1359,986, + 884,502,130,-225,-554,-850,-1104,-1312,-1469,-1570,-1614,-1599,-1527,-1397,-1214,-982,-707,-394,-50,314,693,1075,1454,1819,2162,2475,2750,2982,3165,3295,3368,3382,3338,3237,3080,2872,2618,2322,1993,1638,1266, + 1154,773,400,45,-284,-579,-834,-1042,-1199,-1300,-1344,-1329,-1256,-1127,-944,-712,-436,-123,220,585,963,1346,1724,2089,2432,2745,3021,3253,3436,3565,3638,3652,3609,3507,3351,3143,2888,2593,2264,1909,1536, + 1412,1030,657,302,-27,-322,-577,-785,-941,-1043,-1086,-1072,-999,-870,-687,-455,-179,134,477,842,1220,1603,1981,2346,2689,3002,3278,3510,3693,3822,3895,3910,3866,3765,3608,3400,3145,2850,2521,2166,1793, + 1653,1271,898,543,214,-81,-335,-544,-700,-802,-845,-831,-758,-629,-446,-214,62,375,718,1083,1461,1844,2222,2587,2930,3243,3519,3751,3934,4063,4136,4151,4107,4006,3849,3641,3386,3091,2762,2407,2034, + 1874,1493,1120,765,436,141,-114,-322,-479,-580,-624,-609,-536,-407,-224,8,284,597,940,1305,1683,2066,2444,2809,3152,3465,3741,3973,4156,4285,4358,4372,4329,4227,4071,3863,3608,3313,2984,2629,2256, + 2073,1692,1319,964,635,340,85,-123,-279,-381,-425,-410,-337,-208,-25,207,483,796,1139,1504,1882,2265,2643,3008,3351,3664,3940,4172,4355,4484,4557,4572,4528,4426,4270,4062,3807,3512,3183,2828,2455, + 2248,1866,1493,1138,809,514,259,51,-105,-207,-251,-236,-163,-34,149,381,657,970,1313,1678,2056,2439,2817,3182,3525,3838,4114,4346,4529,4658,4731,4746,4702,4600,4444,4236,3981,3686,3357,3002,2629, + 2394,2013,1640,1285,956,661,406,198,41,-60,-104,-89,-16,113,296,528,804,1117,1460,1825,2203,2586,2964,3329,3672,3985,4261,4493,4676,4805,4878,4892,4849,4747,4591,4383,4128,3833,3504,3149,2776, + 2512,2130,1757,1402,1073,778,524,315,159,57,14,28,101,231,413,645,921,1234,1577,1942,2320,2703,3081,3446,3789,4102,4378,4610,4793,4922,4995,5010,4966,4865,4708,4500,4245,3950,3621,3266,2893, + 2598,2217,1844,1489,1160,865,610,402,246,144,100,115,188,317,500,732,1008,1321,1664,2029,2407,2790,3168,3533,3876,4189,4465,4697,4880,5009,5082,5097,5053,4951,4795,4587,4332,4037,3708,3353,2980, + 2653,2271,1899,1544,1215,920,665,457,300,199,155,170,242,372,555,787,1062,1376,1719,2083,2462,2844,3223,3588,3931,4244,4519,4752,4934,5064,5137,5151,5107,5006,4849,4641,4387,4091,3762,3407,3035, + 2675,2293,1921,1566,1237,941,687,479,322,221,177,192,264,394,577,809,1084,1398,1741,2105,2484,2866,3245,3610,3953,4266,4541,4773,4956,5086,5159,5173,5129,5028,4871,4663,4409,4113,3784,3429,3057, + 2664,2282,1910,1555,1226,930,676,468,311,210,166,181,253,383,566,798,1073,1387,1730,2094,2473,2855,3234,3599,3942,4255,4530,4762,4945,5075,5148,5162,5118,5017,4860,4652,4398,4102,3773,3418,3046, + 2620,2239,1866,1511,1182,887,632,424,267,166,122,137,210,339,522,754,1030,1343,1686,2051,2429,2812,3190,3555,3898,4211,4487,4719,4902,5031,5104,5118,5075,4973,4817,4608,4354,4059,3730,3375,3002, + 2544,2163,1790,1435,1106,811,556,348,191,90,46,61,134,263,446,678,954,1267,1610,1975,2353,2736,3114,3479,3822,4135,4411,4643,4825,4955,5028,5042,4998,4897,4740,4532,4278,3982,3653,3298,2926, + 2437,2055,1682,1327,998,703,449,241,84,-17,-61,-47,26,156,338,570,846,1159,1502,1867,2245,2628,3006,3371,3714,4027,4303,4535,4718,4847,4920,4935,4891,4790,4633,4425,4170,3875,3546,3191,2818, + 2300,1918,1545,1190,861,566,311,103,-53,-155,-199,-184,-111,18,201,433,709,1022,1365,1730,2108,2491,2869,3234,3577,3890,4166,4398,4581,4710,4783,4798,4754,4652,4496,4288,4033,3738,3409,3054,2681, + 2134,1753,1380,1025,696,401,146,-62,-218,-320,-364,-349,-276,-147,36,268,544,857,1200,1565,1943,2326,2704,3069,3412,3725,4001,4233,4416,4545,4618,4633,4589,4487,4331,4123,3868,3573,3244,2889,2516, + + -1482,-1864,-2236,-2591,-2920,-3216,-3470,-3678,-3835,-3936,-3980,-3966,-3893,-3763,-3581,-3349,-3073,-2760,-2417,-2052,-1674,-1291,-912,-548,-205,108,384,616,799,929,1001,1016,972,871,714,506,251,-44,-373,-728,-1101, + -1673,-2055,-2427,-2782,-3111,-3407,-3661,-3869,-4026,-4127,-4171,-4157,-4084,-3954,-3772,-3540,-3264,-2951,-2608,-2243,-1865,-1482,-1104,-739,-396,-83,193,425,608,737,810,825,781,680,523,315,60,-235,-564,-919,-1292, + -1838,-2220,-2593,-2948,-3277,-3572,-3827,-4035,-4191,-4293,-4337,-4322,-4249,-4120,-3937,-3705,-3429,-3116,-2773,-2408,-2030,-1647,-1269,-904,-561,-248,28,260,443,572,645,660,616,514,358,150,-105,-400,-729,-1084,-1457, + -1976,-2357,-2730,-3085,-3414,-3709,-3964,-4172,-4328,-4430,-4474,-4459,-4386,-4257,-4074,-3842,-3566,-3253,-2910,-2545,-2167,-1784,-1406,-1041,-698,-385,-109,123,306,435,508,523,479,377,221,13,-242,-537,-866,-1221,-1594, + -2083,-2465,-2837,-3192,-3521,-3817,-4071,-4279,-4436,-4537,-4581,-4566,-4494,-4364,-4181,-3949,-3674,-3361,-3018,-2653,-2274,-1892,-1513,-1148,-805,-492,-217,15,198,328,401,415,371,270,113,-95,-349,-645,-974,-1329,-1701, + -2159,-2541,-2913,-3268,-3597,-3893,-4147,-4355,-4512,-4613,-4657,-4643,-4570,-4440,-4257,-4025,-3750,-3437,-3094,-2729,-2350,-1968,-1589,-1225,-882,-568,-293,-61,122,252,324,339,295,194,37,-171,-425,-721,-1050,-1405,-1777, + -2203,-2585,-2957,-3312,-3641,-3936,-4191,-4399,-4556,-4657,-4701,-4686,-4614,-4484,-4301,-4069,-3794,-3480,-3137,-2773,-2394,-2012,-1633,-1268,-925,-612,-337,-104,78,208,281,295,251,150,-7,-215,-469,-765,-1094,-1449,-1821, + -2214,-2596,-2968,-3323,-3652,-3947,-4202,-4410,-4567,-4668,-4712,-4697,-4625,-4495,-4312,-4080,-3805,-3491,-3148,-2784,-2405,-2023,-1644,-1279,-936,-623,-348,-115,67,197,270,284,240,139,-18,-226,-480,-776,-1105,-1460,-1832, + -2192,-2574,-2946,-3301,-3630,-3926,-4180,-4388,-4545,-4646,-4690,-4675,-4603,-4473,-4290,-4058,-3783,-3469,-3126,-2762,-2383,-2001,-1622,-1257,-914,-601,-326,-94,89,219,292,306,262,161,4,-204,-458,-754,-1083,-1438,-1810, + -2137,-2519,-2892,-3247,-3576,-3871,-4125,-4334,-4490,-4592,-4635,-4621,-4548,-4419,-4236,-4004,-3728,-3415,-3072,-2707,-2329,-1946,-1568,-1203,-860,-547,-271,-39,144,273,346,361,317,216,59,-149,-404,-699,-1028,-1383,-1756, + -2051,-2432,-2805,-3160,-3489,-3784,-4039,-4247,-4403,-4505,-4549,-4534,-4461,-4332,-4149,-3917,-3641,-3328,-2985,-2620,-2242,-1859,-1481,-1116,-773,-460,-184,48,231,360,433,448,404,302,146,-62,-317,-612,-941,-1296,-1669, + -1933,-2315,-2687,-3042,-3371,-3667,-3921,-4129,-4286,-4387,-4431,-4417,-4344,-4214,-4032,-3799,-3524,-3211,-2868,-2503,-2124,-1742,-1363,-999,-656,-343,-67,165,348,478,550,565,521,420,263,55,-200,-495,-824,-1179,-1551, + -1786,-2168,-2541,-2896,-3225,-3520,-3775,-3983,-4139,-4241,-4285,-4270,-4197,-4068,-3885,-3653,-3377,-3064,-2721,-2356,-1978,-1595,-1217,-852,-509,-196,80,312,495,624,697,712,668,566,410,202,-53,-348,-677,-1032,-1405, + -1612,-1994,-2367,-2722,-3051,-3346,-3600,-3809,-3965,-4067,-4110,-4096,-4023,-3894,-3711,-3479,-3203,-2890,-2547,-2182,-1804,-1421,-1043,-678,-335,-22,254,486,669,798,871,886,842,741,584,376,121,-174,-503,-858,-1231, + -1413,-1795,-2167,-2522,-2851,-3147,-3401,-3609,-3766,-3867,-3911,-3897,-3824,-3694,-3512,-3280,-3004,-2691,-2348,-1983,-1604,-1222,-843,-479,-136,177,453,685,868,998,1070,1085,1041,940,783,575,320,25,-304,-659,-1031, + -1192,-1573,-1946,-2301,-2630,-2925,-3180,-3388,-3544,-3646,-3690,-3675,-3602,-3473,-3290,-3058,-2782,-2469,-2126,-1761,-1383,-1000,-622,-257,86,399,675,907,1090,1219,1292,1307,1263,1161,1005,797,542,247,-82,-437,-810, + -951,-1332,-1705,-2060,-2389,-2684,-2939,-3147,-3303,-3405,-3449,-3434,-3361,-3232,-3049,-2817,-2541,-2228,-1885,-1520,-1142,-759,-381,-16,327,640,916,1148,1331,1460,1533,1548,1504,1402,1246,1038,783,488,159,-196,-569, + -693,-1075,-1447,-1802,-2131,-2427,-2681,-2889,-3046,-3147,-3191,-3177,-3104,-2974,-2792,-2560,-2284,-1971,-1628,-1263,-885,-502,-124,241,584,897,1173,1405,1588,1717,1790,1805,1761,1660,1503,1295,1040,745,416,61,-312, + -423,-804,-1177,-1532,-1861,-2156,-2411,-2619,-2776,-2877,-2921,-2906,-2834,-2704,-2521,-2289,-2013,-1700,-1357,-993,-614,-231,147,512,855,1168,1444,1676,1858,1988,2061,2075,2031,1930,1773,1565,1311,1015,686,331,-41, + -143,-525,-898,-1253,-1582,-1877,-2131,-2340,-2496,-2598,-2641,-2627,-2554,-2424,-2242,-2010,-1734,-1421,-1078,-713,-335,48,426,791,1134,1447,1723,1955,2138,2267,2340,2355,2311,2210,2053,1845,1590,1295,966,611,238, + 142,-240,-612,-967,-1296,-1592,-1846,-2054,-2211,-2312,-2356,-2341,-2269,-2139,-1956,-1724,-1449,-1135,-792,-428,-49,333,712,1077,1420,1733,2008,2240,2423,2553,2626,2640,2596,2495,2338,2130,1876,1580,1251,896,524, + 429,48,-325,-680,-1009,-1304,-1559,-1767,-1924,-2025,-2069,-2054,-1981,-1852,-1669,-1437,-1161,-848,-505,-140,238,621,999,1364,1707,2020,2296,2528,2710,2840,2913,2927,2884,2782,2626,2417,2163,1868,1539,1184,811, + 715,333,-40,-395,-724,-1019,-1274,-1482,-1638,-1740,-1784,-1769,-1696,-1567,-1384,-1152,-876,-563,-220,145,523,906,1284,1649,1992,2305,2581,2813,2996,3125,3198,3213,3169,3067,2911,2703,2448,2153,1824,1469,1096, + 994,613,240,-115,-444,-739,-994,-1202,-1359,-1460,-1504,-1489,-1416,-1287,-1104,-872,-596,-283,60,425,803,1186,1564,1929,2272,2585,2861,3093,3275,3405,3478,3492,3448,3347,3190,2982,2728,2432,2103,1748,1376, + 1264,883,510,155,-174,-469,-724,-932,-1088,-1190,-1234,-1219,-1146,-1017,-834,-602,-326,-13,330,695,1073,1456,1834,2199,2542,2855,3131,3363,3546,3675,3748,3763,3719,3617,3461,3253,2998,2703,2374,2019,1646, + 1522,1140,767,412,83,-212,-466,-674,-831,-932,-976,-962,-889,-759,-577,-345,-69,244,587,952,1330,1713,2091,2456,2799,3112,3388,3620,3803,3932,4005,4020,3976,3875,3718,3510,3255,2960,2631,2276,1903, + 1763,1381,1009,654,325,29,-225,-433,-590,-691,-735,-721,-648,-518,-336,-104,172,485,828,1193,1571,1954,2332,2697,3040,3353,3629,3861,4044,4173,4246,4261,4217,4116,3959,3751,3496,3201,2872,2517,2144, + 1984,1603,1230,875,546,251,-4,-212,-368,-470,-514,-499,-426,-297,-114,118,394,707,1050,1415,1793,2176,2554,2919,3262,3575,3851,4083,4266,4395,4468,4483,4439,4337,4181,3973,3718,3423,3094,2739,2366, + 2184,1802,1429,1074,745,450,195,-13,-169,-271,-315,-300,-227,-98,85,317,593,906,1249,1614,1992,2375,2753,3118,3461,3774,4050,4282,4465,4594,4667,4682,4638,4536,4380,4172,3917,3622,3293,2938,2565, + 2358,1976,1603,1248,919,624,369,161,5,-97,-141,-126,-53,76,259,491,767,1080,1423,1788,2166,2549,2927,3292,3635,3948,4224,4456,4639,4768,4841,4856,4812,4710,4554,4346,4091,3796,3467,3112,2739, + 2504,2123,1750,1395,1066,771,516,308,152,50,6,21,94,223,406,638,914,1227,1570,1935,2313,2696,3074,3439,3782,4095,4371,4603,4786,4915,4988,5003,4959,4857,4701,4493,4238,3943,3614,3259,2886, + 2622,2240,1868,1513,1184,888,634,426,269,168,124,138,211,341,523,755,1031,1344,1687,2052,2430,2813,3192,3556,3899,4212,4488,4720,4903,5033,5105,5120,5076,4975,4818,4610,4355,4060,3731,3376,3003, + 2709,2327,1954,1599,1270,975,720,512,356,254,210,225,298,427,610,842,1118,1431,1774,2139,2517,2900,3278,3643,3986,4299,4575,4807,4990,5119,5192,5207,5163,5061,4905,4697,4442,4147,3818,3463,3090, + 2763,2382,2009,1654,1325,1030,775,567,410,309,265,280,353,482,665,897,1173,1486,1829,2194,2572,2955,3333,3698,4041,4354,4630,4862,5044,5174,5247,5261,5217,5116,4959,4751,4497,4201,3872,3517,3145, + 2785,2404,2031,1676,1347,1052,797,589,432,331,287,302,375,504,687,919,1195,1508,1851,2216,2594,2977,3355,3720,4063,4376,4652,4884,5066,5196,5269,5283,5239,5138,4981,4773,4519,4223,3894,3539,3167, + 2774,2393,2020,1665,1336,1041,786,578,421,320,276,291,364,493,676,908,1184,1497,1840,2205,2583,2966,3344,3709,4052,4365,4641,4873,5055,5185,5258,5272,5228,5127,4970,4762,4508,4212,3883,3528,3156, + 2730,2349,1976,1621,1292,997,742,534,377,276,232,247,320,449,632,864,1140,1453,1796,2161,2539,2922,3300,3665,4008,4321,4597,4829,5012,5141,5214,5229,5185,5083,4927,4719,4464,4169,3840,3485,3112, + 2654,2273,1900,1545,1216,921,666,458,301,200,156,171,244,373,556,788,1064,1377,1720,2085,2463,2846,3224,3589,3932,4245,4521,4753,4936,5065,5138,5152,5109,5007,4851,4642,4388,4093,3764,3409,3036, + 2547,2165,1793,1438,1109,813,559,351,194,93,49,63,136,266,448,681,956,1269,1612,1977,2356,2738,3117,3481,3824,4137,4413,4645,4828,4958,5030,5045,5001,4900,4743,4535,4280,3985,3656,3301,2929, + 2410,2028,1655,1300,971,676,421,213,57,-45,-88,-74,-1,128,311,543,819,1132,1475,1840,2218,2601,2979,3344,3687,4000,4276,4508,4691,4820,4893,4908,4864,4763,4606,4398,4143,3848,3519,3164,2791, + 2244,1863,1490,1135,806,511,256,48,-108,-210,-254,-239,-166,-37,146,378,654,967,1310,1675,2053,2436,2814,3179,3522,3835,4111,4343,4526,4655,4728,4743,4699,4597,4441,4233,3978,3683,3354,2999,2626, + + -1349,-1731,-2104,-2459,-2788,-3083,-3338,-3546,-3702,-3804,-3848,-3833,-3760,-3631,-3448,-3216,-2940,-2627,-2284,-1919,-1541,-1158,-780,-415,-72,241,517,749,932,1061,1134,1149,1105,1003,847,639,384,89,-240,-595,-968, + -1540,-1922,-2295,-2650,-2979,-3274,-3529,-3737,-3893,-3995,-4039,-4024,-3951,-3822,-3639,-3407,-3131,-2818,-2475,-2110,-1732,-1349,-971,-606,-263,50,326,558,741,870,943,958,914,812,656,448,193,-102,-431,-786,-1159, + -1706,-2087,-2460,-2815,-3144,-3439,-3694,-3902,-4059,-4160,-4204,-4189,-4116,-3987,-3804,-3572,-3296,-2983,-2640,-2275,-1897,-1514,-1136,-771,-428,-115,161,393,576,705,778,792,749,647,491,283,28,-267,-596,-951,-1324, + -1843,-2225,-2597,-2952,-3281,-3576,-3831,-4039,-4196,-4297,-4341,-4326,-4254,-4124,-3941,-3709,-3434,-3120,-2777,-2413,-2034,-1652,-1273,-908,-565,-252,23,256,438,568,641,655,611,510,353,145,-109,-405,-734,-1089,-1461, + -1950,-2332,-2705,-3060,-3389,-3684,-3938,-4147,-4303,-4405,-4448,-4434,-4361,-4232,-4049,-3817,-3541,-3228,-2885,-2520,-2142,-1759,-1381,-1016,-673,-360,-84,148,331,460,533,548,504,403,246,38,-217,-512,-841,-1196,-1569, + -2026,-2408,-2781,-3136,-3465,-3760,-4015,-4223,-4379,-4481,-4525,-4510,-4437,-4308,-4125,-3893,-3617,-3304,-2961,-2596,-2218,-1835,-1457,-1092,-749,-436,-160,72,255,384,457,472,428,326,170,-38,-293,-588,-917,-1272,-1645, + -2070,-2452,-2825,-3179,-3508,-3804,-4058,-4266,-4423,-4524,-4568,-4554,-4481,-4351,-4169,-3937,-3661,-3348,-3005,-2640,-2262,-1879,-1501,-1136,-793,-480,-204,28,211,340,413,428,384,283,126,-82,-337,-632,-961,-1316,-1689, + -2081,-2463,-2835,-3190,-3519,-3815,-4069,-4277,-4434,-4535,-4579,-4565,-4492,-4362,-4180,-3948,-3672,-3359,-3016,-2651,-2273,-1890,-1512,-1147,-804,-491,-215,17,200,329,402,417,373,272,115,-93,-348,-643,-972,-1327,-1700, + -2059,-2441,-2814,-3169,-3498,-3793,-4047,-4255,-4412,-4513,-4557,-4543,-4470,-4340,-4158,-3926,-3650,-3337,-2994,-2629,-2251,-1868,-1490,-1125,-782,-469,-193,39,222,351,424,439,395,294,137,-71,-326,-621,-950,-1305,-1678, + -2005,-2386,-2759,-3114,-3443,-3738,-3993,-4201,-4357,-4459,-4503,-4488,-4415,-4286,-4103,-3871,-3595,-3282,-2939,-2574,-2196,-1813,-1435,-1070,-727,-414,-138,94,277,406,479,494,450,348,192,-16,-271,-566,-895,-1250,-1623, + -1918,-2300,-2672,-3027,-3356,-3651,-3906,-4114,-4271,-4372,-4416,-4401,-4329,-4199,-4016,-3784,-3508,-3195,-2852,-2488,-2109,-1727,-1348,-983,-640,-327,-52,181,363,493,566,580,536,435,278,70,-184,-480,-809,-1164,-1536, + -1800,-2182,-2555,-2910,-3239,-3534,-3789,-3997,-4153,-4255,-4299,-4284,-4211,-4082,-3899,-3667,-3391,-3078,-2735,-2370,-1992,-1609,-1231,-866,-523,-210,66,298,481,610,683,698,654,552,396,188,-67,-362,-691,-1046,-1419, + -1654,-2035,-2408,-2763,-3092,-3387,-3642,-3850,-4007,-4108,-4152,-4137,-4064,-3935,-3752,-3520,-3244,-2931,-2588,-2223,-1845,-1462,-1084,-719,-376,-63,213,445,628,757,830,845,801,699,543,335,80,-215,-544,-899,-1272, + -1480,-1861,-2234,-2589,-2918,-3213,-3468,-3676,-3832,-3934,-3978,-3963,-3890,-3761,-3578,-3346,-3070,-2757,-2414,-2049,-1671,-1288,-910,-545,-202,111,387,619,802,931,1004,1019,975,873,717,509,254,-41,-370,-725,-1098, + -1280,-1662,-2035,-2390,-2719,-3014,-3269,-3477,-3633,-3735,-3779,-3764,-3691,-3562,-3379,-3147,-2871,-2558,-2215,-1850,-1472,-1089,-711,-346,-3,310,586,818,1001,1130,1203,1218,1174,1072,916,708,453,158,-171,-526,-899, + -1059,-1440,-1813,-2168,-2497,-2792,-3047,-3255,-3412,-3513,-3557,-3542,-3469,-3340,-3157,-2925,-2649,-2336,-1993,-1628,-1250,-867,-489,-124,219,532,808,1040,1222,1352,1425,1439,1395,1294,1137,929,675,379,50,-305,-677, + -818,-1199,-1572,-1927,-2256,-2551,-2806,-3014,-3171,-3272,-3316,-3301,-3228,-3099,-2916,-2684,-2408,-2095,-1752,-1387,-1009,-626,-248,117,460,773,1049,1281,1463,1593,1666,1680,1636,1535,1378,1170,916,620,291,-64,-436, + -560,-942,-1315,-1670,-1999,-2294,-2549,-2757,-2913,-3015,-3059,-3044,-2971,-2842,-2659,-2427,-2151,-1838,-1495,-1130,-752,-369,9,374,717,1030,1306,1538,1721,1850,1923,1938,1894,1792,1636,1428,1173,878,549,194,-179, + -290,-672,-1044,-1399,-1728,-2024,-2278,-2486,-2643,-2744,-2788,-2774,-2701,-2571,-2389,-2157,-1881,-1568,-1225,-860,-482,-99,279,644,987,1300,1576,1808,1991,2120,2193,2208,2164,2063,1906,1698,1443,1148,819,464,91, + -11,-392,-765,-1120,-1449,-1744,-1999,-2207,-2363,-2465,-2509,-2494,-2421,-2292,-2109,-1877,-1601,-1288,-945,-580,-202,181,559,924,1267,1580,1856,2088,2271,2400,2473,2488,2444,2342,2186,1978,1723,1428,1099,744,371, + 275,-107,-480,-835,-1164,-1459,-1713,-1922,-2078,-2180,-2223,-2209,-2136,-2007,-1824,-1592,-1316,-1003,-660,-295,83,466,844,1209,1552,1865,2141,2373,2556,2685,2758,2773,2729,2628,2471,2263,2008,1713,1384,1029,656, + 562,180,-192,-547,-876,-1172,-1426,-1634,-1791,-1892,-1936,-1922,-1849,-1719,-1536,-1304,-1029,-716,-373,-8,371,753,1132,1496,1839,2153,2428,2660,2843,2973,3045,3060,3016,2915,2758,2550,2296,2000,1671,1316,944, + 847,466,93,-262,-591,-886,-1141,-1349,-1506,-1607,-1651,-1636,-1563,-1434,-1251,-1019,-743,-430,-87,278,656,1039,1417,1782,2125,2438,2714,2946,3128,3258,3331,3345,3301,3200,3044,2835,2581,2286,1957,1602,1229, + 1127,745,373,18,-311,-607,-861,-1069,-1226,-1327,-1371,-1357,-1284,-1154,-972,-740,-464,-151,192,557,935,1318,1696,2061,2404,2717,2993,3225,3408,3537,3610,3625,3581,3480,3323,3115,2860,2565,2236,1881,1508, + 1397,1016,643,288,-41,-336,-591,-799,-956,-1057,-1101,-1086,-1014,-884,-701,-469,-193,120,463,827,1206,1589,1967,2332,2675,2988,3264,3496,3678,3808,3881,3895,3851,3750,3593,3385,3131,2835,2506,2151,1779, + 1654,1273,900,545,216,-79,-334,-542,-698,-800,-844,-829,-756,-627,-444,-212,64,377,720,1085,1463,1846,2224,2589,2932,3245,3521,3753,3936,4065,4138,4153,4109,4007,3851,3643,3388,3093,2764,2409,2036, + 1896,1514,1141,786,457,162,-93,-301,-457,-559,-603,-588,-515,-386,-203,29,305,618,961,1326,1704,2087,2465,2830,3173,3486,3762,3994,4177,4306,4379,4394,4350,4248,4092,3884,3629,3334,3005,2650,2277, + 2117,1735,1363,1008,679,384,129,-79,-236,-337,-381,-366,-294,-164,19,251,526,840,1183,1547,1926,2308,2687,3052,3395,3708,3983,4216,4398,4528,4601,4615,4571,4470,4313,4105,3851,3555,3226,2871,2499, + 2316,1935,1562,1207,878,583,328,120,-37,-138,-182,-167,-94,35,218,450,726,1039,1382,1747,2125,2508,2886,3251,3594,3907,4183,4415,4598,4727,4800,4814,4771,4669,4513,4304,4050,3755,3426,3071,2698, + 2490,2109,1736,1381,1052,757,502,294,137,36,-8,7,80,209,392,624,900,1213,1556,1921,2299,2682,3060,3425,3768,4081,4357,4589,4772,4901,4974,4989,4945,4843,4687,4479,4224,3929,3600,3245,2872, + 2637,2255,1883,1528,1199,904,649,441,284,183,139,154,226,356,539,771,1046,1360,1703,2067,2446,2828,3207,3572,3915,4228,4503,4736,4918,5048,5121,5135,5091,4990,4833,4625,4371,4075,3746,3391,3019, + 2755,2373,2000,1645,1316,1021,766,558,402,300,256,271,344,473,656,888,1164,1477,1820,2185,2563,2946,3324,3689,4032,4345,4621,4853,5036,5165,5238,5253,5209,5107,4951,4743,4488,4193,3864,3509,3136, + 2841,2460,2087,1732,1403,1108,853,645,488,387,343,358,431,560,743,975,1251,1564,1907,2272,2650,3033,3411,3776,4119,4432,4708,4940,5122,5252,5325,5339,5295,5194,5038,4829,4575,4280,3951,3596,3223, + 2896,2514,2142,1787,1458,1162,908,700,543,442,398,412,485,615,797,1030,1305,1618,1961,2326,2705,3087,3466,3830,4173,4487,4762,4994,5177,5307,5379,5394,5350,5249,5092,4884,4629,4334,4005,3650,3278, + 2918,2536,2164,1809,1480,1184,930,722,565,464,420,434,507,637,819,1052,1327,1640,1983,2348,2727,3109,3488,3852,4195,4508,4784,5016,5199,5329,5401,5416,5372,5271,5114,4906,4651,4356,4027,3672,3300, + 2907,2525,2153,1798,1469,1173,919,711,554,453,409,423,496,626,808,1041,1316,1629,1972,2337,2716,3098,3477,3841,4184,4497,4773,5005,5188,5318,5390,5405,5361,5260,5103,4895,4640,4345,4016,3661,3289, + 2863,2481,2109,1754,1425,1129,875,667,510,409,365,380,452,582,765,997,1272,1585,1929,2293,2672,3054,3433,3798,4141,4454,4729,4961,5144,5274,5347,5361,5317,5216,5059,4851,4597,4301,3972,3617,3245, + 2787,2405,2033,1678,1349,1053,799,591,434,333,289,303,376,506,689,921,1196,1509,1852,2217,2596,2978,3357,3721,4064,4378,4653,4885,5068,5198,5270,5285,5241,5140,4983,4775,4521,4225,3896,3541,3169, + 2680,2298,1925,1570,1241,946,691,483,327,225,181,196,269,398,581,813,1089,1402,1745,2110,2488,2871,3249,3614,3957,4270,4546,4778,4961,5090,5163,5178,5134,5032,4876,4668,4413,4118,3789,3434,3061, + 2542,2161,1788,1433,1104,809,554,346,190,88,44,59,132,261,444,676,952,1265,1608,1973,2351,2734,3112,3477,3820,4133,4409,4641,4824,4953,5026,5041,4997,4895,4739,4531,4276,3981,3652,3297,2924, + 2377,1996,1623,1268,939,644,389,181,24,-77,-121,-106,-33,96,279,511,787,1100,1443,1808,2186,2569,2947,3312,3655,3968,4244,4476,4658,4788,4861,4875,4831,4730,4573,4365,4111,3815,3486,3131,2759, + + -1197,-1579,-1952,-2307,-2636,-2931,-3185,-3394,-3550,-3651,-3695,-3681,-3608,-3478,-3296,-3064,-2788,-2475,-2132,-1767,-1389,-1006,-628,-263,80,393,669,901,1084,1213,1286,1301,1257,1156,999,791,536,241,-88,-443,-816, + -1388,-1770,-2143,-2498,-2827,-3122,-3377,-3585,-3741,-3843,-3886,-3872,-3799,-3670,-3487,-3255,-2979,-2666,-2323,-1958,-1580,-1197,-819,-454,-111,202,478,710,893,1022,1095,1110,1066,965,808,600,345,50,-279,-634,-1007, + -1554,-1935,-2308,-2663,-2992,-3287,-3542,-3750,-3906,-4008,-4052,-4037,-3964,-3835,-3652,-3420,-3144,-2831,-2488,-2123,-1745,-1362,-984,-619,-276,37,313,545,728,857,930,945,901,799,643,435,180,-115,-444,-799,-1172, + -1691,-2072,-2445,-2800,-3129,-3424,-3679,-3887,-4044,-4145,-4189,-4174,-4101,-3972,-3789,-3557,-3281,-2968,-2625,-2260,-1882,-1499,-1121,-756,-413,-100,176,408,591,720,793,807,764,662,506,298,43,-252,-581,-936,-1309, + -1798,-2180,-2552,-2907,-3236,-3532,-3786,-3994,-4151,-4252,-4296,-4282,-4209,-4079,-3896,-3664,-3389,-3076,-2733,-2368,-1989,-1607,-1228,-864,-521,-207,68,300,483,613,685,700,656,555,398,190,-64,-360,-689,-1044,-1416, + -1874,-2256,-2628,-2983,-3312,-3608,-3862,-4070,-4227,-4328,-4372,-4358,-4285,-4155,-3973,-3741,-3465,-3152,-2809,-2444,-2066,-1683,-1305,-940,-597,-284,-8,224,407,536,609,624,580,479,322,114,-141,-436,-765,-1120,-1493, + -1918,-2300,-2672,-3027,-3356,-3652,-3906,-4114,-4271,-4372,-4416,-4402,-4329,-4199,-4016,-3784,-3509,-3196,-2853,-2488,-2109,-1727,-1348,-983,-640,-327,-52,180,363,493,566,580,536,435,278,70,-184,-480,-809,-1164,-1536, + -1929,-2311,-2683,-3038,-3367,-3663,-3917,-4125,-4282,-4383,-4427,-4413,-4340,-4210,-4027,-3795,-3520,-3207,-2864,-2499,-2120,-1738,-1359,-994,-651,-338,-63,169,352,482,555,569,525,424,267,59,-195,-491,-820,-1175,-1547, + -1907,-2289,-2661,-3016,-3345,-3641,-3895,-4103,-4260,-4361,-4405,-4391,-4318,-4188,-4005,-3773,-3498,-3185,-2842,-2477,-2098,-1716,-1337,-972,-629,-316,-41,191,374,504,576,591,547,446,289,81,-173,-469,-798,-1153,-1525, + -1852,-2234,-2607,-2962,-3291,-3586,-3841,-4049,-4205,-4307,-4351,-4336,-4263,-4134,-3951,-3719,-3443,-3130,-2787,-2422,-2044,-1661,-1283,-918,-575,-262,14,246,429,558,631,646,602,501,344,136,-119,-414,-743,-1098,-1471, + -1766,-2147,-2520,-2875,-3204,-3499,-3754,-3962,-4119,-4220,-4264,-4249,-4176,-4047,-3864,-3632,-3356,-3043,-2700,-2335,-1957,-1574,-1196,-831,-488,-175,101,333,516,645,718,732,689,587,431,223,-32,-327,-656,-1011,-1384, + -1648,-2030,-2403,-2758,-3087,-3382,-3636,-3844,-4001,-4102,-4146,-4132,-4059,-3929,-3747,-3515,-3239,-2926,-2583,-2218,-1840,-1457,-1079,-714,-371,-58,218,450,633,762,835,850,806,705,548,340,85,-210,-539,-894,-1267, + -1501,-1883,-2256,-2611,-2940,-3235,-3490,-3698,-3854,-3956,-4000,-3985,-3912,-3783,-3600,-3368,-3092,-2779,-2436,-2071,-1693,-1310,-932,-567,-224,89,365,597,780,909,982,997,953,851,695,487,232,-63,-392,-747,-1120, + -1327,-1709,-2082,-2437,-2766,-3061,-3316,-3524,-3680,-3782,-3826,-3811,-3738,-3609,-3426,-3194,-2918,-2605,-2262,-1897,-1519,-1136,-758,-393,-50,263,539,771,954,1083,1156,1171,1127,1025,869,661,406,111,-218,-573,-946, + -1128,-1510,-1883,-2238,-2567,-2862,-3116,-3324,-3481,-3582,-3626,-3612,-3539,-3409,-3227,-2995,-2719,-2406,-2063,-1698,-1320,-937,-559,-194,149,462,738,970,1153,1282,1355,1370,1326,1225,1068,860,605,310,-19,-374,-747, + -907,-1288,-1661,-2016,-2345,-2640,-2895,-3103,-3260,-3361,-3405,-3390,-3317,-3188,-3005,-2773,-2497,-2184,-1841,-1476,-1098,-715,-337,28,371,684,960,1192,1375,1504,1577,1592,1548,1446,1290,1082,827,532,203,-152,-525, + -666,-1047,-1420,-1775,-2104,-2399,-2654,-2862,-3018,-3120,-3164,-3149,-3076,-2947,-2764,-2532,-2256,-1943,-1600,-1235,-857,-474,-96,269,612,925,1201,1433,1616,1745,1818,1833,1789,1687,1531,1323,1068,773,444,89,-284, + -408,-790,-1163,-1518,-1847,-2142,-2396,-2605,-2761,-2863,-2906,-2892,-2819,-2690,-2507,-2275,-1999,-1686,-1343,-978,-600,-217,161,526,869,1182,1458,1690,1873,2002,2075,2090,2046,1945,1788,1580,1325,1030,701,346,-27, + -138,-520,-892,-1247,-1576,-1872,-2126,-2334,-2491,-2592,-2636,-2621,-2549,-2419,-2236,-2004,-1729,-1416,-1073,-708,-329,53,432,797,1140,1453,1728,1960,2143,2273,2346,2360,2316,2215,2058,1850,1596,1300,971,616,244, + 142,-240,-613,-968,-1297,-1592,-1847,-2055,-2211,-2313,-2357,-2342,-2269,-2140,-1957,-1725,-1449,-1136,-793,-428,-50,333,711,1076,1419,1732,2008,2240,2423,2552,2625,2640,2596,2495,2338,2130,1875,1580,1251,896,523, + 427,45,-327,-682,-1011,-1307,-1561,-1769,-1926,-2027,-2071,-2057,-1984,-1854,-1671,-1439,-1164,-851,-508,-143,236,618,997,1361,1704,2018,2293,2525,2708,2838,2910,2925,2881,2780,2623,2415,2161,1865,1536,1181,809, + 714,333,-40,-395,-724,-1019,-1274,-1482,-1639,-1740,-1784,-1769,-1697,-1567,-1384,-1152,-876,-563,-220,144,523,906,1284,1649,1992,2305,2581,2813,2995,3125,3198,3212,3168,3067,2910,2702,2448,2152,1823,1468,1096, + 999,618,245,-110,-439,-734,-989,-1197,-1353,-1455,-1499,-1484,-1411,-1282,-1099,-867,-591,-278,65,430,808,1191,1569,1934,2277,2590,2866,3098,3281,3410,3483,3498,3454,3352,3196,2988,2733,2438,2109,1754,1381, + 1279,897,525,170,-159,-455,-709,-917,-1074,-1175,-1219,-1204,-1132,-1002,-819,-587,-312,2,345,709,1088,1470,1849,2214,2557,2870,3145,3377,3560,3690,3763,3777,3733,3632,3475,3267,3013,2717,2388,2033,1661, + 1549,1168,795,440,111,-184,-439,-647,-804,-905,-949,-934,-861,-732,-549,-317,-41,272,615,980,1358,1741,2119,2484,2827,3140,3416,3648,3831,3960,4033,4047,4004,3902,3746,3538,3283,2988,2659,2304,1931, + 1807,1425,1052,697,368,73,-182,-390,-546,-648,-691,-677,-604,-475,-292,-60,216,529,872,1237,1615,1998,2376,2741,3084,3397,3673,3905,4088,4217,4290,4305,4261,4160,4003,3795,3540,3245,2916,2561,2188, + 2048,1666,1293,938,609,314,60,-149,-305,-407,-450,-436,-363,-234,-51,181,457,770,1113,1478,1856,2239,2617,2982,3325,3638,3914,4146,4329,4458,4531,4546,4502,4401,4244,4036,3781,3486,3157,2802,2429, + 2269,1888,1515,1160,831,536,281,73,-84,-185,-229,-214,-141,-12,171,403,679,992,1335,1700,2078,2461,2839,3204,3547,3860,4136,4368,4551,4680,4753,4767,4724,4622,4466,4258,4003,3708,3379,3024,2651, + 2468,2087,1714,1359,1030,735,480,272,116,14,-30,-15,58,187,370,602,878,1191,1534,1899,2277,2660,3038,3403,3746,4059,4335,4567,4750,4879,4952,4967,4923,4821,4665,4457,4202,3907,3578,3223,2850, + 2643,2261,1888,1533,1204,909,654,446,290,188,144,159,232,361,544,776,1052,1365,1708,2073,2451,2834,3212,3577,3920,4233,4509,4741,4924,5053,5126,5141,5097,4995,4839,4631,4376,4081,3752,3397,3024, + 2789,2408,2035,1680,1351,1056,801,593,436,335,291,306,379,508,691,923,1199,1512,1855,2220,2598,2981,3359,3724,4067,4380,4656,4888,5071,5200,5273,5287,5244,5142,4986,4778,4523,4228,3899,3544,3171, + 2907,2525,2152,1797,1468,1173,919,710,554,453,409,423,496,626,808,1040,1316,1629,1972,2337,2715,3098,3476,3841,4184,4497,4773,5005,5188,5317,5390,5405,5361,5260,5103,4895,4640,4345,4016,3661,3288, + 2993,2612,2239,1884,1555,1260,1005,797,641,539,495,510,583,712,895,1127,1403,1716,2059,2424,2802,3185,3563,3928,4271,4584,4860,5092,5275,5404,5477,5492,5448,5346,5190,4982,4727,4432,4103,3748,3375, + 3048,2666,2294,1939,1610,1315,1060,852,695,594,550,565,637,767,950,1182,1457,1771,2114,2478,2857,3239,3618,3983,4326,4639,4914,5147,5329,5459,5532,5546,5502,5401,5244,5036,4782,4486,4157,3802,3430, + 3070,2688,2316,1961,1632,1337,1082,874,717,616,572,587,659,789,972,1204,1479,1793,2136,2500,2879,3261,3640,4005,4348,4661,4936,5168,5351,5481,5554,5568,5524,5423,5266,5058,4804,4508,4179,3824,3452, + 3059,2677,2305,1950,1621,1326,1071,863,706,605,561,576,648,778,961,1193,1468,1782,2125,2489,2868,3250,3629,3994,4337,4650,4925,5157,5340,5470,5543,5557,5513,5412,5255,5047,4793,4497,4168,3813,3441, + 3015,2634,2261,1906,1577,1282,1027,819,662,561,517,532,605,734,917,1149,1425,1738,2081,2446,2824,3207,3585,3950,4293,4606,4882,5114,5297,5426,5499,5513,5470,5368,5212,5003,4749,4454,4125,3770,3397, + 2939,2558,2185,1830,1501,1206,951,743,586,485,441,456,529,658,841,1073,1349,1662,2005,2370,2748,3131,3509,3874,4217,4530,4806,5038,5220,5350,5423,5437,5393,5292,5135,4927,4673,4377,4048,3693,3321, + 2832,2450,2077,1722,1393,1098,844,636,479,378,334,348,421,551,733,965,1241,1554,1897,2262,2640,3023,3401,3766,4109,4422,4698,4930,5113,5242,5315,5330,5286,5185,5028,4820,4565,4270,3941,3586,3213, + 2695,2313,1940,1585,1256,961,706,498,342,240,196,211,284,413,596,828,1104,1417,1760,2125,2503,2886,3264,3629,3972,4285,4561,4793,4976,5105,5178,5193,5149,5047,4891,4683,4428,4133,3804,3449,3076, + 2529,2148,1775,1420,1091,796,541,333,177,75,31,46,119,248,431,663,939,1252,1595,1960,2338,2721,3099,3464,3807,4120,4396,4628,4811,4940,5013,5028,4984,4882,4726,4518,4263,3968,3639,3284,2911, + + -1029,-1411,-1783,-2138,-2467,-2763,-3017,-3225,-3382,-3483,-3527,-3513,-3440,-3310,-3128,-2895,-2620,-2307,-1964,-1599,-1220,-838,-459,-95,248,562,837,1069,1252,1382,1454,1469,1425,1324,1167,959,704,409,80,-275,-647, + -1220,-1602,-1974,-2329,-2658,-2954,-3208,-3416,-3573,-3674,-3718,-3704,-3631,-3501,-3319,-3087,-2811,-2498,-2155,-1790,-1412,-1029,-651,-286,57,370,646,878,1061,1190,1263,1278,1234,1133,976,768,513,218,-111,-466,-839, + -1385,-1767,-2140,-2495,-2824,-3119,-3374,-3582,-3738,-3840,-3884,-3869,-3796,-3667,-3484,-3252,-2976,-2663,-2320,-1955,-1577,-1194,-816,-451,-108,205,481,713,896,1025,1098,1113,1069,967,811,603,348,53,-276,-631,-1004, + -1523,-1904,-2277,-2632,-2961,-3256,-3511,-3719,-3875,-3977,-4021,-4006,-3933,-3804,-3621,-3389,-3113,-2800,-2457,-2092,-1714,-1331,-953,-588,-245,68,344,576,759,888,961,976,932,830,674,466,211,-84,-413,-768,-1141, + -1630,-2012,-2384,-2739,-3068,-3364,-3618,-3826,-3983,-4084,-4128,-4113,-4041,-3911,-3728,-3496,-3221,-2907,-2564,-2200,-1821,-1439,-1060,-695,-352,-39,236,468,651,781,854,868,824,723,566,358,104,-192,-521,-876,-1248, + -1706,-2088,-2460,-2815,-3144,-3440,-3694,-3902,-4059,-4160,-4204,-4190,-4117,-3987,-3804,-3572,-3297,-2984,-2641,-2276,-1897,-1515,-1136,-771,-428,-115,160,392,575,705,777,792,748,647,490,282,28,-268,-597,-952,-1324, + -1750,-2132,-2504,-2859,-3188,-3483,-3738,-3946,-4103,-4204,-4248,-4233,-4161,-4031,-3848,-3616,-3340,-3027,-2684,-2320,-1941,-1559,-1180,-815,-472,-159,117,349,531,661,734,748,704,603,446,238,-16,-312,-641,-996,-1368, + -1761,-2143,-2515,-2870,-3199,-3494,-3749,-3957,-4114,-4215,-4259,-4244,-4172,-4042,-3859,-3627,-3351,-3038,-2695,-2331,-1952,-1570,-1191,-826,-483,-170,106,338,520,650,723,737,693,592,435,227,-27,-323,-652,-1007,-1379, + -1739,-2121,-2493,-2848,-3177,-3472,-3727,-3935,-4092,-4193,-4237,-4222,-4150,-4020,-3837,-3605,-3329,-3016,-2673,-2309,-1930,-1548,-1169,-804,-461,-148,127,360,542,672,745,759,715,614,457,249,-5,-301,-630,-985,-1357, + -1684,-2066,-2439,-2794,-3123,-3418,-3672,-3880,-4037,-4138,-4182,-4168,-4095,-3965,-3783,-3551,-3275,-2962,-2619,-2254,-1876,-1493,-1115,-750,-407,-94,182,414,597,726,799,814,770,669,512,304,49,-246,-575,-930,-1303, + -1598,-1979,-2352,-2707,-3036,-3331,-3586,-3794,-3950,-4052,-4096,-4081,-4008,-3879,-3696,-3464,-3188,-2875,-2532,-2167,-1789,-1406,-1028,-663,-320,-7,269,501,684,813,886,901,857,755,599,391,136,-159,-488,-843,-1216, + -1480,-1862,-2234,-2589,-2918,-3214,-3468,-3676,-3833,-3934,-3978,-3964,-3891,-3761,-3579,-3346,-3071,-2758,-2415,-2050,-1671,-1289,-910,-546,-203,111,386,618,801,931,1003,1018,974,873,716,508,253,-42,-371,-726,-1098, + -1333,-1715,-2088,-2443,-2772,-3067,-3322,-3530,-3686,-3788,-3831,-3817,-3744,-3615,-3432,-3200,-2924,-2611,-2268,-1903,-1525,-1142,-764,-399,-56,257,533,765,948,1077,1150,1165,1121,1020,863,655,400,105,-224,-579,-952, + -1159,-1541,-1914,-2269,-2598,-2893,-3147,-3356,-3512,-3614,-3657,-3643,-3570,-3440,-3258,-3026,-2750,-2437,-2094,-1729,-1351,-968,-590,-225,118,431,707,939,1122,1251,1324,1339,1295,1194,1037,829,574,279,-50,-405,-778, + -960,-1342,-1714,-2069,-2398,-2694,-2948,-3156,-3313,-3414,-3458,-3444,-3371,-3241,-3059,-2826,-2551,-2238,-1895,-1530,-1151,-769,-390,-26,317,631,906,1138,1321,1451,1523,1538,1494,1393,1236,1028,773,478,149,-206,-578, + -739,-1120,-1493,-1848,-2177,-2472,-2727,-2935,-3091,-3193,-3237,-3222,-3149,-3020,-2837,-2605,-2329,-2016,-1673,-1308,-930,-547,-169,196,539,852,1128,1360,1543,1672,1745,1760,1716,1614,1458,1250,995,700,371,16,-357, + -497,-879,-1252,-1607,-1936,-2231,-2486,-2694,-2850,-2952,-2996,-2981,-2908,-2779,-2596,-2364,-2088,-1775,-1432,-1067,-689,-306,72,437,780,1093,1369,1601,1784,1913,1986,2001,1957,1855,1699,1491,1236,941,612,257,-116, + -240,-622,-994,-1349,-1678,-1974,-2228,-2436,-2593,-2694,-2738,-2724,-2651,-2521,-2339,-2107,-1831,-1518,-1175,-810,-431,-49,330,694,1037,1350,1626,1858,2041,2171,2243,2258,2214,2113,1956,1748,1493,1198,869,514,142, + 30,-351,-724,-1079,-1408,-1703,-1958,-2166,-2323,-2424,-2468,-2453,-2380,-2251,-2068,-1836,-1560,-1247,-904,-539,-161,222,600,965,1308,1621,1897,2129,2311,2441,2514,2528,2484,2383,2226,2018,1764,1468,1139,784,412, + 310,-72,-445,-800,-1129,-1424,-1678,-1886,-2043,-2144,-2188,-2174,-2101,-1971,-1789,-1557,-1281,-968,-625,-260,118,501,879,1244,1587,1900,2176,2408,2591,2720,2793,2808,2764,2663,2506,2298,2043,1748,1419,1064,691, + 595,213,-159,-514,-843,-1139,-1393,-1601,-1758,-1859,-1903,-1888,-1816,-1686,-1503,-1271,-996,-682,-339,25,404,786,1165,1530,1873,2186,2461,2693,2876,3006,3079,3093,3049,2948,2791,2583,2329,2033,1704,1349,977, + 882,501,128,-227,-556,-851,-1106,-1314,-1471,-1572,-1616,-1601,-1528,-1399,-1216,-984,-708,-395,-52,313,691,1074,1452,1817,2160,2473,2749,2981,3164,3293,3366,3380,3337,3235,3079,2870,2616,2321,1992,1637,1264, + 1168,786,413,58,-271,-566,-821,-1029,-1185,-1287,-1331,-1316,-1243,-1114,-931,-699,-423,-110,233,598,976,1359,1737,2102,2445,2758,3034,3266,3449,3578,3651,3666,3622,3520,3364,3156,2901,2606,2277,1922,1549, + 1447,1066,693,338,9,-286,-541,-749,-906,-1007,-1051,-1036,-963,-834,-651,-419,-143,170,513,878,1256,1639,2017,2382,2725,3038,3314,3546,3728,3858,3931,3945,3901,3800,3643,3435,3181,2885,2556,2201,1829, + 1717,1336,963,608,279,-16,-271,-479,-635,-737,-781,-766,-693,-564,-381,-149,127,440,783,1148,1526,1909,2287,2652,2995,3308,3584,3816,3999,4128,4201,4216,4172,4070,3914,3706,3451,3156,2827,2472,2099, + 1975,1593,1221,866,537,241,-13,-221,-378,-479,-523,-509,-436,-306,-124,108,384,697,1040,1405,1783,2166,2544,2909,3252,3565,3841,4073,4256,4385,4458,4473,4429,4328,4171,3963,3708,3413,3084,2729,2356, + 2216,1834,1462,1107,778,482,228,20,-137,-238,-282,-268,-195,-65,117,349,625,938,1281,1646,2024,2407,2785,3150,3493,3806,4082,4314,4497,4626,4699,4714,4670,4569,4412,4204,3949,3654,3325,2970,2597, + 2437,2056,1683,1328,999,704,449,241,85,-17,-61,-46,27,156,339,571,847,1160,1503,1868,2246,2629,3007,3372,3715,4028,4304,4536,4719,4848,4921,4936,4892,4790,4634,4426,4171,3876,3547,3192,2819, + 2637,2255,1882,1527,1198,903,648,440,284,182,138,153,226,355,538,770,1046,1359,1702,2067,2445,2828,3206,3571,3914,4227,4503,4735,4918,5047,5120,5135,5091,4989,4833,4625,4370,4075,3746,3391,3018, + 2811,2429,2056,1701,1372,1077,822,614,458,356,312,327,400,529,712,944,1220,1533,1876,2241,2619,3002,3380,3745,4088,4401,4677,4909,5092,5221,5294,5309,5265,5164,5007,4799,4544,4249,3920,3565,3192, + 2957,2576,2203,1848,1519,1224,969,761,605,503,459,474,547,676,859,1091,1367,1680,2023,2388,2766,3149,3527,3892,4235,4548,4824,5056,5239,5368,5441,5456,5412,5310,5154,4946,4691,4396,4067,3712,3339, + 3075,2693,2321,1966,1637,1341,1087,879,722,621,577,591,664,794,976,1209,1484,1797,2140,2505,2884,3266,3645,4009,4352,4666,4941,5173,5356,5486,5558,5573,5529,5428,5271,5063,4808,4513,4184,3829,3457, + 3162,2780,2407,2052,1723,1428,1173,965,809,707,663,678,751,880,1063,1295,1571,1884,2227,2592,2970,3353,3731,4096,4439,4752,5028,5260,5443,5572,5645,5660,5616,5514,5358,5150,4895,4600,4271,3916,3543, + 3216,2835,2462,2107,1778,1483,1228,1020,863,762,718,733,806,935,1118,1350,1626,1939,2282,2647,3025,3408,3786,4151,4494,4807,5083,5315,5497,5627,5700,5714,5670,5569,5413,5204,4950,4655,4326,3971,3598, + 3238,2857,2484,2129,1800,1505,1250,1042,885,784,740,755,828,957,1140,1372,1648,1961,2304,2669,3047,3430,3808,4173,4516,4829,5105,5337,5519,5649,5722,5736,5692,5591,5434,5226,4972,4677,4348,3993,3620, + 3227,2846,2473,2118,1789,1494,1239,1031,874,773,729,744,817,946,1129,1361,1637,1950,2293,2658,3036,3419,3797,4162,4505,4818,5094,5326,5508,5638,5711,5725,5681,5580,5423,5215,4961,4666,4337,3982,3609, + 3183,2802,2429,2074,1745,1450,1195,987,831,729,685,700,773,902,1085,1317,1593,1906,2249,2614,2992,3375,3753,4118,4461,4774,5050,5282,5465,5594,5667,5682,5638,5536,5380,5172,4917,4622,4293,3938,3565, + 3107,2726,2353,1998,1669,1374,1119,911,754,653,609,624,697,826,1009,1241,1517,1830,2173,2538,2916,3299,3677,4042,4385,4698,4974,5206,5389,5518,5591,5605,5562,5460,5304,5096,4841,4546,4217,3862,3489, + 3000,2618,2246,1891,1562,1266,1012,804,647,546,502,516,589,719,902,1134,1409,1722,2065,2430,2809,3191,3570,3934,4277,4591,4866,5098,5281,5411,5483,5498,5454,5353,5196,4988,4733,4438,4109,3754,3382, + 2863,2481,2108,1753,1424,1129,874,666,510,408,365,379,452,581,764,996,1272,1585,1928,2293,2671,3054,3432,3797,4140,4453,4729,4961,5144,5273,5346,5361,5317,5216,5059,4851,4596,4301,3972,3617,3244, + 2698,2316,1943,1588,1259,964,709,501,345,243,199,214,287,416,599,831,1107,1420,1763,2128,2506,2889,3267,3632,3975,4288,4564,4796,4979,5108,5181,5196,5152,5050,4894,4686,4431,4136,3807,3452,3079, + + -849,-1231,-1603,-1958,-2287,-2583,-2837,-3045,-3202,-3303,-3347,-3332,-3260,-3130,-2947,-2715,-2440,-2127,-1784,-1419,-1040,-658,-279,86,429,742,1017,1249,1432,1562,1635,1649,1605,1504,1347,1139,885,589,260,-95,-467, + -1040,-1422,-1794,-2149,-2478,-2774,-3028,-3236,-3393,-3494,-3538,-3524,-3451,-3321,-3138,-2906,-2631,-2318,-1975,-1610,-1231,-849,-470,-106,237,551,826,1058,1241,1371,1443,1458,1414,1313,1156,948,694,398,69,-286,-658, + -1205,-1587,-1960,-2315,-2644,-2939,-3194,-3402,-3558,-3660,-3703,-3689,-3616,-3487,-3304,-3072,-2796,-2483,-2140,-1775,-1397,-1014,-636,-271,72,385,661,893,1076,1205,1278,1293,1249,1148,991,783,528,233,-96,-451,-824, + -1342,-1724,-2097,-2452,-2781,-3076,-3331,-3539,-3695,-3797,-3841,-3826,-3753,-3624,-3441,-3209,-2933,-2620,-2277,-1912,-1534,-1151,-773,-408,-65,248,524,756,939,1068,1141,1156,1112,1010,854,646,391,96,-233,-588,-961, + -1450,-1831,-2204,-2559,-2888,-3183,-3438,-3646,-3803,-3904,-3948,-3933,-3860,-3731,-3548,-3316,-3040,-2727,-2384,-2019,-1641,-1258,-880,-515,-172,141,417,649,831,961,1034,1048,1004,903,746,538,284,-12,-341,-696,-1068, + -1526,-1908,-2280,-2635,-2964,-3260,-3514,-3722,-3879,-3980,-4024,-4009,-3937,-3807,-3624,-3392,-3117,-2803,-2460,-2096,-1717,-1335,-956,-591,-248,65,340,572,755,885,958,972,928,827,670,462,208,-88,-417,-772,-1144, + -1570,-1951,-2324,-2679,-3008,-3303,-3558,-3766,-3923,-4024,-4068,-4053,-3980,-3851,-3668,-3436,-3160,-2847,-2504,-2139,-1761,-1378,-1000,-635,-292,21,297,529,711,841,914,928,885,783,627,418,164,-131,-460,-815,-1188, + -1581,-1962,-2335,-2690,-3019,-3314,-3569,-3777,-3934,-4035,-4079,-4064,-3991,-3862,-3679,-3447,-3171,-2858,-2515,-2150,-1772,-1389,-1011,-646,-303,10,286,518,700,830,903,917,874,772,616,407,153,-142,-471,-826,-1199, + -1559,-1940,-2313,-2668,-2997,-3292,-3547,-3755,-3912,-4013,-4057,-4042,-3969,-3840,-3657,-3425,-3149,-2836,-2493,-2128,-1750,-1367,-989,-624,-281,32,308,540,722,852,925,939,895,794,637,429,175,-120,-449,-804,-1177, + -1504,-1886,-2258,-2613,-2942,-3238,-3492,-3700,-3857,-3958,-4002,-3988,-3915,-3785,-3603,-3370,-3095,-2782,-2439,-2074,-1695,-1313,-934,-570,-227,86,362,594,777,907,979,994,950,849,692,484,229,-66,-395,-750,-1122, + -1417,-1799,-2172,-2527,-2856,-3151,-3406,-3614,-3770,-3872,-3916,-3901,-3828,-3699,-3516,-3284,-3008,-2695,-2352,-1987,-1609,-1226,-848,-483,-140,173,449,681,864,993,1066,1081,1037,935,779,571,316,21,-308,-663,-1036, + -1300,-1682,-2054,-2409,-2738,-3034,-3288,-3496,-3653,-3754,-3798,-3783,-3711,-3581,-3398,-3166,-2891,-2578,-2235,-1870,-1491,-1109,-730,-365,-22,291,566,798,981,1111,1184,1198,1154,1053,896,688,434,138,-191,-546,-918, + -1153,-1535,-1908,-2263,-2592,-2887,-3141,-3350,-3506,-3607,-3651,-3637,-3564,-3434,-3252,-3020,-2744,-2431,-2088,-1723,-1345,-962,-584,-219,124,437,713,945,1128,1257,1330,1345,1301,1200,1043,835,580,285,-44,-399,-772, + -979,-1361,-1733,-2088,-2417,-2713,-2967,-3175,-3332,-3433,-3477,-3463,-3390,-3260,-3078,-2846,-2570,-2257,-1914,-1549,-1171,-788,-409,-45,298,611,887,1119,1302,1432,1504,1519,1475,1374,1217,1009,754,459,130,-225,-598, + -780,-1162,-1534,-1889,-2218,-2514,-2768,-2976,-3133,-3234,-3278,-3263,-3191,-3061,-2878,-2646,-2371,-2058,-1715,-1350,-971,-589,-210,155,498,811,1086,1318,1501,1631,1704,1718,1674,1573,1416,1208,954,658,329,-26,-398, + -558,-940,-1313,-1668,-1997,-2292,-2547,-2755,-2911,-3013,-3057,-3042,-2969,-2840,-2657,-2425,-2149,-1836,-1493,-1128,-750,-367,11,376,719,1032,1308,1540,1723,1852,1925,1940,1896,1794,1638,1430,1175,880,551,196,-177, + -317,-699,-1072,-1427,-1756,-2051,-2306,-2514,-2670,-2772,-2816,-2801,-2728,-2599,-2416,-2184,-1908,-1595,-1252,-887,-509,-126,252,617,960,1273,1549,1781,1964,2093,2166,2181,2137,2035,1879,1671,1416,1121,792,437,64, + -60,-442,-814,-1169,-1498,-1794,-2048,-2256,-2413,-2514,-2558,-2544,-2471,-2341,-2158,-1926,-1651,-1338,-995,-630,-251,131,510,875,1218,1531,1806,2038,2221,2351,2423,2438,2394,2293,2136,1928,1674,1378,1049,694,322, + 210,-171,-544,-899,-1228,-1523,-1778,-1986,-2143,-2244,-2288,-2273,-2200,-2071,-1888,-1656,-1380,-1067,-724,-359,19,402,780,1145,1488,1801,2077,2309,2492,2621,2694,2708,2665,2563,2407,2198,1944,1649,1320,965,592, + 490,108,-264,-619,-948,-1244,-1498,-1706,-1863,-1964,-2008,-1994,-1921,-1791,-1609,-1376,-1101,-788,-445,-80,299,681,1060,1424,1767,2081,2356,2588,2771,2901,2973,2988,2944,2843,2686,2478,2223,1928,1599,1244,872, + 775,394,21,-334,-663,-958,-1213,-1421,-1578,-1679,-1723,-1708,-1635,-1506,-1323,-1091,-815,-502,-159,206,584,967,1345,1710,2053,2366,2642,2874,3056,3186,3259,3273,3229,3128,2971,2763,2509,2213,1884,1529,1157, + 1062,681,308,-47,-376,-671,-926,-1134,-1290,-1392,-1436,-1421,-1348,-1219,-1036,-804,-528,-215,128,493,871,1254,1632,1997,2340,2653,2929,3161,3344,3473,3546,3561,3517,3415,3259,3051,2796,2501,2172,1817,1444, + 1348,966,593,238,-91,-386,-641,-849,-1005,-1107,-1151,-1136,-1063,-934,-751,-519,-243,70,413,778,1156,1539,1917,2282,2625,2938,3214,3446,3629,3758,3831,3846,3802,3701,3544,3336,3081,2786,2457,2102,1729, + 1627,1246,873,518,189,-106,-361,-569,-726,-827,-871,-856,-783,-654,-471,-239,37,350,693,1058,1436,1819,2197,2562,2905,3218,3494,3726,3909,4038,4111,4125,4082,3980,3824,3616,3361,3066,2737,2382,2009, + 1898,1516,1143,788,459,164,-91,-299,-455,-557,-601,-586,-513,-384,-201,31,307,620,963,1328,1706,2089,2467,2832,3175,3488,3764,3996,4179,4308,4381,4396,4352,4250,4094,3886,3631,3336,3007,2652,2279, + 2155,1773,1401,1046,717,421,167,-41,-198,-299,-343,-329,-256,-126,57,289,564,877,1220,1585,1964,2346,2725,3089,3432,3746,4021,4253,4436,4566,4638,4653,4609,4508,4351,4143,3889,3593,3264,2909,2537, + 2396,2014,1642,1287,958,662,408,200,43,-58,-102,-88,-15,115,298,530,805,1118,1461,1826,2205,2587,2966,3331,3674,3987,4262,4494,4677,4807,4879,4894,4850,4749,4592,4384,4130,3834,3505,3150,2778, + 2618,2236,1863,1508,1179,884,629,421,265,163,119,134,207,336,519,751,1027,1340,1683,2048,2426,2809,3187,3552,3895,4208,4484,4716,4899,5028,5101,5116,5072,4970,4814,4606,4351,4056,3727,3372,2999, + 2817,2435,2062,1707,1378,1083,828,620,464,362,319,333,406,535,718,950,1226,1539,1882,2247,2625,3008,3386,3751,4094,4407,4683,4915,5098,5227,5300,5315,5271,5170,5013,4805,4550,4255,3926,3571,3198, + 2991,2609,2236,1881,1552,1257,1003,794,638,537,493,507,580,710,892,1124,1400,1713,2056,2421,2799,3182,3560,3925,4268,4581,4857,5089,5272,5401,5474,5489,5445,5344,5187,4979,4724,4429,4100,3745,3372, + 3138,2756,2383,2028,1699,1404,1149,941,785,683,639,654,727,856,1039,1271,1547,1860,2203,2568,2946,3329,3707,4072,4415,4728,5004,5236,5419,5548,5621,5636,5592,5490,5334,5126,4871,4576,4247,3892,3519, + 3255,2873,2501,2146,1817,1521,1267,1059,902,801,757,771,844,974,1157,1389,1664,1977,2320,2685,3064,3446,3825,4190,4533,4846,5121,5353,5536,5666,5739,5753,5709,5608,5451,5243,4989,4693,4364,4009,3637, + 3342,2960,2587,2232,1903,1608,1353,1145,989,887,843,858,931,1060,1243,1475,1751,2064,2407,2772,3150,3533,3911,4276,4619,4932,5208,5440,5623,5752,5825,5840,5796,5695,5538,5330,5075,4780,4451,4096,3723, + 3396,3015,2642,2287,1958,1663,1408,1200,1043,942,898,913,986,1115,1298,1530,1806,2119,2462,2827,3205,3588,3966,4331,4674,4987,5263,5495,5678,5807,5880,5894,5851,5749,5593,5385,5130,4835,4506,4151,3778, + 3418,3037,2664,2309,1980,1685,1430,1222,1065,964,920,935,1008,1137,1320,1552,1828,2141,2484,2849,3227,3610,3988,4353,4696,5009,5285,5517,5700,5829,5902,5916,5873,5771,5615,5407,5152,4857,4528,4173,3800, + 3407,3026,2653,2298,1969,1674,1419,1211,1054,953,909,924,997,1126,1309,1541,1817,2130,2473,2838,3216,3599,3977,4342,4685,4998,5274,5506,5689,5818,5891,5905,5862,5760,5604,5396,5141,4846,4517,4162,3789, + 3363,2982,2609,2254,1925,1630,1375,1167,1011,909,865,880,953,1082,1265,1497,1773,2086,2429,2794,3172,3555,3933,4298,4641,4954,5230,5462,5645,5774,5847,5862,5818,5716,5560,5352,5097,4802,4473,4118,3745, + 3287,2906,2533,2178,1849,1554,1299,1091,935,833,789,804,877,1006,1189,1421,1697,2010,2353,2718,3096,3479,3857,4222,4565,4878,5154,5386,5569,5698,5771,5786,5742,5640,5484,5276,5021,4726,4397,4042,3669, + 3180,2798,2426,2071,1742,1446,1192,984,827,726,682,697,769,899,1082,1314,1589,1902,2245,2610,2989,3371,3750,4115,4458,4771,5046,5278,5461,5591,5664,5678,5634,5533,5376,5168,4914,4618,4289,3934,3562, + 3043,2661,2289,1934,1605,1309,1055,847,690,589,545,559,632,762,944,1176,1452,1765,2108,2473,2851,3234,3612,3977,4320,4633,4909,5141,5324,5453,5526,5541,5497,5396,5239,5031,4776,4481,4152,3797,3424, + 2878,2496,2123,1768,1439,1144,889,681,525,423,379,394,467,596,779,1011,1287,1600,1943,2308,2686,3069,3447,3812,4155,4468,4744,4976,5159,5288,5361,5376,5332,5230,5074,4866,4611,4316,3987,3632,3259, + + -661,-1043,-1415,-1770,-2099,-2395,-2649,-2857,-3014,-3115,-3159,-3145,-3072,-2942,-2760,-2528,-2252,-1939,-1596,-1231,-852,-470,-91,273,616,929,1205,1437,1620,1750,1822,1837,1793,1692,1535,1327,1072,777,448,93,-279, + -852,-1234,-1606,-1961,-2290,-2586,-2840,-3048,-3205,-3306,-3350,-3336,-3263,-3133,-2951,-2719,-2443,-2130,-1787,-1422,-1044,-661,-283,82,425,738,1014,1246,1429,1558,1631,1646,1602,1501,1344,1136,881,586,257,-98,-471, + -1017,-1399,-1772,-2127,-2456,-2751,-3006,-3214,-3370,-3472,-3516,-3501,-3428,-3299,-3116,-2884,-2608,-2295,-1952,-1587,-1209,-826,-448,-83,260,573,849,1081,1264,1393,1466,1481,1437,1335,1179,971,716,421,92,-263,-636, + -1155,-1536,-1909,-2264,-2593,-2888,-3143,-3351,-3507,-3609,-3653,-3638,-3565,-3436,-3253,-3021,-2745,-2432,-2089,-1724,-1346,-963,-585,-220,123,436,712,944,1127,1256,1329,1344,1300,1198,1042,834,579,284,-45,-400,-773, + -1262,-1644,-2016,-2371,-2700,-2996,-3250,-3458,-3615,-3716,-3760,-3745,-3673,-3543,-3360,-3128,-2853,-2540,-2197,-1832,-1453,-1071,-692,-327,16,329,604,836,1019,1149,1222,1236,1192,1091,934,726,472,176,-153,-508,-880, + -1338,-1720,-2092,-2447,-2776,-3072,-3326,-3534,-3691,-3792,-3836,-3822,-3749,-3619,-3436,-3204,-2929,-2616,-2273,-1908,-1529,-1147,-768,-404,-61,253,528,760,943,1073,1145,1160,1116,1015,858,650,396,100,-229,-584,-956, + -1382,-1764,-2136,-2491,-2820,-3115,-3370,-3578,-3735,-3836,-3880,-3865,-3793,-3663,-3480,-3248,-2973,-2659,-2316,-1952,-1573,-1191,-812,-447,-104,209,484,717,899,1029,1102,1116,1072,971,814,606,352,56,-273,-628,-1000, + -1393,-1775,-2147,-2502,-2831,-3126,-3381,-3589,-3746,-3847,-3891,-3876,-3804,-3674,-3491,-3259,-2984,-2670,-2327,-1963,-1584,-1202,-823,-458,-115,198,473,706,888,1018,1091,1105,1061,960,803,595,341,45,-284,-639,-1011, + -1371,-1753,-2125,-2480,-2809,-3104,-3359,-3567,-3724,-3825,-3869,-3854,-3782,-3652,-3469,-3237,-2962,-2648,-2305,-1941,-1562,-1180,-801,-436,-93,220,495,728,910,1040,1113,1127,1083,982,825,617,363,67,-262,-617,-989, + -1316,-1698,-2071,-2426,-2755,-3050,-3304,-3513,-3669,-3771,-3814,-3800,-3727,-3597,-3415,-3183,-2907,-2594,-2251,-1886,-1508,-1125,-747,-382,-39,274,550,782,965,1094,1167,1182,1138,1037,880,672,417,122,-207,-562,-935, + -1230,-1611,-1984,-2339,-2668,-2963,-3218,-3426,-3582,-3684,-3728,-3713,-3640,-3511,-3328,-3096,-2820,-2507,-2164,-1799,-1421,-1038,-660,-295,48,361,637,869,1052,1181,1254,1269,1225,1123,967,759,504,209,-120,-475,-848, + -1112,-1494,-1866,-2221,-2550,-2846,-3100,-3308,-3465,-3566,-3610,-3596,-3523,-3393,-3211,-2978,-2703,-2390,-2047,-1682,-1303,-921,-542,-178,165,478,754,986,1169,1299,1371,1386,1342,1241,1084,876,621,326,-3,-358,-730, + -965,-1347,-1720,-2075,-2404,-2699,-2954,-3162,-3318,-3420,-3464,-3449,-3376,-3247,-3064,-2832,-2556,-2243,-1900,-1535,-1157,-774,-396,-31,312,625,901,1133,1316,1445,1518,1533,1489,1387,1231,1023,768,473,144,-211,-584, + -791,-1173,-1546,-1901,-2230,-2525,-2779,-2988,-3144,-3246,-3289,-3275,-3202,-3073,-2890,-2658,-2382,-2069,-1726,-1361,-983,-600,-222,143,486,799,1075,1307,1490,1619,1692,1707,1663,1562,1405,1197,942,647,318,-37,-410, + -592,-974,-1346,-1701,-2030,-2326,-2580,-2788,-2945,-3046,-3090,-3076,-3003,-2873,-2691,-2458,-2183,-1870,-1527,-1162,-783,-401,-22,342,685,998,1274,1506,1689,1819,1891,1906,1862,1761,1604,1396,1141,846,517,162,-210, + -371,-752,-1125,-1480,-1809,-2104,-2359,-2567,-2723,-2825,-2869,-2854,-2781,-2652,-2469,-2237,-1961,-1648,-1305,-940,-562,-179,199,564,907,1220,1496,1728,1911,2040,2113,2128,2084,1982,1826,1618,1363,1068,739,384,11, + -130,-511,-884,-1239,-1568,-1863,-2118,-2326,-2482,-2584,-2628,-2613,-2540,-2411,-2228,-1996,-1720,-1407,-1064,-699,-321,62,440,805,1148,1461,1737,1969,2152,2281,2354,2369,2325,2223,2067,1859,1604,1309,980,625,252, + 128,-254,-626,-981,-1310,-1606,-1860,-2068,-2225,-2326,-2370,-2356,-2283,-2153,-1971,-1739,-1463,-1150,-807,-442,-64,319,697,1062,1405,1718,1994,2226,2409,2538,2611,2626,2582,2481,2324,2116,1861,1566,1237,882,509, + 398,17,-356,-711,-1040,-1335,-1590,-1798,-1955,-2056,-2100,-2085,-2012,-1883,-1700,-1468,-1192,-879,-536,-171,207,590,968,1333,1676,1989,2265,2497,2679,2809,2882,2896,2852,2751,2594,2386,2132,1836,1507,1152,780, + 678,296,-77,-432,-761,-1056,-1310,-1519,-1675,-1777,-1820,-1806,-1733,-1603,-1421,-1189,-913,-600,-257,108,486,869,1247,1612,1955,2268,2544,2776,2959,3088,3161,3176,3132,3031,2874,2666,2411,2116,1787,1432,1059, + 963,581,209,-146,-475,-771,-1025,-1233,-1390,-1491,-1535,-1520,-1448,-1318,-1135,-903,-628,-314,29,393,772,1154,1533,1898,2241,2554,2829,3061,3244,3374,3447,3461,3417,3316,3159,2951,2697,2401,2072,1717,1345, + 1250,869,496,141,-188,-483,-738,-946,-1103,-1204,-1248,-1233,-1160,-1031,-848,-616,-340,-27,316,681,1059,1442,1820,2185,2528,2841,3117,3349,3531,3661,3734,3748,3705,3603,3447,3238,2984,2689,2360,2005,1632, + 1536,1154,781,426,97,-198,-453,-661,-817,-919,-963,-948,-875,-746,-563,-331,-55,258,601,966,1344,1727,2105,2470,2813,3126,3402,3634,3817,3946,4019,4034,3990,3888,3732,3524,3269,2974,2645,2290,1917, + 1815,1434,1061,706,377,82,-173,-381,-538,-639,-683,-668,-595,-466,-283,-51,225,538,881,1246,1624,2007,2385,2750,3093,3406,3682,3914,4096,4226,4299,4313,4269,4168,4011,3803,3549,3253,2924,2569,2197, + 2085,1704,1331,976,647,352,97,-111,-267,-369,-413,-398,-325,-196,-13,219,495,808,1151,1516,1894,2277,2655,3020,3363,3676,3952,4184,4367,4496,4569,4584,4540,4438,4282,4074,3819,3524,3195,2840,2467, + 2343,1961,1588,1233,904,609,355,147,-10,-111,-155,-141,-68,62,244,476,752,1065,1408,1773,2151,2534,2912,3277,3620,3933,4209,4441,4624,4753,4826,4841,4797,4696,4539,4331,4076,3781,3452,3097,2724, + 2584,2202,1830,1475,1146,850,596,388,231,130,86,100,173,303,485,717,993,1306,1649,2014,2392,2775,3153,3518,3861,4174,4450,4682,4865,4994,5067,5082,5038,4937,4780,4572,4317,4022,3693,3338,2965, + 2805,2424,2051,1696,1367,1072,817,609,453,351,307,322,395,524,707,939,1215,1528,1871,2236,2614,2997,3375,3740,4083,4396,4672,4904,5087,5216,5289,5304,5260,5158,5002,4794,4539,4244,3915,3560,3187, + 3005,2623,2250,1895,1566,1271,1016,808,652,550,506,521,594,723,906,1138,1414,1727,2070,2435,2813,3196,3574,3939,4282,4595,4871,5103,5286,5415,5488,5503,5459,5357,5201,4993,4738,4443,4114,3759,3386, + 3179,2797,2424,2069,1740,1445,1190,982,826,724,680,695,768,897,1080,1312,1588,1901,2244,2609,2987,3370,3748,4113,4456,4769,5045,5277,5460,5589,5662,5677,5633,5531,5375,5167,4912,4617,4288,3933,3560, + 3325,2944,2571,2216,1887,1592,1337,1129,973,871,827,842,915,1044,1227,1459,1735,2048,2391,2756,3134,3517,3895,4260,4603,4916,5192,5424,5607,5736,5809,5824,5780,5678,5522,5314,5059,4764,4435,4080,3707, + 3443,3061,2689,2334,2005,1709,1455,1247,1090,989,945,959,1032,1162,1344,1576,1852,2165,2508,2873,3252,3634,4013,4377,4720,5033,5309,5541,5724,5854,5926,5941,5897,5796,5639,5431,5176,4881,4552,4197,3825, + 3530,3148,2775,2420,2091,1796,1541,1333,1177,1075,1031,1046,1119,1248,1431,1663,1939,2252,2595,2960,3338,3721,4099,4464,4807,5120,5396,5628,5811,5940,6013,6028,5984,5882,5726,5518,5263,4968,4639,4284,3911, + 3584,3203,2830,2475,2146,1851,1596,1388,1231,1130,1086,1101,1174,1303,1486,1718,1994,2307,2650,3015,3393,3776,4154,4519,4862,5175,5451,5683,5865,5995,6068,6082,6038,5937,5780,5572,5318,5023,4694,4339,3966, + 3606,3225,2852,2497,2168,1873,1618,1410,1253,1152,1108,1123,1196,1325,1508,1740,2016,2329,2672,3037,3415,3798,4176,4541,4884,5197,5473,5705,5887,6017,6090,6104,6060,5959,5802,5594,5340,5044,4715,4360,3988, + 3595,3214,2841,2486,2157,1862,1607,1399,1242,1141,1097,1112,1185,1314,1497,1729,2005,2318,2661,3026,3404,3787,4165,4530,4873,5186,5462,5694,5876,6006,6079,6093,6049,5948,5791,5583,5329,5033,4704,4349,3977, + 3551,3170,2797,2442,2113,1818,1563,1355,1198,1097,1053,1068,1141,1270,1453,1685,1961,2274,2617,2982,3360,3743,4121,4486,4829,5142,5418,5650,5833,5962,6035,6050,6006,5904,5748,5540,5285,4990,4661,4306,3933, + 3475,3094,2721,2366,2037,1742,1487,1279,1122,1021,977,992,1065,1194,1377,1609,1885,2198,2541,2906,3284,3667,4045,4410,4753,5066,5342,5574,5757,5886,5959,5973,5930,5828,5672,5463,5209,4914,4585,4230,3857, + 3368,2986,2614,2259,1930,1634,1380,1172,1015,914,870,884,957,1087,1269,1502,1777,2090,2433,2798,3177,3559,3938,4302,4645,4959,5234,5466,5649,5779,5851,5866,5822,5721,5564,5356,5101,4806,4477,4122,3750, + 3231,2849,2476,2121,1792,1497,1242,1034,878,776,733,747,820,949,1132,1364,1640,1953,2296,2661,3039,3422,3800,4165,4508,4821,5097,5329,5512,5641,5714,5729,5685,5584,5427,5219,4964,4669,4340,3985,3612, + 3065,2684,2311,1956,1627,1332,1077,869,713,611,567,582,655,784,967,1199,1475,1788,2131,2496,2874,3257,3635,4000,4343,4656,4932,5164,5347,5476,5549,5564,5520,5418,5262,5054,4799,4504,4175,3820,3447, + + -470,-852,-1224,-1579,-1908,-2203,-2458,-2666,-2823,-2924,-2968,-2953,-2881,-2751,-2568,-2336,-2060,-1747,-1404,-1040,-661,-279,100,465,808,1121,1396,1629,1811,1941,2014,2028,1984,1883,1726,1518,1264,968,639,284,-88, + -661,-1043,-1415,-1770,-2099,-2395,-2649,-2857,-3014,-3115,-3159,-3144,-3072,-2942,-2759,-2527,-2252,-1939,-1596,-1231,-852,-470,-91,274,617,930,1205,1437,1620,1750,1823,1837,1793,1692,1535,1327,1073,777,448,93,-279, + -826,-1208,-1580,-1935,-2264,-2560,-2814,-3022,-3179,-3280,-3324,-3310,-3237,-3107,-2925,-2693,-2417,-2104,-1761,-1396,-1018,-635,-257,108,451,764,1040,1272,1455,1584,1657,1672,1628,1527,1370,1162,907,612,283,-72,-445, + -963,-1345,-1718,-2073,-2402,-2697,-2952,-3160,-3316,-3418,-3462,-3447,-3374,-3245,-3062,-2830,-2554,-2241,-1898,-1533,-1155,-772,-394,-29,314,627,903,1135,1318,1447,1520,1535,1491,1389,1233,1025,770,475,146,-209,-582, + -1071,-1452,-1825,-2180,-2509,-2804,-3059,-3267,-3424,-3525,-3569,-3554,-3481,-3352,-3169,-2937,-2661,-2348,-2005,-1640,-1262,-879,-501,-136,207,520,796,1028,1211,1340,1413,1427,1384,1282,1126,918,663,368,39,-316,-689, + -1147,-1528,-1901,-2256,-2585,-2880,-3135,-3343,-3500,-3601,-3645,-3630,-3557,-3428,-3245,-3013,-2737,-2424,-2081,-1716,-1338,-955,-577,-212,131,444,720,952,1134,1264,1337,1351,1307,1206,1049,841,587,291,-38,-393,-765, + -1191,-1572,-1945,-2300,-2629,-2924,-3179,-3387,-3544,-3645,-3689,-3674,-3601,-3472,-3289,-3057,-2781,-2468,-2125,-1760,-1382,-999,-621,-256,87,400,676,908,1091,1220,1293,1308,1264,1162,1006,798,543,248,-81,-436,-809, + -1202,-1583,-1956,-2311,-2640,-2935,-3190,-3398,-3555,-3656,-3700,-3685,-3612,-3483,-3300,-3068,-2792,-2479,-2136,-1771,-1393,-1010,-632,-267,76,389,665,897,1080,1209,1282,1297,1253,1151,995,787,532,237,-92,-447,-820, + -1180,-1561,-1934,-2289,-2618,-2913,-3168,-3376,-3533,-3634,-3678,-3663,-3590,-3461,-3278,-3046,-2770,-2457,-2114,-1749,-1371,-988,-610,-245,98,411,687,919,1102,1231,1304,1318,1275,1173,1017,809,554,259,-70,-425,-798, + -1125,-1507,-1879,-2234,-2563,-2859,-3113,-3321,-3478,-3579,-3623,-3609,-3536,-3406,-3223,-2991,-2716,-2403,-2060,-1695,-1316,-934,-555,-190,153,466,741,973,1156,1286,1359,1373,1329,1228,1071,863,609,313,-16,-371,-743, + -1038,-1420,-1793,-2148,-2477,-2772,-3027,-3235,-3391,-3493,-3537,-3522,-3449,-3320,-3137,-2905,-2629,-2316,-1973,-1608,-1230,-847,-469,-104,239,552,828,1060,1243,1372,1445,1460,1416,1314,1158,950,695,400,71,-284,-657, + -921,-1302,-1675,-2030,-2359,-2654,-2909,-3117,-3274,-3375,-3419,-3404,-3332,-3202,-3019,-2787,-2511,-2198,-1855,-1491,-1112,-730,-351,14,357,670,946,1178,1360,1490,1563,1577,1533,1432,1275,1067,813,517,188,-167,-539, + -774,-1156,-1528,-1883,-2212,-2508,-2762,-2970,-3127,-3228,-3272,-3258,-3185,-3055,-2873,-2641,-2365,-2052,-1709,-1344,-965,-583,-204,160,503,816,1092,1324,1507,1637,1709,1724,1680,1579,1422,1214,959,664,335,-20,-392, + -600,-982,-1354,-1709,-2038,-2334,-2588,-2796,-2953,-3054,-3098,-3084,-3011,-2881,-2698,-2466,-2191,-1878,-1535,-1170,-791,-409,-30,335,678,991,1266,1498,1681,1811,1883,1898,1854,1753,1596,1388,1134,838,509,154,-218, + -401,-783,-1155,-1510,-1839,-2134,-2389,-2597,-2754,-2855,-2899,-2884,-2812,-2682,-2499,-2267,-1991,-1678,-1335,-971,-592,-210,169,534,877,1190,1466,1698,1880,2010,2083,2097,2053,1952,1795,1587,1333,1037,708,353,-19, + -179,-561,-934,-1289,-1618,-1913,-2168,-2376,-2532,-2634,-2677,-2663,-2590,-2461,-2278,-2046,-1770,-1457,-1114,-749,-371,12,390,755,1098,1411,1687,1919,2102,2231,2304,2319,2275,2174,2017,1809,1554,1259,930,575,202, + 62,-320,-693,-1048,-1377,-1672,-1927,-2135,-2291,-2393,-2436,-2422,-2349,-2220,-2037,-1805,-1529,-1216,-873,-508,-130,253,631,996,1339,1652,1928,2160,2343,2472,2545,2560,2516,2415,2258,2050,1795,1500,1171,816,443, + 319,-63,-435,-790,-1119,-1414,-1669,-1877,-2034,-2135,-2179,-2164,-2092,-1962,-1779,-1547,-1272,-958,-615,-251,128,510,889,1254,1597,1910,2185,2418,2600,2730,2803,2817,2773,2672,2515,2307,2053,1757,1428,1073,701, + 589,208,-165,-520,-849,-1144,-1399,-1607,-1763,-1865,-1909,-1894,-1821,-1692,-1509,-1277,-1001,-688,-345,20,398,781,1159,1524,1867,2180,2456,2688,2871,3000,3073,3088,3044,2942,2786,2578,2323,2028,1699,1344,971, + 869,487,115,-240,-569,-865,-1119,-1327,-1484,-1585,-1629,-1615,-1542,-1412,-1229,-997,-722,-409,-66,299,678,1060,1439,1804,2147,2460,2735,2967,3150,3280,3353,3367,3323,3222,3065,2857,2603,2307,1978,1623,1251, + 1154,773,400,45,-284,-579,-834,-1042,-1199,-1300,-1344,-1329,-1256,-1127,-944,-712,-436,-123,220,585,963,1346,1724,2089,2432,2745,3021,3253,3436,3565,3638,3652,3609,3507,3351,3143,2888,2593,2264,1909,1536, + 1441,1060,687,332,3,-292,-547,-755,-911,-1013,-1057,-1042,-969,-840,-657,-425,-149,164,507,872,1250,1633,2011,2376,2719,3032,3308,3540,3723,3852,3925,3940,3896,3794,3638,3430,3175,2880,2551,2196,1823, + 1727,1345,972,617,288,-7,-261,-470,-626,-728,-771,-757,-684,-555,-372,-140,136,449,792,1157,1535,1918,2296,2661,3004,3317,3593,3825,4008,4137,4210,4225,4181,4080,3923,3715,3460,3165,2836,2481,2108, + 2006,1625,1252,897,568,273,18,-190,-346,-448,-492,-477,-404,-275,-92,140,416,729,1072,1437,1815,2198,2576,2941,3284,3597,3873,4105,4288,4417,4490,4505,4461,4359,4203,3995,3740,3445,3116,2761,2388, + 2277,1895,1522,1167,838,543,288,80,-76,-178,-222,-207,-134,-5,178,410,686,999,1342,1707,2085,2468,2846,3211,3554,3867,4143,4375,4558,4687,4760,4775,4731,4630,4473,4265,4010,3715,3386,3031,2658, + 2534,2152,1780,1425,1096,800,546,338,181,80,36,51,123,253,436,668,943,1256,1599,1964,2343,2725,3104,3469,3812,4125,4400,4632,4815,4945,5018,5032,4988,4887,4730,4522,4268,3972,3643,3288,2916, + 2775,2393,2021,1666,1337,1041,787,579,422,321,277,292,364,494,677,909,1184,1498,1841,2205,2584,2966,3345,3710,4053,4366,4641,4873,5056,5186,5259,5273,5229,5128,4971,4763,4509,4213,3884,3529,3157, + 2997,2615,2242,1887,1558,1263,1008,800,644,542,498,513,586,715,898,1130,1406,1719,2062,2427,2805,3188,3566,3931,4274,4587,4863,5095,5278,5407,5480,5495,5451,5349,5193,4985,4730,4435,4106,3751,3378, + 3196,2814,2441,2086,1757,1462,1208,999,843,742,698,712,785,915,1097,1329,1605,1918,2261,2626,3004,3387,3765,4130,4473,4786,5062,5294,5477,5606,5679,5694,5650,5549,5392,5184,4929,4634,4305,3950,3577, + 3370,2988,2616,2261,1932,1636,1382,1174,1017,916,872,886,959,1089,1271,1503,1779,2092,2435,2800,3179,3561,3940,4304,4647,4960,5236,5468,5651,5781,5853,5868,5824,5723,5566,5358,5103,4808,4479,4124,3752, + 3517,3135,2762,2407,2078,1783,1528,1320,1164,1062,1018,1033,1106,1235,1418,1650,1926,2239,2582,2947,3325,3708,4086,4451,4794,5107,5383,5615,5798,5927,6000,6015,5971,5869,5713,5505,5250,4955,4626,4271,3898, + 3634,3252,2880,2525,2196,1901,1646,1438,1281,1180,1136,1151,1223,1353,1536,1768,2044,2357,2700,3064,3443,3825,4204,4569,4912,5225,5500,5733,5915,6045,6118,6132,6088,5987,5830,5622,5368,5072,4743,4388,4016, + 3721,3339,2966,2611,2282,1987,1733,1524,1368,1266,1223,1237,1310,1440,1622,1854,2130,2443,2786,3151,3529,3912,4290,4655,4998,5311,5587,5819,6002,6131,6204,6219,6175,6074,5917,5709,5454,5159,4830,4475,4102, + 3775,3394,3021,2666,2337,2042,1787,1579,1423,1321,1277,1292,1365,1494,1677,1909,2185,2498,2841,3206,3584,3967,4345,4710,5053,5366,5642,5874,6057,6186,6259,6274,6230,6128,5972,5764,5509,5214,4885,4530,4157, + 3797,3416,3043,2688,2359,2064,1809,1601,1445,1343,1299,1314,1387,1516,1699,1931,2207,2520,2863,3228,3606,3989,4367,4732,5075,5388,5664,5896,6079,6208,6281,6296,6252,6150,5994,5786,5531,5236,4907,4552,4179, + 3786,3405,3032,2677,2348,2053,1798,1590,1434,1332,1288,1303,1376,1505,1688,1920,2196,2509,2852,3217,3595,3978,4356,4721,5064,5377,5653,5885,6068,6197,6270,6285,6241,6139,5983,5775,5520,5225,4896,4541,4168, + 3743,3361,2988,2633,2304,2009,1754,1546,1390,1288,1244,1259,1332,1461,1644,1876,2152,2465,2808,3173,3551,3934,4312,4677,5020,5333,5609,5841,6024,6153,6226,6241,6197,6095,5939,5731,5476,5181,4852,4497,4124, + 3666,3285,2912,2557,2228,1933,1678,1470,1314,1212,1168,1183,1256,1385,1568,1800,2076,2389,2732,3097,3475,3858,4236,4601,4944,5257,5533,5765,5948,6077,6150,6165,6121,6019,5863,5655,5400,5105,4776,4421,4048, + 3559,3178,2805,2450,2121,1826,1571,1363,1206,1105,1061,1076,1148,1278,1461,1693,1969,2282,2625,2989,3368,3751,4129,4494,4837,5150,5426,5658,5840,5970,6043,6057,6013,5912,5755,5547,5293,4997,4668,4313,3941, + 3422,3040,2668,2313,1984,1688,1434,1226,1069,968,924,938,1011,1141,1324,1556,1831,2144,2487,2852,3231,3613,3992,4356,4699,5013,5288,5520,5703,5833,5905,5920,5876,5775,5618,5410,5156,4860,4531,4176,3804, + 3257,2875,2502,2147,1818,1523,1268,1060,904,802,759,773,846,975,1158,1390,1666,1979,2322,2687,3065,3448,3826,4191,4534,4847,5123,5355,5538,5667,5740,5755,5711,5610,5453,5245,4990,4695,4366,4011,3638, + + -280,-661,-1034,-1389,-1718,-2013,-2268,-2476,-2633,-2734,-2778,-2763,-2690,-2561,-2378,-2146,-1870,-1557,-1214,-849,-471,-88,290,655,998,1311,1587,1819,2001,2131,2204,2218,2174,2073,1917,1708,1454,1159,830,475,102, + -471,-852,-1225,-1580,-1909,-2204,-2459,-2667,-2824,-2925,-2969,-2954,-2881,-2752,-2569,-2337,-2061,-1748,-1405,-1040,-662,-279,99,464,807,1120,1396,1628,1810,1940,2013,2027,1983,1882,1725,1517,1263,967,638,283,-89, + -636,-1018,-1390,-1745,-2074,-2370,-2624,-2832,-2989,-3090,-3134,-3120,-3047,-2917,-2734,-2502,-2227,-1914,-1571,-1206,-827,-445,-66,298,641,955,1230,1462,1645,1775,1847,1862,1818,1717,1560,1352,1098,802,473,118,-254, + -773,-1155,-1528,-1883,-2212,-2507,-2761,-2970,-3126,-3228,-3271,-3257,-3184,-3055,-2872,-2640,-2364,-2051,-1708,-1343,-965,-582,-204,161,504,817,1093,1325,1508,1637,1710,1725,1681,1580,1423,1215,960,665,336,-19,-392, + -881,-1262,-1635,-1990,-2319,-2614,-2869,-3077,-3233,-3335,-3379,-3364,-3291,-3162,-2979,-2747,-2471,-2158,-1815,-1450,-1072,-689,-311,54,397,710,986,1218,1401,1530,1603,1618,1574,1472,1316,1108,853,558,229,-126,-499, + -957,-1338,-1711,-2066,-2395,-2690,-2945,-3153,-3310,-3411,-3455,-3440,-3367,-3238,-3055,-2823,-2547,-2234,-1891,-1526,-1148,-765,-387,-22,321,634,910,1142,1325,1454,1527,1541,1498,1396,1240,1032,777,482,153,-202,-575, + -1001,-1382,-1755,-2110,-2439,-2734,-2989,-3197,-3353,-3455,-3499,-3484,-3411,-3282,-3099,-2867,-2591,-2278,-1935,-1570,-1192,-809,-431,-66,277,590,866,1098,1281,1410,1483,1498,1454,1352,1196,988,733,438,109,-246,-619, + -1012,-1393,-1766,-2121,-2450,-2745,-3000,-3208,-3364,-3466,-3510,-3495,-3422,-3293,-3110,-2878,-2602,-2289,-1946,-1581,-1203,-820,-442,-77,266,579,855,1087,1270,1399,1472,1487,1443,1341,1185,977,722,427,98,-257,-630, + -990,-1371,-1744,-2099,-2428,-2723,-2978,-3186,-3342,-3444,-3488,-3473,-3400,-3271,-3088,-2856,-2580,-2267,-1924,-1559,-1181,-798,-420,-55,288,601,877,1109,1292,1421,1494,1509,1465,1363,1207,999,744,449,120,-235,-608, + -935,-1317,-1689,-2044,-2373,-2668,-2923,-3131,-3288,-3389,-3433,-3418,-3346,-3216,-3033,-2801,-2525,-2212,-1869,-1505,-1126,-744,-365,-0,343,656,931,1164,1346,1476,1549,1563,1519,1418,1261,1053,799,503,174,-181,-553, + -848,-1230,-1603,-1958,-2287,-2582,-2836,-3045,-3201,-3303,-3346,-3332,-3259,-3130,-2947,-2715,-2439,-2126,-1783,-1418,-1040,-657,-279,86,429,742,1018,1250,1433,1562,1635,1650,1606,1505,1348,1140,885,590,261,-94,-467, + -731,-1112,-1485,-1840,-2169,-2464,-2719,-2927,-3084,-3185,-3229,-3214,-3141,-3012,-2829,-2597,-2321,-2008,-1665,-1300,-922,-539,-161,204,547,860,1136,1368,1550,1680,1753,1767,1724,1622,1466,1257,1003,708,379,24,-349, + -584,-966,-1338,-1693,-2022,-2318,-2572,-2780,-2937,-3038,-3082,-3068,-2995,-2865,-2682,-2450,-2175,-1862,-1519,-1154,-775,-393,-14,351,694,1007,1282,1514,1697,1827,1899,1914,1870,1769,1612,1404,1150,854,525,170,-202, + -410,-792,-1164,-1519,-1848,-2143,-2398,-2606,-2763,-2864,-2908,-2893,-2821,-2691,-2508,-2276,-2001,-1687,-1344,-980,-601,-219,160,525,868,1181,1456,1689,1871,2001,2074,2088,2044,1943,1786,1578,1324,1028,699,344,-28, + -211,-592,-965,-1320,-1649,-1944,-2199,-2407,-2564,-2665,-2709,-2694,-2621,-2492,-2309,-2077,-1801,-1488,-1145,-780,-402,-19,359,724,1067,1380,1656,1888,2070,2200,2273,2287,2244,2142,1986,1777,1523,1228,899,544,171, + 11,-371,-744,-1099,-1428,-1723,-1977,-2185,-2342,-2443,-2487,-2473,-2400,-2270,-2088,-1856,-1580,-1267,-924,-559,-181,202,580,945,1288,1601,1877,2109,2292,2421,2494,2509,2465,2364,2207,1999,1744,1449,1120,765,392, + 252,-130,-502,-857,-1186,-1482,-1736,-1944,-2101,-2202,-2246,-2232,-2159,-2029,-1847,-1615,-1339,-1026,-683,-318,60,443,821,1186,1529,1842,2118,2350,2533,2662,2735,2750,2706,2605,2448,2240,1985,1690,1361,1006,633, + 509,128,-245,-600,-929,-1224,-1479,-1687,-1844,-1945,-1989,-1974,-1901,-1772,-1589,-1357,-1081,-768,-425,-60,318,701,1079,1444,1787,2100,2376,2608,2790,2920,2993,3007,2963,2862,2705,2497,2243,1947,1619,1264,891, + 779,398,25,-330,-659,-954,-1209,-1417,-1573,-1675,-1719,-1704,-1631,-1502,-1319,-1087,-811,-498,-155,210,588,971,1349,1714,2057,2370,2646,2878,3061,3190,3263,3278,3234,3132,2976,2768,2513,2218,1889,1534,1161, + 1059,677,305,-50,-379,-674,-929,-1137,-1294,-1395,-1439,-1424,-1352,-1222,-1039,-807,-531,-218,125,489,868,1250,1629,1994,2337,2650,2925,3158,3340,3470,3543,3557,3513,3412,3255,3047,2793,2497,2168,1813,1441, + 1344,963,590,235,-94,-389,-644,-852,-1008,-1110,-1154,-1139,-1066,-937,-754,-522,-246,67,410,775,1153,1536,1914,2279,2622,2935,3211,3443,3626,3755,3828,3843,3799,3697,3541,3333,3078,2783,2454,2099,1726, + 1632,1250,877,522,193,-102,-357,-565,-721,-823,-867,-852,-779,-650,-467,-235,41,354,697,1062,1440,1823,2201,2566,2909,3222,3498,3730,3913,4042,4115,4130,4086,3984,3828,3620,3365,3070,2741,2386,2013, + 1917,1535,1163,808,479,183,-71,-279,-436,-537,-581,-567,-494,-364,-182,50,326,639,982,1347,1725,2108,2487,2851,3194,3507,3783,4015,4198,4328,4400,4415,4371,4270,4113,3905,3650,3355,3026,2671,2298, + 2196,1815,1442,1087,758,463,208,0,-156,-258,-302,-287,-214,-85,98,330,606,919,1262,1627,2005,2388,2766,3131,3474,3787,4063,4295,4478,4607,4680,4695,4651,4549,4393,4185,3930,3635,3306,2951,2578, + 2467,2085,1712,1357,1028,733,479,270,114,13,-31,-17,56,186,368,600,876,1189,1532,1897,2275,2658,3036,3401,3744,4057,4333,4565,4748,4877,4950,4965,4921,4820,4663,4455,4200,3905,3576,3221,2848, + 2724,2343,1970,1615,1286,991,736,528,371,270,226,241,314,443,626,858,1134,1447,1790,2155,2533,2916,3294,3659,4002,4315,4591,4823,5005,5135,5208,5222,5178,5077,4920,4712,4458,4162,3833,3478,3106, + 2965,2584,2211,1856,1527,1232,977,769,612,511,467,482,555,684,867,1099,1375,1688,2031,2396,2774,3157,3535,3900,4243,4556,4832,5064,5246,5376,5449,5463,5419,5318,5161,4953,4699,4403,4074,3719,3347, + 3187,2805,2432,2077,1748,1453,1199,990,834,732,689,703,776,905,1088,1320,1596,1909,2252,2617,2995,3378,3756,4121,4464,4777,5053,5285,5468,5597,5670,5685,5641,5540,5383,5175,4920,4625,4296,3941,3568, + 3386,3004,2632,2277,1948,1652,1398,1190,1033,932,888,902,975,1105,1287,1520,1795,2108,2451,2816,3195,3577,3956,4320,4663,4976,5252,5484,5667,5797,5869,5884,5840,5739,5582,5374,5119,4824,4495,4140,3768, + 3560,3178,2806,2451,2122,1826,1572,1364,1207,1106,1062,1076,1149,1279,1462,1694,1969,2282,2625,2990,3369,3751,4130,4495,4838,5151,5426,5658,5841,5971,6043,6058,6014,5913,5756,5548,5294,4998,4669,4314,3942, + 3707,3325,2952,2597,2268,1973,1719,1510,1354,1252,1209,1223,1296,1425,1608,1840,2116,2429,2772,3137,3515,3898,4276,4641,4984,5297,5573,5805,5988,6117,6190,6205,6161,6060,5903,5695,5440,5145,4816,4461,4088, + 3824,3443,3070,2715,2386,2091,1836,1628,1471,1370,1326,1341,1414,1543,1726,1958,2234,2547,2890,3255,3633,4016,4394,4759,5102,5415,5691,5923,6105,6235,6308,6322,6278,6177,6021,5812,5558,5263,4934,4579,4206, + 3911,3529,3157,2802,2473,2177,1923,1715,1558,1457,1413,1427,1500,1630,1812,2044,2320,2633,2976,3341,3719,4102,4481,4845,5188,5501,5777,6009,6192,6322,6394,6409,6365,6264,6107,5899,5644,5349,5020,4665,4292, + 3966,3584,3211,2856,2527,2232,1977,1769,1613,1511,1467,1482,1555,1684,1867,2099,2375,2688,3031,3396,3774,4157,4535,4900,5243,5556,5832,6064,6247,6376,6449,6464,6420,6318,6162,5954,5699,5404,5075,4720,4347, + 3988,3606,3233,2878,2549,2254,1999,1791,1635,1533,1489,1504,1577,1706,1889,2121,2397,2710,3053,3418,3796,4179,4557,4922,5265,5578,5854,6086,6269,6398,6471,6486,6442,6340,6184,5976,5721,5426,5097,4742,4369, + 3977,3595,3222,2867,2538,2243,1988,1780,1624,1522,1478,1493,1566,1695,1878,2110,2386,2699,3042,3407,3785,4168,4546,4911,5254,5567,5843,6075,6258,6387,6460,6475,6431,6329,6173,5965,5710,5415,5086,4731,4358, + 3933,3551,3178,2823,2494,2199,1944,1736,1580,1478,1435,1449,1522,1651,1834,2066,2342,2655,2998,3363,3741,4124,4502,4867,5210,5523,5799,6031,6214,6343,6416,6431,6387,6286,6129,5921,5666,5371,5042,4687,4314, + 3857,3475,3102,2747,2418,2123,1868,1660,1504,1402,1358,1373,1446,1575,1758,1990,2266,2579,2922,3287,3665,4048,4426,4791,5134,5447,5723,5955,6138,6267,6340,6355,6311,6209,6053,5845,5590,5295,4966,4611,4238, + 3749,3368,2995,2640,2311,2016,1761,1553,1396,1295,1251,1266,1339,1468,1651,1883,2159,2472,2815,3180,3558,3941,4319,4684,5027,5340,5616,5848,6030,6160,6233,6247,6204,6102,5946,5737,5483,5188,4859,4504,4131, + 3612,3230,2858,2503,2174,1878,1624,1416,1259,1158,1114,1129,1201,1331,1514,1746,2021,2335,2678,3042,3421,3803,4182,4547,4890,5203,5478,5710,5893,6023,6096,6110,6066,5965,5808,5600,5346,5050,4721,4366,3994, + 3447,3065,2693,2338,2009,1713,1459,1251,1094,993,949,963,1036,1166,1348,1580,1856,2169,2512,2877,3255,3638,4016,4381,4724,5037,5313,5545,5728,5857,5930,5945,5901,5800,5643,5435,5180,4885,4556,4201,3828, + + -95,-477,-850,-1205,-1534,-1829,-2083,-2292,-2448,-2550,-2593,-2579,-2506,-2377,-2194,-1962,-1686,-1373,-1030,-665,-287,96,474,839,1182,1495,1771,2003,2186,2315,2388,2403,2359,2258,2101,1893,1638,1343,1014,659,286, + -286,-668,-1041,-1396,-1725,-2020,-2275,-2483,-2639,-2741,-2784,-2770,-2697,-2568,-2385,-2153,-1877,-1564,-1221,-856,-478,-95,283,648,991,1304,1580,1812,1995,2124,2197,2212,2168,2067,1910,1702,1447,1152,823,468,95, + -452,-833,-1206,-1561,-1890,-2185,-2440,-2648,-2804,-2906,-2950,-2935,-2862,-2733,-2550,-2318,-2042,-1729,-1386,-1021,-643,-260,118,483,826,1139,1415,1647,1830,1959,2032,2047,2003,1901,1745,1537,1282,987,658,303,-70, + -589,-970,-1343,-1698,-2027,-2322,-2577,-2785,-2942,-3043,-3087,-3072,-2999,-2870,-2687,-2455,-2179,-1866,-1523,-1158,-780,-397,-19,346,689,1002,1278,1510,1693,1822,1895,1909,1866,1764,1608,1400,1145,850,521,166,-207, + -696,-1078,-1450,-1805,-2134,-2430,-2684,-2892,-3049,-3150,-3194,-3180,-3107,-2977,-2794,-2562,-2287,-1974,-1631,-1266,-887,-505,-126,238,581,895,1170,1402,1585,1715,1787,1802,1758,1657,1500,1292,1037,742,413,58,-314, + -772,-1154,-1526,-1881,-2210,-2506,-2760,-2968,-3125,-3226,-3270,-3256,-3183,-3053,-2871,-2639,-2363,-2050,-1707,-1342,-964,-581,-203,162,505,818,1094,1326,1509,1638,1711,1726,1682,1581,1424,1216,961,666,337,-18,-391, + -816,-1198,-1570,-1925,-2254,-2550,-2804,-3012,-3169,-3270,-3314,-3300,-3227,-3097,-2914,-2682,-2407,-2094,-1751,-1386,-1007,-625,-246,119,462,775,1050,1282,1465,1595,1667,1682,1638,1537,1380,1172,918,622,293,-62,-434, + -827,-1209,-1581,-1936,-2265,-2561,-2815,-3023,-3180,-3281,-3325,-3311,-3238,-3108,-2925,-2693,-2418,-2105,-1762,-1397,-1018,-636,-257,108,451,764,1039,1271,1454,1584,1656,1671,1627,1526,1369,1161,907,611,282,-73,-445, + -805,-1187,-1559,-1914,-2243,-2539,-2793,-3001,-3158,-3259,-3303,-3289,-3216,-3086,-2903,-2671,-2396,-2083,-1740,-1375,-996,-614,-235,130,473,786,1061,1293,1476,1606,1678,1693,1649,1548,1391,1183,929,633,304,-51,-423, + -750,-1132,-1505,-1860,-2189,-2484,-2739,-2947,-3103,-3205,-3249,-3234,-3161,-3032,-2849,-2617,-2341,-2028,-1685,-1320,-942,-559,-181,184,527,840,1116,1348,1531,1660,1733,1748,1704,1602,1446,1238,983,688,359,4,-369, + -664,-1045,-1418,-1773,-2102,-2397,-2652,-2860,-3017,-3118,-3162,-3147,-3074,-2945,-2762,-2530,-2254,-1941,-1598,-1233,-855,-472,-94,271,614,927,1203,1435,1618,1747,1820,1834,1791,1689,1533,1325,1070,775,446,91,-282, + -546,-928,-1301,-1656,-1985,-2280,-2534,-2743,-2899,-3001,-3044,-3030,-2957,-2827,-2645,-2413,-2137,-1824,-1481,-1116,-738,-355,23,388,731,1044,1320,1552,1735,1864,1937,1952,1908,1807,1650,1442,1187,892,563,208,-165, + -399,-781,-1154,-1509,-1838,-2133,-2388,-2596,-2752,-2854,-2898,-2883,-2810,-2681,-2498,-2266,-1990,-1677,-1334,-969,-591,-208,170,535,878,1191,1467,1699,1882,2011,2084,2099,2055,1953,1797,1589,1334,1039,710,355,-18, + -225,-607,-980,-1335,-1664,-1959,-2214,-2422,-2578,-2680,-2724,-2709,-2636,-2507,-2324,-2092,-1816,-1503,-1160,-795,-417,-34,344,709,1052,1365,1641,1873,2056,2185,2258,2273,2229,2127,1971,1763,1508,1213,884,529,156, + -26,-408,-781,-1136,-1465,-1760,-2014,-2223,-2379,-2481,-2524,-2510,-2437,-2307,-2125,-1893,-1617,-1304,-961,-596,-218,165,543,908,1251,1564,1840,2072,2255,2384,2457,2472,2428,2327,2170,1962,1707,1412,1083,728,355, + 195,-186,-559,-914,-1243,-1538,-1793,-2001,-2158,-2259,-2303,-2288,-2215,-2086,-1903,-1671,-1395,-1082,-739,-374,4,387,765,1130,1473,1786,2062,2294,2477,2606,2679,2693,2650,2548,2392,2184,1929,1634,1305,950,577, + 436,55,-318,-673,-1002,-1297,-1552,-1760,-1916,-2018,-2062,-2047,-1974,-1845,-1662,-1430,-1154,-841,-498,-133,245,628,1006,1371,1714,2027,2303,2535,2718,2847,2920,2935,2891,2789,2633,2425,2170,1875,1546,1191,818, + 694,312,-61,-416,-745,-1040,-1294,-1503,-1659,-1761,-1804,-1790,-1717,-1588,-1405,-1173,-897,-584,-241,124,502,885,1263,1628,1971,2284,2560,2792,2975,3104,3177,3192,3148,3047,2890,2682,2427,2132,1803,1448,1075, + 964,582,210,-145,-474,-770,-1024,-1232,-1389,-1490,-1534,-1519,-1447,-1317,-1134,-902,-627,-314,29,394,773,1155,1534,1899,2242,2555,2830,3062,3245,3375,3448,3462,3418,3317,3160,2952,2698,2402,2073,1718,1346, + 1244,862,489,134,-195,-490,-745,-953,-1109,-1211,-1255,-1240,-1167,-1038,-855,-623,-347,-34,309,674,1052,1435,1813,2178,2521,2834,3110,3342,3525,3654,3727,3742,3698,3596,3440,3232,2977,2682,2353,1998,1625, + 1529,1147,775,420,91,-205,-459,-667,-824,-925,-969,-955,-882,-752,-569,-337,-62,251,594,959,1338,1720,2099,2463,2806,3120,3395,3627,3810,3940,4012,4027,3983,3882,3725,3517,3263,2967,2638,2283,1911, + 1816,1434,1062,707,378,83,-172,-380,-537,-638,-682,-667,-595,-465,-282,-50,226,539,882,1246,1625,2007,2386,2751,3094,3407,3682,3915,4097,4227,4300,4314,4270,4169,4012,3804,3550,3254,2925,2570,2198, + 2101,1720,1347,992,663,368,113,-95,-251,-353,-397,-382,-309,-180,3,235,511,824,1167,1532,1910,2293,2671,3036,3379,3692,3968,4200,4383,4512,4585,4600,4556,4454,4298,4090,3835,3540,3211,2856,2483, + 2381,1999,1627,1272,943,647,393,185,28,-73,-117,-102,-30,100,283,515,790,1103,1446,1811,2190,2572,2951,3316,3659,3972,4247,4479,4662,4792,4865,4879,4835,4734,4577,4369,4115,3819,3490,3135,2763, + 2651,2270,1897,1542,1213,918,663,455,298,197,153,168,241,370,553,785,1061,1374,1717,2082,2460,2843,3221,3586,3929,4242,4518,4750,4933,5062,5135,5149,5106,5004,4848,4640,4385,4090,3761,3406,3033, + 2909,2527,2154,1799,1470,1175,920,712,556,454,411,425,498,627,810,1042,1318,1631,1974,2339,2717,3100,3478,3843,4186,4499,4775,5007,5190,5319,5392,5407,5363,5262,5105,4897,4642,4347,4018,3663,3290, + 3150,2768,2395,2040,1711,1416,1161,953,797,695,652,666,739,868,1051,1283,1559,1872,2215,2580,2958,3341,3719,4084,4427,4740,5016,5248,5431,5560,5633,5648,5604,5503,5346,5138,4883,4588,4259,3904,3531, + 3371,2990,2617,2262,1933,1638,1383,1175,1018,917,873,888,961,1090,1273,1505,1781,2094,2437,2802,3180,3563,3941,4306,4649,4962,5238,5470,5653,5782,5855,5869,5826,5724,5568,5360,5105,4810,4481,4126,3753, + 3570,3189,2816,2461,2132,1837,1582,1374,1218,1116,1072,1087,1160,1289,1472,1704,1980,2293,2636,3001,3379,3762,4140,4505,4848,5161,5437,5669,5852,5981,6054,6069,6025,5923,5767,5559,5304,5009,4680,4325,3952, + 3745,3363,2990,2635,2306,2011,1756,1548,1392,1290,1246,1261,1334,1463,1646,1878,2154,2467,2810,3175,3553,3936,4314,4679,5022,5335,5611,5843,6026,6155,6228,6243,6199,6097,5941,5733,5478,5183,4854,4499,4126, + 3891,3510,3137,2782,2453,2158,1903,1695,1538,1437,1393,1408,1481,1610,1793,2025,2301,2614,2957,3322,3700,4083,4461,4826,5169,5482,5758,5990,6173,6302,6375,6389,6346,6244,6088,5880,5625,5330,5001,4646,4273, + 4009,3627,3254,2899,2570,2275,2021,1812,1656,1554,1511,1525,1598,1727,1910,2142,2418,2731,3074,3439,3817,4200,4578,4943,5286,5599,5875,6107,6290,6419,6492,6507,6463,6362,6205,5997,5742,5447,5118,4763,4390, + 4095,3714,3341,2986,2657,2362,2107,1899,1743,1641,1597,1612,1685,1814,1997,2229,2505,2818,3161,3526,3904,4287,4665,5030,5373,5686,5962,6194,6377,6506,6579,6594,6550,6448,6292,6084,5829,5534,5205,4850,4477, + 4150,3768,3396,3041,2712,2416,2162,1954,1797,1696,1652,1667,1739,1869,2052,2284,2559,2873,3216,3580,3959,4341,4720,5085,5428,5741,6016,6248,6431,6561,6634,6648,6604,6503,6346,6138,5884,5588,5259,4904,4532, + 4172,3790,3418,3063,2734,2438,2184,1976,1819,1718,1674,1689,1761,1891,2074,2306,2581,2895,3238,3602,3981,4363,4742,5107,5450,5763,6038,6270,6453,6583,6656,6670,6626,6525,6368,6160,5906,5610,5281,4926,4554, + 4161,3779,3407,3052,2723,2427,2173,1965,1808,1707,1663,1678,1750,1880,2063,2295,2570,2884,3227,3591,3970,4352,4731,5096,5439,5752,6027,6259,6442,6572,6645,6659,6615,6514,6357,6149,5895,5599,5270,4915,4543, + 4117,3736,3363,3008,2679,2384,2129,1921,1764,1663,1619,1634,1707,1836,2019,2251,2527,2840,3183,3548,3926,4309,4687,5052,5395,5708,5984,6216,6398,6528,6601,6615,6571,6470,6314,6105,5851,5556,5227,4872,4499, + 4041,3660,3287,2932,2603,2308,2053,1845,1688,1587,1543,1558,1630,1760,1943,2175,2451,2764,3107,3471,3850,4232,4611,4976,5319,5632,5908,6140,6322,6452,6525,6539,6495,6394,6237,6029,5775,5479,5150,4795,4423, + 3934,3552,3179,2824,2495,2200,1946,1737,1581,1480,1436,1450,1523,1653,1835,2067,2343,2656,2999,3364,3742,4125,4503,4868,5211,5524,5800,6032,6215,6344,6417,6432,6388,6287,6130,5922,5667,5372,5043,4688,4315, + 3797,3415,3042,2687,2358,2063,1808,1600,1444,1342,1298,1313,1386,1515,1698,1930,2206,2519,2862,3227,3605,3988,4366,4731,5074,5387,5663,5895,6078,6207,6280,6295,6251,6149,5993,5785,5530,5235,4906,4551,4178, + 3631,3250,2877,2522,2193,1898,1643,1435,1279,1177,1133,1148,1221,1350,1533,1765,2041,2354,2697,3062,3440,3823,4201,4566,4909,5222,5498,5730,5913,6042,6115,6130,6086,5984,5828,5620,5365,5070,4741,4386,4013, + + 79,-302,-675,-1030,-1359,-1654,-1909,-2117,-2273,-2375,-2419,-2404,-2331,-2202,-2019,-1787,-1511,-1198,-855,-490,-112,271,649,1014,1357,1670,1946,2178,2361,2490,2563,2578,2534,2432,2276,2068,1813,1518,1189,834,461, + -112,-493,-866,-1221,-1550,-1845,-2100,-2308,-2465,-2566,-2610,-2595,-2522,-2393,-2210,-1978,-1702,-1389,-1046,-681,-303,80,458,823,1166,1479,1755,1987,2170,2299,2372,2386,2343,2241,2085,1877,1622,1327,998,643,270, + -277,-659,-1031,-1386,-1715,-2010,-2265,-2473,-2630,-2731,-2775,-2760,-2688,-2558,-2375,-2143,-1868,-1554,-1211,-847,-468,-86,293,658,1001,1314,1589,1822,2004,2134,2207,2221,2177,2076,1919,1711,1457,1161,832,477,105, + -414,-796,-1168,-1523,-1852,-2148,-2402,-2610,-2767,-2868,-2912,-2898,-2825,-2695,-2513,-2280,-2005,-1692,-1349,-984,-605,-223,156,520,863,1177,1452,1684,1867,1997,2069,2084,2040,1939,1782,1574,1319,1024,695,340,-32, + -521,-903,-1276,-1631,-1960,-2255,-2510,-2718,-2874,-2976,-3020,-3005,-2932,-2803,-2620,-2388,-2112,-1799,-1456,-1091,-713,-330,48,413,756,1069,1345,1577,1760,1889,1962,1977,1933,1831,1675,1467,1212,917,588,233,-140, + -598,-979,-1352,-1707,-2036,-2331,-2586,-2794,-2950,-3052,-3096,-3081,-3008,-2879,-2696,-2464,-2188,-1875,-1532,-1167,-789,-406,-28,337,680,993,1269,1501,1684,1813,1886,1901,1857,1755,1599,1391,1136,841,512,157,-216, + -641,-1023,-1396,-1751,-2080,-2375,-2630,-2838,-2994,-3096,-3140,-3125,-3052,-2923,-2740,-2508,-2232,-1919,-1576,-1211,-833,-450,-72,293,636,949,1225,1457,1640,1769,1842,1857,1813,1711,1555,1347,1092,797,468,113,-260, + -652,-1034,-1407,-1762,-2091,-2386,-2641,-2849,-3005,-3107,-3151,-3136,-3063,-2934,-2751,-2519,-2243,-1930,-1587,-1222,-844,-461,-83,282,625,938,1214,1446,1629,1758,1831,1846,1802,1700,1544,1336,1081,786,457,102,-271, + -630,-1012,-1385,-1740,-2069,-2364,-2619,-2827,-2983,-3085,-3129,-3114,-3041,-2912,-2729,-2497,-2221,-1908,-1565,-1200,-822,-439,-61,304,647,960,1236,1468,1651,1780,1853,1868,1824,1722,1566,1358,1103,808,479,124,-249, + -576,-957,-1330,-1685,-2014,-2309,-2564,-2772,-2929,-3030,-3074,-3059,-2986,-2857,-2674,-2442,-2166,-1853,-1510,-1145,-767,-384,-6,359,702,1015,1291,1523,1706,1835,1908,1922,1879,1777,1621,1413,1158,863,534,179,-194, + -489,-871,-1243,-1598,-1927,-2223,-2477,-2685,-2842,-2943,-2987,-2973,-2900,-2770,-2587,-2355,-2080,-1767,-1424,-1059,-680,-298,81,445,788,1102,1377,1609,1792,1922,1994,2009,1965,1864,1707,1499,1244,949,620,265,-107, + -372,-753,-1126,-1481,-1810,-2105,-2360,-2568,-2724,-2826,-2870,-2855,-2782,-2653,-2470,-2238,-1962,-1649,-1306,-941,-563,-180,198,563,906,1219,1495,1727,1910,2039,2112,2127,2083,1981,1825,1617,1362,1067,738,383,10, + -225,-606,-979,-1334,-1663,-1958,-2213,-2421,-2578,-2679,-2723,-2708,-2635,-2506,-2323,-2091,-1815,-1502,-1159,-794,-416,-33,345,710,1053,1366,1642,1874,2056,2186,2259,2273,2229,2128,1971,1763,1509,1213,884,529,157, + -51,-432,-805,-1160,-1489,-1784,-2039,-2247,-2404,-2505,-2549,-2534,-2461,-2332,-2149,-1917,-1641,-1328,-985,-620,-242,141,519,884,1227,1540,1816,2048,2231,2360,2433,2447,2404,2302,2146,1937,1683,1388,1059,704,331, + 148,-233,-606,-961,-1290,-1585,-1840,-2048,-2204,-2306,-2350,-2335,-2262,-2133,-1950,-1718,-1442,-1129,-786,-421,-43,340,718,1083,1426,1739,2015,2247,2430,2559,2632,2647,2603,2501,2345,2137,1882,1587,1258,903,530, + 370,-12,-384,-739,-1068,-1364,-1618,-1826,-1983,-2084,-2128,-2114,-2041,-1911,-1728,-1496,-1221,-908,-565,-200,179,561,940,1304,1647,1961,2236,2468,2651,2781,2853,2868,2824,2723,2566,2358,2104,1808,1479,1124,752, + 611,229,-143,-498,-827,-1123,-1377,-1585,-1742,-1843,-1887,-1873,-1800,-1670,-1487,-1255,-980,-667,-324,41,420,802,1181,1546,1889,2202,2477,2709,2892,3022,3095,3109,3065,2964,2807,2599,2345,2049,1720,1365,993, + 868,487,114,-241,-570,-865,-1120,-1328,-1484,-1586,-1630,-1615,-1542,-1413,-1230,-998,-722,-409,-66,299,677,1060,1438,1803,2146,2459,2735,2967,3150,3279,3352,3367,3323,3221,3065,2857,2602,2307,1978,1623,1250, + 1139,757,384,29,-300,-595,-850,-1058,-1214,-1316,-1360,-1345,-1272,-1143,-960,-728,-452,-139,204,569,947,1330,1708,2073,2416,2729,3005,3237,3420,3549,3622,3637,3593,3491,3335,3127,2872,2577,2248,1893,1520, + 1418,1037,664,309,-20,-315,-570,-778,-935,-1036,-1080,-1065,-992,-863,-680,-448,-172,141,484,849,1227,1610,1988,2353,2696,3009,3285,3517,3700,3829,3902,3916,3873,3771,3615,3407,3152,2857,2528,2173,1800, + 1704,1322,949,594,265,-30,-285,-493,-649,-751,-795,-780,-707,-578,-395,-163,113,426,769,1134,1512,1895,2273,2638,2981,3294,3570,3802,3985,4114,4187,4202,4158,4056,3900,3692,3437,3142,2813,2458,2085, + 1991,1609,1236,881,552,257,3,-206,-362,-464,-507,-493,-420,-291,-108,124,400,713,1056,1421,1799,2182,2560,2925,3268,3581,3857,4089,4272,4401,4474,4489,4445,4344,4187,3979,3724,3429,3100,2745,2372, + 2276,1894,1522,1167,838,542,288,80,-77,-178,-222,-207,-135,-5,178,410,685,998,1341,1706,2085,2467,2846,3211,3554,3867,4142,4374,4557,4687,4760,4774,4730,4629,4472,4264,4010,3714,3385,3030,2658, + 2556,2174,1801,1446,1117,822,567,359,203,101,57,72,145,274,457,689,965,1278,1621,1986,2364,2747,3125,3490,3833,4146,4422,4654,4837,4966,5039,5054,5010,4909,4752,4544,4289,3994,3665,3310,2937, + 2826,2444,2072,1717,1388,1092,838,630,473,372,328,342,415,545,728,960,1235,1548,1891,2256,2635,3017,3396,3760,4103,4417,4692,4924,5107,5237,5309,5324,5280,5179,5022,4814,4560,4264,3935,3580,3208, + 3083,2702,2329,1974,1645,1350,1095,887,730,629,585,600,673,802,985,1217,1493,1806,2149,2514,2892,3275,3653,4018,4361,4674,4950,5182,5365,5494,5567,5581,5538,5436,5280,5072,4817,4522,4193,3838,3465, + 3324,2943,2570,2215,1886,1591,1336,1128,972,870,826,841,914,1043,1226,1458,1734,2047,2390,2755,3133,3516,3894,4259,4602,4915,5191,5423,5606,5735,5808,5823,5779,5677,5521,5313,5058,4763,4434,4079,3706, + 3546,3164,2792,2437,2108,1812,1558,1350,1193,1092,1048,1062,1135,1265,1447,1680,1955,2268,2611,2976,3355,3737,4116,4480,4823,5137,5412,5644,5827,5957,6029,6044,6000,5899,5742,5534,5279,4984,4655,4300,3928, + 3745,3363,2991,2636,2307,2011,1757,1549,1392,1291,1247,1262,1334,1464,1647,1879,2154,2468,2811,3175,3554,3936,4315,4680,5023,5336,5611,5843,6026,6156,6229,6243,6199,6098,5941,5733,5479,5183,4854,4499,4127, + 3919,3538,3165,2810,2481,2186,1931,1723,1566,1465,1421,1436,1509,1638,1821,2053,2329,2642,2985,3350,3728,4111,4489,4854,5197,5510,5786,6018,6200,6330,6403,6417,6373,6272,6115,5907,5653,5357,5028,4673,4301, + 4066,3684,3312,2957,2628,2332,2078,1870,1713,1612,1568,1582,1655,1785,1967,2200,2475,2788,3131,3496,3875,4257,4636,5000,5343,5657,5932,6164,6347,6477,6549,6564,6520,6419,6262,6054,5799,5504,5175,4820,4448, + 4183,3802,3429,3074,2745,2450,2195,1987,1831,1729,1685,1700,1773,1902,2085,2317,2593,2906,3249,3614,3992,4375,4753,5118,5461,5774,6050,6282,6465,6594,6667,6682,6638,6536,6380,6172,5917,5622,5293,4938,4565, + 4270,3888,3516,3161,2832,2536,2282,2074,1917,1816,1772,1787,1859,1989,2172,2404,2679,2992,3335,3700,4079,4461,4840,5205,5548,5861,6136,6368,6551,6681,6754,6768,6724,6623,6466,6258,6004,5708,5379,5024,4652, + 4325,3943,3570,3215,2886,2591,2336,2128,1972,1870,1827,1841,1914,2043,2226,2458,2734,3047,3390,3755,4133,4516,4894,5259,5602,5915,6191,6423,6606,6735,6808,6823,6779,6678,6521,6313,6058,5763,5434,5079,4706, + 4347,3965,3592,3237,2908,2613,2358,2150,1994,1892,1849,1863,1936,2065,2248,2480,2756,3069,3412,3777,4155,4538,4916,5281,5624,5937,6213,6445,6628,6757,6830,6845,6801,6700,6543,6335,6080,5785,5456,5101,4728, + 4336,3954,3581,3226,2897,2602,2347,2139,1983,1881,1838,1852,1925,2054,2237,2469,2745,3058,3401,3766,4144,4527,4905,5270,5613,5926,6202,6434,6617,6746,6819,6834,6790,6689,6532,6324,6069,5774,5445,5090,4717, + 4292,3910,3538,3183,2854,2558,2304,2096,1939,1838,1794,1808,1881,2011,2193,2425,2701,3014,3357,3722,4100,4483,4861,5226,5569,5882,6158,6390,6573,6702,6775,6790,6746,6645,6488,6280,6025,5730,5401,5046,4673, + 4216,3834,3461,3106,2777,2482,2228,2019,1863,1761,1718,1732,1805,1934,2117,2349,2625,2938,3281,3646,4024,4407,4785,5150,5493,5806,6082,6314,6497,6626,6699,6714,6670,6569,6412,6204,5949,5654,5325,4970,4597, + 4108,3727,3354,2999,2670,2375,2120,1912,1756,1654,1610,1625,1698,1827,2010,2242,2518,2831,3174,3539,3917,4300,4678,5043,5386,5699,5975,6207,6390,6519,6592,6607,6563,6461,6305,6097,5842,5547,5218,4863,4490, + 3971,3590,3217,2862,2533,2238,1983,1775,1618,1517,1473,1488,1561,1690,1873,2105,2381,2694,3037,3402,3780,4163,4541,4906,5249,5562,5838,6070,6252,6382,6455,6469,6425,6324,6167,5959,5705,5410,5081,4726,4353, + 3806,3424,3052,2697,2368,2072,1818,1610,1453,1352,1308,1322,1395,1525,1708,1940,2215,2528,2871,3236,3615,3997,4376,4741,5084,5397,5672,5904,6087,6217,6289,6304,6260,6159,6002,5794,5540,5244,4915,4560,4188, + + 240,-142,-514,-869,-1198,-1494,-1748,-1956,-2113,-2214,-2258,-2243,-2171,-2041,-1858,-1626,-1351,-1038,-695,-330,49,431,810,1175,1518,1831,2106,2338,2521,2651,2724,2738,2694,2593,2436,2228,1974,1678,1349,994,622, + 49,-333,-705,-1060,-1389,-1685,-1939,-2147,-2304,-2405,-2449,-2435,-2362,-2232,-2049,-1817,-1542,-1229,-886,-521,-142,240,619,983,1326,1640,1915,2147,2330,2460,2532,2547,2503,2402,2245,2037,1783,1487,1158,803,431, + -116,-498,-871,-1226,-1555,-1850,-2105,-2313,-2469,-2571,-2614,-2600,-2527,-2398,-2215,-1983,-1707,-1394,-1051,-686,-308,75,453,818,1161,1474,1750,1982,2165,2294,2367,2382,2338,2237,2080,1872,1617,1322,993,638,265, + -253,-635,-1008,-1363,-1692,-1987,-2242,-2450,-2606,-2708,-2752,-2737,-2664,-2535,-2352,-2120,-1844,-1531,-1188,-823,-445,-62,316,681,1024,1337,1613,1845,2028,2157,2230,2245,2201,2099,1943,1735,1480,1185,856,501,128, + -361,-742,-1115,-1470,-1799,-2094,-2349,-2557,-2714,-2815,-2859,-2844,-2771,-2642,-2459,-2227,-1951,-1638,-1295,-930,-552,-169,209,574,917,1230,1506,1738,1920,2050,2123,2137,2093,1992,1835,1627,1373,1077,748,393,21, + -437,-819,-1191,-1546,-1875,-2171,-2425,-2633,-2790,-2891,-2935,-2920,-2848,-2718,-2535,-2303,-2028,-1714,-1371,-1007,-628,-246,133,498,841,1154,1429,1661,1844,1974,2047,2061,2017,1916,1759,1551,1297,1001,672,317,-55, + -481,-862,-1235,-1590,-1919,-2214,-2469,-2677,-2834,-2935,-2979,-2964,-2891,-2762,-2579,-2347,-2071,-1758,-1415,-1050,-672,-289,89,454,797,1110,1386,1618,1800,1930,2003,2017,1974,1872,1716,1507,1253,958,629,274,-99, + -492,-873,-1246,-1601,-1930,-2225,-2480,-2688,-2845,-2946,-2990,-2975,-2902,-2773,-2590,-2358,-2082,-1769,-1426,-1061,-683,-300,78,443,786,1099,1375,1607,1789,1919,1992,2006,1963,1861,1705,1496,1242,947,618,263,-110, + -470,-851,-1224,-1579,-1908,-2203,-2458,-2666,-2823,-2924,-2968,-2953,-2880,-2751,-2568,-2336,-2060,-1747,-1404,-1039,-661,-278,100,465,808,1121,1397,1629,1811,1941,2014,2028,1984,1883,1727,1518,1264,969,640,285,-88, + -415,-797,-1169,-1524,-1853,-2149,-2403,-2611,-2768,-2869,-2913,-2899,-2826,-2696,-2514,-2281,-2006,-1693,-1350,-985,-606,-224,155,519,862,1176,1451,1683,1866,1996,2068,2083,2039,1938,1781,1573,1318,1023,694,339,-33, + -328,-710,-1083,-1438,-1767,-2062,-2317,-2525,-2681,-2783,-2827,-2812,-2739,-2610,-2427,-2195,-1919,-1606,-1263,-898,-520,-137,241,606,949,1262,1538,1770,1953,2082,2155,2170,2126,2024,1868,1660,1405,1110,781,426,53, + -211,-593,-965,-1320,-1649,-1945,-2199,-2407,-2564,-2665,-2709,-2694,-2622,-2492,-2309,-2077,-1802,-1489,-1146,-781,-402,-20,359,724,1067,1380,1655,1887,2070,2200,2273,2287,2243,2142,1985,1777,1523,1227,898,543,171, + -64,-446,-819,-1174,-1503,-1798,-2052,-2260,-2417,-2518,-2562,-2548,-2475,-2345,-2163,-1931,-1655,-1342,-999,-634,-256,127,505,870,1213,1526,1802,2034,2217,2346,2419,2434,2390,2289,2132,1924,1669,1374,1045,690,317, + 110,-272,-644,-999,-1328,-1624,-1878,-2086,-2243,-2344,-2388,-2374,-2301,-2171,-1989,-1757,-1481,-1168,-825,-460,-81,301,680,1044,1387,1700,1976,2208,2391,2521,2593,2608,2564,2463,2306,2098,1843,1548,1219,864,492, + 309,-73,-445,-800,-1129,-1425,-1679,-1887,-2044,-2145,-2189,-2174,-2102,-1972,-1789,-1557,-1282,-969,-626,-261,118,500,879,1244,1587,1900,2175,2407,2590,2720,2793,2807,2763,2662,2505,2297,2043,1747,1418,1063,691, + 531,149,-224,-579,-908,-1203,-1458,-1666,-1822,-1924,-1968,-1953,-1880,-1751,-1568,-1336,-1060,-747,-404,-39,339,722,1100,1465,1808,2121,2397,2629,2812,2941,3014,3029,2985,2883,2727,2519,2264,1969,1640,1285,912, + 772,390,17,-338,-667,-962,-1217,-1425,-1581,-1683,-1727,-1712,-1639,-1510,-1327,-1095,-819,-506,-163,202,580,963,1341,1706,2049,2362,2638,2870,3053,3182,3255,3270,3226,3124,2968,2760,2505,2210,1881,1526,1153, + 1029,647,275,-80,-409,-705,-959,-1167,-1324,-1425,-1469,-1455,-1382,-1252,-1069,-837,-562,-249,94,459,838,1220,1599,1964,2307,2620,2895,3127,3310,3440,3513,3527,3483,3382,3225,3017,2763,2467,2138,1783,1411, + 1299,918,545,190,-139,-434,-689,-897,-1054,-1155,-1199,-1184,-1111,-982,-799,-567,-291,22,365,730,1108,1491,1869,2234,2577,2890,3166,3398,3581,3710,3783,3797,3754,3652,3496,3288,3033,2738,2409,2054,1681, + 1579,1197,825,470,141,-155,-409,-617,-774,-875,-919,-905,-832,-702,-520,-287,-12,301,644,1009,1388,1770,2149,2513,2856,3170,3445,3677,3860,3990,4062,4077,4033,3932,3775,3567,3312,3017,2688,2333,1961, + 1864,1483,1110,755,426,131,-124,-332,-489,-590,-634,-619,-546,-417,-234,-2,274,587,930,1295,1673,2056,2434,2799,3142,3455,3731,3963,4145,4275,4348,4362,4318,4217,4060,3852,3598,3302,2973,2618,2246, + 2151,1770,1397,1042,713,418,163,-45,-201,-303,-347,-332,-259,-130,53,285,561,874,1217,1582,1960,2343,2721,3086,3429,3742,4018,4250,4433,4562,4635,4650,4606,4504,4348,4140,3885,3590,3261,2906,2533, + 2437,2055,1682,1327,998,703,448,240,84,-18,-62,-47,26,155,338,570,846,1159,1502,1867,2245,2628,3006,3371,3714,4027,4303,4535,4718,4847,4920,4935,4891,4790,4633,4425,4170,3875,3546,3191,2818, + 2716,2335,1962,1607,1278,983,728,520,363,262,218,233,306,435,618,850,1126,1439,1782,2147,2525,2908,3286,3651,3994,4307,4583,4815,4998,5127,5200,5214,5171,5069,4913,4705,4450,4155,3826,3471,3098, + 2987,2605,2232,1877,1548,1253,998,790,634,532,488,503,576,705,888,1120,1396,1709,2052,2417,2795,3178,3556,3921,4264,4577,4853,5085,5268,5397,5470,5485,5441,5339,5183,4975,4720,4425,4096,3741,3368, + 3244,2862,2490,2135,1806,1510,1256,1048,891,790,746,760,833,963,1146,1378,1653,1966,2309,2674,3053,3435,3814,4178,4521,4835,5110,5342,5525,5655,5727,5742,5698,5597,5440,5232,4978,4682,4353,3998,3626, + 3485,3103,2731,2376,2047,1751,1497,1289,1132,1031,987,1001,1074,1204,1387,1619,1894,2207,2550,2915,3294,3676,4055,4420,4763,5076,5351,5583,5766,5896,5968,5983,5939,5838,5681,5473,5219,4923,4594,4239,3867, + 3707,3325,2952,2597,2268,1973,1718,1510,1354,1252,1208,1223,1296,1425,1608,1840,2116,2429,2772,3137,3515,3898,4276,4641,4984,5297,5573,5805,5988,6117,6190,6205,6161,6059,5903,5695,5440,5145,4816,4461,4088, + 3906,3524,3151,2796,2467,2172,1917,1709,1553,1451,1408,1422,1495,1624,1807,2039,2315,2628,2971,3336,3714,4097,4475,4840,5183,5496,5772,6004,6187,6316,6389,6404,6360,6259,6102,5894,5639,5344,5015,4660,4287, + 4080,3698,3325,2970,2641,2346,2092,1883,1727,1626,1582,1596,1669,1799,1981,2213,2489,2802,3145,3510,3888,4271,4649,5014,5357,5670,5946,6178,6361,6490,6563,6578,6534,6433,6276,6068,5813,5518,5189,4834,4461, + 4227,3845,3472,3117,2788,2493,2238,2030,1874,1772,1728,1743,1816,1945,2128,2360,2636,2949,3292,3657,4035,4418,4796,5161,5504,5817,6093,6325,6508,6637,6710,6725,6681,6579,6423,6215,5960,5665,5336,4981,4608, + 4344,3962,3590,3235,2906,2610,2356,2148,1991,1890,1846,1861,1933,2063,2246,2478,2753,3066,3409,3774,4153,4535,4914,5279,5622,5935,6210,6442,6625,6755,6828,6842,6798,6697,6540,6332,6078,5782,5453,5098,4726, + 4431,4049,3676,3321,2992,2697,2442,2234,2078,1976,1932,1947,2020,2149,2332,2564,2840,3153,3496,3861,4239,4622,5000,5365,5708,6021,6297,6529,6712,6841,6914,6929,6885,6784,6627,6419,6164,5869,5540,5185,4812, + 4485,4104,3731,3376,3047,2752,2497,2289,2132,2031,1987,2002,2075,2204,2387,2619,2895,3208,3551,3916,4294,4677,5055,5420,5763,6076,6352,6584,6767,6896,6969,6984,6940,6838,6682,6474,6219,5924,5595,5240,4867, + 4507,4126,3753,3398,3069,2774,2519,2311,2154,2053,2009,2024,2097,2226,2409,2641,2917,3230,3573,3938,4316,4699,5077,5442,5785,6098,6374,6606,6789,6918,6991,7005,6962,6860,6704,6496,6241,5946,5617,5262,4889, + 4496,4115,3742,3387,3058,2763,2508,2300,2143,2042,1998,2013,2086,2215,2398,2630,2906,3219,3562,3927,4305,4688,5066,5431,5774,6087,6363,6595,6778,6907,6980,6994,6951,6849,6693,6485,6230,5935,5606,5251,4878, + 4452,4071,3698,3343,3014,2719,2464,2256,2100,1998,1954,1969,2042,2171,2354,2586,2862,3175,3518,3883,4261,4644,5022,5387,5730,6043,6319,6551,6734,6863,6936,6951,6907,6805,6649,6441,6186,5891,5562,5207,4834, + 4376,3995,3622,3267,2938,2643,2388,2180,2024,1922,1878,1893,1966,2095,2278,2510,2786,3099,3442,3807,4185,4568,4946,5311,5654,5967,6243,6475,6658,6787,6860,6875,6831,6729,6573,6365,6110,5815,5486,5131,4758, + 4269,3887,3515,3160,2831,2535,2281,2073,1916,1815,1771,1786,1858,1988,2171,2403,2678,2991,3334,3699,4078,4460,4839,5204,5547,5860,6135,6367,6550,6680,6753,6767,6723,6622,6465,6257,6003,5707,5378,5023,4651, + 4132,3750,3378,3023,2694,2398,2144,1936,1779,1678,1634,1648,1721,1851,2033,2265,2541,2854,3197,3562,3940,4323,4701,5066,5409,5722,5998,6230,6413,6542,6615,6630,6586,6485,6328,6120,5865,5570,5241,4886,4513, + 3967,3585,3212,2857,2528,2233,1978,1770,1614,1512,1468,1483,1556,1685,1868,2100,2376,2689,3032,3397,3775,4158,4536,4901,5244,5557,5833,6065,6248,6377,6450,6465,6421,6319,6163,5955,5700,5405,5076,4721,4348, + + 383,1,-371,-726,-1055,-1351,-1605,-1813,-1970,-2071,-2115,-2101,-2028,-1898,-1716,-1483,-1208,-895,-552,-187,192,574,953,1317,1660,1973,2249,2481,2664,2794,2866,2881,2837,2736,2579,2371,2116,1821,1492,1137,765, + 192,-190,-562,-917,-1246,-1542,-1796,-2004,-2161,-2262,-2306,-2292,-2219,-2089,-1907,-1675,-1399,-1086,-743,-378,0,383,761,1126,1469,1782,2058,2290,2473,2602,2675,2690,2646,2545,2388,2180,1925,1630,1301,946,573, + 27,-355,-728,-1083,-1412,-1707,-1962,-2170,-2326,-2428,-2472,-2457,-2384,-2255,-2072,-1840,-1564,-1251,-908,-543,-165,218,596,961,1304,1617,1893,2125,2308,2437,2510,2525,2481,2379,2223,2015,1760,1465,1136,781,408, + -111,-492,-865,-1220,-1549,-1844,-2099,-2307,-2463,-2565,-2609,-2594,-2521,-2392,-2209,-1977,-1701,-1388,-1045,-680,-302,81,459,824,1167,1480,1756,1988,2171,2300,2373,2388,2344,2242,2086,1878,1623,1328,999,644,271, + -218,-600,-972,-1327,-1656,-1952,-2206,-2414,-2571,-2672,-2716,-2701,-2629,-2499,-2316,-2084,-1809,-1495,-1152,-788,-409,-27,352,717,1060,1373,1648,1880,2063,2193,2266,2280,2236,2135,1978,1770,1516,1220,891,536,164, + -294,-676,-1048,-1403,-1732,-2028,-2282,-2490,-2647,-2748,-2792,-2778,-2705,-2575,-2392,-2160,-1885,-1572,-1229,-864,-485,-103,276,640,983,1297,1572,1804,1987,2117,2189,2204,2160,2059,1902,1694,1440,1144,815,460,88, + -338,-720,-1092,-1447,-1776,-2071,-2326,-2534,-2691,-2792,-2836,-2821,-2749,-2619,-2436,-2204,-1928,-1615,-1272,-908,-529,-147,232,597,940,1253,1528,1761,1943,2073,2146,2160,2116,2015,1858,1650,1396,1100,771,416,44, + -349,-731,-1103,-1458,-1787,-2082,-2337,-2545,-2702,-2803,-2847,-2832,-2760,-2630,-2447,-2215,-1939,-1626,-1283,-919,-540,-158,221,586,929,1242,1517,1750,1932,2062,2135,2149,2105,2004,1847,1639,1385,1089,760,405,33, + -327,-709,-1081,-1436,-1765,-2060,-2315,-2523,-2680,-2781,-2825,-2810,-2738,-2608,-2425,-2193,-1918,-1604,-1261,-897,-518,-136,243,608,951,1264,1539,1772,1954,2084,2157,2171,2127,2026,1869,1661,1407,1111,782,427,55, + -272,-654,-1027,-1382,-1711,-2006,-2260,-2469,-2625,-2726,-2770,-2756,-2683,-2553,-2371,-2139,-1863,-1550,-1207,-842,-464,-81,297,662,1005,1318,1594,1826,2009,2138,2211,2226,2182,2081,1924,1716,1461,1166,837,482,109, + -186,-567,-940,-1295,-1624,-1919,-2174,-2382,-2538,-2640,-2684,-2669,-2596,-2467,-2284,-2052,-1776,-1463,-1120,-755,-377,6,384,749,1092,1405,1681,1913,2096,2225,2298,2313,2269,2167,2011,1803,1548,1253,924,569,196, + -68,-450,-822,-1177,-1506,-1802,-2056,-2264,-2421,-2522,-2566,-2552,-2479,-2349,-2167,-1934,-1659,-1346,-1003,-638,-259,123,502,866,1209,1523,1798,2030,2213,2343,2415,2430,2386,2285,2128,1920,1665,1370,1041,686,314, + 79,-303,-676,-1031,-1360,-1655,-1910,-2118,-2274,-2376,-2420,-2405,-2332,-2203,-2020,-1788,-1512,-1199,-856,-491,-113,270,648,1013,1356,1669,1945,2177,2360,2489,2562,2577,2533,2432,2275,2067,1812,1517,1188,833,460, + 253,-129,-502,-857,-1186,-1481,-1735,-1944,-2100,-2202,-2245,-2231,-2158,-2029,-1846,-1614,-1338,-1025,-682,-317,61,444,822,1187,1530,1843,2119,2351,2534,2663,2736,2751,2707,2606,2449,2241,1986,1691,1362,1007,634, + 452,70,-302,-657,-986,-1282,-1536,-1744,-1901,-2002,-2046,-2032,-1959,-1829,-1647,-1414,-1139,-826,-483,-118,261,643,1022,1386,1729,2042,2318,2550,2733,2863,2935,2950,2906,2805,2648,2440,2185,1890,1561,1206,834, + 673,292,-81,-436,-765,-1060,-1315,-1523,-1679,-1781,-1825,-1810,-1737,-1608,-1425,-1193,-917,-604,-261,104,482,865,1243,1608,1951,2264,2540,2772,2955,3084,3157,3172,3128,3026,2870,2662,2407,2112,1783,1428,1055, + 915,533,160,-195,-524,-819,-1074,-1282,-1438,-1540,-1584,-1569,-1496,-1367,-1184,-952,-676,-363,-20,345,723,1106,1484,1849,2192,2505,2781,3013,3196,3325,3398,3413,3369,3267,3111,2903,2648,2353,2024,1669,1296, + 1172,790,418,63,-266,-562,-816,-1024,-1181,-1282,-1326,-1312,-1239,-1109,-927,-695,-419,-106,237,602,980,1363,1741,2106,2449,2762,3038,3270,3453,3582,3655,3670,3626,3525,3368,3160,2905,2610,2281,1926,1553, + 1442,1061,688,333,4,-291,-546,-754,-911,-1012,-1056,-1041,-968,-839,-656,-424,-148,165,508,873,1251,1634,2012,2377,2720,3033,3309,3541,3723,3853,3926,3940,3896,3795,3638,3430,3176,2880,2551,2196,1824, + 1722,1340,967,612,283,-12,-266,-475,-631,-732,-776,-762,-689,-559,-377,-145,131,444,787,1152,1530,1913,2291,2656,2999,3312,3588,3820,4003,4132,4205,4220,4176,4075,3918,3710,3455,3160,2831,2476,2103, + 2007,1625,1253,898,569,273,19,-189,-346,-447,-491,-476,-404,-274,-91,141,416,730,1073,1437,1816,2198,2577,2942,3285,3598,3873,4105,4288,4418,4491,4505,4461,4360,4203,3995,3741,3445,3116,2761,2389, + 2294,1913,1540,1185,856,561,306,98,-59,-160,-204,-189,-116,13,196,428,704,1017,1360,1725,2103,2486,2864,3229,3572,3885,4161,4393,4576,4705,4778,4792,4749,4647,4491,4282,4028,3733,3404,3049,2676, + 2580,2198,1825,1470,1141,846,591,383,227,125,81,96,169,298,481,713,989,1302,1645,2010,2388,2771,3149,3514,3857,4170,4446,4678,4861,4990,5063,5078,5034,4932,4776,4568,4313,4018,3689,3334,2961, + 2859,2478,2105,1750,1421,1126,871,663,506,405,361,376,449,578,761,993,1269,1582,1925,2290,2668,3051,3429,3794,4137,4450,4726,4958,5140,5270,5343,5357,5313,5212,5055,4847,4593,4297,3968,3613,3241, + 3129,2748,2375,2020,1691,1396,1141,933,777,675,631,646,719,848,1031,1263,1539,1852,2195,2560,2938,3321,3699,4064,4407,4720,4996,5228,5411,5540,5613,5628,5584,5482,5326,5118,4863,4568,4239,3884,3511, + 3387,3005,2633,2278,1949,1653,1399,1191,1034,933,889,903,976,1106,1288,1520,1796,2109,2452,2817,3195,3578,3956,4321,4664,4977,5253,5485,5668,5797,5870,5885,5841,5740,5583,5375,5120,4825,4496,4141,3768, + 3628,3246,2874,2519,2190,1894,1640,1432,1275,1174,1130,1144,1217,1347,1529,1761,2037,2350,2693,3058,3436,3819,4197,4562,4905,5218,5494,5726,5909,6038,6111,6126,6082,5981,5824,5616,5361,5066,4737,4382,4009, + 3849,3468,3095,2740,2411,2116,1861,1653,1497,1395,1351,1366,1439,1568,1751,1983,2259,2572,2915,3280,3658,4041,4419,4784,5127,5440,5716,5948,6131,6260,6333,6348,6304,6202,6046,5838,5583,5288,4959,4604,4231, + 4049,3667,3294,2939,2610,2315,2060,1852,1696,1594,1550,1565,1638,1767,1950,2182,2458,2771,3114,3479,3857,4240,4618,4983,5326,5639,5915,6147,6330,6459,6532,6547,6503,6401,6245,6037,5782,5487,5158,4803,4430, + 4223,3841,3468,3113,2784,2489,2234,2026,1870,1768,1724,1739,1812,1941,2124,2356,2632,2945,3288,3653,4031,4414,4792,5157,5500,5813,6089,6321,6504,6633,6706,6721,6677,6576,6419,6211,5956,5661,5332,4977,4604, + 4369,3988,3615,3260,2931,2636,2381,2173,2017,1915,1871,1886,1959,2088,2271,2503,2779,3092,3435,3800,4178,4561,4939,5304,5647,5960,6236,6468,6651,6780,6853,6868,6824,6722,6566,6358,6103,5808,5479,5124,4751, + 4487,4105,3733,3378,3049,2753,2499,2291,2134,2033,1989,2003,2076,2206,2388,2621,2896,3209,3552,3917,4296,4678,5057,5421,5764,6077,6353,6585,6768,6898,6970,6985,6941,6840,6683,6475,6220,5925,5596,5241,4869, + 4574,4192,3819,3464,3135,2840,2585,2377,2221,2119,2075,2090,2163,2292,2475,2707,2983,3296,3639,4004,4382,4765,5143,5508,5851,6164,6440,6672,6855,6984,7057,7072,7028,6926,6770,6562,6307,6012,5683,5328,4955, + 4628,4247,3874,3519,3190,2895,2640,2432,2275,2174,2130,2145,2218,2347,2530,2762,3038,3351,3694,4059,4437,4820,5198,5563,5906,6219,6495,6727,6909,7039,7112,7126,7082,6981,6824,6616,6362,6067,5738,5383,5010, + 4650,4269,3896,3541,3212,2917,2662,2454,2297,2196,2152,2167,2240,2369,2552,2784,3060,3373,3716,4081,4459,4842,5220,5585,5928,6241,6517,6749,6931,7061,7134,7148,7104,7003,6846,6638,6384,6088,5759,5404,5032, + 4639,4258,3885,3530,3201,2906,2651,2443,2286,2185,2141,2156,2229,2358,2541,2773,3049,3362,3705,4070,4448,4831,5209,5574,5917,6230,6506,6738,6920,7050,7123,7137,7093,6992,6835,6627,6373,6077,5748,5393,5021, + 4595,4214,3841,3486,3157,2862,2607,2399,2243,2141,2097,2112,2185,2314,2497,2729,3005,3318,3661,4026,4404,4787,5165,5530,5873,6186,6462,6694,6877,7006,7079,7094,7050,6948,6792,6584,6329,6034,5705,5350,4977, + 4519,4138,3765,3410,3081,2786,2531,2323,2166,2065,2021,2036,2109,2238,2421,2653,2929,3242,3585,3950,4328,4711,5089,5454,5797,6110,6386,6618,6801,6930,7003,7017,6974,6872,6716,6507,6253,5958,5629,5274,4901, + 4412,4030,3658,3303,2974,2678,2424,2216,2059,1958,1914,1928,2001,2131,2313,2546,2821,3134,3477,3842,4221,4603,4982,5346,5689,6003,6278,6510,6693,6823,6895,6910,6866,6765,6608,6400,6145,5850,5521,5166,4794, + 4275,3893,3520,3165,2836,2541,2286,2078,1922,1820,1777,1791,1864,1993,2176,2408,2684,2997,3340,3705,4083,4466,4844,5209,5552,5865,6141,6373,6556,6685,6758,6773,6729,6628,6471,6263,6008,5713,5384,5029,4656, + 4109,3728,3355,3000,2671,2376,2121,1913,1757,1655,1611,1626,1699,1828,2011,2243,2519,2832,3175,3540,3918,4301,4679,5044,5387,5700,5976,6208,6391,6520,6593,6608,6564,6462,6306,6098,5843,5548,5219,4864,4491, + + 505,123,-250,-605,-934,-1229,-1484,-1692,-1848,-1950,-1994,-1979,-1906,-1777,-1594,-1362,-1086,-773,-430,-65,313,696,1074,1439,1782,2095,2371,2603,2786,2915,2988,3003,2959,2857,2701,2493,2238,1943,1614,1259,886, + 314,-68,-441,-796,-1125,-1420,-1675,-1883,-2039,-2141,-2185,-2170,-2097,-1968,-1785,-1553,-1277,-964,-621,-256,122,505,883,1248,1591,1904,2180,2412,2595,2724,2797,2812,2768,2666,2510,2302,2047,1752,1423,1068,695, + 148,-233,-606,-961,-1290,-1585,-1840,-2048,-2204,-2306,-2350,-2335,-2262,-2133,-1950,-1718,-1442,-1129,-786,-421,-43,340,718,1083,1426,1739,2015,2247,2430,2559,2632,2647,2603,2501,2345,2137,1882,1587,1258,903,530, + 11,-370,-743,-1098,-1427,-1722,-1977,-2185,-2342,-2443,-2487,-2472,-2399,-2270,-2087,-1855,-1579,-1266,-923,-558,-180,203,581,946,1289,1602,1878,2110,2292,2422,2495,2509,2465,2364,2207,1999,1745,1449,1120,765,393, + -96,-478,-850,-1205,-1534,-1830,-2084,-2292,-2449,-2550,-2594,-2580,-2507,-2377,-2195,-1963,-1687,-1374,-1031,-666,-288,95,473,838,1181,1494,1770,2002,2185,2314,2387,2402,2358,2257,2100,1892,1637,1342,1013,658,285, + -172,-554,-927,-1282,-1611,-1906,-2161,-2369,-2525,-2627,-2670,-2656,-2583,-2454,-2271,-2039,-1763,-1450,-1107,-742,-364,19,397,762,1105,1418,1694,1926,2109,2238,2311,2326,2282,2181,2024,1816,1561,1266,937,582,209, + -216,-598,-970,-1325,-1654,-1950,-2204,-2412,-2569,-2670,-2714,-2700,-2627,-2497,-2315,-2083,-1807,-1494,-1151,-786,-408,-25,354,718,1061,1374,1650,1882,2065,2195,2267,2282,2238,2137,1980,1772,1517,1222,893,538,165, + -227,-609,-981,-1336,-1665,-1961,-2215,-2423,-2580,-2681,-2725,-2711,-2638,-2508,-2326,-2094,-1818,-1505,-1162,-797,-419,-36,343,707,1050,1363,1639,1871,2054,2184,2256,2271,2227,2126,1969,1761,1506,1211,882,527,154, + -205,-587,-959,-1314,-1643,-1939,-2193,-2401,-2558,-2659,-2703,-2689,-2616,-2486,-2304,-2072,-1796,-1483,-1140,-775,-397,-14,364,729,1072,1385,1661,1893,2076,2205,2278,2293,2249,2148,1991,1783,1528,1233,904,549,176, + -150,-532,-905,-1260,-1589,-1884,-2139,-2347,-2503,-2605,-2649,-2634,-2561,-2432,-2249,-2017,-1741,-1428,-1085,-720,-342,41,419,784,1127,1440,1716,1948,2131,2260,2333,2348,2304,2202,2046,1838,1583,1288,959,604,231, + -64,-445,-818,-1173,-1502,-1797,-2052,-2260,-2417,-2518,-2562,-2547,-2474,-2345,-2162,-1930,-1654,-1341,-998,-633,-255,128,506,871,1214,1527,1803,2035,2217,2347,2420,2434,2390,2289,2132,1924,1670,1374,1045,690,318, + 54,-328,-701,-1056,-1385,-1680,-1935,-2143,-2299,-2401,-2445,-2430,-2357,-2228,-2045,-1813,-1537,-1224,-881,-516,-138,245,623,988,1331,1644,1920,2152,2335,2464,2537,2552,2508,2407,2250,2042,1787,1492,1163,808,435, + 200,-181,-554,-909,-1238,-1533,-1788,-1996,-2152,-2254,-2298,-2283,-2210,-2081,-1898,-1666,-1390,-1077,-734,-369,9,392,770,1135,1478,1791,2067,2299,2482,2611,2684,2699,2655,2553,2397,2189,1934,1639,1310,955,582, + 375,-7,-380,-735,-1064,-1359,-1614,-1822,-1978,-2080,-2124,-2109,-2036,-1907,-1724,-1492,-1216,-903,-560,-195,183,566,944,1309,1652,1965,2241,2473,2656,2785,2858,2873,2829,2727,2571,2363,2108,1813,1484,1129,756, + 574,192,-181,-536,-865,-1160,-1415,-1623,-1779,-1881,-1925,-1910,-1837,-1708,-1525,-1293,-1017,-704,-361,4,382,765,1143,1508,1851,2164,2440,2672,2855,2984,3057,3072,3028,2927,2770,2562,2307,2012,1683,1328,955, + 795,414,41,-314,-643,-938,-1193,-1401,-1558,-1659,-1703,-1688,-1615,-1486,-1303,-1071,-795,-482,-139,226,604,987,1365,1730,2073,2386,2662,2894,3076,3206,3279,3293,3249,3148,2991,2783,2529,2234,1905,1550,1177, + 1036,655,282,-73,-402,-697,-952,-1160,-1317,-1418,-1462,-1447,-1374,-1245,-1062,-830,-554,-241,102,467,845,1228,1606,1971,2314,2627,2903,3135,3318,3447,3520,3534,3491,3389,3233,3024,2770,2475,2146,1791,1418, + 1294,912,539,184,-145,-440,-695,-903,-1059,-1161,-1205,-1190,-1117,-988,-805,-573,-297,16,359,724,1102,1485,1863,2228,2571,2884,3160,3392,3575,3704,3777,3792,3748,3646,3490,3282,3027,2732,2403,2048,1675, + 1564,1182,810,455,126,-170,-424,-632,-789,-890,-934,-920,-847,-717,-535,-302,-27,286,629,994,1373,1755,2134,2498,2841,3155,3430,3662,3845,3975,4047,4062,4018,3917,3760,3552,3297,3002,2673,2318,1946, + 1844,1462,1089,734,405,110,-145,-353,-509,-611,-655,-640,-567,-438,-255,-23,253,566,909,1274,1652,2035,2413,2778,3121,3434,3710,3942,4125,4254,4327,4342,4298,4196,4040,3832,3577,3282,2953,2598,2225, + 2129,1747,1375,1020,691,395,141,-67,-224,-325,-369,-355,-282,-152,30,262,538,851,1194,1559,1937,2320,2698,3063,3406,3719,3995,4227,4410,4539,4612,4627,4583,4482,4325,4117,3862,3567,3238,2883,2510, + 2416,2034,1662,1307,978,682,428,220,63,-38,-82,-68,5,135,318,550,825,1138,1481,1846,2225,2607,2986,3351,3694,4007,4282,4514,4697,4827,4900,4914,4870,4769,4612,4404,4150,3854,3525,3170,2798, + 2701,2320,1947,1592,1263,968,713,505,348,247,203,218,291,420,603,835,1111,1424,1767,2132,2510,2893,3271,3636,3979,4292,4568,4800,4983,5112,5185,5199,5156,5054,4898,4690,4435,4140,3811,3456,3083, + 2981,2599,2227,1872,1543,1247,993,785,628,527,483,497,570,700,883,1115,1390,1703,2046,2411,2790,3172,3551,3915,4258,4572,4847,5079,5262,5392,5464,5479,5435,5334,5177,4969,4715,4419,4090,3735,3363, + 3251,2870,2497,2142,1813,1518,1263,1055,898,797,753,768,841,970,1153,1385,1661,1974,2317,2682,3060,3443,3821,4186,4529,4842,5118,5350,5532,5662,5735,5749,5705,5604,5447,5239,4985,4689,4360,4005,3633, + 3509,3127,2754,2399,2070,1775,1520,1312,1156,1054,1010,1025,1098,1227,1410,1642,1918,2231,2574,2939,3317,3700,4078,4443,4786,5099,5375,5607,5790,5919,5992,6007,5963,5861,5705,5497,5242,4947,4618,4263,3890, + 3750,3368,2995,2640,2311,2016,1761,1553,1397,1295,1251,1266,1339,1468,1651,1883,2159,2472,2815,3180,3558,3941,4319,4684,5027,5340,5616,5848,6031,6160,6233,6248,6204,6102,5946,5738,5483,5188,4859,4504,4131, + 3971,3590,3217,2862,2533,2238,1983,1775,1618,1517,1473,1488,1561,1690,1873,2105,2381,2694,3037,3402,3780,4163,4541,4906,5249,5562,5838,6070,6252,6382,6455,6469,6425,6324,6167,5959,5705,5409,5080,4725,4353, + 4170,3789,3416,3061,2732,2437,2182,1974,1817,1716,1672,1687,1760,1889,2072,2304,2580,2893,3236,3601,3979,4362,4740,5105,5448,5761,6037,6269,6452,6581,6654,6668,6625,6523,6367,6159,5904,5609,5280,4925,4552, + 4344,3963,3590,3235,2906,2611,2356,2148,1992,1890,1846,1861,1934,2063,2246,2478,2754,3067,3410,3775,4153,4536,4914,5279,5622,5935,6211,6443,6626,6755,6828,6843,6799,6697,6541,6333,6078,5783,5454,5099,4726, + 4491,4110,3737,3382,3053,2758,2503,2295,2138,2037,1993,2008,2081,2210,2393,2625,2901,3214,3557,3922,4300,4683,5061,5426,5769,6082,6358,6590,6772,6902,6975,6989,6945,6844,6687,6479,6225,5929,5600,5245,4873, + 4609,4227,3854,3499,3170,2875,2620,2412,2256,2154,2110,2125,2198,2327,2510,2742,3018,3331,3674,4039,4417,4800,5178,5543,5886,6199,6475,6707,6890,7019,7092,7107,7063,6961,6805,6597,6342,6047,5718,5363,4990, + 4695,4314,3941,3586,3257,2962,2707,2499,2342,2241,2197,2212,2285,2414,2597,2829,3105,3418,3761,4126,4504,4887,5265,5630,5973,6286,6562,6794,6977,7106,7179,7193,7150,7048,6892,6684,6429,6134,5805,5450,5077, + 4750,4368,3996,3641,3312,3016,2762,2554,2397,2296,2252,2266,2339,2469,2652,2884,3159,3472,3815,4180,4559,4941,5320,5685,6028,6341,6616,6848,7031,7161,7233,7248,7204,7103,6946,6738,6484,6188,5859,5504,5132, + 4772,4390,4018,3663,3334,3038,2784,2576,2419,2318,2274,2288,2361,2491,2674,2906,3181,3494,3837,4202,4581,4963,5342,5706,6049,6363,6638,6870,7053,7183,7255,7270,7226,7125,6968,6760,6506,6210,5881,5526,5154, + 4761,4379,4007,3652,3323,3027,2773,2565,2408,2307,2263,2277,2350,2480,2663,2895,3170,3483,3826,4191,4570,4952,5331,5695,6038,6352,6627,6859,7042,7172,7244,7259,7215,7114,6957,6749,6495,6199,5870,5515,5143, + 4717,4335,3963,3608,3279,2984,2729,2521,2364,2263,2219,2234,2306,2436,2619,2851,3127,3440,3783,4147,4526,4908,5287,5652,5995,6308,6583,6816,6998,7128,7201,7215,7171,7070,6913,6705,6451,6155,5826,5471,5099, + 4641,4259,3887,3532,3203,2907,2653,2445,2288,2187,2143,2158,2230,2360,2543,2775,3050,3363,3706,4071,4450,4832,5211,5576,5919,6232,6507,6739,6922,7052,7125,7139,7095,6994,6837,6629,6375,6079,5750,5395,5023, + 4534,4152,3779,3424,3095,2800,2545,2337,2181,2079,2035,2050,2123,2252,2435,2667,2943,3256,3599,3964,4342,4725,5103,5468,5811,6124,6400,6632,6815,6944,7017,7032,6988,6887,6730,6522,6267,5972,5643,5288,4915, + 4396,4015,3642,3287,2958,2663,2408,2200,2044,1942,1898,1913,1986,2115,2298,2530,2806,3119,3462,3827,4205,4588,4966,5331,5674,5987,6263,6495,6678,6807,6880,6895,6851,6749,6593,6385,6130,5835,5506,5151,4778, + 4231,3850,3477,3122,2793,2498,2243,2035,1878,1777,1733,1748,1821,1950,2133,2365,2641,2954,3297,3662,4040,4423,4801,5166,5509,5822,6098,6330,6513,6642,6715,6729,6686,6584,6428,6219,5965,5670,5341,4986,4613, + + 602,221,-152,-507,-836,-1131,-1386,-1594,-1750,-1852,-1896,-1881,-1808,-1679,-1496,-1264,-988,-675,-332,33,411,794,1172,1537,1880,2193,2469,2701,2884,3013,3086,3101,3057,2955,2799,2591,2336,2041,1712,1357,984, + 411,30,-343,-698,-1027,-1322,-1577,-1785,-1941,-2043,-2087,-2072,-1999,-1870,-1687,-1455,-1179,-866,-523,-158,220,603,981,1346,1689,2002,2278,2510,2693,2822,2895,2910,2866,2764,2608,2400,2145,1850,1521,1166,793, + 246,-135,-508,-863,-1192,-1487,-1742,-1950,-2107,-2208,-2252,-2237,-2164,-2035,-1852,-1620,-1344,-1031,-688,-323,55,438,816,1181,1524,1837,2113,2345,2527,2657,2730,2744,2700,2599,2442,2234,1980,1684,1355,1000,628, + 109,-273,-645,-1000,-1329,-1625,-1879,-2087,-2244,-2345,-2389,-2375,-2302,-2172,-1989,-1757,-1482,-1169,-826,-461,-82,300,679,1043,1387,1700,1975,2207,2390,2520,2592,2607,2563,2462,2305,2097,1843,1547,1218,863,491, + 2,-380,-753,-1108,-1437,-1732,-1987,-2195,-2351,-2453,-2497,-2482,-2409,-2280,-2097,-1865,-1589,-1276,-933,-568,-190,193,571,936,1279,1592,1868,2100,2283,2412,2485,2500,2456,2354,2198,1990,1735,1440,1111,756,383, + -74,-456,-829,-1184,-1513,-1808,-2063,-2271,-2427,-2529,-2573,-2558,-2485,-2356,-2173,-1941,-1665,-1352,-1009,-644,-266,117,495,860,1203,1516,1792,2024,2207,2336,2409,2424,2380,2278,2122,1914,1659,1364,1035,680,307, + -118,-500,-873,-1228,-1557,-1852,-2107,-2315,-2471,-2573,-2616,-2602,-2529,-2400,-2217,-1985,-1709,-1396,-1053,-688,-310,73,451,816,1159,1472,1748,1980,2163,2292,2365,2380,2336,2235,2078,1870,1615,1320,991,636,263, + -129,-511,-884,-1239,-1568,-1863,-2118,-2326,-2482,-2584,-2627,-2613,-2540,-2411,-2228,-1996,-1720,-1407,-1064,-699,-321,62,440,805,1148,1461,1737,1969,2152,2281,2354,2369,2325,2224,2067,1859,1604,1309,980,625,252, + -107,-489,-862,-1217,-1546,-1841,-2096,-2304,-2460,-2562,-2606,-2591,-2518,-2389,-2206,-1974,-1698,-1385,-1042,-677,-299,84,462,827,1170,1483,1759,1991,2174,2303,2376,2391,2347,2245,2089,1881,1626,1331,1002,647,274, + -53,-434,-807,-1162,-1491,-1786,-2041,-2249,-2406,-2507,-2551,-2536,-2463,-2334,-2151,-1919,-1643,-1330,-987,-622,-244,139,517,882,1225,1538,1814,2046,2229,2358,2431,2445,2402,2300,2144,1936,1681,1386,1057,702,329, + 34,-348,-720,-1075,-1404,-1700,-1954,-2162,-2319,-2420,-2464,-2450,-2377,-2247,-2064,-1832,-1557,-1244,-901,-536,-157,225,604,969,1312,1625,1900,2132,2315,2445,2517,2532,2488,2387,2230,2022,1768,1472,1143,788,416, + 151,-230,-603,-958,-1287,-1582,-1837,-2045,-2201,-2303,-2347,-2332,-2259,-2130,-1947,-1715,-1439,-1126,-783,-418,-40,343,721,1086,1429,1742,2018,2250,2433,2562,2635,2650,2606,2504,2348,2140,1885,1590,1261,906,533, + 298,-83,-456,-811,-1140,-1435,-1690,-1898,-2055,-2156,-2200,-2185,-2112,-1983,-1800,-1568,-1292,-979,-636,-271,107,490,868,1233,1576,1889,2165,2397,2579,2709,2782,2796,2752,2651,2494,2286,2032,1737,1408,1053,680, + 472,91,-282,-637,-966,-1261,-1516,-1724,-1881,-1982,-2026,-2011,-1938,-1809,-1626,-1394,-1118,-805,-462,-97,281,664,1042,1407,1750,2063,2339,2571,2754,2883,2956,2970,2927,2825,2669,2461,2206,1911,1582,1227,854, + 671,290,-83,-438,-767,-1062,-1317,-1525,-1681,-1783,-1827,-1812,-1739,-1610,-1427,-1195,-919,-606,-263,102,480,863,1241,1606,1949,2262,2538,2770,2953,3082,3155,3170,3126,3024,2868,2660,2405,2110,1781,1426,1053, + 893,511,139,-216,-545,-841,-1095,-1303,-1460,-1561,-1605,-1590,-1518,-1388,-1205,-973,-698,-385,-42,323,702,1084,1463,1828,2171,2484,2759,2991,3174,3304,3377,3391,3347,3246,3089,2881,2627,2331,2002,1647,1275, + 1134,752,380,25,-304,-600,-854,-1062,-1219,-1320,-1364,-1349,-1277,-1147,-964,-732,-457,-143,200,564,943,1325,1704,2069,2412,2725,3000,3232,3415,3545,3618,3632,3588,3487,3330,3122,2868,2572,2243,1888,1516, + 1391,1010,637,282,-47,-342,-597,-805,-961,-1063,-1107,-1092,-1019,-890,-707,-475,-199,114,457,822,1200,1583,1961,2326,2669,2982,3258,3490,3673,3802,3875,3890,3846,3744,3588,3380,3125,2830,2501,2146,1773, + 1662,1280,907,552,223,-72,-327,-535,-691,-793,-836,-822,-749,-620,-437,-205,71,384,727,1092,1470,1853,2231,2596,2939,3252,3528,3760,3943,4072,4145,4160,4116,4015,3858,3650,3395,3100,2771,2416,2043, + 1941,1560,1187,832,503,208,-47,-255,-412,-513,-557,-542,-469,-340,-157,75,351,664,1007,1372,1750,2133,2511,2876,3219,3532,3808,4040,4223,4352,4425,4439,4396,4294,4138,3930,3675,3380,3051,2696,2323, + 2227,1845,1472,1117,788,493,238,30,-126,-228,-272,-257,-184,-55,128,360,636,949,1292,1657,2035,2418,2796,3161,3504,3817,4093,4325,4508,4637,4710,4725,4681,4579,4423,4215,3960,3665,3336,2981,2608, + 2514,2132,1759,1404,1076,780,526,318,161,60,16,30,103,233,415,647,923,1236,1579,1944,2322,2705,3083,3448,3791,4104,4380,4612,4795,4924,4997,5012,4968,4867,4710,4502,4247,3952,3623,3268,2895, + 2799,2417,2045,1690,1361,1066,811,603,446,345,301,316,388,518,701,933,1208,1522,1865,2229,2608,2990,3369,3734,4077,4390,4665,4897,5080,5210,5283,5297,5253,5152,4995,4787,4533,4237,3908,3553,3181, + 3079,2697,2324,1969,1640,1345,1090,882,726,624,581,595,668,797,980,1212,1488,1801,2144,2509,2887,3270,3648,4013,4356,4669,4945,5177,5360,5489,5562,5577,5533,5432,5275,5067,4812,4517,4188,3833,3460, + 3349,2967,2595,2240,1911,1615,1361,1153,996,895,851,865,938,1068,1251,1483,1758,2071,2414,2779,3158,3540,3919,4284,4627,4940,5215,5447,5630,5760,5832,5847,5803,5702,5545,5337,5083,4787,4458,4103,3731, + 3606,3225,2852,2497,2168,1873,1618,1410,1254,1152,1108,1123,1196,1325,1508,1740,2016,2329,2672,3037,3415,3798,4176,4541,4884,5197,5473,5705,5888,6017,6090,6105,6061,5959,5803,5595,5340,5045,4716,4361,3988, + 3847,3466,3093,2738,2409,2114,1859,1651,1495,1393,1349,1364,1437,1566,1749,1981,2257,2570,2913,3278,3656,4039,4417,4782,5125,5438,5714,5946,6129,6258,6331,6346,6302,6200,6044,5836,5581,5286,4957,4602,4229, + 4069,3687,3315,2960,2631,2335,2081,1873,1716,1615,1571,1585,1658,1788,1971,2203,2478,2791,3134,3499,3878,4260,4639,5004,5347,5660,5935,6167,6350,6480,6552,6567,6523,6422,6265,6057,5803,5507,5178,4823,4451, + 4268,3886,3514,3159,2830,2535,2280,2072,1915,1814,1770,1785,1857,1987,2170,2402,2678,2991,3334,3698,4077,4459,4838,5203,5546,5859,6134,6367,6549,6679,6752,6766,6722,6621,6464,6256,6002,5706,5377,5022,4650, + 4442,4061,3688,3333,3004,2709,2454,2246,2089,1988,1944,1959,2032,2161,2344,2576,2852,3165,3508,3873,4251,4634,5012,5377,5720,6033,6309,6541,6723,6853,6926,6940,6896,6795,6638,6430,6176,5881,5552,5197,4824, + 4589,4207,3835,3480,3151,2855,2601,2393,2236,2135,2091,2105,2178,2308,2491,2723,2998,3311,3654,4019,4398,4780,5159,5524,5867,6180,6455,6687,6870,7000,7072,7087,7043,6942,6785,6577,6323,6027,5698,5343,4971, + 4706,4325,3952,3597,3268,2973,2718,2510,2354,2252,2208,2223,2296,2425,2608,2840,3116,3429,3772,4137,4515,4898,5276,5641,5984,6297,6573,6805,6988,7117,7190,7205,7161,7059,6903,6695,6440,6145,5816,5461,5088, + 4793,4411,4039,3684,3355,3060,2805,2597,2440,2339,2295,2310,2382,2512,2695,2927,3202,3516,3859,4223,4602,4984,5363,5728,6071,6384,6659,6892,7074,7204,7277,7291,7247,7146,6989,6781,6527,6231,5902,5547,5175, + 4848,4466,4093,3738,3409,3114,2860,2651,2495,2393,2350,2364,2437,2567,2749,2981,3257,3570,3913,4278,4656,5039,5417,5782,6125,6438,6714,6946,7129,7258,7331,7346,7302,7201,7044,6836,6581,6286,5957,5602,5229, + 4870,4488,4115,3760,3431,3136,2882,2673,2517,2415,2372,2386,2459,2588,2771,3003,3279,3592,3935,4300,4678,5061,5439,5804,6147,6460,6736,6968,7151,7280,7353,7368,7324,7223,7066,6858,6603,6308,5979,5624,5251, + 4859,4477,4104,3749,3420,3125,2871,2662,2506,2404,2361,2375,2448,2577,2760,2992,3268,3581,3924,4289,4667,5050,5428,5793,6136,6449,6725,6957,7140,7269,7342,7357,7313,7212,7055,6847,6592,6297,5968,5613,5240, + 4815,4433,4061,3706,3377,3081,2827,2619,2462,2361,2317,2331,2404,2534,2716,2949,3224,3537,3880,4245,4624,5006,5385,5749,6092,6406,6681,6913,7096,7226,7298,7313,7269,7168,7011,6803,6548,6253,5924,5569,5197, + 4739,4357,3985,3630,3301,3005,2751,2543,2386,2285,2241,2255,2328,2458,2640,2872,3148,3461,3804,4169,4547,4930,5308,5673,6016,6329,6605,6837,7020,7149,7222,7237,7193,7092,6935,6727,6472,6177,5848,5493,5120, + 4631,4250,3877,3522,3193,2898,2643,2435,2279,2177,2133,2148,2221,2350,2533,2765,3041,3354,3697,4062,4440,4823,5201,5566,5909,6222,6498,6730,6913,7042,7115,7130,7086,6984,6828,6620,6365,6070,5741,5386,5013, + 4494,4113,3740,3385,3056,2761,2506,2298,2141,2040,1996,2011,2084,2213,2396,2628,2904,3217,3560,3925,4303,4686,5064,5429,5772,6085,6361,6593,6776,6905,6978,6992,6949,6847,6691,6482,6228,5933,5604,5249,4876, + 4329,3947,3575,3220,2891,2595,2341,2133,1976,1875,1831,1846,1918,2048,2231,2463,2738,3051,3395,3759,4138,4520,4899,5264,5607,5920,6195,6427,6610,6740,6813,6827,6783,6682,6525,6317,6063,5767,5438,5083,4711, + + 674,292,-80,-435,-764,-1060,-1314,-1522,-1679,-1780,-1824,-1810,-1737,-1607,-1424,-1192,-917,-604,-261,104,483,865,1244,1609,1952,2265,2540,2772,2955,3085,3157,3172,3128,3027,2870,2662,2408,2112,1783,1428,1056, + 483,101,-271,-626,-955,-1251,-1505,-1713,-1870,-1971,-2015,-2001,-1928,-1798,-1616,-1383,-1108,-795,-452,-87,292,674,1053,1417,1760,2074,2349,2581,2764,2894,2966,2981,2937,2836,2679,2471,2216,1921,1592,1237,865, + 318,-64,-437,-792,-1121,-1416,-1671,-1879,-2035,-2137,-2180,-2166,-2093,-1964,-1781,-1549,-1273,-960,-617,-252,126,509,887,1252,1595,1908,2184,2416,2599,2728,2801,2816,2772,2671,2514,2306,2051,1756,1427,1072,699, + 180,-201,-574,-929,-1258,-1553,-1808,-2016,-2172,-2274,-2318,-2303,-2230,-2101,-1918,-1686,-1410,-1097,-754,-389,-11,372,750,1115,1458,1771,2047,2279,2462,2591,2664,2679,2635,2533,2377,2169,1914,1619,1290,935,562, + 73,-308,-681,-1036,-1365,-1660,-1915,-2123,-2280,-2381,-2425,-2410,-2337,-2208,-2025,-1793,-1517,-1204,-861,-496,-118,265,643,1008,1351,1664,1940,2172,2354,2484,2557,2571,2527,2426,2269,2061,1807,1511,1182,827,455, + -3,-385,-757,-1112,-1441,-1737,-1991,-2199,-2356,-2457,-2501,-2486,-2414,-2284,-2101,-1869,-1594,-1281,-938,-573,-194,188,567,932,1275,1588,1863,2095,2278,2408,2481,2495,2451,2350,2193,1985,1731,1435,1106,751,379, + -47,-428,-801,-1156,-1485,-1780,-2035,-2243,-2400,-2501,-2545,-2530,-2457,-2328,-2145,-1913,-1637,-1324,-981,-616,-238,145,523,888,1231,1544,1820,2052,2234,2364,2437,2451,2407,2306,2149,1941,1687,1392,1063,708,335, + -58,-439,-812,-1167,-1496,-1791,-2046,-2254,-2411,-2512,-2556,-2541,-2468,-2339,-2156,-1924,-1648,-1335,-992,-627,-249,134,512,877,1220,1533,1809,2041,2223,2353,2426,2440,2396,2295,2138,1930,1676,1381,1052,697,324, + -36,-417,-790,-1145,-1474,-1769,-2024,-2232,-2389,-2490,-2534,-2519,-2446,-2317,-2134,-1902,-1626,-1313,-970,-605,-227,156,534,899,1242,1555,1831,2063,2245,2375,2448,2462,2418,2317,2160,1952,1698,1402,1073,718,346, + 19,-363,-735,-1090,-1419,-1715,-1969,-2177,-2334,-2435,-2479,-2465,-2392,-2262,-2080,-1848,-1572,-1259,-916,-551,-173,210,588,953,1296,1609,1885,2117,2300,2429,2502,2517,2473,2372,2215,2007,1752,1457,1128,773,400, + 106,-276,-649,-1004,-1333,-1628,-1883,-2091,-2247,-2349,-2393,-2378,-2305,-2176,-1993,-1761,-1485,-1172,-829,-464,-86,297,675,1040,1383,1696,1972,2204,2387,2516,2589,2604,2560,2458,2302,2094,1839,1544,1215,860,487, + 223,-159,-531,-886,-1215,-1511,-1765,-1973,-2130,-2231,-2275,-2261,-2188,-2058,-1875,-1643,-1368,-1055,-712,-347,32,414,793,1158,1501,1814,2089,2321,2504,2634,2706,2721,2677,2576,2419,2211,1957,1661,1332,977,605, + 370,-12,-385,-740,-1069,-1364,-1618,-1827,-1983,-2085,-2128,-2114,-2041,-1912,-1729,-1497,-1221,-908,-565,-200,178,561,939,1304,1647,1960,2236,2468,2651,2780,2853,2868,2824,2723,2566,2358,2103,1808,1479,1124,751, + 544,162,-210,-565,-894,-1190,-1444,-1652,-1809,-1910,-1954,-1940,-1867,-1737,-1555,-1323,-1047,-734,-391,-26,352,735,1113,1478,1821,2134,2410,2642,2825,2954,3027,3042,2998,2897,2740,2532,2277,1982,1653,1298,925, + 743,361,-11,-366,-695,-991,-1245,-1453,-1610,-1711,-1755,-1741,-1668,-1538,-1355,-1123,-848,-535,-192,173,552,934,1313,1678,2021,2334,2609,2841,3024,3154,3226,3241,3197,3096,2939,2731,2477,2181,1852,1497,1125, + 965,583,210,-145,-474,-769,-1024,-1232,-1388,-1490,-1534,-1519,-1446,-1317,-1134,-902,-626,-313,30,395,773,1156,1534,1899,2242,2555,2831,3063,3246,3375,3448,3463,3419,3317,3161,2953,2698,2403,2074,1719,1346, + 1206,824,451,96,-233,-528,-783,-991,-1147,-1249,-1293,-1278,-1205,-1076,-893,-661,-385,-72,271,636,1014,1397,1775,2140,2483,2796,3072,3304,3487,3616,3689,3704,3660,3558,3402,3194,2939,2644,2315,1960,1587, + 1463,1081,709,354,25,-271,-525,-733,-890,-991,-1035,-1021,-948,-818,-635,-403,-128,185,528,893,1272,1654,2033,2398,2741,3054,3329,3561,3744,3874,3946,3961,3917,3816,3659,3451,3197,2901,2572,2217,1845, + 1733,1352,979,624,295,-0,-255,-463,-620,-721,-765,-750,-677,-548,-365,-133,143,456,799,1164,1542,1925,2303,2668,3011,3324,3600,3832,4014,4144,4217,4231,4188,4086,3930,3721,3467,3172,2843,2488,2115, + 2013,1631,1259,904,575,279,25,-183,-340,-441,-485,-471,-398,-268,-86,146,422,735,1078,1443,1821,2204,2583,2947,3290,3603,3879,4111,4294,4424,4496,4511,4467,4366,4209,4001,3746,3451,3122,2767,2394, + 2298,1917,1544,1189,860,565,310,102,-55,-156,-200,-185,-112,17,200,432,708,1021,1364,1729,2107,2490,2868,3233,3576,3889,4165,4397,4579,4709,4782,4796,4752,4651,4494,4286,4032,3736,3407,3052,2680, + 2585,2204,1831,1476,1147,852,597,389,232,131,87,102,175,304,487,719,995,1308,1651,2016,2394,2777,3155,3520,3863,4176,4452,4684,4867,4996,5069,5084,5040,4938,4782,4574,4319,4024,3695,3340,2967, + 2871,2489,2116,1761,1432,1137,882,674,518,416,372,387,460,589,772,1004,1280,1593,1936,2301,2679,3062,3440,3805,4148,4461,4737,4969,5152,5281,5354,5369,5325,5223,5067,4859,4604,4309,3980,3625,3252, + 3150,2769,2396,2041,1712,1417,1162,954,797,696,652,667,740,869,1052,1284,1560,1873,2216,2581,2959,3342,3720,4085,4428,4741,5017,5249,5432,5561,5634,5648,5605,5503,5347,5138,4884,4589,4260,3905,3532, + 3421,3039,2666,2311,1982,1687,1432,1224,1068,966,922,937,1010,1139,1322,1554,1830,2143,2486,2851,3229,3612,3990,4355,4698,5011,5287,5519,5702,5831,5904,5919,5875,5773,5617,5409,5154,4859,4530,4175,3802, + 3678,3296,2924,2569,2240,1944,1690,1482,1325,1224,1180,1194,1267,1397,1579,1812,2087,2400,2743,3108,3487,3869,4248,4612,4955,5269,5544,5776,5959,6089,6161,6176,6132,6031,5874,5666,5411,5116,4787,4432,4060, + 3919,3537,3165,2810,2481,2185,1931,1723,1566,1465,1421,1435,1508,1638,1821,2053,2328,2641,2984,3349,3728,4110,4489,4853,5196,5510,5785,6017,6200,6330,6402,6417,6373,6272,6115,5907,5653,5357,5028,4673,4301, + 4141,3759,3386,3031,2702,2407,2152,1944,1788,1686,1642,1657,1730,1859,2042,2274,2550,2863,3206,3571,3949,4332,4710,5075,5418,5731,6007,6239,6422,6551,6624,6639,6595,6493,6337,6129,5874,5579,5250,4895,4522, + 4340,3958,3585,3230,2901,2606,2351,2143,1987,1885,1841,1856,1929,2058,2241,2473,2749,3062,3405,3770,4148,4531,4909,5274,5617,5930,6206,6438,6621,6750,6823,6838,6794,6692,6536,6328,6073,5778,5449,5094,4721, + 4514,4132,3759,3404,3075,2780,2526,2317,2161,2059,2016,2030,2103,2232,2415,2647,2923,3236,3579,3944,4322,4705,5083,5448,5791,6104,6380,6612,6795,6924,6997,7012,6968,6867,6710,6502,6247,5952,5623,5268,4895, + 4660,4279,3906,3551,3222,2927,2672,2464,2308,2206,2162,2177,2250,2379,2562,2794,3070,3383,3726,4091,4469,4852,5230,5595,5938,6251,6527,6759,6942,7071,7144,7159,7115,7013,6857,6649,6394,6099,5770,5415,5042, + 4778,4396,4024,3669,3340,3044,2790,2582,2425,2324,2280,2294,2367,2497,2680,2912,3187,3500,3843,4208,4587,4969,5348,5713,6056,6369,6644,6876,7059,7189,7261,7276,7232,7131,6974,6766,6512,6216,5887,5532,5160, + 4865,4483,4110,3755,3426,3131,2876,2668,2512,2410,2366,2381,2454,2583,2766,2998,3274,3587,3930,4295,4673,5056,5434,5799,6142,6455,6731,6963,7146,7275,7348,7363,7319,7217,7061,6853,6598,6303,5974,5619,5246, + 4919,4538,4165,3810,3481,3186,2931,2723,2566,2465,2421,2436,2509,2638,2821,3053,3329,3642,3985,4350,4728,5111,5489,5854,6197,6510,6786,7018,7201,7330,7403,7417,7374,7272,7116,6908,6653,6358,6029,5674,5301, + 4941,4560,4187,3832,3503,3208,2953,2745,2588,2487,2443,2458,2531,2660,2843,3075,3351,3664,4007,4372,4750,5133,5511,5876,6219,6532,6808,7040,7223,7352,7425,7439,7396,7294,7138,6930,6675,6380,6051,5696,5323, + 4930,4549,4176,3821,3492,3197,2942,2734,2577,2476,2432,2447,2520,2649,2832,3064,3340,3653,3996,4361,4739,5122,5500,5865,6208,6521,6797,7029,7212,7341,7414,7428,7385,7283,7127,6919,6664,6369,6040,5685,5312, + 4886,4505,4132,3777,3448,3153,2898,2690,2534,2432,2388,2403,2476,2605,2788,3020,3296,3609,3952,4317,4695,5078,5456,5821,6164,6477,6753,6985,7168,7297,7370,7385,7341,7239,7083,6875,6620,6325,5996,5641,5268, + 4810,4429,4056,3701,3372,3077,2822,2614,2458,2356,2312,2327,2400,2529,2712,2944,3220,3533,3876,4241,4619,5002,5380,5745,6088,6401,6677,6909,7092,7221,7294,7309,7265,7163,7007,6799,6544,6249,5920,5565,5192, + 4703,4321,3949,3594,3265,2969,2715,2507,2350,2249,2205,2219,2292,2422,2605,2837,3112,3425,3768,4133,4512,4894,5273,5638,5981,6294,6569,6801,6984,7114,7187,7201,7157,7056,6899,6691,6437,6141,5812,5457,5085, + 4566,4184,3812,3457,3128,2832,2578,2370,2213,2112,2068,2082,2155,2285,2467,2699,2975,3288,3631,3996,4374,4757,5135,5500,5843,6156,6432,6664,6847,6976,7049,7064,7020,6919,6762,6554,6299,6004,5675,5320,4947, + 4401,4019,3646,3291,2962,2667,2412,2204,2048,1946,1902,1917,1990,2119,2302,2534,2810,3123,3466,3831,4209,4592,4970,5335,5678,5991,6267,6499,6682,6811,6884,6899,6855,6753,6597,6389,6134,5839,5510,5155,4782, + + 718,336,-37,-392,-721,-1016,-1271,-1479,-1635,-1737,-1781,-1766,-1693,-1564,-1381,-1149,-873,-560,-217,148,526,909,1287,1652,1995,2308,2584,2816,2999,3128,3201,3216,3172,3070,2914,2706,2451,2156,1827,1472,1099, + 527,145,-228,-583,-912,-1207,-1462,-1670,-1826,-1928,-1972,-1957,-1884,-1755,-1572,-1340,-1064,-751,-408,-43,335,718,1096,1461,1804,2117,2393,2625,2808,2937,3010,3025,2981,2879,2723,2515,2260,1965,1636,1281,908, + 361,-20,-393,-748,-1077,-1372,-1627,-1835,-1992,-2093,-2137,-2122,-2049,-1920,-1737,-1505,-1229,-916,-573,-208,170,553,931,1296,1639,1952,2228,2460,2643,2772,2845,2859,2816,2714,2558,2350,2095,1800,1471,1116,743, + 224,-158,-530,-885,-1214,-1509,-1764,-1972,-2129,-2230,-2274,-2259,-2187,-2057,-1874,-1642,-1367,-1053,-710,-346,33,415,794,1159,1502,1815,2090,2323,2505,2635,2708,2722,2678,2577,2420,2212,1958,1662,1333,978,606, + 117,-265,-638,-993,-1322,-1617,-1871,-2080,-2236,-2338,-2381,-2367,-2294,-2165,-1982,-1750,-1474,-1161,-818,-453,-75,308,686,1051,1394,1707,1983,2215,2398,2527,2600,2615,2571,2470,2313,2105,1850,1555,1226,871,498, + 41,-341,-714,-1069,-1398,-1693,-1948,-2156,-2312,-2414,-2458,-2443,-2370,-2241,-2058,-1826,-1550,-1237,-894,-529,-151,232,610,975,1318,1631,1907,2139,2322,2451,2524,2539,2495,2393,2237,2029,1774,1479,1150,795,422, + -3,-385,-757,-1112,-1441,-1737,-1991,-2199,-2356,-2457,-2501,-2487,-2414,-2284,-2102,-1870,-1594,-1281,-938,-573,-195,188,566,931,1274,1587,1863,2095,2278,2407,2480,2495,2451,2350,2193,1985,1730,1435,1106,751,378, + -14,-396,-768,-1123,-1452,-1748,-2002,-2210,-2367,-2468,-2512,-2498,-2425,-2295,-2113,-1881,-1605,-1292,-949,-584,-206,177,555,920,1263,1576,1852,2084,2267,2396,2469,2484,2440,2339,2182,1974,1719,1424,1095,740,367, + 8,-374,-747,-1102,-1431,-1726,-1980,-2188,-2345,-2446,-2490,-2476,-2403,-2273,-2091,-1859,-1583,-1270,-927,-562,-184,199,577,942,1285,1598,1874,2106,2289,2418,2491,2506,2462,2361,2204,1996,1741,1446,1117,762,389, + 62,-319,-692,-1047,-1376,-1671,-1926,-2134,-2290,-2392,-2436,-2421,-2348,-2219,-2036,-1804,-1528,-1215,-872,-507,-129,254,632,997,1340,1653,1929,2161,2344,2473,2546,2561,2517,2415,2259,2051,1796,1501,1172,817,444, + 149,-233,-605,-960,-1289,-1584,-1839,-2047,-2204,-2305,-2349,-2334,-2262,-2132,-1949,-1717,-1441,-1128,-785,-421,-42,340,719,1084,1427,1740,2016,2248,2430,2560,2633,2647,2603,2502,2345,2137,1883,1587,1258,903,531, + 267,-115,-488,-843,-1172,-1467,-1722,-1930,-2086,-2188,-2232,-2217,-2144,-2015,-1832,-1600,-1324,-1011,-668,-303,75,458,836,1201,1544,1857,2133,2365,2548,2677,2750,2765,2721,2619,2463,2255,2000,1705,1376,1021,648, + 413,32,-341,-696,-1025,-1320,-1575,-1783,-1939,-2041,-2085,-2070,-1997,-1868,-1685,-1453,-1177,-864,-521,-156,222,605,983,1348,1691,2004,2280,2512,2695,2824,2897,2912,2868,2766,2610,2402,2147,1852,1523,1168,795, + 587,206,-167,-522,-851,-1146,-1401,-1609,-1765,-1867,-1911,-1896,-1823,-1694,-1511,-1279,-1003,-690,-347,18,396,779,1157,1522,1865,2178,2454,2686,2869,2998,3071,3086,3042,2940,2784,2576,2321,2026,1697,1342,969, + 787,405,32,-323,-652,-947,-1202,-1410,-1566,-1668,-1712,-1697,-1624,-1495,-1312,-1080,-804,-491,-148,217,595,978,1356,1721,2064,2377,2653,2885,3068,3197,3270,3285,3241,3139,2983,2775,2520,2225,1896,1541,1168, + 1008,627,254,-101,-430,-725,-980,-1188,-1345,-1446,-1490,-1475,-1402,-1273,-1090,-858,-582,-269,74,439,817,1200,1578,1943,2286,2599,2875,3107,3289,3419,3492,3506,3462,3361,3204,2996,2742,2446,2117,1762,1390, + 1249,868,495,140,-189,-484,-739,-947,-1104,-1205,-1249,-1234,-1161,-1032,-849,-617,-341,-28,315,680,1058,1441,1819,2184,2527,2840,3116,3348,3530,3660,3733,3747,3703,3602,3445,3237,2983,2687,2359,2004,1631, + 1507,1125,752,397,68,-227,-482,-690,-846,-948,-992,-977,-904,-775,-592,-360,-84,229,572,937,1315,1698,2076,2441,2784,3097,3373,3605,3788,3917,3990,4005,3961,3859,3703,3495,3240,2945,2616,2261,1888, + 1777,1395,1023,668,339,43,-211,-419,-576,-677,-721,-707,-634,-504,-322,-90,186,499,842,1207,1585,1968,2346,2711,3054,3367,3643,3875,4058,4187,4260,4275,4231,4130,3973,3765,3510,3215,2886,2531,2158, + 2056,1675,1302,947,618,323,68,-140,-296,-398,-442,-427,-354,-225,-42,190,466,779,1122,1487,1865,2248,2626,2991,3334,3647,3923,4155,4338,4467,4540,4555,4511,4409,4253,4045,3790,3495,3166,2811,2438, + 2342,1960,1587,1232,903,608,354,145,-11,-113,-156,-142,-69,61,243,475,751,1064,1407,1772,2150,2533,2911,3276,3619,3932,4208,4440,4623,4752,4825,4840,4796,4695,4538,4330,4075,3780,3451,3096,2723, + 2629,2247,1875,1520,1191,895,641,433,276,175,131,145,218,348,531,763,1038,1351,1694,2059,2438,2820,3199,3563,3906,4220,4495,4727,4910,5040,5112,5127,5083,4982,4825,4617,4363,4067,3738,3383,3011, + 2914,2533,2160,1805,1476,1181,926,718,561,460,416,431,504,633,816,1048,1324,1637,1980,2345,2723,3106,3484,3849,4192,4505,4781,5013,5195,5325,5398,5412,5369,5267,5111,4902,4648,4353,4024,3669,3296, + 3194,2812,2440,2085,1756,1460,1206,998,841,740,696,710,783,913,1095,1327,1603,1916,2259,2624,3002,3385,3763,4128,4471,4784,5060,5292,5475,5604,5677,5692,5648,5547,5390,5182,4927,4632,4303,3948,3575, + 3464,3083,2710,2355,2026,1731,1476,1268,1111,1010,966,981,1054,1183,1366,1598,1874,2187,2530,2895,3273,3656,4034,4399,4742,5055,5331,5563,5745,5875,5948,5962,5918,5817,5660,5452,5198,4902,4573,4218,3846, + 3722,3340,2967,2612,2283,1988,1733,1525,1369,1267,1223,1238,1311,1440,1623,1855,2131,2444,2787,3152,3530,3913,4291,4656,4999,5312,5588,5820,6003,6132,6205,6220,6176,6074,5918,5710,5455,5160,4831,4476,4103, + 3963,3581,3208,2853,2524,2229,1974,1766,1610,1508,1464,1479,1552,1681,1864,2096,2372,2685,3028,3393,3771,4154,4532,4897,5240,5553,5829,6061,6244,6373,6446,6461,6417,6315,6159,5951,5696,5401,5072,4717,4344, + 4184,3802,3430,3075,2746,2451,2196,1988,1831,1730,1686,1701,1773,1903,2086,2318,2594,2907,3250,3614,3993,4375,4754,5119,5462,5775,6050,6283,6465,6595,6668,6682,6638,6537,6380,6172,5918,5622,5293,4938,4566, + 4383,4002,3629,3274,2945,2650,2395,2187,2030,1929,1885,1900,1973,2102,2285,2517,2793,3106,3449,3814,4192,4575,4953,5318,5661,5974,6250,6482,6665,6794,6867,6881,6838,6736,6580,6371,6117,5822,5493,5138,4765, + 4557,4176,3803,3448,3119,2824,2569,2361,2204,2103,2059,2074,2147,2276,2459,2691,2967,3280,3623,3988,4366,4749,5127,5492,5835,6148,6424,6656,6839,6968,7041,7056,7012,6910,6754,6546,6291,5996,5667,5312,4939, + 4704,4322,3950,3595,3266,2971,2716,2508,2351,2250,2206,2221,2293,2423,2606,2838,3113,3427,3770,4134,4513,4895,5274,5639,5982,6295,6570,6803,6985,7115,7188,7202,7158,7057,6900,6692,6438,6142,5813,5458,5086, + 4822,4440,4067,3712,3383,3088,2833,2625,2469,2367,2323,2338,2411,2540,2723,2955,3231,3544,3887,4252,4630,5013,5391,5756,6099,6412,6688,6920,7103,7232,7305,7320,7276,7174,7018,6810,6555,6260,5931,5576,5203, + 4908,4527,4154,3799,3470,3175,2920,2712,2555,2454,2410,2425,2498,2627,2810,3042,3318,3631,3974,4339,4717,5100,5478,5843,6186,6499,6775,7007,7189,7319,7392,7406,7363,7261,7105,6896,6642,6347,6018,5663,5290, + 4963,4581,4209,3854,3525,3229,2975,2767,2610,2509,2465,2479,2552,2682,2864,3097,3372,3685,4028,4393,4772,5154,5533,5897,6240,6554,6829,7061,7244,7374,7446,7461,7417,7316,7159,6951,6696,6401,6072,5717,5345, + 4985,4603,4231,3876,3547,3251,2997,2789,2632,2531,2487,2501,2574,2704,2886,3119,3394,3707,4050,4415,4794,5176,5555,5919,6262,6575,6851,7083,7266,7396,7468,7483,7439,7338,7181,6973,6718,6423,6094,5739,5367, + 4974,4592,4220,3865,3536,3240,2986,2778,2621,2520,2476,2490,2563,2693,2875,3108,3383,3696,4039,4404,4783,5165,5544,5908,6251,6564,6840,7072,7255,7385,7457,7472,7428,7327,7170,6962,6707,6412,6083,5728,5356, + 4930,4548,4176,3821,3492,3196,2942,2734,2577,2476,2432,2447,2519,2649,2832,3064,3339,3653,3996,4360,4739,5121,5500,5865,6208,6521,6796,7028,7211,7341,7414,7428,7384,7283,7126,6918,6664,6368,6039,5684,5312, + 4854,4472,4100,3745,3416,3120,2866,2658,2501,2400,2356,2370,2443,2573,2756,2988,3263,3576,3919,4284,4663,5045,5424,5788,6132,6445,6720,6952,7135,7265,7337,7352,7308,7207,7050,6842,6588,6292,5963,5608,5236, + 4747,4365,3992,3637,3308,3013,2758,2550,2394,2292,2248,2263,2336,2465,2648,2880,3156,3469,3812,4177,4555,4938,5316,5681,6024,6337,6613,6845,7028,7157,7230,7245,7201,7099,6943,6735,6480,6185,5856,5501,5128, + 4609,4228,3855,3500,3171,2876,2621,2413,2257,2155,2111,2126,2199,2328,2511,2743,3019,3332,3675,4040,4418,4801,5179,5544,5887,6200,6476,6708,6891,7020,7093,7108,7064,6962,6806,6598,6343,6048,5719,5364,4991, + 4444,4063,3690,3335,3006,2711,2456,2248,2091,1990,1946,1961,2034,2163,2346,2578,2854,3167,3510,3875,4253,4636,5014,5379,5722,6035,6311,6543,6725,6855,6928,6942,6898,6797,6640,6432,6178,5882,5553,5198,4826 + ], + "isomin": 750, + "isomax": 1250, + "cmin": 750, + "cmax": 1250, + "smoothnormals": true, + "isocaps": true, + "colorscale": "Reds" + } + ], + "layout": { + "title": "isosurface trace", + "width": 1200, + "height": 900, + "scene": { + "zaxis": { + "autorange": "reversed", + "title": "reversed Z-axis" + } + } + } +}