<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">!function(global,factory){"object"==typeof exports&amp;&amp;"undefined"!=typeof module?module.exports=factory(global):"function"==typeof define&amp;&amp;define.amd?define(factory):factory(global)}("undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:this,(function(global){"use strict";var _Base64=(global=global||{}).Base64,version="2.6.2",b64chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b64tab=function(bin){for(var t={},i=0,l=bin.length;i&lt;l;i++)t[bin.charAt(i)]=i;return t}(b64chars),fromCharCode=String.fromCharCode,cb_utob=function(c){var cc;if(c.length&lt;2)return(cc=c.charCodeAt(0))&lt;128?c:cc&lt;2048?fromCharCode(192|cc&gt;&gt;&gt;6)+fromCharCode(128|63&amp;cc):fromCharCode(224|cc&gt;&gt;&gt;12&amp;15)+fromCharCode(128|cc&gt;&gt;&gt;6&amp;63)+fromCharCode(128|63&amp;cc);var cc=65536+1024*(c.charCodeAt(0)-55296)+(c.charCodeAt(1)-56320);return fromCharCode(240|cc&gt;&gt;&gt;18&amp;7)+fromCharCode(128|cc&gt;&gt;&gt;12&amp;63)+fromCharCode(128|cc&gt;&gt;&gt;6&amp;63)+fromCharCode(128|63&amp;cc)},re_utob=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,utob=function(u){return u.replace(re_utob,cb_utob)},cb_encode=function(ccc){var padlen=[0,2,1][ccc.length%3],ord=ccc.charCodeAt(0)&lt;&lt;16|(ccc.length&gt;1?ccc.charCodeAt(1):0)&lt;&lt;8|(ccc.length&gt;2?ccc.charCodeAt(2):0),chars;return[b64chars.charAt(ord&gt;&gt;&gt;18),b64chars.charAt(ord&gt;&gt;&gt;12&amp;63),padlen&gt;=2?"=":b64chars.charAt(ord&gt;&gt;&gt;6&amp;63),padlen&gt;=1?"=":b64chars.charAt(63&amp;ord)].join("")},btoa=global.btoa&amp;&amp;"function"==typeof global.btoa?function(b){return global.btoa(b)}:function(b){if(b.match(/[^\x00-\xFF]/))throw new RangeError("The string contains invalid characters.");return b.replace(/[\s\S]{1,3}/g,cb_encode)},_encode=function(u){return btoa(utob(String(u)))},mkUriSafe=function(b64){return b64.replace(/[+\/]/g,(function(m0){return"+"==m0?"-":"_"})).replace(/=/g,"")},encode=function(u,urisafe){return urisafe?mkUriSafe(_encode(u)):_encode(u)},encodeURI=function(u){return encode(u,!0)},fromUint8Array;global.Uint8Array&amp;&amp;(fromUint8Array=function(a,urisafe){for(var b64="",i=0,l=a.length;i&lt;l;i+=3){var a0=a[i],a1=a[i+1],a2=a[i+2],ord=a0&lt;&lt;16|a1&lt;&lt;8|a2;b64+=b64chars.charAt(ord&gt;&gt;&gt;18)+b64chars.charAt(ord&gt;&gt;&gt;12&amp;63)+(void 0!==a1?b64chars.charAt(ord&gt;&gt;&gt;6&amp;63):"=")+(void 0!==a2?b64chars.charAt(63&amp;ord):"=")}return urisafe?mkUriSafe(b64):b64});var re_btou=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,cb_btou=function(cccc){switch(cccc.length){case 4:var cp,offset=((7&amp;cccc.charCodeAt(0))&lt;&lt;18|(63&amp;cccc.charCodeAt(1))&lt;&lt;12|(63&amp;cccc.charCodeAt(2))&lt;&lt;6|63&amp;cccc.charCodeAt(3))-65536;return fromCharCode(55296+(offset&gt;&gt;&gt;10))+fromCharCode(56320+(1023&amp;offset));case 3:return fromCharCode((15&amp;cccc.charCodeAt(0))&lt;&lt;12|(63&amp;cccc.charCodeAt(1))&lt;&lt;6|63&amp;cccc.charCodeAt(2));default:return fromCharCode((31&amp;cccc.charCodeAt(0))&lt;&lt;6|63&amp;cccc.charCodeAt(1))}},btou=function(b){return b.replace(re_btou,cb_btou)},cb_decode=function(cccc){var len=cccc.length,padlen=len%4,n=(len&gt;0?b64tab[cccc.charAt(0)]&lt;&lt;18:0)|(len&gt;1?b64tab[cccc.charAt(1)]&lt;&lt;12:0)|(len&gt;2?b64tab[cccc.charAt(2)]&lt;&lt;6:0)|(len&gt;3?b64tab[cccc.charAt(3)]:0),chars=[fromCharCode(n&gt;&gt;&gt;16),fromCharCode(n&gt;&gt;&gt;8&amp;255),fromCharCode(255&amp;n)];return chars.length-=[0,0,2,1][padlen],chars.join("")},_atob=global.atob&amp;&amp;"function"==typeof global.atob?function(a){return global.atob(a)}:function(a){return a.replace(/\S{1,4}/g,cb_decode)},atob=function(a){return _atob(String(a).replace(/[^A-Za-z0-9\+\/]/g,""))},_decode=function(a){return btou(_atob(a))},decode=function(a){return _decode(String(a).replace(/[-_]/g,(function(m0){return"-"==m0?"+":"/"})).replace(/[^A-Za-z0-9\+\/]/g,""))},toUint8Array;global.Uint8Array&amp;&amp;(toUint8Array=function(a){return Uint8Array.from(atob(a),(function(c){return c.charCodeAt(0)}))});var noConflict=function(){var Base64=global.Base64;return global.Base64=_Base64,Base64};if(global.Base64={VERSION:"2.6.2",atob:atob,btoa:btoa,fromBase64:decode,toBase64:encode,utob:utob,encode:encode,encodeURI:encodeURI,btou:btou,decode:decode,noConflict:noConflict,fromUint8Array:fromUint8Array,toUint8Array:toUint8Array},"function"==typeof Object.defineProperty){var noEnum=function(v){return{value:v,enumerable:!1,writable:!0,configurable:!0}};global.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",noEnum((function(){return decode(this)}))),Object.defineProperty(String.prototype,"toBase64",noEnum((function(urisafe){return encode(this,urisafe)}))),Object.defineProperty(String.prototype,"toBase64URI",noEnum((function(){return encode(this,!0)})))}}return global.Meteor&amp;&amp;(Base64=global.Base64),"undefined"!=typeof module&amp;&amp;module.exports?module.exports.Base64=global.Base64:"function"==typeof define&amp;&amp;define.amd&amp;&amp;define([],(function(){return global.Base64})),{Base64:global.Base64}}));</pre></body></html>