{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/callSuper","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"378KbBHdmndC3iMXZ2Ix8oB3LeE=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/inherits","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"y0uNg4LxF1CLscQChxzgo5dfjvA=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"name":"./vendor/eventemitter3","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":21,"index":36},"end":{"line":3,"column":54,"index":69}}],"key":"jJGG4W3dGzj/PN2Gsc+NKMZI37g=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _classCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\").default;\n var _createClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\").default;\n var _callSuper = require(_dependencyMap[2], \"@babel/runtime/helpers/callSuper\").default;\n var _inherits = require(_dependencyMap[3], \"@babel/runtime/helpers/inherits\").default;\n var _slicedToArray = require(_dependencyMap[4], \"@babel/runtime/helpers/slicedToArray\").default;\n var EventEmitter = require(_dependencyMap[5], \"./vendor/eventemitter3\");\n var inject = function inject(_ref) {\n var _ref$module = _slicedToArray(_ref.module, 2),\n id = _ref$module[0],\n code = _ref$module[1],\n sourceURL = _ref.sourceURL;\n if (global.globalEvalWithSourceUrl) {\n global.globalEvalWithSourceUrl(code, sourceURL);\n } else {\n eval(code);\n }\n };\n var injectUpdate = function injectUpdate(update) {\n update.added.forEach(inject);\n update.modified.forEach(inject);\n };\n var HMRClient = /*#__PURE__*/function (_EventEmitter) {\n function HMRClient(url) {\n var _this;\n _classCallCheck(this, HMRClient);\n _this = _callSuper(this, HMRClient);\n _this._isEnabled = false;\n _this._pendingUpdate = null;\n _this._queue = [];\n _this._state = \"opening\";\n _this._ws = new global.WebSocket(url);\n _this._ws.onopen = function () {\n _this._state = \"open\";\n _this.emit(\"open\");\n _this._flushQueue();\n };\n _this._ws.onerror = function (error) {\n _this.emit(\"connection-error\", error);\n };\n _this._ws.onclose = function (closeEvent) {\n _this._state = \"closed\";\n _this.emit(\"close\", closeEvent);\n };\n _this._ws.onmessage = function (message) {\n var data = JSON.parse(String(message.data));\n switch (data.type) {\n case \"bundle-registered\":\n _this.emit(\"bundle-registered\");\n break;\n case \"update-start\":\n _this.emit(\"update-start\", data.body);\n break;\n case \"update\":\n _this.emit(\"update\", data.body);\n break;\n case \"update-done\":\n _this.emit(\"update-done\");\n break;\n case \"error\":\n _this.emit(\"error\", data.body);\n break;\n default:\n _this.emit(\"error\", {\n type: \"unknown-message\",\n message: data\n });\n }\n };\n _this.on(\"update\", function (update) {\n if (_this._isEnabled) {\n injectUpdate(update);\n } else if (_this._pendingUpdate == null) {\n _this._pendingUpdate = update;\n } else {\n _this._pendingUpdate = mergeUpdates(_this._pendingUpdate, update);\n }\n });\n return _this;\n }\n _inherits(HMRClient, _EventEmitter);\n return _createClass(HMRClient, [{\n key: \"close\",\n value: function close() {\n this._ws.close();\n }\n }, {\n key: \"send\",\n value: function send(message) {\n switch (this._state) {\n case \"opening\":\n this._queue.push(message);\n break;\n case \"open\":\n this._ws.send(message);\n break;\n case \"closed\":\n break;\n default:\n throw new Error(\"[WebSocketHMRClient] Unknown state: \" + this._state);\n }\n }\n }, {\n key: \"_flushQueue\",\n value: function _flushQueue() {\n var _this2 = this;\n this._queue.forEach(function (message) {\n return _this2.send(message);\n });\n this._queue.length = 0;\n }\n }, {\n key: \"enable\",\n value: function enable() {\n this._isEnabled = true;\n var update = this._pendingUpdate;\n this._pendingUpdate = null;\n if (update != null) {\n injectUpdate(update);\n }\n }\n }, {\n key: \"disable\",\n value: function disable() {\n this._isEnabled = false;\n }\n }, {\n key: \"isEnabled\",\n value: function isEnabled() {\n return this._isEnabled;\n }\n }, {\n key: \"hasPendingUpdates\",\n value: function hasPendingUpdates() {\n return this._pendingUpdate != null;\n }\n }]);\n }(EventEmitter);\n function mergeUpdates(base, next) {\n var addedIDs = new Set();\n var deletedIDs = new Set();\n var moduleMap = new Map();\n applyUpdateLocally(base);\n applyUpdateLocally(next);\n function applyUpdateLocally(update) {\n update.deleted.forEach(function (id) {\n if (addedIDs.has(id)) {\n addedIDs.delete(id);\n } else {\n deletedIDs.add(id);\n }\n moduleMap.delete(id);\n });\n update.added.forEach(function (item) {\n var id = item.module[0];\n if (deletedIDs.has(id)) {\n deletedIDs.delete(id);\n } else {\n addedIDs.add(id);\n }\n moduleMap.set(id, item);\n });\n update.modified.forEach(function (item) {\n var id = item.module[0];\n moduleMap.set(id, item);\n });\n }\n var result = {\n isInitialUpdate: next.isInitialUpdate,\n revisionId: next.revisionId,\n added: [],\n modified: [],\n deleted: []\n };\n deletedIDs.forEach(function (id) {\n result.deleted.push(id);\n });\n moduleMap.forEach(function (item, id) {\n if (deletedIDs.has(id)) {\n return;\n }\n if (addedIDs.has(id)) {\n result.added.push(item);\n } else {\n result.modified.push(item);\n }\n });\n return result;\n }\n module.exports = HMRClient;\n});","lineCount":193,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_classCallCheck"],[4,21,1,13],[4,24,1,13,"require"],[4,31,1,13],[4,32,1,13,"_dependencyMap"],[4,46,1,13],[4,92,1,13,"default"],[4,99,1,13],[5,2,1,13],[5,6,1,13,"_createClass"],[5,18,1,13],[5,21,1,13,"require"],[5,28,1,13],[5,29,1,13,"_dependencyMap"],[5,43,1,13],[5,86,1,13,"default"],[5,93,1,13],[6,2,1,13],[6,6,1,13,"_callSuper"],[6,16,1,13],[6,19,1,13,"require"],[6,26,1,13],[6,27,1,13,"_dependencyMap"],[6,41,1,13],[6,82,1,13,"default"],[6,89,1,13],[7,2,1,13],[7,6,1,13,"_inherits"],[7,15,1,13],[7,18,1,13,"require"],[7,25,1,13],[7,26,1,13,"_dependencyMap"],[7,40,1,13],[7,80,1,13,"default"],[7,87,1,13],[8,2,1,13],[8,6,1,13,"_slicedToArray"],[8,20,1,13],[8,23,1,13,"require"],[8,30,1,13],[8,31,1,13,"_dependencyMap"],[8,45,1,13],[8,90,1,13,"default"],[8,97,1,13],[9,2,3,0],[9,6,3,6,"EventEmitter"],[9,18,3,18],[9,21,3,21,"require"],[9,28,3,28],[9,29,3,28,"_dependencyMap"],[9,43,3,28],[9,72,3,53],[9,73,3,54],[10,2,4,0],[10,6,4,6,"inject"],[10,12,4,12],[10,15,4,15],[10,24,4,6,"inject"],[10,30,4,12,"inject"],[10,31,4,12,"_ref"],[10,35,4,12],[10,37,4,54],[11,4,4,54],[11,8,4,54,"_ref$module"],[11,19,4,54],[11,22,4,54,"_slicedToArray"],[11,36,4,54],[11,37,4,54,"_ref"],[11,41,4,54],[11,42,4,18,"module"],[11,48,4,24],[12,6,4,27,"id"],[12,8,4,29],[12,11,4,29,"_ref$module"],[12,22,4,29],[13,6,4,31,"code"],[13,10,4,35],[13,13,4,35,"_ref$module"],[13,24,4,35],[14,6,4,38,"sourceURL"],[14,15,4,47],[14,18,4,47,"_ref"],[14,22,4,47],[14,23,4,38,"sourceURL"],[14,32,4,47],[15,4,5,2],[15,8,5,6,"global"],[15,14,5,12],[15,15,5,13,"globalEvalWithSourceUrl"],[15,38,5,36],[15,40,5,38],[16,6,6,4,"global"],[16,12,6,10],[16,13,6,11,"globalEvalWithSourceUrl"],[16,36,6,34],[16,37,6,35,"code"],[16,41,6,39],[16,43,6,41,"sourceURL"],[16,52,6,50],[16,53,6,51],[17,4,7,2],[17,5,7,3],[17,11,7,9],[18,6,8,4,"eval"],[18,10,8,8],[18,11,8,9,"code"],[18,15,8,13],[18,16,8,14],[19,4,9,2],[20,2,10,0],[20,3,10,1],[21,2,11,0],[21,6,11,6,"injectUpdate"],[21,18,11,18],[21,21,11,21],[21,30,11,6,"injectUpdate"],[21,42,11,18,"injectUpdate"],[21,43,11,22,"update"],[21,49,11,28],[21,51,11,33],[22,4,12,2,"update"],[22,10,12,8],[22,11,12,9,"added"],[22,16,12,14],[22,17,12,15,"forEach"],[22,24,12,22],[22,25,12,23,"inject"],[22,31,12,29],[22,32,12,30],[23,4,13,2,"update"],[23,10,13,8],[23,11,13,9,"modified"],[23,19,13,17],[23,20,13,18,"forEach"],[23,27,13,25],[23,28,13,26,"inject"],[23,34,13,32],[23,35,13,33],[24,2,14,0],[24,3,14,1],[25,2,14,2],[25,6,15,6,"HMRClient"],[25,15,15,15],[25,41,15,15,"_EventEmitter"],[25,54,15,15],[26,4,20,2],[26,13,20,2,"HMRClient"],[26,23,20,14,"url"],[26,26,20,17],[26,28,20,19],[27,6,20,19],[27,10,20,19,"_this"],[27,15,20,19],[28,6,20,19,"_classCallCheck"],[28,21,20,19],[28,28,20,19,"HMRClient"],[28,37,20,19],[29,6,21,4,"_this"],[29,11,21,4],[29,14,21,4,"_callSuper"],[29,24,21,4],[29,31,21,4,"HMRClient"],[29,40,21,4],[30,6,21,12,"_this"],[30,11,21,12],[30,12,16,2,"_isEnabled"],[30,22,16,12],[30,25,16,15],[30,30,16,20],[31,6,16,20,"_this"],[31,11,16,20],[31,12,17,2,"_pendingUpdate"],[31,26,17,16],[31,29,17,19],[31,33,17,23],[32,6,17,23,"_this"],[32,11,17,23],[32,12,18,2,"_queue"],[32,18,18,8],[32,21,18,11],[32,23,18,13],[33,6,18,13,"_this"],[33,11,18,13],[33,12,19,2,"_state"],[33,18,19,8],[33,21,19,11],[33,30,19,20],[34,6,22,4,"_this"],[34,11,22,4],[34,12,22,9,"_ws"],[34,15,22,12],[34,18,22,15],[34,22,22,19,"global"],[34,28,22,25],[34,29,22,26,"WebSocket"],[34,38,22,35],[34,39,22,36,"url"],[34,42,22,39],[34,43,22,40],[35,6,23,4,"_this"],[35,11,23,4],[35,12,23,9,"_ws"],[35,15,23,12],[35,16,23,13,"onopen"],[35,22,23,19],[35,25,23,22],[35,37,23,28],[36,8,24,6,"_this"],[36,13,24,6],[36,14,24,11,"_state"],[36,20,24,17],[36,23,24,20],[36,29,24,26],[37,8,25,6,"_this"],[37,13,25,6],[37,14,25,11,"emit"],[37,18,25,15],[37,19,25,16],[37,25,25,22],[37,26,25,23],[38,8,26,6,"_this"],[38,13,26,6],[38,14,26,11,"_flushQueue"],[38,25,26,22],[38,26,26,23],[38,27,26,24],[39,6,27,4],[39,7,27,5],[40,6,28,4,"_this"],[40,11,28,4],[40,12,28,9,"_ws"],[40,15,28,12],[40,16,28,13,"onerror"],[40,23,28,20],[40,26,28,23],[40,36,28,24,"error"],[40,41,28,29],[40,43,28,34],[41,8,29,6,"_this"],[41,13,29,6],[41,14,29,11,"emit"],[41,18,29,15],[41,19,29,16],[41,37,29,34],[41,39,29,36,"error"],[41,44,29,41],[41,45,29,42],[42,6,30,4],[42,7,30,5],[43,6,31,4,"_this"],[43,11,31,4],[43,12,31,9,"_ws"],[43,15,31,12],[43,16,31,13,"onclose"],[43,23,31,20],[43,26,31,23],[43,36,31,24,"closeEvent"],[43,46,31,34],[43,48,31,39],[44,8,32,6,"_this"],[44,13,32,6],[44,14,32,11,"_state"],[44,20,32,17],[44,23,32,20],[44,31,32,28],[45,8,33,6,"_this"],[45,13,33,6],[45,14,33,11,"emit"],[45,18,33,15],[45,19,33,16],[45,26,33,23],[45,28,33,25,"closeEvent"],[45,38,33,35],[45,39,33,36],[46,6,34,4],[46,7,34,5],[47,6,35,4,"_this"],[47,11,35,4],[47,12,35,9,"_ws"],[47,15,35,12],[47,16,35,13,"onmessage"],[47,25,35,22],[47,28,35,25],[47,38,35,26,"message"],[47,45,35,33],[47,47,35,38],[48,8,36,6],[48,12,36,12,"data"],[48,16,36,16],[48,19,36,19,"JSON"],[48,23,36,23],[48,24,36,24,"parse"],[48,29,36,29],[48,30,36,30,"String"],[48,36,36,36],[48,37,36,37,"message"],[48,44,36,44],[48,45,36,45,"data"],[48,49,36,49],[48,50,36,50],[48,51,36,51],[49,8,37,6],[49,16,37,14,"data"],[49,20,37,18],[49,21,37,19,"type"],[49,25,37,23],[50,10,38,8],[50,15,38,13],[50,34,38,32],[51,12,39,10,"_this"],[51,17,39,10],[51,18,39,15,"emit"],[51,22,39,19],[51,23,39,20],[51,42,39,39],[51,43,39,40],[52,12,40,10],[53,10,41,8],[53,15,41,13],[53,29,41,27],[54,12,42,10,"_this"],[54,17,42,10],[54,18,42,15,"emit"],[54,22,42,19],[54,23,42,20],[54,37,42,34],[54,39,42,36,"data"],[54,43,42,40],[54,44,42,41,"body"],[54,48,42,45],[54,49,42,46],[55,12,43,10],[56,10,44,8],[56,15,44,13],[56,23,44,21],[57,12,45,10,"_this"],[57,17,45,10],[57,18,45,15,"emit"],[57,22,45,19],[57,23,45,20],[57,31,45,28],[57,33,45,30,"data"],[57,37,45,34],[57,38,45,35,"body"],[57,42,45,39],[57,43,45,40],[58,12,46,10],[59,10,47,8],[59,15,47,13],[59,28,47,26],[60,12,48,10,"_this"],[60,17,48,10],[60,18,48,15,"emit"],[60,22,48,19],[60,23,48,20],[60,36,48,33],[60,37,48,34],[61,12,49,10],[62,10,50,8],[62,15,50,13],[62,22,50,20],[63,12,51,10,"_this"],[63,17,51,10],[63,18,51,15,"emit"],[63,22,51,19],[63,23,51,20],[63,30,51,27],[63,32,51,29,"data"],[63,36,51,33],[63,37,51,34,"body"],[63,41,51,38],[63,42,51,39],[64,12,52,10],[65,10,53,8],[66,12,54,10,"_this"],[66,17,54,10],[66,18,54,15,"emit"],[66,22,54,19],[66,23,54,20],[66,30,54,27],[66,32,54,29],[67,14,55,12,"type"],[67,18,55,16],[67,20,55,18],[67,37,55,35],[68,14,56,12,"message"],[68,21,56,19],[68,23,56,21,"data"],[69,12,57,10],[69,13,57,11],[69,14,57,12],[70,8,58,6],[71,6,59,4],[71,7,59,5],[72,6,60,4,"_this"],[72,11,60,4],[72,12,60,9,"on"],[72,14,60,11],[72,15,60,12],[72,23,60,20],[72,25,60,22],[72,35,60,23,"update"],[72,41,60,29],[72,43,60,34],[73,8,61,6],[73,12,61,10,"_this"],[73,17,61,10],[73,18,61,15,"_isEnabled"],[73,28,61,25],[73,30,61,27],[74,10,62,8,"injectUpdate"],[74,22,62,20],[74,23,62,21,"update"],[74,29,62,27],[74,30,62,28],[75,8,63,6],[75,9,63,7],[75,15,63,13],[75,19,63,17,"_this"],[75,24,63,17],[75,25,63,22,"_pendingUpdate"],[75,39,63,36],[75,43,63,40],[75,47,63,44],[75,49,63,46],[76,10,64,8,"_this"],[76,15,64,8],[76,16,64,13,"_pendingUpdate"],[76,30,64,27],[76,33,64,30,"update"],[76,39,64,36],[77,8,65,6],[77,9,65,7],[77,15,65,13],[78,10,66,8,"_this"],[78,15,66,8],[78,16,66,13,"_pendingUpdate"],[78,30,66,27],[78,33,66,30,"mergeUpdates"],[78,45,66,42],[78,46,66,43,"_this"],[78,51,66,43],[78,52,66,48,"_pendingUpdate"],[78,66,66,62],[78,68,66,64,"update"],[78,74,66,70],[78,75,66,71],[79,8,67,6],[80,6,68,4],[80,7,68,5],[80,8,68,6],[81,6,68,7],[81,13,68,7,"_this"],[81,18,68,7],[82,4,69,2],[83,4,69,3,"_inherits"],[83,13,69,3],[83,14,69,3,"HMRClient"],[83,23,69,3],[83,25,69,3,"_EventEmitter"],[83,38,69,3],[84,4,69,3],[84,11,69,3,"_createClass"],[84,23,69,3],[84,24,69,3,"HMRClient"],[84,33,69,3],[85,6,69,3,"key"],[85,9,69,3],[86,6,69,3,"value"],[86,11,69,3],[86,13,70,2],[86,22,70,2,"close"],[86,27,70,7,"close"],[86,28,70,7],[86,30,70,10],[87,8,71,4],[87,12,71,8],[87,13,71,9,"_ws"],[87,16,71,12],[87,17,71,13,"close"],[87,22,71,18],[87,23,71,19],[87,24,71,20],[88,6,72,2],[89,4,72,3],[90,6,72,3,"key"],[90,9,72,3],[91,6,72,3,"value"],[91,11,72,3],[91,13,73,2],[91,22,73,2,"send"],[91,26,73,6,"send"],[91,27,73,7,"message"],[91,34,73,14],[91,36,73,16],[92,8,74,4],[92,16,74,12],[92,20,74,16],[92,21,74,17,"_state"],[92,27,74,23],[93,10,75,6],[93,15,75,11],[93,24,75,20],[94,12,76,8],[94,16,76,12],[94,17,76,13,"_queue"],[94,23,76,19],[94,24,76,20,"push"],[94,28,76,24],[94,29,76,25,"message"],[94,36,76,32],[94,37,76,33],[95,12,77,8],[96,10,78,6],[96,15,78,11],[96,21,78,17],[97,12,79,8],[97,16,79,12],[97,17,79,13,"_ws"],[97,20,79,16],[97,21,79,17,"send"],[97,25,79,21],[97,26,79,22,"message"],[97,33,79,29],[97,34,79,30],[98,12,80,8],[99,10,81,6],[99,15,81,11],[99,23,81,19],[100,12,82,8],[101,10,83,6],[102,12,84,8],[102,18,84,14],[102,22,84,18,"Error"],[102,27,84,23],[102,28,84,24],[102,66,84,62],[102,69,84,65],[102,73,84,69],[102,74,84,70,"_state"],[102,80,84,76],[102,81,84,77],[103,8,85,4],[104,6,86,2],[105,4,86,3],[106,6,86,3,"key"],[106,9,86,3],[107,6,86,3,"value"],[107,11,86,3],[107,13,87,2],[107,22,87,2,"_flushQueue"],[107,33,87,13,"_flushQueue"],[107,34,87,13],[107,36,87,16],[108,8,87,16],[108,12,87,16,"_this2"],[108,18,87,16],[109,8,88,4],[109,12,88,8],[109,13,88,9,"_queue"],[109,19,88,15],[109,20,88,16,"forEach"],[109,27,88,23],[109,28,88,24],[109,38,88,25,"message"],[109,45,88,32],[110,10,88,32],[110,17,88,37,"_this2"],[110,23,88,41],[110,24,88,42,"send"],[110,28,88,46],[110,29,88,47,"message"],[110,36,88,54],[110,37,88,55],[111,8,88,55],[111,10,88,56],[112,8,89,4],[112,12,89,8],[112,13,89,9,"_queue"],[112,19,89,15],[112,20,89,16,"length"],[112,26,89,22],[112,29,89,25],[112,30,89,26],[113,6,90,2],[114,4,90,3],[115,6,90,3,"key"],[115,9,90,3],[116,6,90,3,"value"],[116,11,90,3],[116,13,91,2],[116,22,91,2,"enable"],[116,28,91,8,"enable"],[116,29,91,8],[116,31,91,11],[117,8,92,4],[117,12,92,8],[117,13,92,9,"_isEnabled"],[117,23,92,19],[117,26,92,22],[117,30,92,26],[118,8,93,4],[118,12,93,10,"update"],[118,18,93,16],[118,21,93,19],[118,25,93,23],[118,26,93,24,"_pendingUpdate"],[118,40,93,38],[119,8,94,4],[119,12,94,8],[119,13,94,9,"_pendingUpdate"],[119,27,94,23],[119,30,94,26],[119,34,94,30],[120,8,95,4],[120,12,95,8,"update"],[120,18,95,14],[120,22,95,18],[120,26,95,22],[120,28,95,24],[121,10,96,6,"injectUpdate"],[121,22,96,18],[121,23,96,19,"update"],[121,29,96,25],[121,30,96,26],[122,8,97,4],[123,6,98,2],[124,4,98,3],[125,6,98,3,"key"],[125,9,98,3],[126,6,98,3,"value"],[126,11,98,3],[126,13,99,2],[126,22,99,2,"disable"],[126,29,99,9,"disable"],[126,30,99,9],[126,32,99,12],[127,8,100,4],[127,12,100,8],[127,13,100,9,"_isEnabled"],[127,23,100,19],[127,26,100,22],[127,31,100,27],[128,6,101,2],[129,4,101,3],[130,6,101,3,"key"],[130,9,101,3],[131,6,101,3,"value"],[131,11,101,3],[131,13,102,2],[131,22,102,2,"isEnabled"],[131,31,102,11,"isEnabled"],[131,32,102,11],[131,34,102,14],[132,8,103,4],[132,15,103,11],[132,19,103,15],[132,20,103,16,"_isEnabled"],[132,30,103,26],[133,6,104,2],[134,4,104,3],[135,6,104,3,"key"],[135,9,104,3],[136,6,104,3,"value"],[136,11,104,3],[136,13,105,2],[136,22,105,2,"hasPendingUpdates"],[136,39,105,19,"hasPendingUpdates"],[136,40,105,19],[136,42,105,22],[137,8,106,4],[137,15,106,11],[137,19,106,15],[137,20,106,16,"_pendingUpdate"],[137,34,106,30],[137,38,106,34],[137,42,106,38],[138,6,107,2],[139,4,107,3],[140,2,107,3],[140,4,15,24,"EventEmitter"],[140,16,15,36],[141,2,109,0],[141,11,109,9,"mergeUpdates"],[141,23,109,21,"mergeUpdates"],[141,24,109,22,"base"],[141,28,109,26],[141,30,109,28,"next"],[141,34,109,32],[141,36,109,34],[142,4,110,2],[142,8,110,8,"addedIDs"],[142,16,110,16],[142,19,110,19],[142,23,110,23,"Set"],[142,26,110,26],[142,27,110,27],[142,28,110,28],[143,4,111,2],[143,8,111,8,"deletedIDs"],[143,18,111,18],[143,21,111,21],[143,25,111,25,"Set"],[143,28,111,28],[143,29,111,29],[143,30,111,30],[144,4,112,2],[144,8,112,8,"moduleMap"],[144,17,112,17],[144,20,112,20],[144,24,112,24,"Map"],[144,27,112,27],[144,28,112,28],[144,29,112,29],[145,4,113,2,"applyUpdateLocally"],[145,22,113,20],[145,23,113,21,"base"],[145,27,113,25],[145,28,113,26],[146,4,114,2,"applyUpdateLocally"],[146,22,114,20],[146,23,114,21,"next"],[146,27,114,25],[146,28,114,26],[147,4,115,2],[147,13,115,11,"applyUpdateLocally"],[147,31,115,29,"applyUpdateLocally"],[147,32,115,30,"update"],[147,38,115,36],[147,40,115,38],[148,6,116,4,"update"],[148,12,116,10],[148,13,116,11,"deleted"],[148,20,116,18],[148,21,116,19,"forEach"],[148,28,116,26],[148,29,116,27],[148,39,116,28,"id"],[148,41,116,30],[148,43,116,35],[149,8,117,6],[149,12,117,10,"addedIDs"],[149,20,117,18],[149,21,117,19,"has"],[149,24,117,22],[149,25,117,23,"id"],[149,27,117,25],[149,28,117,26],[149,30,117,28],[150,10,118,8,"addedIDs"],[150,18,118,16],[150,19,118,17,"delete"],[150,25,118,23],[150,26,118,24,"id"],[150,28,118,26],[150,29,118,27],[151,8,119,6],[151,9,119,7],[151,15,119,13],[152,10,120,8,"deletedIDs"],[152,20,120,18],[152,21,120,19,"add"],[152,24,120,22],[152,25,120,23,"id"],[152,27,120,25],[152,28,120,26],[153,8,121,6],[154,8,122,6,"moduleMap"],[154,17,122,15],[154,18,122,16,"delete"],[154,24,122,22],[154,25,122,23,"id"],[154,27,122,25],[154,28,122,26],[155,6,123,4],[155,7,123,5],[155,8,123,6],[156,6,124,4,"update"],[156,12,124,10],[156,13,124,11,"added"],[156,18,124,16],[156,19,124,17,"forEach"],[156,26,124,24],[156,27,124,25],[156,37,124,26,"item"],[156,41,124,30],[156,43,124,35],[157,8,125,6],[157,12,125,12,"id"],[157,14,125,14],[157,17,125,17,"item"],[157,21,125,21],[157,22,125,22,"module"],[157,28,125,28],[157,29,125,29],[157,30,125,30],[157,31,125,31],[158,8,126,6],[158,12,126,10,"deletedIDs"],[158,22,126,20],[158,23,126,21,"has"],[158,26,126,24],[158,27,126,25,"id"],[158,29,126,27],[158,30,126,28],[158,32,126,30],[159,10,127,8,"deletedIDs"],[159,20,127,18],[159,21,127,19,"delete"],[159,27,127,25],[159,28,127,26,"id"],[159,30,127,28],[159,31,127,29],[160,8,128,6],[160,9,128,7],[160,15,128,13],[161,10,129,8,"addedIDs"],[161,18,129,16],[161,19,129,17,"add"],[161,22,129,20],[161,23,129,21,"id"],[161,25,129,23],[161,26,129,24],[162,8,130,6],[163,8,131,6,"moduleMap"],[163,17,131,15],[163,18,131,16,"set"],[163,21,131,19],[163,22,131,20,"id"],[163,24,131,22],[163,26,131,24,"item"],[163,30,131,28],[163,31,131,29],[164,6,132,4],[164,7,132,5],[164,8,132,6],[165,6,133,4,"update"],[165,12,133,10],[165,13,133,11,"modified"],[165,21,133,19],[165,22,133,20,"forEach"],[165,29,133,27],[165,30,133,28],[165,40,133,29,"item"],[165,44,133,33],[165,46,133,38],[166,8,134,6],[166,12,134,12,"id"],[166,14,134,14],[166,17,134,17,"item"],[166,21,134,21],[166,22,134,22,"module"],[166,28,134,28],[166,29,134,29],[166,30,134,30],[166,31,134,31],[167,8,135,6,"moduleMap"],[167,17,135,15],[167,18,135,16,"set"],[167,21,135,19],[167,22,135,20,"id"],[167,24,135,22],[167,26,135,24,"item"],[167,30,135,28],[167,31,135,29],[168,6,136,4],[168,7,136,5],[168,8,136,6],[169,4,137,2],[170,4,138,2],[170,8,138,8,"result"],[170,14,138,14],[170,17,138,17],[171,6,139,4,"isInitialUpdate"],[171,21,139,19],[171,23,139,21,"next"],[171,27,139,25],[171,28,139,26,"isInitialUpdate"],[171,43,139,41],[172,6,140,4,"revisionId"],[172,16,140,14],[172,18,140,16,"next"],[172,22,140,20],[172,23,140,21,"revisionId"],[172,33,140,31],[173,6,141,4,"added"],[173,11,141,9],[173,13,141,11],[173,15,141,13],[174,6,142,4,"modified"],[174,14,142,12],[174,16,142,14],[174,18,142,16],[175,6,143,4,"deleted"],[175,13,143,11],[175,15,143,13],[176,4,144,2],[176,5,144,3],[177,4,145,2,"deletedIDs"],[177,14,145,12],[177,15,145,13,"forEach"],[177,22,145,20],[177,23,145,21],[177,33,145,22,"id"],[177,35,145,24],[177,37,145,29],[178,6,146,4,"result"],[178,12,146,10],[178,13,146,11,"deleted"],[178,20,146,18],[178,21,146,19,"push"],[178,25,146,23],[178,26,146,24,"id"],[178,28,146,26],[178,29,146,27],[179,4,147,2],[179,5,147,3],[179,6,147,4],[180,4,148,2,"moduleMap"],[180,13,148,11],[180,14,148,12,"forEach"],[180,21,148,19],[180,22,148,20],[180,32,148,21,"item"],[180,36,148,25],[180,38,148,27,"id"],[180,40,148,29],[180,42,148,34],[181,6,149,4],[181,10,149,8,"deletedIDs"],[181,20,149,18],[181,21,149,19,"has"],[181,24,149,22],[181,25,149,23,"id"],[181,27,149,25],[181,28,149,26],[181,30,149,28],[182,8,150,6],[183,6,151,4],[184,6,152,4],[184,10,152,8,"addedIDs"],[184,18,152,16],[184,19,152,17,"has"],[184,22,152,20],[184,23,152,21,"id"],[184,25,152,23],[184,26,152,24],[184,28,152,26],[185,8,153,6,"result"],[185,14,153,12],[185,15,153,13,"added"],[185,20,153,18],[185,21,153,19,"push"],[185,25,153,23],[185,26,153,24,"item"],[185,30,153,28],[185,31,153,29],[186,6,154,4],[186,7,154,5],[186,13,154,11],[187,8,155,6,"result"],[187,14,155,12],[187,15,155,13,"modified"],[187,23,155,21],[187,24,155,22,"push"],[187,28,155,26],[187,29,155,27,"item"],[187,33,155,31],[187,34,155,32],[188,6,156,4],[189,4,157,2],[189,5,157,3],[189,6,157,4],[190,4,158,2],[190,11,158,9,"result"],[190,17,158,15],[191,2,159,0],[192,2,160,0,"module"],[192,8,160,6],[192,9,160,7,"exports"],[192,16,160,14],[192,19,160,17,"HMRClient"],[192,28,160,26],[193,0,160,27],[193,3]],"functionMap":{"names":["","inject","injectUpdate","HMRClient","constructor","_ws.onopen","_ws.onerror","_ws.onclose","_ws.onmessage","on$argument_1","close","send","_flushQueue","_queue.forEach$argument_0","enable","disable","isEnabled","hasPendingUpdates","mergeUpdates","applyUpdateLocally","update.deleted.forEach$argument_0","update.added.forEach$argument_0","update.modified.forEach$argument_0","deletedIDs.forEach$argument_0","moduleMap.forEach$argument_0"],"mappings":"AAA;eCG;CDM;qBEC;CFG;AGC;ECK;sBCG;KDI;uBEC;KFE;uBGC;KHG;yBIC;KJwB;sBKC;KLQ;GDC;EOC;GPE;EQC;GRa;ESC;wBCC,+BD;GTE;EWC;GXO;EYC;GZE;EaC;GbE;EcC;GdE;CHC;AkBC;ECM;2BCC;KDO;yBEC;KFQ;4BGC;KHG;GDC;qBKQ;GLE;oBMC;GNS;ClBE"},"hasCjsExports":true},"type":"js/module"}]}