@google/earthengine 1.4.6 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/browser.js CHANGED
@@ -11,6 +11,7 @@ $jscomp.arrayIterator = function(array) {
11
11
  };
12
12
  $jscomp.ASSUME_ES5 = !1;
13
13
  $jscomp.ASSUME_ES6 = !1;
14
+ $jscomp.ASSUME_ES2020 = !1;
14
15
  $jscomp.ASSUME_NO_NATIVE_MAP = !1;
15
16
  $jscomp.ASSUME_NO_NATIVE_SET = !1;
16
17
  $jscomp.ISOLATE_POLYFILLS = !1;
@@ -35,7 +36,7 @@ $jscomp.getGlobal = function(passedInThis) {
35
36
  throw Error("Cannot find global object");
36
37
  }();
37
38
  };
38
- $jscomp.global = $jscomp.getGlobal(this);
39
+ $jscomp.global = $jscomp.ASSUME_ES2020 ? globalThis : $jscomp.getGlobal(this);
39
40
  $jscomp.IS_SYMBOL_NATIVE = typeof Symbol === "function" && typeof Symbol("x") === "symbol";
40
41
  $jscomp.TRUST_ES6_POLYFILLS = !$jscomp.ISOLATE_POLYFILLS || $jscomp.IS_SYMBOL_NATIVE;
41
42
  $jscomp.polyfills = {};
@@ -467,6 +468,9 @@ $jscomp.getRestArguments = function() {
467
468
  }
468
469
  return restArgs;
469
470
  };
471
+ $jscomp.polyfill("globalThis", function(orig) {
472
+ return orig || $jscomp.global;
473
+ }, "es_2020", "es3");
470
474
  $jscomp.polyfill("Reflect", function(orig) {
471
475
  return orig ? orig : {};
472
476
  }, "es6", "es3");
@@ -768,9 +772,6 @@ $jscomp.polyfill("Array.prototype.keys", function(orig) {
768
772
  });
769
773
  };
770
774
  }, "es6", "es3");
