@google/earthengine 1.6.12 → 1.6.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/browser.js CHANGED
@@ -1,14 +1,5 @@
1
1
  var $jscomp = $jscomp || {};
2
2
  $jscomp.scope = {};
3
- $jscomp.arrayIteratorImpl = function(array) {
4
- var index = 0;
5
- return function() {
6
- return index < array.length ? {done:!1, value:array[index++]} : {done:!0};
7
- };
8
- };
9
- $jscomp.arrayIterator = function(array) {
10
- return {next:$jscomp.arrayIteratorImpl(array)};
11
- };
12
3
  $jscomp.ASSUME_ES5 = !1;
13
4
  $jscomp.ASSUME_ES6 = !1;
14
5
  $jscomp.ASSUME_ES2020 = !1;
@@ -18,6 +9,12 @@ $jscomp.ISOLATE_POLYFILLS = !1;
18
9
  $jscomp.FORCE_POLYFILL_PROMISE = !1;
19
10
  $jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
20
11
  $jscomp.INSTRUMENT_ASYNC_CONTEXT = !0;
12
+ $jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
13
+ var ctor = function() {
14
+ };
15
+ ctor.prototype = prototype;
16
+ return new ctor();
17
+ };
21
18
  $jscomp.defineProperty = $jscomp.ASSUME_ES5 || typeof Object.defineProperties == "function" ? Object.defineProperty : function(target, property, descriptor) {
22
19
  if (target == Array.prototype || target == Object.prototype) {
23
20
  return target;
@@ -102,50 +99,6 @@ $jscomp.polyfillIsolated = function(target, polyfill, fromLang, toLang) {
102
99
  }
103
100
  }
104
101
  };
105
- $jscomp.initSymbol = function() {
106
- };
107
- $jscomp.polyfill("Symbol", function(orig) {
108
- if (orig) {
109
- return orig;
110
- }
111
- var SymbolClass = function(id, opt_description) {
112
- this.$jscomp$symbol$id_ = id;
113
- $jscomp.defineProperty(this, "description", {configurable:!0, writable:!0, value:opt_description});
114
- };
115
- SymbolClass.prototype.toString = function() {
116
- return this.$jscomp$symbol$id_;
117
- };
118
- var SYMBOL_PREFIX = "jscomp_symbol_" + (Math.random() * 1E9 >>> 0) + "_", counter = 0, symbolPolyfill = function(opt_description) {
119
- if (this instanceof symbolPolyfill) {
120
- throw new TypeError("Symbol is not a constructor");
121
- }
122
- return new SymbolClass(SYMBOL_PREFIX + (opt_description || "") + "_" + counter++, opt_description);
123
- };
124
- return symbolPolyfill;
125
- }, "es6", "es3");
126
- $jscomp.polyfill("Symbol.iterator", function(orig) {
127
- if (orig) {
128
- return orig;
129
- }
130
- var symbolIterator = Symbol("Symbol.iterator");
131
- $jscomp.defineProperty(Array.prototype, symbolIterator, {configurable:!0, writable:!0, value:function() {
132
- return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this));
133
- }});
134
- return symbolIterator;
135
- }, "es6", "es3");
136
- $jscomp.iteratorPrototype = function(next) {
137
- var iterator = {next:next};
138
- iterator[Symbol.iterator] = function() {
139
- return this;
140
- };
141
- return iterator;
142
- };
143
- $jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
144
- var ctor = function() {
145
- };
146
- ctor.prototype = prototype;
147
- return new ctor();
148
- };
149
102
  $jscomp.getConstructImplementation = function() {
150
103
  function reflectConstructWorks() {
151
104
  function Base() {
@@ -208,6 +161,15 @@ $jscomp.inherits = function(childCtor, parentCtor) {
208
161
  }
209
162
  childCtor.superClass_ = parentCtor.prototype;
210
163
  };
164
+ $jscomp.arrayIteratorImpl = function(array) {
165
+ var index = 0;
166
+ return function() {
167
+ return index < array.length ? {done:!1, value:array[index++]} : {done:!0};
168
+ };
169
+ };
170
+ $jscomp.arrayIterator = function(array) {
171
+ return {next:$jscomp.arrayIteratorImpl(array)};
172
+ };
211
173
  $jscomp.makeIterator = function(iterable) {
212
174
  var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
213
175
  if (iteratorFunction) {
@@ -511,6 +473,44 @@ $jscomp.polyfill("Reflect.setPrototypeOf", function(orig) {
511
473
  }
512
474
  return null;
513
475
  }, "es6", "es5");
476
+ $jscomp.initSymbol = function() {
477
+ };
478
+ $jscomp.polyfill("Symbol", function(orig) {
479
+ if (orig) {
480
+ return orig;
481
+ }
482
+ var SymbolClass = function(id, opt_description) {
483
+ this.$jscomp$symbol$id_ = id;
484
+ $jscomp.defineProperty(this, "description", {configurable:!0, writable:!0, value:opt_description});
485
+ };
486
+ SymbolClass.prototype.toString = function() {
487
+ return this.$jscomp$symbol$id_;
488
+ };
489
+ var SYMBOL_PREFIX = "jscomp_symbol_" + (Math.random() * 1E9 >>> 0) + "_", counter = 0, symbolPolyfill = function(opt_description) {
490
+ if (this instanceof symbolPolyfill) {
491
+ throw new TypeError("Symbol is not a constructor");
492
+ }
493
+ return new SymbolClass(SYMBOL_PREFIX + (opt_description || "") + "_" + counter++, opt_description);
494
+ };
495
+ return symbolPolyfill;
496
+ }, "es6", "es3");
497
+ $jscomp.polyfill("Symbol.iterator", function(orig) {
498
+ if (orig) {
499
+ return orig;
500
+ }
501
+ var symbolIterator = Symbol("Symbol.iterator");
502
+ $jscomp.defineProperty(Array.prototype, symbolIterator, {configurable:!0, writable:!0, value:function() {
503
+ return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this));
504
+ }});
505
+ return symbolIterator;
506
+ }, "es6", "es3");
507
+ $jscomp.iteratorPrototype = function(next) {
508
+ var iterator = {next:next};
509
+ iterator[Symbol.iterator] = function() {
510
+ return this;
511
+ };
512
+ return iterator;
513
+ };
514
514
  $jscomp.polyfill("Promise", function(NativePromise) {
515
515
  function platformSupportsPromiseRejectionEvents() {
516
516
  return typeof $jscomp.global.PromiseRejectionEvent !== "undefined";
@@ -2242,9 +2242,9 @@ module$exports$eeapiclient$domain_object.strictDeserialize = function(type, raw)
2242
2242
  };
2243
2243
  var module$contents$eeapiclient$domain_object_CopyValueGetter, module$contents$eeapiclient$domain_object_CopyValueSetter, module$contents$eeapiclient$domain_object_CopyConstructor, module$contents$eeapiclient$domain_object_CopyInstanciator;
2244
2244
  function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter, valueSetter, copyInstanciator, targetConstructor) {
2245
- for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$m1892927425$40$key = $jscomp$iter$19.next(), $jscomp$loop$m1892927425$44 = {}; !$jscomp$key$m1892927425$40$key.done; $jscomp$loop$m1892927425$44 =
2246
- {mapMetadata:void 0}, $jscomp$key$m1892927425$40$key = $jscomp$iter$19.next()) {
2247
- var key = $jscomp$key$m1892927425$40$key.value, value = valueGetter(key, source);
2245
+ for (var target = copyInstanciator(targetConstructor), metadata = module$contents$eeapiclient$domain_object_deepCopyMetadata(source, target), arrays = metadata.arrays || {}, objects = metadata.objects || {}, objectMaps = metadata.objectMaps || {}, $jscomp$iter$19 = (0,$jscomp.makeIterator)(metadata.keys || []), $jscomp$key$m192531680$40$key = $jscomp$iter$19.next(), $jscomp$loop$m192531680$44 = {}; !$jscomp$key$m192531680$40$key.done; $jscomp$loop$m192531680$44 =
2246
+ {mapMetadata:void 0}, $jscomp$key$m192531680$40$key = $jscomp$iter$19.next()) {
2247
+ var key = $jscomp$key$m192531680$40$key.value, value = valueGetter(key, source);
2248
2248
  if (value != null) {
2249
2249
  var copy = void 0;
2250
2250
  if (arrays.hasOwnProperty(key)) {
@@ -2255,11 +2255,11 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
2255
2255
  } else if (objects.hasOwnProperty(key)) {
2256
2256
  copy = module$contents$eeapiclient$domain_object_deepCopyValue(value, valueGetter, valueSetter, copyInstanciator, !1, !0, objects[key]);
2257
2257
  } else if (objectMaps.hasOwnProperty(key)) {
2258
- $jscomp$loop$m1892927425$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m1892927425$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m1892927425$44) {
2258
+ $jscomp$loop$m192531680$44.mapMetadata = objectMaps[key], copy = $jscomp$loop$m192531680$44.mapMetadata.isPropertyArray ? value.map(function($jscomp$loop$m192531680$44) {
2259
2259
  return function(v) {
2260
- return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m1892927425$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
2260
+ return module$contents$eeapiclient$domain_object_deepCopyObjectMap(v, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
2261
2261
  };
2262
- }($jscomp$loop$m1892927425$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m1892927425$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
2262
+ }($jscomp$loop$m192531680$44)) : module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, $jscomp$loop$m192531680$44.mapMetadata, valueGetter, valueSetter, copyInstanciator);
2263
2263
  } else if (Array.isArray(value)) {
2264
2264
  if (metadata.emptyArrayIsUnset && value.length === 0) {
2265
2265
  continue;
@@ -2274,8 +2274,8 @@ function module$contents$eeapiclient$domain_object_deepCopy(source, valueGetter,
2274
2274
  return target;
2275
2275
  }
2276
2276
  function module$contents$eeapiclient$domain_object_deepCopyObjectMap(value, mapMetadata, valueGetter, valueSetter, copyInstanciator) {
2277
- for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$m1892927425$41$mapKey = $jscomp$iter$20.next(); !$jscomp$key$m1892927425$41$mapKey.done; $jscomp$key$m1892927425$41$mapKey = $jscomp$iter$20.next()) {
2278
- var mapKey = $jscomp$key$m1892927425$41$mapKey.value, mapValue = value[mapKey];
2277
+ for (var objMap = {}, $jscomp$iter$20 = (0,$jscomp.makeIterator)(Object.keys(value)), $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next(); !$jscomp$key$m192531680$41$mapKey.done; $jscomp$key$m192531680$41$mapKey = $jscomp$iter$20.next()) {
2278
+ var mapKey = $jscomp$key$m192531680$41$mapKey.value, mapValue = value[mapKey];
2279
2279
  mapValue != null && (objMap[mapKey] = module$contents$eeapiclient$domain_object_deepCopyValue(mapValue, valueGetter, valueSetter, copyInstanciator, mapMetadata.isValueArray, mapMetadata.isSerializable, mapMetadata.ctor));
2280
2280
  }
2281
2281
  return objMap;
@@ -2305,39 +2305,39 @@ function module$contents$eeapiclient$domain_object_deepEquals(serializable1, ser
2305
2305
  if (!(module$contents$eeapiclient$domain_object_sameKeys(keys1, metadata2.keys || []) && module$contents$eeapiclient$domain_object_sameKeys(arrays1, arrays2) && module$contents$eeapiclient$domain_object_sameKeys(objects1, objects2) && module$contents$eeapiclient$domain_object_sameKeys(objectMaps1, objectMaps2))) {
2306
2306
  return !1;
2307
2307
  }
2308
- for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$m1892927425$42$key = $jscomp$iter$21.next(), $jscomp$loop$m1892927425$45 = {}; !$jscomp$key$m1892927425$42$key.done; $jscomp$loop$m1892927425$45 = {value2$jscomp$7:void 0, mapMetadata$jscomp$2:void 0}, $jscomp$key$m1892927425$42$key = $jscomp$iter$21.next()) {
2309
- var key = $jscomp$key$m1892927425$42$key.value, has1 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable1, key, metadata1), has2 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable2, key, metadata2);
2308
+ for (var $jscomp$iter$21 = (0,$jscomp.makeIterator)(keys1), $jscomp$key$m192531680$42$key = $jscomp$iter$21.next(), $jscomp$loop$m192531680$45 = {}; !$jscomp$key$m192531680$42$key.done; $jscomp$loop$m192531680$45 = {value2$jscomp$7:void 0, mapMetadata$jscomp$2:void 0}, $jscomp$key$m192531680$42$key = $jscomp$iter$21.next()) {
2309
+ var key = $jscomp$key$m192531680$42$key.value, has1 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable1, key, metadata1), has2 = module$contents$eeapiclient$domain_object_hasAndIsNotEmptyArray(serializable2, key, metadata2);
2310
2310
  if (has1 !== has2) {
2311
2311
  return !1;
2312
2312
  }
2313
2313
  if (has1) {
2314
2314
  var value1 = serializable1.Serializable$get(key);
2315
- $jscomp$loop$m1892927425$45.value2$jscomp$7 = serializable2.Serializable$get(key);
2315
+ $jscomp$loop$m192531680$45.value2$jscomp$7 = serializable2.Serializable$get(key);
2316
2316
  if (arrays1.hasOwnProperty(key)) {
2317
- if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !0, !0)) {
2317
+ if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !0)) {
2318
2318
  return !1;
2319
2319
  }
2320
2320
  } else if (objects1.hasOwnProperty(key)) {
2321
- if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !1, !0)) {
2321
+ if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !0)) {
2322
2322
  return !1;
2323
2323
  }
2324
2324
  } else if (objectMaps1.hasOwnProperty(key)) {
2325
- if ($jscomp$loop$m1892927425$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2.isPropertyArray) {
2326
- if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m1892927425$45) {
2325
+ if ($jscomp$loop$m192531680$45.mapMetadata$jscomp$2 = objectMaps1[key], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2.isPropertyArray) {
2326
+ if (!module$contents$eeapiclient$domain_object_sameKeys(value1, $jscomp$loop$m192531680$45.value2$jscomp$7) || value1.some(function($jscomp$loop$m192531680$45) {
2327
2327
  return function(v1, i) {
2328
- return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m1892927425$45.value2$jscomp$7[i], $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2);
2328
+ return !module$contents$eeapiclient$domain_object_deepEqualsObjectMap(v1, $jscomp$loop$m192531680$45.value2$jscomp$7[i], $jscomp$loop$m192531680$45.mapMetadata$jscomp$2);
2329
2329
  };
2330
- }($jscomp$loop$m1892927425$45))) {
2330
+ }($jscomp$loop$m192531680$45))) {
2331
2331
  return !1;
2332
2332
  }
2333
- } else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, $jscomp$loop$m1892927425$45.mapMetadata$jscomp$2)) {
2333
+ } else if (!module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, $jscomp$loop$m192531680$45.mapMetadata$jscomp$2)) {
2334
2334
  return !1;
2335
2335
  }
