client_plugin_logic_deb 1.8.348 → 1.8.350

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 (37) hide show
  1. package/Kosi-Kaverit-kaverit.js +14 -14
  2. package/Kosi-Kodein-kodein-di.js +45 -45
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +87 -87
  4. package/Logic_Debertz-client_plugin.d.ts +1 -0
  5. package/Logic_Debertz-client_plugin.js +2555 -2731
  6. package/Logic_Debertz-client_plugin.js.map +1 -1
  7. package/Logic_Debertz-core.js +66 -66
  8. package/Logic_Debertz-engine.js +939 -925
  9. package/Logic_Debertz-engine.js.map +1 -1
  10. package/Logic_Debertz-game_client.js +8780 -9000
  11. package/Logic_Debertz-game_client.js.map +1 -1
  12. package/Logic_Debertz-game_server.js +770 -770
  13. package/error-library-error.js +5 -5
  14. package/kotlin-kotlin-stdlib.js +317 -323
  15. package/kotlin-kotlin-stdlib.js.map +1 -1
  16. package/kotlinx-atomicfu.js +5 -5
  17. package/kotlinx-coroutines-core.js +63 -63
  18. package/kotlinx-io-kotlinx-io-core.js +27 -27
  19. package/kotlinx-serialization-kotlinx-serialization-core.js +100 -100
  20. package/kotlinx-serialization-kotlinx-serialization-json.js +84 -84
  21. package/ktor-ktor-client-content-negotiation.js +22 -22
  22. package/ktor-ktor-client-core.js +65 -65
  23. package/ktor-ktor-client-logging.js +25 -25
  24. package/ktor-ktor-events.js +5 -5
  25. package/ktor-ktor-http.js +83 -83
  26. package/ktor-ktor-io.js +45 -45
  27. package/ktor-ktor-serialization-kotlinx.js +18 -18
  28. package/ktor-ktor-serialization.js +15 -15
  29. package/ktor-ktor-utils.js +50 -50
  30. package/ktor-ktor-websockets.js +15 -15
  31. package/package.json +1 -1
  32. package/random-library-crypto-rand.js +11 -11
  33. package/random-library-secure-random.js +5 -5
  34. package/raspberry-cardgame-lib-core.js +43 -43
  35. package/raspberry-cardgame-lib-logger.js +13 -13
  36. package/raspberry-cardgame-lib-random.js +42 -42
  37. package/uuid.js +15 -15
@@ -57,12 +57,6 @@ 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
- }
66
60
  if (typeof String.prototype.endsWith === 'undefined') {
67
61
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
68
62
  var subjectString = this.toString();
@@ -74,6 +68,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
74
68
  return lastIndex !== -1 && lastIndex === position;
75
69
  }});
76
70
  }
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)
@@ -109,8 +109,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
109
109
  }
110
110
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
111
111
  initMetadataForInterface(MutableIterable, 'MutableIterable');
112
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
113
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
112
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
113
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
114
114
  initMetadataForCompanion(Companion_1);
115
115
  initMetadataForInterface(Entry, 'Entry');
116
116
  initMetadataForCompanion(Companion_2);
@@ -140,7 +140,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
140
140
  initMetadataForInterface(Comparator, 'Comparator');
141
141
  initMetadataForObject(Unit, 'Unit');
142
142
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
143
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
143
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
144
144
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
145
145
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
146
146
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -153,7 +153,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
153
153
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
154
154
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
155
155
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
156
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
156
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
157
157
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
158
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
159
159
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -1022,11 +1022,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
1022
1022
  }
1023
1023
  return count === 0 ? NaN : sum / count;
1024
1024
  }