771
- $jscomp.polyfill("globalThis", function(orig) {
772
- return orig || $jscomp.global;
773
- }, "es_2020", "es3");
774
775
  $jscomp.checkEs6ConformanceViaProxy = function() {
775
776
  try {
776
777
  var proxied = {}, proxy = Object.create(new $jscomp.global.Proxy(proxied, {get:function(target, key, receiver) {
@@ -3169,32 +3170,33 @@ function module$contents$safevalues$dom$elements$button_setButtonFormaction(butt
3169
3170
  var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3170
3171
  sanitizedUrl !== void 0 && (button.formAction = sanitizedUrl);
3171
3172
  }
3172
- ;var module$exports$safevalues$internals$attribute_impl = {}, module$contents$safevalues$internals$attribute_impl_module = module$contents$safevalues$internals$attribute_impl_module || {id:"third_party/javascript/safevalues/internals/attribute_impl.closure.js"};
3173
- module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix = function(token, value) {
3174
- goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
3175
- this.privateDoNotAccessOrElseWrappedAttributePrefix = value;
3176
- };
3177
- module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix.prototype.toString = function() {
3178
- return this.privateDoNotAccessOrElseWrappedAttributePrefix;
3179
- };
3180
- var module$contents$safevalues$internals$attribute_impl_AttributePrefixImpl = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
3181
- function module$contents$safevalues$internals$attribute_impl_createAttributePrefixInternal(value) {
3182
- return new module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix(module$exports$safevalues$internals$secrets.secretToken, value);
3173
+ ;var module$contents$safevalues$dom$elements$embed_module = module$contents$safevalues$dom$elements$embed_module || {id:"third_party/javascript/safevalues/dom/elements/embed.closure.js"};
3174
+ function module$contents$safevalues$dom$elements$embed_setEmbedSrc(embedEl, url) {
3175
+ embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
3183
3176
  }
3184
- module$exports$safevalues$internals$attribute_impl.createAttributePrefixInternal = module$contents$safevalues$internals$attribute_impl_createAttributePrefixInternal;
3185
- function module$contents$safevalues$internals$attribute_impl_isAttributePrefix(value) {
3186
- return value instanceof module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
3177
+ ;var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
3178
+ function module$contents$safevalues$dom$elements$form_setFormAction(form, url) {
3179
+ var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3180
+ sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
3187
3181
  }
3188
- module$exports$safevalues$internals$attribute_impl.isAttributePrefix = module$contents$safevalues$internals$attribute_impl_isAttributePrefix;
3189
- function module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix(value) {
3190
- if (module$contents$safevalues$internals$attribute_impl_isAttributePrefix(value)) {
3191
- return value.privateDoNotAccessOrElseWrappedAttributePrefix;
3192
- }
3193
- var message = "";
3194
- goog.DEBUG && (message = "Unexpected type when unwrapping SafeAttributePrefix, got '" + value + "' of type '" + typeof value + "'");
3195
- throw Error(message);
3182
+ module$exports$safevalues$dom$elements$form.setFormAction = module$contents$safevalues$dom$elements$form_setFormAction;
3183
+ function module$contents$safevalues$dom$elements$form_setFormActionLite(form, url) {
3184
+ module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (form.action = url);
3196
3185
  }
3197
- module$exports$safevalues$internals$attribute_impl.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
3186
+ module$exports$safevalues$dom$elements$form.setFormActionLite = module$contents$safevalues$dom$elements$form_setFormActionLite;
3187
+ var module$exports$check = {}, module$contents$check_module = module$contents$check_module || {id:"javascript/typescript/contrib/check.closure.js"};
3188
+ function module$contents$check_checkExhaustive(value, msg) {
3189
+ return module$contents$check_checkExhaustiveAllowing(value, msg);
3190
+ }
3191
+ module$exports$check.checkExhaustive = module$contents$check_checkExhaustive;
3192
+ function module$contents$check_checkExhaustiveAllowing(value, msg) {
3193
+ throw Error(msg === void 0 ? "unexpected value " + value + "!" : msg);
3194
+ }
3195
+ module$exports$check.checkExhaustiveAllowing = module$contents$check_checkExhaustiveAllowing;
3196
+ module$exports$check.assumeExhaustive = function(value) {
3197
+ };
3198
+ module$exports$check.assumeExhaustiveAllowing = function(value) {
3199
+ };
3198
3200
  var module$exports$safevalues$internals$html_impl = {}, module$contents$safevalues$internals$html_impl_module = module$contents$safevalues$internals$html_impl_module || {id:"third_party/javascript/safevalues/internals/html_impl.closure.js"};
3199
3201
  module$exports$safevalues$internals$html_impl.SafeHtml = function(token, value) {
3200
3202
  goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
@@ -3226,84 +3228,6 @@ module$exports$safevalues$internals$html_impl.unwrapHtml = function(value) {
3226
3228
  goog.DEBUG && (message = "Unexpected type when unwrapping SafeHtml");
3227
3229
  throw Error(message);
3228
3230
  };
3229
- var module$exports$safevalues$dom$elements$element = {}, module$contents$safevalues$dom$elements$element_module = module$contents$safevalues$dom$elements$element_module || {id:"third_party/javascript/safevalues/dom/elements/element.closure.js"}, module$contents$safevalues$dom$elements$element_ScriptOrStyle;
3230
- function module$contents$safevalues$dom$elements$element_setElementInnerHtml(elOrRoot, v) {
3231
- module$contents$safevalues$dom$elements$element_isElement(elOrRoot) && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(elOrRoot);
3232
- elOrRoot.innerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
3233
- }
3234
- module$exports$safevalues$dom$elements$element.setElementInnerHtml = module$contents$safevalues$dom$elements$element_setElementInnerHtml;
3235
- function module$contents$safevalues$dom$elements$element_setElementOuterHtml(e, v) {
3236
- var parent = e.parentElement;
3237
- parent !== null && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(parent);
3238
- e.outerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
3239
- }
3240
- module$exports$safevalues$dom$elements$element.setElementOuterHtml = module$contents$safevalues$dom$elements$element_setElementOuterHtml;
3241
- function module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml(element, position, v) {
3242
- var tagContext = position === "beforebegin" || position === "afterend" ? element.parentElement : element;
3243
- tagContext !== null && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(tagContext);
3244
- element.insertAdjacentHTML(position, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v));
3245
- }
3246
- module$exports$safevalues$dom$elements$element.elementInsertAdjacentHtml = module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml;
3247
- function module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter(prefix) {
3248
- var prefixes = [prefix].concat((0,$jscomp.arrayFromIterable)($jscomp.getRestArguments.apply(1, arguments)));
3249
- return function(e, attr, value) {
3250
- module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute(prefixes, e, attr, value);
3251
- };
3252
- }
3253
- module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter = module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter;
3254
- function module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute(attrPrefixes, e, attr, value) {
3255
- if (attrPrefixes.length === 0) {
3256
- var message = "";
3257
- goog.DEBUG && (message = "No prefixes are provided");
3258
- throw Error(message);
3259
- }
3260
- var prefixes = attrPrefixes.map(function(s) {
3261
- return module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix(s);
3262
- }), attrLower = attr.toLowerCase();
3263
- if (prefixes.every(function(p) {
3264
- return attrLower.indexOf(p) !== 0;
3265
- })) {
3266
- throw Error('Attribute "' + attr + '" does not match any of the allowed prefixes.');
3267
- }
3268
- e.setAttribute(attr, value);
3269
- }
3270
- module$exports$safevalues$dom$elements$element.setElementPrefixedAttribute = module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute;
3271
- function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(element) {
3272
- var message = "", tagName = element.tagName;
3273
- if (/^(script|style)$/i.test(tagName)) {
3274
- throw goog.DEBUG && (message = tagName.toLowerCase() === "script" ? "Use setScriptTextContent with a SafeScript." : "Use setStyleTextContent with a SafeStyleSheet."), Error(message);
3275
- }
3276
- }
3277
- function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
3278
- return elOrRoot.nodeType === 1;
3279
- }
3280
- ;var module$contents$safevalues$dom$elements$embed_module = module$contents$safevalues$dom$elements$embed_module || {id:"third_party/javascript/safevalues/dom/elements/embed.closure.js"};
3281
- function module$contents$safevalues$dom$elements$embed_setEmbedSrc(embedEl, url) {
3282
- embedEl.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url);
3283
- }
3284
- ;var module$exports$safevalues$dom$elements$form = {}, module$contents$safevalues$dom$elements$form_module = module$contents$safevalues$dom$elements$form_module || {id:"third_party/javascript/safevalues/dom/elements/form.closure.js"};
3285
- function module$contents$safevalues$dom$elements$form_setFormAction(form, url) {
3286
- var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3287
- sanitizedUrl !== void 0 && (form.action = sanitizedUrl);
3288
- }
3289
- module$exports$safevalues$dom$elements$form.setFormAction = module$contents$safevalues$dom$elements$form_setFormAction;
3290
- function module$contents$safevalues$dom$elements$form_setFormActionLite(form, url) {
3291
- module$contents$safevalues$builders$url_builders_reportJavaScriptUrl(url) || (form.action = url);
3292
- }
3293
- module$exports$safevalues$dom$elements$form.setFormActionLite = module$contents$safevalues$dom$elements$form_setFormActionLite;
3294
- var module$exports$check = {}, module$contents$check_module = module$contents$check_module || {id:"javascript/typescript/contrib/check.closure.js"};
3295
- function module$contents$check_checkExhaustive(value, msg) {
3296
- return module$contents$check_checkExhaustiveAllowing(value, msg);
3297
- }
3298
- module$exports$check.checkExhaustive = module$contents$check_checkExhaustive;
3299
- function module$contents$check_checkExhaustiveAllowing(value, msg) {
3300
- throw Error(msg === void 0 ? "unexpected value " + value + "!" : msg);
3301
- }
3302
- module$exports$check.checkExhaustiveAllowing = module$contents$check_checkExhaustiveAllowing;
3303
- module$exports$check.assumeExhaustive = function(value) {
3304
- };
3305
- module$exports$check.assumeExhaustiveAllowing = function(value) {
3306
- };
3307
3231
  var module$exports$safevalues$dom$elements$iframe = {}, module$contents$safevalues$dom$elements$iframe_module = module$contents$safevalues$dom$elements$iframe_module || {id:"third_party/javascript/safevalues/dom/elements/iframe.closure.js"};
3308
3232
  function module$contents$safevalues$dom$elements$iframe_setIframeSrc(iframe, v) {
3309
3233
  iframe.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(v).toString();
@@ -3403,25 +3327,7 @@ function module$contents$safevalues$dom$elements$input_setInputFormaction(input,
3403
3327
  var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3404
3328
  sanitizedUrl !== void 0 && (input.formAction = sanitizedUrl);
3405
3329
  }
3406
- ;var module$exports$safevalues$dom$elements$link = {}, module$contents$safevalues$dom$elements$link_module = module$contents$safevalues$dom$elements$link_module || {id:"third_party/javascript/safevalues/dom/elements/link.closure.js"}, module$contents$safevalues$dom$elements$link_SAFE_URL_REL_VALUES = "alternate author bookmark canonical cite help icon license modulepreload next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" ");
3407
- function module$contents$safevalues$dom$elements$link_setLinkHrefAndRel(link, url, rel) {
3408
- if (module$contents$safevalues$internals$resource_url_impl_isResourceUrl(url)) {
3409
- module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel(link, url, rel);
3410
- } else {
3411
- if (module$contents$safevalues$dom$elements$link_SAFE_URL_REL_VALUES.indexOf(rel) === -1) {
3412
- throw Error('TrustedResourceUrl href attribute required with rel="' + rel + '"');
3413
- }
3414
- var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3415
- sanitizedUrl !== void 0 && (link.href = sanitizedUrl, link.rel = rel);
3416
- }
3417
- }
3418
- module$exports$safevalues$dom$elements$link.setLinkHrefAndRel = module$contents$safevalues$dom$elements$link_setLinkHrefAndRel;
3419
- function module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel(link, url, rel) {
3420
- link.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url).toString();
3421
- link.rel = rel;
3422
- }
3423
- module$exports$safevalues$dom$elements$link.setLinkWithResourceUrlHrefAndRel = module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel;
3424
- var module$contents$safevalues$dom$elements$object_module = module$contents$safevalues$dom$elements$object_module || {id:"third_party/javascript/safevalues/dom/elements/object.closure.js"};
3330
+ ;var module$contents$safevalues$dom$elements$object_module = module$contents$safevalues$dom$elements$object_module || {id:"third_party/javascript/safevalues/dom/elements/object.closure.js"};
3425
3331
  function module$contents$safevalues$dom$elements$object_setObjectData(obj, v) {
3426
3332
  obj.data = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(v);
3427
3333
  }
@@ -3431,17 +3337,17 @@ function module$contents$safevalues$dom$globals$window_windowOpen(win, url, targ
3431
3337
  return sanitizedUrl !== void 0 ? win.open(sanitizedUrl, target, features) : null;
3432
3338
  }
3433
3339
  module$exports$safevalues$dom$globals$window.windowOpen = module$contents$safevalues$dom$globals$window_windowOpen;
3434
- function module$contents$safevalues$dom$globals$window_getScriptNonce(documentOrWindow) {
3435
- return module$contents$safevalues$dom$globals$window_getNonceFor("script", documentOrWindow);
3340
+ function module$contents$safevalues$dom$globals$window_getScriptNonce(doc) {
3341
+ return module$contents$safevalues$dom$globals$window_getNonceFor("script", doc);
3436
3342
  }
3437
3343
  module$exports$safevalues$dom$globals$window.getScriptNonce = module$contents$safevalues$dom$globals$window_getScriptNonce;
3438
- function module$contents$safevalues$dom$globals$window_getStyleNonce(documentOrWindow) {
3439
- return module$contents$safevalues$dom$globals$window_getNonceFor("style", documentOrWindow);
3344
+ function module$contents$safevalues$dom$globals$window_getStyleNonce(doc) {
3345
+ return module$contents$safevalues$dom$globals$window_getNonceFor("style", doc);
3440
3346
  }
3441
3347
  module$exports$safevalues$dom$globals$window.getStyleNonce = module$contents$safevalues$dom$globals$window_getStyleNonce;
3442
- function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, documentOrWindow) {
3443
- documentOrWindow = documentOrWindow === void 0 ? document : documentOrWindow;
3444
- var $jscomp$optchain$tmpm1987982378$0, $jscomp$optchain$tmpm1987982378$1, el = ($jscomp$optchain$tmpm1987982378$1 = ($jscomp$optchain$tmpm1987982378$0 = "document" in documentOrWindow ? documentOrWindow.document : documentOrWindow).querySelector) == null ? void 0 : $jscomp$optchain$tmpm1987982378$1.call($jscomp$optchain$tmpm1987982378$0, elementName + "[nonce]");
3348
+ function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, doc) {
3349
+ doc = doc === void 0 ? document : doc;
3350
+ var $jscomp$optchain$tmpm1987982378$0, $jscomp$optchain$tmpm1987982378$1, el = ($jscomp$optchain$tmpm1987982378$1 = ($jscomp$optchain$tmpm1987982378$0 = doc).querySelector) == null ? void 0 : $jscomp$optchain$tmpm1987982378$1.call($jscomp$optchain$tmpm1987982378$0, elementName + "[nonce]");
3445
3351
  return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
3446
3352
  }
3447
3353
  ;var module$exports$safevalues$internals$script_impl = {}, module$contents$safevalues$internals$script_impl_module = module$contents$safevalues$internals$script_impl_module || {id:"third_party/javascript/safevalues/internals/script_impl.closure.js"};
@@ -3492,6 +3398,154 @@ function module$contents$safevalues$dom$elements$script_setScriptSrc(script, v,
3492
3398
  (options == null ? 0 : options.omitNonce) || module$contents$safevalues$dom$elements$script_setNonceForScriptElement(script);
3493
3399
  }
3494
3400
  module$exports$safevalues$dom$elements$script.setScriptSrc = module$contents$safevalues$dom$elements$script_setScriptSrc;
3401
+ var module$exports$safevalues$internals$attribute_impl = {}, module$contents$safevalues$internals$attribute_impl_module = module$contents$safevalues$internals$attribute_impl_module || {id:"third_party/javascript/safevalues/internals/attribute_impl.closure.js"};
3402
+ module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix = function(token, value) {
3403
+ goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
3404
+ this.privateDoNotAccessOrElseWrappedAttributePrefix = value;
3405
+ };
3406
+ module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix.prototype.toString = function() {
3407
+ return this.privateDoNotAccessOrElseWrappedAttributePrefix;
3408
+ };
3409
+ var module$contents$safevalues$internals$attribute_impl_AttributePrefixImpl = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
3410
+ function module$contents$safevalues$internals$attribute_impl_createAttributePrefixInternal(value) {
3411
+ return new module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix(module$exports$safevalues$internals$secrets.secretToken, value);
3412
+ }
3413
+ module$exports$safevalues$internals$attribute_impl.createAttributePrefixInternal = module$contents$safevalues$internals$attribute_impl_createAttributePrefixInternal;
3414
+ function module$contents$safevalues$internals$attribute_impl_isAttributePrefix(value) {
3415
+ return value instanceof module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
3416
+ }
3417
+ module$exports$safevalues$internals$attribute_impl.isAttributePrefix = module$contents$safevalues$internals$attribute_impl_isAttributePrefix;
3418
+ function module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix(value) {
3419
+ if (module$contents$safevalues$internals$attribute_impl_isAttributePrefix(value)) {
3420
+ return value.privateDoNotAccessOrElseWrappedAttributePrefix;
3421
+ }
3422
+ var message = "";
3423
+ goog.DEBUG && (message = "Unexpected type when unwrapping SafeAttributePrefix, got '" + value + "' of type '" + typeof value + "'");
3424
+ throw Error(message);
3425
+ }
3426
+ module$exports$safevalues$internals$attribute_impl.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
3427
+ var module$exports$safevalues$dom$elements$element = {}, module$contents$safevalues$dom$elements$element_module = module$contents$safevalues$dom$elements$element_module || {id:"third_party/javascript/safevalues/dom/elements/element.closure.js"}, module$contents$safevalues$dom$elements$element_ScriptOrStyle;
3428
+ function module$contents$safevalues$dom$elements$element_setElementInnerHtml(elOrRoot, v) {
3429
+ module$contents$safevalues$dom$elements$element_isElement(elOrRoot) && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(elOrRoot);
3430
+ elOrRoot.innerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
3431
+ }
3432
+ module$exports$safevalues$dom$elements$element.setElementInnerHtml = module$contents$safevalues$dom$elements$element_setElementInnerHtml;
3433
+ function module$contents$safevalues$dom$elements$element_setElementOuterHtml(e, v) {
3434
+ var parent = e.parentElement;
3435
+ parent !== null && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(parent);
3436
+ e.outerHTML = (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v);
3437
+ }
3438
+ module$exports$safevalues$dom$elements$element.setElementOuterHtml = module$contents$safevalues$dom$elements$element_setElementOuterHtml;
3439
+ function module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml(element, position, v) {
3440
+ var tagContext = position === "beforebegin" || position === "afterend" ? element.parentElement : element;
3441
+ tagContext !== null && module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(tagContext);
3442
+ element.insertAdjacentHTML(position, (0,module$exports$safevalues$internals$html_impl.unwrapHtml)(v));
3443
+ }
3444
+ module$exports$safevalues$dom$elements$element.elementInsertAdjacentHtml = module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml;
3445
+ function module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter(prefix) {
3446
+ var prefixes = [prefix].concat((0,$jscomp.arrayFromIterable)($jscomp.getRestArguments.apply(1, arguments)));
3447
+ return function(e, attr, value) {
3448
+ module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute(prefixes, e, attr, value);
3449
+ };
3450
+ }
3451
+ module$exports$safevalues$dom$elements$element.buildPrefixedAttributeSetter = module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter;
3452
+ function module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute(attrPrefixes, e, attr, value) {
3453
+ if (attrPrefixes.length === 0) {
3454
+ var message = "";
3455
+ goog.DEBUG && (message = "No prefixes are provided");
3456
+ throw Error(message);
3457
+ }
3458
+ var prefixes = attrPrefixes.map(function(s) {
3459
+ return module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix(s);
3460
+ }), attrLower = attr.toLowerCase();
3461
+ if (prefixes.every(function(p) {
3462
+ return attrLower.indexOf(p) !== 0;
3463
+ })) {
3464
+ throw Error('Attribute "' + attr + '" does not match any of the allowed prefixes.');
3465
+ }
3466
+ e.setAttribute(attr, value);
3467
+ }
3468
+ module$exports$safevalues$dom$elements$element.setElementPrefixedAttribute = module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute;
3469
+ function module$contents$safevalues$dom$elements$element_throwIfScriptOrStyle(element) {
3470
+ var message = "", tagName = element.tagName;
3471
+ if (/^(script|style)$/i.test(tagName)) {
3472
+ throw goog.DEBUG && (message = tagName.toLowerCase() === "script" ? "Use setScriptTextContent with a SafeScript." : "Use setStyleTextContent with a SafeStyleSheet."), Error(message);
3473
+ }
3474
+ }
3475
+ function module$contents$safevalues$dom$elements$element_isElement(elOrRoot) {
3476
+ return elOrRoot.nodeType === 1;
3477
+ }
3478
+ function module$contents$safevalues$dom$elements$element_setElementAttribute(el, attr, value) {
3479
+ if (el.namespaceURI !== "http://www.w3.org/1999/xhtml") {
3480
+ throw Error("Cannot set attribute '" + attr + "' on '" + el.tagName + "'.Element is not in the HTML namespace");
3481
+ }
3482
+ attr = attr.toLowerCase();
3483
+ switch(el.tagName + " " + attr) {
3484
+ case "A href":
3485
+ module$contents$safevalues$dom$elements$anchor_setAnchorHref(el, value);
3486
+ break;
3487
+ case "AREA href":
3488
+ module$contents$safevalues$dom$elements$area_setAreaHref(el, value);
3489
+ break;
3490
+ case "BASE href":
3491
+ module$contents$safevalues$dom$elements$base_setBaseHref(el, value);
3492
+ break;
3493
+ case "BUTTON formaction":
3494
+ module$contents$safevalues$dom$elements$button_setButtonFormaction(el, value);
3495
+ break;
3496
+ case "EMBED src":
3497
+ module$contents$safevalues$dom$elements$embed_setEmbedSrc(el, value);
3498
+ break;
3499
+ case "FORM action":
3500
+ module$contents$safevalues$dom$elements$form_setFormAction(el, value);
3501
+ break;
3502
+ case "IFRAME src":
3503
+ module$contents$safevalues$dom$elements$iframe_setIframeSrc(el, value);
3504
+ break;
3505
+ case "IFRAME srcdoc":
3506
+ module$contents$safevalues$dom$elements$iframe_setIframeSrcdoc(el, value);
3507
+ break;
3508
+ case "IFRAME sandbox":
3509
+ throw Error("Can't set 'sandbox' on iframe tags. Use setIframeSrcWithIntent or setIframeSrcdocWithIntent instead");
3510
+ case "INPUT formaction":
3511
+ module$contents$safevalues$dom$elements$input_setInputFormaction(el, value);
3512
+ break;
3513
+ case "LINK href":
3514
+ throw Error("Can't set 'href' attribute on link tags. Use setLinkHrefAndRel instead");
3515
+ case "LINK rel":
3516
+ throw Error("Can't set 'rel' attribute on link tags. Use setLinkHrefAndRel instead");
3517
+ case "OBJECT data":
3518
+ module$contents$safevalues$dom$elements$object_setObjectData(el, value);
3519
+ break;
3520
+ case "SCRIPT src":
3521
+ module$contents$safevalues$dom$elements$script_setScriptSrc(el, value);
3522
+ break;
3523
+ default:
3524
+ if (/^on./.test(attr)) {
3525
+ throw Error('Attribute "' + attr + '" looks like an event handler attribute. Please use a safe alternative like addEventListener instead.');
3526
+ }
3527
+ el.setAttribute(attr, value);
3528
+ }
3529
+ }
3530
+ module$exports$safevalues$dom$elements$element.setElementAttribute = module$contents$safevalues$dom$elements$element_setElementAttribute;
3531
+ var module$exports$safevalues$dom$elements$link = {}, module$contents$safevalues$dom$elements$link_module = module$contents$safevalues$dom$elements$link_module || {id:"third_party/javascript/safevalues/dom/elements/link.closure.js"}, module$contents$safevalues$dom$elements$link_SAFE_URL_REL_VALUES = "alternate author bookmark canonical cite help icon license modulepreload next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" ");
3532
+ function module$contents$safevalues$dom$elements$link_setLinkHrefAndRel(link, url, rel) {
3533
+ if (module$contents$safevalues$internals$resource_url_impl_isResourceUrl(url)) {
3534
+ module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel(link, url, rel);
3535
+ } else {
3536
+ if (module$contents$safevalues$dom$elements$link_SAFE_URL_REL_VALUES.indexOf(rel) === -1) {
3537
+ throw Error('TrustedResourceUrl href attribute required with rel="' + rel + '"');
3538
+ }
3539
+ var sanitizedUrl = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize(url);
3540
+ sanitizedUrl !== void 0 && (link.href = sanitizedUrl, link.rel = rel);
3541
+ }
3542
+ }
3543
+ module$exports$safevalues$dom$elements$link.setLinkHrefAndRel = module$contents$safevalues$dom$elements$link_setLinkHrefAndRel;
3544
+ function module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel(link, url, rel) {
3545
+ link.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url).toString();
3546
+ link.rel = rel;
3547
+ }
3548
+ module$exports$safevalues$dom$elements$link.setLinkWithResourceUrlHrefAndRel = module$contents$safevalues$dom$elements$link_setLinkWithResourceUrlHrefAndRel;
3495
3549
  var module$exports$safevalues$internals$style_sheet_impl = {}, module$contents$safevalues$internals$style_sheet_impl_module = module$contents$safevalues$internals$style_sheet_impl_module || {id:"third_party/javascript/safevalues/internals/style_sheet_impl.closure.js"};
3496
3550
  module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet = function(token, value) {
3497
3551
  goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
@@ -4127,14 +4181,14 @@ goog.array.concatMap = function(arr, f, opt_obj) {
4127
4181
  return module$contents$goog$array_concat.apply([], module$contents$goog$array_map(arr, f, opt_obj));
4128
4182
  };
4129
4183
  goog.debug.errorcontext = {};
4130
- goog.debug.errorcontext.addErrorContext = function(err, contextKey, contextValue) {
4131
- err[goog.debug.errorcontext.CONTEXT_KEY_] || (err[goog.debug.errorcontext.CONTEXT_KEY_] = {});
4132
- err[goog.debug.errorcontext.CONTEXT_KEY_][contextKey] = contextValue;
4133
- };
4184
+ function module$contents$goog$debug$errorcontext_addErrorContext(err, contextKey, contextValue) {
4185
+ err.__closure__error__context__984382 || (err.__closure__error__context__984382 = {});
4186
+ err.__closure__error__context__984382[contextKey] = contextValue;
4187
+ }
4188
+ goog.debug.errorcontext.addErrorContext = module$contents$goog$debug$errorcontext_addErrorContext;
4134
4189
  goog.debug.errorcontext.getErrorContext = function(err) {
4135
- return err[goog.debug.errorcontext.CONTEXT_KEY_] || {};
4190
+ return err.__closure__error__context__984382 || {};
4136
4191
  };
4137
- goog.debug.errorcontext.CONTEXT_KEY_ = "__closure__error__context__984382";
4138
4192
  goog.debug.LOGGING_ENABLED = goog.DEBUG;
4139
4193
  goog.debug.FORCE_SLOPPY_STACKS = !1;
4140
4194
  goog.debug.CHECK_FOR_THROWN_EVENT = !1;
@@ -4294,7 +4348,7 @@ goog.debug.enhanceErrorWithContext = function(err, opt_context) {
4294
4348
  var error = goog.debug.enhanceError(err);
4295
4349
  if (opt_context) {
4296
4350
  for (var key in opt_context) {
4297
- goog.debug.errorcontext.addErrorContext(error, key, opt_context[key]);
4351
+ module$contents$goog$debug$errorcontext_addErrorContext(error, key, opt_context[key]);
4298
4352
  }
4299
4353
  }
4300
4354
  return error;
@@ -4853,6 +4907,7 @@ module$exports$safevalues$dom$index.setBaseHref = module$contents$safevalues$dom
4853
4907
  module$exports$safevalues$dom$index.setButtonFormaction = module$contents$safevalues$dom$elements$button_setButtonFormaction;
4854
4908
  module$exports$safevalues$dom$index.buildPrefixedAttributeSetter = module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter;
4855
4909
  module$exports$safevalues$dom$index.elementInsertAdjacentHtml = module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml;
4910
+ module$exports$safevalues$dom$index.setElementAttribute = module$contents$safevalues$dom$elements$element_setElementAttribute;
4856
4911
  module$exports$safevalues$dom$index.setElementInnerHtml = module$contents$safevalues$dom$elements$element_setElementInnerHtml;
4857
4912
  module$exports$safevalues$dom$index.setElementOuterHtml = module$contents$safevalues$dom$elements$element_setElementOuterHtml;
4858
4913
  module$exports$safevalues$dom$index.setElementPrefixedAttribute = module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute;
@@ -4902,6 +4957,7 @@ safevalues.dom.setBaseHref = module$contents$safevalues$dom$elements$base_setBas
4902
4957
  safevalues.dom.setButtonFormaction = module$contents$safevalues$dom$elements$button_setButtonFormaction;
4903
4958
  safevalues.dom.buildPrefixedAttributeSetter = module$contents$safevalues$dom$elements$element_buildPrefixedAttributeSetter;
4904
4959
  safevalues.dom.elementInsertAdjacentHtml = module$contents$safevalues$dom$elements$element_elementInsertAdjacentHtml;
4960
+ safevalues.dom.setElementAttribute = module$contents$safevalues$dom$elements$element_setElementAttribute;
4905
4961
  safevalues.dom.setElementInnerHtml = module$contents$safevalues$dom$elements$element_setElementInnerHtml;
4906
4962
  safevalues.dom.setElementOuterHtml = module$contents$safevalues$dom$elements$element_setElementOuterHtml;
4907
4963
  safevalues.dom.setElementPrefixedAttribute = module$contents$safevalues$dom$elements$element_setElementPrefixedAttribute;
@@ -7228,18 +7284,19 @@ goog.userAgent.DOCUMENT_MODE = function() {
7228
7284
  }
7229
7285
  }();
7230
7286
  goog.events.eventTypeHelpers = {};
7231
- goog.events.eventTypeHelpers.getVendorPrefixedName = function(eventName) {
7287
+ function module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName(eventName) {
7232
7288
  return goog.userAgent.WEBKIT ? "webkit" + eventName : eventName.toLowerCase();
7233
- };
7289
+ }
7234
7290
  goog.events.eventTypeHelpers.getPointerFallbackEventName = function(pointerEventName, fallbackEventName) {
7235
7291
  return goog.events.BrowserFeature.POINTER_EVENTS ? pointerEventName : fallbackEventName;
7236
7292
  };
7293
+ goog.events.eventTypeHelpers.getVendorPrefixedName = module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName;
7237
7294
  goog.events.EventType = {CLICK:"click", RIGHTCLICK:"rightclick", DBLCLICK:"dblclick", AUXCLICK:"auxclick", MOUSEDOWN:"mousedown", MOUSEUP:"mouseup", MOUSEOVER:"mouseover", MOUSEOUT:"mouseout", MOUSEMOVE:"mousemove", MOUSEENTER:"mouseenter", MOUSELEAVE:"mouseleave", MOUSECANCEL:"mousecancel", SELECTIONCHANGE:"selectionchange", SELECTSTART:"selectstart", WHEEL:"wheel", KEYPRESS:"keypress", KEYDOWN:"keydown", KEYUP:"keyup", BLUR:"blur", FOCUS:"focus", DEACTIVATE:"deactivate", FOCUSIN:"focusin", FOCUSOUT:"focusout",
7238
7295
  CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange", DEVICEMOTION:"devicemotion", DEVICEORIENTATION:"deviceorientation",
7239
7296
  DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play", PLAYING:"playing", PROGRESS:"progress", RATECHANGE:"ratechange",
7240
7297
  SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut", BEFORECOPY:"beforecopy", BEFORECUT:"beforecut", BEFOREPASTE:"beforepaste",
7241
- ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationStart"), ANIMATIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationEnd"), ANIMATIONITERATION:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationIteration"),
7242
- TRANSITIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture", MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart",
7298
+ ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationStart"), ANIMATIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationEnd"), ANIMATIONITERATION:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("AnimationIteration"),
7299
+ TRANSITIONEND:module$contents$goog$events$eventTypeHelpers_getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture", MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart",
7243
7300
  MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut", MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:"textInput", COMPOSITIONSTART:"compositionstart",
7244
7301
  COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive", SIZECHANGED:"sizechanged", UNRESPONSIVE:"unresponsive", VISIBILITYCHANGE:"visibilitychange", STORAGE:"storage", BEFOREPRINT:"beforeprint",
7245
7302
  AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
@@ -7455,7 +7512,6 @@ module$contents$goog$events$ListenerMap_ListenerMap.findListenerIndex_ = functio
7455
7512
  };
7456
7513
  goog.events.ListenerMap = module$contents$goog$events$ListenerMap_ListenerMap;
7457
7514
  goog.events.Key = {};
7458
- goog.events.ListenableType = {};
7459
7515
  goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (Math.random() * 1E6 | 0);
7460
7516
  goog.events.onString_ = "on";
7461
7517
  goog.events.onStringMap_ = {};
@@ -8176,7 +8232,6 @@ goog.math.safeCeil = function(num, opt_epsilon) {
8176
8232
  return Math.ceil(num - (opt_epsilon || 2E-15));
8177
8233
  };
8178
8234
  goog.iter = {};
8179
- goog.iter.Iterable = {};
8180
8235
  goog.iter.Iterator = function() {
8181
8236
  };
8182
8237
  goog.iter.Iterator.prototype.next = function() {
@@ -15812,7 +15867,7 @@ goog.string.Const.TYPE_MARKER_ = {};
15812
15867
  goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ = {};
15813
15868
  goog.string.Const.EMPTY = goog.string.Const.from("");
15814
15869
  var module$exports$safevalues$builders$sensitive_attributes = {}, module$contents$safevalues$builders$sensitive_attributes_module = module$contents$safevalues$builders$sensitive_attributes_module || {id:"third_party/javascript/safevalues/builders/sensitive_attributes.closure.js"};
15815
- module$exports$safevalues$builders$sensitive_attributes.SECURITY_SENSITIVE_ATTRIBUTES = "src srcdoc codebase data href rel action formaction sandbox cite poster icon".split(" ");
15870
+ module$exports$safevalues$builders$sensitive_attributes.SECURITY_SENSITIVE_ATTRIBUTES = "src srcdoc codebase data href rel action formaction sandbox icon".split(" ");
15816
15871
  var module$contents$safevalues$builders$attribute_builders_module = module$contents$safevalues$builders$attribute_builders_module || {id:"third_party/javascript/safevalues/builders/attribute_builders.closure.js"};
15817
15872
  function module$contents$safevalues$builders$attribute_builders_safeAttrPrefix(templ) {
15818
15873
  goog.DEBUG && module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templ, 0);
@@ -16797,14 +16852,14 @@ module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanit
16797
16852
  ["LINK", new Map([["href", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY, conditions:new Map([["rel", new Set("alternate author bookmark canonical cite help icon license next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" "))]])}]])], ["SOURCE", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}],
16798
16853
  ["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])], ["IMG", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}], ["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])],
16799
16854
  ["VIDEO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])], ["AUDIO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])]], module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_ALLOWED_GLOBAL_ATTRIBUTES =
16800
- "title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked color cols colspan controls datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
16855
+ "title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
16801
16856
  module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_GLOBAL_ATTRIBUTE_POLICIES = [["dir", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16802
16857
  return new Map([["dir", new Set(["auto", "ltr", "rtl"])]]);
16803
16858
  })}], ["async", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16804
16859
  return new Map([["async", new Set(["async"])]]);
16805
- })}], ["cite", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_SANITIZE_URL}], ["loading", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16860
+ })}], ["loading", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16806
16861
  return new Map([["loading", new Set(["eager", "lazy"])]]);
16807
- })}], ["poster", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_SANITIZE_URL}], ["target", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16862
+ })}], ["target", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16808
16863
  return new Map([["target", new Set(["_self", "_blank"])]]);
16809
16864
  })}]];
