mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 20:21:01 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"./ResponderEventTypes","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":199},"end":{"line":10,"column":72,"index":271}}],"key":"vBlYL6aBF9Cu7j4MJjDSbmFqyNY=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"ResponderTouchHistoryStore\", {\n enumerable: true,\n get: function () {\n return ResponderTouchHistoryStore;\n }\n });\n var _ResponderEventTypes = require(_dependencyMap[0], \"./ResponderEventTypes\");\n /**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\n /**\n * Tracks the position and time of each active touch by `touch.identifier`. We\n * should typically only see IDs in the range of 1-20 because IDs get recycled\n * when touches end and start again.\n */\n\n var __DEV__ = process.env.NODE_ENV !== 'production';\n var MAX_TOUCH_BANK = 20;\n function timestampForTouch(touch) {\n // The legacy internal implementation provides \"timeStamp\", which has been\n // renamed to \"timestamp\".\n return touch.timeStamp || touch.timestamp;\n }\n\n /**\n * TODO: Instead of making gestures recompute filtered velocity, we could\n * include a built in velocity computation that can be reused globally.\n */\n function createTouchRecord(touch) {\n return {\n touchActive: true,\n startPageX: touch.pageX,\n startPageY: touch.pageY,\n startTimeStamp: timestampForTouch(touch),\n currentPageX: touch.pageX,\n currentPageY: touch.pageY,\n currentTimeStamp: timestampForTouch(touch),\n previousPageX: touch.pageX,\n previousPageY: touch.pageY,\n previousTimeStamp: timestampForTouch(touch)\n };\n }\n function resetTouchRecord(touchRecord, touch) {\n touchRecord.touchActive = true;\n touchRecord.startPageX = touch.pageX;\n touchRecord.startPageY = touch.pageY;\n touchRecord.startTimeStamp = timestampForTouch(touch);\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchRecord.previousPageX = touch.pageX;\n touchRecord.previousPageY = touch.pageY;\n touchRecord.previousTimeStamp = timestampForTouch(touch);\n }\n function getTouchIdentifier(_ref) {\n var identifier = _ref.identifier;\n if (identifier == null) {\n console.error('Touch object is missing identifier.');\n }\n if (__DEV__) {\n if (identifier > MAX_TOUCH_BANK) {\n console.error('Touch identifier %s is greater than maximum supported %s which causes ' + 'performance issues backfilling array locations for all of the indices.', identifier, MAX_TOUCH_BANK);\n }\n }\n return identifier;\n }\n function recordTouchStart(touch, touchHistory) {\n var identifier = getTouchIdentifier(touch);\n var touchRecord = touchHistory.touchBank[identifier];\n if (touchRecord) {\n resetTouchRecord(touchRecord, touch);\n } else {\n touchHistory.touchBank[identifier] = createTouchRecord(touch);\n }\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n }\n function recordTouchMove(touch, touchHistory) {\n var touchRecord = touchHistory.touchBank[getTouchIdentifier(touch)];\n if (touchRecord) {\n touchRecord.touchActive = true;\n touchRecord.previousPageX = touchRecord.currentPageX;\n touchRecord.previousPageY = touchRecord.currentPageY;\n touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n } else {\n console.warn('Cannot record touch move without a touch start.\\n', \"Touch Move: \" + printTouch(touch) + \"\\n\", \"Touch Bank: \" + printTouchBank(touchHistory));\n }\n }\n function recordTouchEnd(touch, touchHistory) {\n var touchRecord = touchHistory.touchBank[getTouchIdentifier(touch)];\n if (touchRecord) {\n touchRecord.touchActive = false;\n touchRecord.previousPageX = touchRecord.currentPageX;\n touchRecord.previousPageY = touchRecord.currentPageY;\n touchRecord.previousTimeStamp = touchRecord.currentTimeStamp;\n touchRecord.currentPageX = touch.pageX;\n touchRecord.currentPageY = touch.pageY;\n touchRecord.currentTimeStamp = timestampForTouch(touch);\n touchHistory.mostRecentTimeStamp = timestampForTouch(touch);\n } else {\n console.warn('Cannot record touch end without a touch start.\\n', \"Touch End: \" + printTouch(touch) + \"\\n\", \"Touch Bank: \" + printTouchBank(touchHistory));\n }\n }\n function printTouch(touch) {\n return JSON.stringify({\n identifier: touch.identifier,\n pageX: touch.pageX,\n pageY: touch.pageY,\n timestamp: timestampForTouch(touch)\n });\n }\n function printTouchBank(touchHistory) {\n var touchBank = touchHistory.touchBank;\n var printed = JSON.stringify(touchBank.slice(0, MAX_TOUCH_BANK));\n if (touchBank.length > MAX_TOUCH_BANK) {\n printed += ' (original size: ' + touchBank.length + ')';\n }\n return printed;\n }\n class ResponderTouchHistoryStore {\n constructor() {\n this._touchHistory = {\n touchBank: [],\n //Array<TouchRecord>\n numberActiveTouches: 0,\n // If there is only one active touch, we remember its location. This prevents\n // us having to loop through all of the touches all the time in the most\n // common case.\n indexOfSingleActiveTouch: -1,\n mostRecentTimeStamp: 0\n };\n }\n recordTouchTrack(topLevelType, nativeEvent) {\n var touchHistory = this._touchHistory;\n if ((0, _ResponderEventTypes.isMoveish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchMove(touch, touchHistory));\n } else if ((0, _ResponderEventTypes.isStartish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchStart(touch, touchHistory));\n touchHistory.numberActiveTouches = nativeEvent.touches.length;\n if (touchHistory.numberActiveTouches === 1) {\n touchHistory.indexOfSingleActiveTouch = nativeEvent.touches[0].identifier;\n }\n } else if ((0, _ResponderEventTypes.isEndish)(topLevelType)) {\n nativeEvent.changedTouches.forEach(touch => recordTouchEnd(touch, touchHistory));\n touchHistory.numberActiveTouches = nativeEvent.touches.length;\n if (touchHistory.numberActiveTouches === 1) {\n var touchBank = touchHistory.touchBank;\n for (var i = 0; i < touchBank.length; i++) {\n var touchTrackToCheck = touchBank[i];\n if (touchTrackToCheck != null && touchTrackToCheck.touchActive) {\n touchHistory.indexOfSingleActiveTouch = i;\n break;\n }\n }\n if (__DEV__) {\n var activeRecord = touchBank[touchHistory.indexOfSingleActiveTouch];\n if (!(activeRecord != null && activeRecord.touchActive)) {\n console.error('Cannot find single active touch.');\n }\n }\n }\n }\n }\n get touchHistory() {\n return this._touchHistory;\n }\n }\n});","lineCount":183,"map":[[7,2,123,0,"Object"],[7,8,123,0],[7,9,123,0,"defineProperty"],[7,23,123,0],[7,24,123,0,"exports"],[7,31,123,0],[8,4,123,0,"enumerable"],[8,14,123,0],[9,4,123,0,"get"],[9,7,123,0],[9,18,123,0,"get"],[9,19,123,0],[10,6,123,0],[10,13,123,0,"ResponderTouchHistoryStore"],[10,39,123,0],[11,4,123,0],[12,2,123,0],[13,2,10,0],[13,6,10,0,"_ResponderEventTypes"],[13,26,10,0],[13,29,10,0,"require"],[13,36,10,0],[13,37,10,0,"_dependencyMap"],[13,51,10,0],[14,2,1,0],[15,0,2,0],[16,0,3,0],[17,0,4,0],[18,0,5,0],[19,0,6,0],[20,0,7,0],[21,0,8,0],[23,2,11,0],[24,0,12,0],[25,0,13,0],[26,0,14,0],[27,0,15,0],[29,2,17,0],[29,6,17,4,"__DEV__"],[29,13,17,11],[29,16,17,14,"process"],[29,23,17,21],[29,24,17,22,"env"],[29,27,17,25],[29,28,17,26,"NODE_ENV"],[29,36,17,34],[29,41,17,39],[29,53,17,51],[30,2,18,0],[30,6,18,4,"MAX_TOUCH_BANK"],[30,20,18,18],[30,23,18,21],[30,25,18,23],[31,2,19,0],[31,11,19,9,"timestampForTouch"],[31,28,19,26,"timestampForTouch"],[31,29,19,27,"touch"],[31,34,19,32],[31,36,19,34],[32,4,20,2],[33,4,21,2],[34,4,22,2],[34,11,22,9,"touch"],[34,16,22,14],[34,17,22,15,"timeStamp"],[34,26,22,24],[34,30,22,28,"touch"],[34,35,22,33],[34,36,22,34,"timestamp"],[34,45,22,43],[35,2,23,0],[37,2,25,0],[38,0,26,0],[39,0,27,0],[40,0,28,0],[41,2,29,0],[41,11,29,9,"createTouchRecord"],[41,28,29,26,"createTouchRecord"],[41,29,29,27,"touch"],[41,34,29,32],[41,36,29,34],[42,4,30,2],[42,11,30,9],[43,6,31,4,"touchActive"],[43,17,31,15],[43,19,31,17],[43,23,31,21],[44,6,32,4,"startPageX"],[44,16,32,14],[44,18,32,16,"touch"],[44,23,32,21],[44,24,32,22,"pageX"],[44,29,32,27],[45,6,33,4,"startPageY"],[45,16,33,14],[45,18,33,16,"touch"],[45,23,33,21],[45,24,33,22,"pageY"],[45,29,33,27],[46,6,34,4,"startTimeStamp"],[46,20,34,18],[46,22,34,20,"timestampForTouch"],[46,39,34,37],[46,40,34,38,"touch"],[46,45,34,43],[46,46,34,44],[47,6,35,4,"currentPageX"],[47,18,35,16],[47,20,35,18,"touch"],[47,25,35,23],[47,26,35,24,"pageX"],[47,31,35,29],[48,6,36,4,"currentPageY"],[48,18,36,16],[48,20,36,18,"touch"],[48,25,36,23],[48,26,36,24,"pageY"],[48,31,36,29],[49,6,37,4,"currentTimeStamp"],[49,22,37,20],[49,24,37,22,"timestampForTouch"],[49,41,37,39],[49,42,37,40,"touch"],[49,47,37,45],[49,48,37,46],[50,6,38,4,"previousPageX"],[50,19,38,17],[50,21,38,19,"touch"],[50,26,38,24],[50,27,38,25,"pageX"],[50,32,38,30],[51,6,39,4,"previousPageY"],[51,19,39,17],[51,21,39,19,"touch"],[51,26,39,24],[51,27,39,25,"pageY"],[51,32,39,30],[52,6,40,4,"previousTimeStamp"],[52,23,40,21],[52,25,40,23,"timestampForTouch"],[52,42,40,40],[52,43,40,41,"touch"],[52,48,40,46],[53,4,41,2],[53,5,41,3],[54,2,42,0],[55,2,43,0],[55,11,43,9,"resetTouchRecord"],[55,27,43,25,"resetTouchRecord"],[55,28,43,26,"touchRecord"],[55,39,43,37],[55,41,43,39,"touch"],[55,46,43,44],[55,48,43,46],[56,4,44,2,"touchRecord"],[56,15,44,13],[56,16,44,14,"touchActive"],[56,27,44,25],[56,30,44,28],[56,34,44,32],[57,4,45,2,"touchRecord"],[57,15,45,13],[57,16,45,14,"startPageX"],[57,26,45,24],[57,29,45,27,"touch"],[57,34,45,32],[57,35,45,33,"pageX"],[57,40,45,38],[58,4,46,2,"touchRecord"],[58,15,46,13],[58,16,46,14,"startPageY"],[58,26,46,24],[58,29,46,27,"touch"],[58,34,46,32],[58,35,46,33,"pageY"],[58,40,46,38],[59,4,47,2,"touchRecord"],[59,15,47,13],[59,16,47,14,"startTimeStamp"],[59,30,47,28],[59,33,47,31,"timestampForTouch"],[59,50,47,48],[59,51,47,49,"touch"],[59,56,47,54],[59,57,47,55],[60,4,48,2,"touchRecord"],[60,15,48,13],[60,16,48,14,"currentPageX"],[60,28,48,26],[60,31,48,29,"touch"],[60,36,48,34],[60,37,48,35,"pageX"],[60,42,48,40],[61,4,49,2,"touchRecord"],[61,15,49,13],[61,16,49,14,"currentPageY"],[61,28,49,26],[61,31,49,29,"touch"],[61,36,49,34],[61,37,49,35,"pageY"],[61,42,49,40],[62,4,50,2,"touchRecord"],[62,15,50,13],[62,16,50,14,"currentTimeStamp"],[62,32,50,30],[62,35,50,33,"timestampForTouch"],[62,52,50,50],[62,53,50,51,"touch"],[62,58,50,56],[62,59,50,57],[63,4,51,2,"touchRecord"],[63,15,51,13],[63,16,51,14,"previousPageX"],[63,29,51,27],[63,32,51,30,"touch"],[63,37,51,35],[63,38,51,36,"pageX"],[63,43,51,41],[64,4,52,2,"touchRecord"],[64,15,52,13],[64,16,52,14,"previousPageY"],[64,29,52,27],[64,32,52,30,"touch"],[64,37,52,35],[64,38,52,36,"pageY"],[64,43,52,41],[65,4,53,2,"touchRecord"],[65,15,53,13],[65,16,53,14,"previousTimeStamp"],[65,33,53,31],[65,36,53,34,"timestampForTouch"],[65,53,53,51],[65,54,53,52,"touch"],[65,59,53,57],[65,60,53,58],[66,2,54,0],[67,2,55,0],[67,11,55,9,"getTouchIdentifier"],[67,29,55,27,"getTouchIdentifier"],[67,30,55,28,"_ref"],[67,34,55,32],[67,36,55,34],[68,4,56,2],[68,8,56,6,"identifier"],[68,18,56,16],[68,21,56,19,"_ref"],[68,25,56,23],[68,26,56,24,"identifier"],[68,36,56,34],[69,4,57,2],[69,8,57,6,"identifier"],[69,18,57,16],[69,22,57,20],[69,26,57,24],[69,28,57,26],[70,6,58,4,"console"],[70,13,58,11],[70,14,58,12,"error"],[70,19,58,17],[70,20,58,18],[70,57,58,55],[70,58,58,56],[71,4,59,2],[72,4,60,2],[72,8,60,6,"__DEV__"],[72,15,60,13],[72,17,60,15],[73,6,61,4],[73,10,61,8,"identifier"],[73,20,61,18],[73,23,61,21,"MAX_TOUCH_BANK"],[73,37,61,35],[73,39,61,37],[74,8,62,6,"console"],[74,15,62,13],[74,16,62,14,"error"],[74,21,62,19],[74,22,62,20],[74,94,62,92],[74,97,62,95],[74,169,62,167],[74,171,62,169,"identifier"],[74,181,62,179],[74,183,62,181,"MAX_TOUCH_BANK"],[74,197,62,195],[74,198,62,196],[75,6,63,4],[76,4,64,2],[77,4,65,2],[77,11,65,9,"identifier"],[77,21,65,19],[78,2,66,0],[79,2,67,0],[79,11,67,9,"recordTouchStart"],[79,27,67,25,"recordTouchStart"],[79,28,67,26,"touch"],[79,33,67,31],[79,35,67,33,"touchHistory"],[79,47,67,45],[79,49,67,47],[80,4,68,2],[80,8,68,6,"identifier"],[80,18,68,16],[80,21,68,19,"getTouchIdentifier"],[80,39,68,37],[80,40,68,38,"touch"],[80,45,68,43],[80,46,68,44],[81,4,69,2],[81,8,69,6,"touchRecord"],[81,19,69,17],[81,22,69,20,"touchHistory"],[81,34,69,32],[81,35,69,33,"touchBank"],[81,44,69,42],[81,45,69,43,"identifier"],[81,55,69,53],[81,56,69,54],[82,4,70,2],[82,8,70,6,"touchRecord"],[82,19,70,17],[82,21,70,19],[83,6,71,4,"resetTouchRecord"],[83,22,71,20],[83,23,71,21,"touchRecord"],[83,34,71,32],[83,36,71,34,"touch"],[83,41,71,39],[83,42,71,40],[84,4,72,2],[84,5,72,3],[84,11,72,9],[85,6,73,4,"touchHistory"],[85,18,73,16],[85,19,73,17,"touchBank"],[85,28,73,26],[85,29,73,27,"identifier"],[85,39,73,37],[85,40,73,38],[85,43,73,41,"createTouchRecord"],[85,60,73,58],[85,61,73,59,"touch"],[85,66,73,64],[85,67,73,65],[86,4,74,2],[87,4,75,2,"touchHistory"],[87,16,75,14],[87,17,75,15,"mostRecentTimeStamp"],[87,36,75,34],[87,39,75,37,"timestampForTouch"],[87,56,75,54],[87,57,75,55,"touch"],[87,62,75,60],[87,63,75,61],[88,2,76,0],[89,2,77,0],[89,11,77,9,"recordTouchMove"],[89,26,77,24,"recordTouchMove"],[89,27,77,25,"touch"],[89,32,77,30],[89,34,77,32,"touchHistory"],[89,46,77,44],[89,48,77,46],[90,4,78,2],[90,8,78,6,"touchRecord"],[90,19,78,17],[90,22,78,20,"touchHistory"],[90,34,78,32],[90,35,78,33,"touchBank"],[90,44,78,42],[90,45,78,43,"getTouchIdentifier"],[90,63,78,61],[90,64,78,62,"touch"],[90,69,78,67],[90,70,78,68],[90,71,78,69],[91,4,79,2],[91,8,79,6,"touchRecord"],[91,19,79,17],[91,21,79,19],[92,6,80,4,"touchRecord"],[92,17,80,15],[92,18,80,16,"touchActive"],[92,29,80,27],[92,32,80,30],[92,36,80,34],[93,6,81,4,"touchRecord"],[93,17,81,15],[93,18,81,16,"previousPageX"],[93,31,81,29],[93,34,81,32,"touchRecord"],[93,45,81,43],[93,46,81,44,"currentPageX"],[93,58,81,56],[94,6,82,4,"touchRecord"],[94,17,82,15],[94,18,82,16,"previousPageY"],[94,31,82,29],[94,34,82,32,"touchRecord"],[94,45,82,43],[94,46,82,44,"currentPageY"],[94,58,82,56],[95,6,83,4,"touchRecord"],[95,17,83,15],[95,18,83,16,"previousTimeStamp"],[95,35,83,33],[95,38,83,36,"touchRecord"],[95,49,83,47],[95,50,83,48,"currentTimeStamp"],[95,66,83,64],[96,6,84,4,"touchRecord"],[96,17,84,15],[96,18,84,16,"currentPageX"],[96,30,84,28],[96,33,84,31,"touch"],[96,38,84,36],[96,39,84,37,"pageX"],[96,44,84,42],[97,6,85,4,"touchRecord"],[97,17,85,15],[97,18,85,16,"currentPageY"],[97,30,85,28],[97,33,85,31,"touch"],[97,38,85,36],[97,39,85,37,"pageY"],[97,44,85,42],[98,6,86,4,"touchRecord"],[98,17,86,15],[98,18,86,16,"currentTimeStamp"],[98,34,86,32],[98,37,86,35,"timestampForTouch"],[98,54,86,52],[98,55,86,53,"touch"],[98,60,86,58],[98,61,86,59],[99,6,87,4,"touchHistory"],[99,18,87,16],[99,19,87,17,"mostRecentTimeStamp"],[99,38,87,36],[99,41,87,39,"timestampForTouch"],[99,58,87,56],[99,59,87,57,"touch"],[99,64,87,62],[99,65,87,63],[100,4,88,2],[100,5,88,3],[100,11,88,9],[101,6,89,4,"console"],[101,13,89,11],[101,14,89,12,"warn"],[101,18,89,16],[101,19,89,17],[101,70,89,68],[101,72,89,70],[101,86,89,84],[101,89,89,87,"printTouch"],[101,99,89,97],[101,100,89,98,"touch"],[101,105,89,103],[101,106,89,104],[101,109,89,107],[101,113,89,111],[101,115,89,113],[101,129,89,127],[101,132,89,130,"printTouchBank"],[101,146,89,144],[101,147,89,145,"touchHistory"],[101,159,89,157],[101,160,89,158],[101,161,89,159],[102,4,90,2],[103,2,91,0],[104,2,92,0],[104,11,92,9,"recordTouchEnd"],[104,25,92,23,"recordTouchEnd"],[104,26,92,24,"touch"],[104,31,92,29],[104,33,92,31,"touchHistory"],[104,45,92,43],[104,47,92,45],[105,4,93,2],[105,8,93,6,"touchRecord"],[105,19,93,17],[105,22,93,20,"touchHistory"],[105,34,93,32],[105,35,93,33,"touchBank"],[105,44,93,42],[105,45,93,43,"getTouchIdentifier"],[105,63,93,61],[105,64,93,62,"touch"],[105,69,93,67],[105,70,93,68],[105,71,93,69],[106,4,94,2],[106,8,94,6,"touchRecord"],[106,19,94,17],[106,21,94,19],[107,6,95,4,"touchRecord"],[107,17,95,15],[107,18,95,16,"touchActive"],[107,29,95,27],[107,32,95,30],[107,37,95,35],[108,6,96,4,"touchRecord"],[108,17,96,15],[108,18,96,16,"previousPageX"],[108,31,96,29],[108,34,96,32,"touchRecord"],[108,45,96,43],[108,46,96,44,"currentPageX"],[108,58,96,56],[109,6,97,4,"touchRecord"],[109,17,97,15],[109,18,97,16,"previousPageY"],[109,31,97,29],[109,34,97,32,"touchRecord"],[109,45,97,43],[109,46,97,44,"currentPageY"],[109,58,97,56],[110,6,98,4,"touchRecord"],[110,17,98,15],[110,18,98,16,"previousTimeStamp"],[110,35,98,33],[110,38,98,36,"touchRecord"],[110,49,98,47],[110,50,98,48,"currentTimeStamp"],[110,66,98,64],[111,6,99,4,"touchRecord"],[111,17,99,15],[111,18,99,16,"currentPageX"],[111,30,99,28],[111,33,99,31,"touch"],[111,38,99,36],[111,39,99,37,"pageX"],[111,44,99,42],[112,6,100,4,"touchRecord"],[112,17,100,15],[112,18,100,16,"currentPageY"],[112,30,100,28],[112,33,100,31,"touch"],[112,38,100,36],[112,39,100,37,"pageY"],[112,44,100,42],[113,6,101,4,"touchRecord"],[113,17,101,15],[113,18,101,16,"currentTimeStamp"],[113,34,101,32],[113,37,101,35,"timestampForTouch"],[113,54,101,52],[113,55,101,53,"touch"],[113,60,101,58],[113,61,101,59],[114,6,102,4,"touchHistory"],[114,18,102,16],[114,19,102,17,"mostRecentTimeStamp"],[114,38,102,36],[114,41,102,39,"timestampForTouch"],[114,58,102,56],[114,59,102,57,"touch"],[114,64,102,62],[114,65,102,63],[115,4,103,2],[115,5,103,3],[115,11,103,9],[116,6,104,4,"console"],[116,13,104,11],[116,14,104,12,"warn"],[116,18,104,16],[116,19,104,17],[116,69,104,67],[116,71,104,69],[116,84,104,82],[116,87,104,85,"printTouch"],[116,97,104,95],[116,98,104,96,"touch"],[116,103,104,101],[116,104,104,102],[116,107,104,105],[116,111,104,109],[116,113,104,111],[116,127,104,125],[116,130,104,128,"printTouchBank"],[116,144,104,142],[116,145,104,143,"touchHistory"],[116,157,104,155],[116,158,104,156],[116,159,104,157],[117,4,105,2],[118,2,106,0],[119,2,107,0],[119,11,107,9,"printTouch"],[119,21,107,19,"printTouch"],[119,22,107,20,"touch"],[119,27,107,25],[119,29,107,27],[120,4,108,2],[120,11,108,9,"JSON"],[120,15,108,13],[120,16,108,14,"stringify"],[120,25,108,23],[120,26,108,24],[121,6,109,4,"identifier"],[121,16,109,14],[121,18,109,16,"touch"],[121,23,109,21],[121,24,109,22,"identifier"],[121,34,109,32],[122,6,110,4,"pageX"],[122,11,110,9],[122,13,110,11,"touch"],[122,18,110,16],[122,19,110,17,"pageX"],[122,24,110,22],[123,6,111,4,"pageY"],[123,11,111,9],[123,13,111,11,"touch"],[123,18,111,16],[123,19,111,17,"pageY"],[123,24,111,22],[124,6,112,4,"timestamp"],[124,15,112,13],[124,17,112,15,"timestampForTouch"],[124,34,112,32],[124,35,112,33,"touch"],[124,40,112,38],[125,4,113,2],[125,5,113,3],[125,6,113,4],[126,2,114,0],[127,2,115,0],[127,11,115,9,"printTouchBank"],[127,25,115,23,"printTouchBank"],[127,26,115,24,"touchHistory"],[127,38,115,36],[127,40,115,38],[128,4,116,2],[128,8,116,6,"touchBank"],[128,17,116,15],[128,20,116,18,"touchHistory"],[128,32,116,30],[128,33,116,31,"touchBank"],[128,42,116,40],[129,4,117,2],[129,8,117,6,"printed"],[129,15,117,13],[129,18,117,16,"JSON"],[129,22,117,20],[129,23,117,21,"stringify"],[129,32,117,30],[129,33,117,31,"touchBank"],[129,42,117,40],[129,43,117,41,"slice"],[129,48,117,46],[129,49,117,47],[129,50,117,48],[129,52,117,50,"MAX_TOUCH_BANK"],[129,66,117,64],[129,67,117,65],[129,68,117,66],[130,4,118,2],[130,8,118,6,"touchBank"],[130,17,118,15],[130,18,118,16,"length"],[130,24,118,22],[130,27,118,25,"MAX_TOUCH_BANK"],[130,41,118,39],[130,43,118,41],[131,6,119,4,"printed"],[131,13,119,11],[131,17,119,15],[131,36,119,34],[131,39,119,37,"touchBank"],[131,48,119,46],[131,49,119,47,"length"],[131,55,119,53],[131,58,119,56],[131,61,119,59],[132,4,120,2],[133,4,121,2],[133,11,121,9,"printed"],[133,18,121,16],[134,2,122,0],[135,2,123,7],[135,8,123,13,"ResponderTouchHistoryStore"],[135,34,123,39],[135,35,123,40],[136,4,124,2,"constructor"],[136,15,124,13,"constructor"],[136,16,124,13],[136,18,124,16],[137,6,125,4],[137,10,125,8],[137,11,125,9,"_touchHistory"],[137,24,125,22],[137,27,125,25],[138,8,126,6,"touchBank"],[138,17,126,15],[138,19,126,17],[138,21,126,19],[139,8,127,6],[140,8,128,6,"numberActiveTouches"],[140,27,128,25],[140,29,128,27],[140,30,128,28],[141,8,129,6],[142,8,130,6],[143,8,131,6],[144,8,132,6,"indexOfSingleActiveTouch"],[144,32,132,30],[144,34,132,32],[144,35,132,33],[144,36,132,34],[145,8,133,6,"mostRecentTimeStamp"],[145,27,133,25],[145,29,133,27],[146,6,134,4],[146,7,134,5],[147,4,135,2],[148,4,136,2,"recordTouchTrack"],[148,20,136,18,"recordTouchTrack"],[148,21,136,19,"topLevelType"],[148,33,136,31],[148,35,136,33,"nativeEvent"],[148,46,136,44],[148,48,136,46],[149,6,137,4],[149,10,137,8,"touchHistory"],[149,22,137,20],[149,25,137,23],[149,29,137,27],[149,30,137,28,"_touchHistory"],[149,43,137,41],[150,6,138,4],[150,10,138,8],[150,14,138,8,"isMoveish"],[150,34,138,17],[150,35,138,17,"isMoveish"],[150,44,138,17],[150,46,138,18,"topLevelType"],[150,58,138,30],[150,59,138,31],[150,61,138,33],[151,8,139,6,"nativeEvent"],[151,19,139,17],[151,20,139,18,"changedTouches"],[151,34,139,32],[151,35,139,33,"forEach"],[151,42,139,40],[151,43,139,41,"touch"],[151,48,139,46],[151,52,139,50,"recordTouchMove"],[151,67,139,65],[151,68,139,66,"touch"],[151,73,139,71],[151,75,139,73,"touchHistory"],[151,87,139,85],[151,88,139,86],[151,89,139,87],[152,6,140,4],[152,7,140,5],[152,13,140,11],[152,17,140,15],[152,21,140,15,"isStartish"],[152,41,140,25],[152,42,140,25,"isStartish"],[152,52,140,25],[152,54,140,26,"topLevelType"],[152,66,140,38],[152,67,140,39],[152,69,140,41],[153,8,141,6,"nativeEvent"],[153,19,141,17],[153,20,141,18,"changedTouches"],[153,34,141,32],[153,35,141,33,"forEach"],[153,42,141,40],[153,43,141,41,"touch"],[153,48,141,46],[153,52,141,50,"recordTouchStart"],[153,68,141,66],[153,69,141,67,"touch"],[153,74,141,72],[153,76,141,74,"touchHistory"],[153,88,141,86],[153,89,141,87],[153,90,141,88],[154,8,142,6,"touchHistory"],[154,20,142,18],[154,21,142,19,"numberActiveTouches"],[154,40,142,38],[154,43,142,41,"nativeEvent"],[154,54,142,52],[154,55,142,53,"touches"],[154,62,142,60],[154,63,142,61,"length"],[154,69,142,67],[155,8,143,6],[155,12,143,10,"touchHistory"],[155,24,143,22],[155,25,143,23,"numberActiveTouches"],[155,44,143,42],[155,49,143,47],[155,50,143,48],[155,52,143,50],[156,10,144,8,"touchHistory"],[156,22,144,20],[156,23,144,21,"indexOfSingleActiveTouch"],[156,47,144,45],[156,50,144,48,"nativeEvent"],[156,61,144,59],[156,62,144,60,"touches"],[156,69,144,67],[156,70,144,68],[156,71,144,69],[156,72,144,70],[156,73,144,71,"identifier"],[156,83,144,81],[157,8,145,6],[158,6,146,4],[158,7,146,5],[158,13,146,11],[158,17,146,15],[158,21,146,15,"isEndish"],[158,41,146,23],[158,42,146,23,"isEndish"],[158,50,146,23],[158,52,146,24,"topLevelType"],[158,64,146,36],[158,65,146,37],[158,67,146,39],[159,8,147,6,"nativeEvent"],[159,19,147,17],[159,20,147,18,"changedTouches"],[159,34,147,32],[159,35,147,33,"forEach"],[159,42,147,40],[159,43,147,41,"touch"],[159,48,147,46],[159,52,147,50,"recordTouchEnd"],[159,66,147,64],[159,67,147,65,"touch"],[159,72,147,70],[159,74,147,72,"touchHistory"],[159,86,147,84],[159,87,147,85],[159,88,147,86],[160,8,148,6,"touchHistory"],[160,20,148,18],[160,21,148,19,"numberActiveTouches"],[160,40,148,38],[160,43,148,41,"nativeEvent"],[160,54,148,52],[160,55,148,53,"touches"],[160,62,148,60],[160,63,148,61,"length"],[160,69,148,67],[161,8,149,6],[161,12,149,10,"touchHistory"],[161,24,149,22],[161,25,149,23,"numberActiveTouches"],[161,44,149,42],[161,49,149,47],[161,50,149,48],[161,52,149,50],[162,10,150,8],[162,14,150,12,"touchBank"],[162,23,150,21],[162,26,150,24,"touchHistory"],[162,38,150,36],[162,39,150,37,"touchBank"],[162,48,150,46],[163,10,151,8],[163,15,151,13],[163,19,151,17,"i"],[163,20,151,18],[163,23,151,21],[163,24,151,22],[163,26,151,24,"i"],[163,27,151,25],[163,30,151,28,"touchBank"],[163,39,151,37],[163,40,151,38,"length"],[163,46,151,44],[163,48,151,46,"i"],[163,49,151,47],[163,51,151,49],[163,53,151,51],[164,12,152,10],[164,16,152,14,"touchTrackToCheck"],[164,33,152,31],[164,36,152,34,"touchBank"],[164,45,152,43],[164,46,152,44,"i"],[164,47,152,45],[164,48,152,46],[165,12,153,10],[165,16,153,14,"touchTrackToCheck"],[165,33,153,31],[165,37,153,35],[165,41,153,39],[165,45,153,43,"touchTrackToCheck"],[165,62,153,60],[165,63,153,61,"touchActive"],[165,74,153,72],[165,76,153,74],[166,14,154,12,"touchHistory"],[166,26,154,24],[166,27,154,25,"indexOfSingleActiveTouch"],[166,51,154,49],[166,54,154,52,"i"],[166,55,154,53],[167,14,155,12],[168,12,156,10],[169,10,157,8],[170,10,158,8],[170,14,158,12,"__DEV__"],[170,21,158,19],[170,23,158,21],[171,12,159,10],[171,16,159,14,"activeRecord"],[171,28,159,26],[171,31,159,29,"touchBank"],[171,40,159,38],[171,41,159,39,"touchHistory"],[171,53,159,51],[171,54,159,52,"indexOfSingleActiveTouch"],[171,78,159,76],[171,79,159,77],[172,12,160,10],[172,16,160,14],[172,18,160,16,"activeRecord"],[172,30,160,28],[172,34,160,32],[172,38,160,36],[172,42,160,40,"activeRecord"],[172,54,160,52],[172,55,160,53,"touchActive"],[172,66,160,64],[172,67,160,65],[172,69,160,67],[173,14,161,12,"console"],[173,21,161,19],[173,22,161,20,"error"],[173,27,161,25],[173,28,161,26],[173,62,161,60],[173,63,161,61],[174,12,162,10],[175,10,163,8],[176,8,164,6],[177,6,165,4],[178,4,166,2],[179,4,167,2],[179,8,167,6,"touchHistory"],[179,20,167,18,"touchHistory"],[179,21,167,18],[179,23,167,21],[180,6,168,4],[180,13,168,11],[180,17,168,15],[180,18,168,16,"_touchHistory"],[180,31,168,29],[181,4,169,2],[182,2,170,0],[183,0,170,1],[183,3]],"functionMap":{"names":["<global>","timestampForTouch","createTouchRecord","resetTouchRecord","getTouchIdentifier","recordTouchStart","recordTouchMove","recordTouchEnd","printTouch","printTouchBank","ResponderTouchHistoryStore","constructor","recordTouchTrack","nativeEvent.changedTouches.forEach$argument_0","get__touchHistory"],"mappings":"AAA;ACkB;CDI;AEM;CFa;AGC;CHW;AIC;CJW;AKC;CLS;AMC;CNc;AOC;CPc;AQC;CRO;ASC;CTO;OUC;ECC;GDW;EEC;yCCG,6CD;yCCE,8CD;yCCM,4CD;GFmB;EIC;GJE"},"hasCjsExports":false},"type":"js/module"}]} |