1025
- function any(_this__u8e3s4) {
1026
- if (isInterface(_this__u8e3s4, Collection))
1027
- return !_this__u8e3s4.p();
1028
- return _this__u8e3s4.j().k();
1029
- }
1030
1025
  function none(_this__u8e3s4) {
1031
1026
  if (isInterface(_this__u8e3s4, Collection))
1032
1027
  return _this__u8e3s4.p();
@@ -16248,314 +16243,313 @@ if (typeof String.prototype.endsWith === 'undefined') {
16248
16243
  _.$_$.y5 = asJsReadonlySetView;
16249
16244
  _.$_$.z5 = KtSet;
16250
16245
  _.$_$.a6 = addAll;
16251
- _.$_$.b6 = any;
16252
- _.$_$.c6 = arrayCopy;
16253
- _.$_$.d6 = asList;
16254
- _.$_$.e6 = asReversed;
16255
- _.$_$.f6 = asReversed_0;
16256
- _.$_$.g6 = asSequence_0;
16257
- _.$_$.h6 = asSequence;
16258
- _.$_$.i6 = average;
16259
- _.$_$.j6 = binarySearch;
16260
- _.$_$.k6 = checkBuilderCapacity;
16261
- _.$_$.l6 = checkCountOverflow;
16262
- _.$_$.m6 = checkIndexOverflow;
16263
- _.$_$.n6 = collectionSizeOrDefault;
16264
- _.$_$.o6 = contains_0;
16265
- _.$_$.p6 = contentEquals;
16266
- _.$_$.q6 = contentEquals_0;
16267
- _.$_$.r6 = contentHashCode_0;
16268
- _.$_$.s6 = contentHashCode;
16269
- _.$_$.t6 = contentToString;
16270
- _.$_$.u6 = copyOf_4;
16271
- _.$_$.v6 = copyOf_2;
16272
- _.$_$.w6 = copyOf_6;
16273
- _.$_$.x6 = copyOf;
16274
- _.$_$.y6 = copyOf_5;
16275
- _.$_$.z6 = copyOf_0;
16276
- _.$_$.a7 = copyOf_1;
16277
- _.$_$.b7 = copyOf_7;
16278
- _.$_$.c7 = copyOf_3;
16279
- _.$_$.d7 = copyToArray;
16280
- _.$_$.e7 = count;
16281
- _.$_$.f7 = distinct;
16282
- _.$_$.g7 = dropLast;
16283
- _.$_$.h7 = drop;
16284
- _.$_$.i7 = emptyList;
16285
- _.$_$.j7 = emptyMap;
16286
- _.$_$.k7 = emptySet;
16287
- _.$_$.l7 = filterNotNull_0;
16288
- _.$_$.m7 = firstOrNull_0;
16289
- _.$_$.n7 = firstOrNull_1;
16290
- _.$_$.o7 = firstOrNull;
16291
- _.$_$.p7 = first_0;
16292
- _.$_$.q7 = first_1;
16293
- _.$_$.r7 = first;
16294
- _.$_$.s7 = flatten;
16295
- _.$_$.t7 = getOrNull;
16296
- _.$_$.u7 = getOrNull_0;
16297
- _.$_$.v7 = getValue;
16298
- _.$_$.w7 = indexOf;
16299
- _.$_$.x7 = get_indices_0;
16300
- _.$_$.y7 = get_indices;
16301
- _.$_$.z7 = get_indices_1;
16302
- _.$_$.a8 = joinToString_0;
16303
- _.$_$.b8 = joinTo_0;
16304
- _.$_$.c8 = get_lastIndex_1;
16305
- _.$_$.d8 = get_lastIndex_2;
16306
- _.$_$.e8 = get_lastIndex;
16307
- _.$_$.f8 = lastOrNull;
16308
- _.$_$.g8 = last_0;
16309
- _.$_$.h8 = last;
16310
- _.$_$.i8 = listOfNotNull_0;
16311
- _.$_$.j8 = listOfNotNull;
16312
- _.$_$.k8 = listOf;
16313
- _.$_$.l8 = listOf_0;
16314
- _.$_$.m8 = mapCapacity;
16315
- _.$_$.n8 = mapOf;
16316
- _.$_$.o8 = mapOf_0;
16317
- _.$_$.p8 = minus;
16318
- _.$_$.q8 = mutableListOf;
16319
- _.$_$.r8 = none;
16320
- _.$_$.s8 = plus_5;
16321
- _.$_$.t8 = plus_3;
16322
- _.$_$.u8 = plus_2;
16323
- _.$_$.v8 = plus_1;
16324
- _.$_$.w8 = plus_0;
16325
- _.$_$.x8 = removeFirstOrNull;
16326
- _.$_$.y8 = removeLastOrNull;
16327
- _.$_$.z8 = removeLast;
16328
- _.$_$.a9 = reversed;
16329
- _.$_$.b9 = reverse;
16330
- _.$_$.c9 = setOf;
16331
- _.$_$.d9 = setOf_0;
16332
- _.$_$.e9 = singleOrNull;
16333
- _.$_$.f9 = single_0;
16334
- _.$_$.g9 = sortWith_0;
16335
- _.$_$.h9 = sortedWith;
16336
- _.$_$.i9 = sorted;
16337
- _.$_$.j9 = sum;
16338
- _.$_$.k9 = takeLast;
16339
- _.$_$.l9 = take;
16340
- _.$_$.m9 = toBooleanArray;
16341
- _.$_$.n9 = toHashSet;
16342
- _.$_$.o9 = toList_1;
16343
- _.$_$.p9 = toList_0;
16344
- _.$_$.q9 = toList;
16345
- _.$_$.r9 = toMap_2;
16346
- _.$_$.s9 = toMap;
16347
- _.$_$.t9 = toMutableList_0;
16348
- _.$_$.u9 = toMutableMap;
16349
- _.$_$.v9 = toMutableSet;
16350
- _.$_$.w9 = toSet_0;
16351
- _.$_$.x9 = toTypedArray;
16352
- _.$_$.y9 = withIndex;
16353
- _.$_$.z9 = zip_0;
16354
- _.$_$.aa = zip;
16355
- _.$_$.ba = compareValuesBy;
16356
- _.$_$.ca = compareValues;
16357
- _.$_$.da = CancellationException;
16358
- _.$_$.ea = get_COROUTINE_SUSPENDED;
16359
- _.$_$.fa = createCoroutineUnintercepted;
16360
- _.$_$.ga = intercepted;
16361
- _.$_$.ha = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16362
- _.$_$.ia = AbstractCoroutineContextElement;
16363
- _.$_$.ja = AbstractCoroutineContextKey;
16364
- _.$_$.ka = get_0;
16365
- _.$_$.la = minusKey_0;
16366
- _.$_$.ma = ContinuationInterceptor;
16367
- _.$_$.na = Continuation;
16368
- _.$_$.oa = fold;
16369
- _.$_$.pa = get;
16370
- _.$_$.qa = minusKey;
16371
- _.$_$.ra = Element;
16372
- _.$_$.sa = plus;
16373
- _.$_$.ta = CoroutineImpl;
16374
- _.$_$.ua = startCoroutine;
16375
- _.$_$.va = enumEntries;
16376
- _.$_$.wa = println;
16377
- _.$_$.xa = FunctionAdapter;
16378
- _.$_$.ya = anyToString;
16379
- _.$_$.za = arrayIterator;
16380
- _.$_$.ab = booleanArray;
16381
- _.$_$.bb = captureStack;
16382
- _.$_$.cb = charArrayOf;
16383
- _.$_$.db = charArray;
16384
- _.$_$.eb = charCodeAt;
16385
- _.$_$.fb = charSequenceGet;
16386
- _.$_$.gb = charSequenceLength;
16387
- _.$_$.hb = charSequenceSubSequence;
16388
- _.$_$.ib = compareTo;
16389
- _.$_$.jb = defineProp;
16390
- _.$_$.kb = equals;
16391
- _.$_$.lb = extendThrowable;
16392
- _.$_$.mb = getBooleanHashCode;
16393
- _.$_$.nb = getNumberHashCode;
16394
- _.$_$.ob = getPropertyCallableRef;
16395
- _.$_$.pb = getStringHashCode;
16396
- _.$_$.qb = hashCode;
16397
- _.$_$.rb = initMetadataForClass;
16398
- _.$_$.sb = initMetadataForCompanion;
16399
- _.$_$.tb = initMetadataForCoroutine;
16400
- _.$_$.ub = initMetadataForInterface;
16401
- _.$_$.vb = initMetadataForLambda;
16402
- _.$_$.wb = initMetadataForObject;
16403
- _.$_$.xb = isArray;
16404
- _.$_$.yb = isBooleanArray;
16405
- _.$_$.zb = isByteArray;
16406
- _.$_$.ac = isCharArray;
16407
- _.$_$.bc = isCharSequence;
16408
- _.$_$.cc = isDoubleArray;
16409
- _.$_$.dc = isFloatArray;
16410
- _.$_$.ec = isIntArray;
16411
- _.$_$.fc = isInterface;
16412
- _.$_$.gc = isLongArray;
16413
- _.$_$.hc = isNumber;
16414
- _.$_$.ic = isShortArray;
16415
- _.$_$.jc = isSuspendFunction;
16416
- _.$_$.kc = get_js;
16417
- _.$_$.lc = longArray;
16418
- _.$_$.mc = numberRangeToNumber;
16419
- _.$_$.nc = numberToByte;
16420
- _.$_$.oc = numberToChar;
16421
- _.$_$.pc = numberToInt;
16422
- _.$_$.qc = numberToLong;
16423
- _.$_$.rc = objectCreate;
16424
- _.$_$.sc = protoOf;
16425
- _.$_$.tc = toByte;
16426
- _.$_$.uc = toLong;
16427
- _.$_$.vc = toShort;
16428
- _.$_$.wc = toString_1;
16429
- _.$_$.xc = abs;
16430
- _.$_$.yc = roundToInt;
16431
- _.$_$.zc = round;
16432
- _.$_$.ad = ClosedRange;
16433
- _.$_$.bd = coerceAtLeast;
16434
- _.$_$.cd = coerceAtMost_0;
16435
- _.$_$.dd = coerceAtMost;
16436
- _.$_$.ed = coerceIn;
16437
- _.$_$.fd = contains_5;
16438
- _.$_$.gd = downTo;
16439
- _.$_$.hd = step;
16440
- _.$_$.id = until;
16441
- _.$_$.jd = KClass;
16442
- _.$_$.kd = KMutableProperty1;
16443
- _.$_$.ld = KProperty0;
16444
- _.$_$.md = KProperty1;
16445
- _.$_$.nd = KTypeParameter;
16446
- _.$_$.od = filter;
16447
- _.$_$.pd = firstOrNull_2;
16448
- _.$_$.qd = flatMap;
16449
- _.$_$.rd = mapNotNull;
16450
- _.$_$.sd = map;
16451
- _.$_$.td = toList_2;
16452
- _.$_$.ud = concatToString;
16453
- _.$_$.vd = contains_8;
16454
- _.$_$.wd = contains_7;
16455
- _.$_$.xd = decodeToString;
16456
- _.$_$.yd = encodeToByteArray;
16457
- _.$_$.zd = endsWith_0;
16458
- _.$_$.ae = endsWith;
16459
- _.$_$.be = equals_0;
16460
- _.$_$.ce = first_2;
16461
- _.$_$.de = indexOfAny;
16462
- _.$_$.ee = indexOf_5;
16463
- _.$_$.fe = indexOf_4;
16464
- _.$_$.ge = isBlank;
16465
- _.$_$.he = isHighSurrogate;
16466
- _.$_$.ie = isLowSurrogate;
16467
- _.$_$.je = isSurrogate;
16468
- _.$_$.ke = isWhitespace;
16469
- _.$_$.le = get_lastIndex_3;
16470
- _.$_$.me = lastIndexOf_0;
16471
- _.$_$.ne = last_2;
16472
- _.$_$.oe = padStart;
16473
- _.$_$.pe = removePrefix;
16474
- _.$_$.qe = removeSuffix;
16475
- _.$_$.re = repeat;
16476
- _.$_$.se = replace;
16477
- _.$_$.te = replace_0;
16478
- _.$_$.ue = single_2;
16479
- _.$_$.ve = split;
16480
- _.$_$.we = split_0;
16481
- _.$_$.xe = startsWith;
16482
- _.$_$.ye = startsWith_1;
16483
- _.$_$.ze = substringAfter;
16484
- _.$_$.af = substringBefore;
16485
- _.$_$.bf = substring_0;
16486
- _.$_$.cf = substring;
16487
- _.$_$.df = take_0;
16488
- _.$_$.ef = toBooleanStrictOrNull;
16489
- _.$_$.ff = toDoubleOrNull;
16490
- _.$_$.gf = toDouble;
16491
- _.$_$.hf = toIntOrNull;
16492
- _.$_$.if = toInt;
16493
- _.$_$.jf = toLongOrNull;
16494
- _.$_$.kf = toLong_0;
16495
- _.$_$.lf = toString_3;
16496
- _.$_$.mf = toUByte;
16497
- _.$_$.nf = toUInt;
16498
- _.$_$.of = toULongOrNull;
16499
- _.$_$.pf = toULong;
16500
- _.$_$.qf = toUShort;
16501
- _.$_$.rf = trimIndent;
16502
- _.$_$.sf = trimMargin;
16503
- _.$_$.tf = trim;
16504
- _.$_$.uf = Duration;
16505
- _.$_$.vf = Instant;
16506
- _.$_$.wf = toDuration_1;
16507
- _.$_$.xf = toDuration_0;
16508
- _.$_$.yf = toDuration;
16509
- _.$_$.zf = Uuid;
16510
- _.$_$.ag = ArithmeticException;
16511
- _.$_$.bg = Char;
16512
- _.$_$.cg = Comparable;
16513
- _.$_$.dg = Comparator;
16514
- _.$_$.eg = DeepRecursiveFunction;
16515
- _.$_$.fg = DeepRecursiveScope;
16516
- _.$_$.gg = Enum;
16517
- _.$_$.hg = Error_0;
16518
- _.$_$.ig = Exception;
16519
- _.$_$.jg = IllegalArgumentException;
16520
- _.$_$.kg = IllegalStateException;
16521
- _.$_$.lg = Long;
16522
- _.$_$.mg = NoSuchElementException;
16523
- _.$_$.ng = NotImplementedError;
16524
- _.$_$.og = Pair;
16525
- _.$_$.pg = Result;
16526
- _.$_$.qg = RuntimeException;
16527
- _.$_$.rg = THROW_CCE;
16528
- _.$_$.sg = THROW_IAE;
16529
- _.$_$.tg = Triple;
16530
- _.$_$.ug = UByteArray;
16531
- _.$_$.vg = UByte;
16532
- _.$_$.wg = UIntArray;
16533
- _.$_$.xg = UInt;
16534
- _.$_$.yg = ULongArray;
16535
- _.$_$.zg = ULong;
16536
- _.$_$.ah = UShortArray;
16537
- _.$_$.bh = UShort;
16538
- _.$_$.ch = Unit;
16539
- _.$_$.dh = UnsupportedOperationException;
16540
- _.$_$.eh = addSuppressed;
16541
- _.$_$.fh = arrayOf;
16542
- _.$_$.gh = countTrailingZeroBits;
16543
- _.$_$.hh = createFailure;
16544
- _.$_$.ih = ensureNotNull;
16545
- _.$_$.jh = invoke;
16546
- _.$_$.kh = isFinite;
16547
- _.$_$.lh = isFinite_0;
16548
- _.$_$.mh = isNaN_0;
16549
- _.$_$.nh = lazy_0;
16550
- _.$_$.oh = lazy;
16551
- _.$_$.ph = noWhenBranchMatchedException;
16552
- _.$_$.qh = plus_4;
16553
- _.$_$.rh = printStackTrace;
16554
- _.$_$.sh = stackTraceToString;
16555
- _.$_$.th = throwOnFailure;
16556
- _.$_$.uh = throwUninitializedPropertyAccessException;
16557
- _.$_$.vh = toString_0;
16558
- _.$_$.wh = to;
16246
+ _.$_$.b6 = arrayCopy;
16247
+ _.$_$.c6 = asList;
16248
+ _.$_$.d6 = asReversed;
16249
+ _.$_$.e6 = asReversed_0;
16250
+ _.$_$.f6 = asSequence_0;
16251
+ _.$_$.g6 = asSequence;
16252
+ _.$_$.h6 = average;
16253
+ _.$_$.i6 = binarySearch;
16254
+ _.$_$.j6 = checkBuilderCapacity;
16255
+ _.$_$.k6 = checkCountOverflow;
16256
+ _.$_$.l6 = checkIndexOverflow;
16257
+ _.$_$.m6 = collectionSizeOrDefault;
16258
+ _.$_$.n6 = contains_0;
16259
+ _.$_$.o6 = contentEquals;
16260
+ _.$_$.p6 = contentEquals_0;
16261
+ _.$_$.q6 = contentHashCode_0;
16262
+ _.$_$.r6 = contentHashCode;
16263
+ _.$_$.s6 = contentToString;
16264
+ _.$_$.t6 = copyOf_4;
16265
+ _.$_$.u6 = copyOf_2;
16266
+ _.$_$.v6 = copyOf_6;
16267
+ _.$_$.w6 = copyOf;
16268
+ _.$_$.x6 = copyOf_5;
16269
+ _.$_$.y6 = copyOf_0;
16270
+ _.$_$.z6 = copyOf_1;
16271
+ _.$_$.a7 = copyOf_7;
16272
+ _.$_$.b7 = copyOf_3;
16273
+ _.$_$.c7 = copyToArray;
16274
+ _.$_$.d7 = count;
16275
+ _.$_$.e7 = distinct;
16276
+ _.$_$.f7 = dropLast;
16277
+ _.$_$.g7 = drop;
16278
+ _.$_$.h7 = emptyList;
16279
+ _.$_$.i7 = emptyMap;
16280
+ _.$_$.j7 = emptySet;
16281
+ _.$_$.k7 = filterNotNull_0;
16282
+ _.$_$.l7 = firstOrNull_0;
16283
+ _.$_$.m7 = firstOrNull_1;
16284
+ _.$_$.n7 = firstOrNull;
16285
+ _.$_$.o7 = first_0;
16286
+ _.$_$.p7 = first_1;
16287
+ _.$_$.q7 = first;
16288
+ _.$_$.r7 = flatten;
16289
+ _.$_$.s7 = getOrNull;
16290
+ _.$_$.t7 = getOrNull_0;
16291
+ _.$_$.u7 = getValue;
16292
+ _.$_$.v7 = indexOf;
16293
+ _.$_$.w7 = get_indices_0;
16294
+ _.$_$.x7 = get_indices;
16295
+ _.$_$.y7 = get_indices_1;
16296
+ _.$_$.z7 = joinToString_0;
16297
+ _.$_$.a8 = joinTo_0;
16298
+ _.$_$.b8 = get_lastIndex_1;
16299
+ _.$_$.c8 = get_lastIndex_2;
16300
+ _.$_$.d8 = get_lastIndex;
16301
+ _.$_$.e8 = lastOrNull;
16302
+ _.$_$.f8 = last_0;
16303
+ _.$_$.g8 = last;
16304
+ _.$_$.h8 = listOfNotNull_0;
16305
+ _.$_$.i8 = listOfNotNull;
16306
+ _.$_$.j8 = listOf;
16307
+ _.$_$.k8 = listOf_0;
16308
+ _.$_$.l8 = mapCapacity;
16309
+ _.$_$.m8 = mapOf;
16310
+ _.$_$.n8 = mapOf_0;
16311
+ _.$_$.o8 = minus;
16312
+ _.$_$.p8 = mutableListOf;
16313
+ _.$_$.q8 = none;
16314
+ _.$_$.r8 = plus_5;
16315
+ _.$_$.s8 = plus_3;
16316
+ _.$_$.t8 = plus_2;
16317
+ _.$_$.u8 = plus_1;
16318
+ _.$_$.v8 = plus_0;
16319
+ _.$_$.w8 = removeFirstOrNull;
16320
+ _.$_$.x8 = removeLastOrNull;
16321
+ _.$_$.y8 = removeLast;
16322
+ _.$_$.z8 = reversed;
16323
+ _.$_$.a9 = reverse;
16324
+ _.$_$.b9 = setOf;
16325
+ _.$_$.c9 = setOf_0;
16326
+ _.$_$.d9 = singleOrNull;
16327
+ _.$_$.e9 = single_0;
16328
+ _.$_$.f9 = sortWith_0;
16329
+ _.$_$.g9 = sortedWith;
16330
+ _.$_$.h9 = sorted;
16331
+ _.$_$.i9 = sum;
16332
+ _.$_$.j9 = takeLast;
16333
+ _.$_$.k9 = take;
16334
+ _.$_$.l9 = toBooleanArray;
16335
+ _.$_$.m9 = toHashSet;
16336
+ _.$_$.n9 = toList_1;
16337
+ _.$_$.o9 = toList_0;
16338
+ _.$_$.p9 = toList;
16339
+ _.$_$.q9 = toMap_2;
16340
+ _.$_$.r9 = toMap;
16341
+ _.$_$.s9 = toMutableList_0;
16342
+ _.$_$.t9 = toMutableMap;
16343
+ _.$_$.u9 = toMutableSet;
16344
+ _.$_$.v9 = toSet_0;
16345
+ _.$_$.w9 = toTypedArray;
16346
+ _.$_$.x9 = withIndex;
16347
+ _.$_$.y9 = zip_0;
16348
+ _.$_$.z9 = zip;
16349
+ _.$_$.aa = compareValuesBy;
16350
+ _.$_$.ba = compareValues;
16351
+ _.$_$.ca = CancellationException;
16352
+ _.$_$.da = get_COROUTINE_SUSPENDED;
16353
+ _.$_$.ea = createCoroutineUnintercepted;
16354
+ _.$_$.fa = intercepted;
16355
+ _.$_$.ga = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16356
+ _.$_$.ha = AbstractCoroutineContextElement;
16357
+ _.$_$.ia = AbstractCoroutineContextKey;
16358
+ _.$_$.ja = get_0;
16359
+ _.$_$.ka = minusKey_0;
16360
+ _.$_$.la = ContinuationInterceptor;
16361
+ _.$_$.ma = Continuation;
16362
+ _.$_$.na = fold;
16363
+ _.$_$.oa = get;
16364
+ _.$_$.pa = minusKey;
16365
+ _.$_$.qa = Element;
16366
+ _.$_$.ra = plus;
16367
+ _.$_$.sa = CoroutineImpl;
16368
+ _.$_$.ta = startCoroutine;
16369
+ _.$_$.ua = enumEntries;
16370
+ _.$_$.va = println;
16371
+ _.$_$.wa = FunctionAdapter;
16372
+ _.$_$.xa = anyToString;
16373
+ _.$_$.ya = arrayIterator;
16374
+ _.$_$.za = booleanArray;
16375
+ _.$_$.ab = captureStack;
16376
+ _.$_$.bb = charArrayOf;
16377
+ _.$_$.cb = charArray;
16378
+ _.$_$.db = charCodeAt;
16379
+ _.$_$.eb = charSequenceGet;
16380
+ _.$_$.fb = charSequenceLength;
16381
+ _.$_$.gb = charSequenceSubSequence;
16382
+ _.$_$.hb = compareTo;
16383
+ _.$_$.ib = defineProp;
16384
+ _.$_$.jb = equals;
16385
+ _.$_$.kb = extendThrowable;
16386
+ _.$_$.lb = getBooleanHashCode;
16387
+ _.$_$.mb = getNumberHashCode;
16388
+ _.$_$.nb = getPropertyCallableRef;
16389
+ _.$_$.ob = getStringHashCode;
16390
+ _.$_$.pb = hashCode;
16391
+ _.$_$.qb = initMetadataForClass;
16392
+ _.$_$.rb = initMetadataForCompanion;
16393
+ _.$_$.sb = initMetadataForCoroutine;
16394
+ _.$_$.tb = initMetadataForInterface;
16395
+ _.$_$.ub = initMetadataForLambda;
16396
+ _.$_$.vb = initMetadataForObject;
16397
+ _.$_$.wb = isArray;
16398
+ _.$_$.xb = isBooleanArray;
16399
+ _.$_$.yb = isByteArray;
16400
+ _.$_$.zb = isCharArray;
16401
+ _.$_$.ac = isCharSequence;
16402
+ _.$_$.bc = isDoubleArray;
16403
+ _.$_$.cc = isFloatArray;
16404
+ _.$_$.dc = isIntArray;
16405
+ _.$_$.ec = isInterface;
16406
+ _.$_$.fc = isLongArray;
16407
+ _.$_$.gc = isNumber;
16408
+ _.$_$.hc = isShortArray;
16409
+ _.$_$.ic = isSuspendFunction;
16410
+ _.$_$.jc = get_js;
16411
+ _.$_$.kc = longArray;
16412
+ _.$_$.lc = numberRangeToNumber;
16413
+ _.$_$.mc = numberToByte;
16414
+ _.$_$.nc = numberToChar;
16415
+ _.$_$.oc = numberToInt;
16416
+ _.$_$.pc = numberToLong;
16417
+ _.$_$.qc = objectCreate;
16418
+ _.$_$.rc = protoOf;
16419
+ _.$_$.sc = toByte;
16420
+ _.$_$.tc = toLong;
16421
+ _.$_$.uc = toShort;
16422
+ _.$_$.vc = toString_1;
16423
+ _.$_$.wc = abs;
16424
+ _.$_$.xc = roundToInt;
16425
+ _.$_$.yc = round;
16426
+ _.$_$.zc = ClosedRange;
16427
+ _.$_$.ad = coerceAtLeast;
16428
+ _.$_$.bd = coerceAtMost_0;
16429
+ _.$_$.cd = coerceAtMost;
16430
+ _.$_$.dd = coerceIn;
16431
+ _.$_$.ed = contains_5;
16432
+ _.$_$.fd = downTo;
16433
+ _.$_$.gd = step;
16434
+ _.$_$.hd = until;
16435
+ _.$_$.id = KClass;
16436
+ _.$_$.jd = KMutableProperty1;
16437
+ _.$_$.kd = KProperty0;
16438
+ _.$_$.ld = KProperty1;
16439
+ _.$_$.md = KTypeParameter;
16440
+ _.$_$.nd = filter;
16441
+ _.$_$.od = firstOrNull_2;
16442
+ _.$_$.pd = flatMap;
16443
+ _.$_$.qd = mapNotNull;
16444
+ _.$_$.rd = map;
16445
+ _.$_$.sd = toList_2;
16446
+ _.$_$.td = concatToString;
16447
+ _.$_$.ud = contains_8;
16448
+ _.$_$.vd = contains_7;
16449
+ _.$_$.wd = decodeToString;
16450
+ _.$_$.xd = encodeToByteArray;
16451
+ _.$_$.yd = endsWith_0;
16452
+ _.$_$.zd = endsWith;
16453
+ _.$_$.ae = equals_0;
16454
+ _.$_$.be = first_2;
16455
+ _.$_$.ce = indexOfAny;
16456
+ _.$_$.de = indexOf_5;
16457
+ _.$_$.ee = indexOf_4;
16458
+ _.$_$.fe = isBlank;
16459
+ _.$_$.ge = isHighSurrogate;
16460
+ _.$_$.he = isLowSurrogate;
16461
+ _.$_$.ie = isSurrogate;
16462
+ _.$_$.je = isWhitespace;
16463
+ _.$_$.ke = get_lastIndex_3;
16464
+ _.$_$.le = lastIndexOf_0;
16465
+ _.$_$.me = last_2;
16466
+ _.$_$.ne = padStart;
16467
+ _.$_$.oe = removePrefix;
16468
+ _.$_$.pe = removeSuffix;
16469
+ _.$_$.qe = repeat;
16470
+ _.$_$.re = replace;
16471
+ _.$_$.se = replace_0;
16472
+ _.$_$.te = single_2;
16473
+ _.$_$.ue = split;
16474
+ _.$_$.ve = split_0;
16475
+ _.$_$.we = startsWith;
16476
+ _.$_$.xe = startsWith_1;
16477
+ _.$_$.ye = substringAfter;
16478
+ _.$_$.ze = substringBefore;
16479
+ _.$_$.af = substring_0;
16480
+ _.$_$.bf = substring;
16481
+ _.$_$.cf = take_0;
16482
+ _.$_$.df = toBooleanStrictOrNull;
16483
+ _.$_$.ef = toDoubleOrNull;
16484
+ _.$_$.ff = toDouble;
16485
+ _.$_$.gf = toIntOrNull;
16486
+ _.$_$.hf = toInt;
16487
+ _.$_$.if = toLongOrNull;
16488
+ _.$_$.jf = toLong_0;
16489
+ _.$_$.kf = toString_3;
16490
+ _.$_$.lf = toUByte;
16491
+ _.$_$.mf = toUInt;
16492
+ _.$_$.nf = toULongOrNull;
16493
+ _.$_$.of = toULong;
16494
+ _.$_$.pf = toUShort;
16495
+ _.$_$.qf = trimIndent;
16496
+ _.$_$.rf = trimMargin;
16497
+ _.$_$.sf = trim;
16498
+ _.$_$.tf = Duration;
16499
+ _.$_$.uf = Instant;
16500
+ _.$_$.vf = toDuration_1;
16501
+ _.$_$.wf = toDuration_0;
16502
+ _.$_$.xf = toDuration;
16503
+ _.$_$.yf = Uuid;
16504
+ _.$_$.zf = ArithmeticException;
16505
+ _.$_$.ag = Char;
16506
+ _.$_$.bg = Comparable;
16507
+ _.$_$.cg = Comparator;
16508
+ _.$_$.dg = DeepRecursiveFunction;
16509
+ _.$_$.eg = DeepRecursiveScope;
16510
+ _.$_$.fg = Enum;
16511
+ _.$_$.gg = Error_0;
16512
+ _.$_$.hg = Exception;
16513
+ _.$_$.ig = IllegalArgumentException;
16514
+ _.$_$.jg = IllegalStateException;
16515
+ _.$_$.kg = Long;
16516
+ _.$_$.lg = NoSuchElementException;
16517
+ _.$_$.mg = NotImplementedError;
16518
+ _.$_$.ng = Pair;
16519
+ _.$_$.og = Result;
16520
+ _.$_$.pg = RuntimeException;
16521
+ _.$_$.qg = THROW_CCE;
16522
+ _.$_$.rg = THROW_IAE;
16523
+ _.$_$.sg = Triple;
16524
+ _.$_$.tg = UByteArray;
16525
+ _.$_$.ug = UByte;
16526
+ _.$_$.vg = UIntArray;
16527
+ _.$_$.wg = UInt;
16528
+ _.$_$.xg = ULongArray;
16529
+ _.$_$.yg = ULong;
16530
+ _.$_$.zg = UShortArray;
16531
+ _.$_$.ah = UShort;
16532
+ _.$_$.bh = Unit;
16533
+ _.$_$.ch = UnsupportedOperationException;
16534
+ _.$_$.dh = addSuppressed;
16535
+ _.$_$.eh = arrayOf;
16536
+ _.$_$.fh = countTrailingZeroBits;
16537
+ _.$_$.gh = createFailure;
16538
+ _.$_$.hh = ensureNotNull;
16539
+ _.$_$.ih = invoke;
16540
+ _.$_$.jh = isFinite;
16541
+ _.$_$.kh = isFinite_0;
16542
+ _.$_$.lh = isNaN_0;
16543
+ _.$_$.mh = lazy_0;
16544
+ _.$_$.nh = lazy;
16545
+ _.$_$.oh = noWhenBranchMatchedException;
16546
+ _.$_$.ph = plus_4;
16547
+ _.$_$.qh = printStackTrace;
16548
+ _.$_$.rh = stackTraceToString;
16549
+ _.$_$.sh = throwOnFailure;
16550
+ _.$_$.th = throwUninitializedPropertyAccessException;
16551
+ _.$_$.uh = toString_0;
16552
+ _.$_$.vh = to;
16559
16553
  //endregion
16560
16554
  return _;
16561
16555
  }));