16810
16865
  module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE = new module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.SanitizerTable(new Set(module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_ALLOWED_ELEMENTS), new Map(module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_ELEMENT_POLICIES),
@@ -19252,7 +19307,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19252
19307
  ee.apiclient = {};
19253
19308
  var module$contents$ee$apiclient_apiclient = {};
19254
19309
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19255
- ee.apiclient.API_CLIENT_VERSION = "1.4.6";
19310
+ ee.apiclient.API_CLIENT_VERSION = "1.5.0";
19256
19311
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19257
19312
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19258
19313
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19550,8 +19605,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19550
19605
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19551
19606
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19552
19607
  method = method || "POST";
19553
- var headers = {"Content-Type":contentType}, version = "1.4.6";
19554
- version === "1.4.6" && (version = "latest");
19608
+ var headers = {"Content-Type":contentType}, version = "1.5.0";
19609
+ version === "1.5.0" && (version = "latest");
19555
19610
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19556
19611
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19557
19612
  if (authToken != null) {
@@ -25010,17 +25065,20 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
25010
25065
  return deferred;
25011
25066
  };
25012
25067
  goog.dom.vendor = {};
25013
- goog.dom.vendor.getVendorJsPrefix = function() {
25068
+ function module$contents$goog$dom$vendor_getVendorJsPrefix() {
25014
25069
  return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
25015
- };
25016
- goog.dom.vendor.getVendorPrefix = function() {
25070
+ }
25071
+ function module$contents$goog$dom$vendor_getVendorPrefix() {
25017
25072
  return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
25073
+ }
25074
+ goog.dom.vendor.getPrefixedEventType = function(eventType) {
25075
+ return ((module$contents$goog$dom$vendor_getVendorJsPrefix() || "") + eventType).toLowerCase();
25018
25076
  };
25019
25077
  goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
25020
25078
  if (opt_object && propertyName in opt_object) {
25021
25079
  return propertyName;
25022
25080
  }
25023
- var prefix = goog.dom.vendor.getVendorJsPrefix();
25081
+ var prefix = module$contents$goog$dom$vendor_getVendorJsPrefix();
25024
25082
  if (prefix) {
25025
25083
  prefix = prefix.toLowerCase();
25026
25084
  var prefixedPropertyName = prefix + goog.string.toTitleCase(propertyName);
@@ -25028,9 +25086,8 @@ goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
25028
25086
  }
25029
25087
  return null;
25030
25088
  };
25031
- goog.dom.vendor.getPrefixedEventType = function(eventType) {
25032
- return ((goog.dom.vendor.getVendorJsPrefix() || "") + eventType).toLowerCase();
25033
- };
25089
+ goog.dom.vendor.getVendorJsPrefix = module$contents$goog$dom$vendor_getVendorJsPrefix;
25090
+ goog.dom.vendor.getVendorPrefix = module$contents$goog$dom$vendor_getVendorPrefix;
25034
25091
  function module$contents$goog$math$Box_Box(top, right, bottom, left) {
25035
25092
  this.top = top;
25036
25093
  this.right = right;
@@ -25288,7 +25345,7 @@ goog.style.getVendorJsStyleName_ = function(element, style) {
25288
25345
  var camelStyle = goog.string.toCamelCase(style);
25289
25346
  propertyName = camelStyle;
25290
25347
  if (element.style[camelStyle] === void 0) {
25291
- var prefixedStyle = goog.dom.vendor.getVendorJsPrefix() + goog.string.toTitleCase(camelStyle);
25348
+ var prefixedStyle = module$contents$goog$dom$vendor_getVendorJsPrefix() + goog.string.toTitleCase(camelStyle);
25292
25349
  element.style[prefixedStyle] !== void 0 && (propertyName = prefixedStyle);
25293
25350
  }
25294
25351
  goog.style.styleNameCache_[style] = propertyName;
@@ -25298,9 +25355,9 @@ goog.style.getVendorJsStyleName_ = function(element, style) {
25298
25355
  goog.style.getVendorStyleName_ = function(element, style) {
25299
25356
  var camelStyle = goog.string.toCamelCase(style);
25300
25357
  if (element.style[camelStyle] === void 0) {
25301
- var prefixedStyle = goog.dom.vendor.getVendorJsPrefix() + goog.string.toTitleCase(camelStyle);
25358
+ var prefixedStyle = module$contents$goog$dom$vendor_getVendorJsPrefix() + goog.string.toTitleCase(camelStyle);
25302
25359
  if (element.style[prefixedStyle] !== void 0) {
25303
- return goog.dom.vendor.getVendorPrefix() + "-" + style;
25360
+ return module$contents$goog$dom$vendor_getVendorPrefix() + "-" + style;
25304
25361
  }
25305
25362
  }
25306
25363
  return style;
@@ -25598,7 +25655,7 @@ goog.style.installSafeStyleSheet = function(safeStyleSheet, opt_node) {
25598
25655
  head = dh.createDom(goog.dom.TagName.HEAD);
25599
25656
  body.parentNode.insertBefore(head, body);
25600
25657
  }
25601
- var el = dh.createDom(goog.dom.TagName.STYLE), nonce = module$contents$safevalues$dom$globals$window_getStyleNonce(window);
25658
+ var el = dh.createDom(goog.dom.TagName.STYLE), nonce = module$contents$safevalues$dom$globals$window_getStyleNonce(document);
25602
25659
  nonce && el.setAttribute("nonce", nonce);
25603
25660
  goog.style.setSafeStyleSheet(el, safeStyleSheet);
25604
25661
  dh.appendChild(head, el);
@@ -26282,40 +26339,40 @@ module$contents$goog$structs$Queue_Queue.prototype.getValues = function() {
26282
26339
  return res;
26283
26340
  };
26284
26341
  goog.structs.Queue = module$contents$goog$structs$Queue_Queue;
26285
- goog.structs.Pool = function(opt_minCount, opt_maxCount) {
26342
+ function module$contents$goog$structs$Pool_Pool(opt_minCount, opt_maxCount) {
26286
26343
  goog.Disposable.call(this);
26287
26344
  this.minCount_ = opt_minCount || 0;
26288
26345
  this.maxCount_ = opt_maxCount || 10;
26289
26346
  if (this.minCount_ > this.maxCount_) {
26290
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
26347
+ throw Error(module$contents$goog$structs$Pool_Pool.ERROR_MIN_MAX_);
26291
26348
  }
26292
26349
  this.freeQueue_ = new module$contents$goog$structs$Queue_Queue();
26293
26350
  this.inUseSet_ = new goog.structs.Set();
26294
26351
  this.delay = 0;
26295
26352
  this.lastAccess = null;
26296
26353
  this.adjustForMinMax();
26297
- };
26298
- goog.inherits(goog.structs.Pool, goog.Disposable);
26299
- goog.structs.Pool.ERROR_MIN_MAX_ = "[goog.structs.Pool] Min can not be greater than max";
26300
- goog.structs.Pool.ERROR_DISPOSE_UNRELEASED_OBJS_ = "[goog.structs.Pool] Objects not released";
26301
- goog.structs.Pool.prototype.setMinimumCount = function(min) {
26354
+ }
26355
+ goog.inherits(module$contents$goog$structs$Pool_Pool, goog.Disposable);
26356
+ module$contents$goog$structs$Pool_Pool.ERROR_MIN_MAX_ = "[goog.structs.Pool] Min can not be greater than max";
26357
+ module$contents$goog$structs$Pool_Pool.ERROR_DISPOSE_UNRELEASED_OBJS_ = "[goog.structs.Pool] Objects not released";
26358
+ module$contents$goog$structs$Pool_Pool.prototype.setMinimumCount = function(min) {
26302
26359
  if (min > this.maxCount_) {
26303
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
26360
+ throw Error(module$contents$goog$structs$Pool_Pool.ERROR_MIN_MAX_);
26304
26361
  }
26305
26362
  this.minCount_ = min;
26306
26363
  this.adjustForMinMax();
26307
26364
  };
26308
- goog.structs.Pool.prototype.setMaximumCount = function(max) {
26365
+ module$contents$goog$structs$Pool_Pool.prototype.setMaximumCount = function(max) {
26309
26366
  if (max < this.minCount_) {
26310
- throw Error(goog.structs.Pool.ERROR_MIN_MAX_);
26367
+ throw Error(module$contents$goog$structs$Pool_Pool.ERROR_MIN_MAX_);
26311
26368
  }
26312
26369
  this.maxCount_ = max;
26313
26370
  this.adjustForMinMax();
26314
26371
  };
26315
- goog.structs.Pool.prototype.setDelay = function(delay) {
26372
+ module$contents$goog$structs$Pool_Pool.prototype.setDelay = function(delay) {
26316
26373
  this.delay = delay;
26317
26374
  };
26318
- goog.structs.Pool.prototype.getObject = function() {
26375
+ module$contents$goog$structs$Pool_Pool.prototype.getObject = function() {
26319
26376
  var time = Date.now();
26320
26377
  if (!(this.lastAccess != null && time - this.lastAccess < this.delay)) {
26321
26378
  var obj = this.removeFreeObject_();
@@ -26323,21 +26380,21 @@ goog.structs.Pool.prototype.getObject = function() {
26323
26380
  return obj;
26324
26381
  }
26325
26382
  };
26326
- goog.structs.Pool.prototype.releaseObject = function(obj) {
26383
+ module$contents$goog$structs$Pool_Pool.prototype.releaseObject = function(obj) {
26327
26384
  return this.inUseSet_.remove(obj) ? (this.addFreeObject(obj), !0) : !1;
26328
26385
  };
26329
- goog.structs.Pool.prototype.removeFreeObject_ = function() {
26386
+ module$contents$goog$structs$Pool_Pool.prototype.removeFreeObject_ = function() {
26330
26387
  for (var obj; this.getFreeCount() > 0 && (obj = this.freeQueue_.dequeue(), !this.objectCanBeReused(obj));) {
26331
26388
  this.adjustForMinMax();
26332
26389
  }
26333
26390
  !obj && this.getCount() < this.maxCount_ && (obj = this.createObject());
26334
26391
  return obj;
26335
26392
  };
26336
- goog.structs.Pool.prototype.addFreeObject = function(obj) {
26393
+ module$contents$goog$structs$Pool_Pool.prototype.addFreeObject = function(obj) {
26337
26394
  this.inUseSet_.remove(obj);
26338
26395
  this.objectCanBeReused(obj) && this.getCount() < this.maxCount_ ? this.freeQueue_.enqueue(obj) : this.disposeObject(obj);
26339
26396
  };
26340
- goog.structs.Pool.prototype.adjustForMinMax = function() {
26397
+ module$contents$goog$structs$Pool_Pool.prototype.adjustForMinMax = function() {
26341
26398
  for (var freeQueue = this.freeQueue_; this.getCount() < this.minCount_;) {
26342
26399
  freeQueue.enqueue(this.createObject());
26343
26400
  }
@@ -26345,10 +26402,10 @@ goog.structs.Pool.prototype.adjustForMinMax = function() {
26345
26402
  this.disposeObject(freeQueue.dequeue());
26346
26403
  }
26347
26404
  };
26348
- goog.structs.Pool.prototype.createObject = function() {
26405
+ module$contents$goog$structs$Pool_Pool.prototype.createObject = function() {
26349
26406
  return {};
26350
26407
  };
26351
- goog.structs.Pool.prototype.disposeObject = function(obj) {
26408
+ module$contents$goog$structs$Pool_Pool.prototype.disposeObject = function(obj) {
26352
26409
  if (typeof obj.dispose == "function") {
26353
26410
  obj.dispose();
26354
26411
  } else {
@@ -26357,28 +26414,28 @@ goog.structs.Pool.prototype.disposeObject = function(obj) {
26357
26414
  }
26358
26415
  }
26359
26416
  };
26360
- goog.structs.Pool.prototype.objectCanBeReused = function(obj) {
26417
+ module$contents$goog$structs$Pool_Pool.prototype.objectCanBeReused = function(obj) {
26361
26418
  return typeof obj.canBeReused == "function" ? obj.canBeReused() : !0;
26362
26419
  };
26363
- goog.structs.Pool.prototype.contains = function(obj) {
26420
+ module$contents$goog$structs$Pool_Pool.prototype.contains = function(obj) {
26364
26421
  return this.freeQueue_.contains(obj) || this.inUseSet_.contains(obj);
26365
26422
  };
26366
- goog.structs.Pool.prototype.getCount = function() {
26423
+ module$contents$goog$structs$Pool_Pool.prototype.getCount = function() {
26367
26424
  return this.freeQueue_.getCount() + this.inUseSet_.getCount();
26368
26425
  };
26369
- goog.structs.Pool.prototype.getInUseCount = function() {
26426
+ module$contents$goog$structs$Pool_Pool.prototype.getInUseCount = function() {
26370
26427
  return this.inUseSet_.getCount();
26371
26428
  };
26372
- goog.structs.Pool.prototype.getFreeCount = function() {
26429
+ module$contents$goog$structs$Pool_Pool.prototype.getFreeCount = function() {
26373
26430
  return this.freeQueue_.getCount();
26374
26431
  };
26375
- goog.structs.Pool.prototype.isEmpty = function() {
26432
+ module$contents$goog$structs$Pool_Pool.prototype.isEmpty = function() {
26376
26433
  return this.freeQueue_.isEmpty() && this.inUseSet_.isEmpty();
26377
26434
  };
26378
- goog.structs.Pool.prototype.disposeInternal = function() {
26379
- goog.structs.Pool.superClass_.disposeInternal.call(this);
26435
+ module$contents$goog$structs$Pool_Pool.prototype.disposeInternal = function() {
26436
+ module$contents$goog$structs$Pool_Pool.superClass_.disposeInternal.call(this);
26380
26437
  if (this.getInUseCount() > 0) {
26381
- throw Error(goog.structs.Pool.ERROR_DISPOSE_UNRELEASED_OBJS_);
26438
+ throw Error(module$contents$goog$structs$Pool_Pool.ERROR_DISPOSE_UNRELEASED_OBJS_);
26382
26439
  }
26383
26440
  delete this.inUseSet_;
26384
26441
  for (var freeQueue = this.freeQueue_; !freeQueue.isEmpty();) {
@@ -26386,6 +26443,7 @@ goog.structs.Pool.prototype.disposeInternal = function() {
26386
26443
  }
26387
26444
  delete this.freeQueue_;
26388
26445
  };
26446
+ goog.structs.Pool = module$contents$goog$structs$Pool_Pool;
26389
26447
  function module$contents$goog$structs$Node_Node(key, value) {
26390
26448
  this.key_ = key;
26391
26449
  this.value_ = value;
@@ -26399,7 +26457,6 @@ module$contents$goog$structs$Node_Node.prototype.getValue = function() {
26399
26457
  module$contents$goog$structs$Node_Node.prototype.clone = function() {
26400
26458
  return new module$contents$goog$structs$Node_Node(this.key_, this.value_);
26401
26459
  };
26402
- goog.structs.Node = module$contents$goog$structs$Node_Node;
26403
26460
  var module$contents$goog$structs$Heap_Heap = function(opt_heap) {
26404
26461
  this.nodes_ = [];
26405
26462
  opt_heap && this.insertAll(opt_heap);
@@ -26521,9 +26578,9 @@ goog.structs.PriorityQueue = module$contents$goog$structs$PriorityQueue_Priority
26521
26578
  function module$contents$goog$structs$PriorityPool_PriorityPool(opt_minCount, opt_maxCount) {
26522
26579
  this.delayTimeout_ = void 0;
26523
26580
  this.requestQueue_ = new module$contents$goog$structs$PriorityQueue_PriorityQueue();
26524
- goog.structs.Pool.call(this, opt_minCount, opt_maxCount);
26581
+ module$contents$goog$structs$Pool_Pool.call(this, opt_minCount, opt_maxCount);
26525
26582
  }
26526
- goog.inherits(module$contents$goog$structs$PriorityPool_PriorityPool, goog.structs.Pool);
26583
+ goog.inherits(module$contents$goog$structs$PriorityPool_PriorityPool, module$contents$goog$structs$Pool_Pool);
26527
26584
  module$contents$goog$structs$PriorityPool_PriorityPool.DEFAULT_PRIORITY_ = 100;
26528
26585
  module$contents$goog$structs$PriorityPool_PriorityPool.prototype.setDelay = function(delay) {
26529
26586
  module$contents$goog$structs$PriorityPool_PriorityPool.superClass_.setDelay.call(this, delay);
@@ -27067,28 +27124,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27067
27124
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27068
27125
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27069
27126
  (function() {
27070
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction._apply ee.ApiFunction.lookup ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.updateAsset ee.data.getList ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.startProcessing ee.data.createFolder ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.listAssets ee.data.renameAsset ee.data.authenticateViaOauth ee.data.getTableDownloadId ee.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.copyAsset ee.data.listBuckets ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.listOperations ee.data.getWorkloadTag ee.data.getDownloadId ee.data.cancelOperation ee.data.listImages ee.data.makeDownloadUrl ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.getOperation ee.data.createAssetHome ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.newTaskId ee.data.getInfo ee.data.createAsset ee.data.computeValue ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getThumbId ee.data.resetWorkloadTag ee.Date ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.reset ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.prototype.not ee.Filter.lt ee.Filter.gt ee.Filter.neq ee.Filter.inList ee.Filter.or ee.Filter.gte ee.Filter.lte ee.Filter.eq ee.Filter ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.select ee.Image ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.cat ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27071
- orderedParamLists = [["name", "var_args"], ["name", "namedArgs"], ["name"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
27072
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27073
- ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27074
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"],
27075
- ["algorithm", "opt_first"], ["start", "opt_end"], ["filter"], ["func", "var_args"], ["legacy"], ["callback"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["parent",
27076
- "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id", "x", "y", "z"], ["id"],
27077
- ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"],
27078
- ["tag"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["obj", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27079
- ["func", "var_args"], [], [], [], ["func", "namedArgs"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], [], ["name", "value"], ["name", "value"], ["name", "value"],
27080
- ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_filter"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["namedArgs"], ["var_args"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["legacy"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27081
- ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], [], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["opt_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"],
27082
- ["r", "g", "b"], ["expression", "opt_map"], ["geometry"], ["var_args"], ["var_args"], [], ["params", "opt_callback"], ["args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27083
- [ee.ApiFunction._call, ee.ApiFunction._apply, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset,
27084
- module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.ComputedObject.prototype.aside,
27085
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.updateAsset, ee.data.getList, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.startProcessing, ee.data.createFolder, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.renameAsset, ee.data.authenticateViaOauth, ee.data.getTableDownloadId, ee.data.getMapId, ee.data.getTaskList,
27086
- ee.data.setAssetProperties, ee.data.authenticate, ee.data.copyAsset, ee.data.listBuckets, ee.data.getTileUrl, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.listImages, ee.data.makeDownloadUrl, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAssetRoots,
27087
- ee.data.getAsset, ee.data.getOperation, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.authenticateViaPrivateKey, ee.data.newTaskId, ee.data.getInfo, ee.data.createAsset, ee.data.computeValue, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getThumbId, ee.data.resetWorkloadTag, ee.Date, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Dictionary, ee.initialize, ee.call, ee.reset, ee.Algorithms, ee.InitState,
27088
- ee.apply, ee.TILE_SIZE, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.prototype.not, ee.Filter.lt, ee.Filter.gt, ee.Filter.neq, ee.Filter.inList, ee.Filter.or,
27089
- ee.Filter.gte, ee.Filter.lte, ee.Filter.eq, ee.Filter, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.serialize, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.LineString,
27090
- ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.select, ee.Image, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.rgb, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.rename, ee.Image.cat, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId,
27091
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27127
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.listAssets ee.data.renameAsset ee.data.getMapId ee.data.setAssetProperties ee.data.getTaskList ee.data.getTableDownloadId ee.data.authenticate ee.data.copyAsset ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getAssetRootQuota ee.data.getTaskListWithLimit ee.data.cancelOperation ee.data.deleteAsset ee.data.startTableIngestion ee.data.listOperations ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.getWorkloadTag ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.createAsset ee.data.computeValue ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getFilmstripThumbId ee.data.updateAsset ee.data.getTaskStatus ee.data.getList ee.data.updateTask ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.initialize ee.reset ee.call ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.Filter.and ee.Filter.gt ee.Filter.inList ee.Filter.neq ee.Filter.lt ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.eq ee.Filter ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSON ee.Geometry.BBox ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPoint ee.Geometry ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.rename ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.rgb ee.Image.prototype.getThumbURL ee.Image.cat ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.prototype.getThumbId ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27128
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
27129
+ "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
27130
+ "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27131
+ "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27132
+ ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["start", "opt_end"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId",
27133
+ "opt_callback"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id", "x", "y", "z"], ["project", "opt_callback"], ["id"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"],
27134
+ ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["id"], [], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["id", "opt_callback"],
27135
+ ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["obj", "opt_callback"], ["params", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"],
27136
+ ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "var_args"], [], [], ["func", "namedArgs"], [], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args",
27137
+ "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["var_args"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], [], ["name", "value"], ["opt_filter"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic",
27138
+ "opt_maxError"], [], ["west", "south", "east", "north"], [], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_callback"],
27139
+ ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["geometry"], ["r", "g", "b"], ["params", "opt_callback"], ["var_args"], ["opt_args"], ["params", "opt_callback"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties",
27140
+ "opt_matchPropertyName"], ["args"], [], ["list"], ["number"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27141
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage,
27142
+ module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
27143
+ ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.listAssets, ee.data.renameAsset, ee.data.getMapId, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.getTableDownloadId, ee.data.authenticate, ee.data.copyAsset, ee.data.getTileUrl, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getAssetRootQuota, ee.data.getTaskListWithLimit, ee.data.cancelOperation,
27144
+ ee.data.deleteAsset, ee.data.startTableIngestion, ee.data.listOperations, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.getWorkloadTag, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.createAsset, ee.data.computeValue, ee.data.getThumbId,
27145
+ ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getFilmstripThumbId, ee.data.updateAsset, ee.data.getTaskStatus, ee.data.getList, ee.data.updateTask, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.initialize, ee.reset, ee.call, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27146
+ ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter.and, ee.Filter.gt, ee.Filter.inList, ee.Filter.neq, ee.Filter.lt, ee.Filter.or, ee.Filter.lte, ee.Filter.gte,
27147
+ ee.Filter.prototype.not, ee.Filter.eq, ee.Filter, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSON, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Image.prototype.getInfo,
27148
+ ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.rename, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.rgb, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.select, ee.Image.prototype.getThumbId, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL,
27149
+ ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27092
27150
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27093
27151
  });
27094
27152
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;