client_plugin_logic_deb 1.8.373 → 1.8.376

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.
Files changed (39) hide show
  1. package/Kosi-Kaverit-kaverit.js +5 -5
  2. package/Kosi-Kodein-kodein-di.js +16 -16
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +35 -35
  4. package/Logic_Debertz-client_plugin.d.ts +6 -5
  5. package/Logic_Debertz-client_plugin.js +2076 -2083
  6. package/Logic_Debertz-client_plugin.js.map +1 -1
  7. package/Logic_Debertz-core.js +222 -162
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.js +11596 -11534
  10. package/Logic_Debertz-engine.js.map +1 -1
  11. package/Logic_Debertz-game_client.js +6605 -6574
  12. package/Logic_Debertz-game_client.js.map +1 -1
  13. package/Logic_Debertz-game_server.js +894 -878
  14. package/Logic_Debertz-game_server.js.map +1 -1
  15. package/error-library-error.js +1 -1
  16. package/kotlin-kotlin-stdlib.js +155 -151
  17. package/kotlin-kotlin-stdlib.js.map +1 -1
  18. package/kotlinx-atomicfu.js +1 -1
  19. package/kotlinx-coroutines-core.js +22 -22
  20. package/kotlinx-io-kotlinx-io-core.js +10 -10
  21. package/kotlinx-serialization-kotlinx-serialization-core.js +38 -38
  22. package/kotlinx-serialization-kotlinx-serialization-json.js +43 -43
  23. package/ktor-ktor-client-content-negotiation.js +8 -8
  24. package/ktor-ktor-client-core.js +23 -23
  25. package/ktor-ktor-client-logging.js +5 -5
  26. package/ktor-ktor-events.js +2 -2
  27. package/ktor-ktor-http.js +36 -36
  28. package/ktor-ktor-io.js +16 -16
  29. package/ktor-ktor-serialization-kotlinx.js +2 -2
  30. package/ktor-ktor-serialization.js +3 -3
  31. package/ktor-ktor-utils.js +14 -14
  32. package/ktor-ktor-websockets.js +4 -4
  33. package/package.json +1 -1
  34. package/random-library-crypto-rand.js +3 -3
  35. package/random-library-secure-random.js +1 -1
  36. package/raspberry-cardgame-lib-core.js +8 -8
  37. package/raspberry-cardgame-lib-logger.js +5 -5
  38. package/raspberry-cardgame-lib-random.js +13 -13
  39. package/uuid.js +4 -4
@@ -57,6 +57,12 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
+ if (typeof String.prototype.startsWith === 'undefined') {
61
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
62
+ position = position || 0;
63
+ return this.lastIndexOf(searchString, position) === position;
64
+ }});
65
+ }
60
66
  if (typeof String.prototype.endsWith === 'undefined') {
61
67
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
62
68
  var subjectString = this.toString();
@@ -68,12 +74,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
68
74
  return lastIndex !== -1 && lastIndex === position;
69
75
  }});
70
76
  }
71
- if (typeof String.prototype.startsWith === 'undefined') {
72
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
73
- position = position || 0;
74
- return this.lastIndexOf(searchString, position) === position;
75
- }});
76
- }
77
77
  //endregion