2336
2336
  } else if (Array.isArray(value1)) {
2337
- if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !0, !1)) {
2337
+ if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !0, !1)) {
2338
2338
  return !1;
2339
2339
  }
2340
- } else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m1892927425$45.value2$jscomp$7, !1, !1)) {
2340
+ } else if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1, $jscomp$loop$m192531680$45.value2$jscomp$7, !1, !1)) {
2341
2341
  return !1;
2342
2342
  }
2343
2343
  }
@@ -2359,8 +2359,8 @@ function module$contents$eeapiclient$domain_object_deepEqualsObjectMap(value1, v
2359
2359
  if (!module$contents$eeapiclient$domain_object_sameKeys(value1, value2)) {
2360
2360
  return !1;
2361
2361
  }
2362
- for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$m1892927425$43$mapKey = $jscomp$iter$22.next(); !$jscomp$key$m1892927425$43$mapKey.done; $jscomp$key$m1892927425$43$mapKey = $jscomp$iter$22.next()) {
2363
- var mapKey = $jscomp$key$m1892927425$43$mapKey.value;
2362
+ for (var $jscomp$iter$22 = (0,$jscomp.makeIterator)(Object.keys(value1)), $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next(); !$jscomp$key$m192531680$43$mapKey.done; $jscomp$key$m192531680$43$mapKey = $jscomp$iter$22.next()) {
2363
+ var mapKey = $jscomp$key$m192531680$43$mapKey.value;
2364
2364
  if (!module$contents$eeapiclient$domain_object_deepEqualsValue(value1[mapKey], value2[mapKey], mapMetadata.isValueArray, mapMetadata.isSerializable)) {
2365
2365
  return !1;
2366
2366
  }
@@ -2441,15 +2441,15 @@ module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.addMetad
2441
2441
  this._metadataPayload += "Content-Type: application/json; charset=utf-8\r\n\r\n" + JSON.stringify(json) + ("\r\n--" + this._boundary + "\r\n");
2442
2442
  };
2443
2443
  module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.build = function() {
2444
- var $jscomp$this$m133342051$6 = this, payload = "--" + this._boundary + "\r\n";
2444
+ var $jscomp$this$m667091202$6 = this, payload = "--" + this._boundary + "\r\n";
2445
2445
  payload += this._metadataPayload;
2446
2446
  return Promise.all(this.files.map(function(f) {
2447
- return $jscomp$this$m133342051$6.encodeFile(f);
2447
+ return $jscomp$this$m667091202$6.encodeFile(f);
2448
2448
  })).then(function(filePayloads) {
2449
- for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$m133342051$9$filePayload = $jscomp$iter$23.next(); !$jscomp$key$m133342051$9$filePayload.done; $jscomp$key$m133342051$9$filePayload = $jscomp$iter$23.next()) {
2450
- payload += $jscomp$key$m133342051$9$filePayload.value;
2449
+ for (var $jscomp$iter$23 = (0,$jscomp.makeIterator)(filePayloads), $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next(); !$jscomp$key$m667091202$9$filePayload.done; $jscomp$key$m667091202$9$filePayload = $jscomp$iter$23.next()) {
2450
+ payload += $jscomp$key$m667091202$9$filePayload.value;
2451
2451
  }
2452
- return payload += "\r\n--" + $jscomp$this$m133342051$6._boundary + "--";
2452
+ return payload += "\r\n--" + $jscomp$this$m667091202$6._boundary + "--";
2453
2453
  });
2454
2454
  };
2455
2455
  module$exports$eeapiclient$multipart_request.MultipartRequest.prototype.encodeFile = function(file) {
@@ -2961,8 +2961,8 @@ function module$contents$safevalues$internals$resource_url_impl_unwrapResourceUr
2961
2961
  throw Error(message);
2962
2962
  }
2963
2963
  module$exports$safevalues$internals$resource_url_impl.unwrapResourceUrl = module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl;
2964
- var $jscomp$templatelit$m425881384$5 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$m425881384$6 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\0"]), $jscomp$templatelit$m425881384$7 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$m425881384$8 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), $jscomp$templatelit$m425881384$9 = $jscomp.createTemplateTagFirstArg([""]), $jscomp$templatelit$m425881384$10 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"],
2965
- ["\\0"]), $jscomp$templatelit$m425881384$11 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$m425881384$12 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), module$contents$safevalues$internals$string_literal_module = module$contents$safevalues$internals$string_literal_module || {id:"third_party/javascript/safevalues/internals/string_literal.closure.js"};
2964
+ 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"],
2965
+ ["\\0"]), $jscomp$templatelit$1274514361$11 = $jscomp.createTemplateTagFirstArgWithRaw(["\n"], ["\\n"]), $jscomp$templatelit$1274514361$12 = $jscomp.createTemplateTagFirstArgWithRaw(["\x00"], ["\\u0000"]), module$contents$safevalues$internals$string_literal_module = module$contents$safevalues$internals$string_literal_module || {id:"third_party/javascript/safevalues/internals/string_literal.closure.js"};
2966
2966
  function module$contents$safevalues$internals$string_literal_assertIsTemplateObject(templateObj, numExprs) {
2967
2967
  if (!module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) || numExprs + 1 !== templateObj.length) {
2968
2968
  throw new TypeError("\n ############################## ERROR ##############################\n\n It looks like you are trying to call a template tag function (fn`...`)\n using the normal function syntax (fn(...)), which is not supported.\n\n The functions in the safevalues library are not designed to be called\n like normal functions, and doing so invalidates the security guarantees\n that safevalues provides.\n\n If you are stuck and not sure how to proceed, please reach out to us\n instead through:\n - go/ise-hardening-yaqs (preferred) // LINE-INTERNAL\n - g/ise-hardening // LINE-INTERNAL\n - https://github.com/google/safevalues/issues\n\n ############################## ERROR ##############################");
@@ -2976,14 +2976,14 @@ function module$contents$safevalues$internals$string_literal_checkTranspiled(fn)
2976
2976
  return fn.toString().indexOf("`") === -1;
2977
2977
  }
2978
2978
  var module$contents$safevalues$internals$string_literal_isTranspiled = module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
2979
- return tag($jscomp$templatelit$m425881384$5);
2979
+ return tag($jscomp$templatelit$1274514361$5);
2980
2980
  }) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
2981
- return tag($jscomp$templatelit$m425881384$6);
2981
+ return tag($jscomp$templatelit$1274514361$6);
2982
2982
  }) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
2983
- return tag($jscomp$templatelit$m425881384$7);
2983
+ return tag($jscomp$templatelit$1274514361$7);
2984
2984
  }) || module$contents$safevalues$internals$string_literal_checkTranspiled(function(tag) {
2985
- return tag($jscomp$templatelit$m425881384$8);
2986
- }), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$9) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$10) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$11) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$m425881384$12);
2985
+ return tag($jscomp$templatelit$1274514361$8);
2986
+ }), module$contents$safevalues$internals$string_literal_frozenTSA = module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$9) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$10) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$11) && module$contents$safevalues$internals$string_literal_checkFrozen($jscomp$templatelit$1274514361$12);
2987
2987
  function module$contents$safevalues$internals$string_literal_isTemplateObject(templateObj) {
2988
2988
  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)) ?
2989
2989
  !0 : !1;
@@ -3309,9 +3309,9 @@ function module$contents$safevalues$dom$elements$iframe_setSandboxDirectives(ifr
3309
3309
  }
3310
3310
  }
3311
3311
  module$exports$safevalues$dom$elements$iframe.TypeCannotBeUsedWithIframeIntentError = function(type, intent) {
3312
- var $jscomp$tmp$error$494508883$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.IframeIntent[intent]);
3313
- this.message = $jscomp$tmp$error$494508883$1.message;
3314
- "stack" in $jscomp$tmp$error$494508883$1 && (this.stack = $jscomp$tmp$error$494508883$1.stack);
3312
+ var $jscomp$tmp$error$240424914$1 = Error.call(this, type + " cannot be used with intent " + module$exports$safevalues$dom$elements$iframe.IframeIntent[intent]);
3313
+ this.message = $jscomp$tmp$error$240424914$1.message;
3314
+ "stack" in $jscomp$tmp$error$240424914$1 && (this.stack = $jscomp$tmp$error$240424914$1.stack);
3315
3315
  this.type = type;
3316
3316
  this.intent = intent;
3317
3317
  this.name = "TypeCannotBeUsedWithIframeIntentError";
@@ -3407,7 +3407,7 @@ function module$contents$safevalues$dom$globals$window_getStyleNonce(doc) {
3407
3407
  module$exports$safevalues$dom$globals$window.getStyleNonce = module$contents$safevalues$dom$globals$window_getStyleNonce;
3408
3408
  function module$contents$safevalues$dom$globals$window_getNonceFor(elementName, doc) {
3409
3409
  doc = doc === void 0 ? document : doc;
3410
- var $jscomp$optchain$tmpm1987982378$0, $jscomp$optchain$tmpm1987982378$1, el = ($jscomp$optchain$tmpm1987982378$1 = ($jscomp$optchain$tmpm1987982378$0 = doc).querySelector) == null ? void 0 : $jscomp$optchain$tmpm1987982378$1.call($jscomp$optchain$tmpm1987982378$0, elementName + "[nonce]");
3410
+ var $jscomp$optchain$tmp220578679$0, $jscomp$optchain$tmp220578679$1, el = ($jscomp$optchain$tmp220578679$1 = ($jscomp$optchain$tmp220578679$0 = doc).querySelector) == null ? void 0 : $jscomp$optchain$tmp220578679$1.call($jscomp$optchain$tmp220578679$0, elementName + "[nonce]");
3411
3411
  return el == null ? "" : el.nonce || el.getAttribute("nonce") || "";
3412
3412
  }
3413
3413
  ;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"};
@@ -4839,9 +4839,9 @@ function module$contents$safevalues$dom$globals$dom_parser_domParserParseFromStr
4839
4839
  module$exports$safevalues$dom$globals$dom_parser.domParserParseFromString = module$contents$safevalues$dom$globals$dom_parser_domParserParseFromString;
4840
4840
  var module$exports$safevalues$dom$globals$fetch = {}, module$contents$safevalues$dom$globals$fetch_module = module$contents$safevalues$dom$globals$fetch_module || {id:"third_party/javascript/safevalues/dom/globals/fetch.closure.js"};
4841
4841
  module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError = function(url, typeName, contentType) {
4842
- var $jscomp$tmp$error$1153895636$25 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
4843
- this.message = $jscomp$tmp$error$1153895636$25.message;
4844
- "stack" in $jscomp$tmp$error$1153895636$25 && (this.stack = $jscomp$tmp$error$1153895636$25.stack);
4842
+ var $jscomp$tmp$error$m991617773$25 = Error.call(this, url + " was requested as a " + typeName + ', but the response Content-Type, "' + contentType + " is not appropriate for this type of content.");
4843
+ this.message = $jscomp$tmp$error$m991617773$25.message;
4844
+ "stack" in $jscomp$tmp$error$m991617773$25 && (this.stack = $jscomp$tmp$error$m991617773$25.stack);
4845
4845
  this.url = url;
4846
4846
  this.typeName = typeName;
4847
4847
  this.contentType = contentType;
@@ -4853,48 +4853,48 @@ function module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(
4853
4853
  return (0,module$exports$safevalues$internals$html_impl.createHtmlInternal)(html);
4854
4854
  }
4855
4855
  function module$contents$safevalues$dom$globals$fetch_fetchResourceUrl(u, init) {
4856
- var response, $jscomp$optchain$tmp1153895636$0, $jscomp$optchain$tmp1153895636$1, $jscomp$optchain$tmp1153895636$2, mimeType;
4857
- return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$29) {
4858
- if ($jscomp$generator$context$1153895636$29.nextAddress == 1) {
4859
- return $jscomp$generator$context$1153895636$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
4860
- }
4861
- response = $jscomp$generator$context$1153895636$29.yieldResult;
4862
- mimeType = ($jscomp$optchain$tmp1153895636$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmp1153895636$1 = $jscomp$optchain$tmp1153895636$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmp1153895636$2 = $jscomp$optchain$tmp1153895636$1[0]) == null ? void 0 : $jscomp$optchain$tmp1153895636$2.toLowerCase();
4863
- return $jscomp$generator$context$1153895636$29.return({html:function() {
4856
+ var response, $jscomp$optchain$tmpm991617773$0, $jscomp$optchain$tmpm991617773$1, $jscomp$optchain$tmpm991617773$2, mimeType;
4857
+ return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$29) {
4858
+ if ($jscomp$generator$context$m991617773$29.nextAddress == 1) {
4859
+ return $jscomp$generator$context$m991617773$29.yield(fetch(module$contents$safevalues$internals$resource_url_impl_unwrapResourceUrl(u).toString(), init), 2);
4860
+ }
4861
+ response = $jscomp$generator$context$m991617773$29.yieldResult;
4862
+ mimeType = ($jscomp$optchain$tmpm991617773$0 = response.headers.get("Content-Type")) == null ? void 0 : ($jscomp$optchain$tmpm991617773$1 = $jscomp$optchain$tmpm991617773$0.split(";", 2)) == null ? void 0 : ($jscomp$optchain$tmpm991617773$2 = $jscomp$optchain$tmpm991617773$1[0]) == null ? void 0 : $jscomp$optchain$tmpm991617773$2.toLowerCase();
4863
+ return $jscomp$generator$context$m991617773$29.return({html:function() {
4864
4864
  var text;
4865
- return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$26) {
4866
- if ($jscomp$generator$context$1153895636$26.nextAddress == 1) {
4865
+ return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$26) {
4866
+ if ($jscomp$generator$context$m991617773$26.nextAddress == 1) {
4867
4867
  if (mimeType !== "text/html") {
4868
4868
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeHtml", "text/html");
4869
4869
  }
4870
- return $jscomp$generator$context$1153895636$26.yield(response.text(), 2);
4870
+ return $jscomp$generator$context$m991617773$26.yield(response.text(), 2);
4871
4871
  }
4872
- text = $jscomp$generator$context$1153895636$26.yieldResult;
4873
- return $jscomp$generator$context$1153895636$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
4872
+ text = $jscomp$generator$context$m991617773$26.yieldResult;
4873
+ return $jscomp$generator$context$m991617773$26.return(module$contents$safevalues$dom$globals$fetch_privatecreateHtmlInternal(text));
4874
4874
  });
4875
4875
  }, script:function() {
4876
4876
  var text;
4877
- return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$27) {
4878
- if ($jscomp$generator$context$1153895636$27.nextAddress == 1) {
4877
+ return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$27) {
4878
+ if ($jscomp$generator$context$m991617773$27.nextAddress == 1) {
4879
4879
  if (mimeType !== "text/javascript" && mimeType !== "application/javascript") {
4880
4880
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeScript", "text/javascript");
4881
4881
  }
4882
- return $jscomp$generator$context$1153895636$27.yield(response.text(), 2);
4882
+ return $jscomp$generator$context$m991617773$27.yield(response.text(), 2);
4883
4883
  }
4884
- text = $jscomp$generator$context$1153895636$27.yieldResult;
4885
- return $jscomp$generator$context$1153895636$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
4884
+ text = $jscomp$generator$context$m991617773$27.yieldResult;
4885
+ return $jscomp$generator$context$m991617773$27.return(module$contents$safevalues$internals$script_impl_createScriptInternal(text));
4886
4886
  });
4887
4887
  }, styleSheet:function() {
4888
4888
  var text;
4889
- return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$1153895636$28) {
4890
- if ($jscomp$generator$context$1153895636$28.nextAddress == 1) {
4889
+ return (0,$jscomp.asyncExecutePromiseGeneratorProgram)(function($jscomp$generator$context$m991617773$28) {
4890
+ if ($jscomp$generator$context$m991617773$28.nextAddress == 1) {
4891
4891
  if (mimeType !== "text/css") {
4892
4892
  throw new module$exports$safevalues$dom$globals$fetch.IncorrectContentTypeError(response.url, "SafeStyleSheet", "text/css");
4893
4893
  }
4894
- return $jscomp$generator$context$1153895636$28.yield(response.text(), 2);
4894
+ return $jscomp$generator$context$m991617773$28.yield(response.text(), 2);
4895
4895
  }
4896
- text = $jscomp$generator$context$1153895636$28.yieldResult;
4897
- return $jscomp$generator$context$1153895636$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
4896
+ text = $jscomp$generator$context$m991617773$28.yieldResult;
4897
+ return $jscomp$generator$context$m991617773$28.return(module$contents$safevalues$internals$style_sheet_impl_createStyleSheetInternal(text));
4898
4898
  });
4899
4899
  }});
4900
4900
  });
@@ -6316,8 +6316,8 @@ function module$contents$eeapiclient$request_params_processParams(params) {
6316
6316
  }
6317
6317
  module$exports$eeapiclient$request_params.processParams = module$contents$eeapiclient$request_params_processParams;
6318
6318
  function module$contents$eeapiclient$request_params_buildQueryParams(params, mapping, passthroughParams) {
6319
- for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$m125199259$0$ = $jscomp$iter$29.next(); !$jscomp$key$m125199259$0$.done; $jscomp$key$m125199259$0$ = $jscomp$iter$29.next()) {
6320
- var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$m125199259$0$.value), jsName__tsickle_destructured_1 = $jscomp$destructuring$var3.next().value, urlQueryParamName__tsickle_destructured_2 = $jscomp$destructuring$var3.next().value, jsName = jsName__tsickle_destructured_1, urlQueryParamName = urlQueryParamName__tsickle_destructured_2;
6319
+ for (var urlQueryParams = passthroughParams = passthroughParams === void 0 ? {} : passthroughParams, $jscomp$iter$29 = (0,$jscomp.makeIterator)(Object.entries(mapping)), $jscomp$key$1047461284$0$ = $jscomp$iter$29.next(); !$jscomp$key$1047461284$0$.done; $jscomp$key$1047461284$0$ = $jscomp$iter$29.next()) {
6320
+ var $jscomp$destructuring$var3 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$0$.value), jsName__tsickle_destructured_1 = $jscomp$destructuring$var3.next().value, urlQueryParamName__tsickle_destructured_2 = $jscomp$destructuring$var3.next().value, jsName = jsName__tsickle_destructured_1, urlQueryParamName = urlQueryParamName__tsickle_destructured_2;
6321
6321
  jsName in params && (urlQueryParams[urlQueryParamName] = params[jsName]);
6322
6322
  }
6323
6323
  return urlQueryParams;
@@ -6328,8 +6328,8 @@ module$exports$eeapiclient$request_params.bypassCorsPreflight = function(params)
6328
6328
  var safeHeaders = {}, unsafeHeaders = {}, hasUnsafeHeaders = !1, hasContentType = !1, hasSafeContentType = !1;
6329
6329
  if (params.headers) {
6330
6330
  hasContentType = params.headers["Content-Type"] != null;
6331
- for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$m125199259$1$ = $jscomp$iter$30.next(); !$jscomp$key$m125199259$1$.done; $jscomp$key$m125199259$1$ = $jscomp$iter$30.next()) {
6332
- var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$m125199259$1$.value), key__tsickle_destructured_3 = $jscomp$destructuring$var5.next().value, value__tsickle_destructured_4 = $jscomp$destructuring$var5.next().value, key = key__tsickle_destructured_3, value = value__tsickle_destructured_4;
6331
+ for (var $jscomp$iter$30 = (0,$jscomp.makeIterator)(Object.entries(params.headers)), $jscomp$key$1047461284$1$ = $jscomp$iter$30.next(); !$jscomp$key$1047461284$1$.done; $jscomp$key$1047461284$1$ = $jscomp$iter$30.next()) {
6332
+ var $jscomp$destructuring$var5 = (0,$jscomp.makeIterator)($jscomp$key$1047461284$1$.value), key__tsickle_destructured_3 = $jscomp$destructuring$var5.next().value, value__tsickle_destructured_4 = $jscomp$destructuring$var5.next().value, key = key__tsickle_destructured_3, value = value__tsickle_destructured_4;
6333
6333
  module$contents$eeapiclient$request_params_simpleCorsAllowedHeaders.includes(key) ? safeHeaders[key] = value : key === "Content-Type" && module$contents$eeapiclient$request_params_simpleCorsAllowedContentTypes.includes(value) ? (safeHeaders[key] = value, hasSafeContentType = !0) : (unsafeHeaders[key] = value, hasUnsafeHeaders = !0);
6334
6334
  }
6335
6335
  }
@@ -6364,8 +6364,8 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$addHoo
6364
6364
  }, function(error) {
6365
6365
  throw error;
6366
6366
  }).finally(function() {
6367
- var $jscomp$optchain$tmpm296226325$1;
6368
- ($jscomp$optchain$tmpm296226325$1 = hook.onFinalize) == null || $jscomp$optchain$tmpm296226325$1.call(hook);
6367
+ var $jscomp$optchain$tmp1237977804$1;
6368
+ ($jscomp$optchain$tmp1237977804$1 = hook.onFinalize) == null || $jscomp$optchain$tmp1237977804$1.call(hook);
6369
6369
  });
