{"version":3,"file":"cookie.js","mappings":"8CAUEA,EAAO,CAAC,aAAF,4BAQN,SAAUC,GAEX,IAAIC,EAAS,MAEb,SAASC,EAAOC,GACf,OAAOC,EAAOC,IAAMF,EAAIG,mBAAmBH,GAG5C,SAASI,EAAOJ,GACf,OAAOC,EAAOC,IAAMF,EAAIK,mBAAmBL,GAG5C,SAASM,EAAqBC,GAC7B,OAAOR,EAAOE,EAAOO,KAAOC,KAAKC,UAAUH,GAASI,OAAOJ,IAG5D,SAASK,EAAiBZ,GACF,IAAnBA,EAAEa,QAAQ,OAEbb,EAAIA,EAAEc,MAAM,GAAI,GAAGC,QAAQ,OAAQ,KAAKA,QAAQ,QAAS,OAG1D,IAKC,OADAf,EAAIK,mBAAmBL,EAAEe,QAAQjB,EAAQ,MAClCG,EAAOO,KAAOC,KAAKO,MAAMhB,GAAKA,EACpC,MAAMiB,KAGT,SAASC,EAAKlB,EAAGmB,GAChB,IAAIZ,EAAQN,EAAOC,IAAMF,EAAIY,EAAiBZ,GAC9C,OAAOH,EAAEuB,WAAWD,GAAaA,EAAUZ,GAASA,EAGrD,IAAIN,EAASJ,EAAEwB,OAAS,SAAUC,EAAKf,EAAOgB,GAI7C,QAAcC,IAAVjB,IAAwBV,EAAEuB,WAAWb,GAAQ,CAGhD,GAA+B,iBAF/BgB,EAAU1B,EAAE4B,OAAO,GAAIxB,EAAOyB,SAAUH,IAErBI,QAAsB,CACxC,IAAIC,EAAOL,EAAQI,QAASE,EAAIN,EAAQI,QAAU,IAAIG,KACtDD,EAAEE,SAASF,EAAW,MAAPD,GAGhB,OAAQI,SAASX,OAAS,CACzBtB,EAAOuB,GAAM,IAAKhB,EAAqBC,GACvCgB,EAAQI,QAAU,aAAeJ,EAAQI,QAAQM,cAAgB,GACjEV,EAAQW,KAAU,UAAYX,EAAQW,KAAO,GAC7CX,EAAQY,OAAU,YAAcZ,EAAQY,OAAS,GACjDZ,EAAQa,OAAU,WAAa,IAC9BC,KAAK,IAYR,IAPA,IAAIC,EAAShB,OAAME,EAAY,GAK3Be,EAAUP,SAASX,OAASW,SAASX,OAAOmB,MAAM,MAAQ,GAErDC,EAAI,EAAGC,EAAIH,EAAQI,OAAQF,EAAIC,EAAGD,IAAK,CAC/C,IAAIG,EAAQL,EAAQE,GAAGD,MAAM,KACzBK,EAAOzC,EAAOwC,EAAME,SACpBzB,EAASuB,EAAMP,KAAK,KAExB,GAAIf,GAAOA,IAAQuB,EAAM,CAExBP,EAASpB,EAAKG,EAAQd,GACtB,MAIIe,QAAmCE,KAA3BH,EAASH,EAAKG,MAC1BiB,EAAOO,GAAQxB,GAIjB,OAAOiB,GAGRrC,EAAOyB,SAAW,GAElB7B,EAAEkD,aAAe,SAAUzB,EAAKC,GAC/B,YAAsBC,IAAlB3B,EAAEwB,OAAOC,KAKbzB,EAAEwB,OAAOC,EAAK,GAAIzB,EAAE4B,OAAO,GAAIF,EAAS,CAAEI,SAAU,MAC5C9B,EAAEwB,OAAOC,OAvGX,gC,qBCVR0B,EAAOC,QAAUC,SCCbC,EAA2B,GCE/B,IAAIC,EDCJ,SAASC,EAAoBC,GAE5B,IAAIC,EAAeJ,EAAyBG,GAC5C,QAAqB9B,IAAjB+B,EACH,OAAOA,EAAaN,QAGrB,IAAID,EAASG,EAAyBG,GAAY,CAGjDL,QAAS,IAOV,OAHAO,EAAoBF,GAAUN,EAAQA,EAAOC,QAASI,GAG/CL,EAAOC,QClBWI,CAAoB,K","sources":["webpack://GTTS/./src/js/libs/jquery.cookie.js","webpack://GTTS/external \"jQuery\"","webpack://GTTS/webpack/bootstrap","webpack://GTTS/webpack/startup"],"sourcesContent":["/*!\r\n * jQuery Cookie Plugin v1.4.1\r\n * https://github.com/carhartl/jquery-cookie\r\n *\r\n * Copyright 2013 Klaus Hartl\r\n * Released under the MIT license\r\n */\r\n(function (factory) {\r\n\tif (typeof define === 'function' && define.amd) {\r\n\t\t// AMD\r\n\t\tdefine(['jquery'], factory);\r\n\t} else if (typeof exports === 'object') {\r\n\t\t// CommonJS\r\n\t\tfactory(require('jquery'));\r\n\t} else {\r\n\t\t// Browser globals\r\n\t\tfactory(jQuery);\r\n\t}\r\n}(function ($) {\r\n\r\n\tvar pluses = /\\+/g;\r\n\r\n\tfunction encode(s) {\r\n\t\treturn config.raw ? s : encodeURIComponent(s);\r\n\t}\r\n\r\n\tfunction decode(s) {\r\n\t\treturn config.raw ? s : decodeURIComponent(s);\r\n\t}\r\n\r\n\tfunction stringifyCookieValue(value) {\r\n\t\treturn encode(config.json ? JSON.stringify(value) : String(value));\r\n\t}\r\n\r\n\tfunction parseCookieValue(s) {\r\n\t\tif (s.indexOf('\"') === 0) {\r\n\t\t\t// This is a quoted cookie as according to RFC2068, unescape...\r\n\t\t\ts = s.slice(1, -1).replace(/\\\\\"/g, '\"').replace(/\\\\\\\\/g, '\\\\');\r\n\t\t}\r\n\r\n\t\ttry {\r\n\t\t\t// Replace server-side written pluses with spaces.\r\n\t\t\t// If we can't decode the cookie, ignore it, it's unusable.\r\n\t\t\t// If we can't parse the cookie, ignore it, it's unusable.\r\n\t\t\ts = decodeURIComponent(s.replace(pluses, ' '));\r\n\t\t\treturn config.json ? JSON.parse(s) : s;\r\n\t\t} catch(e) {}\r\n\t}\r\n\r\n\tfunction read(s, converter) {\r\n\t\tvar value = config.raw ? s : parseCookieValue(s);\r\n\t\treturn $.isFunction(converter) ? converter(value) : value;\r\n\t}\r\n\r\n\tvar config = $.cookie = function (key, value, options) {\r\n\r\n\t\t// Write\r\n\r\n\t\tif (value !== undefined && !$.isFunction(value)) {\r\n\t\t\toptions = $.extend({}, config.defaults, options);\r\n\r\n\t\t\tif (typeof options.expires === 'number') {\r\n\t\t\t\tvar days = options.expires, t = options.expires = new Date();\r\n\t\t\t\tt.setTime(+t + days * 864e+5);\r\n\t\t\t}\r\n\r\n\t\t\treturn (document.cookie = [\r\n\t\t\t\tencode(key), '=', stringifyCookieValue(value),\r\n\t\t\t\toptions.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE\r\n\t\t\t\toptions.path ? '; path=' + options.path : '',\r\n\t\t\t\toptions.domain ? '; domain=' + options.domain : '',\r\n\t\t\t\toptions.secure ? '; secure' : ''\r\n\t\t\t].join(''));\r\n\t\t}\r\n\r\n\t\t// Read\r\n\r\n\t\tvar result = key ? undefined : {};\r\n\r\n\t\t// To prevent the for loop in the first place assign an empty array\r\n\t\t// in case there are no cookies at all. Also prevents odd result when\r\n\t\t// calling $.cookie().\r\n\t\tvar cookies = document.cookie ? document.cookie.split('; ') : [];\r\n\r\n\t\tfor (var i = 0, l = cookies.length; i < l; i++) {\r\n\t\t\tvar parts = cookies[i].split('=');\r\n\t\t\tvar name = decode(parts.shift());\r\n\t\t\tvar cookie = parts.join('=');\r\n\r\n\t\t\tif (key && key === name) {\r\n\t\t\t\t// If second argument (value) is a function it's a converter...\r\n\t\t\t\tresult = read(cookie, value);\r\n\t\t\t\tbreak;\r\n\t\t\t}\r\n\r\n\t\t\t// Prevent storing a cookie that we couldn't decode.\r\n\t\t\tif (!key && (cookie = read(cookie)) !== undefined) {\r\n\t\t\t\tresult[name] = cookie;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\treturn result;\r\n\t};\r\n\r\n\tconfig.defaults = {};\r\n\r\n\t$.removeCookie = function (key, options) {\r\n\t\tif ($.cookie(key) === undefined) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\t// Must not alter options, thus extending a fresh object...\r\n\t\t$.cookie(key, '', $.extend({}, options, { expires: -1 }));\r\n\t\treturn !$.cookie(key);\r\n\t};\r\n\r\n}));\r\n","module.exports = jQuery;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// startup\n// Load entry module and return exports\n// This entry module used 'module' so it can't be inlined\nvar __webpack_exports__ = __webpack_require__(506);\n"],"names":["define","$","pluses","encode","s","config","raw","encodeURIComponent","decode","decodeURIComponent","stringifyCookieValue","value","json","JSON","stringify","String","parseCookieValue","indexOf","slice","replace","parse","e","read","converter","isFunction","cookie","key","options","undefined","extend","defaults","expires","days","t","Date","setTime","document","toUTCString","path","domain","secure","join","result","cookies","split","i","l","length","parts","name","shift","removeCookie","module","exports","jQuery","__webpack_module_cache__","__webpack_exports__","__webpack_require__","moduleId","cachedModule","__webpack_modules__"],"sourceRoot":""}