Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active September 16, 2015 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enjalot/5233898432653069ea8e to your computer and use it in GitHub Desktop.
Save enjalot/5233898432653069ea8e to your computer and use it in GitHub Desktop.
visualizing map distortion II

Whenever we try to represent our 3D earth on a 2D map we necessarily introduce distortion. This tool attempts to visualize the phenomenon. It's a fun riff on my earlier attempt.

The commonly used Mercator projection is shown here by default. Try zooming in and seeing how much less distortion happens as you pan around. This is because the projection is designed to be used in navigating within countries, not showing the whole globe.
For some real fun, switch to the Sinusoidal projection and pan around!

Try your picture

You can fork this and add your own image with this short node script: (remember to npm install get-pixels)

getPixels = require("get-pixels")
fs = require 'fs'
output = []
getPixels "mbostock.jpg", (err, data) ->
  for y in [0...data.shape[1]]
    for x in [0...data.shape[0]]
      p = [data.get(x,y,0), data.get(x,y, 1), data.get(x,y, 2)]
      output.push(p)
  fs.writeFileSync 'mbostock.json', JSON.stringify(output)

You can then upload the resulting json file (feel free to rename it) using blockbuilder.org.

For your convenience, this block can be forked quickly here: http://blockbuilder.org/enjalot/5233898432653069ea8e

Inspiration

Original prompt by @curran
Bounding box solution by @tyrasd

References

projection comparison
map zoom