6370
6370
  };
6371
6371
  module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$request = function(requestParams) {
@@ -6373,9 +6373,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
6373
6373
  return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
6374
6374
  };
6375
6375
  module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
6376
- var $jscomp$this$m296226325$6 = this, responseCtor = requestParams.responseCtor || void 0;
6376
+ var $jscomp$this$1237977804$6 = this, responseCtor = requestParams.responseCtor || void 0;
6377
6377
  return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
6378
- return $jscomp$this$m296226325$6.requestService.send(params, responseCtor);
6378
+ return $jscomp$this$1237977804$6.requestService.send(params, responseCtor);
6379
6379
  }));
6380
6380
  };
6381
6381
  var module$exports$eeapiclient$promise_request_service = {}, module$contents$eeapiclient$promise_request_service_module = module$contents$eeapiclient$promise_request_service_module || {id:"javascript/typescript/contrib/apiclient/request_service/promise_request_service.closure.js"};
@@ -16249,8 +16249,8 @@ module$exports$safevalues$builders$html_formatter.HtmlFormatter = function() {
16249
16249
  this.replacements = new Map();
16250
16250
  };
16251
16251
  module$exports$safevalues$builders$html_formatter.HtmlFormatter.prototype.format = function(format) {
16252
- var $jscomp$this$1018007701$5 = this, openedTags = [], marker = (0,module$exports$safevalues$builders$html_builders.htmlEscape)("_safevalues_format_marker_:").toString(), html = (0,module$exports$safevalues$builders$html_builders.htmlEscape)(format).toString().replace(new RegExp("\\{" + marker + "[\\w&#;]+\\}", "g"), function(match) {
16253
- return $jscomp$this$1018007701$5.replaceFormattingString(openedTags, match);
16252
+ var $jscomp$this$380122516$5 = this, openedTags = [], marker = (0,module$exports$safevalues$builders$html_builders.htmlEscape)("_safevalues_format_marker_:").toString(), html = (0,module$exports$safevalues$builders$html_builders.htmlEscape)(format).toString().replace(new RegExp("\\{" + marker + "[\\w&#;]+\\}", "g"), function(match) {
16253
+ return $jscomp$this$380122516$5.replaceFormattingString(openedTags, match);
16254
16254
  });
16255
16255
  if (openedTags.length !== 0) {
16256
16256
  if (goog.DEBUG) {
@@ -16468,8 +16468,8 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
16468
16468
  if (Array.isArray(token)) {
16469
16469
  tokens.push.apply(tokens, (0,$jscomp.arrayFromIterable)(token));
16470
16470
  } else {
16471
- var $jscomp$optchain$tmpm282935782$0 = void 0;
16472
- if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$tmpm282935782$0 = lastToken) == null ? void 0 : $jscomp$optchain$tmpm282935782$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE) {
16471
+ var $jscomp$optchain$tmpm583190311$0 = void 0;
16472
+ if (token.tokenKind !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE || (($jscomp$optchain$tmpm583190311$0 = lastToken) == null ? void 0 : $jscomp$optchain$tmpm583190311$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.WHITESPACE) {
16473
16473
  tokens.push(token);
16474
16474
  if (token.tokenKind === module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.EOF) {
16475
16475
  return tokens;
@@ -16715,9 +16715,9 @@ module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.proto
16715
16715
  repr:repr}) : {tokenKind:module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.NUMBER, repr:repr};
16716
16716
  };
16717
16717
  module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.nextTwoInputsPointsAreWhitespace = function() {
16718
- var $jscomp$this$m282935782$26 = this;
16718
+ var $jscomp$this$m583190311$26 = this;
16719
16719
  return this.nextTwoInputCodePoints().every(function(c) {
16720
- return $jscomp$this$m282935782$26.isWhitespace(c);
16720
+ return $jscomp$this$m583190311$26.isWhitespace(c);
16721
16721
  });
16722
16722
  };
16723
16723
  module$contents$safevalues$builders$html_sanitizer$css$tokenizer_Tokenizer.prototype.twoCodePointsAreValidEscape = function(codePoint1, codePoint2) {
@@ -16824,8 +16824,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
16824
16824
  return null;
16825
16825
  }
16826
16826
  if (token.lowercaseName === "url") {
16827
- var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1577590584$0 = void 0;
16828
- if ((($jscomp$optchain$tmpm1577590584$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1577590584$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
16827
+ var nextToken = tokens[i + 1], $jscomp$optchain$tmpm1877845113$0 = void 0;
16828
+ if ((($jscomp$optchain$tmpm1877845113$0 = nextToken) == null ? void 0 : $jscomp$optchain$tmpm1877845113$0.tokenKind) !== module$exports$safevalues$builders$html_sanitizer$css$tokens.CssTokenKind.STRING) {
16829
16829
  return null;
16830
16830
  }
16831
16831
  var parsedUrl = module$contents$safevalues$builders$html_sanitizer$url_policy_parseUrl(nextToken.value);
@@ -16848,8 +16848,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
16848
16848
  if (!this.allowKeyframes) {
16849
16849
  return null;
16850
16850
  }
16851
- for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$m1577590584$1$rule = $jscomp$iter$31.next(); !$jscomp$key$m1577590584$1$rule.done; $jscomp$key$m1577590584$1$rule = $jscomp$iter$31.next()) {
16852
- var rule = $jscomp$key$m1577590584$1$rule.value;
16851
+ for (var keyframeRules = [], $jscomp$iter$31 = (0,$jscomp.makeIterator)(keyframesRule.cssRules), $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next(); !$jscomp$key$m1877845113$1$rule.done; $jscomp$key$m1877845113$1$rule = $jscomp$iter$31.next()) {
16852
+ var rule = $jscomp$key$m1877845113$1$rule.value;
16853
16853
  if (rule instanceof CSSKeyframeRule) {
16854
16854
  var sanitizedRule = this.sanitizeKeyframeRule(rule);
16855
16855
  sanitizedRule && keyframeRules.push(sanitizedRule);
@@ -16861,8 +16861,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
16861
16861
  if (!this.propertyAllowlist.has(name)) {
16862
16862
  return !1;
16863
16863
  }
16864
- for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$m1577590584$2$discarder = $jscomp$iter$32.next(); !$jscomp$key$m1577590584$2$discarder.done; $jscomp$key$m1577590584$2$discarder = $jscomp$iter$32.next()) {
16865
- var discarder = $jscomp$key$m1577590584$2$discarder.value;
16864
+ for (var $jscomp$iter$32 = (0,$jscomp.makeIterator)(this.propertyDiscarders), $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next(); !$jscomp$key$m1877845113$2$discarder.done; $jscomp$key$m1877845113$2$discarder = $jscomp$iter$32.next()) {
16865
+ var discarder = $jscomp$key$m1877845113$2$discarder.value;
16866
16866
  if (discarder(name)) {
16867
16867
  return !1;
16868
16868
  }
@@ -16877,8 +16877,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
16877
16877
  return sanitizedValue ? module$contents$safevalues$builders$html_sanitizer$css$serializer_escapeIdent(name) + ": " + sanitizedValue + (isImportant ? " !important" : "") : null;
16878
16878
  };
16879
16879
  module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleDeclaration = function(style, calledFromStyleElement) {
16880
- for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$m1577590584$3$name = $jscomp$iter$33.next(); !$jscomp$key$m1577590584$3$name.done; $jscomp$key$m1577590584$3$name = $jscomp$iter$33.next()) {
16881
- var name = $jscomp$key$m1577590584$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
16880
+ for (var sortedPropertyNames = [].concat((0,$jscomp.arrayFromIterable)(style)).sort(), sanitizedProperties = "", $jscomp$iter$33 = (0,$jscomp.makeIterator)(sortedPropertyNames), $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next(); !$jscomp$key$m1877845113$3$name.done; $jscomp$key$m1877845113$3$name = $jscomp$iter$33.next()) {
16881
+ var name = $jscomp$key$m1877845113$3$name.value, value = style.getPropertyValue(name), isImportant = style.getPropertyPriority(name) === "important", sanitizedProperty = this.sanitizeProperty(name, value, isImportant, calledFromStyleElement);
16882
16882
  sanitizedProperty && (sanitizedProperties += sanitizedProperty + ";");
16883
16883
  }
16884
16884
  return sanitizedProperties;
@@ -16892,8 +16892,8 @@ module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.pr
16892
16892
  return selector + " { " + sanitizedProperties + " }";
16893
16893
  };
16894
16894
  module$contents$safevalues$builders$html_sanitizer$css$sanitizer_CssSanitizer.prototype.sanitizeStyleElement = function(cssText) {
16895
- for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$m1577590584$4$rule = $jscomp$iter$34.next(); !$jscomp$key$m1577590584$4$rule.done; $jscomp$key$m1577590584$4$rule = $jscomp$iter$34.next()) {
16896
- var rule = $jscomp$key$m1577590584$4$rule.value;
16895
+ for (var rules = this.getStyleSheet(cssText).cssRules, output = [], $jscomp$iter$34 = (0,$jscomp.makeIterator)(rules), $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next(); !$jscomp$key$m1877845113$4$rule.done; $jscomp$key$m1877845113$4$rule = $jscomp$iter$34.next()) {
16896
+ var rule = $jscomp$key$m1877845113$4$rule.value;
16897
16897
  if (rule instanceof CSSStyleRule) {
16898
16898
  var sanitizedRule = this.sanitizeStyleRule(rule);
16899
16899
  sanitizedRule && output.push(sanitizedRule);
@@ -17057,8 +17057,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
17057
17057
  return fragment;
17058
17058
  };
17059
17059
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeToFragmentInternal = function(html, inertDocument) {
17060
- for (var $jscomp$this$m1085474118$13 = this, dirtyFragment = module$contents$safevalues$builders$html_sanitizer$inert_fragment_createInertFragment(html, inertDocument), treeWalker = document.createTreeWalker(dirtyFragment, 5, function(n) {
17061
- return $jscomp$this$m1085474118$13.nodeFilter(n);
17060
+ for (var $jscomp$this$m1803429925$13 = this, dirtyFragment = module$contents$safevalues$builders$html_sanitizer$inert_fragment_createInertFragment(html, inertDocument), treeWalker = document.createTreeWalker(dirtyFragment, 5, function(n) {
17061
+ return $jscomp$this$m1803429925$13.nodeFilter(n);
17062
17062
  }), currentNode = treeWalker.nextNode(), sanitizedFragment = inertDocument.createDocumentFragment(), sanitizedParent = sanitizedFragment; currentNode !== null;) {
17063
17063
  var sanitizedNode = void 0;
17064
17064
  if (module$contents$safevalues$builders$html_sanitizer$no_clobber_isText(currentNode)) {
@@ -17093,8 +17093,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
17093
17093
  return this.createTextNode(textNode.data);
17094
17094
  };
17095
17095
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl.prototype.sanitizeElementNode = function(elementNode, inertDocument) {
17096
- for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$m1085474118$34$ = $jscomp$iter$36.next(); !$jscomp$key$m1085474118$34$.done; $jscomp$key$m1085474118$34$ = $jscomp$iter$36.next()) {
17097
- var $jscomp$destructuring$var30 = $jscomp$key$m1085474118$34$.value, name = $jscomp$destructuring$var30.name, value = $jscomp$destructuring$var30.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
17096
+ for (var elementName = module$contents$safevalues$builders$html_sanitizer$no_clobber_getNodeName(elementNode), newNode = inertDocument.createElement(elementName), dirtyAttributes = elementNode.attributes, $jscomp$iter$36 = (0,$jscomp.makeIterator)(dirtyAttributes), $jscomp$key$m1803429925$34$ = $jscomp$iter$36.next(); !$jscomp$key$m1803429925$34$.done; $jscomp$key$m1803429925$34$ = $jscomp$iter$36.next()) {
17097
+ var $jscomp$destructuring$var30 = $jscomp$key$m1803429925$34$.value, name = $jscomp$destructuring$var30.name, value = $jscomp$destructuring$var30.value, policy = this.sanitizerTable.getAttributePolicy(name, elementName);
17098
17098
  if (this.satisfiesAllConditions(policy.conditions, dirtyAttributes)) {
17099
17099
  switch(policy.policyAction) {
17100
17100
  case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP:
@@ -17126,9 +17126,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
17126
17126
  break;
17127
17127
  case module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET:
17128
17128
  if (this.resourceUrlPolicy) {
17129
- for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$url_policy.UrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$m1085474118$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1085474118$33$part.done; $jscomp$key$m1085474118$33$part =
17129
+ for (var hints$jscomp$0 = {type:module$exports$safevalues$builders$html_sanitizer$url_policy.UrlPolicyHintsType.HTML_ATTRIBUTE, attributeName:name, elementName:elementName}, srcset = module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(value), sanitizedSrcset = {parts:[]}, $jscomp$iter$35 = (0,$jscomp.makeIterator)(srcset.parts), $jscomp$key$m1803429925$33$part = $jscomp$iter$35.next(); !$jscomp$key$m1803429925$33$part.done; $jscomp$key$m1803429925$33$part =
17130
17130
  $jscomp$iter$35.next()) {
17131
- var part = $jscomp$key$m1085474118$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
17131
+ var part = $jscomp$key$m1803429925$33$part.value, url$jscomp$0 = module$contents$safevalues$builders$html_sanitizer$url_policy_parseUrl(part.url), sanitizedUrl$jscomp$0 = this.resourceUrlPolicy(url$jscomp$0, hints$jscomp$0);
17132
17132
  sanitizedUrl$jscomp$0 && sanitizedSrcset.parts.push({url:sanitizedUrl$jscomp$0.toString(), descriptor:part.descriptor});
17133
17133
  }
17134
17134
  module$contents$safevalues$builders$html_sanitizer$html_sanitizer_setAttribute(newNode, name, module$contents$safevalues$builders$html_sanitizer$html_sanitizer_serializeSrcset(sanitizedSrcset));
@@ -17186,8 +17186,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerIm
17186
17186
  if (!conditions) {
17187
17187
  return !0;
17188
17188
  }
17189
- for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$m1085474118$35$ = $jscomp$iter$37.next(); !$jscomp$key$m1085474118$35$.done; $jscomp$key$m1085474118$35$ = $jscomp$iter$37.next()) {
17190
- var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$m1085474118$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var32.next().value, expectedValues = $jscomp$destructuring$var32.next().value, $jscomp$optchain$tmpm1085474118$0 = void 0, value = ($jscomp$optchain$tmpm1085474118$0 = attrs.getNamedItem(attrName__tsickle_destructured_1)) == null ? void 0 : $jscomp$optchain$tmpm1085474118$0.value;
17189
+ for (var $jscomp$iter$37 = (0,$jscomp.makeIterator)(conditions), $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next(); !$jscomp$key$m1803429925$35$.done; $jscomp$key$m1803429925$35$ = $jscomp$iter$37.next()) {
17190
+ var $jscomp$destructuring$var32 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$35$.value), attrName__tsickle_destructured_1 = $jscomp$destructuring$var32.next().value, expectedValues = $jscomp$destructuring$var32.next().value, $jscomp$optchain$tmpm1803429925$0 = void 0, value = ($jscomp$optchain$tmpm1803429925$0 = attrs.getNamedItem(attrName__tsickle_destructured_1)) == null ? void 0 : $jscomp$optchain$tmpm1803429925$0.value;
17191
17191
  if (value && !expectedValues.has(value)) {
17192
17192
  return !1;
17193
17193
  }
@@ -17202,8 +17202,8 @@ function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_Srcse
17202
17202
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer.Srcset = function() {
17203
17203
  };
17204
17204
  function module$contents$safevalues$builders$html_sanitizer$html_sanitizer_parseSrcset(srcset) {
17205
- for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$m1085474118$36$part = $jscomp$iter$38.next(); !$jscomp$key$m1085474118$36$part.done; $jscomp$key$m1085474118$36$part = $jscomp$iter$38.next()) {
17206
- var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1085474118$36$part.value.trim().split(/\s+/, 2)), url__tsickle_destructured_3 = $jscomp$destructuring$var33.next().value, descriptor__tsickle_destructured_4 = $jscomp$destructuring$var33.next().value;
17205
+ for (var parts = [], $jscomp$iter$38 = (0,$jscomp.makeIterator)(srcset.split(",")), $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next(); !$jscomp$key$m1803429925$36$part.done; $jscomp$key$m1803429925$36$part = $jscomp$iter$38.next()) {
17206
+ var $jscomp$destructuring$var33 = (0,$jscomp.makeIterator)($jscomp$key$m1803429925$36$part.value.trim().split(/\s+/, 2)), url__tsickle_destructured_3 = $jscomp$destructuring$var33.next().value, descriptor__tsickle_destructured_4 = $jscomp$destructuring$var33.next().value;
17207
17207
  parts.push({url:url__tsickle_destructured_3, descriptor:descriptor__tsickle_destructured_4});
17208
17208
  }
17209
17209
  return {parts:parts};
@@ -17260,8 +17260,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
17260
17260
  this.sanitizerTable = module$exports$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table.DEFAULT_SANITIZER_TABLE;
17261
17261
  };
17262
17262
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowElements = function(elementSet) {
17263
- for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$435282654$23$element = $jscomp$iter$39.next(); !$jscomp$key$435282654$23$element.done; $jscomp$key$435282654$23$element = $jscomp$iter$39.next()) {
17264
- var element = $jscomp$key$435282654$23$element.value;
17263
+ for (var allowedElements = new Set(), allowedElementPolicies = new Map(), $jscomp$iter$39 = (0,$jscomp.makeIterator)(elementSet), $jscomp$key$m1412690177$23$element = $jscomp$iter$39.next(); !$jscomp$key$m1412690177$23$element.done; $jscomp$key$m1412690177$23$element = $jscomp$iter$39.next()) {
17264
+ var element = $jscomp$key$m1412690177$23$element.value;
17265
17265
  element = element.toUpperCase();
17266
17266
  if (!this.sanitizerTable.isAllowedElement(element)) {
17267
17267
  throw Error("Element: " + element + ", is not allowed by html5_contract.textpb");
@@ -17279,8 +17279,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
17279
17279
  throw Error("Element: " + element + " is not a custom element");
17280
17280
  }
17281
17281
  if (allowedAttributes) {
17282
- for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$435282654$24$attribute = $jscomp$iter$40.next(); !$jscomp$key$435282654$24$attribute.done; $jscomp$key$435282654$24$attribute = $jscomp$iter$40.next()) {
17283
- elementPolicy.set($jscomp$key$435282654$24$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
17282
+ for (var elementPolicy = new Map(), $jscomp$iter$40 = (0,$jscomp.makeIterator)(allowedAttributes), $jscomp$key$m1412690177$24$attribute = $jscomp$iter$40.next(); !$jscomp$key$m1412690177$24$attribute.done; $jscomp$key$m1412690177$24$attribute = $jscomp$iter$40.next()) {
17283
+ elementPolicy.set($jscomp$key$m1412690177$24$attribute.value.toLowerCase(), {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP});
17284
17284
  }
17285
17285
  allowedElementPolicies.set(element, elementPolicy);
17286
17286
  } else {
@@ -17290,15 +17290,15 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
17290
17290
  return this;
17291
17291
  };
17292
17292
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSanitizerBuilder.prototype.onlyAllowAttributes = function(attributeSet) {
17293
- for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$435282654$25$attribute = $jscomp$iter$41.next(); !$jscomp$key$435282654$25$attribute.done; $jscomp$key$435282654$25$attribute = $jscomp$iter$41.next()) {
17294
- var attribute = $jscomp$key$435282654$25$attribute.value;
17293
+ for (var allowedGlobalAttributes = new Set(), globalAttributePolicies = new Map(), elementPolicies = new Map(), $jscomp$iter$41 = (0,$jscomp.makeIterator)(attributeSet), $jscomp$key$m1412690177$25$attribute = $jscomp$iter$41.next(); !$jscomp$key$m1412690177$25$attribute.done; $jscomp$key$m1412690177$25$attribute = $jscomp$iter$41.next()) {
17294
+ var attribute = $jscomp$key$m1412690177$25$attribute.value;
17295
17295
  this.sanitizerTable.allowedGlobalAttributes.has(attribute) && allowedGlobalAttributes.add(attribute);
17296
17296
  this.sanitizerTable.globalAttributePolicies.has(attribute) && globalAttributePolicies.set(attribute, this.sanitizerTable.globalAttributePolicies.get(attribute));
17297
17297
  }
17298
- for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$435282654$27$ = $jscomp$iter$43.next(); !$jscomp$key$435282654$27$.done; $jscomp$key$435282654$27$ = $jscomp$iter$43.next()) {
17299
- for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$435282654$27$.value), elementName__tsickle_destructured_1 = $jscomp$destructuring$var36.next().value, originalElementPolicy__tsickle_destructured_2 = $jscomp$destructuring$var36.next().value, elementName = elementName__tsickle_destructured_1, newElementPolicy = new Map(), $jscomp$iter$42 = (0,$jscomp.makeIterator)(originalElementPolicy__tsickle_destructured_2.entries()), $jscomp$key$435282654$26$ = $jscomp$iter$42.next(); !$jscomp$key$435282654$26$.done; $jscomp$key$435282654$26$ =
17298
+ for (var $jscomp$iter$43 = (0,$jscomp.makeIterator)(this.sanitizerTable.elementPolicies.entries()), $jscomp$key$m1412690177$27$ = $jscomp$iter$43.next(); !$jscomp$key$m1412690177$27$.done; $jscomp$key$m1412690177$27$ = $jscomp$iter$43.next()) {
17299
+ for (var $jscomp$destructuring$var36 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$27$.value), elementName__tsickle_destructured_1 = $jscomp$destructuring$var36.next().value, originalElementPolicy__tsickle_destructured_2 = $jscomp$destructuring$var36.next().value, elementName = elementName__tsickle_destructured_1, newElementPolicy = new Map(), $jscomp$iter$42 = (0,$jscomp.makeIterator)(originalElementPolicy__tsickle_destructured_2.entries()), $jscomp$key$m1412690177$26$ = $jscomp$iter$42.next(); !$jscomp$key$m1412690177$26$.done; $jscomp$key$m1412690177$26$ =
17300
17300
  $jscomp$iter$42.next()) {
17301
- var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$435282654$26$.value), attribute__tsickle_destructured_3 = $jscomp$destructuring$var38.next().value, attributePolicy__tsickle_destructured_4 = $jscomp$destructuring$var38.next().value, attribute$jscomp$0 = attribute__tsickle_destructured_3, attributePolicy = attributePolicy__tsickle_destructured_4;
17301
+ var $jscomp$destructuring$var38 = (0,$jscomp.makeIterator)($jscomp$key$m1412690177$26$.value), attribute__tsickle_destructured_3 = $jscomp$destructuring$var38.next().value, attributePolicy__tsickle_destructured_4 = $jscomp$destructuring$var38.next().value, attribute$jscomp$0 = attribute__tsickle_destructured_3, attributePolicy = attributePolicy__tsickle_destructured_4;
17302
17302
  attributeSet.has(attribute$jscomp$0) && newElementPolicy.set(attribute$jscomp$0, attributePolicy);
17303
17303
  }
17304
17304
  elementPolicies.set(elementName, newElementPolicy);
@@ -17313,8 +17313,8 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.BaseSan
17313
17313
  this.sanitizerTable = new module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.SanitizerTable(this.sanitizerTable.allowedElements, this.sanitizerTable.elementPolicies, this.sanitizerTable.allowedGlobalAttributes, this.sanitizerTable.globalAttributePolicies, globallyAllowedAttributePrefixes);
17314
17314
  return this;
17315
17315
  }
17316
- for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$435282654$28$attribute = $jscomp$iter$44.next(); !$jscomp$key$435282654$28$attribute.done; $jscomp$key$435282654$28$attribute = $jscomp$iter$44.next()) {
17317
- var attribute = $jscomp$key$435282654$28$attribute.value;
17316
+ for (var allowedGlobalAttributes = new Set(this.sanitizerTable.allowedGlobalAttributes), $jscomp$iter$44 = (0,$jscomp.makeIterator)(attributes), $jscomp$key$m1412690177$28$attribute = $jscomp$iter$44.next(); !$jscomp$key$m1412690177$28$attribute.done; $jscomp$key$m1412690177$28$attribute = $jscomp$iter$44.next()) {
17317
+ var attribute = $jscomp$key$m1412690177$28$attribute.value;
17318
17318
  if (attribute.indexOf("data-") !== 0) {
17319
17319
  throw Error("data attribute: " + attribute + ' does not begin with the prefix "data-"');
17320
17320
  }
@@ -17384,7 +17384,7 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
17384
17384
  return this;
17385
17385
  };
17386
17386
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.build = function() {
17387
- var $jscomp$this$435282654$19 = this;
17387
+ var $jscomp$this$m1412690177$19 = this;
17388
17388
  this.extendSanitizerTableForCss();
17389
17389
  var propertyDiscarders = [];
17390
17390
  this.animationsAllowed || propertyDiscarders.push(function(property) {
@@ -17394,9 +17394,9 @@ module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSani
17394
17394
  return /^transition(-|$)/.test(property);
17395
17395
  });
17396
17396
  return new module$exports$safevalues$builders$html_sanitizer$html_sanitizer.HtmlSanitizerImpl(this.sanitizerTable, module$exports$safevalues$internals$secrets.secretToken, function(cssText) {
17397
- return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$435282654$19.resourceUrlPolicy, $jscomp$this$435282654$19.animationsAllowed, propertyDiscarders);
17397
+ return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleElement(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$m1412690177$19.resourceUrlPolicy, $jscomp$this$m1412690177$19.animationsAllowed, propertyDiscarders);
17398
17398
  }, function(cssText) {
17399
- return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$435282654$19.resourceUrlPolicy, propertyDiscarders);
17399
+ return module$contents$safevalues$builders$html_sanitizer$css$sanitizer_sanitizeStyleAttribute(cssText, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_PROPERTY_ALLOWLIST, module$exports$safevalues$builders$html_sanitizer$css$allowlists.CSS_FUNCTION_ALLOWLIST, $jscomp$this$m1412690177$19.resourceUrlPolicy, propertyDiscarders);
17400
17400
  }, this.resourceUrlPolicy, this.navigationUrlPolicy, this.openShadow);
17401
17401
  };
17402
17402
  module$exports$safevalues$builders$html_sanitizer$html_sanitizer_builder.CssSanitizerBuilder.prototype.extendSanitizerTableForCss = function() {
@@ -17616,12 +17616,12 @@ function module$contents$safevalues$reporting$reporting_isChangedBySanitizing(s,
17616
17616
  }
17617
17617
  try {
17618
17618
  module$contents$safevalues$builders$html_sanitizer$html_sanitizer_lenientlySanitizeHtmlAssertUnchanged(s);
17619
- } catch ($jscomp$unused$catch$696273141$0) {
17619
+ } catch ($jscomp$unused$catch$442189172$0) {
17620
17620
  return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_RELAXED_SANITIZING), !0;
17621
17621
  }
17622
17622
  try {
17623
17623
  module$contents$safevalues$builders$html_sanitizer$html_sanitizer_sanitizeHtmlAssertUnchanged(s);
17624
- } catch ($jscomp$unused$catch$696273141$1) {
17624
+ } catch ($jscomp$unused$catch$442189172$1) {
17625
17625
  return module$contents$safevalues$reporting$reporting_reportLegacyConversion(options, module$contents$safevalues$reporting$reporting_ReportingType.HTML_CHANGED_BY_SANITIZING), !0;
17626
17626
  }
17627
17627
  return !1;
@@ -19208,6 +19208,13 @@ goog.net.XhrIo.prototype.setTrustToken = function(trustToken) {
19208
19208
  goog.net.XhrIo.prototype.setAttributionReporting = function(attributionReportingOptions) {
19209
19209
  this.attributionReportingOptions_ = attributionReportingOptions;
19210
19210
  };
19211
+ goog.net.XhrIo.prototype.getResponseUrl = function() {
19212
+ try {
19213
+ return this.xhr_ ? this.xhr_.responseURL : "";
19214
+ } catch (e) {
19215
+ return goog.log.fine(this.logger_, "Can not get responseURL: " + e.message), "";
19216
+ }
19217
+ };
19211
19218
  goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_headers) {
19212
19219
  if (this.xhr_) {
19213
19220
  throw Error("[goog.net.XhrIo] Object is active with another request=" + this.lastUri_ + "; newUri=" + url);
@@ -19238,8 +19245,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
19238
19245
  headers.set(key, opt_headers[key]);
19239
19246
  }
19240
19247
  } else if (typeof opt_headers.keys === "function" && typeof opt_headers.get === "function") {
19241
- for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$54$key = $jscomp$iter$45.next(); !$jscomp$key$m71669834$54$key.done; $jscomp$key$m71669834$54$key = $jscomp$iter$45.next()) {
19242
- var key$jscomp$0 = $jscomp$key$m71669834$54$key.value;
19248
+ for (var $jscomp$iter$45 = (0,$jscomp.makeIterator)(opt_headers.keys()), $jscomp$key$m71669834$55$key = $jscomp$iter$45.next(); !$jscomp$key$m71669834$55$key.done; $jscomp$key$m71669834$55$key = $jscomp$iter$45.next()) {
19249
+ var key$jscomp$0 = $jscomp$key$m71669834$55$key.value;
19243
19250
  headers.set(key$jscomp$0, opt_headers.get(key$jscomp$0));
19244
19251
  }
19245
19252
  } else {
@@ -19250,8 +19257,8 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
19250
19257
  return goog.string.caseInsensitiveEquals(goog.net.XhrIo.CONTENT_TYPE_HEADER, header);
19251
19258
  }), contentIsFormData = goog.global.FormData && content instanceof goog.global.FormData;
19252
19259
  !module$contents$goog$array_contains(goog.net.XhrIo.METHODS_WITH_FORM_DATA, method) || contentTypeKey || contentIsFormData || headers.set(goog.net.XhrIo.CONTENT_TYPE_HEADER, goog.net.XhrIo.FORM_CONTENT_TYPE);
19253
- for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$55$ = $jscomp$iter$46.next(); !$jscomp$key$m71669834$55$.done; $jscomp$key$m71669834$55$ = $jscomp$iter$46.next()) {
19254
- var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$55$.value), key$jscomp$1 = $jscomp$destructuring$var40.next().value, value = $jscomp$destructuring$var40.next().value;
19260
+ for (var $jscomp$iter$46 = (0,$jscomp.makeIterator)(headers), $jscomp$key$m71669834$56$ = $jscomp$iter$46.next(); !$jscomp$key$m71669834$56$.done; $jscomp$key$m71669834$56$ = $jscomp$iter$46.next()) {
19261
+ var $jscomp$destructuring$var40 = (0,$jscomp.makeIterator)($jscomp$key$m71669834$56$.value), key$jscomp$1 = $jscomp$destructuring$var40.next().value, value = $jscomp$destructuring$var40.next().value;
19255
19262
  this.xhr_.setRequestHeader(key$jscomp$1, value);
19256
19263
  }
19257
19264
  this.responseType_ && (this.xhr_.responseType = this.responseType_);
@@ -19484,11 +19491,11 @@ goog.net.XhrIo.prototype.formatMsg_ = function(msg) {
19484
19491
  goog.debug.entryPointRegistry.register(function(transformer) {
19485
19492
  goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_ = transformer(goog.net.XhrIo.prototype.onReadyStateChangeEntryPoint_);
19486
19493
  });
19487
- var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
19494
+ var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["https://accounts.google.com/gsi/client"]);
19488
19495
  ee.apiclient = {};
19489
19496
  var module$contents$ee$apiclient_apiclient = {};
19490
19497
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19491
- ee.apiclient.API_CLIENT_VERSION = "1.6.12";
19498
+ ee.apiclient.API_CLIENT_VERSION = "1.6.14";
19492
19499
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19493
19500
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19494
19501
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19651,14 +19658,15 @@ module$contents$ee$apiclient_BatchRequestService.prototype.send = function(param
19651
19658
  request.push("Content-Type: application/json; charset=utf-8");
19652
19659
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19653
19660
  authToken != null && request.push("Authorization: " + authToken);
19661
+ module$contents$ee$apiclient_apiclient.userAgent_ && request.push("User-Agent: " + module$contents$ee$apiclient_apiclient.userAgent_);
19654
19662
  var body = params.body ? JSON.stringify(params.body) : "";
19655
19663
  return [request.join("\r\n") + "\r\n\r\n" + body, responseCtor];
19656
19664
  };
19657
19665
  module$contents$ee$apiclient_BatchRequestService.prototype.makeRequest = function(params) {
19658
19666
  };
19659
19667
  module$contents$ee$apiclient_apiclient.parseBatchReply = function(contentType, responseText, handle) {
19660
- for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$100$part = $jscomp$iter$47.next(); !$jscomp$key$m1153655765$100$part.done; $jscomp$key$m1153655765$100$part = $jscomp$iter$47.next()) {
19661
- var groups = $jscomp$key$m1153655765$100$part.value.split("\r\n\r\n");
19668
+ for (var boundary = contentType.split("; boundary=")[1], $jscomp$iter$47 = (0,$jscomp.makeIterator)(responseText.split("--" + boundary)), $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next(); !$jscomp$key$m1153655765$102$part.done; $jscomp$key$m1153655765$102$part = $jscomp$iter$47.next()) {
19669
+ var groups = $jscomp$key$m1153655765$102$part.value.split("\r\n\r\n");
19662
19670
  if (!(groups.length < 3)) {
19663
19671
  var id = groups[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1], status = Number(groups[1].match(/^HTTP\S*\s(\d+)\s/)[1]), text = groups.slice(2).join("\r\n\r\n");
19664
19672
  handle(id, status, text);
@@ -19750,6 +19758,12 @@ module$contents$ee$apiclient_apiclient.setAuthClient = function(clientId, scopes
19750
19758
  module$contents$ee$apiclient_apiclient.setAppIdToken = function(token) {
19751
19759
  module$contents$ee$apiclient_apiclient.appIdToken_ = token;
19752
19760
  };
19761
+ module$contents$ee$apiclient_apiclient.setUserAgent = function(userAgent) {
19762
+ module$contents$ee$apiclient_apiclient.userAgent_ = userAgent;
19763
+ };
19764
+ module$contents$ee$apiclient_apiclient.getUserAgent = function() {
19765
+ return module$contents$ee$apiclient_apiclient.userAgent_;
19766
+ };
19753
19767
  module$contents$ee$apiclient_apiclient.initialize = function(apiBaseUrl, tileBaseUrl, xsrfToken, project) {
19754
19768
  apiBaseUrl != null ? module$contents$ee$apiclient_apiclient.apiBaseUrl_ = apiBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.apiBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_API_BASE_URL_);
19755
19769
  tileBaseUrl != null ? module$contents$ee$apiclient_apiclient.tileBaseUrl_ = tileBaseUrl : module$contents$ee$apiclient_apiclient.initialized_ || (module$contents$ee$apiclient_apiclient.tileBaseUrl_ = module$contents$ee$apiclient_apiclient.DEFAULT_TILE_BASE_URL_);
@@ -19786,9 +19800,10 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19786
19800
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19787
19801
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19788
19802
  method = method || "POST";
19789
- var headers = {"Content-Type":contentType}, version = "1.6.12";
19790
- version === "1.6.12" && (version = "latest");
19803
+ var headers = {"Content-Type":contentType}, version = "1.6.14";
19804
+ version === "1.6.14" && (version = "latest");
19791
19805
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19806
+ module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
19792
19807
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19793
19808
  if (authToken != null) {
19794
19809
  headers.Authorization = authToken;
@@ -19897,7 +19912,7 @@ module$contents$ee$apiclient_apiclient.ensureAuthLibLoaded_ = function(callback)
19897
19912
  callback();
19898
19913
  };
19899
19914
  (function() {
19900
- goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$99)).addCallback(done);
19915
+ goog.isObject(goog.global.default_gsi) ? done() : goog.net.jsloader.safeLoad(module$contents$safevalues$builders$resource_url_builders_trustedResourceUrl($jscomp$templatelit$m1153655765$101)).addCallback(done);
19901
19916
  })();
19902
19917
  };
19903
19918
  module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, error, result) {
@@ -19915,21 +19930,21 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
19915
19930
  }
19916
19931
  };
19917
19932
  module$contents$ee$apiclient_apiclient.makeRequest_ = function(params) {
19918
- for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$101$ = $jscomp$iter$48.next(); !$jscomp$key$m1153655765$101$.done; $jscomp$key$m1153655765$101$ = $jscomp$iter$48.next()) {
19919
- var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$101$.value), name = $jscomp$destructuring$var48.next().value, item = $jscomp$destructuring$var48.next().value;
19933
+ for (var request = new goog.Uri.QueryData(), $jscomp$iter$48 = (0,$jscomp.makeIterator)(Object.entries(params)), $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next(); !$jscomp$key$m1153655765$103$.done; $jscomp$key$m1153655765$103$ = $jscomp$iter$48.next()) {
19934
+ var $jscomp$destructuring$var48 = (0,$jscomp.makeIterator)($jscomp$key$m1153655765$103$.value), name = $jscomp$destructuring$var48.next().value, item = $jscomp$destructuring$var48.next().value;
19920
19935
  request.set(name, item);
19921
19936
  }
19922
19937
  return request;
19923
19938
  };
19924
19939
  module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
19925
- function getResponse(url, method, data) {
19940
+ function getResponse(url, method, data, headers) {
19926
19941
  url = url.replace(apiBaseUrl, "").replace(module$exports$ee$apiVersion.V1 + "/projects/" + module$contents$ee$apiclient_apiclient.DEFAULT_PROJECT_ + "/", "");
19927
19942
  if (url in calls) {
19928
19943
  var response = calls[url];
19929
19944
  } else {
19930
19945
  throw Error(url + " mock response not specified");
19931
19946
  }
19932
- typeof response === "function" && (response = response(url, method, data));
19947
+ typeof response === "function" && (response = response(url, method, data, headers));
19933
19948
  typeof response === "string" && (response = {text:response, status:200, contentType:"application/json; charset=utf-8"});
19934
19949
  if (typeof response.text !== "string") {
19935
19950
  throw Error(url + " mock response missing/invalid text");
@@ -19941,9 +19956,9 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
19941
19956
  }
19942
19957
  calls = calls ? module$contents$goog$object_clone(calls) : {};
19943
19958
  var apiBaseUrl;
19944
- goog.net.XhrIo.send = function(url, callback, method, data) {
19959
+ goog.net.XhrIo.send = function(url, callback, method, data, headers) {
19945
19960
  apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
19946
- var responseData = getResponse(url, method, data), e = new function() {
19961
+ var responseData = getResponse(url, method, data, headers), e = new function() {
19947
19962
  this.target = {};
19948
19963
  }();
19949
19964
  e.target.getResponseText = function() {
@@ -19959,19 +19974,21 @@ module$contents$ee$apiclient_apiclient.setupMockSend = function(calls) {
19959
19974
  return new goog.net.XhrIo();
19960
19975
  };
19961
19976
  var fakeXmlHttp = function() {
19977
+ this.requestHeaders_ = {};
19962
19978
  };
19963
19979
  fakeXmlHttp.prototype.open = function(method, urlIn) {
19964
19980
  apiBaseUrl = apiBaseUrl || module$contents$ee$apiclient_apiclient.apiBaseUrl_;
19965
19981
  this.url = urlIn;
19966
19982
  this.method = method;
19967
19983
  };
19968
- fakeXmlHttp.prototype.setRequestHeader = function() {
19984
+ fakeXmlHttp.prototype.setRequestHeader = function(key, value) {
19985
+ this.requestHeaders_[key] = value;
19969
19986
  };
19970
19987
  fakeXmlHttp.prototype.getResponseHeader = function(header) {
19971
19988
  return header === "Content-Type" ? this.contentType_ || null : null;
19972
19989
  };
19973
19990
  fakeXmlHttp.prototype.send = function(data) {
19974
- var responseData = getResponse(this.url, this.method, data);
19991
+ var responseData = getResponse(this.url, this.method, data, this.requestHeaders_);
19975
19992
  this.responseText = responseData.text;
19976
19993
  this.status = typeof responseData.status === "function" ? responseData.status() : responseData.status;
19977
19994
  this.contentType_ = responseData.contentType;
@@ -20005,6 +20022,7 @@ module$contents$ee$apiclient_apiclient.apiBaseUrl_ = null;
20005
20022
  module$contents$ee$apiclient_apiclient.tileBaseUrl_ = null;
20006
20023
  module$contents$ee$apiclient_apiclient.xsrfToken_ = null;
20007
20024
  module$contents$ee$apiclient_apiclient.appIdToken_ = null;
20025
+ module$contents$ee$apiclient_apiclient.userAgent_ = null;
20008
20026
  module$contents$ee$apiclient_apiclient.paramAugmenter_ = goog.functions.identity;
20009
20027
  module$contents$ee$apiclient_apiclient.authToken_ = null;
20010
20028
  module$contents$ee$apiclient_apiclient.authTokenExpiration_ = null;
@@ -20071,6 +20089,8 @@ ee.apiclient.setAuthToken = module$contents$ee$apiclient_apiclient.setAuthToken;
20071
20089
  ee.apiclient.clearAuthToken = module$contents$ee$apiclient_apiclient.clearAuthToken;
20072
20090
  ee.apiclient.setAuthTokenRefresher = module$contents$ee$apiclient_apiclient.setAuthTokenRefresher;
20073
20091
  ee.apiclient.setAppIdToken = module$contents$ee$apiclient_apiclient.setAppIdToken;
20092
+ ee.apiclient.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
20093
+ ee.apiclient.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
20074
20094
  ee.apiclient.mergeAuthScopes = module$contents$ee$apiclient_apiclient.mergeAuthScopes_;
20075
20095
  ee.apiclient.setupMockSend = module$contents$ee$apiclient_apiclient.setupMockSend;
20076
20096
  ee.apiclient.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
@@ -21496,6 +21516,10 @@ ee.data.getAuthScopes = module$contents$ee$apiclient_apiclient.getAuthScopes;
21496
21516
  goog.exportSymbol("ee.data.getAuthScopes", ee.data.getAuthScopes);
21497
21517
  ee.data.setDeadline = module$contents$ee$apiclient_apiclient.setDeadline;
21498
21518
  goog.exportSymbol("ee.data.setDeadline", ee.data.setDeadline);
21519
+ ee.data.setUserAgent = module$contents$ee$apiclient_apiclient.setUserAgent;
21520
+ goog.exportSymbol("ee.data.setUserAgent", ee.data.setUserAgent);
21521
+ ee.data.getUserAgent = module$contents$ee$apiclient_apiclient.getUserAgent;
21522
+ goog.exportSymbol("ee.data.getUserAgent", ee.data.getUserAgent);
21499
21523
  ee.data.setParamAugmenter = module$contents$ee$apiclient_apiclient.setParamAugmenter;
21500
21524
  goog.exportSymbol("ee.data.setParamAugmenter", ee.data.setParamAugmenter);
21501
21525
  ee.data.initialize = module$contents$ee$apiclient_apiclient.initialize;
@@ -24794,6 +24818,9 @@ ee.promote_ = function(arg, klass) {
24794
24818
  return null;
24795
24819
  }
24796
24820
  if (arg !== void 0) {
24821
+ if (typeof klass != "string") {
24822
+ throw Error("Unexpected type: " + Object.prototype.toString.call(klass));
24823
+ }
24797
24824
  var exportedEE = goog.global.ee;
24798
24825
  switch(klass) {
24799
24826
  case "Image":
@@ -27310,29 +27337,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27310
27337
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27311
27338
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27312
27339
  (function() {
27313
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction._call ee.ApiFunction.lookup ee.batch.Export.video.toDrive ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.table.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filterBounds ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAssetRootQuota ee.data.newTaskId ee.data.getWorkloadTag ee.data.createAssetHome ee.data.getMapId ee.data.setWorkloadTag ee.data.getTaskStatus ee.data.getAssetRoots ee.data.startIngestion ee.data.setDefaultWorkloadTag ee.data.createAsset ee.data.getTileUrl ee.data.resetWorkloadTag ee.data.createFolder ee.data.getTaskList ee.data.listOperations ee.data.renameAsset ee.data.startTableIngestion ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.copyAsset ee.data.listFeatures ee.data.getOperation ee.data.cancelOperation ee.data.deleteAsset ee.data.computeValue ee.data.getAsset ee.data.getVideoThumbId ee.data.getThumbId ee.data.getAssetAcl ee.data.getInfo ee.data.cancelTask ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.updateTask ee.data.getList ee.data.listAssets ee.data.makeThumbUrl ee.data.authenticate ee.data.startProcessing ee.data.setAssetAcl ee.data.authenticateViaPopup ee.data.updateAsset ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.listBuckets ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.listImages ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.initialize ee.reset ee.apply ee.TILE_SIZE ee.call ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.Filter.neq ee.Filter.inList ee.Filter.lt ee.Filter.metadata ee.Filter.and ee.Filter.or ee.Filter.prototype.not ee.Filter.bounds ee.Filter.date ee.Filter ee.Filter.gte ee.Filter.lte ee.Filter.eq ee.Filter.gt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.BBox ee.Geometry.Point ee.Geometry.LinearRing ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.prototype.select ee.Image ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.prototype.getMap ee.Image.prototype.getThumbId ee.Image.prototype.getDownloadURL ee.Image.cat ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.rgb ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
27314
- orderedParamLists = [["name", "namedArgs"], ["name", "var_args"], ["name"], "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(" "), "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(" "),
27315
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking 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_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
27316
- "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "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(" "), "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(" "),
27317
- ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
27318
- ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["geometry"], ["filter"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["name", "operator", "value"], ["start", "opt_end"], ["opt_callback"], ["callback"], ["legacy"], ["func", "var_args"], ["id"], ["assetId", "properties", "opt_callback"], ["rootId", "opt_callback"], ["opt_count", "opt_callback"], [], ["requestedId", "opt_callback"], ["params", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["opt_callback"],
27319
- ["taskId", "request", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id", "x", "y", "z"], ["opt_resetDefault"], ["path", "opt_force", "opt_callback"], ["opt_callback"], ["opt_limit", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["asset", "params", "opt_callback"], ["operationName",
27320
- "opt_callback"], ["operationName", "opt_callback"], ["assetId", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"],
27321
- ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["taskId", "params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["id"], ["project", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["date", "opt_tz"],
27322
- ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "namedArgs"], [], ["func", "var_args"], [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_format", "opt_selectors", "opt_filename",
27323
- "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "operator", "value"], ["var_args"], ["var_args"], [], ["geometry", "opt_errorMargin"], ["start", "opt_end"], ["opt_filter"], ["name", "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic",
27324
- "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geometry"], ["var_args"], ["var_args"],
27325
- ["opt_args"], ["expression", "opt_map"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"],
27326
- [], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
27327
- [ee.ApiFunction._apply, ee.ApiFunction._call, ee.ApiFunction.lookup, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage,
27328
- module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
27329
- ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.getAssetRootQuota, ee.data.newTaskId, ee.data.getWorkloadTag, ee.data.createAssetHome, ee.data.getMapId, ee.data.setWorkloadTag, ee.data.getTaskStatus, ee.data.getAssetRoots, ee.data.startIngestion, ee.data.setDefaultWorkloadTag, ee.data.createAsset, ee.data.getTileUrl, ee.data.resetWorkloadTag, ee.data.createFolder, ee.data.getTaskList,
27330
- ee.data.listOperations, ee.data.renameAsset, ee.data.startTableIngestion, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.copyAsset, ee.data.listFeatures, ee.data.getOperation, ee.data.cancelOperation, ee.data.deleteAsset, ee.data.computeValue, ee.data.getAsset, ee.data.getVideoThumbId, ee.data.getThumbId, ee.data.getAssetAcl, ee.data.getInfo, ee.data.cancelTask, ee.data.authenticateViaOauth, ee.data.getFilmstripThumbId, ee.data.updateTask, ee.data.getList, ee.data.listAssets,
27331
- ee.data.makeThumbUrl, ee.data.authenticate, ee.data.startProcessing, ee.data.setAssetAcl, ee.data.authenticateViaPopup, ee.data.updateAsset, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.listBuckets, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId, ee.data.listImages, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.initialize, ee.reset, ee.apply, ee.TILE_SIZE, ee.call, ee.Algorithms,
27332
- ee.InitState, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection, ee.Filter.neq, ee.Filter.inList, ee.Filter.lt, ee.Filter.metadata, ee.Filter.and, ee.Filter.or, ee.Filter.prototype.not,
27333
- ee.Filter.bounds, ee.Filter.date, ee.Filter, ee.Filter.gte, ee.Filter.lte, ee.Filter.eq, ee.Filter.gt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Image.prototype.clip,
27334
- ee.Image.prototype.rename, ee.Image.prototype.select, ee.Image, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.prototype.getMap, ee.Image.prototype.getThumbId, ee.Image.prototype.getDownloadURL, ee.Image.cat, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getMapId,
27335
- ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
27340
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.Collection.prototype.filterBounds ee.Collection.prototype.limit ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.serialize ee.data.getAssetAcl ee.data.authenticate ee.data.getList ee.data.getTableDownloadId ee.data.listAssets ee.data.setAssetAcl ee.data.updateAsset ee.data.startProcessing ee.data.getDownloadId ee.data.makeThumbUrl ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.updateTask ee.data.authenticateViaPrivateKey ee.data.makeTableDownloadUrl ee.data.listImages ee.data.setAssetProperties ee.data.newTaskId ee.data.listBuckets ee.data.getAssetRootQuota ee.data.getAssetRoots ee.data.getMapId ee.data.getTaskStatus ee.data.createAssetHome ee.data.getWorkloadTag ee.data.getTileUrl ee.data.startIngestion ee.data.setWorkloadTag ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.getTaskList ee.data.resetWorkloadTag ee.data.createFolder ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.listOperations ee.data.renameAsset ee.data.listFeatures ee.data.startTableIngestion ee.data.getAsset ee.data.computeValue ee.data.copyAsset ee.data.getVideoThumbId ee.data.deleteAsset ee.data.getThumbId ee.data.getFilmstripThumbId ee.data.getInfo ee.data.getOperation ee.data.cancelOperation ee.data.authenticateViaOauth ee.data.cancelTask ee.Date ee.Deserializer.fromJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.reset ee.call ee.InitState ee.initialize ee.TILE_SIZE ee.apply ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.Filter.lt ee.Filter.or ee.Filter.bounds ee.Filter.prototype.not ee.Filter.gte ee.Filter.date ee.Filter.eq ee.Filter.gt ee.Filter.inList ee.Filter.metadata ee.Filter.neq ee.Filter ee.Filter.lte ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.LinearRing ee.Geometry.Rectangle ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.Point ee.Geometry.MultiLineString ee.Geometry.BBox ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image ee.Image.cat ee.Image.prototype.getDownloadURL ee.Image.prototype.getMap ee.Image.prototype.rename ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.rgb ee.Image.prototype.clip ee.Image.prototype.select ee.Image.prototype.getMapId ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.Serializer.toJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27341
+ orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking 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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
27342
+ "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_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(" "),
27343
+ "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "),
27344
+ "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(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "),
27345
+ ["geometry"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["func", "var_args"], ["opt_callback"], ["callback"], ["legacy"], ["assetId", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId",
27346
+ "aclUpdate", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["id"], ["opt_success", "opt_error"], ["id"], ["taskId", "action", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["parent", "opt_params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_count", "opt_callback"], ["project", "opt_callback"], ["rootId", "opt_callback"],
27347
+ ["opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["requestedId", "opt_callback"], [], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["opt_callback"], ["opt_resetDefault"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["asset", "params", "opt_callback"],
27348
+ ["taskId", "request", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["operationName", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["taskId", "opt_callback"], ["date",
27349
+ "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "var_args"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["func", "namedArgs"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_callback"],
27350
+ ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["name", "value"], ["var_args"], ["geometry", "opt_errorMargin"], [], ["name", "value"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "operator", "value"], ["name", "value"], ["opt_filter"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27351
+ ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], [], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["params", "opt_callback"], ["params",
27352
+ "opt_callback"], ["opt_args"], ["var_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["opt_callback"], ["r", "g", "b"], ["geometry"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["params", "opt_callback"], ["selectors",
27353
+ "opt_names"], [], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27354
+ [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage,
27355
+ module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, ee.Collection.prototype.filterBounds, ee.Collection.prototype.limit, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.aside,
27356
+ ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.serialize, ee.data.getAssetAcl, ee.data.authenticate, ee.data.getList, ee.data.getTableDownloadId, ee.data.listAssets, ee.data.setAssetAcl, ee.data.updateAsset, ee.data.startProcessing, ee.data.getDownloadId, ee.data.makeThumbUrl, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.updateTask, ee.data.authenticateViaPrivateKey, ee.data.makeTableDownloadUrl, ee.data.listImages, ee.data.setAssetProperties,
27357
+ ee.data.newTaskId, ee.data.listBuckets, ee.data.getAssetRootQuota, ee.data.getAssetRoots, ee.data.getMapId, ee.data.getTaskStatus, ee.data.createAssetHome, ee.data.getWorkloadTag, ee.data.getTileUrl, ee.data.startIngestion, ee.data.setWorkloadTag, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.getTaskList, ee.data.resetWorkloadTag, ee.data.createFolder, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.renameAsset, ee.data.listFeatures, ee.data.startTableIngestion,
27358
+ ee.data.getAsset, ee.data.computeValue, ee.data.copyAsset, ee.data.getVideoThumbId, ee.data.deleteAsset, ee.data.getThumbId, ee.data.getFilmstripThumbId, ee.data.getInfo, ee.data.getOperation, ee.data.cancelOperation, ee.data.authenticateViaOauth, ee.data.cancelTask, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.reset, ee.call, ee.InitState, ee.initialize, ee.TILE_SIZE, ee.apply, ee.Algorithms, ee.Element.prototype.set,
27359
+ ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.Filter.lt, ee.Filter.or, ee.Filter.bounds, ee.Filter.prototype.not, ee.Filter.gte, ee.Filter.date, ee.Filter.eq, ee.Filter.gt, ee.Filter.inList,
27360
+ ee.Filter.metadata, ee.Filter.neq, ee.Filter, ee.Filter.lte, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.LinearRing, ee.Geometry.Rectangle, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.Point, ee.Geometry.MultiLineString, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiPoint, ee.Geometry.LineString, ee.Geometry, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL,
27361
+ ee.Image, ee.Image.cat, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getMap, ee.Image.prototype.rename, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.rgb, ee.Image.prototype.clip, ee.Image.prototype.select, ee.Image.prototype.getMapId, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL,
27362
+ ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.Serializer.toJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27336
27363
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27337
27364
  });
27338
27365
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;