@google/earthengine 1.0.0 → 1.1.1

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/main.js CHANGED
@@ -767,6 +767,9 @@ $jscomp.polyfill("Array.prototype.keys", function(orig) {
767
767
  });
768
768
  };
769
769
  }, "es6", "es3");
770
+ $jscomp.polyfill("globalThis", function(orig) {
771
+ return orig || $jscomp.global;
772
+ }, "es_2020", "es3");
770
773
  $jscomp.checkEs6ConformanceViaProxy = function() {
771
774
  try {
772
775
  var proxied = {}, proxy = Object.create(new $jscomp.global.Proxy(proxied, {get:function(target, key, receiver) {
@@ -1252,8 +1255,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
1252
1255
  return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
1253
1256
  };
1254
1257
  }, "es8", "es3");
1255
- var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_flush_queue_fix__disable:!1, GoogFlags__client_only_wiz_ordered_reaction_execution__disable:!1, GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__enable:!1, GoogFlags__jspb_enable_low_index_extension_writes__disable:!1, GoogFlags__jspb_ignore_implicit_extension_deps__enable:!1, GoogFlags__jspb_readonly_repeated_fields__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1,
1256
- GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
1258
+ var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_flush_queue_fix__disable:!1, GoogFlags__client_only_wiz_ordered_reaction_execution__disable:!1, GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__disable:!1, GoogFlags__jspb_ignore_implicit_extension_deps__enable:!1, GoogFlags__jspb_readonly_repeated_fields__disable:!1, GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable:!1, GoogFlags__override_disable_toggles:!1,
1259
+ GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
1257
1260
  /*
1258
1261
 
1259
1262
  Copyright The Closure Library Authors.
@@ -2460,9 +2463,6 @@ function module$contents$goog$object_getCount(obj) {
2460
2463
  }
2461
2464
  return rv;
2462
2465
  }
2463
- function module$contents$goog$object_contains(obj, val) {
2464
- return module$contents$goog$object_containsValue(obj, val);
2465
- }
2466
2466
  function module$contents$goog$object_getValues(obj) {
2467
2467
  var res = [], i = 0, key;
2468
2468
  for (key in obj) {
@@ -2586,7 +2586,9 @@ goog.object.add = function(obj, key, val) {
2586
2586
  };
2587
2587
  goog.object.clear = module$contents$goog$object_clear;
2588
2588
  goog.object.clone = module$contents$goog$object_clone;
2589
- goog.object.contains = module$contents$goog$object_contains;
2589
+ goog.object.contains = function(obj, val) {
2590
+ return module$contents$goog$object_containsValue(obj, val);
2591
+ };
2590
2592
  goog.object.containsKey = module$contents$goog$object_containsKey;
2591
2593
  goog.object.containsValue = module$contents$goog$object_containsValue;
2592
2594
  goog.object.create = module$contents$goog$object_create;
@@ -2788,225 +2790,77 @@ var module$contents$safevalues$internals$pure_module = module$contents$safevalue
2788
2790
  function module$contents$safevalues$internals$pure_pure(valueOf) {
2789
2791
  return {valueOf:valueOf}.valueOf();
2790
2792
  }
2791
- ;goog.debug = {};
2792
- function module$contents$goog$debug$Error_DebugError(msg, cause) {
2793
- if (Error.captureStackTrace) {
2794
- Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
2795
- } else {
2796
- var stack = Error().stack;
2797
- stack && (this.stack = stack);
2793
+ ;var module$exports$safevalues$internals$secrets = {}, module$contents$safevalues$internals$secrets_module = module$contents$safevalues$internals$secrets_module || {id:"third_party/javascript/safevalues/internals/secrets.closure.js"};
2794
+ module$exports$safevalues$internals$secrets.secretToken = {};
2795
+ function module$contents$safevalues$internals$secrets_ensureTokenIsValid(token) {
2796
+ if (goog.DEBUG && token !== module$exports$safevalues$internals$secrets.secretToken) {
2797
+ throw Error("Bad secret");
2798
2798
  }
2799
- msg && (this.message = String(msg));
2800
- cause !== void 0 && (this.cause = cause);
2801
- this.reportErrorToServer = !0;
2802
- }
2803
- goog.inherits(module$contents$goog$debug$Error_DebugError, Error);
2804
- module$contents$goog$debug$Error_DebugError.prototype.name = "CustomError";
2805
- goog.debug.Error = module$contents$goog$debug$Error_DebugError;
2806
- goog.dom = {};
2807
- goog.dom.NodeType = {ELEMENT:1, ATTRIBUTE:2, TEXT:3, CDATA_SECTION:4, ENTITY_REFERENCE:5, ENTITY:6, PROCESSING_INSTRUCTION:7, COMMENT:8, DOCUMENT:9, DOCUMENT_TYPE:10, DOCUMENT_FRAGMENT:11, NOTATION:12};
2808
- goog.asserts = {};
2809
- goog.asserts.ENABLE_ASSERTS = module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS;
2810
- function module$contents$goog$asserts_AssertionError(messagePattern, messageArgs) {
2811
- module$contents$goog$debug$Error_DebugError.call(this, module$contents$goog$asserts_subs(messagePattern, messageArgs));
2812
- this.messagePattern = messagePattern;
2813
2799
  }
2814
- goog.inherits(module$contents$goog$asserts_AssertionError, module$contents$goog$debug$Error_DebugError);
2815
- goog.asserts.AssertionError = module$contents$goog$asserts_AssertionError;
2816
- module$contents$goog$asserts_AssertionError.prototype.name = "AssertionError";
2817
- goog.asserts.DEFAULT_ERROR_HANDLER = function(e) {
2818
- throw e;
2819
- };
2820
- var module$contents$goog$asserts_errorHandler_ = goog.asserts.DEFAULT_ERROR_HANDLER;
2821
- function module$contents$goog$asserts_subs(pattern, subs) {
2822
- for (var splitParts = pattern.split("%s"), returnString = "", subLast = splitParts.length - 1, i = 0; i < subLast; i++) {
2823
- returnString += splitParts[i] + (i < subs.length ? subs[i] : "%s");
2800
+ module$exports$safevalues$internals$secrets.ensureTokenIsValid = module$contents$safevalues$internals$secrets_ensureTokenIsValid;
2801
+ var module$exports$safevalues$internals$trusted_types = {}, module$contents$safevalues$internals$trusted_types_module = module$contents$safevalues$internals$trusted_types_module || {id:"third_party/javascript/safevalues/internals/trusted_types.closure.js"}, module$contents$safevalues$internals$trusted_types_configuredPolicyName = goog.TRUSTED_TYPES_POLICY_NAME ? goog.TRUSTED_TYPES_POLICY_NAME +
2802
+ "#html" : "", module$contents$safevalues$internals$trusted_types_policyName = module$contents$safevalues$internals$trusted_types_configuredPolicyName;
2803
+ module$exports$safevalues$internals$trusted_types.trustedTypes = globalThis.trustedTypes;
2804
+ var module$contents$safevalues$internals$trusted_types_trustedTypesInternal = module$exports$safevalues$internals$trusted_types.trustedTypes, module$contents$safevalues$internals$trusted_types_policy;
2805
+ function module$contents$safevalues$internals$trusted_types_createPolicy() {
2806
+ var policy = null;
2807
+ if (module$contents$safevalues$internals$trusted_types_policyName === "" || !module$contents$safevalues$internals$trusted_types_trustedTypesInternal) {
2808
+ return policy;
2824
2809
  }
2825
- return returnString + splitParts[subLast];
2826
- }
2827
- function module$contents$goog$asserts_doAssertFailure(defaultMessage, defaultArgs, givenMessage, givenArgs) {
2828
- var message = "Assertion failed";
2829
- if (givenMessage) {
2830
- message += ": " + givenMessage;
2831
- var args = givenArgs;
2832
- } else {
2833
- defaultMessage && (message += ": " + defaultMessage, args = defaultArgs);
2810
+ try {
2811
+ var identity = function(x) {
2812
+ return x;
2813
+ };
2814
+ policy = module$contents$safevalues$internals$trusted_types_trustedTypesInternal.createPolicy(module$contents$safevalues$internals$trusted_types_policyName, {createHTML:identity, createScript:identity, createScriptURL:identity});
2815
+ } catch (e) {
2816
+ if (goog.DEBUG) {
2817
+ throw e;
2818
+ }
2834
2819
  }
2835
- var e = new module$contents$goog$asserts_AssertionError("" + message, args || []);
2836
- module$contents$goog$asserts_errorHandler_(e);
2820
+ return policy;
2837
2821
  }
2838
- goog.asserts.setErrorHandler = function(errorHandler) {
2839
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && (module$contents$goog$asserts_errorHandler_ = errorHandler);
2840
- };
2841
- goog.asserts.assert = function(condition, opt_message, var_args) {
2842
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !condition && module$contents$goog$asserts_doAssertFailure("", null, opt_message, Array.prototype.slice.call(arguments, 2));
2843
- return condition;
2844
- };
2845
- goog.asserts.assertExists = function(value, opt_message, var_args) {
2846
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && value == null && module$contents$goog$asserts_doAssertFailure("Expected to exist: %s.", [value], opt_message, Array.prototype.slice.call(arguments, 2));
2847
- return value;
2848
- };
2849
- goog.asserts.fail = function(opt_message, var_args) {
2850
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && module$contents$goog$asserts_errorHandler_(new module$contents$goog$asserts_AssertionError("Failure" + (opt_message ? ": " + opt_message : ""), Array.prototype.slice.call(arguments, 1)));
2851
- };
2852
- goog.asserts.assertNumber = function(value, opt_message, var_args) {
2853
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "number" && module$contents$goog$asserts_doAssertFailure("Expected number but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2854
- return value;
2855
- };
2856
- goog.asserts.assertString = function(value, opt_message, var_args) {
2857
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "string" && module$contents$goog$asserts_doAssertFailure("Expected string but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2858
- return value;
2859
- };
2860
- goog.asserts.assertFunction = function(value, opt_message, var_args) {
2861
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "function" && module$contents$goog$asserts_doAssertFailure("Expected function but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2862
- return value;
2863
- };
2864
- goog.asserts.assertObject = function(value, opt_message, var_args) {
2865
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !goog.isObject(value) && module$contents$goog$asserts_doAssertFailure("Expected object but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2866
- return value;
2867
- };
2868
- goog.asserts.assertArray = function(value, opt_message, var_args) {
2869
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !Array.isArray(value) && module$contents$goog$asserts_doAssertFailure("Expected array but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2870
- return value;
2871
- };
2872
- goog.asserts.assertBoolean = function(value, opt_message, var_args) {
2873
- module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "boolean" && module$contents$goog$asserts_doAssertFailure("Expected boolean but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2874
- return value;
2875
- };
2876
- goog.asserts.assertElement = function(value, opt_message, var_args) {
2877
- !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || goog.isObject(value) && value.nodeType == goog.dom.NodeType.ELEMENT || module$contents$goog$asserts_doAssertFailure("Expected Element but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
2878
- return value;
2879
- };
2880
- goog.asserts.assertInstanceof = function(value, type, opt_message, var_args) {
2881
- !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || value instanceof type || module$contents$goog$asserts_doAssertFailure("Expected instanceof %s but got %s.", [module$contents$goog$asserts_getType(type), module$contents$goog$asserts_getType(value)], opt_message, Array.prototype.slice.call(arguments, 3));
2882
- return value;
2822
+ function module$contents$safevalues$internals$trusted_types_getPolicy() {
2823
+ module$contents$safevalues$internals$trusted_types_policy === void 0 && (module$contents$safevalues$internals$trusted_types_policy = module$contents$safevalues$internals$trusted_types_createPolicy());
2824
+ return module$contents$safevalues$internals$trusted_types_policy;
2825
+ }
2826
+ module$exports$safevalues$internals$trusted_types.getPolicy = module$contents$safevalues$internals$trusted_types_getPolicy;
2827
+ module$exports$safevalues$internals$trusted_types.TEST_ONLY = {setPolicyName:function(name) {
2828
+ module$contents$safevalues$internals$trusted_types_policyName = name;
2829
+ }, setTrustedTypes:function(mockTrustedTypes) {
2830
+ module$contents$safevalues$internals$trusted_types_trustedTypesInternal = mockTrustedTypes;
2831
+ }, resetDefaults:function() {
2832
+ module$contents$safevalues$internals$trusted_types_policy = void 0;
2833
+ module$contents$safevalues$internals$trusted_types_policyName = module$contents$safevalues$internals$trusted_types_configuredPolicyName;
2834
+ module$contents$safevalues$internals$trusted_types_trustedTypesInternal = module$exports$safevalues$internals$trusted_types.trustedTypes;
2835
+ }};
2836
+ var module$exports$safevalues$internals$resource_url_impl = {}, module$contents$safevalues$internals$resource_url_impl_module = module$contents$safevalues$internals$resource_url_impl_module || {id:"third_party/javascript/safevalues/internals/resource_url_impl.closure.js"};
2837
+ module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl = function(token, value) {
2838
+ goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
2839
+ this.privateDoNotAccessOrElseWrappedResourceUrl = value;
2883
2840
  };
2884
- goog.asserts.assertFinite = function(value, opt_message, var_args) {
2885
- !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || typeof value == "number" && isFinite(value) || module$contents$goog$asserts_doAssertFailure("Expected %s to be a finite number but it is not.", [value], opt_message, Array.prototype.slice.call(arguments, 2));
2886
- return value;
2841
+ module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl.prototype.toString = function() {
2842
+ return this.privateDoNotAccessOrElseWrappedResourceUrl + "";
2887
2843
  };
2888
- function module$contents$goog$asserts_getType(value) {
2889
- return value instanceof Function ? value.displayName || value.name || "unknown type name" : value instanceof Object ? value.constructor.displayName || value.constructor.name || Object.prototype.toString.call(value) : value === null ? "null" : typeof value;
2844
+ var module$contents$safevalues$internals$resource_url_impl_ResourceUrlImpl = module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl;
2845
+ function module$contents$safevalues$internals$resource_url_impl_constructResourceUrl(value) {
2846
+ return new module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl(module$exports$safevalues$internals$secrets.secretToken, value);
2890
2847
  }
2891
- ;goog.html = {};
2892
- goog.html.trustedtypes = {};
2893
- goog.html.trustedtypes.POLICY_NAME = goog.TRUSTED_TYPES_POLICY_NAME ? goog.TRUSTED_TYPES_POLICY_NAME + "#html" : "";
2894
- goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse = function() {
2895
- if (!goog.html.trustedtypes.POLICY_NAME) {
2896
- return null;
2897
- }
2898
- goog.html.trustedtypes.cachedPolicy_ === void 0 && (goog.html.trustedtypes.cachedPolicy_ = goog.createTrustedTypesPolicy(goog.html.trustedtypes.POLICY_NAME));
2899
- return goog.html.trustedtypes.cachedPolicy_;
2900
- };
2901
- goog.string.Const = function(opt_token, opt_content) {
2902
- this.stringConstValueWithSecurityContract__googStringSecurityPrivate_ = opt_token === goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ && opt_content || "";
2903
- this.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ = goog.string.Const.TYPE_MARKER_;
2904
- };
2905
- goog.string.Const.prototype.toString = function() {
2906
- return this.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
2907
- };
2908
- goog.string.Const.unwrap = function(stringConst) {
2909
- if (stringConst instanceof goog.string.Const && stringConst.constructor === goog.string.Const && stringConst.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ === goog.string.Const.TYPE_MARKER_) {
2910
- return stringConst.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
2911
- }
2912
- goog.asserts.fail("expected object of type Const, got '" + stringConst + "'");
2913
- return "type_error:Const";
2914
- };
2915
- goog.string.Const.from = function(s) {
2916
- return new goog.string.Const(goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_, s);
2917
- };
2918
- goog.string.Const.TYPE_MARKER_ = {};
2919
- goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ = {};
2920
- goog.string.Const.EMPTY = goog.string.Const.from("");
2921
- var module$contents$goog$html$TrustedResourceUrl_CONSTRUCTOR_TOKEN_PRIVATE_ = {}, module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl = function(value, token) {
2922
- if (goog.DEBUG && token !== module$contents$goog$html$TrustedResourceUrl_CONSTRUCTOR_TOKEN_PRIVATE_) {
2923
- throw Error("TrustedResourceUrl is not meant to be built directly");
2924
- }
2925
- this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ = value;
2926
- };
2927
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.prototype.toString = function() {
2928
- return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ + "";
2929
- };
2930
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.cloneWithParams = function(url, searchParams, opt_hashParams) {
2931
- var urlString = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(url), parts = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.URL_PARAM_PARSER_.exec(urlString), urlHash = parts[3] || "";
2932
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(parts[1] + module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.stringifyParams_("?", parts[2] || "", searchParams) + module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.stringifyParams_("#", urlHash, opt_hashParams));
2933
- };
2934
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap = function(trustedResourceUrl) {
2935
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrapTrustedScriptURL(trustedResourceUrl).toString();
2936
- };
2937
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrapTrustedScriptURL = function(trustedResourceUrl) {
2938
- if (trustedResourceUrl instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl && trustedResourceUrl.constructor === module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl) {
2939
- return trustedResourceUrl.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_;
2940
- }
2941
- goog.asserts.fail("expected object of type TrustedResourceUrl, got '%s' of type %s", trustedResourceUrl, goog.typeOf(trustedResourceUrl));
2942
- return "type_error:TrustedResourceUrl";
2943
- };
2944
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.format = function(format, args) {
2945
- var formatStr = goog.string.Const.unwrap(format);
2946
- if (!module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.BASE_URL_.test(formatStr)) {
2947
- throw Error("Invalid TrustedResourceUrl format: " + formatStr);
2948
- }
2949
- var result = formatStr.replace(module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.FORMAT_MARKER_, function(match, id) {
2950
- if (!Object.prototype.hasOwnProperty.call(args, id)) {
2951
- throw Error('Found marker, "' + id + '", in format string, "' + formatStr + '", but no valid label mapping found in args: ' + JSON.stringify(args));
2952
- }
2953
- var arg = args[id];
2954
- return arg instanceof goog.string.Const ? goog.string.Const.unwrap(arg) : encodeURIComponent(String(arg));
2955
- });
2956
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(result);
2957
- };
2958
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.FORMAT_MARKER_ = /%{(\w+)}/g;
2959
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.BASE_URL_ = RegExp("^((https:)?//[0-9a-z.:[\\]-]+/|/[^/\\\\]|[^:/\\\\%]+/|[^:/\\\\%]*[?#]|about:blank#)", "i");
2960
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.URL_PARAM_PARSER_ = /^([^?#]*)(\?[^#]*)?(#[\s\S]*)?/;
2961
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.formatWithParams = function(format, args, searchParams, opt_hashParams) {
2962
- var url = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.format(format, args);
2963
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.cloneWithParams(url, searchParams, opt_hashParams);
2964
- };
2965
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.fromConstant = function(url) {
2966
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(goog.string.Const.unwrap(url));
2967
- };
2968
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.fromConstants = function(parts) {
2969
- for (var unwrapped = "", i = 0; i < parts.length; i++) {
2970
- unwrapped += goog.string.Const.unwrap(parts[i]);
2971
- }
2972
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(unwrapped);
2973
- };
2974
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse = function(url) {
2975
- var noinlineUrl = url, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(noinlineUrl) : noinlineUrl;
2976
- return new module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl(value, module$contents$goog$html$TrustedResourceUrl_CONSTRUCTOR_TOKEN_PRIVATE_);
2977
- };
2978
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.stringifyParams_ = function(prefix, currentString, params) {
2979
- if (params == null) {
2980
- return currentString;
2981
- }
2982
- if (typeof params === "string") {
2983
- return params ? prefix + encodeURIComponent(params) : "";
2984
- }
2985
- for (var key in params) {
2986
- if (Object.prototype.hasOwnProperty.call(params, key)) {
2987
- for (var value = params[key], outputValues = Array.isArray(value) ? value : [value], i = 0; i < outputValues.length; i++) {
2988
- var outputValue = outputValues[i];
2989
- outputValue != null && (currentString || (currentString = prefix), currentString += (currentString.length > prefix.length ? "&" : "") + encodeURIComponent(key) + "=" + encodeURIComponent(String(outputValue)));
2990
- }
2991
- }
2992
- }
2993
- return currentString;
2994
- };
2995
- goog.html.TrustedResourceUrl = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl;
2996
- var module$exports$goog$html$trustedresourceurl_internals_for_safevalues = {};
2997
- module$exports$goog$html$trustedresourceurl_internals_for_safevalues.createTrustedResourceUrl = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse;
2998
- var module$exports$safevalues$internals$resource_url_impl = {}, module$contents$safevalues$internals$resource_url_impl_module = module$contents$safevalues$internals$resource_url_impl_module || {id:"third_party/javascript/safevalues/internals/resource_url_impl.closure.js"};
2999
- module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl;
3000
- function module$contents$safevalues$internals$resource_url_impl_createResourceUrlInternal(url) {
3001
- return (0,module$exports$goog$html$trustedresourceurl_internals_for_safevalues.createTrustedResourceUrl)(url);
2848
+ function module$contents$safevalues$internals$resource_url_impl_createResourceUrlInternal(value) {
2849
+ var noinlineValue = value, policy = module$contents$safevalues$internals$trusted_types_getPolicy();
2850
+ return module$contents$safevalues$internals$resource_url_impl_constructResourceUrl(policy ? policy.createScriptURL(noinlineValue) : noinlineValue);
3002
2851
  }
3003
2852
  module$exports$safevalues$internals$resource_url_impl.createResourceUrlInternal = module$contents$safevalues$internals$resource_url_impl_createResourceUrlInternal;
3004
2853
  function module$contents$safevalues$internals$resource_url_impl_isResourceUrl(value) {
3005
- return value instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl;
2854
+ return value instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl;
3006
2855
  }
3007
2856
  module$exports$safevalues$internals$resource_url_impl.isResourceUrl = module$contents$safevalues$internals$resource_url_impl_isResourceUrl;
3008
2857
  function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(value) {
3009
- return module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrapTrustedScriptURL(value);
2858
+ if (module$contents$safevalues$internals$resource_url_impl_isResourceUrl(value)) {
2859
+ return value.privateDoNotAccessOrElseWrappedResourceUrl;
2860
+ }
2861
+ var message = "";
2862
+ goog.DEBUG && (message = "Unexpected type when unwrapping TrustedResourceUrl");
2863
+ throw Error(message);
3010
2864
  }
3011
2865
  module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
3012
2866
  var $jscomp$templatelit$1274514361$5 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$6 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\0"]), $jscomp$templatelit$1274514361$7 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$8 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), $jscomp$templatelit$1274514361$9 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$1274514361$10 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"],
@@ -3036,15 +2890,7 @@ function module$contents$safevalues$internals$string_literal_isTemplateObject(te
3036
2890
  return Array.isArray(templateObj) && Array.isArray(templateObj.raw) && templateObj.length === templateObj.raw.length && (module$contents$safevalues$internals$string_literal_isTranspiled || templateObj !== templateObj.raw) && (module$contents$safevalues$internals$string_literal_isTranspiled && !module$contents$safevalues$internals$string_literal_frozenTSA || module$contents$safevalues$internals$string_literal_checkFrozen(templateObj)) ?
3037
2891
  !0 : !1;
3038
2892
  }
3039
- ;var module$exports$safevalues$internals$secrets = {}, module$contents$safevalues$internals$secrets_module = module$contents$safevalues$internals$secrets_module || {id:"third_party/javascript/safevalues/internals/secrets.closure.js"};
3040
- module$exports$safevalues$internals$secrets.secretToken = {};
3041
- function module$contents$safevalues$internals$secrets_ensureTokenIsValid(token) {
3042
- if (goog.DEBUG && token !== module$exports$safevalues$internals$secrets.secretToken) {
3043
- throw Error("Bad secret");
3044
- }
3045
- }
3046
- module$exports$safevalues$internals$secrets.ensureTokenIsValid = module$contents$safevalues$internals$secrets_ensureTokenIsValid;
3047
- var module$exports$safevalues$internals$url_impl = {}, module$contents$safevalues$internals$url_impl_module = module$contents$safevalues$internals$url_impl_module || {id:"third_party/javascript/safevalues/internals/url_impl.closure.js"};
2893
+ ;var module$exports$safevalues$internals$url_impl = {}, module$contents$safevalues$internals$url_impl_module = module$contents$safevalues$internals$url_impl_module || {id:"third_party/javascript/safevalues/internals/url_impl.closure.js"};
3048
2894
  module$exports$safevalues$internals$url_impl.SafeUrl = function(token, value) {
3049
2895
  goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
3050
2896
  this.privateDoNotAccessOrElseWrappedUrl = value;
@@ -3301,7 +3147,7 @@ function module$contents$safevalues$internals$attribute_impl_unwrapAttributePref
3301
3147
  throw Error(message);
3302
3148
  }
3303
3149
  module$exports$safevalues$internals$attribute_impl.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
3304
- 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"}, module$contents$safevalues$internals$html_impl_trustedTypes = goog.global.trustedTypes;
3150
+ 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"};
3305
3151
  module$exports$safevalues$internals$html_impl.SafeHtml = function(token, value) {
3306
3152
  goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
3307
3153
  this.privateDoNotAccessOrElseWrappedHtml = value;
@@ -3314,11 +3160,11 @@ function module$contents$safevalues$internals$html_impl_constructHtml(value) {
3314
3160
  return new module$exports$safevalues$internals$html_impl.SafeHtml(module$exports$safevalues$internals$secrets.secretToken, value);
3315
3161
  }
3316
3162
  module$exports$safevalues$internals$html_impl.createHtmlInternal = function(value) {
3317
- var noinlineValue = value, policy = (0,goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse)();
3163
+ var noinlineValue = value, policy = module$contents$safevalues$internals$trusted_types_getPolicy();
3318
3164
  return module$contents$safevalues$internals$html_impl_constructHtml(policy ? policy.createHTML(noinlineValue) : noinlineValue);
3319
3165
  };
3320
3166
  module$exports$safevalues$internals$html_impl.EMPTY_HTML = module$contents$safevalues$internals$pure_pure(function() {
3321
- return module$contents$safevalues$internals$html_impl_constructHtml(module$contents$safevalues$internals$html_impl_trustedTypes ? module$contents$safevalues$internals$html_impl_trustedTypes.emptyHTML : "");
3167
+ return module$contents$safevalues$internals$html_impl_constructHtml(module$exports$safevalues$internals$trusted_types.trustedTypes ? module$exports$safevalues$internals$trusted_types.trustedTypes.emptyHTML : "");
3322
3168
  });
3323
3169
  function module$contents$safevalues$internals$html_impl_isHtml(value) {
3324
3170
  return value instanceof module$exports$safevalues$internals$html_impl.SafeHtml;
@@ -3463,7 +3309,7 @@ module$exports$safevalues$dom$elements$iframe.setSrcWithIntent = function(elemen
3463
3309
  element.removeAttribute("srcdoc");
3464
3310
  switch(intent) {
3465
3311
  case module$exports$safevalues$dom$elements$iframe.Intent.FORMATTED_HTML_CONTENT:
3466
- if (src instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl) {
3312
+ if (src instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl) {
3467
3313
  throw new module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError("TrustedResourceUrl", module$exports$safevalues$dom$elements$iframe.Intent.FORMATTED_HTML_CONTENT);
3468
3314
  }
3469
3315
  module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(element, []);
@@ -3471,7 +3317,7 @@ module$exports$safevalues$dom$elements$iframe.setSrcWithIntent = function(elemen
3471
3317
  sanitizedUrl !== void 0 && (element.src = sanitizedUrl);
3472
3318
  break;
3473
3319
  case module$exports$safevalues$dom$elements$iframe.Intent.EMBEDDED_INTERNAL_CONTENT:
3474
- if (!(src instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl)) {
3320
+ if (!(src instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl)) {
3475
3321
  throw new module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError(typeof src, module$exports$safevalues$dom$elements$iframe.Intent.EMBEDDED_INTERNAL_CONTENT);
3476
3322
  }
3477
3323
  module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(element, [module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_SAME_ORIGIN, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_SCRIPTS, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_FORMS, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_POPUPS,
@@ -3479,7 +3325,7 @@ module$exports$safevalues$dom$elements$iframe.setSrcWithIntent = function(elemen
3479
3325
  module$contents$safevalues$dom$elements$iframe_setSrc(element, src);
3480
3326
  break;
3481
3327
  case module$exports$safevalues$dom$elements$iframe.Intent.EMBEDDED_TRUSTED_EXTERNAL_CONTENT:
3482
- if (src instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl) {
3328
+ if (src instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl) {
3483
3329
  throw new module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIntentError("TrustedResourceUrl", module$exports$safevalues$dom$elements$iframe.Intent.EMBEDDED_TRUSTED_EXTERNAL_CONTENT);
3484
3330
  }
3485
3331
  module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(element, [module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_SAME_ORIGIN, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_SCRIPTS, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_FORMS, module$contents$safevalues$dom$elements$iframe_SandboxDirective.ALLOW_POPUPS,
@@ -3563,7 +3409,7 @@ function module$contents$safevalues$dom$globals$window_getNonceFor(elementName,
3563
3409
  var $jscomp$optchain$tmp220578679$0, $jscomp$optchain$tmp220578679$1, el = ($jscomp$optchain$tmp220578679$1 = ($jscomp$optchain$tmp220578679$0 = win.document).querySelector) == null ? void 0 : $jscomp$optchain$tmp220578679$1.call($jscomp$optchain$tmp220578679$0, elementName + "[nonce]");
3564
3410
  return el ? el.nonce || el.getAttribute("nonce") || "" : "";
3565
3411
  }
3566
- ;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"}, module$contents$safevalues$internals$script_impl_trustedTypes = goog.global.trustedTypes;
3412
+ ;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"};
3567
3413
  module$exports$safevalues$internals$script_impl.SafeScript = function(token, value) {
3568
3414
  goog.DEBUG && module$contents$safevalues$internals$secrets_ensureTokenIsValid(token);
3569
3415
  this.privateDoNotAccessOrElseWrappedScript = value;
@@ -3576,12 +3422,12 @@ function module$contents$safevalues$internals$script_impl_constructScript(value)
3576
3422
  return new module$exports$safevalues$internals$script_impl.SafeScript(module$exports$safevalues$internals$secrets.secretToken, value);
3577
3423
  }
3578
3424
  function module$contents$safevalues$internals$script_impl_createScriptInternal(value) {
3579
- var noinlineValue = value, policy = (0,goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse)();
3425
+ var noinlineValue = value, policy = module$contents$safevalues$internals$trusted_types_getPolicy();
3580
3426
  return module$contents$safevalues$internals$script_impl_constructScript(policy ? policy.createScript(noinlineValue) : noinlineValue);
3581
3427
  }
3582
3428
  module$exports$safevalues$internals$script_impl.createScriptInternal = module$contents$safevalues$internals$script_impl_createScriptInternal;
3583
3429
  module$exports$safevalues$internals$script_impl.EMPTY_SCRIPT = module$contents$safevalues$internals$pure_pure(function() {
3584
- return module$contents$safevalues$internals$script_impl_constructScript(module$contents$safevalues$internals$script_impl_trustedTypes ? module$contents$safevalues$internals$script_impl_trustedTypes.emptyScript : "");
3430
+ return module$contents$safevalues$internals$script_impl_constructScript(module$exports$safevalues$internals$trusted_types.trustedTypes ? module$exports$safevalues$internals$trusted_types.trustedTypes.emptyScript : "");
3585
3431
  });
3586
3432
  function module$contents$safevalues$internals$script_impl_isScript(value) {
3587
3433
  return value instanceof module$exports$safevalues$internals$script_impl.SafeScript;
@@ -3649,7 +3495,107 @@ module$exports$safevalues$dom$elements$svg.setAttribute = function(svg, attr, va
3649
3495
  }
3650
3496
  svg.setAttribute(attr, value);
3651
3497
  };
3652
- goog.array = {};
3498
+ goog.debug = {};
3499
+ function module$contents$goog$debug$Error_DebugError(msg, cause) {
3500
+ if (Error.captureStackTrace) {
3501
+ Error.captureStackTrace(this, module$contents$goog$debug$Error_DebugError);
3502
+ } else {
3503
+ var stack = Error().stack;
3504
+ stack && (this.stack = stack);
3505
+ }
3506
+ msg && (this.message = String(msg));
3507
+ cause !== void 0 && (this.cause = cause);
3508
+ this.reportErrorToServer = !0;
3509
+ }
3510
+ goog.inherits(module$contents$goog$debug$Error_DebugError, Error);
3511
+ module$contents$goog$debug$Error_DebugError.prototype.name = "CustomError";
3512
+ goog.debug.Error = module$contents$goog$debug$Error_DebugError;
3513
+ goog.dom = {};
3514
+ goog.dom.NodeType = {ELEMENT:1, ATTRIBUTE:2, TEXT:3, CDATA_SECTION:4, ENTITY_REFERENCE:5, ENTITY:6, PROCESSING_INSTRUCTION:7, COMMENT:8, DOCUMENT:9, DOCUMENT_TYPE:10, DOCUMENT_FRAGMENT:11, NOTATION:12};
3515
+ goog.asserts = {};
3516
+ goog.asserts.ENABLE_ASSERTS = module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS;
3517
+ function module$contents$goog$asserts_AssertionError(messagePattern, messageArgs) {
3518
+ module$contents$goog$debug$Error_DebugError.call(this, module$contents$goog$asserts_subs(messagePattern, messageArgs));
3519
+ this.messagePattern = messagePattern;
3520
+ }
3521
+ goog.inherits(module$contents$goog$asserts_AssertionError, module$contents$goog$debug$Error_DebugError);
3522
+ goog.asserts.AssertionError = module$contents$goog$asserts_AssertionError;
3523
+ module$contents$goog$asserts_AssertionError.prototype.name = "AssertionError";
3524
+ goog.asserts.DEFAULT_ERROR_HANDLER = function(e) {
3525
+ throw e;
3526
+ };
3527
+ var module$contents$goog$asserts_errorHandler_ = goog.asserts.DEFAULT_ERROR_HANDLER;
3528
+ function module$contents$goog$asserts_subs(pattern, subs) {
3529
+ for (var splitParts = pattern.split("%s"), returnString = "", subLast = splitParts.length - 1, i = 0; i < subLast; i++) {
3530
+ returnString += splitParts[i] + (i < subs.length ? subs[i] : "%s");
3531
+ }
3532
+ return returnString + splitParts[subLast];
3533
+ }
3534
+ function module$contents$goog$asserts_doAssertFailure(defaultMessage, defaultArgs, givenMessage, givenArgs) {
3535
+ var message = "Assertion failed";
3536
+ if (givenMessage) {
3537
+ message += ": " + givenMessage;
3538
+ var args = givenArgs;
3539
+ } else {
3540
+ defaultMessage && (message += ": " + defaultMessage, args = defaultArgs);
3541
+ }
3542
+ var e = new module$contents$goog$asserts_AssertionError("" + message, args || []);
3543
+ module$contents$goog$asserts_errorHandler_(e);
3544
+ }
3545
+ goog.asserts.setErrorHandler = function(errorHandler) {
3546
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && (module$contents$goog$asserts_errorHandler_ = errorHandler);
3547
+ };
3548
+ goog.asserts.assert = function(condition, opt_message, var_args) {
3549
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !condition && module$contents$goog$asserts_doAssertFailure("", null, opt_message, Array.prototype.slice.call(arguments, 2));
3550
+ return condition;
3551
+ };
3552
+ goog.asserts.assertExists = function(value, opt_message, var_args) {
3553
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && value == null && module$contents$goog$asserts_doAssertFailure("Expected to exist: %s.", [value], opt_message, Array.prototype.slice.call(arguments, 2));
3554
+ return value;
3555
+ };
3556
+ goog.asserts.fail = function(opt_message, var_args) {
3557
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && module$contents$goog$asserts_errorHandler_(new module$contents$goog$asserts_AssertionError("Failure" + (opt_message ? ": " + opt_message : ""), Array.prototype.slice.call(arguments, 1)));
3558
+ };
3559
+ goog.asserts.assertNumber = function(value, opt_message, var_args) {
3560
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "number" && module$contents$goog$asserts_doAssertFailure("Expected number but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3561
+ return value;
3562
+ };
3563
+ goog.asserts.assertString = function(value, opt_message, var_args) {
3564
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "string" && module$contents$goog$asserts_doAssertFailure("Expected string but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3565
+ return value;
3566
+ };
3567
+ goog.asserts.assertFunction = function(value, opt_message, var_args) {
3568
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "function" && module$contents$goog$asserts_doAssertFailure("Expected function but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3569
+ return value;
3570
+ };
3571
+ goog.asserts.assertObject = function(value, opt_message, var_args) {
3572
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !goog.isObject(value) && module$contents$goog$asserts_doAssertFailure("Expected object but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3573
+ return value;
3574
+ };
3575
+ goog.asserts.assertArray = function(value, opt_message, var_args) {
3576
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && !Array.isArray(value) && module$contents$goog$asserts_doAssertFailure("Expected array but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3577
+ return value;
3578
+ };
3579
+ goog.asserts.assertBoolean = function(value, opt_message, var_args) {
3580
+ module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && typeof value !== "boolean" && module$contents$goog$asserts_doAssertFailure("Expected boolean but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3581
+ return value;
3582
+ };
3583
+ goog.asserts.assertElement = function(value, opt_message, var_args) {
3584
+ !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || goog.isObject(value) && value.nodeType == goog.dom.NodeType.ELEMENT || module$contents$goog$asserts_doAssertFailure("Expected Element but got %s: %s.", [goog.typeOf(value), value], opt_message, Array.prototype.slice.call(arguments, 2));
3585
+ return value;
3586
+ };
3587
+ goog.asserts.assertInstanceof = function(value, type, opt_message, var_args) {
3588
+ !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || value instanceof type || module$contents$goog$asserts_doAssertFailure("Expected instanceof %s but got %s.", [module$contents$goog$asserts_getType(type), module$contents$goog$asserts_getType(value)], opt_message, Array.prototype.slice.call(arguments, 3));
3589
+ return value;
3590
+ };
3591
+ goog.asserts.assertFinite = function(value, opt_message, var_args) {
3592
+ !module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS || typeof value == "number" && isFinite(value) || module$contents$goog$asserts_doAssertFailure("Expected %s to be a finite number but it is not.", [value], opt_message, Array.prototype.slice.call(arguments, 2));
3593
+ return value;
3594
+ };
3595
+ function module$contents$goog$asserts_getType(value) {
3596
+ return value instanceof Function ? value.displayName || value.name || "unknown type name" : value instanceof Object ? value.constructor.displayName || value.constructor.name || Object.prototype.toString.call(value) : value === null ? "null" : typeof value;
3597
+ }
3598
+ ;goog.array = {};
3653
3599
  goog.NATIVE_ARRAY_PROTOTYPES = goog.TRUSTED_SITE;
3654
3600
  var module$contents$goog$array_ASSUME_NATIVE_FUNCTIONS = goog.FEATURESET_YEAR > 2012;
3655
3601
  goog.array.ASSUME_NATIVE_FUNCTIONS = module$contents$goog$array_ASSUME_NATIVE_FUNCTIONS;
@@ -4716,15 +4662,19 @@ module$exports$safevalues$dom$globals$dom_parser.parseHtml = function(parser, ht
4716
4662
  return module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, html, "text/html");
4717
4663
  };
4718
4664
  module$exports$safevalues$dom$globals$dom_parser.parseXml = function(parser, xml) {
4719
- for (var doc = module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(xml), "text/xml"), iterator = document.createNodeIterator(doc, NodeFilter.SHOW_ALL), currentNode; currentNode = iterator.nextNode();) {
4720
- if (currentNode instanceof HTMLElement || currentNode instanceof SVGElement) {
4665
+ for (var doc = module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(xml), "text/xml"), iterator = document.createNodeIterator(doc, NodeFilter.SHOW_ELEMENT), currentNode; currentNode = iterator.nextNode();) {
4666
+ var ns = currentNode.namespaceURI;
4667
+ if (module$contents$safevalues$dom$globals$dom_parser_isUnsafeNamespace(ns)) {
4721
4668
  var message = "unsafe XML";
4722
- goog.DEBUG && (message = "attempted to parse an XML document that embeds HTML or SVG content");
4669
+ goog.DEBUG && (message += " - attempted to parse an XML document containing an element with namespace " + ns + ". Parsing HTML, SVG or MathML content is unsafe because it may lead to XSS when the content is appended to the document.");
4723
4670
  throw Error(message);
4724
4671
  }
4725
4672
  }
4726
4673
  return doc;
4727
4674
  };
4675
+ function module$contents$safevalues$dom$globals$dom_parser_isUnsafeNamespace(ns) {
4676
+ return ns === "http://www.w3.org/1999/xhtml" || ns === "http://www.w3.org/2000/svg" || ns === "http://www.w3.org/1998/Math/MathML";
4677
+ }
4728
4678
  function module$contents$safevalues$dom$globals$dom_parser_parseFromString(parser, content, contentType) {
4729
4679
  return parser.parseFromString((0,module$exports$safevalues$internals$html_impl.unwrapHtml)(content), contentType);
4730
4680
  }
@@ -6431,8 +6381,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_un
6431
6381
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable = !1;
6432
6382
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_flush_queue_fix__disable = !1;
6433
6383
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ordered_reaction_execution__disable = !1;
6434
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__enable = !1;
6435
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_enable_low_index_extension_writes__disable = !1;
6384
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__disable = !1;
6436
6385
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
6437
6386
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable = !1;
6438
6387
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_ignore_implicit_extension_deps__enable = !1;
@@ -6447,8 +6396,8 @@ goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2
6447
6396
  goog.flags.JSPB_STOP_USING_REPEATED_FIELD_SETS_FROM_GENCODE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_stop_using_repeated_field_sets_from_gencode__disable : goog.readFlagInternalDoNotUseOrElse(188588736, !0);
6448
6397
  goog.flags.CLIENT_ONLY_WIZ_FLUSH_QUEUE_FIX = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_flush_queue_fix__disable : goog.readFlagInternalDoNotUseOrElse(644029907, !0);
6449
6398
  goog.flags.CLIENT_ONLY_WIZ_ORDERED_REACTION_EXECUTION = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ordered_reaction_execution__disable : goog.readFlagInternalDoNotUseOrElse(1822726157, !0);
6450
- goog.flags.CLIENT_ONLY_WIZ_SYNC_REACTION_WITHIN_REACTION_THROWS_ERROR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__enable : goog.readFlagInternalDoNotUseOrElse(661449076, goog.DEBUG);
6451
- goog.flags.JSPB_ENABLE_LOW_INDEX_EXTENSION_WRITES = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_enable_low_index_extension_writes__disable : goog.readFlagInternalDoNotUseOrElse(645172343, !0);
6399
+ goog.flags.CLIENT_ONLY_WIZ_SYNC_REACTION_WITHIN_REACTION_THROWS_ERROR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sync_reaction_within_reaction_throws_error__disable) : goog.readFlagInternalDoNotUseOrElse(661449076,
6400
+ module$contents$goog$flags_STAGING);
6452
6401
  goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
6453
6402
  goog.flags.JSPB_READONLY_REPEATED_FIELDS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_readonly_repeated_fields__disable) : goog.readFlagInternalDoNotUseOrElse(653718497, module$contents$goog$flags_STAGING);
6454
6403
  goog.flags.JSPB_IGNORE_IMPLICIT_EXTENSION_DEPS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_ignore_implicit_extension_deps__enable : goog.readFlagInternalDoNotUseOrElse(660014094, goog.DEBUG);
@@ -9151,6 +9100,11 @@ module$exports$eeapiclient$ee_api_client.IPixelDataTypePrecisionEnum = function(
9151
9100
  module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum = {DOUBLE:"DOUBLE", FLOAT:"FLOAT", INT:"INT", PRECISION_UNSPECIFIED:"PRECISION_UNSPECIFIED", values:function() {
9152
9101
  return [module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum.PRECISION_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum.INT, module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum.FLOAT, module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum.DOUBLE];
9153
9102
  }};
9103
+ module$exports$eeapiclient$ee_api_client.IProjectConfigRegistrationStateEnum = function() {
9104
+ };
9105
+ module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum = {NOT_REGISTERED:"NOT_REGISTERED", REGISTERED_COMMERCILALLY:"REGISTERED_COMMERCILALLY", REGISTERED_NOT_COMMERCILALLY:"REGISTERED_NOT_COMMERCILALLY", REGISTRATION_STATE_UNSPECIFIED:"REGISTRATION_STATE_UNSPECIFIED", values:function() {
9106
+ return [module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum.REGISTRATION_STATE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum.NOT_REGISTERED, module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum.REGISTERED_COMMERCILALLY, module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum.REGISTERED_NOT_COMMERCILALLY];
9107
+ }};
9154
9108
  module$exports$eeapiclient$ee_api_client.IProjectRegistrationBillingConsentEnum = function() {
9155
9109
  };
9156
9110
  module$exports$eeapiclient$ee_api_client.ProjectRegistrationBillingConsentEnum = {BILLING_CONSENT_FULL:"BILLING_CONSENT_FULL", BILLING_CONSENT_NONE:"BILLING_CONSENT_NONE", BILLING_CONSENT_UNSPECIFIED:"BILLING_CONSENT_UNSPECIFIED", values:function() {
@@ -12334,6 +12288,7 @@ module$exports$eeapiclient$ee_api_client.ProjectConfig = function(parameters) {
12334
12288
  module$exports$eeapiclient$domain_object.Serializable.call(this);
12335
12289
  this.Serializable$set("name", parameters.name == null ? null : parameters.name);
12336
12290
  this.Serializable$set("registration", parameters.registration == null ? null : parameters.registration);
12291
+ this.Serializable$set("registrationState", parameters.registrationState == null ? null : parameters.registrationState);
12337
12292
  this.Serializable$set("trialStatus", parameters.trialStatus == null ? null : parameters.trialStatus);
12338
12293
  this.Serializable$set("vpcServiceControlsRestricted", parameters.vpcServiceControlsRestricted == null ? null : parameters.vpcServiceControlsRestricted);
12339
12294
  };
@@ -12342,7 +12297,7 @@ module$exports$eeapiclient$ee_api_client.ProjectConfig.prototype.getConstructor
12342
12297
  return module$exports$eeapiclient$ee_api_client.ProjectConfig;
12343
12298
  };
12344
12299
  module$exports$eeapiclient$ee_api_client.ProjectConfig.prototype.getPartialClassMetadata = function() {
12345
- return {keys:["name", "registration", "trialStatus", "vpcServiceControlsRestricted"], objects:{registration:module$exports$eeapiclient$ee_api_client.ProjectRegistration, trialStatus:module$exports$eeapiclient$ee_api_client.TrialStatus}};
12300
+ return {enums:{registrationState:module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum}, keys:["name", "registration", "registrationState", "trialStatus", "vpcServiceControlsRestricted"], objects:{registration:module$exports$eeapiclient$ee_api_client.ProjectRegistration, trialStatus:module$exports$eeapiclient$ee_api_client.TrialStatus}};
12346
12301
  };
12347
12302
  $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ProjectConfig.prototype, {name:{configurable:!0, enumerable:!0, get:function() {
12348
12303
  return this.Serializable$has("name") ? this.Serializable$get("name") : null;
@@ -12352,6 +12307,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
12352
12307
  return this.Serializable$has("registration") ? this.Serializable$get("registration") : null;
12353
12308
  }, set:function(value) {
12354
12309
  this.Serializable$set("registration", value);
12310
+ }}, registrationState:{configurable:!0, enumerable:!0, get:function() {
12311
+ return this.Serializable$has("registrationState") ? this.Serializable$get("registrationState") : null;
12312
+ }, set:function(value) {
12313
+ this.Serializable$set("registrationState", value);
12355
12314
  }}, trialStatus:{configurable:!0, enumerable:!0, get:function() {
12356
12315
  return this.Serializable$has("trialStatus") ? this.Serializable$get("trialStatus") : null;
12357
12316
  }, set:function(value) {
@@ -12361,6 +12320,9 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
12361
12320
  }, set:function(value) {
12362
12321
  this.Serializable$set("vpcServiceControlsRestricted", value);
12363
12322
  }}});
12323
+ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.ProjectConfig, {RegistrationState:{configurable:!0, enumerable:!0, get:function() {
12324
+ return module$exports$eeapiclient$ee_api_client.ProjectConfigRegistrationStateEnum;
12325
+ }}});
12364
12326
  module$exports$eeapiclient$ee_api_client.ProjectRegistrationParameters = function() {
12365
12327
  };
12366
12328
  module$exports$eeapiclient$ee_api_client.ProjectRegistration = function(parameters) {
@@ -12968,13 +12930,14 @@ module$exports$eeapiclient$ee_api_client.TableSource = function(parameters) {
12968
12930
  this.Serializable$set("dateFormat", parameters.dateFormat == null ? null : parameters.dateFormat);
12969
12931
  this.Serializable$set("csvDelimiter", parameters.csvDelimiter == null ? null : parameters.csvDelimiter);
12970
12932
  this.Serializable$set("csvQualifier", parameters.csvQualifier == null ? null : parameters.csvQualifier);
12933
+ this.Serializable$set("simplifyErrorMeters", parameters.simplifyErrorMeters == null ? null : parameters.simplifyErrorMeters);
12971
12934
  };
12972
12935
  $jscomp.inherits(module$exports$eeapiclient$ee_api_client.TableSource, module$exports$eeapiclient$domain_object.Serializable);
12973
12936
  module$exports$eeapiclient$ee_api_client.TableSource.prototype.getConstructor = function() {
12974
12937
  return module$exports$eeapiclient$ee_api_client.TableSource;
12975
12938
  };
12976
12939
  module$exports$eeapiclient$ee_api_client.TableSource.prototype.getPartialClassMetadata = function() {
12977
- return {keys:"charset crs csvDelimiter csvQualifier dateFormat geodesic maxErrorMeters maxVertices primaryGeometryColumn uris xColumn yColumn".split(" ")};
12940
+ return {keys:"charset crs csvDelimiter csvQualifier dateFormat geodesic maxErrorMeters maxVertices primaryGeometryColumn simplifyErrorMeters uris xColumn yColumn".split(" ")};
12978
12941
  };
12979
12942
  $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableSource.prototype, {charset:{configurable:!0, enumerable:!0, get:function() {
12980
12943
  return this.Serializable$has("charset") ? this.Serializable$get("charset") : null;
@@ -13012,6 +12975,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
13012
12975
  return this.Serializable$has("primaryGeometryColumn") ? this.Serializable$get("primaryGeometryColumn") : null;
13013
12976
  }, set:function(value) {
13014
12977
  this.Serializable$set("primaryGeometryColumn", value);
12978
+ }}, simplifyErrorMeters:{configurable:!0, enumerable:!0, get:function() {
12979
+ return this.Serializable$has("simplifyErrorMeters") ? this.Serializable$get("simplifyErrorMeters") : null;
12980
+ }, set:function(value) {
12981
+ this.Serializable$set("simplifyErrorMeters", value);
13015
12982
  }}, uris:{configurable:!0, enumerable:!0, get:function() {
13016
12983
  return this.Serializable$has("uris") ? this.Serializable$get("uris") : null;
13017
12984
  }, set:function(value) {
@@ -14932,8 +14899,6 @@ var module$contents$goog$asserts$dom_assertIsHtmlElement = function(value) {
14932
14899
  return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FORM);
14933
14900
  }, module$contents$goog$asserts$dom_assertIsHtmlIFrameElement = function(value) {
14934
14901
  return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IFRAME);
14935
- }, module$contents$goog$asserts$dom_assertIsHtmlScriptElement = function(value) {
14936
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.SCRIPT);
14937
14902
  }, module$contents$goog$asserts$dom_debugStringForType = function(value) {
14938
14903
  if (goog.isObject(value)) {
14939
14904
  try {
@@ -14953,439 +14918,91 @@ goog.asserts.dom.assertIsHtmlElement = module$contents$goog$asserts$dom_assertIs
14953
14918
  goog.asserts.dom.assertIsHtmlElementOfType = module$contents$goog$asserts$dom_assertIsHtmlElementOfType;
14954
14919
  goog.asserts.dom.assertIsHtmlAnchorElement = module$contents$goog$asserts$dom_assertIsHtmlAnchorElement;
14955
14920
  goog.asserts.dom.assertIsHtmlButtonElement = function(value) {
14956
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.BUTTON);
14957
- };
14958
- goog.asserts.dom.assertIsHtmlLinkElement = module$contents$goog$asserts$dom_assertIsHtmlLinkElement;
14959
- goog.asserts.dom.assertIsHtmlImageElement = function(value) {
14960
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IMG);
14961
- };
14962
- goog.asserts.dom.assertIsHtmlAudioElement = function(value) {
14963
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.AUDIO);
14964
- };
14965
- goog.asserts.dom.assertIsHtmlVideoElement = function(value) {
14966
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.VIDEO);
14967
- };
14968
- goog.asserts.dom.assertIsHtmlInputElement = function(value) {
14969
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.INPUT);
14970
- };
14971
- goog.asserts.dom.assertIsHtmlTextAreaElement = function(value) {
14972
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.TEXTAREA);
14973
- };
14974
- goog.asserts.dom.assertIsHtmlCanvasElement = function(value) {
14975
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.CANVAS);
14976
- };
14977
- goog.asserts.dom.assertIsHtmlEmbedElement = function(value) {
14978
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.EMBED);
14979
- };
14980
- goog.asserts.dom.assertIsHtmlFormElement = module$contents$goog$asserts$dom_assertIsHtmlFormElement;
14981
- goog.asserts.dom.assertIsHtmlFrameElement = function(value) {
14982
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FRAME);
14983
- };
14984
- goog.asserts.dom.assertIsHtmlIFrameElement = module$contents$goog$asserts$dom_assertIsHtmlIFrameElement;
14985
- goog.asserts.dom.assertIsHtmlObjectElement = function(value) {
14986
- return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.OBJECT);
14987
- };
14988
- goog.asserts.dom.assertIsHtmlScriptElement = module$contents$goog$asserts$dom_assertIsHtmlScriptElement;
14989
- goog.dom.asserts = {};
14990
- goog.dom.asserts.assertIsLocation = function(o) {
14991
- if (module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS) {
14992
- var win = goog.dom.asserts.getWindow_(o);
14993
- win && (!o || !(o instanceof win.Location) && o instanceof win.Element) && goog.asserts.fail("Argument is not a Location (or a non-Element mock); got: %s", goog.dom.asserts.debugStringForType_(o));
14994
- }
14995
- return o;
14996
- };
14997
- goog.dom.asserts.debugStringForType_ = function(value) {
14998
- if (goog.isObject(value)) {
14999
- try {
15000
- return value.constructor.displayName || value.constructor.name || Object.prototype.toString.call(value);
15001
- } catch (e) {
15002
- return "<object could not be stringified>";
15003
- }
15004
- } else {
15005
- return value === void 0 ? "undefined" : value === null ? "null" : typeof value;
15006
- }
15007
- };
15008
- goog.dom.asserts.getWindow_ = function(o) {
15009
- try {
15010
- var doc = o && o.ownerDocument, win = doc && (doc.defaultView || doc.parentWindow);
15011
- win = win || goog.global;
15012
- if (win.Element && win.Location) {
15013
- return win;
15014
- }
15015
- } catch (ex) {
15016
- }
15017
- return null;
15018
- };
15019
- goog.dom.tags = {};
15020
- goog.dom.tags.VOID_TAGS_ = {area:!0, base:!0, br:!0, col:!0, command:!0, embed:!0, hr:!0, img:!0, input:!0, keygen:!0, link:!0, meta:!0, param:!0, source:!0, track:!0, wbr:!0};
15021
- goog.dom.tags.isVoidTag = function(tagName) {
15022
- return goog.dom.tags.VOID_TAGS_[tagName] === !0;
15023
- };
15024
- var module$exports$safevalues$for_closure$index = {}, module$contents$safevalues$for_closure$index_module = module$contents$safevalues$for_closure$index_module || {id:"third_party/javascript/safevalues/for_closure/index.closure.js"};
15025
- module$exports$safevalues$for_closure$index.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
15026
- module$exports$safevalues$for_closure$index.EMPTY_HTML = module$exports$safevalues$internals$html_impl.EMPTY_HTML;
15027
- module$exports$safevalues$for_closure$index.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
15028
- module$exports$safevalues$for_closure$index.createHtmlInternal = module$exports$safevalues$internals$html_impl.createHtmlInternal;
15029
- module$exports$safevalues$for_closure$index.unwrapHtml = module$exports$safevalues$internals$html_impl.unwrapHtml;
15030
- module$exports$safevalues$for_closure$index.SafeStyle = module$exports$safevalues$internals$style_impl.SafeStyle;
15031
- module$exports$safevalues$for_closure$index.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
15032
- module$exports$safevalues$for_closure$index.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
15033
- module$exports$safevalues$for_closure$index.SafeStyleSheet = module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet;
15034
- module$exports$safevalues$for_closure$index.createStyleSheetInternal = module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal;
15035
- module$exports$safevalues$for_closure$index.unwrapStyleSheet = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet;
15036
- module$exports$safevalues$for_closure$index.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
15037
- module$exports$safevalues$for_closure$index.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
15038
- var module$exports$safevalues$for_closure = {};
15039
- module$exports$safevalues$for_closure.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
15040
- module$exports$safevalues$for_closure.EMPTY_HTML = module$exports$safevalues$for_closure$index.EMPTY_HTML;
15041
- module$exports$safevalues$for_closure.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
15042
- module$exports$safevalues$for_closure.createHtmlInternal = module$exports$safevalues$for_closure$index.createHtmlInternal;
15043
- module$exports$safevalues$for_closure.unwrapHtml = module$exports$safevalues$for_closure$index.unwrapHtml;
15044
- module$exports$safevalues$for_closure.SafeStyle = module$exports$safevalues$internals$style_impl.SafeStyle;
15045
- module$exports$safevalues$for_closure.createStyleInternal = module$contents$safevalues$internals$style_impl_createStyleInternal;
15046
- module$exports$safevalues$for_closure.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
15047
- module$exports$safevalues$for_closure.SafeStyleSheet = module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet;
15048
- module$exports$safevalues$for_closure.createStyleSheetInternal = module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal;
15049
- module$exports$safevalues$for_closure.unwrapStyleSheet = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet;
15050
- module$exports$safevalues$for_closure.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
15051
- module$exports$safevalues$for_closure.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
15052
- module$exports$safevalues$internals$style_impl.SafeStyle.fromConstant = function(style) {
15053
- var styleString = goog.string.Const.unwrap(style);
15054
- if (styleString.length === 0) {
15055
- return module$exports$safevalues$internals$style_impl.SafeStyle.EMPTY;
15056
- }
15057
- (0,goog.asserts.assert)((0,goog.string.internal.endsWith)(styleString, ";"), "Last character of style string is not ';': " + styleString);
15058
- (0,goog.asserts.assert)((0,goog.string.internal.contains)(styleString, ":"), "Style string must contain at least one ':', to specify a \"name: value\" pair: " + styleString);
15059
- return module$contents$safevalues$internals$style_impl_createStyleInternal(styleString);
15060
- };
15061
- module$exports$safevalues$internals$style_impl.SafeStyle.unwrap = function(safeStyle) {
15062
- return module$contents$safevalues$internals$style_impl_unwrapStyle(safeStyle);
15063
- };
15064
- module$exports$safevalues$internals$style_impl.SafeStyle.create = function(map) {
15065
- var style = "", name;
15066
- for (name in map) {
15067
- if (Object.prototype.hasOwnProperty.call(map, name)) {
15068
- if (!/^[-_a-zA-Z0-9]+$/.test(name)) {
15069
- throw Error("Name allows only [-_a-zA-Z0-9], got: " + name);
15070
- }
15071
- var value = map[name];
15072
- value != null && (value = Array.isArray(value) ? value.map(module$contents$goog$html$SafeStyle_sanitizePropertyValue).join(" ") : module$contents$goog$html$SafeStyle_sanitizePropertyValue(value), style += name + ":" + value + ";");
15073
- }
15074
- }
15075
- return style ? module$contents$safevalues$internals$style_impl_createStyleInternal(style) : module$exports$safevalues$internals$style_impl.SafeStyle.EMPTY;
15076
- };
15077
- module$exports$safevalues$internals$style_impl.SafeStyle.concat = function(var_args) {
15078
- var style = "", addArgument = function(argument) {
15079
- Array.isArray(argument) ? argument.forEach(addArgument) : style += module$exports$safevalues$internals$style_impl.SafeStyle.unwrap(argument);
15080
- };
15081
- Array.prototype.forEach.call(arguments, addArgument);
15082
- return style ? module$contents$safevalues$internals$style_impl_createStyleInternal(style) : module$exports$safevalues$internals$style_impl.SafeStyle.EMPTY;
15083
- };
15084
- module$exports$safevalues$internals$style_impl.SafeStyle.EMPTY = module$contents$safevalues$internals$style_impl_createStyleInternal("");
15085
- module$exports$safevalues$internals$style_impl.SafeStyle.INNOCUOUS_STRING = "zClosurez";
15086
- function module$contents$goog$html$SafeStyle_sanitizePropertyValue(value) {
15087
- if (value instanceof module$exports$safevalues$internals$url_impl.SafeUrl) {
15088
- return 'url("' + value.toString().replace(/</g, "%3c").replace(/[\\"]/g, "\\$&") + '")';
15089
- }
15090
- var result = value instanceof goog.string.Const ? goog.string.Const.unwrap(value) : module$contents$goog$html$SafeStyle_sanitizePropertyValueString(String(value));
15091
- if (/[{;}]/.test(result)) {
15092
- throw new module$contents$goog$asserts_AssertionError("Value does not allow [{;}], got: %s.", [result]);
15093
- }
15094
- return result;
15095
- }
15096
- function module$contents$goog$html$SafeStyle_sanitizePropertyValueString(value) {
15097
- var valueWithoutFunctions = value.replace(module$contents$goog$html$SafeStyle_FUNCTIONS_RE, "$1").replace(module$contents$goog$html$SafeStyle_FUNCTIONS_RE, "$1").replace(module$contents$goog$html$SafeStyle_URL_RE, "url");
15098
- if (module$contents$goog$html$SafeStyle_VALUE_RE.test(valueWithoutFunctions)) {
15099
- if (module$contents$goog$html$SafeStyle_COMMENT_RE.test(value)) {
15100
- return (0,goog.asserts.fail)("String value disallows comments, got: " + value), module$exports$safevalues$internals$style_impl.SafeStyle.INNOCUOUS_STRING;
15101
- }
15102
- if (!module$contents$goog$html$SafeStyle_hasBalancedQuotes(value)) {
15103
- return (0,goog.asserts.fail)("String value requires balanced quotes, got: " + value), module$exports$safevalues$internals$style_impl.SafeStyle.INNOCUOUS_STRING;
15104
- }
15105
- if (!module$contents$goog$html$SafeStyle_hasBalancedSquareBrackets(value)) {
15106
- return (0,goog.asserts.fail)("String value requires balanced square brackets and one identifier per pair of brackets, got: " + value), module$exports$safevalues$internals$style_impl.SafeStyle.INNOCUOUS_STRING;
15107
- }
15108
- } else {
15109
- return (0,goog.asserts.fail)("String value allows only [-+,.\"'%_!#/ a-zA-Z0-9\\[\\]] and simple functions, got: " + value), module$exports$safevalues$internals$style_impl.SafeStyle.INNOCUOUS_STRING;
15110
- }
15111
- return module$contents$goog$html$SafeStyle_sanitizeUrl(value);
15112
- }
15113
- function module$contents$goog$html$SafeStyle_hasBalancedQuotes(value) {
15114
- for (var outsideSingle = !0, outsideDouble = !0, i = 0; i < value.length; i++) {
15115
- var c = value.charAt(i);
15116
- c == "'" && outsideDouble ? outsideSingle = !outsideSingle : c == '"' && outsideSingle && (outsideDouble = !outsideDouble);
15117
- }
15118
- return outsideSingle && outsideDouble;
15119
- }
15120
- function module$contents$goog$html$SafeStyle_hasBalancedSquareBrackets(value) {
15121
- for (var outside = !0, tokenRe = /^[-_a-zA-Z0-9]$/, i = 0; i < value.length; i++) {
15122
- var c = value.charAt(i);
15123
- if (c == "]") {
15124
- if (outside) {
15125
- return !1;
15126
- }
15127
- outside = !0;
15128
- } else if (c == "[") {
15129
- if (!outside) {
15130
- return !1;
15131
- }
15132
- outside = !1;
15133
- } else if (!outside && !tokenRe.test(c)) {
15134
- return !1;
15135
- }
15136
- }
15137
- return outside;
15138
- }
15139
- var module$contents$goog$html$SafeStyle_VALUE_RE = RegExp("^[-+,.\"'%_!#/ a-zA-Z0-9\\[\\]]+$"), module$contents$goog$html$SafeStyle_URL_RE = RegExp("\\b(url\\([ \t\n]*)('[ -&(-\\[\\]-~]*'|\"[ !#-\\[\\]-~]*\"|[!#-&*-\\[\\]-~]*)([ \t\n]*\\))", "g"), module$contents$goog$html$SafeStyle_FUNCTIONS_RE = RegExp("\\b(calc|cubic-bezier|fit-content|hsl|hsla|linear-gradient|matrix|minmax|radial-gradient|repeat|rgb|rgba|(rotate|scale|translate)(X|Y|Z|3d)?|steps|var)\\([-+*/0-9a-zA-Z.%#\\[\\], ]+\\)", "g"), module$contents$goog$html$SafeStyle_COMMENT_RE =
15140
- /\/\*/;
15141
- function module$contents$goog$html$SafeStyle_sanitizeUrl(value) {
15142
- return value.replace(module$contents$goog$html$SafeStyle_URL_RE, function(match, before, url, after) {
15143
- var quote = "";
15144
- url = url.replace(/^(['"])(.*)\1$/, function(match, start, inside) {
15145
- quote = start;
15146
- return inside;
15147
- });
15148
- var sanitized = module$contents$safevalues$builders$url_builders_sanitizeUrl(url).toString();
15149
- return before + quote + sanitized + quote + after;
15150
- });
15151
- }
15152
- goog.html.SafeStyle = module$exports$safevalues$internals$style_impl.SafeStyle;
15153
- module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.createRule = function(selector, style) {
15154
- if ((0,goog.string.internal.contains)(selector, "<")) {
15155
- throw Error("Selector does not allow '<', got: " + selector);
15156
- }
15157
- var selectorToCheck = selector.replace(/('|")((?!\1)[^\r\n\f\\]|\\[\s\S])*\1/g, "");
15158
- if (!/^[-_a-zA-Z0-9#.:* ,>+~[\]()=\\^$|]+$/.test(selectorToCheck)) {
15159
- throw Error("Selector allows only [-_a-zA-Z0-9#.:* ,>+~[\\]()=\\^$|] and strings, got: " + selector);
15160
- }
15161
- if (!module$contents$goog$html$SafeStyleSheet_hasBalancedBrackets(selectorToCheck)) {
15162
- throw Error("() and [] in selector must be balanced, got: " + selector);
15163
- }
15164
- style instanceof module$exports$safevalues$internals$style_impl.SafeStyle || (style = module$exports$safevalues$internals$style_impl.SafeStyle.create(style));
15165
- var styleSheet = selector + "{" + module$exports$safevalues$internals$style_impl.SafeStyle.unwrap(style).replace(/</g, "\\3C ") + "}";
15166
- return module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(styleSheet);
15167
- };
15168
- module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.concat = function(var_args) {
15169
- var result = "", addArgument = function(argument) {
15170
- Array.isArray(argument) ? argument.forEach(addArgument) : result += module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.unwrap(argument);
15171
- };
15172
- Array.prototype.forEach.call(arguments, addArgument);
15173
- return module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(result);
15174
- };
15175
- module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.fromConstant = function(styleSheet) {
15176
- var styleSheetString = goog.string.Const.unwrap(styleSheet);
15177
- if (styleSheetString.length === 0) {
15178
- return module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.EMPTY;
15179
- }
15180
- (0,goog.asserts.assert)(!(0,goog.string.internal.contains)(styleSheetString, "<"), "Forbidden '<' character in style sheet string: " + styleSheetString);
15181
- return module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(styleSheetString);
15182
- };
15183
- module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.unwrap = function(safeStyleSheet) {
15184
- return module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet(safeStyleSheet);
15185
- };
15186
- module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.EMPTY = module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal("");
15187
- function module$contents$goog$html$SafeStyleSheet_hasBalancedBrackets(s) {
15188
- for (var brackets = {"(":")", "[":"]"}, expectedBrackets = [], i = 0; i < s.length; i++) {
15189
- var ch = s[i];
15190
- if (brackets[ch]) {
15191
- expectedBrackets.push(brackets[ch]);
15192
- } else if (module$contents$goog$object_contains(brackets, ch) && expectedBrackets.pop() != ch) {
15193
- return !1;
15194
- }
15195
- }
15196
- return expectedBrackets.length == 0;
15197
- }
15198
- goog.html.SafeStyleSheet = module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet;
15199
- module$exports$safevalues$internals$html_impl.SafeHtml.unwrap = function(safeHtml) {
15200
- return (0,module$exports$safevalues$for_closure$index.unwrapHtml)(safeHtml).toString();
14921
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.BUTTON);
15201
14922
  };
15202
- module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML = function(safeHtml) {
15203
- return (0,module$exports$safevalues$for_closure$index.unwrapHtml)(safeHtml);
14923
+ goog.asserts.dom.assertIsHtmlLinkElement = module$contents$goog$asserts$dom_assertIsHtmlLinkElement;
14924
+ goog.asserts.dom.assertIsHtmlImageElement = function(value) {
14925
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IMG);
15204
14926
  };
15205
- module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape = function(textOrHtml) {
15206
- return textOrHtml instanceof module$exports$safevalues$internals$html_impl.SafeHtml ? textOrHtml : (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(goog.string.internal.htmlEscape(String(textOrHtml)));
14927
+ goog.asserts.dom.assertIsHtmlAudioElement = function(value) {
14928
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.AUDIO);
15207
14929
  };
15208
- module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscapePreservingNewlines = function(textOrHtml) {
15209
- if (textOrHtml instanceof module$exports$safevalues$internals$html_impl.SafeHtml) {
15210
- return textOrHtml;
15211
- }
15212
- var html = module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape(textOrHtml);
15213
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(goog.string.internal.newLineToBr(module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(html)));
14930
+ goog.asserts.dom.assertIsHtmlVideoElement = function(value) {
14931
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.VIDEO);
15214
14932
  };
15215
- module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscapePreservingNewlinesAndSpaces = function(textOrHtml) {
15216
- if (textOrHtml instanceof module$exports$safevalues$internals$html_impl.SafeHtml) {
15217
- return textOrHtml;
15218
- }
15219
- var html = module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape(textOrHtml);
15220
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(goog.string.internal.whitespaceEscape(module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(html)));
14933
+ goog.asserts.dom.assertIsHtmlInputElement = function(value) {
14934
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.INPUT);
15221
14935
  };
15222
- module$exports$safevalues$internals$html_impl.SafeHtml.create = function(tagName, attributes, content) {
15223
- module$exports$safevalues$internals$html_impl.SafeHtml.verifyTagName(String(tagName));
15224
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse(String(tagName), attributes, content);
14936
+ goog.asserts.dom.assertIsHtmlTextAreaElement = function(value) {
14937
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.TEXTAREA);
15225
14938
  };
15226
- module$exports$safevalues$internals$html_impl.SafeHtml.verifyTagName = function(tagName) {
15227
- if (!module$contents$goog$html$SafeHtml_VALID_NAMES_IN_TAG.test(tagName)) {
15228
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? "Invalid tag name <" + tagName + ">." : "");
15229
- }
15230
- if (tagName.toUpperCase() in module$contents$goog$html$SafeHtml_NOT_ALLOWED_TAG_NAMES) {
15231
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? "Tag name <" + tagName + "> is not allowed for SafeHtml." : "");
15232
- }
14939
+ goog.asserts.dom.assertIsHtmlCanvasElement = function(value) {
14940
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.CANVAS);
15233
14941
  };
15234
- module$exports$safevalues$internals$html_impl.SafeHtml.createIframe = function(src, srcdoc, attributes, content) {
15235
- src && module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(src);
15236
- var fixedAttributes = {};
15237
- fixedAttributes.src = src || null;
15238
- fixedAttributes.srcdoc = srcdoc && module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(srcdoc);
15239
- var combinedAttrs = module$exports$safevalues$internals$html_impl.SafeHtml.combineAttributes(fixedAttributes, {sandbox:""}, attributes);
15240
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("iframe", combinedAttrs, content);
14942
+ goog.asserts.dom.assertIsHtmlEmbedElement = function(value) {
14943
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.EMBED);
15241
14944
  };
15242
- module$exports$safevalues$internals$html_impl.SafeHtml.createSandboxIframe = function(src, srcdoc, attributes, content) {
15243
- if (!module$exports$safevalues$internals$html_impl.SafeHtml.canUseSandboxIframe()) {
15244
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? "The browser does not support sandboxed iframes." : "");
15245
- }
15246
- var fixedAttributes = {};
15247
- fixedAttributes.src = src ? module$contents$safevalues$internals$url_impl_unwrapUrl(module$contents$safevalues$builders$url_builders_sanitizeUrl(src)) : null;
15248
- fixedAttributes.srcdoc = srcdoc || null;
15249
- fixedAttributes.sandbox = "";
15250
- var combinedAttrs = module$exports$safevalues$internals$html_impl.SafeHtml.combineAttributes(fixedAttributes, {}, attributes);
15251
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("iframe", combinedAttrs, content);
14945
+ goog.asserts.dom.assertIsHtmlFormElement = module$contents$goog$asserts$dom_assertIsHtmlFormElement;
14946
+ goog.asserts.dom.assertIsHtmlFrameElement = function(value) {
14947
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FRAME);
15252
14948
  };
15253
- module$exports$safevalues$internals$html_impl.SafeHtml.canUseSandboxIframe = function() {
15254
- return goog.global.HTMLIFrameElement && "sandbox" in goog.global.HTMLIFrameElement.prototype;
14949
+ goog.asserts.dom.assertIsHtmlIFrameElement = module$contents$goog$asserts$dom_assertIsHtmlIFrameElement;
14950
+ goog.asserts.dom.assertIsHtmlObjectElement = function(value) {
14951
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.OBJECT);
15255
14952
  };
15256
- module$exports$safevalues$internals$html_impl.SafeHtml.createScriptSrc = function(src, attributes) {
15257
- module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(src);
15258
- var combinedAttrs = module$exports$safevalues$internals$html_impl.SafeHtml.combineAttributes({src:src}, {}, attributes);
15259
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("script", combinedAttrs);
14953
+ goog.asserts.dom.assertIsHtmlScriptElement = function(value) {
14954
+ return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.SCRIPT);
15260
14955
  };
15261
- module$exports$safevalues$internals$html_impl.SafeHtml.createStyle = function(styleSheet, attributes) {
15262
- var combinedAttrs = module$exports$safevalues$internals$html_impl.SafeHtml.combineAttributes({type:"text/css"}, {}, attributes), content = "";
15263
- styleSheet = module$contents$goog$array_concat(styleSheet);
15264
- for (var i = 0; i < styleSheet.length; i++) {
15265
- content += module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet.unwrap(styleSheet[i]);
14956
+ goog.dom.asserts = {};
14957
+ goog.dom.asserts.assertIsLocation = function(o) {
14958
+ if (module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS) {
14959
+ var win = goog.dom.asserts.getWindow_(o);
14960
+ win && (!o || !(o instanceof win.Location) && o instanceof win.Element) && goog.asserts.fail("Argument is not a Location (or a non-Element mock); got: %s", goog.dom.asserts.debugStringForType_(o));
15266
14961
  }
15267
- var htmlContent = (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(content);
15268
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("style", combinedAttrs, htmlContent);
15269
- };
15270
- module$exports$safevalues$internals$html_impl.SafeHtml.createMetaRefresh = function(url, secs) {
15271
- var unwrappedUrl = module$contents$safevalues$internals$url_impl_unwrapUrl(module$contents$safevalues$builders$url_builders_sanitizeUrl(url));
15272
- return module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("meta", {"http-equiv":"refresh", content:(secs || 0) + "; url=" + unwrappedUrl});
14962
+ return o;
15273
14963
  };
15274
- module$exports$safevalues$internals$html_impl.SafeHtml.join = function(separator, parts) {
15275
- var separatorHtml = module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape(separator), content = [], addArgument = function(argument) {
15276
- if (Array.isArray(argument)) {
15277
- argument.forEach(addArgument);
15278
- } else {
15279
- var html = module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape(argument);
15280
- content.push(module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(html));
14964
+ goog.dom.asserts.debugStringForType_ = function(value) {
14965
+ if (goog.isObject(value)) {
14966
+ try {
14967
+ return value.constructor.displayName || value.constructor.name || Object.prototype.toString.call(value);
14968
+ } catch (e) {
14969
+ return "<object could not be stringified>";
15281
14970
  }
15282
- };
15283
- parts.forEach(addArgument);
15284
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(content.join(module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(separatorHtml)));
15285
- };
15286
- module$exports$safevalues$internals$html_impl.SafeHtml.concat = function(var_args) {
15287
- return module$exports$safevalues$internals$html_impl.SafeHtml.join(module$exports$safevalues$internals$html_impl.SafeHtml.EMPTY, Array.prototype.slice.call(arguments));
15288
- };
15289
- module$exports$safevalues$internals$html_impl.SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse = function(tagName, attributes, content) {
15290
- var result = "<" + tagName + module$exports$safevalues$internals$html_impl.SafeHtml.stringifyAttributes(tagName, attributes);
15291
- content == null ? content = [] : Array.isArray(content) || (content = [content]);
15292
- if (goog.dom.tags.isVoidTag(tagName.toLowerCase())) {
15293
- goog.asserts.assert(!content.length, "Void tag <" + tagName + "> does not allow content."), result += ">";
15294
14971
  } else {
15295
- var html = module$exports$safevalues$internals$html_impl.SafeHtml.concat(content);
15296
- result += ">" + module$exports$safevalues$internals$html_impl.SafeHtml.unwrap(html) + "</" + tagName + ">";
14972
+ return value === void 0 ? "undefined" : value === null ? "null" : typeof value;
15297
14973
  }
15298
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)(result);
15299
14974
  };
15300
- module$exports$safevalues$internals$html_impl.SafeHtml.stringifyAttributes = function(tagName, attributes) {
15301
- var result = "";
15302
- if (attributes) {
15303
- for (var name in attributes) {
15304
- if (Object.prototype.hasOwnProperty.call(attributes, name)) {
15305
- if (!module$contents$goog$html$SafeHtml_VALID_NAMES_IN_TAG.test(name)) {
15306
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'Invalid attribute name "' + name + '".' : "");
15307
- }
15308
- var value = attributes[name];
15309
- value != null && (result += " " + module$contents$goog$html$SafeHtml_getAttrNameAndValue(tagName, name, value));
15310
- }
14975
+ goog.dom.asserts.getWindow_ = function(o) {
14976
+ try {
14977
+ var doc = o && o.ownerDocument, win = doc && (doc.defaultView || doc.parentWindow);
14978
+ win = win || goog.global;
14979
+ if (win.Element && win.Location) {
14980
+ return win;
15311
14981
  }
14982
+ } catch (ex) {
15312
14983
  }
15313
- return result;
14984
+ return null;
15314
14985
  };
15315
- module$exports$safevalues$internals$html_impl.SafeHtml.combineAttributes = function(fixedAttributes, defaultAttributes, attributes) {
15316
- var combinedAttributes = {}, name;
15317
- for (name in fixedAttributes) {
15318
- Object.prototype.hasOwnProperty.call(fixedAttributes, name) && (goog.asserts.assert(name.toLowerCase() == name, "Must be lower case"), combinedAttributes[name] = fixedAttributes[name]);
15319
- }
15320
- for (var name$jscomp$0 in defaultAttributes) {
15321
- Object.prototype.hasOwnProperty.call(defaultAttributes, name$jscomp$0) && (goog.asserts.assert(name$jscomp$0.toLowerCase() == name$jscomp$0, "Must be lower case"), combinedAttributes[name$jscomp$0] = defaultAttributes[name$jscomp$0]);
15322
- }
15323
- if (attributes) {
15324
- for (var name$jscomp$1 in attributes) {
15325
- if (Object.prototype.hasOwnProperty.call(attributes, name$jscomp$1)) {
15326
- var nameLower = name$jscomp$1.toLowerCase();
15327
- if (nameLower in fixedAttributes) {
15328
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'Cannot override "' + nameLower + '" attribute, got "' + name$jscomp$1 + '" with value "' + attributes[name$jscomp$1] + '"' : "");
15329
- }
15330
- nameLower in defaultAttributes && delete combinedAttributes[nameLower];
15331
- combinedAttributes[name$jscomp$1] = attributes[name$jscomp$1];
15332
- }
15333
- }
15334
- }
15335
- return combinedAttributes;
14986
+ goog.string.Const = function(opt_token, opt_content) {
14987
+ this.stringConstValueWithSecurityContract__googStringSecurityPrivate_ = opt_token === goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ && opt_content || "";
14988
+ this.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ = goog.string.Const.TYPE_MARKER_;
15336
14989
  };
15337
- module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES = goog.DEBUG;
15338
- module$exports$safevalues$internals$html_impl.SafeHtml.SUPPORT_STYLE_ATTRIBUTE = !0;
15339
- module$exports$safevalues$internals$html_impl.SafeHtml.from = module$exports$safevalues$internals$html_impl.SafeHtml.htmlEscape;
15340
- var module$contents$goog$html$SafeHtml_VALID_NAMES_IN_TAG = /^[a-zA-Z0-9-]+$/, module$contents$goog$html$SafeHtml_URL_ATTRIBUTES = {action:!0, cite:!0, data:!0, formaction:!0, href:!0, manifest:!0, poster:!0, src:!0}, module$contents$goog$html$SafeHtml_NOT_ALLOWED_TAG_NAMES = module$contents$goog$object_createSet(goog.dom.TagName.APPLET, goog.dom.TagName.BASE, goog.dom.TagName.EMBED, goog.dom.TagName.IFRAME, goog.dom.TagName.LINK, goog.dom.TagName.MATH, goog.dom.TagName.META, goog.dom.TagName.OBJECT,
15341
- goog.dom.TagName.SCRIPT, goog.dom.TagName.STYLE, goog.dom.TagName.SVG, goog.dom.TagName.TEMPLATE);
15342
- function module$contents$goog$html$SafeHtml_getAttrNameAndValue(tagName, name, value) {
15343
- if (value instanceof goog.string.Const) {
15344
- value = goog.string.Const.unwrap(value);
15345
- } else if (name.toLowerCase() == "style") {
15346
- if (module$exports$safevalues$internals$html_impl.SafeHtml.SUPPORT_STYLE_ATTRIBUTE) {
15347
- value = module$contents$goog$html$SafeHtml_getStyleValue(value);
15348
- } else {
15349
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'Attribute "style" not supported.' : "");
15350
- }
15351
- } else {
15352
- if (/^on/i.test(name)) {
15353
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'Attribute "' + name + '" requires goog.string.Const value, "' + value + '" given.' : "");
15354
- }
15355
- if (name.toLowerCase() in module$contents$goog$html$SafeHtml_URL_ATTRIBUTES) {
15356
- if (value instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl) {
15357
- value = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(value);
15358
- } else if (value instanceof module$exports$safevalues$internals$url_impl.SafeUrl) {
15359
- value = module$contents$safevalues$internals$url_impl_unwrapUrl(value);
15360
- } else if (typeof value === "string") {
15361
- value = module$contents$safevalues$builders$url_builders_sanitizeUrl(value).toString();
15362
- } else {
15363
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'Attribute "' + name + '" on tag "' + tagName + '" requires safevalues.SafeUrl, goog.string.Const, or string, value "' + value + '" given.' : "");
15364
- }
15365
- }
15366
- }
15367
- goog.asserts.assert(value instanceof module$exports$safevalues$internals$url_impl.SafeUrl || value instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl || value instanceof module$exports$safevalues$internals$style_impl.SafeStyle || value instanceof module$exports$safevalues$internals$html_impl.SafeHtml || typeof value === "string" || typeof value === "number", "String or number value expected, got " +
15368
- typeof value + " with value: " + value);
15369
- return name + '="' + goog.string.internal.htmlEscape(String(value)) + '"';
15370
- }
15371
- function module$contents$goog$html$SafeHtml_getStyleValue(value) {
15372
- if (typeof value === "string") {
15373
- return value;
15374
- }
15375
- if (!goog.isObject(value)) {
15376
- throw Error(module$exports$safevalues$internals$html_impl.SafeHtml.ENABLE_ERROR_MESSAGES ? 'The "style" attribute requires goog.html.SafeStyle or map of style properties, ' + typeof value + " given: " + value : "");
14990
+ goog.string.Const.prototype.toString = function() {
14991
+ return this.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
14992
+ };
14993
+ goog.string.Const.unwrap = function(stringConst) {
14994
+ if (stringConst instanceof goog.string.Const && stringConst.constructor === goog.string.Const && stringConst.STRING_CONST_TYPE_MARKER__GOOG_STRING_SECURITY_PRIVATE_ === goog.string.Const.TYPE_MARKER_) {
14995
+ return stringConst.stringConstValueWithSecurityContract__googStringSecurityPrivate_;
15377
14996
  }
15378
- value instanceof module$exports$safevalues$internals$style_impl.SafeStyle || (value = module$exports$safevalues$internals$style_impl.SafeStyle.create(value));
15379
- return module$exports$safevalues$internals$style_impl.SafeStyle.unwrap(value);
15380
- }
15381
- module$exports$safevalues$internals$html_impl.SafeHtml.DOCTYPE_HTML = function() {
15382
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)("<!DOCTYPE html>");
15383
- }();
15384
- module$exports$safevalues$internals$html_impl.SafeHtml.EMPTY = module$exports$safevalues$for_closure$index.EMPTY_HTML;
15385
- module$exports$safevalues$internals$html_impl.SafeHtml.BR = function() {
15386
- return (0,module$exports$safevalues$for_closure$index.createHtmlInternal)("<br>");
15387
- }();
15388
- goog.html.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
14997
+ goog.asserts.fail("expected object of type Const, got '" + stringConst + "'");
14998
+ return "type_error:Const";
14999
+ };
15000
+ goog.string.Const.from = function(s) {
15001
+ return new goog.string.Const(goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_, s);
15002
+ };
15003
+ goog.string.Const.TYPE_MARKER_ = {};
15004
+ goog.string.Const.GOOG_STRING_CONSTRUCTOR_TOKEN_PRIVATE_ = {};
15005
+ goog.string.Const.EMPTY = goog.string.Const.from("");
15389
15006
  var module$exports$safevalues$for_friends$index = {}, module$contents$safevalues$for_friends$index_module = module$contents$safevalues$for_friends$index_module || {id:"third_party/javascript/safevalues/for_friends/index.closure.js"};
15390
15007
  module$exports$safevalues$for_friends$index.IS_NOT_JAVASCRIPT_URL_PATTERN = module$exports$safevalues$builders$url_builders.IS_NOT_JAVASCRIPT_URL_PATTERN;
15391
15008
  module$exports$safevalues$for_friends$index.unwrapUrlOrSanitize = module$contents$safevalues$builders$url_builders_unwrapUrlOrSanitize;
@@ -15591,7 +15208,7 @@ function module$contents$safevalues$builders$html_builders_stringifyAttributes(t
15591
15208
  }
15592
15209
  module$exports$safevalues$builders$html_builders.stringifyAttributes = module$contents$safevalues$builders$html_builders_stringifyAttributes;
15593
15210
  function module$contents$safevalues$builders$html_builders_getAttrNameAndValue(tagName, name, value) {
15594
- if (/^on/i.test(name)) {
15211
+ if (/^on./i.test(name)) {
15595
15212
  throw Error(goog.DEBUG ? 'Attribute "' + name + " is forbidden. Inline event handlers can lead to XSS. Please use the 'addEventListener' API instead." : "");
15596
15213
  }
15597
15214
  module$contents$safevalues$builders$html_builders_URL_ATTRIBUTES.indexOf(name.toLowerCase()) !== -1 && (value = module$contents$safevalues$internals$url_impl_isUrl(value) ? value.toString() : module$contents$safevalues$builders$url_builders_sanitizeJavaScriptUrl(String(value)) || "about:invalid#zClosurez");
@@ -17059,7 +16676,7 @@ module$exports$safevalues$index.EMPTY_HTML = module$exports$safevalues$internals
17059
16676
  module$exports$safevalues$index.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
17060
16677
  module$exports$safevalues$index.isHtml = module$exports$safevalues$internals$html_impl.isHtml;
17061
16678
  module$exports$safevalues$index.unwrapHtml = module$exports$safevalues$internals$html_impl.unwrapHtml;
17062
- module$exports$safevalues$index.TrustedResourceUrl = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl;
16679
+ module$exports$safevalues$index.TrustedResourceUrl = module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl;
17063
16680
  module$exports$safevalues$index.isResourceUrl = module$contents$safevalues$internals$resource_url_impl_isResourceUrl;
17064
16681
  module$exports$safevalues$index.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
17065
16682
  module$exports$safevalues$index.EMPTY_SCRIPT = module$exports$safevalues$internals$script_impl.EMPTY_SCRIPT;
@@ -17078,28 +16695,99 @@ module$exports$safevalues$index.SafeUrl = module$exports$safevalues$internals$ur
17078
16695
  module$exports$safevalues$index.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
17079
16696
  module$exports$safevalues$index.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
17080
16697
  module$exports$safevalues$index.reportOnlyHtmlPassthrough = module$contents$safevalues$reporting$reporting_reportOnlyHtmlPassthrough;
16698
+ safevalues.safeAttrPrefix = module$contents$safevalues$builders$attribute_builders_safeAttrPrefix;
16699
+ safevalues.htmlFragment = module$contents$safevalues$builders$document_fragment_builders_htmlFragment;
16700
+ safevalues.htmlToNode = module$contents$safevalues$builders$document_fragment_builders_htmlToNode;
16701
+ safevalues.svgFragment = module$contents$safevalues$builders$document_fragment_builders_svgFragment;
16702
+ safevalues.concatHtmls = module$exports$safevalues$index.concatHtmls;
16703
+ safevalues.createHtml = module$exports$safevalues$index.createHtml;
16704
+ safevalues.doctypeHtml = module$exports$safevalues$index.doctypeHtml;
16705
+ safevalues.htmlEscape = module$exports$safevalues$index.htmlEscape;
16706
+ safevalues.joinHtmls = module$exports$safevalues$index.joinHtmls;
16707
+ safevalues.nodeToHtml = module$exports$safevalues$index.nodeToHtml;
16708
+ safevalues.scriptToHtml = module$exports$safevalues$index.scriptToHtml;
16709
+ safevalues.scriptUrlToHtml = module$exports$safevalues$index.scriptUrlToHtml;
16710
+ safevalues.styleSheetToHtml = module$exports$safevalues$index.styleSheetToHtml;
16711
+ safevalues.HtmlFormatter = module$exports$safevalues$builders$html_formatter.HtmlFormatter;
16712
+ safevalues.sanitizeHtmlWithCss = module$contents$safevalues$builders$html_sanitizer$default_css_sanitizer_sanitizeHtmlWithCss;
16713
+ safevalues.sanitizeHtml = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtml;
16714
+ safevalues.sanitizeHtmlAssertUnchanged = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged;
16715
+ safevalues.sanitizeHtmlToFragment = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlToFragment;
16716
+ safevalues.CssSanitizer = module$exports$safevalues$index.CssSanitizer;
16717
+ safevalues.HtmlSanitizer = module$exports$safevalues$index.HtmlSanitizer;
16718
+ safevalues.CssSanitizerBuilder = module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder;
16719
+ safevalues.HtmlSanitizerBuilder = module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.HtmlSanitizerBuilder;
16720
+ safevalues.ResourceUrlPolicyHintsType = module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType;
16721
+ safevalues.ResourceUrlPolicy = module$exports$safevalues$index.ResourceUrlPolicy;
16722
+ safevalues.ResourceUrlPolicyHints = module$exports$safevalues$index.ResourceUrlPolicyHints;
16723
+ safevalues.appendParams = module$contents$safevalues$builders$resource_url_builders_appendParams;
16724
+ safevalues.appendPathSegment = module$contents$safevalues$builders$resource_url_builders_appendPathSegment;
16725
+ safevalues.objectUrlFromScript = module$contents$safevalues$builders$resource_url_builders_objectUrlFromScript;
16726
+ safevalues.replaceFragment = module$contents$safevalues$builders$resource_url_builders_replaceFragment;
16727
+ safevalues.replaceParams = module$contents$safevalues$builders$resource_url_builders_replaceParams;
16728
+ safevalues.toAbsoluteResourceUrl = module$contents$safevalues$builders$resource_url_builders_toAbsoluteResourceUrl;
16729
+ safevalues.trustedResourceUrl = module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl;
16730
+ safevalues.concatScripts = module$contents$safevalues$builders$script_builders_concatScripts;
16731
+ safevalues.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
16732
+ safevalues.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
16733
+ safevalues.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
16734
+ safevalues.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
16735
+ safevalues.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
16736
+ safevalues.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
16737
+ safevalues.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
16738
+ safevalues.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
16739
+ safevalues.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
16740
+ safevalues.SanitizableUrlScheme = module$exports$safevalues$builders$url_builders.SanitizableUrlScheme;
16741
+ safevalues.addJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_addJavaScriptUrlSanitizationCallback;
16742
+ safevalues.fromMediaSource = module$contents$safevalues$builders$url_builders_fromMediaSource;
16743
+ safevalues.fromTrustedResourceUrl = module$contents$safevalues$builders$url_builders_fromTrustedResourceUrl;
16744
+ safevalues.objectUrlFromSafeSource = module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource;
16745
+ safevalues.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
16746
+ safevalues.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
16747
+ safevalues.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
16748
+ safevalues.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
16749
+ safevalues.Scheme = module$exports$safevalues$index.Scheme;
16750
+ safevalues.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
16751
+ safevalues.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
16752
+ safevalues.EMPTY_HTML = module$exports$safevalues$index.EMPTY_HTML;
16753
+ safevalues.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
16754
+ safevalues.isHtml = module$exports$safevalues$index.isHtml;
16755
+ safevalues.unwrapHtml = module$exports$safevalues$index.unwrapHtml;
16756
+ safevalues.TrustedResourceUrl = module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl;
16757
+ safevalues.isResourceUrl = module$contents$safevalues$internals$resource_url_impl_isResourceUrl;
16758
+ safevalues.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
16759
+ safevalues.EMPTY_SCRIPT = module$exports$safevalues$internals$script_impl.EMPTY_SCRIPT;
16760
+ safevalues.SafeScript = module$exports$safevalues$internals$script_impl.SafeScript;
16761
+ safevalues.isScript = module$contents$safevalues$internals$script_impl_isScript;
16762
+ safevalues.unwrapScript = module$contents$safevalues$internals$script_impl_unwrapScript;
16763
+ safevalues.SafeStyle = module$exports$safevalues$internals$style_impl.SafeStyle;
16764
+ safevalues.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
16765
+ safevalues.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
16766
+ safevalues.SafeStyleSheet = module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet;
16767
+ safevalues.isStyleSheet = module$contents$safevalues$internals$style_sheet_impl_isStyleSheet;
16768
+ safevalues.unwrapStyleSheet = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet;
16769
+ safevalues.ABOUT_BLANK = module$exports$safevalues$internals$url_impl.ABOUT_BLANK;
16770
+ safevalues.INNOCUOUS_URL = module$exports$safevalues$internals$url_impl.INNOCUOUS_URL;
16771
+ safevalues.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
16772
+ safevalues.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
16773
+ safevalues.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
16774
+ safevalues.reportOnlyHtmlPassthrough = module$contents$safevalues$reporting$reporting_reportOnlyHtmlPassthrough;
17081
16775
  goog.dom.safe = {};
17082
- goog.dom.safe.insertAdjacentHtml = function(node, position, html) {
17083
- node.insertAdjacentHTML(position, module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML(html));
17084
- };
17085
16776
  goog.dom.safe.SET_INNER_HTML_DISALLOWED_TAGS_ = {MATH:!0, SCRIPT:!0, STYLE:!0, SVG:!0};
17086
16777
  goog.dom.safe.setInnerHtml = function(elem, html) {
17087
16778
  if (module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS && elem.tagName && goog.dom.safe.SET_INNER_HTML_DISALLOWED_TAGS_[elem.tagName.toUpperCase()]) {
17088
16779
  throw Error("goog.dom.safe.setInnerHtml cannot be used to set content of " + elem.tagName + ".");
17089
16780
  }
17090
- elem.innerHTML = module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML(html);
16781
+ elem.innerHTML = module$exports$safevalues$index.unwrapHtml(html);
17091
16782
  };
17092
16783
  goog.dom.safe.setInnerHtmlFromConstant = function(element, constHtml) {
17093
16784
  goog.dom.safe.setInnerHtml(element, module$contents$safevalues$restricted$reviewed_htmlSafeByReview(goog.string.Const.unwrap(constHtml), {justification:"Constant HTML to be immediatelly used."}));
17094
16785
  };
17095
- goog.dom.safe.setOuterHtml = function(elem, html) {
17096
- elem.outerHTML = module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML(html);
17097
- };
17098
16786
  goog.dom.safe.setFormElementAction = function(form, url) {
17099
16787
  module$contents$goog$asserts$dom_assertIsHtmlFormElement(form).action = goog.dom.safe.sanitizeJavaScriptUrlAssertUnchanged_(url);
17100
16788
  };
17101
16789
  goog.dom.safe.documentWrite = function(doc, html) {
17102
- doc.write(module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML(html));
16790
+ doc.write(module$exports$safevalues$index.unwrapHtml(html));
17103
16791
  };
17104
16792
  goog.dom.safe.setAnchorHref = function(anchor, url) {
17105
16793
  module$contents$goog$asserts$dom_assertIsHtmlAnchorElement(anchor);
@@ -17107,29 +16795,20 @@ goog.dom.safe.setAnchorHref = function(anchor, url) {
17107
16795
  };
17108
16796
  goog.dom.safe.setIframeSrc = function(iframe, url) {
17109
16797
  module$contents$goog$asserts$dom_assertIsHtmlIFrameElement(iframe);
17110
- iframe.src = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(url);
16798
+ iframe.src = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url).toString();
17111
16799
  };
17112
16800
  goog.dom.safe.setLinkHrefAndRel = function(link, url, rel) {
17113
16801
  module$contents$goog$asserts$dom_assertIsHtmlLinkElement(link);
17114
16802
  link.rel = rel;
17115
16803
  if (goog.string.internal.caseInsensitiveContains(rel, "stylesheet")) {
17116
- goog.asserts.assert(url instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl, 'URL must be TrustedResourceUrl because "rel" contains "stylesheet"');
17117
- link.href = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(url);
16804
+ goog.asserts.assert(url instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl, 'URL must be TrustedResourceUrl because "rel" contains "stylesheet"');
16805
+ link.href = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url).toString();
17118
16806
  var nonce = goog.dom.safe.getStyleNonce(link.ownerDocument && link.ownerDocument.defaultView);
17119
16807
  nonce && link.setAttribute("nonce", nonce);
17120
16808
  } else {
17121
- link.href = url instanceof module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl ? module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrap(url) : goog.dom.safe.sanitizeJavaScriptUrlAssertUnchanged_(url);
16809
+ link.href = url instanceof module$exports$safevalues$internals$resource_url_impl.TrustedResourceUrl ? module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(url).toString() : goog.dom.safe.sanitizeJavaScriptUrlAssertUnchanged_(url);
17122
16810
  }
17123
16811
  };
17124
- goog.dom.safe.setScriptSrc = function(script, url) {
17125
- module$contents$goog$asserts$dom_assertIsHtmlScriptElement(script);
17126
- goog.dom.safe.setNonceForScriptElement_(script);
17127
- script.src = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl.unwrapTrustedScriptURL(url);
17128
- };
17129
- goog.dom.safe.setNonceForScriptElement_ = function(script) {
17130
- var nonce = goog.dom.safe.getScriptNonce(script.ownerDocument && script.ownerDocument.defaultView);
17131
- nonce && script.setAttribute("nonce", nonce);
17132
- };
17133
16812
  goog.dom.safe.setLocationHref = function(loc, url) {
17134
16813
  goog.dom.asserts.assertIsLocation(loc);
17135
16814
  loc.href = goog.dom.safe.sanitizeJavaScriptUrlAssertUnchanged_(url);
@@ -17145,11 +16824,8 @@ goog.dom.safe.openInWindow = function(url, opt_openerWin, opt_name, opt_specs) {
17145
16824
  var sanitizedUrl = goog.dom.safe.sanitizeJavaScriptUrlAssertUnchanged_(url), win = opt_openerWin || goog.global, name = opt_name instanceof goog.string.Const ? goog.string.Const.unwrap(opt_name) : opt_name || "";
17146
16825
  return opt_specs !== void 0 ? win.open(sanitizedUrl, name, opt_specs) : win.open(sanitizedUrl, name);
17147
16826
  };
17148
- goog.dom.safe.parseFromStringHtml = function(parser, html) {
17149
- return goog.dom.safe.parseFromString(parser, html, "text/html");
17150
- };
17151
16827
  goog.dom.safe.parseFromString = function(parser, content, type) {
17152
- return parser.parseFromString(module$exports$safevalues$internals$html_impl.SafeHtml.unwrapTrustedHTML(content), type);
16828
+ return parser.parseFromString(module$exports$safevalues$index.unwrapHtml(content), type);
17153
16829
  };
17154
16830
  goog.dom.safe.createImageFromBlob = function(blob) {
17155
16831
  if (!/^image\/.*/g.test(blob.type)) {
@@ -19044,83 +18720,6 @@ goog.async.Deferred.assertNoErrors = function() {
19044
18720
  error.throwError();
19045
18721
  }
19046
18722
  };
19047
- safevalues.safeAttrPrefix = module$contents$safevalues$builders$attribute_builders_safeAttrPrefix;
19048
- safevalues.htmlFragment = module$contents$safevalues$builders$document_fragment_builders_htmlFragment;
19049
- safevalues.htmlToNode = module$contents$safevalues$builders$document_fragment_builders_htmlToNode;
19050
- safevalues.svgFragment = module$contents$safevalues$builders$document_fragment_builders_svgFragment;
19051
- safevalues.concatHtmls = module$exports$safevalues$index.concatHtmls;
19052
- safevalues.createHtml = module$exports$safevalues$index.createHtml;
19053
- safevalues.doctypeHtml = module$exports$safevalues$index.doctypeHtml;
19054
- safevalues.htmlEscape = module$exports$safevalues$index.htmlEscape;
19055
- safevalues.joinHtmls = module$exports$safevalues$index.joinHtmls;
19056
- safevalues.nodeToHtml = module$exports$safevalues$index.nodeToHtml;
19057
- safevalues.scriptToHtml = module$exports$safevalues$index.scriptToHtml;
19058
- safevalues.scriptUrlToHtml = module$exports$safevalues$index.scriptUrlToHtml;
19059
- safevalues.styleSheetToHtml = module$exports$safevalues$index.styleSheetToHtml;
19060
- safevalues.HtmlFormatter = module$exports$safevalues$builders$html_formatter.HtmlFormatter;
19061
- safevalues.sanitizeHtmlWithCss = module$contents$safevalues$builders$html_sanitizer$default_css_sanitizer_sanitizeHtmlWithCss;
19062
- safevalues.sanitizeHtml = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtml;
19063
- safevalues.sanitizeHtmlAssertUnchanged = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged;
19064
- safevalues.sanitizeHtmlToFragment = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlToFragment;
19065
- safevalues.CssSanitizer = module$exports$safevalues$index.CssSanitizer;
19066
- safevalues.HtmlSanitizer = module$exports$safevalues$index.HtmlSanitizer;
19067
- safevalues.CssSanitizerBuilder = module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder;
19068
- safevalues.HtmlSanitizerBuilder = module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.HtmlSanitizerBuilder;
19069
- safevalues.ResourceUrlPolicyHintsType = module$exports$safevalues$builders$html_sanitizer$resource_url_policy.ResourceUrlPolicyHintsType;
19070
- safevalues.ResourceUrlPolicy = module$exports$safevalues$index.ResourceUrlPolicy;
19071
- safevalues.ResourceUrlPolicyHints = module$exports$safevalues$index.ResourceUrlPolicyHints;
19072
- safevalues.appendParams = module$contents$safevalues$builders$resource_url_builders_appendParams;
19073
- safevalues.appendPathSegment = module$contents$safevalues$builders$resource_url_builders_appendPathSegment;
19074
- safevalues.objectUrlFromScript = module$contents$safevalues$builders$resource_url_builders_objectUrlFromScript;
19075
- safevalues.replaceFragment = module$contents$safevalues$builders$resource_url_builders_replaceFragment;
19076
- safevalues.replaceParams = module$contents$safevalues$builders$resource_url_builders_replaceParams;
19077
- safevalues.toAbsoluteResourceUrl = module$contents$safevalues$builders$resource_url_builders_toAbsoluteResourceUrl;
19078
- safevalues.trustedResourceUrl = module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl;
19079
- safevalues.concatScripts = module$contents$safevalues$builders$script_builders_concatScripts;
19080
- safevalues.safeScript = module$contents$safevalues$builders$script_builders_safeScript;
19081
- safevalues.safeScriptWithArgs = module$contents$safevalues$builders$script_builders_safeScriptWithArgs;
19082
- safevalues.valueAsScript = module$contents$safevalues$builders$script_builders_valueAsScript;
19083
- safevalues.concatStyles = module$contents$safevalues$builders$style_builders_concatStyles;
19084
- safevalues.safeStyle = module$contents$safevalues$builders$style_builders_safeStyle;
19085
- safevalues.styleForMigration = module$contents$safevalues$builders$style_builders_styleForMigration;
19086
- safevalues.concatStyleSheets = module$contents$safevalues$builders$style_sheet_builders_concatStyleSheets;
19087
- safevalues.safeStyleRule = module$contents$safevalues$builders$style_sheet_builders_safeStyleRule;
19088
- safevalues.safeStyleSheet = module$contents$safevalues$builders$style_sheet_builders_safeStyleSheet;
19089
- safevalues.SanitizableUrlScheme = module$exports$safevalues$builders$url_builders.SanitizableUrlScheme;
19090
- safevalues.addJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_addJavaScriptUrlSanitizationCallback;
19091
- safevalues.fromMediaSource = module$contents$safevalues$builders$url_builders_fromMediaSource;
19092
- safevalues.fromTrustedResourceUrl = module$contents$safevalues$builders$url_builders_fromTrustedResourceUrl;
19093
- safevalues.objectUrlFromSafeSource = module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource;
19094
- safevalues.removeJavaScriptUrlSanitizationCallback = module$contents$safevalues$builders$url_builders_removeJavaScriptUrlSanitizationCallback;
19095
- safevalues.safeUrl = module$contents$safevalues$builders$url_builders_safeUrl;
19096
- safevalues.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
19097
- safevalues.trySanitizeUrl = module$contents$safevalues$builders$url_builders_trySanitizeUrl;
19098
- safevalues.Scheme = module$exports$safevalues$index.Scheme;
19099
- safevalues.SafeAttributePrefix = module$exports$safevalues$internals$attribute_impl.SafeAttributePrefix;
19100
- safevalues.unwrapAttributePrefix = module$contents$safevalues$internals$attribute_impl_unwrapAttributePrefix;
19101
- safevalues.EMPTY_HTML = module$exports$safevalues$index.EMPTY_HTML;
19102
- safevalues.SafeHtml = module$exports$safevalues$internals$html_impl.SafeHtml;
19103
- safevalues.isHtml = module$exports$safevalues$index.isHtml;
19104
- safevalues.unwrapHtml = module$exports$safevalues$index.unwrapHtml;
19105
- safevalues.TrustedResourceUrl = module$contents$goog$html$TrustedResourceUrl_TrustedResourceUrl;
19106
- safevalues.isResourceUrl = module$contents$safevalues$internals$resource_url_impl_isResourceUrl;
19107
- safevalues.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
19108
- safevalues.EMPTY_SCRIPT = module$exports$safevalues$internals$script_impl.EMPTY_SCRIPT;
19109
- safevalues.SafeScript = module$exports$safevalues$internals$script_impl.SafeScript;
19110
- safevalues.isScript = module$contents$safevalues$internals$script_impl_isScript;
19111
- safevalues.unwrapScript = module$contents$safevalues$internals$script_impl_unwrapScript;
19112
- safevalues.SafeStyle = module$exports$safevalues$internals$style_impl.SafeStyle;
19113
- safevalues.isStyle = module$contents$safevalues$internals$style_impl_isStyle;
19114
- safevalues.unwrapStyle = module$contents$safevalues$internals$style_impl_unwrapStyle;
19115
- safevalues.SafeStyleSheet = module$exports$safevalues$internals$style_sheet_impl.SafeStyleSheet;
19116
- safevalues.isStyleSheet = module$contents$safevalues$internals$style_sheet_impl_isStyleSheet;
19117
- safevalues.unwrapStyleSheet = module$contents$safevalues$internals$style_sheet_impl_unwrapStyleSheet;
19118
- safevalues.ABOUT_BLANK = module$exports$safevalues$internals$url_impl.ABOUT_BLANK;
19119
- safevalues.INNOCUOUS_URL = module$exports$safevalues$internals$url_impl.INNOCUOUS_URL;
19120
- safevalues.SafeUrl = module$exports$safevalues$internals$url_impl.SafeUrl;
19121
- safevalues.isUrl = module$contents$safevalues$internals$url_impl_isUrl;
19122
- safevalues.unwrapUrl = module$contents$safevalues$internals$url_impl_unwrapUrl;
19123
- safevalues.reportOnlyHtmlPassthrough = module$contents$safevalues$reporting$reporting_reportOnlyHtmlPassthrough;
19124
18723
  goog.net = {};
19125
18724
  goog.net.jsloader = {};
19126
18725
  goog.net.jsloader.Options = {};
@@ -19831,7 +19430,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19831
19430
  ee.apiclient = {};
19832
19431
  var module$contents$ee$apiclient_apiclient = {};
19833
19432
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19834
- ee.apiclient.API_CLIENT_VERSION = "1.0.0";
19433
+ ee.apiclient.API_CLIENT_VERSION = "1.1.1";
19835
19434
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19836
19435
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19837
19436
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -20129,8 +19728,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
20129
19728
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
20130
19729
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
20131
19730
  method = method || "POST";
20132
- var headers = {"Content-Type":contentType}, version = "1.0.0";
20133
- version === "1.0.0" && (version = "latest");
19731
+ var headers = {"Content-Type":contentType}, version = "1.1.1";
19732
+ version === "1.1.1" && (version = "latest");
20134
19733
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
20135
19734
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
20136
19735
  if (authToken != null) {
@@ -27659,28 +27258,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27659
27258
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27660
27259
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27661
27260
  (function() {
27662
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.classifier.toAsset ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.startProcessing ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.getMapId ee.data.listAssets ee.data.getTaskList ee.data.setAssetProperties ee.data.copyAsset ee.data.authenticate ee.data.getTableDownloadId ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.listOperations ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.getDownloadId ee.data.getWorkloadTag ee.data.authenticateViaPopup ee.data.getAssetAcl ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.listImages ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.newTaskId ee.data.setWorkloadTag ee.data.computeValue ee.data.createAsset ee.data.getInfo ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateAsset ee.data.updateTask ee.data.getFilmstripThumbId ee.data.getList ee.data.startIngestion ee.data.createFolder ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Algorithms ee.InitState ee.apply 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.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.bounds ee.Filter.and ee.Filter.prototype.not ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.prototype.toGeoJSONString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Image.rgb ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.select ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getMap ee.Image.prototype.expression ee.Image.prototype.getThumbId ee.Image.prototype.getDownloadURL ee.Image.prototype.clip ee.Image.prototype.rename ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.String ee.Terrain".split(" "),
27663
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27664
- "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(" "),
27665
- ["classifier", "opt_description", "opt_assetId", "opt_priority"], ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "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(" "),
27666
- "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(" "), ["geometry"], ["start", "opt_end"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["filter"],
27667
- ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["legacy"], ["func", "var_args"], ["callback"], ["opt_callback"], ["taskId", "params", "opt_callback"], ["id"], ["assetId", "aclUpdate", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["sourceId", "destinationId", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["sourceId",
27668
- "destinationId", "opt_overwrite", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], [], ["opt_success", "opt_error"], ["assetId", "opt_callback"], ["operationName", "opt_callback"],
27669
- ["id"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"],
27670
- ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27671
- [], ["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_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["geometry", "opt_errorMargin"], ["var_args"], [], ["name", "value"],
27672
- ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_filter"], ["name", "value"], ["start", "opt_end"], ["name", "operator", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj"], [], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27673
- ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["r", "g", "b"], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["params", "opt_callback"], ["opt_args"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["params",
27674
- "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["params", "opt_callback"], ["args"], [], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27675
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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.classifier.toAsset, module$contents$ee$batch_Export.table.toAsset,
27676
- 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.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.serialize,
27677
- ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.startProcessing, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.authenticateViaOauth, ee.data.renameAsset, ee.data.getMapId, ee.data.listAssets, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.copyAsset, ee.data.authenticate, ee.data.getTableDownloadId, ee.data.getTileUrl, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.getTaskListWithLimit, ee.data.listOperations,
27678
- ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.getDownloadId, ee.data.getWorkloadTag, ee.data.authenticateViaPopup, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.listImages, ee.data.listFeatures, ee.data.getAssetRoots, ee.data.getAsset, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.newTaskId, ee.data.setWorkloadTag, ee.data.computeValue, ee.data.createAsset,
27679
- ee.data.getInfo, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateAsset, ee.data.updateTask, ee.data.getFilmstripThumbId, ee.data.getList, ee.data.startIngestion, ee.data.createFolder, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.TILE_SIZE, ee.initialize, ee.reset, ee.call, ee.Algorithms, ee.InitState,
27680
- ee.apply, 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.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.bounds, ee.Filter.and, ee.Filter.prototype.not, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Filter.inList,
27681
- ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter, ee.Filter.eq, ee.Filter.date, ee.Filter.metadata, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Image.rgb,
27682
- ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.select, ee.Image.prototype.getThumbURL, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.expression, ee.Image.prototype.getThumbId, ee.Image.prototype.getDownloadURL, ee.Image.prototype.clip, ee.Image.prototype.rename, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo,
27683
- ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
27261
+ 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.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.map ee.Collection.prototype.iterate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.updateAsset ee.data.updateTask ee.data.makeThumbUrl ee.data.getList ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.startProcessing ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.getMapId ee.data.renameAsset ee.data.listAssets ee.data.getTaskList ee.data.authenticate ee.data.setAssetProperties ee.data.getTaskStatus ee.data.copyAsset ee.data.getTileUrl ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.listOperations ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getFeatureViewTilesKey ee.data.cancelOperation ee.data.listFeatures ee.data.makeDownloadUrl ee.data.listImages ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.createAssetHome ee.data.getOperation ee.data.newTaskId ee.data.createAsset ee.data.setWorkloadTag ee.data.computeValue ee.data.getInfo ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.Date ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.call ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature ee.Feature.prototype.getMap ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Filter.neq ee.Filter.lte ee.Filter.gte ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.prototype.not ee.Filter ee.Filter.eq ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.serialize ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.expression ee.Image.rgb ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image.cat ee.Image.prototype.rename ee.Image.prototype.select ee.Image.prototype.getThumbId ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
27262
+ 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(" "),
27263
+ "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(" "),
27264
+ "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(" "),
27265
+ ["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(" "),
27266
+ ["geometry"], ["start", "opt_end"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["filter"], ["name", "operator", "value"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"],
27267
+ ["taskId", "params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["taskId", "opt_callback"], ["sourceId", "destinationId",
27268
+ "opt_overwrite", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["id"], ["project", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["asset", "params", "opt_callback"], ["id"], ["parent", "opt_params",
27269
+ "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["requestedId", "opt_callback"], ["operationName", "opt_callback"], ["opt_count", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["date",
27270
+ "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], [], [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors",
27271
+ "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], [], ["opt_filter"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["legacy"], ["coords", "opt_proj"], ["west", "south",
27272
+ "east", "north"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["expression", "opt_map"], ["r",
27273
+ "g", "b"], ["geometry"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["var_args"], ["params", "opt_callback"], [], ["params", "opt_callback"], ["args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties",
27274
+ "opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["string"], []];
27275
+ [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.toAsset,
27276
+ module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.aside,
27277
+ ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.updateAsset, ee.data.updateTask, ee.data.makeThumbUrl, ee.data.getList, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.createFolder, ee.data.startProcessing, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.getMapId, ee.data.renameAsset, ee.data.listAssets, ee.data.getTaskList, ee.data.authenticate, ee.data.setAssetProperties, ee.data.getTaskStatus, ee.data.copyAsset,
27278
+ ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.deleteAsset, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.cancelOperation, ee.data.listFeatures, ee.data.makeDownloadUrl, ee.data.listImages, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27279
+ ee.data.createAssetHome, ee.data.getOperation, ee.data.newTaskId, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.computeValue, ee.data.getInfo, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.Date, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.InitState, ee.apply, ee.TILE_SIZE, ee.initialize, ee.call, ee.reset, ee.Algorithms,
27280
+ ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Filter.neq, ee.Filter.lte, ee.Filter.gte, ee.Filter.date,
27281
+ ee.Filter.metadata, ee.Filter.bounds, ee.Filter.prototype.not, ee.Filter, ee.Filter.eq, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.serialize, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.expression,
27282
+ ee.Image.rgb, ee.Image.prototype.clip, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image.prototype.rename, ee.Image.prototype.select, ee.Image.prototype.getThumbId, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getFilmstripThumbURL,
27283
+ ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27684
27284
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27685
27285
  });
27686
27286
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;