forked from enjalot's block: visualizing map distortion

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-geo-projection/0.2.9/d3.geo.projection.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<style>
svg {
margin: 22px;
}
canvas {
pointer-events: none;
position: absolute;
top: 28px;
}
#left-canvas {
left: 28px;
}
#right-canvas {
right: 40px;
}
select {
margin-left: 20px;
}
path.foreground {
fill: none;
stroke: #333;
stroke-width: 1.5px;
}
path.graticule {
fill: none;
stroke: #aaa;
stroke-width: .5px;
}
#left {
cursor: move;
}
#left .land {
fill: #d7c7ad;
stroke: #a5967e;
}
#right .land {
fill: #cfcece;
stroke: #a5967e;
}
</style>
</head>
<body>
<svg id="left"></svg>
<svg id="right"></svg>
<canvas id="left-canvas"></canvas>
<canvas id="right-canvas"></canvas>
<select></select>
<script>
var map_width = 400;
var map_height = 400;
var center = [-90, 37];
var scale0 = (map_width - 1) / 2 / Math.PI * 6
var scale1 = (map_width - 1) / 2 / Math.PI * 3
var facePoints = [];
var zoom = d3.behavior.zoom()
.translate([map_width / 2, map_height / 2])
.scale(scale0)
.scaleExtent([scale0, 8 * scale0])
.on("zoom", zoomed)
var projectionLeft = d3.geo.mercator()
.center(center)
var projectionRight = d3.geo.orthographic()
.center(center)
.translate([map_width/5, map_height / 5])
.scale(scale1)
.clipAngle(90)
var pathLeft = d3.geo.path()
.projection(projectionLeft);
var pathRight = d3.geo.path()
.projection(projectionRight);
function zoomed() {
projectionLeft
.translate(zoom.translate())
.scale(zoom.scale())
var newCenter = projectionLeft
.invert([map_width/2,map_height/2]);
projectionRight
.rotate([-newCenter[0], -newCenter[1]])
update();
}
function update() {
d3.selectAll("#left path")
.attr("d", pathLeft);
d3.selectAll("#right path")
.attr("d", pathRight);
ctxRight.clearRect(0, 0, map_width + 40, map_height);
facePoints.forEach(function(d) {
var latlon = projectionLeft.invert([d.x, d.y])
var xy = projectionRight(latlon)
if(!xy) return;
ctxRight.fillStyle = "rgba(" + d.color + ",0.5)"
ctxRight.beginPath();
ctxRight.arc(xy[0], xy[1], 2.3, 0, Math.PI*2, true);
ctxRight.closePath();
ctxRight.fill();
})
}
var graticule = d3.geo.graticule();
var svgLeft = d3.select("#left")
.attr("width", map_width)
.attr("height", map_height);
var svgRight = d3.select("#right")
.attr("width", map_width + 40)
.attr("height", map_height);
var canvasLeft = d3.select("#left-canvas")
.attr("width", map_width)
.attr("height", map_height);
var canvasRight = d3.select("#right-canvas")
.attr("width", map_width + 40)
.attr("height", map_height);
var ctxLeft = canvasLeft.node().getContext("2d")
var ctxRight = canvasRight.node().getContext("2d")
svgLeft
.call(zoom)
.call(zoom.event);
svgLeft.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", pathLeft);
svgRight.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", pathRight);
d3.json("mbostock.json", function(error,bostock) {
d3.json("world-110m.json", function(error,world) {
if (error) throw error;
svgLeft.insert("path", ".graticule")
.datum(topojson.feature(world, world.objects.land))
.attr("class", "land")
.attr("d", pathLeft);
svgRight.insert("path", ".graticule")
.datum(topojson.feature(world, world.objects.land))
.attr("class", "land")
.attr("d", pathRight);
var xpixels = 73;
var ypixels = 73;
facePoints = bostock.map(function(d,i) {
var x = i % xpixels * map_width/xpixels;
var y = Math.floor(i / ypixels) * map_height/ypixels;
return {
x: x,
y: y,
color: d
}
})
facePoints.forEach(function(d) {
ctxLeft.fillStyle = "rgba(" + d.color + ",1)"
ctxLeft.beginPath();
ctxLeft.arc(d.x, d.y, 2.3, 0, Math.PI*2, true);
ctxLeft.closePath();
ctxLeft.fill();
})
zoomed();
});
});
var projections = {
"Mercator": d3.geo.mercator().scale(50),
"Aitoff": d3.geo.aitoff().scale(90),
"Boggs Eumorphic": d3.geo.boggs().scale(90),
"Craster Parabolic (Putnins P4)": d3.geo.craster().scale(90),
"Cylindrical Equal-Area": d3.geo.cylindricalEqualArea().scale(120),
"Eckert I": d3.geo.eckert1().scale(95),
"Eckert III": d3.geo.eckert3().scale(105),
"Eckert IV": d3.geo.eckert4().scale(105),
"Eckert V": d3.geo.eckert5().scale(100),
"Equidistant Cylindrical (Plate Carrée)": d3.geo.equirectangular().scale(90),
"Fahey": d3.geo.fahey().scale(75),
"Foucaut Sinusoidal": d3.geo.foucaut().scale(80),
"Gall (Gall Stereographic)": d3.geo.cylindricalStereographic().scale(70),
"Ginzburg VIII (TsNIIGAiK 1944)": d3.geo.ginzburg8().scale(75),
"Kavraisky VII": d3.geo.kavrayskiy7().scale(90),
"Larrivée": d3.geo.larrivee().scale(55),
"McBryde-Thomas Flat-Pole Sine (No. 2)": d3.geo.mtFlatPolarSinusoidal().scale(95),
"Miller Cylindrical I": d3.geo.miller().scale(60),
"Mollweide": d3.geo.mollweide().scale(100),
"Natural Earth": d3.geo.naturalEarth().scale(100),
"Nell-Hammer": d3.geo.nellHammer().scale(120),
"Quartic Authalic": d3.geo.hammer().coefficient(Infinity).scale(95),
"Robinson": d3.geo.robinson().scale(90),
"Sinusoidal": d3.geo.sinusoidal().scale(90),
"van der Grinten (I)": d3.geo.vanDerGrinten().scale(50),
"Wagner VI": d3.geo.wagner6().scale(90),
"Wagner VII": d3.geo.wagner7().scale(90),
"Winkel Tripel": d3.geo.winkel3().scale(90)
};
var selector = d3.select("select")
selector.selectAll("option")
.data(Object.keys(projections))
.enter().append("option")
.attr({
value: function(d) { return d }
}).text(function(d) { return d })
selector.on("change", function(d) {
console.log("sup", d3.event)
var proj = d3.event.target.selectedOptions[0].value;
projectionLeft = projections[proj].center(center);
pathLeft = d3.geo.path()
.projection(projectionLeft);
zoomed();
})
</script>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67666917-1', 'auto');
ga('send', 'pageview');
</script>
[[177,192,209],[178,193,210],[181,196,211],[184,199,214],[188,203,218],[191,206,221],[195,209,222],[196,210,223],[194,206,218],[195,207,219],[197,207,220],[199,209,222],[204,214,225],[207,217,228],[206,215,226],[201,210,221],[205,211,221],[202,208,218],[195,200,207],[141,146,153],[80,82,83],[61,63,64],[52,52,48],[31,31,27],[26,25,19],[21,20,14],[17,17,13],[19,19,15],[18,20,20],[16,18,18],[14,18,18],[15,19,19],[22,22,18],[22,22,18],[24,24,20],[26,26,22],[26,29,24],[26,29,24],[23,26,21],[21,24,19],[30,33,28],[16,19,14],[26,29,24],[28,31,26],[18,18,14],[36,36,32],[56,56,52],[41,41,37],[34,38,37],[66,70,69],[75,70,62],[95,90,82],[162,148,136],[205,191,179],[220,209,204],[234,223,218],[219,220,226],[223,224,230],[216,224,238],[216,224,238],[226,231,241],[228,233,243],[234,232,239],[239,237,244],[245,247,247],[243,245,245],[241,243,243],[243,245,245],[248,248,248],[251,251,251],[252,252,252],[252,252,252],[251,251,251],[175,190,207],[177,192,209],[179,194,209],[182,197,212],[186,201,216],[189,204,219],[192,206,219],[193,207,220],[196,208,220],[197,209,221],[200,210,223],[201,211,224],[205,215,226],[207,217,228],[207,216,227],[203,212,223],[211,217,227],[205,211,221],[209,214,221],[126,131,138],[38,40,41],[32,34,35],[42,42,38],[46,46,42],[26,25,19],[19,18,12],[13,13,9],[14,14,10],[14,16,16],[15,17,17],[16,20,20],[20,24,24],[19,19,15],[20,20,16],[23,23,19],[26,26,22],[26,29,24],[27,30,25],[25,28,23],[23,26,21],[23,26,21],[14,17,12],[23,26,21],[26,29,24],[20,20,16],[34,34,30],[47,47,43],[33,33,29],[30,34,33],[36,40,39],[52,47,39],[86,81,73],[140,126,114],[171,157,145],[191,180,175],[207,196,191],[216,217,223],[221,222,228],[216,224,238],[216,224,238],[224,229,239],[225,230,240],[232,230,237],[238,236,243],[240,242,242],[239,241,241],[240,242,242],[243,245,245],[249,249,249],[251,251,251],[252,252,252],[252,252,252],[254,254,254],[172,190,206],[173,191,207],[175,193,207],[178,196,210],[183,198,213],[186,201,216],[189,203,216],[190,204,217],[195,207,219],[198,210,222],[201,213,223],[201,213,223],[204,214,225],[206,216,227],[205,216,224],[202,213,221],[197,203,213],[198,204,214],[214,219,226],[122,127,134],[27,29,30],[22,24,25],[25,23,20],[33,31,28],[33,32,26],[26,25,19],[21,19,16],[19,17,14],[20,18,17],[21,19,18],[21,21,21],[23,23,23],[23,17,15],[24,18,16],[27,21,19],[30,24,22],[31,28,25],[31,28,25],[28,26,23],[27,25,22],[20,18,15],[18,16,13],[22,20,17],[25,23,20],[26,24,21],[35,33,30],[38,36,33],[29,27,24],[22,26,23],[37,41,38],[58,53,45],[64,59,51],[93,81,69],[145,133,121],[182,173,166],[190,181,174],[209,208,210],[218,217,219],[216,222,232],[218,224,234],[222,227,235],[221,226,234],[229,227,234],[237,235,242],[233,235,235],[235,237,237],[238,240,240],[243,245,245],[250,250,250],[252,252,252],[252,252,252],[251,251,251],[252,252,252],[172,190,206],[173,191,207],[175,193,207],[177,195,209],[182,197,212],[184,199,214],[187,201,214],[188,202,215],[192,204,216],[196,208,220],[200,212,222],[200,212,222],[202,212,223],[204,214,225],[204,215,223],[202,213,221],[210,216,226],[215,221,231],[199,204,211],[101,106,113],[25,27,28],[15,17,18],[16,14,11],[26,24,21],[32,31,25],[29,28,22],[27,25,22],[28,26,23],[30,28,27],[30,28,27],[28,28,28],[27,27,27],[31,25,23],[32,26,24],[33,27,25],[35,29,27],[34,31,28],[33,30,27],[29,27,24],[27,25,22],[21,19,16],[22,20,17],[20,18,15],[21,19,16],[30,28,25],[36,34,31],[35,33,30],[32,30,27],[25,29,26],[27,31,28],[44,39,31],[48,43,35],[58,46,34],[86,74,62],[141,132,125],[202,193,186],[195,194,196],[209,208,210],[212,218,228],[216,222,232],[220,225,233],[219,224,232],[225,223,230],[234,232,239],[229,231,231],[232,234,234],[238,240,240],[244,246,246],[250,250,250],[251,251,251],[250,250,250],[249,249,249],[249,249,249],[172,192,207],[173,193,208],[175,193,207],[178,196,210],[180,199,210],[182,201,212],[186,202,213],[187,203,214],[189,204,213],[193,208,217],[199,211,219],[200,212,220],[202,213,221],[204,215,223],[204,215,221],[203,214,220],[201,208,214],[204,211,217],[138,144,148],[55,61,65],[23,25,25],[12,14,14],[18,16,13],[30,28,25],[27,21,17],[27,21,17],[30,23,19],[34,27,23],[41,33,32],[46,38,37],[48,40,41],[48,40,41],[54,38,37],[54,38,37],[52,39,37],[51,38,36],[50,37,35],[47,34,32],[42,30,28],[38,26,24],[32,22,19],[32,22,19],[22,15,11],[21,14,10],[30,24,20],[36,30,26],[36,30,26],[39,33,29],[23,26,23],[30,33,30],[39,34,26],[31,26,18],[37,27,14],[47,37,24],[94,85,74],[182,173,162],[184,182,179],[199,197,194],[207,210,213],[214,217,220],[218,224,228],[218,224,228],[220,223,226],[227,230,233],[228,230,230],[233,235,235],[239,241,241],[245,247,247],[250,250,250],[250,250,250],[248,248,248],[247,247,247],[250,250,250],[173,193,208],[174,194,209],[176,194,208],[179,197,211],[181,200,211],[184,203,214],[187,203,214],[188,204,215],[190,205,214],[193,208,217],[198,210,218],[199,211,219],[203,214,222],[205,216,224],[205,216,222],[202,213,219],[206,213,219],[178,185,191],[73,79,83],[15,21,25],[29,31,31],[27,29,29],[24,22,19],[22,20,17],[32,26,22],[33,27,23],[34,27,23],[37,30,26],[45,37,36],[56,48,47],[61,53,54],[62,54,55],[70,54,53],[69,53,52],[66,53,51],[65,52,50],[63,50,48],[59,46,44],[53,41,39],[50,38,36],[42,32,29],[38,28,25],[27,20,16],[23,16,12],[28,22,18],[32,26,22],[34,28,24],[38,32,28],[20,23,20],[40,43,40],[47,42,34],[21,16,8],[31,21,8],[48,38,25],[70,61,50],[133,124,113],[178,176,173],[191,189,186],[198,201,204],[208,211,214],[216,222,226],[218,224,228],[220,223,226],[226,229,232],[230,232,232],[235,237,237],[241,243,243],[245,247,247],[249,249,249],[248,248,248],[247,247,247],[246,246,246],[250,250,250],[172,194,206],[173,195,207],[176,196,209],[179,199,212],[182,201,212],[185,204,215],[189,205,216],[190,206,217],[192,207,216],[194,209,218],[197,210,215],[198,211,216],[202,213,219],[204,215,221],[203,213,218],[199,209,214],[214,220,224],[149,155,159],[49,52,55],[6,9,12],[27,27,27],[34,34,34],[28,25,22],[23,20,17],[39,32,28],[40,33,29],[44,32,30],[46,34,32],[58,42,41],[68,52,51],[74,57,59],[74,57,59],[81,57,57],[81,57,57],[81,57,57],[81,57,57],[81,57,57],[78,54,54],[73,51,50],[70,48,47],[61,43,41],[55,37,35],[47,31,28],[42,26,23],[37,26,21],[37,26,21],[38,28,23],[39,29,24],[29,27,24],[25,23,20],[35,30,22],[25,20,12],[32,22,9],[40,30,17],[56,46,32],[112,102,88],[184,178,166],[192,186,174],[194,193,187],[204,203,197],[214,218,218],[220,224,224],[220,226,228],[224,230,232],[232,234,234],[236,238,238],[242,244,244],[245,247,247],[248,248,248],[248,248,248],[248,248,248],[248,248,248],[250,250,250],[172,194,206],[173,195,207],[176,196,209],[179,199,212],[183,202,213],[185,204,215],[189,205,216],[190,206,217],[193,208,217],[194,209,218],[195,208,213],[196,209,214],[200,211,217],[202,213,219],[200,210,215],[195,205,210],[125,131,135],[73,79,83],[38,41,44],[19,22,25],[23,23,23],[27,27,27],[23,20,17],[28,25,22],[31,24,20],[36,29,25],[44,32,30],[49,37,35],[62,46,45],[73,57,56],[77,60,62],[75,58,60],[81,57,57],[82,58,58],[83,59,59],[85,61,61],[86,62,62],[85,61,61],[81,59,58],[79,57,56],[74,56,54],[66,48,46],[61,45,42],[56,40,37],[44,33,28],[41,30,25],[40,30,25],[37,27,22],[23,21,18],[31,29,26],[49,44,36],[18,13,5],[16,6,0],[57,47,34],[82,72,58],[107,97,83],[188,182,170],[192,186,174],[190,189,183],[199,198,192],[211,215,215],[220,224,224],[221,227,229],[225,231,233],[234,236,236],[237,239,239],[242,244,244],[245,247,247],[247,247,247],[248,248,248],[249,249,249],[250,250,250],[252,252,252],[171,191,204],[172,192,205],[175,195,208],[178,198,211],[182,201,212],[185,204,215],[191,206,215],[192,207,216],[194,206,214],[198,210,218],[190,201,206],[202,213,218],[199,206,210],[206,213,217],[167,174,178],[56,63,67],[37,39,40],[35,37,38],[43,43,43],[28,28,28],[26,24,23],[35,33,32],[29,23,19],[30,24,20],[33,22,17],[34,23,18],[42,26,23],[48,32,29],[58,38,36],[65,45,43],[77,53,53],[86,62,62],[87,57,55],[90,60,58],[92,62,60],[91,61,59],[93,61,60],[95,63,62],[94,64,62],[93,63,61],[89,62,59],[82,55,52],[73,50,46],[70,47,43],[65,48,42],[61,44,38],[52,37,30],[45,30,23],[32,27,20],[25,20,13],[38,31,24],[25,18,11],[28,18,5],[51,41,28],[93,82,64],[112,101,83],[169,158,140],[225,214,196],[212,204,190],[192,184,170],[224,224,220],[218,218,214],[216,224,225],[228,236,237],[231,233,233],[235,237,237],[241,243,243],[244,246,246],[247,247,247],[247,247,247],[248,248,248],[250,250,250],[254,254,254],[168,188,201],[170,190,203],[172,192,205],[175,195,208],[180,199,210],[184,203,214],[190,205,214],[191,206,215],[194,206,214],[206,218,226],[197,208,213],[192,203,208],[210,217,221],[136,143,147],[30,37,41],[36,43,47],[42,44,45],[36,38,39],[38,38,38],[25,25,25],[27,25,24],[37,35,34],[31,25,21],[28,22,18],[34,23,18],[34,23,18],[41,25,22],[49,33,30],[60,40,38],[66,46,44],[74,50,50],[78,54,54],[83,53,51],[87,57,55],[91,61,59],[92,62,60],[94,62,61],[96,64,63],[95,65,63],[93,63,61],[89,62,59],[85,58,55],[77,54,50],[73,50,46],[66,49,43],[64,47,41],[61,46,39],[59,44,37],[34,29,22],[28,23,16],[41,34,27],[35,28,21],[34,24,11],[52,42,29],[107,96,78],[128,117,99],[142,131,113],[206,195,177],[226,218,204],[213,205,191],[199,199,195],[227,227,223],[221,229,230],[226,234,235],[231,233,233],[236,238,238],[241,243,243],[244,246,246],[248,248,248],[248,248,248],[250,250,250],[252,252,252],[252,252,252],[167,187,200],[168,188,201],[172,190,204],[175,193,207],[181,197,208],[186,202,213],[192,204,214],[194,206,216],[202,211,218],[198,207,214],[202,209,213],[205,212,216],[150,156,158],[22,28,30],[58,61,64],[51,54,57],[33,29,29],[35,31,31],[39,35,35],[29,25,25],[30,24,22],[39,33,31],[38,31,27],[38,31,27],[35,22,18],[32,19,15],[38,18,15],[46,26,23],[57,34,32],[64,41,39],[71,44,41],[75,48,45],[77,45,42],[83,51,48],[91,58,55],[94,61,58],[98,62,60],[100,64,62],[101,63,62],[99,61,60],[97,61,59],[96,60,58],[89,59,55],[83,53,49],[74,49,43],[72,47,41],[70,49,42],[72,51,44],[43,32,26],[31,20,14],[36,25,19],[43,32,26],[40,30,17],[55,45,32],[124,110,88],[142,128,106],[135,117,91],[182,164,138],[238,224,202],[235,221,199],[193,191,182],[227,225,216],[225,233,234],[222,230,231],[231,233,233],[236,238,238],[241,243,243],[245,247,247],[248,248,248],[249,249,249],[252,252,252],[254,254,254],[252,252,252],[168,188,201],[169,189,202],[172,190,204],[176,194,208],[183,199,210],[187,203,214],[194,206,216],[196,208,218],[204,213,220],[194,203,210],[218,225,229],[161,168,172],[19,25,27],[65,71,73],[78,81,84],[34,37,40],[16,12,12],[36,32,32],[53,49,49],[45,41,41],[33,27,25],[31,25,23],[36,29,25],[42,35,31],[41,28,24],[37,24,20],[39,19,16],[42,22,19],[49,26,24],[54,31,29],[63,36,33],[67,40,37],[70,38,35],[79,47,44],[88,55,52],[93,60,57],[99,63,61],[101,65,63],[103,65,64],[102,64,63],[100,64,62],[100,64,62],[94,64,60],[88,58,54],[78,53,47],[73,48,42],[68,47,40],[68,47,40],[56,45,39],[34,23,17],[26,15,9],[39,28,22],[39,29,16],[48,38,25],[121,107,85],[134,120,98],[141,123,97],[157,139,113],[223,209,187],[238,224,202],[214,212,203],[212,210,201],[223,231,232],[219,227,228],[230,232,232],[235,237,237],[240,242,242],[244,246,246],[248,248,248],[249,249,249],[252,252,252],[254,254,254],[254,254,254],[171,189,203],[172,190,204],[176,192,204],[179,195,207],[185,199,211],[189,203,215],[196,207,215],[199,210,218],[206,213,220],[205,212,219],[195,198,203],[75,78,83],[65,67,68],[124,126,127],[23,22,24],[19,18,20],[28,18,17],[58,48,47],[78,68,67],[72,62,61],[49,39,38],[33,23,22],[34,22,20],[34,22,20],[48,32,29],[46,30,27],[48,28,25],[48,28,25],[52,26,23],[52,26,23],[58,28,24],[63,33,29],[68,37,31],[77,46,40],[88,55,50],[93,60,55],[100,63,59],[103,66,62],[107,65,63],[107,65,63],[105,65,62],[104,64,61],[101,65,61],[99,63,59],[91,60,54],[84,53,47],[73,46,39],[68,41,34],[67,50,46],[45,28,24],[29,17,9],[38,26,18],[34,23,9],[36,25,11],[108,90,66],[127,109,85],[138,112,83],[156,130,101],[203,181,154],[242,220,193],[233,227,215],[209,203,191],[218,224,226],[219,225,227],[229,231,231],[233,235,235],[238,240,240],[242,244,244],[246,246,246],[248,248,248],[251,251,251],[254,254,254],[255,255,255],[174,192,206],[174,192,206],[178,194,206],[180,196,208],[185,199,211],[190,204,216],[196,207,215],[199,210,218],[203,210,217],[211,218,225],[142,145,150],[30,33,38],[131,133,134],[52,54,55],[20,19,21],[25,24,26],[48,38,37],[74,64,63],[87,77,76],[86,76,75],[70,60,59],[52,42,41],[46,34,32],[33,21,19],[39,23,20],[42,26,23],[50,30,27],[55,35,32],[60,34,31],[59,33,30],[64,34,30],[69,39,35],[73,42,36],[82,51,45],[91,58,53],[95,62,57],[100,63,59],[103,66,62],[108,66,64],[108,66,64],[106,66,63],[106,66,63],[103,67,63],[104,68,64],[100,69,63],[95,64,58],[83,56,49],[76,49,42],[61,44,40],[49,32,28],[40,28,20],[40,28,20],[34,23,9],[31,20,6],[95,77,53],[128,110,86],[109,83,54],[150,124,95],[178,156,129],[236,214,187],[228,222,210],[220,214,202],[213,219,221],[219,225,227],[228,230,230],[232,234,234],[237,239,239],[240,242,242],[244,244,244],[247,247,247],[250,250,250],[253,253,253],[255,255,255],[180,195,210],[180,195,210],[182,196,209],[184,198,211],[189,201,213],[193,205,217],[199,208,217],[201,210,219],[199,204,211],[193,198,205],[102,104,107],[19,21,24],[44,43,45],[16,15,17],[24,22,23],[18,16,17],[65,52,50],[85,72,70],[88,76,74],[92,80,78],[86,74,72],[75,63,61],[70,58,56],[53,41,39],[44,28,25],[45,29,26],[54,33,28],[61,40,35],[68,43,37],[70,45,39],[76,47,40],[80,51,44],[82,53,46],[89,60,53],[97,64,59],[98,65,60],[102,62,59],[104,64,61],[107,65,63],[108,66,64],[111,69,67],[110,68,66],[109,69,66],[110,70,67],[106,73,68],[104,71,66],[99,68,62],[95,64,58],[69,48,43],[60,39,34],[52,37,30],[42,27,20],[41,27,14],[35,21,8],[76,56,31],[111,91,66],[97,69,36],[127,99,66],[161,135,106],[216,190,161],[222,212,199],[232,222,209],[213,219,221],[218,224,226],[229,231,231],[232,234,234],[237,239,239],[240,242,242],[244,244,244],[246,246,246],[249,249,249],[252,252,252],[254,254,254],[185,200,215],[184,199,214],[186,200,213],[187,201,214],[192,204,216],[195,207,219],[201,210,219],[203,212,221],[204,209,216],[149,154,161],[41,43,46],[14,16,19],[26,25,27],[16,15,17],[20,18,19],[30,28,29],[73,60,58],[92,79,77],[91,79,77],[94,82,80],[90,78,76],[82,70,68],[84,72,70],[70,58,56],[69,53,50],[64,48,45],[64,43,38],[66,45,40],[73,48,42],[76,51,45],[82,53,46],[85,56,49],[90,61,54],[96,67,60],[102,69,64],[100,67,62],[102,62,59],[103,63,60],[107,65,63],[108,66,64],[115,73,71],[113,71,69],[111,71,68],[110,70,67],[106,73,68],[107,74,69],[106,75,69],[106,75,69],[90,69,64],[74,53,48],[59,44,37],[41,26,19],[45,31,18],[36,22,9],[50,30,5],[77,57,32],[104,76,43],[99,71,38],[148,122,93],[190,164,135],[222,212,199],[232,222,209],[215,221,223],[218,224,226],[229,231,231],[233,235,235],[237,239,239],[240,242,242],[244,244,244],[246,246,246],[249,249,249],[252,252,252],[255,255,255],[193,202,219],[196,205,222],[196,206,220],[188,198,212],[199,208,217],[194,203,212],[201,208,214],[200,207,213],[165,168,171],[91,94,97],[39,39,39],[24,24,24],[22,18,20],[14,10,12],[23,15,18],[55,47,50],[82,67,74],[95,80,87],[101,82,90],[95,76,84],[95,72,78],[92,69,75],[90,63,66],[88,61,64],[84,51,54],[83,50,53],[83,49,49],[84,50,50],[89,53,49],[92,56,52],[95,58,54],[96,59,55],[97,59,58],[98,60,59],[100,62,61],[100,62,61],[101,61,58],[101,61,58],[103,63,60],[105,65,62],[105,68,63],[106,69,64],[107,72,66],[109,74,68],[108,76,67],[109,77,68],[109,79,69],[109,79,69],[110,71,64],[114,75,68],[83,58,50],[59,34,26],[46,34,26],[40,28,20],[38,26,14],[51,39,27],[81,61,46],[93,73,58],[109,84,66],[149,124,106],[208,189,171],[240,221,203],[231,220,204],[230,219,203],[234,231,226],[241,238,233],[240,238,235],[240,238,235],[244,246,246],[248,250,250],[247,250,253],[249,252,255],[252,254,255],[197,206,223],[197,206,223],[195,205,219],[189,199,213],[202,211,220],[198,207,216],[200,207,213],[185,192,198],[100,103,106],[50,53,56],[26,26,26],[25,25,25],[28,24,26],[19,15,17],[25,17,20],[52,44,47],[86,71,78],[97,82,89],[99,80,88],[93,74,82],[95,72,78],[94,71,77],[93,66,69],[93,66,69],[96,63,66],[95,62,65],[95,61,61],[96,62,62],[99,63,59],[100,64,60],[100,63,59],[99,62,58],[99,61,60],[100,62,61],[101,63,62],[101,63,62],[103,63,60],[104,64,61],[105,65,62],[106,66,63],[106,69,64],[107,70,65],[108,73,67],[110,75,69],[110,78,69],[112,80,71],[112,82,72],[112,82,72],[120,81,74],[119,80,73],[92,67,59],[72,47,39],[51,39,31],[40,28,20],[37,25,13],[47,35,23],[65,45,30],[75,55,40],[87,62,44],[113,88,70],[156,137,119],[198,179,161],[222,211,195],[245,234,218],[224,221,216],[238,235,230],[243,241,238],[244,242,239],[245,247,247],[249,251,251],[251,254,255],[252,255,255],[253,255,255],[200,209,226],[201,210,227],[198,208,221],[192,202,215],[201,210,219],[196,205,214],[196,203,207],[167,174,178],[69,73,73],[38,42,42],[30,30,30],[29,29,29],[30,24,24],[26,20,20],[34,26,27],[61,53,54],[93,76,82],[100,83,89],[99,80,87],[93,74,81],[97,74,78],[98,75,79],[100,72,75],[100,72,75],[100,68,69],[100,68,69],[103,67,65],[103,67,65],[105,68,64],[104,67,63],[102,65,60],[100,63,58],[99,63,59],[99,63,59],[99,62,58],[100,63,59],[104,64,60],[105,65,61],[105,65,61],[105,65,61],[108,69,62],[109,70,63],[110,73,66],[113,76,69],[115,80,72],[117,82,74],[118,83,73],[119,84,74],[129,89,78],[122,82,71],[104,75,65],[87,58,48],[57,43,31],[47,33,21],[45,31,19],[43,29,17],[58,38,23],[65,45,30],[79,55,39],[95,71,55],[118,98,83],[152,132,117],[183,172,156],[210,199,183],[216,209,202],[231,224,217],[235,232,227],[236,233,228],[240,240,238],[246,246,244],[247,249,250],[251,253,254],[253,255,255],[196,205,222],[203,212,229],[204,214,227],[198,208,221],[200,209,218],[196,205,214],[197,204,208],[152,159,163],[64,68,68],[44,48,48],[39,39,39],[32,32,32],[29,23,23],[28,22,22],[39,31,32],[66,58,59],[92,75,81],[98,81,87],[97,78,85],[94,75,82],[99,76,80],[99,76,80],[99,71,74],[99,71,74],[99,67,68],[98,66,67],[101,65,63],[101,65,63],[103,66,62],[103,66,62],[101,64,59],[100,63,58],[100,64,60],[98,62,58],[97,60,56],[98,61,57],[103,63,59],[105,65,61],[105,65,61],[104,64,60],[107,68,61],[109,70,63],[110,73,66],[113,76,69],[116,81,73],[119,84,76],[121,86,76],[122,87,77],[134,94,83],[126,86,75],[112,83,73],[95,66,56],[64,50,38],[64,50,38],[63,49,37],[45,31,19],[51,31,16],[55,35,20],[72,48,32],[88,64,48],[99,79,64],[119,99,84],[136,125,109],[148,137,121],[213,206,199],[225,218,211],[227,224,219],[229,226,221],[238,238,236],[248,248,246],[249,251,252],[250,252,253],[253,255,255],[194,204,218],[200,210,224],[204,212,226],[205,213,227],[206,215,222],[200,209,216],[191,198,202],[118,125,129],[34,38,38],[25,29,29],[31,29,30],[28,26,27],[26,20,20],[28,22,22],[40,29,31],[63,52,54],[91,70,75],[98,77,82],[98,77,80],[97,76,79],[102,78,80],[98,74,76],[95,67,67],[94,66,66],[101,69,68],[99,67,66],[100,64,60],[99,63,59],[101,64,59],[101,64,59],[103,64,57],[103,64,57],[100,65,57],[98,63,55],[97,60,53],[98,61,54],[102,63,56],[105,66,59],[106,65,59],[105,64,58],[107,66,58],[108,67,59],[111,70,62],[114,73,65],[117,78,69],[121,82,73],[123,87,77],[125,89,79],[137,97,84],[132,92,79],[121,91,77],[102,72,58],[78,58,43],[90,70,55],[85,70,55],[52,37,22],[53,33,20],[53,33,20],[66,44,32],[80,58,46],[89,71,55],[105,87,71],[121,108,90],[132,119,101],[179,169,156],[198,188,175],[208,199,190],[213,204,195],[222,219,214],[238,235,230],[247,247,247],[255,255,255],[252,254,255],[201,211,225],[201,211,225],[201,209,223],[205,213,227],[206,215,222],[198,207,214],[171,178,182],[64,71,75],[16,20,20],[9,13,13],[18,16,17],[17,15,16],[19,13,13],[26,20,20],[43,32,34],[69,58,60],[94,73,78],[100,79,84],[101,80,83],[100,79,82],[102,78,80],[96,72,74],[93,65,65],[94,66,66],[102,70,69],[99,67,66],[99,63,59],[97,61,57],[97,60,55],[98,61,56],[100,61,54],[100,61,54],[99,64,56],[97,62,54],[97,60,53],[97,60,53],[101,62,55],[103,64,57],[105,64,58],[106,65,59],[106,65,57],[106,65,57],[108,67,59],[111,70,62],[114,75,66],[120,81,72],[123,87,77],[126,90,80],[136,96,83],[135,95,82],[124,94,80],[106,76,62],[87,67,52],[102,82,67],[94,79,64],[57,42,27],[52,32,19],[57,37,24],[66,44,32],[76,54,42],[81,63,47],[90,72,56],[103,90,72],[120,107,89],[122,112,99],[156,146,133],[182,173,164],[192,183,174],[199,196,191],[218,215,210],[237,237,237],[254,254,254],[251,253,255],[204,214,228],[205,215,229],[202,211,222],[205,214,225],[202,211,218],[194,203,210],[168,174,176],[48,54,56],[26,28,28],[17,19,19],[23,19,19],[19,15,15],[20,10,9],[29,19,18],[51,39,39],[83,71,71],[99,77,78],[103,81,82],[100,78,79],[96,74,75],[95,71,71],[89,65,65],[88,62,59],[93,67,64],[95,65,61],[93,63,59],[93,60,54],[92,59,53],[95,58,51],[95,58,51],[96,57,50],[96,57,50],[95,60,50],[95,60,50],[95,59,49],[95,59,49],[97,58,49],[98,59,50],[102,61,53],[104,63,55],[107,65,55],[107,65,55],[106,66,55],[108,68,57],[113,73,62],[119,79,68],[125,86,75],[129,90,79],[134,94,80],[134,94,80],[131,98,79],[120,87,68],[105,80,61],[111,86,67],[99,79,64],[72,52,37],[43,24,13],[51,32,21],[54,35,24],[63,44,33],[77,59,43],[81,63,47],[89,72,51],[107,90,69],[118,103,86],[158,143,126],[189,178,164],[205,194,180],[216,209,202],[233,226,219],[245,243,240],[255,254,251],[252,254,255],[199,209,223],[205,215,229],[208,217,228],[208,217,228],[200,209,216],[198,207,214],[187,193,195],[72,78,80],[31,33,33],[24,26,26],[33,29,29],[30,26,26],[28,18,17],[33,23,22],[53,41,41],[86,74,74],[97,75,76],[99,77,78],[93,71,72],[85,63,64],[82,58,58],[78,54,54],[81,55,52],[89,63,60],[89,59,55],[89,59,55],[91,58,52],[92,59,53],[97,60,53],[97,60,53],[97,58,51],[96,57,50],[91,56,46],[91,56,46],[93,57,47],[92,56,46],[93,54,45],[94,55,46],[98,57,49],[101,60,52],[108,66,56],[107,65,55],[105,65,54],[107,67,56],[111,71,60],[118,78,67],[125,86,75],[129,90,79],[135,95,81],[136,96,82],[136,103,84],[133,100,81],[119,94,75],[116,91,72],[103,83,68],[86,66,51],[50,31,20],[53,34,23],[49,30,19],[62,43,32],[92,74,58],[103,85,69],[109,92,71],[128,111,90],[138,123,106],[174,159,142],[203,192,178],[223,212,198],[239,232,225],[254,247,240],[252,250,247],[250,248,245],[252,254,255],[205,213,227],[207,215,229],[205,214,223],[212,221,230],[200,207,213],[208,215,221],[159,165,165],[69,75,75],[47,47,45],[47,47,45],[36,30,28],[23,17,15],[22,10,10],[39,27,27],[72,59,57],[78,65,63],[86,64,63],[78,56,55],[68,46,45],[64,42,41],[62,40,38],[64,42,40],[70,47,43],[75,52,48],[72,47,39],[74,49,41],[78,47,40],[79,48,41],[88,53,45],[95,60,52],[100,61,54],[97,58,51],[90,56,43],[91,57,44],[90,54,42],[86,50,38],[92,53,42],[98,59,48],[99,59,48],[95,55,44],[101,61,50],[108,68,57],[109,69,58],[104,64,53],[107,68,57],[119,80,69],[124,88,76],[121,85,73],[128,93,75],[141,106,88],[132,99,78],[145,112,91],[140,112,89],[125,97,74],[122,99,80],[97,74,55],[48,29,19],[58,39,29],[49,32,24],[45,28,20],[76,57,39],[116,97,79],[147,125,98],[162,140,113],[163,144,124],[172,153,133],[205,190,173],[235,220,203],[238,229,218],[250,241,230],[255,254,249],[253,250,245],[253,255,255],[204,212,226],[211,219,233],[205,214,223],[210,219,228],[207,214,220],[202,209,215],[157,163,163],[74,80,80],[49,49,47],[37,37,35],[24,18,16],[21,15,13],[23,11,11],[33,21,21],[68,55,53],[88,75,73],[81,59,58],[74,52,51],[67,45,44],[63,41,40],[60,38,36],[56,34,32],[56,33,29],[57,34,30],[58,33,25],[60,35,27],[66,35,28],[69,38,31],[80,45,37],[90,55,47],[97,58,51],[96,57,50],[90,56,43],[91,57,44],[92,56,44],[90,54,42],[93,54,43],[96,57,46],[99,59,48],[98,58,47],[103,63,52],[102,62,51],[99,59,48],[99,59,48],[109,70,59],[124,85,74],[129,93,81],[128,92,80],[137,102,84],[139,104,86],[150,117,96],[154,121,100],[140,112,89],[142,114,91],[132,109,90],[95,72,53],[55,36,26],[48,29,19],[53,36,28],[63,46,38],[67,48,30],[84,65,47],[122,100,73],[147,125,98],[182,163,143],[203,184,164],[209,194,177],[220,205,188],[241,232,221],[252,243,232],[245,242,237],[253,250,245],[252,254,254],[203,212,223],[214,223,234],[205,214,223],[206,215,224],[211,218,222],[193,200,204],[159,163,163],[75,79,79],[41,39,38],[46,44,43],[35,27,26],[22,14,13],[28,15,13],[49,36,34],[80,64,63],[85,69,68],[91,69,68],[87,65,64],[84,62,61],[82,60,59],[76,56,53],[69,49,46],[63,43,38],[61,41,36],[54,33,26],[54,33,26],[58,31,24],[60,33,26],[71,38,32],[81,48,42],[91,56,50],[94,59,53],[94,58,46],[94,58,46],[94,58,46],[95,59,47],[95,56,45],[93,54,43],[95,56,45],[98,59,48],[99,60,51],[95,56,47],[90,54,44],[92,56,46],[97,65,54],[111,79,68],[125,93,82],[133,101,90],[148,117,100],[132,101,84],[163,130,107],[171,138,115],[149,120,94],[151,122,96],[132,107,88],[94,69,50],[56,37,27],[49,30,20],[66,49,41],[79,62,54],[78,58,37],[97,77,56],[130,103,70],[130,103,70],[145,125,104],[191,171,150],[213,198,179],[220,205,186],[232,222,209],[243,233,220],[242,239,232],[252,249,242],[254,254,252],[203,212,223],[209,218,229],[205,214,223],[203,212,221],[206,213,217],[191,198,202],[165,169,169],[63,67,67],[24,22,21],[44,42,41],[40,32,31],[28,20,19],[42,29,27],[68,55,53],[88,72,71],[81,65,64],[99,77,76],[96,74,73],[93,71,70],[92,70,69],[87,67,64],[81,61,58],[75,55,50],[73,53,48],[68,47,40],[66,45,38],[66,39,32],[64,37,30],[71,38,32],[80,47,41],[90,55,49],[96,61,55],[99,63,51],[95,59,47],[94,58,46],[97,61,49],[98,59,48],[92,53,42],[90,51,40],[93,54,43],[91,52,43],[90,51,42],[87,51,41],[86,50,40],[81,49,38],[87,55,44],[108,76,65],[128,96,85],[151,120,103],[133,102,85],[159,126,103],[184,151,128],[166,137,111],[147,118,92],[125,100,81],[97,72,53],[56,37,27],[57,38,28],[74,57,49],[88,71,63],[97,77,56],[121,101,80],[153,126,93],[156,129,96],[141,121,100],[148,128,107],[185,170,151],[224,209,190],[229,219,206],[236,226,213],[244,241,234],[247,244,237],[253,253,251],[202,211,222],[198,207,218],[205,214,221],[202,211,218],[198,205,209],[197,204,208],[173,177,176],[52,56,55],[25,23,20],[32,30,27],[28,18,15],[34,24,21],[58,42,39],[73,57,54],[90,72,70],[96,78,76],[104,82,81],[98,76,75],[90,70,68],[85,65,63],[77,62,57],[72,57,52],[69,54,49],[69,54,49],[67,50,44],[67,50,44],[71,48,42],[71,48,42],[77,48,41],[81,52,45],[89,56,51],[95,62,57],[100,64,52],[93,57,45],[92,53,42],[97,58,47],[100,61,50],[95,56,45],[88,52,42],[87,51,41],[83,48,38],[80,45,35],[74,44,34],[70,40,30],[63,34,24],[65,36,26],[80,54,43],[99,73,62],[121,96,80],[128,103,87],[141,111,87],[174,144,120],[176,144,117],[148,116,89],[130,103,84],[102,75,56],[59,40,32],[61,42,34],[72,55,47],[92,75,67],[110,86,62],[119,95,71],[163,129,90],[207,173,134],[208,189,168],[163,144,123],[161,146,127],[205,190,171],[227,217,204],[235,225,212],[238,233,226],[240,235,228],[249,247,244],[200,209,220],[191,200,211],[204,213,220],[203,212,219],[195,202,206],[203,210,214],[165,169,168],[46,50,49],[49,47,44],[52,50,47],[35,25,22],[33,23,20],[62,46,43],[83,67,64],[98,80,78],[103,85,83],[100,78,77],[90,68,67],[77,57,55],[68,48,46],[57,42,37],[51,36,31],[48,33,28],[49,34,29],[51,34,28],[55,38,32],[66,43,37],[72,49,43],[80,51,44],[81,52,45],[87,54,49],[93,60,55],[96,60,48],[91,55,43],[91,52,41],[95,56,45],[100,61,50],[99,60,49],[90,54,44],[85,49,39],[82,47,37],[74,39,29],[63,33,23],[62,32,22],[61,32,22],[63,34,24],[67,41,30],[74,48,37],[83,58,42],[113,88,72],[121,91,67],[147,117,93],[164,132,105],[155,123,96],[139,112,93],[93,66,47],[51,32,24],[65,46,38],[75,58,50],[91,74,66],[116,92,68],[127,103,79],[159,125,86],[194,160,121],[215,196,175],[221,202,181],[199,184,165],[183,168,149],[196,186,173],[216,206,193],[224,219,212],[238,233,226],[248,246,243],[200,209,220],[193,202,213],[203,212,219],[201,210,217],[197,204,208],[201,208,212],[134,138,137],[43,47,46],[67,64,61],[74,71,68],[50,40,37],[39,29,26],[71,55,52],[94,78,75],[104,84,82],[97,77,75],[83,62,63],[73,52,53],[58,40,38],[47,29,27],[36,23,19],[29,16,12],[26,13,8],[27,14,9],[38,23,16],[41,26,19],[53,32,27],[60,39,34],[67,40,35],[70,43,38],[81,49,46],[90,58,55],[95,56,45],[95,56,45],[94,55,44],[95,56,45],[98,59,50],[99,60,51],[91,55,45],[83,47,37],[78,46,37],[72,40,31],[65,36,28],[65,36,28],[67,42,33],[70,45,36],[68,46,36],[67,45,35],[70,49,34],[88,67,52],[110,82,57],[130,102,77],[151,120,90],[165,134,104],[144,117,96],[83,56,35],[44,25,17],[61,42,34],[81,62,54],[95,76,68],[117,91,65],[139,113,87],[163,126,85],[166,129,88],[172,153,132],[223,204,183],[227,212,193],[190,175,156],[173,163,150],[193,183,170],[221,216,208],[249,244,236],[251,249,246],[201,210,221],[199,208,219],[202,211,218],[199,208,215],[200,207,211],[193,200,204],[103,107,106],[40,44,43],[67,64,61],[61,58,55],[43,33,30],[53,43,40],[88,72,69],[92,76,73],[92,72,70],[94,74,72],[80,59,60],[72,51,52],[59,41,39],[51,33,31],[40,27,23],[34,21,17],[32,19,14],[32,19,14],[37,22,15],[37,22,15],[44,23,18],[48,27,22],[54,27,22],[60,33,28],[76,44,41],[89,57,54],[96,57,46],[100,61,50],[100,61,50],[97,58,47],[96,57,48],[96,57,48],[88,52,42],[80,44,34],[72,40,31],[75,43,34],[76,47,39],[77,48,40],[75,50,41],[78,53,44],[78,56,46],[78,56,46],[87,66,51],[76,55,40],[111,83,58],[134,106,81],[148,117,87],[172,141,111],[143,116,95],[79,52,31],[47,28,20],[48,29,21],[78,59,51],[102,83,75],[106,80,54],[121,95,69],[162,125,84],[175,138,97],[172,153,132],[174,155,134],[197,182,163],[209,194,175],[185,175,162],[188,178,165],[228,223,215],[255,254,246],[254,252,249],[200,212,222],[192,204,214],[203,212,219],[200,209,216],[205,207,210],[181,183,186],[107,101,101],[47,41,41],[50,40,37],[71,61,58],[69,56,54],[67,54,52],[89,75,76],[94,80,81],[82,68,69],[83,69,70],[81,69,61],[86,74,66],[90,70,65],[82,62,57],[78,52,49],[72,46,43],[67,41,40],[63,37,36],[52,30,28],[51,29,27],[51,29,27],[52,30,28],[57,31,30],[64,38,37],[80,49,51],[91,60,62],[100,64,54],[99,63,53],[103,69,54],[109,75,60],[98,70,53],[81,53,36],[62,40,28],[57,35,23],[57,40,34],[57,40,34],[52,36,35],[52,36,35],[58,45,43],[63,50,48],[66,55,49],[75,64,58],[97,68,51],[104,75,58],[119,85,69],[143,109,93],[152,118,102],[161,127,111],[145,115,101],[80,50,36],[48,24,10],[64,40,26],[76,53,33],[104,81,61],[117,90,59],[124,97,66],[143,109,70],[177,143,104],[180,161,140],[204,185,164],[224,211,193],[233,220,202],[228,221,214],[235,228,221],[244,242,241],[254,252,251],[251,253,255],[192,204,214],[198,210,220],[205,214,221],[194,203,210],[202,204,207],[173,175,178],[93,87,87],[45,39,39],[57,47,44],[72,62,59],[74,61,59],[76,63,61],[93,79,80],[95,81,82],[85,71,72],[83,69,70],[84,72,64],[87,75,67],[91,71,66],[85,65,60],[83,57,54],[79,53,50],[74,48,47],[69,43,42],[59,37,35],[58,36,34],[57,35,33],[59,37,35],[66,40,39],[72,46,45],[86,55,57],[96,65,67],[100,64,54],[100,64,54],[104,70,55],[110,76,61],[100,72,55],[82,54,37],[59,37,25],[51,29,17],[43,26,20],[46,29,23],[42,26,25],[40,24,23],[41,28,26],[44,31,29],[49,38,32],[61,50,44],[84,55,38],[103,74,57],[116,82,66],[138,104,88],[148,114,98],[158,124,108],[147,117,103],[77,47,33],[54,30,16],[69,45,31],[80,57,37],[117,94,74],[129,102,71],[137,110,79],[159,125,86],[175,141,102],[189,170,149],[214,195,174],[237,224,206],[249,236,218],[244,237,230],[247,240,233],[251,249,248],[255,254,253],[251,253,255],[188,197,204],[207,216,223],[199,205,209],[184,190,194],[209,207,208],[162,160,161],[72,62,59],[57,47,44],[55,40,35],[62,47,42],[76,56,53],[88,68,65],[99,77,76],[101,79,78],[97,73,73],[95,71,71],[84,69,62],[85,70,63],[88,65,61],[85,62,58],[85,58,55],[82,55,52],[77,50,47],[72,45,42],[65,42,40],[62,39,37],[62,39,37],[66,43,41],[74,46,46],[79,51,51],[91,57,59],[97,63,65],[99,60,53],[100,61,54],[105,69,57],[112,76,64],[104,75,58],[85,56,39],[61,37,25],[50,26,14],[44,23,18],[47,26,21],[41,23,21],[36,18,16],[32,15,11],[28,11,7],[32,17,8],[45,30,21],[69,40,22],[92,63,45],[101,71,51],[135,105,85],[152,119,100],[157,124,105],[149,120,102],[80,51,33],[67,43,27],[85,61,45],[93,70,50],[140,117,97],[149,122,93],[145,118,89],[171,139,102],[184,152,115],[175,158,137],[199,182,161],[225,214,198],[247,236,220],[254,247,240],[255,250,243],[253,251,250],[252,250,249],[251,253,255],[194,203,210],[194,203,210],[198,204,208],[181,187,191],[166,164,165],[115,113,114],[60,50,47],[61,51,48],[50,35,30],[51,36,31],[73,53,50],[93,73,70],[98,76,75],[98,76,75],[100,76,76],[96,72,72],[82,67,60],[80,65,58],[83,60,56],[81,58,54],[84,57,54],[82,55,52],[77,50,47],[72,45,42],[69,46,44],[66,43,41],[66,43,41],[71,48,46],[79,51,51],[83,55,55],[91,57,59],[94,60,62],[101,62,55],[102,63,56],[108,72,60],[116,80,68],[110,81,64],[93,64,47],[69,45,33],[55,31,19],[52,31,26],[55,34,29],[50,32,30],[47,29,27],[44,27,23],[37,20,16],[39,24,15],[51,36,27],[69,40,22],[86,57,39],[88,58,38],[132,102,82],[159,126,107],[159,126,107],[151,122,104],[88,59,41],[86,62,46],[110,86,70],[97,74,54],[143,120,100],[169,142,113],[160,133,104],[178,146,109],[189,157,120],[180,163,142],[189,172,151],[199,188,172],[218,207,191],[235,228,221],[250,243,236],[254,252,251],[255,254,253],[252,254,255],[201,208,214],[180,187,193],[205,208,211],[170,173,176],[96,92,92],[69,65,65],[67,56,51],[52,41,36],[58,38,33],[58,38,33],[85,59,56],[106,80,77],[106,76,76],[103,73,73],[106,74,75],[100,68,69],[89,68,61],[85,64,57],[86,59,56],[86,59,56],[89,57,56],[87,55,54],[82,50,49],[79,47,46],[79,52,49],[76,49,46],[75,49,48],[81,55,54],[90,58,59],[92,60,61],[97,59,62],[99,61,64],[109,66,63],[112,69,66],[118,77,69],[126,85,77],[120,86,71],[106,72,57],[83,53,41],[69,39,27],[59,32,27],[61,34,29],[60,34,31],[65,39,36],[69,46,40],[68,45,39],[71,49,39],[83,61,51],[91,64,43],[106,79,58],[98,68,46],[123,93,71],[152,119,96],[163,130,107],[154,125,105],[90,61,41],[98,75,56],[143,120,101],[106,86,65],[126,106,85],[172,146,119],[181,155,128],[187,156,123],[190,159,126],[182,169,151],[192,179,161],[206,196,182],[223,213,199],[232,227,220],[241,236,229],[245,243,244],[249,247,248],[252,254,255],[195,202,208],[195,202,208],[190,193,196],[133,136,139],[99,95,95],[97,93,93],[77,66,61],[52,41,36],[57,37,32],[62,42,37],[90,64,61],[109,83,80],[109,79,79],[105,75,75],[107,75,76],[102,70,71],[92,71,64],[87,66,59],[87,60,57],[88,61,58],[91,59,58],[89,57,56],[86,54,53],[84,52,51],[85,58,55],[83,56,53],[83,57,56],[87,61,60],[95,63,64],[95,63,64],[99,61,64],[99,61,64],[110,67,64],[116,73,70],[124,83,75],[132,91,83],[126,92,77],[113,79,64],[91,61,49],[77,47,35],[63,36,31],[61,34,29],[59,33,30],[67,41,38],[75,52,46],[77,54,48],[82,60,50],[94,72,62],[119,92,71],[139,112,91],[127,97,75],[119,89,67],[139,106,83],[168,135,112],[157,128,108],[96,67,47],[97,74,55],[177,154,135],[152,132,111],[133,113,92],[160,134,107],[185,159,132],[201,170,137],[212,181,148],[186,173,155],[203,190,172],[223,213,199],[236,226,212],[235,230,223],[235,230,223],[240,238,239],[249,247,248],[252,254,255],[192,203,211],[205,216,224],[183,190,196],[137,144,150],[157,156,158],[158,157,159],[94,86,85],[53,45,44],[52,34,32],[64,46,44],[93,67,67],[108,82,82],[111,78,81],[108,75,78],[111,74,80],[108,71,77],[96,69,64],[92,65,60],[93,60,57],[94,61,58],[97,61,61],[94,58,58],[90,56,56],[91,57,57],[92,62,60],[90,60,58],[91,61,59],[94,64,62],[100,63,66],[99,62,65],[102,59,64],[103,60,65],[111,63,63],[121,73,73],[134,89,82],[144,99,92],[141,101,88],[129,89,76],[107,72,62],[93,58,48],[84,51,45],[78,45,39],[69,37,34],[72,40,37],[79,48,41],[79,48,41],[85,55,41],[99,69,55],[125,101,77],[146,122,98],[152,123,97],[135,106,80],[145,113,86],[173,141,114],[160,132,107],[123,95,70],[113,90,70],[191,168,148],[192,173,153],[163,144,124],[150,128,103],[171,149,124],[203,176,147],[231,204,175],[211,203,188],[212,204,189],[214,208,196],[219,213,201],[220,217,212],[230,227,222],[248,246,247],[255,254,255],[254,253,255],[203,214,222],[190,201,209],[205,212,218],[195,202,208],[191,190,192],[182,181,183],[120,112,111],[46,38,37],[58,40,38],[75,57,55],[101,75,75],[110,84,84],[113,80,83],[108,75,78],[107,70,76],[105,68,74],[98,71,66],[94,67,62],[96,63,60],[98,65,62],[100,64,64],[98,62,62],[95,61,61],[97,63,63],[96,66,64],[95,65,63],[97,67,65],[99,69,67],[103,66,69],[101,64,67],[105,62,67],[106,63,68],[112,64,64],[126,78,78],[143,98,91],[156,111,104],[155,115,102],[144,104,91],[123,88,78],[110,75,65],[101,68,62],[92,59,53],[79,47,44],[78,46,43],[81,50,43],[80,49,42],[88,58,44],[105,75,61],[117,93,69],[134,110,86],[161,132,106],[157,128,102],[163,131,104],[176,144,117],[162,134,109],[153,125,100],[144,121,101],[182,159,139],[194,175,155],[183,164,144],[157,135,110],[166,144,119],[197,170,141],[230,203,174],[223,215,200],[217,209,194],[216,210,198],[228,222,210],[239,236,231],[246,243,238],[247,245,246],[249,247,248],[254,253,255],[196,210,223],[200,214,227],[193,205,215],[182,194,204],[184,190,194],[180,186,190],[135,132,135],[68,65,68],[60,48,50],[77,65,67],[101,78,84],[107,84,90],[112,80,89],[108,76,85],[107,71,84],[104,68,81],[104,71,68],[101,68,65],[101,63,62],[101,63,62],[101,61,60],[98,58,57],[94,58,56],[96,60,58],[92,62,60],[78,48,46],[83,53,51],[98,68,66],[106,68,69],[106,68,69],[108,64,67],[99,55,58],[105,55,54],[140,90,89],[183,136,130],[201,154,148],[181,139,127],[169,127,115],[162,122,111],[144,104,93],[122,85,78],[112,75,68],[106,69,64],[103,66,61],[101,65,55],[109,73,63],[117,81,67],[117,81,67],[117,90,67],[136,109,86],[177,148,122],[177,148,122],[168,135,106],[173,140,111],[184,155,129],[135,106,80],[138,118,97],[230,210,189],[213,195,177],[186,168,150],[184,167,146],[175,158,137],[204,184,163],[212,192,171],[216,211,201],[230,225,215],[244,242,233],[249,247,238],[244,242,239],[241,239,236],[244,244,244],[249,249,249],[254,253,255],[199,213,226],[196,210,223],[190,202,212],[193,205,215],[182,188,192],[170,176,180],[150,147,150],[75,72,75],[61,49,51],[77,65,67],[100,77,83],[105,82,88],[109,77,86],[108,76,85],[108,72,85],[106,70,83],[104,71,68],[99,66,63],[99,61,60],[99,61,60],[101,61,60],[98,58,57],[91,55,53],[89,53,51],[77,47,45],[78,48,46],[87,57,55],[93,63,61],[95,57,58],[95,57,58],[105,61,64],[110,66,69],[120,70,69],[132,82,81],[189,142,136],[247,200,194],[209,167,155],[157,115,103],[149,109,98],[163,123,112],[159,122,115],[146,109,102],[132,95,90],[123,86,81],[119,83,73],[123,87,77],[127,91,77],[126,90,76],[138,111,88],[155,128,105],[179,150,124],[178,149,123],[172,139,110],[181,148,119],[183,154,128],[141,112,86],[157,137,116],[241,221,200],[236,218,200],[202,184,166],[188,171,150],[193,176,155],[231,211,190],[245,225,204],[226,221,211],[227,222,212],[228,226,217],[235,233,224],[242,240,237],[250,248,245],[252,252,252],[254,254,254],[254,253,255],[206,220,233],[191,205,218],[184,196,206],[180,192,202],[173,180,186],[163,170,176],[144,143,145],[86,85,87],[59,51,52],[75,67,68],[98,77,82],[101,80,85],[105,76,86],[105,76,86],[108,74,86],[106,72,84],[106,69,65],[101,64,60],[99,59,58],[100,60,59],[99,59,58],[94,54,53],[84,48,46],[79,43,41],[73,43,39],[81,51,47],[85,55,53],[88,58,56],[98,60,61],[101,63,64],[107,60,64],[109,62,66],[108,56,54],[128,76,74],[179,130,120],[236,187,177],[210,166,151],[189,145,130],[156,114,102],[107,65,53],[149,108,100],[152,111,103],[152,111,107],[142,101,97],[130,88,80],[127,85,77],[137,96,82],[148,107,93],[163,133,113],[181,151,131],[180,146,122],[177,143,119],[177,141,111],[189,153,123],[178,149,121],[150,121,93],[200,180,159],[246,226,205],[224,210,195],[185,171,156],[190,179,165],[216,205,191],[235,221,208],[233,219,206],[241,240,232],[235,234,226],[230,231,224],[234,235,228],[244,244,242],[253,253,251],[255,255,255],[255,255,255],[254,253,255],[207,221,234],[191,205,218],[190,202,212],[168,180,190],[173,180,186],[164,171,177],[127,126,128],[88,87,89],[58,50,51],[75,67,68],[98,77,82],[100,79,84],[103,74,84],[104,75,85],[107,73,85],[104,70,82],[104,67,63],[101,64,60],[100,60,59],[99,59,58],[94,54,53],[86,46,45],[75,39,37],[72,36,34],[87,57,53],[100,70,66],[99,69,67],[97,67,65],[112,74,75],[111,73,74],[105,58,62],[99,52,56],[102,50,48],[108,56,54],[158,109,99],[236,187,177],[216,172,157],[196,152,137],[154,112,100],[84,42,30],[102,61,53],[123,82,74],[140,99,95],[139,98,94],[130,88,80],[126,84,76],[137,96,82],[154,113,99],[164,134,114],[188,158,138],[171,137,113],[168,134,110],[179,143,113],[195,159,129],[178,149,121],[167,138,110],[222,202,181],[255,236,215],[225,211,196],[179,165,150],[200,189,175],[230,219,205],[230,216,203],[237,223,210],[247,246,238],[247,246,238],[247,248,241],[248,249,242],[249,249,247],[251,251,249],[253,253,253],[255,255,255],[254,253,255],[210,216,226],[206,212,222],[209,214,221],[195,200,207],[177,179,180],[150,152,153],[141,138,135],[86,83,80],[58,47,42],[76,65,60],[99,77,76],[100,78,77],[104,73,77],[106,75,79],[109,72,78],[104,67,73],[104,64,61],[103,63,60],[103,61,59],[98,56,54],[87,47,46],[77,37,36],[69,33,31],[69,33,31],[95,65,61],[113,83,79],[113,83,81],[105,75,73],[111,73,74],[107,69,70],[102,55,59],[99,52,56],[110,59,52],[95,44,37],[131,82,71],[220,171,160],[231,186,169],[225,180,163],[186,142,129],[96,52,39],[86,44,36],[104,62,54],[118,75,70],[126,83,78],[136,91,84],[136,91,84],[137,91,79],[146,100,88],[157,122,104],[188,153,135],[167,129,106],[166,128,105],[187,148,121],[201,162,135],[183,151,124],[185,153,126],[219,200,180],[245,226,206],[201,193,179],[170,162,148],[221,216,206],[248,243,233],[222,215,208],[234,227,220],[238,241,236],[243,246,241],[248,251,246],[251,254,249],[253,253,251],[253,253,251],[254,254,254],[255,255,255],[254,253,255],[217,223,233],[216,222,232],[211,216,223],[216,221,228],[163,165,166],[111,113,114],[159,156,153],[85,82,79],[56,45,40],[75,64,59],[98,76,75],[98,76,75],[102,71,75],[105,74,78],[108,71,77],[102,65,71],[103,63,60],[103,63,60],[102,60,58],[94,52,50],[81,41,40],[71,31,30],[67,31,29],[72,36,34],[88,58,54],[92,62,58],[87,57,55],[83,53,51],[95,57,58],[103,65,66],[107,60,64],[103,56,60],[108,57,50],[108,57,50],[127,78,67],[176,127,116],[216,171,154],[255,215,198],[243,199,186],[119,75,62],[76,34,26],[96,54,46],[107,64,59],[114,71,66],[127,82,75],[128,83,76],[132,86,74],[145,99,87],[161,126,108],[193,158,140],[174,136,113],[168,130,107],[195,156,129],[197,158,131],[174,142,115],[177,145,118],[201,182,162],[217,198,178],[179,171,157],[179,171,157],[249,244,234],[255,254,244],[226,219,212],[233,226,219],[247,250,245],[245,248,243],[244,247,242],[247,250,245],[254,254,252],[255,255,253],[255,255,255],[254,254,254],[254,253,255],[226,224,231],[223,221,228],[216,215,217],[219,218,220],[176,173,170],[102,99,96],[127,120,113],[75,68,61],[58,43,34],[78,63,54],[99,74,68],[97,72,66],[101,68,65],[105,72,69],[110,69,71],[105,64,66],[103,63,60],[100,60,57],[97,55,53],[89,47,45],[77,37,34],[71,31,28],[68,35,32],[74,41,38],[76,49,44],[64,37,32],[58,28,24],[61,31,27],[79,41,42],[97,59,60],[110,63,67],[104,57,61],[107,58,48],[120,71,61],[138,90,76],[149,101,87],[164,119,100],[195,150,131],[227,183,168],[147,103,88],[65,23,15],[89,47,39],[102,57,52],[107,62,57],[117,70,64],[118,71,65],[125,79,68],[147,101,90],[169,129,115],[198,158,144],[182,142,121],[172,132,111],[204,162,136],[191,149,123],[162,130,103],[157,125,98],[156,137,117],[187,168,148],[188,182,170],[215,209,197],[253,252,244],[246,245,237],[231,230,224],[250,249,243],[252,255,253],[250,254,251],[246,250,247],[246,250,247],[250,252,252],[253,255,255],[255,255,255],[253,253,253],[254,254,254],[217,215,222],[216,214,221],[224,223,225],[213,212,214],[212,209,206],[122,119,116],[65,58,51],[53,46,39],[59,44,35],[78,63,54],[97,72,66],[94,69,63],[98,65,62],[103,70,67],[110,69,71],[106,65,67],[104,64,61],[98,58,55],[92,50,48],[84,42,40],[76,36,33],[73,33,30],[71,38,35],[77,44,41],[75,48,43],[64,37,32],[64,34,30],[64,34,30],[67,29,30],[81,43,44],[104,57,61],[106,59,63],[109,60,50],[121,72,62],[122,74,60],[96,48,34],[96,51,32],[117,72,53],[167,123,108],[98,54,39],[70,28,20],[88,46,38],[95,50,45],[101,56,51],[121,74,68],[124,77,71],[124,78,67],[139,93,82],[164,124,110],[189,149,135],[179,139,118],[170,130,109],[208,166,140],[190,148,122],[159,127,100],[148,116,89],[119,100,80],[144,125,105],[168,162,150],[223,217,205],[249,248,240],[236,235,227],[235,234,228],[244,243,237],[248,252,249],[248,252,249],[248,252,249],[248,252,249],[248,250,250],[249,251,251],[254,254,254],[255,255,255],[254,254,254],[212,211,231],[215,214,234],[214,220,224],[209,215,219],[208,216,205],[200,208,197],[149,147,138],[70,68,59],[75,56,61],[80,61,66],[95,63,74],[97,65,76],[99,65,68],[98,64,67],[99,66,60],[100,67,61],[106,63,60],[100,57,54],[88,48,44],[79,39,35],[72,39,33],[74,41,35],[69,42,35],[65,38,31],[61,38,32],[54,31,25],[49,28,21],[52,31,24],[55,34,29],[60,39,34],[74,51,47],[88,65,61],[96,63,57],[96,63,57],[67,37,27],[60,30,20],[66,37,27],[70,41,31],[77,48,41],[65,36,29],[65,29,29],[75,39,39],[90,48,46],[101,59,57],[116,67,56],[119,70,59],[134,81,61],[152,99,79],[165,126,117],[189,150,141],[180,138,112],[181,139,113],[214,172,134],[186,144,106],[165,137,103],[166,138,104],[102,91,75],[78,67,51],[162,162,162],[229,229,229],[226,226,226],[235,235,235],[243,237,233],[251,245,241],[250,249,253],[250,249,253],[251,248,253],[250,247,252],[249,246,249],[250,247,250],[254,250,252],[255,252,254],[255,251,253],[209,208,228],[213,212,232],[210,216,220],[209,215,219],[213,221,210],[204,212,201],[150,148,139],[76,74,65],[72,53,58],[78,59,64],[94,62,73],[97,65,76],[99,65,68],[100,66,69],[100,67,61],[100,67,61],[104,61,58],[99,56,53],[87,47,43],[79,39,35],[72,39,33],[73,40,34],[67,40,33],[63,36,29],[52,29,23],[47,24,18],[43,22,15],[45,24,17],[45,24,19],[46,25,20],[55,32,28],[64,41,37],[71,38,32],[73,40,34],[65,35,25],[71,41,31],[79,50,40],[77,48,38],[71,42,35],[62,33,26],[66,30,30],[73,37,37],[86,44,42],[97,55,53],[113,64,53],[120,71,60],[137,84,64],[154,101,81],[172,133,124],[188,149,140],[172,130,104],[191,149,123],[214,172,134],[185,143,105],[151,123,89],[152,124,90],[151,140,124],[167,156,140],[215,215,215],[237,237,237],[235,235,235],[244,244,244],[244,238,234],[245,239,235],[246,245,249],[247,246,250],[248,245,250],[248,245,250],[248,245,248],[250,247,250],[254,250,252],[255,252,254],[253,249,251],[212,211,228],[213,212,229],[209,212,215],[208,211,214],[215,220,210],[200,205,195],[139,137,128],[69,67,58],[71,53,55],[78,60,62],[94,62,71],[96,64,73],[99,65,67],[100,66,68],[100,67,61],[98,65,59],[94,61,56],[89,56,51],[79,50,43],[71,42,35],[66,41,33],[66,41,33],[59,38,31],[55,34,27],[44,27,19],[41,24,16],[40,23,17],[42,25,19],[41,24,18],[38,21,15],[41,21,16],[46,26,21],[53,26,19],[49,22,15],[56,30,19],[64,38,27],[76,48,35],[80,52,39],[71,41,31],[68,38,28],[69,32,27],[71,34,29],[83,40,37],[94,51,48],[108,62,51],[120,74,63],[141,92,74],[158,109,91],[181,141,128],[182,142,129],[164,122,96],[202,160,134],[207,169,132],[173,135,98],[135,108,77],[141,114,83],[154,144,130],[209,199,185],[229,229,229],[226,226,226],[235,237,238],[243,245,246],[243,240,237],[248,245,242],[243,240,243],[244,241,244],[245,242,245],[246,243,246],[248,246,247],[250,248,249],[253,251,252],[255,254,255],[247,245,246],[216,215,232],[215,214,231],[208,211,214],[207,210,213],[214,219,209],[194,199,189],[131,129,120],[63,61,52],[73,55,57],[79,61,63],[93,61,70],[92,60,69],[95,61,63],[98,64,66],[98,65,59],[95,62,56],[89,56,51],[85,52,47],[75,46,39],[69,40,33],[64,39,31],[63,38,30],[56,35,28],[50,29,22],[43,26,18],[41,24,16],[42,25,19],[45,28,22],[43,26,20],[40,23,17],[40,20,15],[42,22,17],[51,24,17],[45,18,11],[59,33,22],[63,37,26],[77,49,36],[93,65,52],[80,50,40],[72,42,32],[68,31,26],[68,31,26],[81,38,35],[92,49,46],[104,58,47],[121,75,64],[150,101,83],[169,120,102],[182,142,129],[172,132,119],[164,122,96],[205,163,137],[199,161,124],[157,119,82],[136,109,78],[149,122,91],[163,153,139],[222,212,198],[226,226,226],[228,228,228],[242,244,245],[237,239,240],[240,237,234],[248,245,242],[241,238,241],[243,240,243],[245,242,245],[246,243,246],[248,246,247],[249,247,248],[252,250,251],[254,252,253],[249,247,248],[221,219,226],[218,216,223],[210,214,211],[210,214,211],[214,220,208],[196,202,190],[139,137,126],[70,68,57],[72,54,52],[78,60,58],[89,58,62],[87,56,60],[90,56,56],[95,61,61],[96,65,58],[93,62,55],[73,54,46],[70,51,43],[62,45,37],[56,39,31],[54,39,30],[53,38,29],[47,35,25],[41,29,19],[38,26,18],[37,25,17],[37,25,17],[38,26,18],[40,25,18],[38,23,16],[36,21,14],[37,22,15],[42,22,19],[44,24,21],[68,48,37],[73,53,42],[91,66,48],[113,88,70],[99,65,49],[74,40,24],[70,31,20],[69,30,19],[82,40,32],[94,52,44],[102,58,46],[122,78,66],[154,110,95],[175,131,116],[179,136,118],[165,122,104],[173,131,105],[203,161,135],[188,153,119],[142,107,73],[152,130,103],[175,153,126],[183,174,163],[224,215,204],[221,223,224],[232,234,235],[240,242,245],[233,235,238],[242,242,242],[241,241,241],[242,240,239],[244,242,241],[246,244,243],[247,245,244],[248,246,247],[249,247,248],[249,249,249],[251,251,251],[254,254,254],[228,226,233],[221,219,226],[216,220,217],[214,218,215],[210,216,204],[199,205,193],[149,147,136],[76,74,63],[69,51,49],[75,57,55],[85,54,58],[82,51,55],[87,53,53],[94,60,60],[94,63,56],[90,59,52],[66,47,39],[64,45,37],[56,39,31],[52,35,27],[50,35,26],[50,35,26],[44,32,22],[39,27,17],[41,29,21],[40,28,20],[39,27,19],[39,27,19],[42,27,20],[42,27,20],[41,26,19],[40,25,18],[41,21,18],[48,28,25],[67,47,36],[72,52,41],[90,65,47],[118,93,75],[116,82,66],[83,49,33],[72,33,22],[68,29,18],[83,41,33],[97,55,47],[103,59,47],[125,81,69],[159,115,100],[177,133,118],[167,124,106],[159,116,98],[181,139,113],[201,159,133],[178,143,109],[144,109,75],[182,160,133],[208,186,159],[203,194,183],[225,216,205],[221,223,224],[227,229,230],[229,231,234],[234,236,239],[249,249,249],[237,237,237],[243,241,240],[245,243,242],[247,245,244],[248,246,245],[248,246,247],[248,246,247],[247,247,247],[248,248,248],[252,252,252],[234,234,234],[224,224,224],[224,229,223],[220,225,219],[208,213,203],[205,210,200],[165,163,154],[86,84,75],[67,50,46],[74,57,53],[83,55,55],[79,51,51],[84,52,49],[90,58,55],[88,57,51],[82,51,45],[56,44,36],[53,41,33],[48,36,28],[44,32,24],[45,33,25],[46,34,26],[45,30,23],[41,26,19],[44,27,21],[44,27,21],[43,26,20],[43,26,20],[48,28,23],[50,30,25],[51,30,25],[50,29,24],[40,27,23],[43,30,26],[52,33,22],[59,40,29],[74,50,28],[103,79,57],[125,91,68],[100,66,43],[79,40,23],[70,31,14],[83,41,29],[99,57,45],[104,62,50],[127,85,73],[157,117,103],[169,129,115],[154,110,89],[155,111,90],[177,138,111],[199,160,133],[160,133,104],[151,124,95],[199,185,163],[223,209,187],[231,226,219],[238,233,226],[232,234,237],[233,235,238],[230,233,236],[232,235,238],[240,242,243],[235,237,238],[244,241,238],[246,243,240],[247,245,242],[248,246,243],[247,247,247],[246,246,246],[244,246,247],[244,246,247],[240,243,246],[234,234,234],[223,223,223],[229,234,228],[226,231,225],[212,217,207],[217,222,212],[185,183,174],[103,101,92],[69,52,48],[76,59,55],[85,57,57],[81,53,53],[83,51,48],[86,54,51],[82,51,45],[72,41,35],[53,41,33],[50,38,30],[45,33,25],[42,30,22],[43,31,23],[45,33,25],[45,30,23],[41,26,19],[36,19,13],[36,19,13],[37,20,14],[38,21,15],[44,24,19],[49,29,24],[50,29,24],[49,28,23],[40,27,23],[42,29,25],[45,26,15],[57,38,27],[68,44,22],[90,66,44],[125,91,68],[106,72,49],[83,44,27],[70,31,14],[81,39,27],[99,57,45],[107,65,53],[129,87,75],[156,116,102],[163,123,109],[143,99,78],[153,109,88],[172,133,106],[199,160,133],[152,125,96],[163,136,107],[210,196,174],[230,216,194],[234,229,222],[231,226,219],[227,229,232],[236,238,241],[239,242,245],[232,235,238],[232,234,235],[245,247,248],[243,240,237],[245,242,239],[247,245,242],[248,246,243],[246,246,246],[245,245,245],[243,245,246],[243,245,246],[235,238,241],[233,233,231],[234,234,232],[230,234,231],[227,231,228],[221,225,222],[212,216,213],[198,196,193],[109,107,104],[67,52,47],[69,54,49],[80,55,49],[78,53,47],[80,50,46],[84,54,50],[78,51,46],[64,37,32],[49,34,27],[49,34,27],[51,34,28],[48,31,25],[43,23,18],[38,18,13],[42,19,15],[48,25,21],[54,29,23],[57,32,26],[53,26,21],[48,21,16],[55,25,21],[57,27,23],[51,21,17],[48,18,14],[33,16,12],[38,21,17],[44,24,11],[46,26,13],[63,36,13],[84,57,34],[107,75,50],[115,83,58],[96,59,39],[80,43,23],[82,42,28],[95,55,41],[106,66,52],[124,84,70],[140,102,85],[140,102,85],[147,101,76],[157,111,86],[168,132,106],[178,142,116],[132,112,89],[170,150,127],[197,189,175],[227,219,205],[233,231,228],[234,232,229],[235,234,238],[236,235,239],[235,237,240],[237,239,242],[238,242,242],[240,244,244],[249,246,243],[250,247,244],[245,245,243],[242,242,240],[241,244,247],[243,246,249],[233,240,246],[222,229,235],[224,233,242],[238,238,236],[235,235,233],[230,234,231],[231,235,232],[233,237,234],[223,227,224],[198,196,193],[100,98,95],[62,47,42],[66,51,46],[80,55,49],[78,53,47],[76,46,42],[78,48,44],[75,48,43],[64,37,32],[52,37,30],[48,33,26],[44,27,21],[41,24,18],[43,23,18],[49,29,24],[62,39,35],[71,48,44],[76,51,45],[80,55,49],[76,49,44],[71,44,39],[76,46,42],[76,46,42],[72,42,38],[72,42,38],[53,36,32],[44,27,23],[39,19,6],[43,23,10],[66,39,16],[84,57,34],[94,62,37],[92,60,35],[99,62,42],[93,56,36],[95,55,41],[95,55,41],[99,59,45],[119,79,65],[135,97,80],[132,94,77],[140,94,69],[150,104,79],[172,136,110],[171,135,109],[141,121,98],[188,168,145],[199,191,177],[228,220,206],[235,233,230],[236,234,231],[237,236,240],[239,238,242],[238,240,243],[240,242,245],[241,245,245],[243,247,247],[250,247,244],[249,246,243],[245,245,243],[244,244,242],[241,244,247],[238,241,244],[227,234,240],[219,226,232],[217,226,235],[224,226,226],[232,234,234],[230,236,240],[222,228,232],[223,230,236],[225,232,238],[206,205,209],[112,111,115],[53,41,39],[58,46,44],[74,53,46],[73,52,45],[67,44,38],[67,44,38],[68,45,41],[61,38,34],[56,37,29],[48,29,21],[42,21,14],[43,22,15],[54,29,23],[67,42,36],[84,54,50],[94,64,60],[87,54,49],[90,57,52],[87,51,47],[81,45,41],[83,47,43],[82,46,42],[80,44,40],[81,45,41],[79,50,43],[76,47,40],[74,46,31],[71,43,28],[67,40,17],[65,38,15],[70,42,17],[76,48,23],[93,60,41],[101,68,49],[105,70,54],[95,60,44],[95,56,37],[114,75,56],[131,91,69],[127,87,65],[132,89,61],[145,102,74],[170,140,116],[156,126,102],[150,139,123],[203,192,176],[202,201,193],[223,222,214],[236,236,236],[238,238,238],[241,238,241],[243,240,243],[243,242,244],[245,244,246],[245,247,247],[247,249,249],[249,247,246],[248,246,245],[245,247,248],[246,248,249],[239,246,252],[230,237,243],[215,227,239],[208,220,232],[203,218,233],[223,225,225],[236,238,238],[236,242,246],[222,228,232],[225,232,238],[228,235,241],[200,199,203],[105,104,108],[50,38,36],[52,40,38],[67,46,39],[70,49,42],[66,43,37],[65,42,36],[66,43,39],[61,38,34],[51,32,24],[46,27,19],[45,24,17],[53,32,25],[68,43,37],[78,53,47],[88,58,54],[91,61,57],[92,59,54],[92,59,54],[87,51,47],[83,47,43],[86,50,46],[85,49,45],[82,46,42],[83,47,43],[83,54,47],[94,65,58],[104,76,61],[98,70,55],[74,47,24],[55,28,5],[58,30,5],[72,44,19],[82,49,30],[98,65,46],[110,75,59],[104,69,53],[103,64,45],[114,75,56],[127,87,65],[128,88,66],[137,94,66],[157,114,86],[169,139,115],[156,126,102],[171,160,144],[221,210,194],[221,220,212],[229,228,220],[239,239,239],[240,240,240],[244,241,244],[245,242,245],[245,244,246],[246,245,247],[245,247,247],[247,249,249],[250,248,247],[249,247,246],[249,251,252],[253,255,255],[245,252,255],[228,235,241],[208,220,232],[201,213,225],[201,216,231],[217,223,227],[214,220,224],[217,226,237],[220,229,240],[232,240,255],[216,224,239],[166,168,179],[75,77,88],[47,39,38],[43,35,34],[55,38,30],[61,44,36],[63,44,36],[64,45,37],[63,43,40],[57,37,34],[47,28,20],[46,27,19],[53,31,22],[66,44,35],[81,54,47],[85,58,51],[86,55,49],[84,53,47],[96,61,55],[93,58,52],[85,50,44],[82,47,41],[88,53,45],[87,52,44],[82,47,39],[83,48,40],[93,51,41],[101,59,49],[109,74,58],[112,77,61],[94,66,43],[72,44,21],[57,33,11],[56,32,10],[69,41,24],[85,57,40],[106,72,56],[114,80,64],[119,81,58],[118,80,57],[127,84,56],[135,92,64],[148,106,78],[171,129,101],[158,133,114],[161,136,117],[186,181,171],[225,220,210],[235,239,238],[232,236,235],[240,242,243],[242,244,245],[248,244,246],[249,245,247],[249,245,245],[249,245,245],[248,248,246],[249,249,247],[251,250,252],[250,249,251],[250,255,255],[250,255,255],[246,255,255],[226,236,249],[200,218,236],[190,208,226],[193,213,236],[226,232,236],[213,219,223],[218,227,238],[219,228,239],[211,219,234],[171,179,194],[125,127,138],[69,71,82],[49,41,40],[39,31,30],[47,30,22],[56,39,31],[62,43,35],[62,43,35],[60,40,37],[55,35,32],[48,29,21],[49,30,22],[59,37,28],[73,51,42],[86,59,52],[87,60,53],[86,55,49],[83,52,46],[88,53,47],[85,50,44],[78,43,37],[78,43,37],[84,49,41],[82,47,39],[77,42,34],[80,45,37],[98,56,46],[104,62,52],[110,75,59],[117,82,66],[107,79,56],[88,60,37],[62,38,16],[48,24,2],[66,38,21],[76,48,31],[97,63,47],[116,82,66],[130,92,69],[122,84,61],[124,81,53],[135,92,64],[154,112,84],[171,129,101],[146,121,102],[173,148,129],[197,192,182],[226,221,211],[236,240,239],[233,237,236],[243,245,246],[245,247,248],[251,247,249],[252,248,250],[252,248,248],[251,247,247],[250,250,248],[250,250,248],[252,251,253],[250,249,251],[245,251,255],[247,253,255],[238,248,255],[223,233,246],[199,217,235],[187,205,223],[181,201,224],[206,213,220],[214,221,228],[223,232,249],[194,203,220],[160,168,192],[125,133,157],[104,108,123],[76,80,95],[50,43,46],[37,30,33],[43,28,19],[52,37,28],[56,39,31],[56,39,31],[53,37,34],[49,33,30],[46,30,19],[50,34,23],[63,42,33],[74,53,44],[84,59,50],[83,58,49],[84,53,46],[83,52,45],[82,50,41],[83,51,42],[81,49,40],[81,49,40],[84,52,41],[80,48,37],[77,47,35],[83,53,41],[105,55,42],[114,64,51],[118,77,61],[123,82,66],[111,81,61],[97,67,47],[71,48,29],[54,31,12],[59,35,21],[66,42,28],[80,51,34],[102,73,56],[129,89,65],[125,85,61],[124,79,46],[133,88,55],[154,115,88],[155,116,89],[138,117,98],[185,164,145],[202,201,195],[228,227,221],[225,233,234],[233,241,242],[242,244,247],[244,246,249],[252,245,248],[254,247,250],[255,249,247],[255,249,247],[252,250,247],[253,251,248],[249,251,254],[243,245,248],[230,237,244],[224,231,238],[215,229,244],[210,224,239],[194,213,234],[182,201,222],[180,202,229],[118,125,132],[156,163,170],[179,188,205],[139,148,165],[116,124,148],[116,124,148],[113,117,132],[82,86,101],[51,44,47],[37,30,33],[43,28,19],[51,36,27],[53,36,28],[51,34,26],[50,34,31],[48,32,29],[45,29,18],[51,35,24],[65,44,35],[76,55,46],[83,58,49],[80,55,46],[80,49,42],[79,48,41],[77,45,36],[82,50,41],[83,51,42],[83,51,42],[82,50,39],[76,44,33],[76,46,34],[86,56,44],[101,51,38],[107,57,44],[108,67,51],[114,73,57],[113,83,63],[109,79,59],[84,61,42],[63,40,21],[55,31,17],[60,36,22],[69,40,23],[89,60,43],[122,82,58],[124,84,60],[123,78,45],[129,84,51],[158,119,92],[146,107,80],[142,121,102],[199,178,159],[211,210,204],[239,238,232],[220,228,229],[240,248,249],[239,241,244],[241,243,246],[250,243,246],[253,246,249],[254,248,246],[255,249,247],[252,250,247],[253,251,248],[246,248,251],[237,239,242],[216,223,230],[204,211,218],[196,210,225],[199,213,228],[189,208,229],[178,197,218],[197,219,246],[95,117,144],[95,117,144],[96,113,151],[109,126,164],[116,129,173],[110,123,167],[104,112,145],[78,86,119],[53,57,70],[29,33,46],[28,25,22],[35,32,29],[42,29,25],[43,30,26],[49,31,31],[44,26,26],[48,29,21],[52,33,25],[59,38,31],[66,45,38],[74,49,41],[76,51,43],[78,49,41],[77,48,40],[79,48,41],[75,44,37],[76,44,35],[79,47,38],[79,47,38],[76,44,35],[82,50,39],[91,59,48],[102,62,41],[103,63,42],[104,65,46],[106,67,48],[107,72,54],[105,70,52],[89,59,39],[74,44,24],[68,38,16],[81,51,29],[82,48,22],[96,62,36],[103,66,35],[113,76,45],[115,74,40],[134,93,59],[126,100,73],[124,98,71],[148,131,110],[194,177,156],[212,207,199],[228,223,215],[233,233,231],[231,231,229],[240,240,240],[242,242,242],[241,240,242],[241,240,242],[244,247,252],[252,255,255],[249,255,255],[244,250,255],[218,236,254],[192,210,228],[194,209,226],[185,200,217],[189,201,213],[200,212,224],[200,209,218],[223,232,241],[236,241,248],[88,110,137],[89,111,138],[91,108,146],[105,122,160],[112,125,169],[109,122,166],[105,113,146],[81,89,122],[55,59,72],[34,38,51],[30,27,24],[33,30,27],[42,29,25],[42,29,25],[45,27,27],[44,26,26],[49,30,22],[52,33,25],[58,37,30],[64,43,36],[71,46,38],[73,48,40],[76,47,39],[75,46,38],[73,42,35],[71,40,33],[73,41,32],[75,43,34],[72,40,31],[70,38,29],[77,45,34],[87,55,44],[97,57,36],[105,65,44],[108,69,50],[107,68,49],[103,68,50],[102,67,49],[92,62,42],[81,51,31],[74,44,22],[83,53,31],[87,53,27],[96,62,36],[107,70,39],[111,74,43],[115,74,40],[130,89,55],[117,91,64],[134,108,81],[171,154,133],[213,196,175],[221,216,208],[231,226,218],[235,235,233],[233,233,231],[236,236,236],[241,241,241],[245,244,246],[246,245,247],[245,248,253],[247,250,255],[244,250,255],[242,248,255],[214,232,250],[184,202,220],[184,199,216],[183,198,215],[202,214,226],[223,235,247],[224,233,242],[242,251,255],[232,237,244],[88,105,135],[88,105,135],[88,104,142],[101,117,155],[109,123,164],[106,120,161],[103,111,144],[80,88,121],[50,54,69],[35,39,54],[27,25,24],[27,25,24],[41,30,25],[40,29,24],[41,25,22],[46,30,27],[46,29,21],[49,32,24],[55,36,28],[59,40,32],[64,42,33],[67,45,36],[71,44,37],[72,45,38],[67,38,30],[66,37,29],[67,37,27],[68,38,28],[66,36,26],[65,35,25],[72,42,30],[82,52,40],[90,51,32],[99,60,41],[101,63,46],[98,60,43],[96,61,43],[99,64,46],[93,60,41],[83,50,31],[80,47,26],[83,50,29],[89,55,29],[94,60,34],[109,72,42],[107,70,40],[113,75,42],[123,85,52],[105,85,60],[142,122,97],[187,176,160],[220,209,193],[219,216,209],[224,221,214],[229,231,231],[230,232,232],[238,240,240],[241,243,243],[247,246,248],[247,246,248],[239,240,246],[232,233,239],[228,233,241],[231,236,244],[203,217,232],[193,207,222],[212,223,237],[226,237,251],[242,252,255],[246,255,255],[227,234,241],[226,233,240],[227,233,237],[93,110,140],[90,107,137],[87,103,141],[100,116,154],[108,122,163],[105,119,160],[98,106,139],[72,80,113],[51,55,70],[41,45,60],[29,27,26],[25,23,22],[41,30,25],[39,28,23],[39,23,20],[48,32,29],[44,27,19],[46,29,21],[51,32,24],[54,35,27],[59,37,28],[62,40,31],[68,41,34],[70,43,36],[65,36,28],[63,34,26],[63,33,23],[64,34,24],[66,36,26],[68,38,28],[73,43,31],[79,49,37],[87,48,29],[92,53,34],[92,54,37],[89,51,34],[92,57,39],[99,64,46],[94,61,42],[83,50,31],[86,53,32],[82,49,28],[93,59,33],[96,62,36],[115,78,48],[109,72,42],[119,81,48],[125,87,54],[118,98,73],[164,144,119],[207,196,180],[228,217,201],[222,219,212],[229,226,219],[235,237,237],[238,240,240],[246,248,248],[246,248,248],[248,247,249],[246,245,247],[234,235,241],[222,223,229],[218,223,231],[224,229,237],[220,234,249],[219,233,248],[236,247,255],[239,250,255],[238,248,255],[232,242,253],[220,227,234],[222,229,236],[224,230,234],[102,115,146],[96,109,140],[91,103,141],[104,116,154],[112,123,163],[109,120,160],[96,107,139],[67,78,110],[59,67,82],[50,58,73],[38,37,39],[28,27,29],[38,31,27],[34,27,23],[34,23,17],[43,32,26],[38,26,16],[40,28,18],[45,30,21],[47,32,23],[52,33,23],[56,37,27],[62,40,31],[66,44,35],[62,36,27],[58,32,23],[56,30,19],[59,33,22],[64,38,27],[68,42,31],[71,45,34],[73,47,36],[82,47,29],[88,53,35],[91,56,38],[89,54,36],[89,56,37],[95,62,43],[96,63,42],[92,59,38],[97,64,41],[89,56,33],[100,66,40],[105,71,45],[119,83,53],[113,77,47],[126,89,58],[131,94,63],[125,112,94],[174,161,143],[211,205,193],[225,219,207],[223,226,223],[234,237,234],[241,245,245],[242,246,246],[250,252,253],[249,251,252],[252,251,253],[252,251,253],[243,244,250],[231,232,238],[224,229,237],[227,232,240],[233,239,251],[233,239,251],[236,242,252],[229,235,245],[221,226,233],[219,224,231],[218,224,228],[226,232,236],[223,226,229],[102,115,146],[97,110,141],[92,104,142],[105,117,155],[113,124,164],[112,123,163],[104,115,147],[78,89,121],[66,74,89],[54,62,77],[43,42,44],[31,30,32],[35,28,24],[33,26,22],[37,26,20],[42,31,25],[36,24,14],[39,27,17],[43,28,19],[44,29,20],[49,30,20],[52,33,23],[59,37,28],[63,41,32],[60,34,25],[57,31,22],[55,29,18],[58,32,21],[63,37,26],[68,42,31],[69,43,32],[68,42,31],[75,40,22],[84,49,31],[92,57,39],[92,57,39],[85,52,33],[85,52,33],[94,61,40],[102,69,48],[103,70,47],[94,61,38],[103,69,43],[111,77,51],[117,81,51],[114,78,48],[127,90,59],[133,96,65],[132,119,101],[183,170,152],[219,213,201],[233,227,215],[234,237,234],[243,246,243],[245,249,249],[245,249,249],[251,253,254],[252,254,255],[255,254,255],[255,254,255],[246,247,253],[235,236,242],[223,228,236],[220,225,233],[219,225,237],[221,227,239],[222,228,238],[221,227,237],[221,226,233],[220,225,232],[216,222,226],[213,219,223],[220,223,226],[102,110,145],[100,108,143],[96,106,143],[106,116,153],[111,123,161],[113,125,163],[114,125,157],[97,108,140],[78,87,108],[61,70,91],[49,52,59],[35,38,45],[29,26,21],[28,25,20],[37,28,19],[37,28,19],[36,25,17],[38,27,19],[41,29,19],[41,29,19],[44,27,19],[46,29,21],[54,33,24],[58,37,28],[54,32,22],[55,33,23],[58,33,24],[58,33,24],[60,36,24],[63,39,27],[64,40,28],[64,40,28],[71,40,24],[73,42,26],[79,48,31],[85,54,37],[84,51,32],[81,48,29],[89,55,32],[101,67,44],[103,69,45],[94,60,36],[100,64,38],[115,79,53],[109,73,45],[113,77,49],[124,88,60],[134,98,70],[142,133,122],[196,187,176],[232,231,225],[243,242,236],[243,249,249],[246,252,252],[246,252,254],[250,255,255],[248,250,251],[251,253,254],[252,249,252],[245,242,245],[235,234,238],[227,226,230],[217,219,228],[213,215,224],[220,221,229],[220,221,229],[214,215,221],[211,212,218],[213,214,220],[217,218,224],[219,221,224],[213,215,218],[215,218,221],[99,107,142],[101,109,144],[98,108,145],[106,116,153],[108,120,158],[111,123,161],[120,131,163],[110,121,153],[100,109,130],[78,87,108],[65,68,75],[46,49,56],[31,28,23],[26,23,18],[34,25,16],[29,20,11],[37,26,18],[39,28,20],[42,30,20],[41,29,19],[43,26,18],[44,27,19],[51,30,21],[54,33,24],[53,31,21],[57,35,25],[62,37,28],[61,36,27],[59,35,23],[59,35,23],[61,37,25],[63,39,27],[77,46,30],[67,36,20],[67,36,19],[79,48,31],[89,56,37],[87,54,35],[88,54,31],[94,60,37],[100,66,42],[93,59,35],[98,62,36],[118,82,56],[106,70,42],[116,80,52],[126,90,62],[139,103,75],[141,132,121],[197,188,177],[232,231,225],[239,238,232],[234,240,240],[232,238,238],[233,239,241],[241,247,249],[241,243,244],[244,246,247],[243,240,243],[230,227,230],[220,219,223],[218,217,221],[217,219,228],[216,218,227],[205,206,214],[212,213,221],[211,212,218],[209,210,216],[209,210,216],[209,210,216],[212,214,217],[206,208,211],[211,214,217],[102,108,144],[99,105,141],[97,108,142],[102,113,147],[107,119,153],[110,122,156],[113,126,157],[115,128,159],[114,124,148],[102,112,136],[95,99,112],[60,64,77],[41,38,35],[24,21,18],[38,30,16],[38,30,16],[38,29,20],[37,28,19],[43,32,24],[36,25,17],[46,31,22],[43,28,19],[51,32,22],[47,28,18],[51,29,20],[53,31,22],[58,36,26],[62,40,30],[61,39,29],[57,35,25],[56,34,22],[58,36,24],[62,36,23],[64,38,25],[62,34,17],[65,37,20],[83,53,33],[92,62,42],[90,56,32],[85,51,27],[103,67,41],[100,64,38],[103,67,41],[103,67,41],[118,84,58],[117,83,57],[127,95,70],[137,105,80],[156,154,145],[221,219,210],[222,225,222],[223,226,223],[221,227,229],[225,231,233],[228,234,236],[233,239,241],[240,239,241],[235,234,236],[232,230,231],[224,222,223],[213,212,216],[213,212,216],[214,216,225],[210,212,221],[209,207,214],[209,207,214],[208,206,213],[208,206,213],[208,207,211],[208,207,211],[207,209,210],[207,209,210],[209,211,212]]
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment