diff --git a/lib/checksum.js b/lib/checksum.js index b634d4f..c37cf85 100644 --- a/lib/checksum.js +++ b/lib/checksum.js @@ -2,10 +2,17 @@ var crc32c = require('fast-crc32c').calculate var bufferAlloc = require('buffer-alloc') module.exports = function (value) { - var x = crc32c(value) - var result = bufferAlloc(4) + var x = crc32c(value) + var result = bufferAlloc(4) - result.writeUInt32LE(((((x >> 15) | (x << 17)) + 0xa282ead8)) >>> 0, 0, true) + // As defined in section 3 of https://github.com/google/snappy/blob/master/framing_format.txt + // And other implementations for reference: + // Go: https://github.com/golang/snappy/blob/2e65f85255dbc3072edf28d6b5b8efc472979f5a/snappy.go#L97 + // Python: https://github.com/andrix/python-snappy/blob/602e9c10d743f71bef0bac5e4c4dffa17340d7b3/snappy/snappy.py#L70 + // Mask the right hand to (32 - 17) = 15 bits -> 0x7fff, to keep correct 32 bit values. + // Shift the left hand with >>> for correct 32 bit intermediate result. + // Then final >>> 0 for 32 bits output + result.writeUInt32LE(((((x >>> 15) | ((x & 0x7fff) << 17)) + 0xa282ead8)) >>> 0, 0, true) - return result - } \ No newline at end of file + return result +} \ No newline at end of file diff --git a/test/checksum.expected b/test/checksum.expected index 826db8c..622ac23 100644 --- a/test/checksum.expected +++ b/test/checksum.expected @@ -1 +1 @@ -[[210,143,37,73],[5,43,130,162],[100,81,130,162],[51,109,205,227],[167,22,130,162],[240,185,29,49],[145,212,245,11],[70,248,129,162],[32,156,130,162],[119,64,189,179],[22,94,85,153],[193,130,130,162],[85,41,133,219],[130,197,130,162],[227,230,130,162],[180,3,109,129],[31,111,255,202],[104,75,130,162],[9,49,130,162],[190,141,23,114],[74,246,129,162],[125,218,199,162],[220,179,47,138],[171,24,130,162],[205,124,130,162],[250,95,103,66],[91,62,143,26],[44,162,130,162],[152,9,95,90],[239,228,130,162],[142,199,130,162],[57,35,183,242],[89,208,161,93],[46,236,129,162],[207,18,130,162],[248,173,121,255],[140,85,130,162],[59,121,169,53],[154,147,81,23],[237,54,130,162],[11,219,130,162],[188,255,8,175],[29,29,241,141],[106,193,130,162],[222,105,65,199],[169,134,130,162],[72,168,130,162],[127,68,217,101],[20,176,67,216],[195,12,130,162],[34,242,129,162],[117,206,171,116],[225,52,130,162],[182,153,123,192],[87,115,147,156],[128,87,130,162],[102,187,130,162],[49,31,219,36],[208,253,50,8],[7,225,130,162],[147,74,227,76],[68,166,130,162],[165,136,130,162],[242,99,11,240],[228,16,93,64],[179,173,130,162],[82,207,130,162],[133,235,180,28],[17,148,130,162],[198,56,101,88],[39,86,141,244],[112,122,130,162],[150,30,130,162],[65,194,197,204],[160,220,45,112],[247,255,129,162],[99,167,253,164],[52,67,130,162],[213,105,130,162],[2,133,21,136],[137,241,134,181],[62,205,130,162],[159,175,130,162],[232,10,111,151],[92,116,130,162],[43,88,191,221],[202,54,87,127],[253,153,130,162],[219,253,129,162],[172,226,31,71],[77,188,247,229],[122,32,130,162],[14,135,39,47],[185,99,130,162],[24,73,130,162],[111,165,207,13],[79,82,233,34],[120,110,130,162],[217,143,130,162],[174,44,17,10],[26,211,130,162],[109,247,224,74],[12,21,57,242],[187,185,130,162],[157,93,130,162],[234,128,129,218],[139,155,153,114],[60,63,130,162],[200,232,73,194],[255,3,130,162],[94,42,130,162],[41,198,177,154],[162,50,59,177],[245,141,130,162],[148,112,130,162],[67,76,211,139],[215,179,130,162],[0,23,3,201],[97,245,234,99],[54,217,130,162],[80,61,130,162],[135,161,163,91],[230,122,75,1],[177,95,130,162],[37,200,155,51],[114,36,130,162],[19,10,130,162],[196,230,115,25],[238,139,130,162],[153,48,215,120],[56,78,63,212],[143,114,130,162],[251,24,239,160],[204,181,130,162],[45,215,130,162],[90,243,6,188],[124,159,79,4],[75,59,130,162],[170,97,130,162],[221,124,167,40],[105,38,130,162],[30,202,119,236],[191,228,159,80],[8,8,130,162],[131,108,130,162],[84,80,13,251],[181,46,229,97],[226,145,130,162],[118,249,52,19],[33,213,130,162],[192,183,130,162],[23,19,221,57],[241,126,149,145],[166,91,130,162],[71,65,130,162],[144,157,125,171],[4,6,130,162],[211,234,173,105],[50,196,69,195],[101,40,130,162],[69,203,130,162],[146,239,106,110],[243,12,131,206],[164,177,130,162],[48,90,83,134],[103,118,130,162],[6,152,130,162],[209,52,187,166],[183,224,243,30],[224,251,129,162],[129,34,130,162],[86,190,27,62],[194,101,130,162],[21,137,203,246],[116,163,35,86],[35,71,130,162],[168,171,130,162],[223,14,185,231],[126,237,96,69],[73,209,130,162],[189,58,145,15],[10,150,130,162],[107,120,130,162],[28,84,105,45],[58,192,49,149],[141,28,130,162],[236,1,130,162],[155,222,201,183],[47,69,130,162],[88,169,25,125],[249,130,1,224],[206,103,130,162],[184,14,130,162],[15,178,175,143],[110,204,71,173],[25,240,129,162],[173,151,151,103],[218,50,130,162],[123,89,130,162],[76,117,127,197],[42,33,55,253],[93,189,130,162],[252,222,130,162],[203,251,222,95],[63,164,130,162],[136,72,15,21],[233,101,231,55],[158,138,130,162],[53,238,129,162],[98,210,117,6],[3,172,157,38],[212,16,130,162],[64,119,77,238],[151,83,130,162],[246,56,130,162],[161,149,165,78],[199,1,237,118],[16,221,130,162],[113,191,130,162],[38,27,5,214],[178,132,130,162],[229,103,213,158],[132,70,61,190],[83,170,130,162],[115,77,130,162],[36,113,19,147],[197,139,251,185],[18,47,130,162],[134,216,43,123],[81,244,129,162],[176,26,130,162],[231,181,195,225],[1,98,139,233],[214,126,130,162],[55,160,130,162],[96,60,99,67],[244,226,130,162],[163,7,179,17],[66,37,91,43],[149,201,130,162],[254,44,130,162],[201,145,209,32],[40,107,41,60],[95,79,130,162],[235,183,249,248],[156,20,130,162],[61,250,129,162],[138,214,33,84],[108,66,89,108],[27,158,130,162],[186,128,130,162],[13,92,193,208],[121,195,130,162],[78,39,113,132],[175,5,137,168],[216,232,130,162],[210,143,37,73],[5,43,130,162],[100,81,130,162],[51,109,205,227],[167,22,130,162],[240,185,29,49],[145,212,245,11],[70,248,129,162],[32,156,130,162],[119,64,189,179],[22,94,85,153],[193,130,130,162],[85,41,133,219],[130,197,130,162],[227,230,130,162],[180,3,109,129],[31,111,255,202],[104,75,130,162],[9,49,130,162],[190,141,23,114],[74,246,129,162],[125,218,199,162],[220,179,47,138],[171,24,130,162],[205,124,130,162],[250,95,103,66],[91,62,143,26],[44,162,130,162],[152,9,95,90],[239,228,130,162],[142,199,130,162],[57,35,183,242],[89,208,161,93],[46,236,129,162],[207,18,130,162],[248,173,121,255],[140,85,130,162],[59,121,169,53],[154,147,81,23],[237,54,130,162],[11,219,130,162],[188,255,8,175],[29,29,241,141],[106,193,130,162],[222,105,65,199],[169,134,130,162],[72,168,130,162],[127,68,217,101],[20,176,67,216],[195,12,130,162],[34,242,129,162],[117,206,171,116],[225,52,130,162],[182,153,123,192],[87,115,147,156],[128,87,130,162],[102,187,130,162],[49,31,219,36],[208,253,50,8],[7,225,130,162],[147,74,227,76],[68,166,130,162],[165,136,130,162],[242,99,11,240],[228,16,93,64],[179,173,130,162],[82,207,130,162],[133,235,180,28],[17,148,130,162],[198,56,101,88],[39,86,141,244],[112,122,130,162],[150,30,130,162],[65,194,197,204],[160,220,45,112],[247,255,129,162],[99,167,253,164],[52,67,130,162],[213,105,130,162],[2,133,21,136],[137,241,134,181],[62,205,130,162],[159,175,130,162],[232,10,111,151],[92,116,130,162],[43,88,191,221],[202,54,87,127],[253,153,130,162],[219,253,129,162],[172,226,31,71],[77,188,247,229],[122,32,130,162],[14,135,39,47],[185,99,130,162],[24,73,130,162],[111,165,207,13],[79,82,233,34],[120,110,130,162],[217,143,130,162],[174,44,17,10],[26,211,130,162],[109,247,224,74],[12,21,57,242],[187,185,130,162],[157,93,130,162],[234,128,129,218],[139,155,153,114],[60,63,130,162],[200,232,73,194],[255,3,130,162],[94,42,130,162],[41,198,177,154],[162,50,59,177],[245,141,130,162],[148,112,130,162],[67,76,211,139],[215,179,130,162],[0,23,3,201],[97,245,234,99],[54,217,130,162],[80,61,130,162],[135,161,163,91],[230,122,75,1],[177,95,130,162],[37,200,155,51],[114,36,130,162],[19,10,130,162],[196,230,115,25],[238,139,130,162],[153,48,215,120],[56,78,63,212],[143,114,130,162],[251,24,239,160],[204,181,130,162],[45,215,130,162],[90,243,6,188],[124,159,79,4],[75,59,130,162],[170,97,130,162],[221,124,167,40],[105,38,130,162],[30,202,119,236],[191,228,159,80],[8,8,130,162],[131,108,130,162],[84,80,13,251],[181,46,229,97],[226,145,130,162],[118,249,52,19],[33,213,130,162],[192,183,130,162],[23,19,221,57],[241,126,149,145],[166,91,130,162],[71,65,130,162],[144,157,125,171],[4,6,130,162],[211,234,173,105],[50,196,69,195],[101,40,130,162],[69,203,130,162],[146,239,106,110],[243,12,131,206],[164,177,130,162],[48,90,83,134],[103,118,130,162],[6,152,130,162],[209,52,187,166],[183,224,243,30],[224,251,129,162],[129,34,130,162],[86,190,27,62],[194,101,130,162],[21,137,203,246],[116,163,35,86],[35,71,130,162],[168,171,130,162],[223,14,185,231],[126,237,96,69],[73,209,130,162],[189,58,145,15],[10,150,130,162],[107,120,130,162],[28,84,105,45],[58,192,49,149],[141,28,130,162],[236,1,130,162],[155,222,201,183],[47,69,130,162],[88,169,25,125],[249,130,1,224],[206,103,130,162],[184,14,130,162],[15,178,175,143],[110,204,71,173],[25,240,129,162],[173,151,151,103],[218,50,130,162],[123,89,130,162],[76,117,127,197],[42,33,55,253],[93,189,130,162],[252,222,130,162],[203,251,222,95],[63,164,130,162],[136,72,15,21],[233,101,231,55],[158,138,130,162],[53,238,129,162],[98,210,117,6],[3,172,157,38],[212,16,130,162],[64,119,77,238],[151,83,130,162],[246,56,130,162],[161,149,165,78],[199,1,237,118],[16,221,130,162],[113,191,130,162],[38,27,5,214],[178,132,130,162],[229,103,213,158],[132,70,61,190],[83,170,130,162],[115,77,130,162],[36,113,19,147],[197,139,251,185],[18,47,130,162],[134,216,43,123],[81,244,129,162],[176,26,130,162],[231,181,195,225],[1,98,139,233],[214,126,130,162],[55,160,130,162],[96,60,99,67],[244,226,130,162],[163,7,179,17],[66,37,91,43],[149,201,130,162],[254,44,130,162],[201,145,209,32],[40,107,41,60],[95,79,130,162],[235,183,249,248],[156,20,130,162],[61,250,129,162],[138,214,33,84],[108,66,89,108],[27,158,130,162],[186,128,130,162],[13,92,193,208],[121,195,130,162],[78,39,113,132],[175,5,137,168],[216,232,130,162],[210,143,37,73],[5,43,130,162],[100,81,130,162],[51,109,205,227],[167,22,130,162],[240,185,29,49],[145,212,245,11],[70,248,129,162],[32,156,130,162],[119,64,189,179],[22,94,85,153],[193,130,130,162],[85,41,133,219],[130,197,130,162],[227,230,130,162],[180,3,109,129],[31,111,255,202],[104,75,130,162],[9,49,130,162],[190,141,23,114],[74,246,129,162],[125,218,199,162],[220,179,47,138],[171,24,130,162],[205,124,130,162],[250,95,103,66],[91,62,143,26],[44,162,130,162],[152,9,95,90],[239,228,130,162],[142,199,130,162],[57,35,183,242],[89,208,161,93],[46,236,129,162],[207,18,130,162],[248,173,121,255],[140,85,130,162],[59,121,169,53],[154,147,81,23],[237,54,130,162],[11,219,130,162],[188,255,8,175],[29,29,241,141],[106,193,130,162],[222,105,65,199],[169,134,130,162],[72,168,130,162],[127,68,217,101],[20,176,67,216],[195,12,130,162],[34,242,129,162],[117,206,171,116],[225,52,130,162],[182,153,123,192],[87,115,147,156],[128,87,130,162],[102,187,130,162],[49,31,219,36],[208,253,50,8],[7,225,130,162],[147,74,227,76],[68,166,130,162],[165,136,130,162],[242,99,11,240],[228,16,93,64],[179,173,130,162],[82,207,130,162],[133,235,180,28],[17,148,130,162],[198,56,101,88],[39,86,141,244],[112,122,130,162],[150,30,130,162],[65,194,197,204],[160,220,45,112],[247,255,129,162],[99,167,253,164],[52,67,130,162],[213,105,130,162],[2,133,21,136],[137,241,134,181],[62,205,130,162],[159,175,130,162],[232,10,111,151],[92,116,130,162],[43,88,191,221],[202,54,87,127],[253,153,130,162],[219,253,129,162],[172,226,31,71],[77,188,247,229],[122,32,130,162],[14,135,39,47],[185,99,130,162],[24,73,130,162],[111,165,207,13],[79,82,233,34],[120,110,130,162],[217,143,130,162],[174,44,17,10],[26,211,130,162],[109,247,224,74],[12,21,57,242],[187,185,130,162],[157,93,130,162],[234,128,129,218],[139,155,153,114],[60,63,130,162],[200,232,73,194],[255,3,130,162],[94,42,130,162],[41,198,177,154],[162,50,59,177],[245,141,130,162],[148,112,130,162],[67,76,211,139],[215,179,130,162],[0,23,3,201],[97,245,234,99],[54,217,130,162],[80,61,130,162],[135,161,163,91],[230,122,75,1],[177,95,130,162],[37,200,155,51],[114,36,130,162],[19,10,130,162],[196,230,115,25],[238,139,130,162],[153,48,215,120],[56,78,63,212],[143,114,130,162],[251,24,239,160],[204,181,130,162],[45,215,130,162],[90,243,6,188],[124,159,79,4],[75,59,130,162],[170,97,130,162],[221,124,167,40],[105,38,130,162],[30,202,119,236],[191,228,159,80],[8,8,130,162],[131,108,130,162],[84,80,13,251],[181,46,229,97],[226,145,130,162],[118,249,52,19],[33,213,130,162],[192,183,130,162],[23,19,221,57],[241,126,149,145],[166,91,130,162],[71,65,130,162],[144,157,125,171],[4,6,130,162],[211,234,173,105],[50,196,69,195],[101,40,130,162],[69,203,130,162],[146,239,106,110],[243,12,131,206],[164,177,130,162],[48,90,83,134],[103,118,130,162],[6,152,130,162],[209,52,187,166],[183,224,243,30],[224,251,129,162],[129,34,130,162],[86,190,27,62],[194,101,130,162],[21,137,203,246],[116,163,35,86],[35,71,130,162],[168,171,130,162],[223,14,185,231],[126,237,96,69],[73,209,130,162],[189,58,145,15],[10,150,130,162],[107,120,130,162],[28,84,105,45],[58,192,49,149],[141,28,130,162],[236,1,130,162],[155,222,201,183],[47,69,130,162],[88,169,25,125],[249,130,1,224],[206,103,130,162],[184,14,130,162],[15,178,175,143],[110,204,71,173],[25,240,129,162],[173,151,151,103],[218,50,130,162],[123,89,130,162],[76,117,127,197],[42,33,55,253],[93,189,130,162],[252,222,130,162],[203,251,222,95],[63,164,130,162],[136,72,15,21],[233,101,231,55],[158,138,130,162],[53,238,129,162],[98,210,117,6],[3,172,157,38],[212,16,130,162],[64,119,77,238],[151,83,130,162],[246,56,130,162],[161,149,165,78],[199,1,237,118],[16,221,130,162],[113,191,130,162],[38,27,5,214],[178,132,130,162],[229,103,213,158],[132,70,61,190],[83,170,130,162],[115,77,130,162],[36,113,19,147],[197,139,251,185],[18,47,130,162],[134,216,43,123],[81,244,129,162],[176,26,130,162],[231,181,195,225],[1,98,139,233],[214,126,130,162],[55,160,130,162],[96,60,99,67],[244,226,130,162],[163,7,179,17],[66,37,91,43],[149,201,130,162],[254,44,130,162],[201,145,209,32],[40,107,41,60],[95,79,130,162],[235,183,249,248],[156,20,130,162],[61,250,129,162],[138,214,33,84],[108,66,89,108],[27,158,130,162],[186,128,130,162],[13,92,193,208],[121,195,130,162],[78,39,113,132],[175,5,137,168],[216,232,130,162],[210,143,37,73],[5,43,130,162],[100,81,130,162],[51,109,205,227],[167,22,130,162],[240,185,29,49],[145,212,245,11],[70,248,129,162],[32,156,130,162],[119,64,189,179],[22,94,85,153],[193,130,130,162],[85,41,133,219],[130,197,130,162],[227,230,130,162],[180,3,109,129],[31,111,255,202],[104,75,130,162],[9,49,130,162],[190,141,23,114],[74,246,129,162],[125,218,199,162],[220,179,47,138],[171,24,130,162],[205,124,130,162],[250,95,103,66],[91,62,143,26],[44,162,130,162],[152,9,95,90],[239,228,130,162],[142,199,130,162],[57,35,183,242],[89,208,161,93],[46,236,129,162],[207,18,130,162],[248,173,121,255],[140,85,130,162],[59,121,169,53],[154,147,81,23],[237,54,130,162],[11,219,130,162],[188,255,8,175],[29,29,241,141],[106,193,130,162],[222,105,65,199],[169,134,130,162],[72,168,130,162],[127,68,217,101],[20,176,67,216],[195,12,130,162],[34,242,129,162],[117,206,171,116],[225,52,130,162],[182,153,123,192],[87,115,147,156],[128,87,130,162],[102,187,130,162],[49,31,219,36],[208,253,50,8],[7,225,130,162],[147,74,227,76],[68,166,130,162],[165,136,130,162],[242,99,11,240],[228,16,93,64],[179,173,130,162],[82,207,130,162],[133,235,180,28],[17,148,130,162],[198,56,101,88],[39,86,141,244],[112,122,130,162],[150,30,130,162],[65,194,197,204],[160,220,45,112],[247,255,129,162],[99,167,253,164],[52,67,130,162],[213,105,130,162],[2,133,21,136],[137,241,134,181],[62,205,130,162],[159,175,130,162],[232,10,111,151],[92,116,130,162],[43,88,191,221],[202,54,87,127],[253,153,130,162],[219,253,129,162],[172,226,31,71],[77,188,247,229],[122,32,130,162],[14,135,39,47],[185,99,130,162],[24,73,130,162],[111,165,207,13],[79,82,233,34],[120,110,130,162],[217,143,130,162],[174,44,17,10],[26,211,130,162],[109,247,224,74],[12,21,57,242],[187,185,130,162],[157,93,130,162],[234,128,129,218],[139,155,153,114],[60,63,130,162],[200,232,73,194],[255,3,130,162],[94,42,130,162],[41,198,177,154],[162,50,59,177],[245,141,130,162],[148,112,130,162],[67,76,211,139],[215,179,130,162],[0,23,3,201],[97,245,234,99],[54,217,130,162],[80,61,130,162],[135,161,163,91],[230,122,75,1],[177,95,130,162],[37,200,155,51],[114,36,130,162],[19,10,130,162],[196,230,115,25],[238,139,130,162],[153,48,215,120],[56,78,63,212],[143,114,130,162],[251,24,239,160],[204,181,130,162],[45,215,130,162],[90,243,6,188],[124,159,79,4],[75,59,130,162],[170,97,130,162],[221,124,167,40],[105,38,130,162],[30,202,119,236],[191,228,159,80],[8,8,130,162],[131,108,130,162],[84,80,13,251],[181,46,229,97],[226,145,130,162],[118,249,52,19],[33,213,130,162],[192,183,130,162],[23,19,221,57],[241,126,149,145],[166,91,130,162],[71,65,130,162],[144,157,125,171],[4,6,130,162],[211,234,173,105],[50,196,69,195],[101,40,130,162],[69,203,130,162],[146,239,106,110],[243,12,131,206],[164,177,130,162],[48,90,83,134],[103,118,130,162],[6,152,130,162],[209,52,187,166],[183,224,243,30],[224,251,129,162],[129,34,130,162],[86,190,27,62],[194,101,130,162],[21,137,203,246],[116,163,35,86],[35,71,130,162],[168,171,130,162],[223,14,185,231],[126,237,96,69],[73,209,130,162],[189,58,145,15],[10,150,130,162],[107,120,130,162],[28,84,105,45],[58,192,49,149],[141,28,130,162],[236,1,130,162],[155,222,201,183],[47,69,130,162],[88,169,25,125],[249,130,1,224],[206,103,130,162],[184,14,130,162],[15,178,175,143],[110,204,71,173],[25,240,129,162],[173,151,151,103],[218,50,130,162],[123,89,130,162],[76,117,127,197],[42,33,55,253],[93,189,130,162],[252,222,130,162],[203,251,222,95],[63,164,130,162],[136,72,15,21],[233,101,231,55],[158,138,130,162],[53,238,129,162],[98,210,117,6],[3,172,157,38],[212,16,130,162],[64,119,77,238],[151,83,130,162],[246,56,130,162],[161,149,165,78],[199,1,237,118],[16,221,130,162],[113,191,130,162],[38,27,5,214],[178,132,130,162],[229,103,213,158],[132,70,61,190],[83,170,130,162],[115,77,130,162],[36,113,19,147],[197,139,251,185],[18,47,130,162],[134,216,43,123],[81,244,129,162],[176,26,130,162],[231,181,195,225]] \ No newline at end of file +[[210,143,37,73],[5,43,40,67],[100,81,208,233],[51,109,205,227],[167,22,32,43],[240,185,29,49],[145,212,245,11],[70,248,247,17],[32,156,192,185],[119,64,189,179],[22,94,85,153],[193,130,88,147],[85,41,133,219],[130,197,136,225],[227,230,112,123],[180,3,109,129],[31,111,255,202],[104,75,254,208],[9,49,22,108],[190,141,23,114],[74,246,197,168],[125,218,199,162],[220,179,47,138],[171,24,46,132],[205,124,102,60],[250,95,103,66],[91,62,143,26],[44,162,142,32],[152,9,95,90],[239,228,94,84],[142,199,182,248],[57,35,183,242],[89,208,161,93],[46,236,155,95],[207,18,116,253],[248,173,121,255],[140,85,164,55],[59,121,169,53],[154,147,81,23],[237,54,76,21],[11,219,4,173],[188,255,8,175],[29,29,241,141],[106,193,236,143],[222,105,65,199],[169,134,60,197],[72,168,212,103],[127,68,217,101],[20,176,67,216],[195,12,74,214],[34,242,177,118],[117,206,171,116],[225,52,130,190],[182,153,123,192],[87,115,147,156],[128,87,154,158],[102,187,226,38],[49,31,219,36],[208,253,50,8],[7,225,58,6],[147,74,227,76],[68,166,234,78],[165,136,18,238],[242,99,11,240],[228,16,93,64],[179,173,96,62],[82,207,184,30],[133,235,180,28],[17,148,104,86],[198,56,101,88],[39,86,141,244],[112,122,144,246],[150,30,200,206],[65,194,197,204],[160,220,45,112],[247,255,47,110],[99,167,253,164],[52,67,0,167],[213,105,24,134],[2,133,21,136],[137,241,134,181],[62,205,134,183],[159,175,110,149],[232,10,111,151],[92,116,190,223],[43,88,191,221],[202,54,87,127],[253,153,86,125],[219,253,29,69],[172,226,31,71],[77,188,247,229],[122,32,246,231],[14,135,39,47],[185,99,38,45],[24,73,206,15],[111,165,207,13],[79,82,233,34],[120,110,228,40],[217,143,12,4],[174,44,17,10],[26,211,220,80],[109,247,224,74],[12,21,57,242],[187,185,52,236],[157,93,124,212],[234,128,129,218],[139,155,153,114],[60,63,148,120],[200,232,73,194],[255,3,68,188],[94,42,172,160],[41,198,177,154],[162,50,59,177],[245,141,66,171],[148,112,218,145],[67,76,211,139],[215,179,10,195],[0,23,3,201],[97,245,234,99],[54,217,242,105],[80,61,170,97],[135,161,163,91],[230,122,75,1],[177,95,82,251],[37,200,155,51],[114,36,162,57],[19,10,122,19],[196,230,115,25],[238,139,214,114],[153,48,215,120],[56,78,63,212],[143,114,62,218],[251,24,239,160],[204,181,238,154],[45,215,6,194],[90,243,6,188],[124,159,79,4],[75,59,78,10],[170,97,166,34],[221,124,167,40],[105,38,118,242],[30,202,119,236],[191,228,159,80],[8,8,158,74],[131,108,16,1],[84,80,13,251],[181,46,229,97],[226,145,232,91],[118,249,52,19],[33,213,56,25],[192,183,224,51],[23,19,221,57],[241,126,149,145],[166,91,152,139],[71,65,128,177],[144,157,125,171],[4,6,176,99],[211,234,173,105],[50,196,69,195],[101,40,72,201],[69,203,114,112],[146,239,106,110],[243,12,131,206],[164,177,138,204],[48,90,83,134],[103,118,90,136],[6,152,194,164],[209,52,187,166],[183,224,243,30],[224,251,249,28],[129,34,34,64],[86,190,27,62],[194,101,210,244],[21,137,203,246],[116,163,35,86],[35,71,42,88],[168,171,180,229],[223,14,185,231],[126,237,96,69],[73,209,92,71],[189,58,145,15],[10,150,140,13],[107,120,100,47],[28,84,105,45],[58,192,49,149],[141,28,44,151],[236,1,196,181],[155,222,201,183],[47,69,20,127],[88,169,25,125],[249,130,1,224],[206,103,252,221],[184,14,174,141],[15,178,175,143],[110,204,71,173],[25,240,69,175],[173,151,151,103],[218,50,150,101],[123,89,126,199],[76,117,127,197],[42,33,55,253],[93,189,54,255],[252,222,222,93],[203,251,222,95],[63,164,14,23],[136,72,15,21],[233,101,231,55],[158,138,230,53],[53,238,119,8],[98,210,117,6],[3,172,157,38],[212,16,160,36],[64,119,77,238],[151,83,80,240],[246,56,168,76],[161,149,165,78],[199,1,237,118],[16,221,240,116],[113,191,8,216],[38,27,5,214],[178,132,216,156],[229,103,213,158],[132,70,61,190],[83,170,64,192],[115,77,26,153],[36,113,19,147],[197,139,251,185],[18,47,2,180],[134,216,43,123],[81,244,49,129],[176,26,202,219],[231,181,195,225],[1,98,139,233],[214,126,146,227],[55,160,106,73],[96,60,99,67],[244,226,186,11],[163,7,179,17],[66,37,91,43],[149,201,98,49],[254,44,204,26],[201,145,209,32],[40,107,41,60],[95,79,36,66],[235,183,249,248],[156,20,244,242],[61,250,27,90],[138,214,33,84],[108,66,89,108],[27,158,84,114],[186,128,188,202],[13,92,193,208],[121,195,108,138],[78,39,113,132],[175,5,137,168],[216,232,132,162],[210,143,37,73],[5,43,40,67],[100,81,208,233],[51,109,205,227],[167,22,32,43],[240,185,29,49],[145,212,245,11],[70,248,247,17],[32,156,192,185],[119,64,189,179],[22,94,85,153],[193,130,88,147],[85,41,133,219],[130,197,136,225],[227,230,112,123],[180,3,109,129],[31,111,255,202],[104,75,254,208],[9,49,22,108],[190,141,23,114],[74,246,197,168],[125,218,199,162],[220,179,47,138],[171,24,46,132],[205,124,102,60],[250,95,103,66],[91,62,143,26],[44,162,142,32],[152,9,95,90],[239,228,94,84],[142,199,182,248],[57,35,183,242],[89,208,161,93],[46,236,155,95],[207,18,116,253],[248,173,121,255],[140,85,164,55],[59,121,169,53],[154,147,81,23],[237,54,76,21],[11,219,4,173],[188,255,8,175],[29,29,241,141],[106,193,236,143],[222,105,65,199],[169,134,60,197],[72,168,212,103],[127,68,217,101],[20,176,67,216],[195,12,74,214],[34,242,177,118],[117,206,171,116],[225,52,130,190],[182,153,123,192],[87,115,147,156],[128,87,154,158],[102,187,226,38],[49,31,219,36],[208,253,50,8],[7,225,58,6],[147,74,227,76],[68,166,234,78],[165,136,18,238],[242,99,11,240],[228,16,93,64],[179,173,96,62],[82,207,184,30],[133,235,180,28],[17,148,104,86],[198,56,101,88],[39,86,141,244],[112,122,144,246],[150,30,200,206],[65,194,197,204],[160,220,45,112],[247,255,47,110],[99,167,253,164],[52,67,0,167],[213,105,24,134],[2,133,21,136],[137,241,134,181],[62,205,134,183],[159,175,110,149],[232,10,111,151],[92,116,190,223],[43,88,191,221],[202,54,87,127],[253,153,86,125],[219,253,29,69],[172,226,31,71],[77,188,247,229],[122,32,246,231],[14,135,39,47],[185,99,38,45],[24,73,206,15],[111,165,207,13],[79,82,233,34],[120,110,228,40],[217,143,12,4],[174,44,17,10],[26,211,220,80],[109,247,224,74],[12,21,57,242],[187,185,52,236],[157,93,124,212],[234,128,129,218],[139,155,153,114],[60,63,148,120],[200,232,73,194],[255,3,68,188],[94,42,172,160],[41,198,177,154],[162,50,59,177],[245,141,66,171],[148,112,218,145],[67,76,211,139],[215,179,10,195],[0,23,3,201],[97,245,234,99],[54,217,242,105],[80,61,170,97],[135,161,163,91],[230,122,75,1],[177,95,82,251],[37,200,155,51],[114,36,162,57],[19,10,122,19],[196,230,115,25],[238,139,214,114],[153,48,215,120],[56,78,63,212],[143,114,62,218],[251,24,239,160],[204,181,238,154],[45,215,6,194],[90,243,6,188],[124,159,79,4],[75,59,78,10],[170,97,166,34],[221,124,167,40],[105,38,118,242],[30,202,119,236],[191,228,159,80],[8,8,158,74],[131,108,16,1],[84,80,13,251],[181,46,229,97],[226,145,232,91],[118,249,52,19],[33,213,56,25],[192,183,224,51],[23,19,221,57],[241,126,149,145],[166,91,152,139],[71,65,128,177],[144,157,125,171],[4,6,176,99],[211,234,173,105],[50,196,69,195],[101,40,72,201],[69,203,114,112],[146,239,106,110],[243,12,131,206],[164,177,138,204],[48,90,83,134],[103,118,90,136],[6,152,194,164],[209,52,187,166],[183,224,243,30],[224,251,249,28],[129,34,34,64],[86,190,27,62],[194,101,210,244],[21,137,203,246],[116,163,35,86],[35,71,42,88],[168,171,180,229],[223,14,185,231],[126,237,96,69],[73,209,92,71],[189,58,145,15],[10,150,140,13],[107,120,100,47],[28,84,105,45],[58,192,49,149],[141,28,44,151],[236,1,196,181],[155,222,201,183],[47,69,20,127],[88,169,25,125],[249,130,1,224],[206,103,252,221],[184,14,174,141],[15,178,175,143],[110,204,71,173],[25,240,69,175],[173,151,151,103],[218,50,150,101],[123,89,126,199],[76,117,127,197],[42,33,55,253],[93,189,54,255],[252,222,222,93],[203,251,222,95],[63,164,14,23],[136,72,15,21],[233,101,231,55],[158,138,230,53],[53,238,119,8],[98,210,117,6],[3,172,157,38],[212,16,160,36],[64,119,77,238],[151,83,80,240],[246,56,168,76],[161,149,165,78],[199,1,237,118],[16,221,240,116],[113,191,8,216],[38,27,5,214],[178,132,216,156],[229,103,213,158],[132,70,61,190],[83,170,64,192],[115,77,26,153],[36,113,19,147],[197,139,251,185],[18,47,2,180],[134,216,43,123],[81,244,49,129],[176,26,202,219],[231,181,195,225],[1,98,139,233],[214,126,146,227],[55,160,106,73],[96,60,99,67],[244,226,186,11],[163,7,179,17],[66,37,91,43],[149,201,98,49],[254,44,204,26],[201,145,209,32],[40,107,41,60],[95,79,36,66],[235,183,249,248],[156,20,244,242],[61,250,27,90],[138,214,33,84],[108,66,89,108],[27,158,84,114],[186,128,188,202],[13,92,193,208],[121,195,108,138],[78,39,113,132],[175,5,137,168],[216,232,132,162],[210,143,37,73],[5,43,40,67],[100,81,208,233],[51,109,205,227],[167,22,32,43],[240,185,29,49],[145,212,245,11],[70,248,247,17],[32,156,192,185],[119,64,189,179],[22,94,85,153],[193,130,88,147],[85,41,133,219],[130,197,136,225],[227,230,112,123],[180,3,109,129],[31,111,255,202],[104,75,254,208],[9,49,22,108],[190,141,23,114],[74,246,197,168],[125,218,199,162],[220,179,47,138],[171,24,46,132],[205,124,102,60],[250,95,103,66],[91,62,143,26],[44,162,142,32],[152,9,95,90],[239,228,94,84],[142,199,182,248],[57,35,183,242],[89,208,161,93],[46,236,155,95],[207,18,116,253],[248,173,121,255],[140,85,164,55],[59,121,169,53],[154,147,81,23],[237,54,76,21],[11,219,4,173],[188,255,8,175],[29,29,241,141],[106,193,236,143],[222,105,65,199],[169,134,60,197],[72,168,212,103],[127,68,217,101],[20,176,67,216],[195,12,74,214],[34,242,177,118],[117,206,171,116],[225,52,130,190],[182,153,123,192],[87,115,147,156],[128,87,154,158],[102,187,226,38],[49,31,219,36],[208,253,50,8],[7,225,58,6],[147,74,227,76],[68,166,234,78],[165,136,18,238],[242,99,11,240],[228,16,93,64],[179,173,96,62],[82,207,184,30],[133,235,180,28],[17,148,104,86],[198,56,101,88],[39,86,141,244],[112,122,144,246],[150,30,200,206],[65,194,197,204],[160,220,45,112],[247,255,47,110],[99,167,253,164],[52,67,0,167],[213,105,24,134],[2,133,21,136],[137,241,134,181],[62,205,134,183],[159,175,110,149],[232,10,111,151],[92,116,190,223],[43,88,191,221],[202,54,87,127],[253,153,86,125],[219,253,29,69],[172,226,31,71],[77,188,247,229],[122,32,246,231],[14,135,39,47],[185,99,38,45],[24,73,206,15],[111,165,207,13],[79,82,233,34],[120,110,228,40],[217,143,12,4],[174,44,17,10],[26,211,220,80],[109,247,224,74],[12,21,57,242],[187,185,52,236],[157,93,124,212],[234,128,129,218],[139,155,153,114],[60,63,148,120],[200,232,73,194],[255,3,68,188],[94,42,172,160],[41,198,177,154],[162,50,59,177],[245,141,66,171],[148,112,218,145],[67,76,211,139],[215,179,10,195],[0,23,3,201],[97,245,234,99],[54,217,242,105],[80,61,170,97],[135,161,163,91],[230,122,75,1],[177,95,82,251],[37,200,155,51],[114,36,162,57],[19,10,122,19],[196,230,115,25],[238,139,214,114],[153,48,215,120],[56,78,63,212],[143,114,62,218],[251,24,239,160],[204,181,238,154],[45,215,6,194],[90,243,6,188],[124,159,79,4],[75,59,78,10],[170,97,166,34],[221,124,167,40],[105,38,118,242],[30,202,119,236],[191,228,159,80],[8,8,158,74],[131,108,16,1],[84,80,13,251],[181,46,229,97],[226,145,232,91],[118,249,52,19],[33,213,56,25],[192,183,224,51],[23,19,221,57],[241,126,149,145],[166,91,152,139],[71,65,128,177],[144,157,125,171],[4,6,176,99],[211,234,173,105],[50,196,69,195],[101,40,72,201],[69,203,114,112],[146,239,106,110],[243,12,131,206],[164,177,138,204],[48,90,83,134],[103,118,90,136],[6,152,194,164],[209,52,187,166],[183,224,243,30],[224,251,249,28],[129,34,34,64],[86,190,27,62],[194,101,210,244],[21,137,203,246],[116,163,35,86],[35,71,42,88],[168,171,180,229],[223,14,185,231],[126,237,96,69],[73,209,92,71],[189,58,145,15],[10,150,140,13],[107,120,100,47],[28,84,105,45],[58,192,49,149],[141,28,44,151],[236,1,196,181],[155,222,201,183],[47,69,20,127],[88,169,25,125],[249,130,1,224],[206,103,252,221],[184,14,174,141],[15,178,175,143],[110,204,71,173],[25,240,69,175],[173,151,151,103],[218,50,150,101],[123,89,126,199],[76,117,127,197],[42,33,55,253],[93,189,54,255],[252,222,222,93],[203,251,222,95],[63,164,14,23],[136,72,15,21],[233,101,231,55],[158,138,230,53],[53,238,119,8],[98,210,117,6],[3,172,157,38],[212,16,160,36],[64,119,77,238],[151,83,80,240],[246,56,168,76],[161,149,165,78],[199,1,237,118],[16,221,240,116],[113,191,8,216],[38,27,5,214],[178,132,216,156],[229,103,213,158],[132,70,61,190],[83,170,64,192],[115,77,26,153],[36,113,19,147],[197,139,251,185],[18,47,2,180],[134,216,43,123],[81,244,49,129],[176,26,202,219],[231,181,195,225],[1,98,139,233],[214,126,146,227],[55,160,106,73],[96,60,99,67],[244,226,186,11],[163,7,179,17],[66,37,91,43],[149,201,98,49],[254,44,204,26],[201,145,209,32],[40,107,41,60],[95,79,36,66],[235,183,249,248],[156,20,244,242],[61,250,27,90],[138,214,33,84],[108,66,89,108],[27,158,84,114],[186,128,188,202],[13,92,193,208],[121,195,108,138],[78,39,113,132],[175,5,137,168],[216,232,132,162],[210,143,37,73],[5,43,40,67],[100,81,208,233],[51,109,205,227],[167,22,32,43],[240,185,29,49],[145,212,245,11],[70,248,247,17],[32,156,192,185],[119,64,189,179],[22,94,85,153],[193,130,88,147],[85,41,133,219],[130,197,136,225],[227,230,112,123],[180,3,109,129],[31,111,255,202],[104,75,254,208],[9,49,22,108],[190,141,23,114],[74,246,197,168],[125,218,199,162],[220,179,47,138],[171,24,46,132],[205,124,102,60],[250,95,103,66],[91,62,143,26],[44,162,142,32],[152,9,95,90],[239,228,94,84],[142,199,182,248],[57,35,183,242],[89,208,161,93],[46,236,155,95],[207,18,116,253],[248,173,121,255],[140,85,164,55],[59,121,169,53],[154,147,81,23],[237,54,76,21],[11,219,4,173],[188,255,8,175],[29,29,241,141],[106,193,236,143],[222,105,65,199],[169,134,60,197],[72,168,212,103],[127,68,217,101],[20,176,67,216],[195,12,74,214],[34,242,177,118],[117,206,171,116],[225,52,130,190],[182,153,123,192],[87,115,147,156],[128,87,154,158],[102,187,226,38],[49,31,219,36],[208,253,50,8],[7,225,58,6],[147,74,227,76],[68,166,234,78],[165,136,18,238],[242,99,11,240],[228,16,93,64],[179,173,96,62],[82,207,184,30],[133,235,180,28],[17,148,104,86],[198,56,101,88],[39,86,141,244],[112,122,144,246],[150,30,200,206],[65,194,197,204],[160,220,45,112],[247,255,47,110],[99,167,253,164],[52,67,0,167],[213,105,24,134],[2,133,21,136],[137,241,134,181],[62,205,134,183],[159,175,110,149],[232,10,111,151],[92,116,190,223],[43,88,191,221],[202,54,87,127],[253,153,86,125],[219,253,29,69],[172,226,31,71],[77,188,247,229],[122,32,246,231],[14,135,39,47],[185,99,38,45],[24,73,206,15],[111,165,207,13],[79,82,233,34],[120,110,228,40],[217,143,12,4],[174,44,17,10],[26,211,220,80],[109,247,224,74],[12,21,57,242],[187,185,52,236],[157,93,124,212],[234,128,129,218],[139,155,153,114],[60,63,148,120],[200,232,73,194],[255,3,68,188],[94,42,172,160],[41,198,177,154],[162,50,59,177],[245,141,66,171],[148,112,218,145],[67,76,211,139],[215,179,10,195],[0,23,3,201],[97,245,234,99],[54,217,242,105],[80,61,170,97],[135,161,163,91],[230,122,75,1],[177,95,82,251],[37,200,155,51],[114,36,162,57],[19,10,122,19],[196,230,115,25],[238,139,214,114],[153,48,215,120],[56,78,63,212],[143,114,62,218],[251,24,239,160],[204,181,238,154],[45,215,6,194],[90,243,6,188],[124,159,79,4],[75,59,78,10],[170,97,166,34],[221,124,167,40],[105,38,118,242],[30,202,119,236],[191,228,159,80],[8,8,158,74],[131,108,16,1],[84,80,13,251],[181,46,229,97],[226,145,232,91],[118,249,52,19],[33,213,56,25],[192,183,224,51],[23,19,221,57],[241,126,149,145],[166,91,152,139],[71,65,128,177],[144,157,125,171],[4,6,176,99],[211,234,173,105],[50,196,69,195],[101,40,72,201],[69,203,114,112],[146,239,106,110],[243,12,131,206],[164,177,138,204],[48,90,83,134],[103,118,90,136],[6,152,194,164],[209,52,187,166],[183,224,243,30],[224,251,249,28],[129,34,34,64],[86,190,27,62],[194,101,210,244],[21,137,203,246],[116,163,35,86],[35,71,42,88],[168,171,180,229],[223,14,185,231],[126,237,96,69],[73,209,92,71],[189,58,145,15],[10,150,140,13],[107,120,100,47],[28,84,105,45],[58,192,49,149],[141,28,44,151],[236,1,196,181],[155,222,201,183],[47,69,20,127],[88,169,25,125],[249,130,1,224],[206,103,252,221],[184,14,174,141],[15,178,175,143],[110,204,71,173],[25,240,69,175],[173,151,151,103],[218,50,150,101],[123,89,126,199],[76,117,127,197],[42,33,55,253],[93,189,54,255],[252,222,222,93],[203,251,222,95],[63,164,14,23],[136,72,15,21],[233,101,231,55],[158,138,230,53],[53,238,119,8],[98,210,117,6],[3,172,157,38],[212,16,160,36],[64,119,77,238],[151,83,80,240],[246,56,168,76],[161,149,165,78],[199,1,237,118],[16,221,240,116],[113,191,8,216],[38,27,5,214],[178,132,216,156],[229,103,213,158],[132,70,61,190],[83,170,64,192],[115,77,26,153],[36,113,19,147],[197,139,251,185],[18,47,2,180],[134,216,43,123],[81,244,49,129],[176,26,202,219],[231,181,195,225]] \ No newline at end of file