78
78
  (function (factory) {
79
79
  if (typeof define === 'function' && define.amd)
@@ -113,14 +113,14 @@ if (typeof String.prototype.startsWith === 'undefined') {
113
113
  }
114
114
  initMetadataForInterface(KtMap, 'Map');
115
115
  initMetadataForInterface(MutableIterable, 'MutableIterable');
116
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
116
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
117
117
  initMetadataForCompanion(Companion_2);
118
118
  function asJsReadonlySetView() {
119
119
  return createJsReadonlySetViewFrom(this);
120
120
  }
121
121
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
122
122
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
123
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
123
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
124
124
  initMetadataForCompanion(Companion_3);
125
125
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
126
126
  initMetadataForCompanion(Companion_4);
@@ -142,7 +142,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
142
142
  initMetadataForInterface(Comparator, 'Comparator');
143
143
  initMetadataForObject(Unit, 'Unit');
144
144
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
145
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
145
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
146
146
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
147
147
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
148
148
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -155,7 +155,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
155
155
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
156
156
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
157
157
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
158
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
159
159
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
160
160
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
161
161
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -1299,16 +1299,19 @@ if (typeof String.prototype.startsWith === 'undefined') {
1299
1299
  function coerceAtLeast(_this__u8e3s4, minimumValue) {
1300
1300
  return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1301
1301
  }
1302
+ function coerceAtMost(_this__u8e3s4, maximumValue) {
1303
+ return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
1304
+ }
1302
1305
  function downTo(_this__u8e3s4, to) {
1303
1306
  return Companion_instance_16.y(_this__u8e3s4, to, -1);
1304
1307
  }
1305
- function coerceAtMost(_this__u8e3s4, maximumValue) {
1308
+ function coerceAtMost_0(_this__u8e3s4, maximumValue) {
1306
1309
  return _this__u8e3s4 > maximumValue ? maximumValue : _this__u8e3s4;
1307
1310
  }
1308
1311
  function coerceAtLeast_0(_this__u8e3s4, minimumValue) {
1309
1312
  return _this__u8e3s4 < minimumValue ? minimumValue : _this__u8e3s4;
1310
1313
  }
1311
- function coerceAtMost_0(_this__u8e3s4, maximumValue) {
1314
+ function coerceAtMost_1(_this__u8e3s4, maximumValue) {
1312
1315
  return compare(_this__u8e3s4, maximumValue) > 0 ? maximumValue : _this__u8e3s4;
1313
1316
  }
1314
1317
  function coerceIn_0(_this__u8e3s4, minimumValue, maximumValue) {
@@ -1434,7 +1437,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1434
1437
  var message = 'Requested character count ' + n + ' is less than zero.';
1435
1438
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
1436
1439
  }
1437
- return substring(_this__u8e3s4, 0, coerceAtMost(n, _this__u8e3s4.length));
1440
+ return substring(_this__u8e3s4, 0, coerceAtMost_0(n, _this__u8e3s4.length));
1438
1441
  }
1439
1442
  function first_2(_this__u8e3s4) {
1440
1443
  // Inline function 'kotlin.text.isEmpty' call
@@ -1467,7 +1470,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1467
1470
  var message = 'Requested character count ' + n + ' is less than zero.';
1468
1471
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
1469
1472
  }
1470
- return substring_0(_this__u8e3s4, coerceAtMost(n, _this__u8e3s4.length));
1473
+ return substring_0(_this__u8e3s4, coerceAtMost_0(n, _this__u8e3s4.length));
1471
1474
  }
1472
1475
  function dropLast_0(_this__u8e3s4, n) {
1473
1476
  // Inline function 'kotlin.require' call
@@ -5287,7 +5290,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5287
5290
  $this.t5();
5288
5291
  retry: while (true) {
5289
5292
  var hash_0 = hash($this, key);
5290
- var tentativeMaxProbeDistance = coerceAtMost(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
5293
+ var tentativeMaxProbeDistance = coerceAtMost_0(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
5291
5294
  var probeDistance = 0;
5292
5295
  while (true) {
5293
5296
  var index = $this.r6_1[hash_0];
@@ -5340,7 +5343,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5340
5343
  var hash_0 = removedHash;
5341
5344
  var hole = removedHash;
5342
5345
  var probeDistance = 0;
5343
- var patchAttemptsLeft = coerceAtMost(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
5346
+ var patchAttemptsLeft = coerceAtMost_0(imul($this.s6_1, 2), _get_hashSize__tftcho($this) / 2 | 0);
5344
5347
  while (true) {
5345
5348
  var _unary__edvuaz = hash_0;
5346
5349
  hash_0 = _unary__edvuaz - 1 | 0;
@@ -8211,7 +8214,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
8211
8214
  function formatBytesInto(_this__u8e3s4, dst, dstOffset, startIndex, endIndex) {
8212
8215
  var dstIndex = dstOffset;
8213
8216
  if (startIndex < 4) {
8214
- dstIndex = formatBytesInto_0(_this__u8e3s4.y2_1, dst, dstIndex, startIndex, coerceAtMost(endIndex, 4));
8217
+ dstIndex = formatBytesInto_0(_this__u8e3s4.y2_1, dst, dstIndex, startIndex, coerceAtMost_0(endIndex, 4));
8215
8218
  }
8216
8219
  if (endIndex > 4) {
8217
8220
  formatBytesInto_0(_this__u8e3s4.x2_1, dst, dstIndex, coerceAtLeast_0(startIndex - 4 | 0, 0), endIndex - 4 | 0);
@@ -11710,7 +11713,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11710
11713
  }
11711
11714
  function throwNotContainedAt(_this__u8e3s4, index, endIndex, part, partName) {
11712
11715
  _init_properties_HexExtensions_kt__wu8rc3();
11713
- var substring_0 = substring(_this__u8e3s4, index, coerceAtMost(index + part.length | 0, endIndex));
11716
+ var substring_0 = substring(_this__u8e3s4, index, coerceAtMost_0(index + part.length | 0, endIndex));
11714
11717
  throw NumberFormatException_init_$Create$_0('Expected ' + partName + ' "' + part + '" at index ' + index + ', but was ' + substring_0);
11715
11718
  }
11716
11719
  var properties_initialized_HexExtensions_kt_h16sbl;
@@ -12559,7 +12562,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
12559
12562
  }
12560
12563
  function indexOf_6(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last) {
12561
12564
  last = last === VOID ? false : last;
12562
- var indices = !last ? numberRangeToNumber(coerceAtLeast_0(startIndex, 0), coerceAtMost(endIndex, charSequenceLength(_this__u8e3s4))) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), coerceAtLeast_0(endIndex, 0));
12565
+ var indices = !last ? numberRangeToNumber(coerceAtLeast_0(startIndex, 0), coerceAtMost_0(endIndex, charSequenceLength(_this__u8e3s4))) : downTo(coerceAtMost_0(startIndex, get_lastIndex_3(_this__u8e3s4)), coerceAtLeast_0(endIndex, 0));
12563
12566
  var tmp;
12564
12567
  if (typeof _this__u8e3s4 === 'string') {
12565
12568
  tmp = typeof other === 'string';
@@ -12601,7 +12604,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
12601
12604
  return listOf(toString_1(_this__u8e3s4));
12602
12605
  }
12603
12606
  var isLimited = limit > 0;
12604
- var result = ArrayList_init_$Create$_0(isLimited ? coerceAtMost(limit, 10) : 10);
12607
+ var result = ArrayList_init_$Create$_0(isLimited ? coerceAtMost_0(limit, 10) : 10);
12605
12608
  $l$loop: do {
12606
12609
  var tmp2 = currentOffset;
12607
12610
  // Inline function 'kotlin.text.substring' call
@@ -12856,7 +12859,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
12856
12859
  var index = !last ? indexOf_5(_this__u8e3s4, string, startIndex) : lastIndexOf_0(_this__u8e3s4, string, startIndex);
12857
12860
  return index < 0 ? null : to(index, string);
12858
12861
  }
12859
- var indices = !last ? numberRangeToNumber(coerceAtLeast_0(startIndex, 0), charSequenceLength(_this__u8e3s4)) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), 0);
12862
+ var indices = !last ? numberRangeToNumber(coerceAtLeast_0(startIndex, 0), charSequenceLength(_this__u8e3s4)) : downTo(coerceAtMost_0(startIndex, get_lastIndex_3(_this__u8e3s4)), 0);
12860
12863
  if (typeof _this__u8e3s4 === 'string') {
12861
12864
  var inductionVariable = indices.z_1;
12862
12865
  var last_0 = indices.a1_1;
@@ -16499,136 +16502,137 @@ if (typeof String.prototype.startsWith === 'undefined') {
16499
16502
  _.$_$.td = ClosedRange;
16500
16503
  _.$_$.ud = coerceAtLeast;
16501
16504
  _.$_$.vd = coerceAtLeast_0;
16502
- _.$_$.wd = coerceAtMost_0;
16503
- _.$_$.xd = coerceAtMost;
16504
- _.$_$.yd = coerceIn;
16505
- _.$_$.zd = coerceIn_0;
16506
- _.$_$.ae = contains_5;
16507
- _.$_$.be = downTo;
16508
- _.$_$.ce = step;
16509
- _.$_$.de = until;
16510
- _.$_$.ee = createInvariantKTypeProjection;
16511
- _.$_$.fe = createKType;
16512
- _.$_$.ge = getKClassFromExpression;
16513
- _.$_$.he = getKClass;
16514
- _.$_$.ie = KClass;
16515
- _.$_$.je = KMutableProperty1;
16516
- _.$_$.ke = KProperty0;
16517
- _.$_$.le = KProperty1;
16518
- _.$_$.me = KTypeParameter;
16519
- _.$_$.ne = filter;
16520
- _.$_$.oe = firstOrNull_2;
16521
- _.$_$.pe = flatMap;
16522
- _.$_$.qe = mapNotNull;
16523
- _.$_$.re = map;
16524
- _.$_$.se = toList_2;
16525
- _.$_$.te = concatToString;
16526
- _.$_$.ue = contains_7;
16527
- _.$_$.ve = contains_8;
16528
- _.$_$.we = decodeToString;
16529
- _.$_$.xe = encodeToByteArray;
16530
- _.$_$.ye = endsWith_0;
16531
- _.$_$.ze = endsWith;
16532
- _.$_$.af = equals_0;
16533
- _.$_$.bf = first_2;
16534
- _.$_$.cf = indexOfAny;
16535
- _.$_$.df = indexOf_5;
16536
- _.$_$.ef = indexOf_4;
16537
- _.$_$.ff = isBlank;
16538
- _.$_$.gf = isHighSurrogate;
16539
- _.$_$.hf = isLowSurrogate;
16540
- _.$_$.if = isSurrogate;
16541
- _.$_$.jf = isWhitespace;
16542
- _.$_$.kf = get_lastIndex_3;
16543
- _.$_$.lf = lastIndexOf_0;
16544
- _.$_$.mf = last_2;
16545
- _.$_$.nf = padStart;
16546
- _.$_$.of = removePrefix;
16547
- _.$_$.pf = removeSuffix;
16548
- _.$_$.qf = repeat;
16549
- _.$_$.rf = replace;
16550
- _.$_$.sf = replace_0;
16551
- _.$_$.tf = single_2;
16552
- _.$_$.uf = split_0;
16553
- _.$_$.vf = split;
16554
- _.$_$.wf = startsWith;
16555
- _.$_$.xf = startsWith_1;
16556
- _.$_$.yf = substringAfter;
16557
- _.$_$.zf = substringBefore;
16558
- _.$_$.ag = substring_0;
16559
- _.$_$.bg = substring;
16560
- _.$_$.cg = take_0;
16561
- _.$_$.dg = toBooleanStrictOrNull;
16562
- _.$_$.eg = toDoubleOrNull;
16563
- _.$_$.fg = toDouble;
16564
- _.$_$.gg = toIntOrNull;
16565
- _.$_$.hg = toInt;
16566
- _.$_$.ig = toLongOrNull;
16567
- _.$_$.jg = toLong;
16568
- _.$_$.kg = toString_3;
16569
- _.$_$.lg = toUByte;
16570
- _.$_$.mg = toUInt;
16571
- _.$_$.ng = toULongOrNull;
16572
- _.$_$.og = toULong;
16573
- _.$_$.pg = toUShort;
16574
- _.$_$.qg = trimIndent;
16575
- _.$_$.rg = trimMargin;
16576
- _.$_$.sg = trim;
16577
- _.$_$.tg = Duration;
16578
- _.$_$.ug = Instant;
16579
- _.$_$.vg = toDuration_1;
16580
- _.$_$.wg = toDuration_0;
16581
- _.$_$.xg = toDuration;
16582
- _.$_$.yg = Uuid;
16583
- _.$_$.zg = ArithmeticException;
16584
- _.$_$.ah = Char;
16585
- _.$_$.bh = Comparable;
16586
- _.$_$.ch = Comparator;
16587
- _.$_$.dh = DeepRecursiveFunction;
16588
- _.$_$.eh = DeepRecursiveScope;
16589
- _.$_$.fh = Enum;
16590
- _.$_$.gh = Error_0;
16591
- _.$_$.hh = Exception;
16592
- _.$_$.ih = IllegalArgumentException;
16593
- _.$_$.jh = IllegalStateException;
16594
- _.$_$.kh = Long;
16595
- _.$_$.lh = NoSuchElementException;
16596
- _.$_$.mh = NotImplementedError;
16597
- _.$_$.nh = Pair;
16598
- _.$_$.oh = Result;
16599
- _.$_$.ph = RuntimeException;
16600
- _.$_$.qh = THROW_CCE;
16601
- _.$_$.rh = THROW_IAE;
16602
- _.$_$.sh = Triple;
16603
- _.$_$.th = UByteArray;
16604
- _.$_$.uh = UByte;
16605
- _.$_$.vh = UIntArray;
16606
- _.$_$.wh = UInt;
16607
- _.$_$.xh = ULongArray;
16608
- _.$_$.yh = ULong;
16609
- _.$_$.zh = UShortArray;
16610
- _.$_$.ai = UShort;
16611
- _.$_$.bi = Unit;
16612
- _.$_$.ci = UnsupportedOperationException;
16613
- _.$_$.di = addSuppressed;
16614
- _.$_$.ei = arrayOf;
16615
- _.$_$.fi = countTrailingZeroBits;
16616
- _.$_$.gi = createFailure;
16617
- _.$_$.hi = ensureNotNull;
16618
- _.$_$.ii = invoke;
16619
- _.$_$.ji = isFinite_0;
16620
- _.$_$.ki = isFinite;
16621
- _.$_$.li = isNaN_0;
16622
- _.$_$.mi = lazy;
16623
- _.$_$.ni = lazy_0;
16624
- _.$_$.oi = noWhenBranchMatchedException;
16625
- _.$_$.pi = plus_4;
16626
- _.$_$.qi = printStackTrace;
16627
- _.$_$.ri = stackTraceToString;
16628
- _.$_$.si = throwOnFailure;
16629
- _.$_$.ti = throwUninitializedPropertyAccessException;
16630
- _.$_$.ui = toString_0;
16631
- _.$_$.vi = to;
16505
+ _.$_$.wd = coerceAtMost;
16506
+ _.$_$.xd = coerceAtMost_1;
16507
+ _.$_$.yd = coerceAtMost_0;
16508
+ _.$_$.zd = coerceIn;
16509
+ _.$_$.ae = coerceIn_0;
16510
+ _.$_$.be = contains_5;
16511
+ _.$_$.ce = downTo;
16512
+ _.$_$.de = step;
16513
+ _.$_$.ee = until;
16514
+ _.$_$.fe = createInvariantKTypeProjection;
16515
+ _.$_$.ge = createKType;
16516
+ _.$_$.he = getKClassFromExpression;
16517
+ _.$_$.ie = getKClass;
16518
+ _.$_$.je = KClass;
16519
+ _.$_$.ke = KMutableProperty1;
16520
+ _.$_$.le = KProperty0;
16521
+ _.$_$.me = KProperty1;
16522
+ _.$_$.ne = KTypeParameter;
16523
+ _.$_$.oe = filter;
16524
+ _.$_$.pe = firstOrNull_2;
16525
+ _.$_$.qe = flatMap;
16526
+ _.$_$.re = mapNotNull;
16527
+ _.$_$.se = map;
16528
+ _.$_$.te = toList_2;
16529
+ _.$_$.ue = concatToString;
16530
+ _.$_$.ve = contains_7;
16531
+ _.$_$.we = contains_8;
16532
+ _.$_$.xe = decodeToString;
16533
+ _.$_$.ye = encodeToByteArray;
16534
+ _.$_$.ze = endsWith_0;
16535
+ _.$_$.af = endsWith;
16536
+ _.$_$.bf = equals_0;
16537
+ _.$_$.cf = first_2;
16538
+ _.$_$.df = indexOfAny;
16539
+ _.$_$.ef = indexOf_5;
16540
+ _.$_$.ff = indexOf_4;
16541
+ _.$_$.gf = isBlank;
16542
+ _.$_$.hf = isHighSurrogate;
16543
+ _.$_$.if = isLowSurrogate;
16544
+ _.$_$.jf = isSurrogate;
16545
+ _.$_$.kf = isWhitespace;
16546
+ _.$_$.lf = get_lastIndex_3;
16547
+ _.$_$.mf = lastIndexOf_0;
16548
+ _.$_$.nf = last_2;
16549
+ _.$_$.of = padStart;
16550
+ _.$_$.pf = removePrefix;
16551
+ _.$_$.qf = removeSuffix;
16552
+ _.$_$.rf = repeat;
16553
+ _.$_$.sf = replace;
16554
+ _.$_$.tf = replace_0;
16555
+ _.$_$.uf = single_2;
16556
+ _.$_$.vf = split_0;
16557
+ _.$_$.wf = split;
16558
+ _.$_$.xf = startsWith;
16559
+ _.$_$.yf = startsWith_1;
16560
+ _.$_$.zf = substringAfter;
16561
+ _.$_$.ag = substringBefore;
16562
+ _.$_$.bg = substring_0;
16563
+ _.$_$.cg = substring;
16564
+ _.$_$.dg = take_0;
16565
+ _.$_$.eg = toBooleanStrictOrNull;
16566
+ _.$_$.fg = toDoubleOrNull;
16567
+ _.$_$.gg = toDouble;
16568
+ _.$_$.hg = toIntOrNull;
16569
+ _.$_$.ig = toInt;
16570
+ _.$_$.jg = toLongOrNull;
16571
+ _.$_$.kg = toLong;
16572
+ _.$_$.lg = toString_3;
16573
+ _.$_$.mg = toUByte;
16574
+ _.$_$.ng = toUInt;
16575
+ _.$_$.og = toULongOrNull;
16576
+ _.$_$.pg = toULong;
16577
+ _.$_$.qg = toUShort;
16578
+ _.$_$.rg = trimIndent;
16579
+ _.$_$.sg = trimMargin;
16580
+ _.$_$.tg = trim;
16581
+ _.$_$.ug = Duration;
16582
+ _.$_$.vg = Instant;
16583
+ _.$_$.wg = toDuration_1;
16584
+ _.$_$.xg = toDuration_0;
16585
+ _.$_$.yg = toDuration;
16586
+ _.$_$.zg = Uuid;
16587
+ _.$_$.ah = ArithmeticException;
16588
+ _.$_$.bh = Char;
16589
+ _.$_$.ch = Comparable;
16590
+ _.$_$.dh = Comparator;
16591
+ _.$_$.eh = DeepRecursiveFunction;
16592
+ _.$_$.fh = DeepRecursiveScope;
16593
+ _.$_$.gh = Enum;
16594
+ _.$_$.hh = Error_0;
16595
+ _.$_$.ih = Exception;
16596
+ _.$_$.jh = IllegalArgumentException;
16597
+ _.$_$.kh = IllegalStateException;
16598
+ _.$_$.lh = Long;
16599
+ _.$_$.mh = NoSuchElementException;
16600
+ _.$_$.nh = NotImplementedError;
16601
+ _.$_$.oh = Pair;
16602
+ _.$_$.ph = Result;
16603
+ _.$_$.qh = RuntimeException;
16604
+ _.$_$.rh = THROW_CCE;
16605
+ _.$_$.sh = THROW_IAE;
16606
+ _.$_$.th = Triple;
16607
+ _.$_$.uh = UByteArray;
16608
+ _.$_$.vh = UByte;
16609
+ _.$_$.wh = UIntArray;
16610
+ _.$_$.xh = UInt;
16611
+ _.$_$.yh = ULongArray;
16612
+ _.$_$.zh = ULong;
16613
+ _.$_$.ai = UShortArray;
16614
+ _.$_$.bi = UShort;
16615
+ _.$_$.ci = Unit;
16616
+ _.$_$.di = UnsupportedOperationException;
16617
+ _.$_$.ei = addSuppressed;
16618
+ _.$_$.fi = arrayOf;
16619
+ _.$_$.gi = countTrailingZeroBits;
16620
+ _.$_$.hi = createFailure;
16621
+ _.$_$.ii = ensureNotNull;
16622
+ _.$_$.ji = invoke;
16623
+ _.$_$.ki = isFinite_0;
16624
+ _.$_$.li = isFinite;
16625
+ _.$_$.mi = isNaN_0;
16626
+ _.$_$.ni = lazy;
16627
+ _.$_$.oi = lazy_0;
16628
+ _.$_$.pi = noWhenBranchMatchedException;
16629
+ _.$_$.qi = plus_4;
16630
+ _.$_$.ri = printStackTrace;
16631
+ _.$_$.si = stackTraceToString;
16632
+ _.$_$.ti = throwOnFailure;
16633
+ _.$_$.ui = throwUninitializedPropertyAccessException;
16634
+ _.$_$.vi = toString_0;
16635
+ _.$_$.wi = to;
16632
16636
  //endregion
16633
16637
  return _;
16634
16638
  }));