mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
6.8 KiB
Plaintext
1 line
6.8 KiB
Plaintext
{"dependencies":[],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.default = void 0;\n /* eslint-disable */\n\n /**\n * JS Implementation of MurmurHash2\n *\n * @author <a href=\"mailto:gary.court@gmail.com\">Gary Court</a>\n * @see http://github.com/garycourt/murmurhash-js\n * @author <a href=\"mailto:aappleby@gmail.com\">Austin Appleby</a>\n * @see http://sites.google.com/site/murmurhash/\n *\n * @param {string} str ASCII only\n * @param {number} seed Positive integer only\n * @return {number} 32-bit positive integer hash\n *\n * \n */\n\n function murmurhash2_32_gc(str, seed) {\n var l = str.length,\n h = seed ^ l,\n i = 0,\n k;\n while (l >= 4) {\n k = str.charCodeAt(i) & 0xff | (str.charCodeAt(++i) & 0xff) << 8 | (str.charCodeAt(++i) & 0xff) << 16 | (str.charCodeAt(++i) & 0xff) << 24;\n k = (k & 0xffff) * 0x5bd1e995 + (((k >>> 16) * 0x5bd1e995 & 0xffff) << 16);\n k ^= k >>> 24;\n k = (k & 0xffff) * 0x5bd1e995 + (((k >>> 16) * 0x5bd1e995 & 0xffff) << 16);\n h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16) ^ k;\n l -= 4;\n ++i;\n }\n switch (l) {\n case 3:\n h ^= (str.charCodeAt(i + 2) & 0xff) << 16;\n case 2:\n h ^= (str.charCodeAt(i + 1) & 0xff) << 8;\n case 1:\n h ^= str.charCodeAt(i) & 0xff;\n h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16);\n }\n h ^= h >>> 13;\n h = (h & 0xffff) * 0x5bd1e995 + (((h >>> 16) * 0x5bd1e995 & 0xffff) << 16);\n h ^= h >>> 15;\n return h >>> 0;\n }\n var hash = str => murmurhash2_32_gc(str, 1).toString(36);\n var _default = exports.default = hash;\n});","lineCount":53,"map":[[6,2,1,0],[8,2,3,0],[9,0,4,0],[10,0,5,0],[11,0,6,0],[12,0,7,0],[13,0,8,0],[14,0,9,0],[15,0,10,0],[16,0,11,0],[17,0,12,0],[18,0,13,0],[19,0,14,0],[20,0,15,0],[21,0,16,0],[23,2,18,0],[23,11,18,9,"murmurhash2_32_gc"],[23,28,18,26,"murmurhash2_32_gc"],[23,29,18,27,"str"],[23,32,18,30],[23,34,18,32,"seed"],[23,38,18,36],[23,40,18,38],[24,4,19,2],[24,8,19,6,"l"],[24,9,19,7],[24,12,19,10,"str"],[24,15,19,13],[24,16,19,14,"length"],[24,22,19,20],[25,6,20,4,"h"],[25,7,20,5],[25,10,20,8,"seed"],[25,14,20,12],[25,17,20,15,"l"],[25,18,20,16],[26,6,21,4,"i"],[26,7,21,5],[26,10,21,8],[26,11,21,9],[27,6,22,4,"k"],[27,7,22,5],[28,4,23,2],[28,11,23,9,"l"],[28,12,23,10],[28,16,23,14],[28,17,23,15],[28,19,23,17],[29,6,24,4,"k"],[29,7,24,5],[29,10,24,8,"str"],[29,13,24,11],[29,14,24,12,"charCodeAt"],[29,24,24,22],[29,25,24,23,"i"],[29,26,24,24],[29,27,24,25],[29,30,24,28],[29,34,24,32],[29,37,24,35],[29,38,24,36,"str"],[29,41,24,39],[29,42,24,40,"charCodeAt"],[29,52,24,50],[29,53,24,51],[29,55,24,53,"i"],[29,56,24,54],[29,57,24,55],[29,60,24,58],[29,64,24,62],[29,69,24,67],[29,70,24,68],[29,73,24,71],[29,74,24,72,"str"],[29,77,24,75],[29,78,24,76,"charCodeAt"],[29,88,24,86],[29,89,24,87],[29,91,24,89,"i"],[29,92,24,90],[29,93,24,91],[29,96,24,94],[29,100,24,98],[29,105,24,103],[29,107,24,105],[29,110,24,108],[29,111,24,109,"str"],[29,114,24,112],[29,115,24,113,"charCodeAt"],[29,125,24,123],[29,126,24,124],[29,128,24,126,"i"],[29,129,24,127],[29,130,24,128],[29,133,24,131],[29,137,24,135],[29,142,24,140],[29,144,24,142],[30,6,25,4,"k"],[30,7,25,5],[30,10,25,8],[30,11,25,9,"k"],[30,12,25,10],[30,15,25,13],[30,21,25,19],[30,25,25,23],[30,35,25,33],[30,39,25,37],[30,40,25,38],[30,41,25,39,"k"],[30,42,25,40],[30,47,25,45],[30,49,25,47],[30,53,25,51],[30,63,25,61],[30,66,25,64],[30,72,25,70],[30,77,25,75],[30,79,25,77],[30,80,25,78],[31,6,26,4,"k"],[31,7,26,5],[31,11,26,9,"k"],[31,12,26,10],[31,17,26,15],[31,19,26,17],[32,6,27,4,"k"],[32,7,27,5],[32,10,27,8],[32,11,27,9,"k"],[32,12,27,10],[32,15,27,13],[32,21,27,19],[32,25,27,23],[32,35,27,33],[32,39,27,37],[32,40,27,38],[32,41,27,39,"k"],[32,42,27,40],[32,47,27,45],[32,49,27,47],[32,53,27,51],[32,63,27,61],[32,66,27,64],[32,72,27,70],[32,77,27,75],[32,79,27,77],[32,80,27,78],[33,6,28,4,"h"],[33,7,28,5],[33,10,28,8],[33,11,28,9,"h"],[33,12,28,10],[33,15,28,13],[33,21,28,19],[33,25,28,23],[33,35,28,33],[33,39,28,37],[33,40,28,38],[33,41,28,39,"h"],[33,42,28,40],[33,47,28,45],[33,49,28,47],[33,53,28,51],[33,63,28,61],[33,66,28,64],[33,72,28,70],[33,77,28,75],[33,79,28,77],[33,80,28,78],[33,83,28,81,"k"],[33,84,28,82],[34,6,29,4,"l"],[34,7,29,5],[34,11,29,9],[34,12,29,10],[35,6,30,4],[35,8,30,6,"i"],[35,9,30,7],[36,4,31,2],[37,4,32,2],[37,12,32,10,"l"],[37,13,32,11],[38,6,33,4],[38,11,33,9],[38,12,33,10],[39,8,34,6,"h"],[39,9,34,7],[39,13,34,11],[39,14,34,12,"str"],[39,17,34,15],[39,18,34,16,"charCodeAt"],[39,28,34,26],[39,29,34,27,"i"],[39,30,34,28],[39,33,34,31],[39,34,34,32],[39,35,34,33],[39,38,34,36],[39,42,34,40],[39,47,34,45],[39,49,34,47],[40,6,35,4],[40,11,35,9],[40,12,35,10],[41,8,36,6,"h"],[41,9,36,7],[41,13,36,11],[41,14,36,12,"str"],[41,17,36,15],[41,18,36,16,"charCodeAt"],[41,28,36,26],[41,29,36,27,"i"],[41,30,36,28],[41,33,36,31],[41,34,36,32],[41,35,36,33],[41,38,36,36],[41,42,36,40],[41,47,36,45],[41,48,36,46],[42,6,37,4],[42,11,37,9],[42,12,37,10],[43,8,38,6,"h"],[43,9,38,7],[43,13,38,11,"str"],[43,16,38,14],[43,17,38,15,"charCodeAt"],[43,27,38,25],[43,28,38,26,"i"],[43,29,38,27],[43,30,38,28],[43,33,38,31],[43,37,38,35],[44,8,39,6,"h"],[44,9,39,7],[44,12,39,10],[44,13,39,11,"h"],[44,14,39,12],[44,17,39,15],[44,23,39,21],[44,27,39,25],[44,37,39,35],[44,41,39,39],[44,42,39,40],[44,43,39,41,"h"],[44,44,39,42],[44,49,39,47],[44,51,39,49],[44,55,39,53],[44,65,39,63],[44,68,39,66],[44,74,39,72],[44,79,39,77],[44,81,39,79],[44,82,39,80],[45,4,40,2],[46,4,41,2,"h"],[46,5,41,3],[46,9,41,7,"h"],[46,10,41,8],[46,15,41,13],[46,17,41,15],[47,4,42,2,"h"],[47,5,42,3],[47,8,42,6],[47,9,42,7,"h"],[47,10,42,8],[47,13,42,11],[47,19,42,17],[47,23,42,21],[47,33,42,31],[47,37,42,35],[47,38,42,36],[47,39,42,37,"h"],[47,40,42,38],[47,45,42,43],[47,47,42,45],[47,51,42,49],[47,61,42,59],[47,64,42,62],[47,70,42,68],[47,75,42,73],[47,77,42,75],[47,78,42,76],[48,4,43,2,"h"],[48,5,43,3],[48,9,43,7,"h"],[48,10,43,8],[48,15,43,13],[48,17,43,15],[49,4,44,2],[49,11,44,9,"h"],[49,12,44,10],[49,17,44,15],[49,18,44,16],[50,2,45,0],[51,2,46,0],[51,6,46,4,"hash"],[51,10,46,8],[51,13,46,11,"str"],[51,16,46,14],[51,20,46,18,"murmurhash2_32_gc"],[51,37,46,35],[51,38,46,36,"str"],[51,41,46,39],[51,43,46,41],[51,44,46,42],[51,45,46,43],[51,46,46,44,"toString"],[51,54,46,52],[51,55,46,53],[51,57,46,55],[51,58,46,56],[52,2,46,57],[52,6,46,57,"_default"],[52,14,46,57],[52,17,46,57,"exports"],[52,24,46,57],[52,25,46,57,"default"],[52,32,46,57],[52,35,47,15,"hash"],[52,39,47,19],[53,0,47,19],[53,3]],"functionMap":{"names":["<global>","murmurhash2_32_gc","hash"],"mappings":"AAA;ACiB;CD2B;WEC,6CF"}},"type":"js/module"}]} |