raspberry_games_server_game_logic 1.8.365 → 1.8.366

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 (34) hide show
  1. package/Kosi-Kaverit-kaverit.js +21 -21
  2. package/Kosi-Kodein-kodein-di.js +52 -52
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +124 -124
  4. package/Logic_Debertz-core.js +79 -79
  5. package/Logic_Debertz-engine.js +158 -147
  6. package/Logic_Debertz-engine.js.map +1 -1
  7. package/Logic_Debertz-game_server.js +55 -55
  8. package/error-library-error.js +5 -5
  9. package/kotlin-kotlin-stdlib.js +467 -461
  10. package/kotlin-kotlin-stdlib.js.map +1 -1
  11. package/kotlinx-atomicfu.js +9 -9
  12. package/kotlinx-coroutines-core.js +105 -105
  13. package/kotlinx-coroutines-core.js.map +1 -1
  14. package/kotlinx-io-kotlinx-io-core.js +40 -40
  15. package/kotlinx-serialization-kotlinx-serialization-core.js +180 -180
  16. package/kotlinx-serialization-kotlinx-serialization-json.js +123 -123
  17. package/ktor-ktor-client-content-negotiation.js +27 -27
  18. package/ktor-ktor-client-core.js +83 -83
  19. package/ktor-ktor-client-logging.js +28 -28
  20. package/ktor-ktor-events.js +6 -6
  21. package/ktor-ktor-http.js +98 -98
  22. package/ktor-ktor-io.js +61 -61
  23. package/ktor-ktor-serialization-kotlinx-json.js +1 -1
  24. package/ktor-ktor-serialization-kotlinx.js +27 -27
  25. package/ktor-ktor-serialization.js +16 -16
  26. package/ktor-ktor-utils.js +73 -73
  27. package/ktor-ktor-websockets.js +16 -16
  28. package/package.json +1 -1
  29. package/random-library-crypto-rand.js +12 -12
  30. package/random-library-secure-random.js +8 -8
  31. package/raspberry-cardgame-lib-core.js +52 -52
  32. package/raspberry-cardgame-lib-logger.js +14 -14
  33. package/raspberry-cardgame-lib-random.js +59 -59
  34. package/uuid.js +20 -20
@@ -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)
@@ -119,8 +119,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
119
119
  initMetadataForInterface(KtMap, 'Map');
120
120
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
121
121
  initMetadataForInterface(MutableIterable, 'MutableIterable');
122
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
123
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
122
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
123
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
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, MutableIterable, Collection]);
145
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
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, [MutableIterable, Collection, AbstractMutableCollection]);
158
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
159
159
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
160
160
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
161
161
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -6160,6 +6160,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
6160
6160
  Exception.call($this);
6161
6161
  return $this;
6162
6162
  }
6163
+ function Exception_init_$Create$_1(message, cause) {
6164
+ var tmp = Exception_init_$Init$_1(message, cause, objectCreate(protoOf(Exception)));
6165
+ captureStack(tmp, Exception_init_$Create$_1);
6166
+ return tmp;
6167
+ }
6163
6168
  function Exception_init_$Init$_2(cause, $this) {
6164
6169
  extendThrowable($this, VOID, cause);
6165
6170
  Exception.call($this);
@@ -16157,457 +16162,458 @@ if (typeof String.prototype.startsWith === 'undefined') {
16157
16162
  _.$_$.e1 = Exception_init_$Init$;
16158
16163
  _.$_$.f1 = Exception_init_$Init$_0;
16159
16164
  _.$_$.g1 = Exception_init_$Init$_1;
16160
- _.$_$.h1 = IllegalArgumentException_init_$Init$_2;
16161
- _.$_$.i1 = IllegalArgumentException_init_$Init$;
16162
- _.$_$.j1 = IllegalArgumentException_init_$Create$;
16163
- _.$_$.k1 = IllegalArgumentException_init_$Init$_0;
16164
- _.$_$.l1 = IllegalArgumentException_init_$Create$_0;
16165
- _.$_$.m1 = IllegalArgumentException_init_$Init$_1;
16166
- _.$_$.n1 = IllegalStateException_init_$Init$;
16167
- _.$_$.o1 = IllegalStateException_init_$Init$_0;
16168
- _.$_$.p1 = IllegalStateException_init_$Create$_0;
16169
- _.$_$.q1 = IllegalStateException_init_$Init$_1;
16170
- _.$_$.r1 = IllegalStateException_init_$Create$_1;
16171
- _.$_$.s1 = IndexOutOfBoundsException_init_$Create$;
16172
- _.$_$.t1 = IndexOutOfBoundsException_init_$Create$_0;
16173
- _.$_$.u1 = NoSuchElementException_init_$Create$;
16174
- _.$_$.v1 = NoSuchElementException_init_$Init$_0;
16175
- _.$_$.w1 = NoSuchElementException_init_$Create$_0;
16176
- _.$_$.x1 = RuntimeException_init_$Init$;
16177
- _.$_$.y1 = RuntimeException_init_$Init$_0;
16178
- _.$_$.z1 = RuntimeException_init_$Init$_1;
16179
- _.$_$.a2 = RuntimeException_init_$Create$_1;
16180
- _.$_$.b2 = UnsupportedOperationException_init_$Init$;
16181
- _.$_$.c2 = UnsupportedOperationException_init_$Create$_0;
16182
- _.$_$.d2 = UnsupportedOperationException_init_$Create$_1;
16183
- _.$_$.e2 = Duration__compareTo_impl_pchp0f;
16184
- _.$_$.f2 = Duration__hashCode_impl_u4exz6;
16185
- _.$_$.g2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16186
- _.$_$.h2 = Duration__plus_impl_yu9v8f;
16187
- _.$_$.i2 = Duration__times_impl_sfuzvp;
16188
- _.$_$.j2 = Duration__toIsoString_impl_9h6wsm;
16189
- _.$_$.k2 = Duration__toString_impl_8d916b;
16190
- _.$_$.l2 = _Char___init__impl__6a9atx;
16191
- _.$_$.m2 = Char__compareTo_impl_ypi4mb;
16192
- _.$_$.n2 = Char__minus_impl_a2frrh;
16193
- _.$_$.o2 = Char__minus_impl_a2frrh_0;
16194
- _.$_$.p2 = Char__plus_impl_qi7pgj;
16195
- _.$_$.q2 = Char__rangeTo_impl_tkncvp;
16196
- _.$_$.r2 = Char__toInt_impl_vasixd;
16197
- _.$_$.s2 = toString;
16198
- _.$_$.t2 = _Result___init__impl__xyqfz8;
16199
- _.$_$.u2 = Result__exceptionOrNull_impl_p6xea9;
16200
- _.$_$.v2 = _Result___get_isFailure__impl__jpiriv;
16201
- _.$_$.w2 = _Result___get_isSuccess__impl__sndoy8;
16202
- _.$_$.x2 = _Result___get_value__impl__bjfvqg;
16203
- _.$_$.y2 = _UByte___init__impl__g9hnc4;
16204
- _.$_$.z2 = _UByte___get_data__impl__jof9qr;
16205
- _.$_$.a3 = UByte__toString_impl_v72jg;
16206
- _.$_$.b3 = _UByteArray___init__impl__ip4y9n;
16207
- _.$_$.c3 = _UByteArray___init__impl__ip4y9n_0;
16208
- _.$_$.d3 = UByteArray__get_impl_t5f3hv;
16209
- _.$_$.e3 = UByteArray__set_impl_jvcicn;
16210
- _.$_$.f3 = _UByteArray___get_size__impl__h6pkdv;
16211
- _.$_$.g3 = _UByteArray___get_storage__impl__d4kctt;
16212
- _.$_$.h3 = _UInt___init__impl__l7qpdl;
16213
- _.$_$.i3 = _UInt___get_data__impl__f0vqqw;
16214
- _.$_$.j3 = UInt__toString_impl_dbgl21;
16215
- _.$_$.k3 = _UIntArray___init__impl__ghjpc6_0;
16216
- _.$_$.l3 = _UIntArray___init__impl__ghjpc6;
16217
- _.$_$.m3 = UIntArray__get_impl_gp5kza;
16218
- _.$_$.n3 = UIntArray__set_impl_7f2zu2;
16219
- _.$_$.o3 = _UIntArray___get_size__impl__r6l8ci;
16220
- _.$_$.p3 = _UIntArray___get_storage__impl__92a0v0;
16221
- _.$_$.q3 = _ULong___init__impl__c78o9k;
16222
- _.$_$.r3 = _ULong___get_data__impl__fggpzb;
16223
- _.$_$.s3 = ULong__toString_impl_f9au7k;
16224
- _.$_$.t3 = _ULongArray___init__impl__twm1l3_0;
16225
- _.$_$.u3 = _ULongArray___init__impl__twm1l3;
16226
- _.$_$.v3 = ULongArray__get_impl_pr71q9;
16227
- _.$_$.w3 = ULongArray__set_impl_z19mvh;
16228
- _.$_$.x3 = _ULongArray___get_size__impl__ju6dtr;
16229
- _.$_$.y3 = _ULongArray___get_storage__impl__28e64j;
16230
- _.$_$.z3 = _UShort___init__impl__jigrne;
16231
- _.$_$.a4 = _UShort___get_data__impl__g0245;
16232
- _.$_$.b4 = UShort__toString_impl_edaoee;
16233
- _.$_$.c4 = _UShortArray___init__impl__9b26ef_0;
16234
- _.$_$.d4 = _UShortArray___init__impl__9b26ef;
16235
- _.$_$.e4 = UShortArray__get_impl_fnbhmx;
16236
- _.$_$.f4 = UShortArray__set_impl_6d8whp;
16237
- _.$_$.g4 = _UShortArray___get_size__impl__jqto1b;
16238
- _.$_$.h4 = _UShortArray___get_storage__impl__t2jpv5;
16239
- _.$_$.i4 = Key_instance;
16240
- _.$_$.j4 = EmptyCoroutineContext_getInstance;
16241
- _.$_$.k4 = BooleanCompanionObject_instance;
16242
- _.$_$.l4 = ByteCompanionObject_instance;
16243
- _.$_$.m4 = DoubleCompanionObject_instance;
16244
- _.$_$.n4 = FloatCompanionObject_instance;
16245
- _.$_$.o4 = IntCompanionObject_instance;
16246
- _.$_$.p4 = ShortCompanionObject_instance;
16247
- _.$_$.q4 = StringCompanionObject_instance;
16248
- _.$_$.r4 = Default_getInstance;
16249
- _.$_$.s4 = PrimitiveClasses_getInstance;
16250
- _.$_$.t4 = Companion_getInstance_19;
16251
- _.$_$.u4 = System_instance;
16252
- _.$_$.v4 = Companion_getInstance_23;
16253
- _.$_$.w4 = Companion_getInstance_24;
16254
- _.$_$.x4 = Companion_getInstance_27;
16255
- _.$_$.y4 = Companion_getInstance;
16256
- _.$_$.z4 = Companion_getInstance_4;
16257
- _.$_$.a5 = Companion_instance_26;
16258
- _.$_$.b5 = Companion_getInstance_28;
16259
- _.$_$.c5 = Companion_getInstance_29;
16260
- _.$_$.d5 = Companion_getInstance_30;
16261
- _.$_$.e5 = Companion_getInstance_31;
16262
- _.$_$.f5 = Unit_instance;
16263
- _.$_$.g5 = ArrayList;
16264
- _.$_$.h5 = Collection;
16265
- _.$_$.i5 = HashMap;
16266
- _.$_$.j5 = HashSet;
16267
- _.$_$.k5 = LinkedHashMap;
16268
- _.$_$.l5 = LinkedHashSet;
16269
- _.$_$.m5 = asJsReadonlyArrayView;
16270
- _.$_$.n5 = KtList;
16271
- _.$_$.o5 = Entry;
16272
- _.$_$.p5 = asJsReadonlyMapView;
16273
- _.$_$.q5 = KtMap;
16274
- _.$_$.r5 = KtMutableList;
16275
- _.$_$.s5 = KtMutableMap;
16276
- _.$_$.t5 = KtMutableSet;
16277
- _.$_$.u5 = asJsReadonlySetView;
16278
- _.$_$.v5 = KtSet;
16279
- _.$_$.w5 = addAll;
16280
- _.$_$.x5 = arrayCopy;
16281
- _.$_$.y5 = asList;
16282
- _.$_$.z5 = asReversed;
16283
- _.$_$.a6 = asReversed_0;
16284
- _.$_$.b6 = asSequence_0;
16285
- _.$_$.c6 = asSequence;
16286
- _.$_$.d6 = average;
16287
- _.$_$.e6 = binarySearch;
16288
- _.$_$.f6 = checkBuilderCapacity;
16289
- _.$_$.g6 = checkCountOverflow;
16290
- _.$_$.h6 = checkIndexOverflow;
16291
- _.$_$.i6 = collectionSizeOrDefault;
16292
- _.$_$.j6 = contains_0;
16293
- _.$_$.k6 = contentEquals;
16294
- _.$_$.l6 = contentEquals_0;
16295
- _.$_$.m6 = contentHashCode_0;
16296
- _.$_$.n6 = contentHashCode;
16297
- _.$_$.o6 = contentToString;
16298
- _.$_$.p6 = copyOf_5;
16299
- _.$_$.q6 = copyOf_3;
16300
- _.$_$.r6 = copyOf_7;
16301
- _.$_$.s6 = copyOf_0;
16302
- _.$_$.t6 = copyOf_6;
16303
- _.$_$.u6 = copyOf_1;
16304
- _.$_$.v6 = copyOf_2;
16305
- _.$_$.w6 = copyOf;
16306
- _.$_$.x6 = copyOf_4;
16307
- _.$_$.y6 = copyToArray;
16308
- _.$_$.z6 = count;
16309
- _.$_$.a7 = distinct;
16310
- _.$_$.b7 = dropLast;
16311
- _.$_$.c7 = drop;
16312
- _.$_$.d7 = emptyList;
16313
- _.$_$.e7 = emptyMap;
16314
- _.$_$.f7 = emptySet;
16315
- _.$_$.g7 = filterNotNull_0;
16316
- _.$_$.h7 = firstOrNull_0;
16317
- _.$_$.i7 = firstOrNull_1;
16318
- _.$_$.j7 = firstOrNull;
16319
- _.$_$.k7 = first_0;
16320
- _.$_$.l7 = first_1;
16321
- _.$_$.m7 = first;
16322
- _.$_$.n7 = flatten;
16323
- _.$_$.o7 = getOrNull;
16324
- _.$_$.p7 = getOrNull_0;
16325
- _.$_$.q7 = getValue;
16326
- _.$_$.r7 = indexOf;
16327
- _.$_$.s7 = get_indices_0;
16328
- _.$_$.t7 = get_indices;
16329
- _.$_$.u7 = get_indices_1;
16330
- _.$_$.v7 = joinToString_0;
16331
- _.$_$.w7 = joinTo_0;
16332
- _.$_$.x7 = get_lastIndex;
16333
- _.$_$.y7 = get_lastIndex_2;
16334
- _.$_$.z7 = get_lastIndex_0;
16335
- _.$_$.a8 = lastOrNull;
16336
- _.$_$.b8 = last_0;
16337
- _.$_$.c8 = last;
16338
- _.$_$.d8 = listOfNotNull_0;
16339
- _.$_$.e8 = listOfNotNull;
16340
- _.$_$.f8 = listOf;
16341
- _.$_$.g8 = listOf_0;
16342
- _.$_$.h8 = mapCapacity;
16343
- _.$_$.i8 = mapOf;
16344
- _.$_$.j8 = mapOf_0;
16345
- _.$_$.k8 = minus;
16346
- _.$_$.l8 = mutableListOf;
16347
- _.$_$.m8 = plus_5;
16348
- _.$_$.n8 = plus_3;
16349
- _.$_$.o8 = plus_2;
16350
- _.$_$.p8 = plus_0;
16351
- _.$_$.q8 = plus_1;
16352
- _.$_$.r8 = removeFirstOrNull;
16353
- _.$_$.s8 = removeLastOrNull;
16354
- _.$_$.t8 = removeLast;
16355
- _.$_$.u8 = reversed;
16356
- _.$_$.v8 = reverse;
16357
- _.$_$.w8 = setOf;
16358
- _.$_$.x8 = setOf_0;
16359
- _.$_$.y8 = singleOrNull;
16360
- _.$_$.z8 = single_0;
16361
- _.$_$.a9 = sortWith_0;
16362
- _.$_$.b9 = sortedWith;
16363
- _.$_$.c9 = sorted;
16364
- _.$_$.d9 = sum;
16365
- _.$_$.e9 = takeLast;
16366
- _.$_$.f9 = take;
16367
- _.$_$.g9 = toBooleanArray;
16368
- _.$_$.h9 = toHashSet;
16369
- _.$_$.i9 = toList_1;
16370
- _.$_$.j9 = toList_0;
16371
- _.$_$.k9 = toList;
16372
- _.$_$.l9 = toMap_2;
16373
- _.$_$.m9 = toMap;
16374
- _.$_$.n9 = toMutableList_0;
16375
- _.$_$.o9 = toMutableMap;
16376
- _.$_$.p9 = toMutableSet;
16377
- _.$_$.q9 = toSet_0;
16378
- _.$_$.r9 = toTypedArray;
16379
- _.$_$.s9 = withIndex;
16380
- _.$_$.t9 = zip_0;
16381
- _.$_$.u9 = zip;
16382
- _.$_$.v9 = compareValuesBy;
16383
- _.$_$.w9 = compareValues;
16384
- _.$_$.x9 = CancellationException;
16385
- _.$_$.y9 = get_COROUTINE_SUSPENDED;
16386
- _.$_$.z9 = createCoroutineUnintercepted;
16387
- _.$_$.aa = intercepted;
16388
- _.$_$.ba = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16389
- _.$_$.ca = AbstractCoroutineContextElement;
16390
- _.$_$.da = AbstractCoroutineContextKey;
16391
- _.$_$.ea = get_0;
16392
- _.$_$.fa = minusKey_0;
16393
- _.$_$.ga = ContinuationInterceptor;
16394
- _.$_$.ha = Continuation;
16395
- _.$_$.ia = fold;
16396
- _.$_$.ja = get;
16397
- _.$_$.ka = minusKey;
16398
- _.$_$.la = Element;
16399
- _.$_$.ma = plus;
16400
- _.$_$.na = CoroutineImpl;
16401
- _.$_$.oa = startCoroutine;
16402
- _.$_$.pa = enumEntries;
16403
- _.$_$.qa = println;
16404
- _.$_$.ra = get_ONE;
16405
- _.$_$.sa = add;
16406
- _.$_$.ta = bitwiseAnd;
16407
- _.$_$.ua = bitwiseOr;
16408
- _.$_$.va = bitwiseXor;
16409
- _.$_$.wa = compare;
16410
- _.$_$.xa = convertToByte;
16411
- _.$_$.ya = convertToInt;
16412
- _.$_$.za = convertToShort;
16413
- _.$_$.ab = divide;
16414
- _.$_$.bb = equalsLong;
16415
- _.$_$.cb = fromInt;
16416
- _.$_$.db = invert;
16417
- _.$_$.eb = modulo;
16418
- _.$_$.fb = multiply;
16419
- _.$_$.gb = negate;
16420
- _.$_$.hb = numberToLong;
16421
- _.$_$.ib = shiftLeft;
16422
- _.$_$.jb = shiftRightUnsigned;
16423
- _.$_$.kb = shiftRight;
16424
- _.$_$.lb = subtract;
16425
- _.$_$.mb = toNumber;
16426
- _.$_$.nb = FunctionAdapter;
16427
- _.$_$.ob = anyToString;
16428
- _.$_$.pb = arrayIterator;
16429
- _.$_$.qb = booleanArray;
16430
- _.$_$.rb = captureStack;
16431
- _.$_$.sb = charArrayOf;
16432
- _.$_$.tb = charArray;
16433
- _.$_$.ub = charCodeAt;
16434
- _.$_$.vb = charSequenceGet;
16435
- _.$_$.wb = charSequenceLength;
16436
- _.$_$.xb = charSequenceSubSequence;
16437
- _.$_$.yb = compareTo;
16438
- _.$_$.zb = defineProp;
16439
- _.$_$.ac = equals;
16440
- _.$_$.bc = extendThrowable;
16441
- _.$_$.cc = getBooleanHashCode;
16442
- _.$_$.dc = getNumberHashCode;
16443
- _.$_$.ec = getPropertyCallableRef;
16444
- _.$_$.fc = getStringHashCode;
16445
- _.$_$.gc = hashCode_0;
16446
- _.$_$.hc = initMetadataForClass;
16447
- _.$_$.ic = initMetadataForCompanion;
16448
- _.$_$.jc = initMetadataForCoroutine;
16449
- _.$_$.kc = initMetadataForInterface;
16450
- _.$_$.lc = initMetadataForLambda;
16451
- _.$_$.mc = initMetadataForObject;
16452
- _.$_$.nc = isArray;
16453
- _.$_$.oc = isBooleanArray;
16454
- _.$_$.pc = isByteArray;
16455
- _.$_$.qc = isCharArray;
16456
- _.$_$.rc = isCharSequence;
16457
- _.$_$.sc = isDoubleArray;
16458
- _.$_$.tc = isFloatArray;
16459
- _.$_$.uc = isIntArray;
16460
- _.$_$.vc = isInterface;
16461
- _.$_$.wc = isLongArray;
16462
- _.$_$.xc = isNumber;
16463
- _.$_$.yc = isShortArray;
16464
- _.$_$.zc = isSuspendFunction;
16465
- _.$_$.ad = get_js;
16466
- _.$_$.bd = longArray;
16467
- _.$_$.cd = numberRangeToNumber;
16468
- _.$_$.dd = numberToByte;
16469
- _.$_$.ed = numberToChar;
16470
- _.$_$.fd = numberToInt;
16471
- _.$_$.gd = objectCreate;
16472
- _.$_$.hd = protoOf;
16473
- _.$_$.id = toByte;
16474
- _.$_$.jd = toShort;
16475
- _.$_$.kd = toString_1;
16476
- _.$_$.ld = abs_0;
16477
- _.$_$.md = roundToInt;
16478
- _.$_$.nd = round;
16479
- _.$_$.od = ClosedRange;
16480
- _.$_$.pd = coerceAtLeast;
16481
- _.$_$.qd = coerceAtLeast_0;
16482
- _.$_$.rd = coerceAtMost_0;
16483
- _.$_$.sd = coerceAtMost;
16484
- _.$_$.td = coerceIn;
16485
- _.$_$.ud = coerceIn_0;
16486
- _.$_$.vd = contains_5;
16487
- _.$_$.wd = downTo;
16488
- _.$_$.xd = step;
16489
- _.$_$.yd = until;
16490
- _.$_$.zd = createInvariantKTypeProjection;
16491
- _.$_$.ae = createKType;
16492
- _.$_$.be = getKClassFromExpression;
16493
- _.$_$.ce = getKClass;
16494
- _.$_$.de = KClass;
16495
- _.$_$.ee = KMutableProperty1;
16496
- _.$_$.fe = KProperty0;
16497
- _.$_$.ge = KProperty1;
16498
- _.$_$.he = KTypeParameter;
16499
- _.$_$.ie = filter;
16500
- _.$_$.je = firstOrNull_2;
16501
- _.$_$.ke = flatMap;
16502
- _.$_$.le = mapNotNull;
16503
- _.$_$.me = map;
16504
- _.$_$.ne = toList_2;
16505
- _.$_$.oe = concatToString;
16506
- _.$_$.pe = contains_7;
16507
- _.$_$.qe = contains_8;
16508
- _.$_$.re = decodeToString;
16509
- _.$_$.se = encodeToByteArray;
16510
- _.$_$.te = endsWith_0;
16511
- _.$_$.ue = endsWith;
16512
- _.$_$.ve = equals_0;
16513
- _.$_$.we = first_2;
16514
- _.$_$.xe = indexOfAny;
16515
- _.$_$.ye = indexOf_5;
16516
- _.$_$.ze = indexOf_4;
16517
- _.$_$.af = isBlank;
16518
- _.$_$.bf = isHighSurrogate;
16519
- _.$_$.cf = isLowSurrogate;
16520
- _.$_$.df = isSurrogate;
16521
- _.$_$.ef = isWhitespace;
16522
- _.$_$.ff = get_lastIndex_3;
16523
- _.$_$.gf = lastIndexOf_0;
16524
- _.$_$.hf = last_2;
16525
- _.$_$.if = padStart;
16526
- _.$_$.jf = removePrefix;
16527
- _.$_$.kf = removeSuffix;
16528
- _.$_$.lf = repeat;
16529
- _.$_$.mf = replace;
16530
- _.$_$.nf = replace_0;
16531
- _.$_$.of = single_2;
16532
- _.$_$.pf = split_0;
16533
- _.$_$.qf = split;
16534
- _.$_$.rf = startsWith;
16535
- _.$_$.sf = startsWith_1;
16536
- _.$_$.tf = substringAfter;
16537
- _.$_$.uf = substringBefore;
16538
- _.$_$.vf = substring_0;
16539
- _.$_$.wf = substring;
16540
- _.$_$.xf = take_0;
16541
- _.$_$.yf = toBooleanStrictOrNull;
16542
- _.$_$.zf = toDoubleOrNull;
16543
- _.$_$.ag = toDouble;
16544
- _.$_$.bg = toIntOrNull;
16545
- _.$_$.cg = toInt;
16546
- _.$_$.dg = toLongOrNull;
16547
- _.$_$.eg = toLong;
16548
- _.$_$.fg = toString_3;
16549
- _.$_$.gg = toUByte;
16550
- _.$_$.hg = toUInt;
16551
- _.$_$.ig = toULongOrNull;
16552
- _.$_$.jg = toULong;
16553
- _.$_$.kg = toUShort;
16554
- _.$_$.lg = trimIndent;
16555
- _.$_$.mg = trimMargin;
16556
- _.$_$.ng = trim;
16557
- _.$_$.og = Duration;
16558
- _.$_$.pg = Instant;
16559
- _.$_$.qg = toDuration_1;
16560
- _.$_$.rg = toDuration_0;
16561
- _.$_$.sg = toDuration;
16562
- _.$_$.tg = Uuid;
16563
- _.$_$.ug = ArithmeticException;
16564
- _.$_$.vg = Char;
16565
- _.$_$.wg = Comparable;
16566
- _.$_$.xg = Comparator;
16567
- _.$_$.yg = DeepRecursiveFunction;
16568
- _.$_$.zg = DeepRecursiveScope;
16569
- _.$_$.ah = Enum;
16570
- _.$_$.bh = Error_0;
16571
- _.$_$.ch = Exception;
16572
- _.$_$.dh = IllegalArgumentException;
16573
- _.$_$.eh = IllegalStateException;
16574
- _.$_$.fh = Long;
16575
- _.$_$.gh = NoSuchElementException;
16576
- _.$_$.hh = Pair;
16577
- _.$_$.ih = Result;
16578
- _.$_$.jh = RuntimeException;
16579
- _.$_$.kh = THROW_CCE;
16580
- _.$_$.lh = THROW_IAE;
16581
- _.$_$.mh = Triple;
16582
- _.$_$.nh = UByteArray;
16583
- _.$_$.oh = UByte;
16584
- _.$_$.ph = UIntArray;
16585
- _.$_$.qh = UInt;
16586
- _.$_$.rh = ULongArray;
16587
- _.$_$.sh = ULong;
16588
- _.$_$.th = UShortArray;
16589
- _.$_$.uh = UShort;
16590
- _.$_$.vh = Unit;
16591
- _.$_$.wh = UnsupportedOperationException;
16592
- _.$_$.xh = addSuppressed;
16593
- _.$_$.yh = arrayOf;
16594
- _.$_$.zh = countTrailingZeroBits;
16595
- _.$_$.ai = createFailure;
16596
- _.$_$.bi = ensureNotNull;
16597
- _.$_$.ci = invoke;
16598
- _.$_$.di = isFinite_0;
16599
- _.$_$.ei = isFinite;
16600
- _.$_$.fi = isNaN_0;
16601
- _.$_$.gi = lazy;
16602
- _.$_$.hi = lazy_0;
16603
- _.$_$.ii = noWhenBranchMatchedException;
16604
- _.$_$.ji = plus_4;
16605
- _.$_$.ki = printStackTrace;
16606
- _.$_$.li = stackTraceToString;
16607
- _.$_$.mi = throwOnFailure;
16608
- _.$_$.ni = throwUninitializedPropertyAccessException;
16609
- _.$_$.oi = toString_0;
16610
- _.$_$.pi = to;
16165
+ _.$_$.h1 = Exception_init_$Create$_1;
16166
+ _.$_$.i1 = IllegalArgumentException_init_$Init$_2;
16167
+ _.$_$.j1 = IllegalArgumentException_init_$Init$;
16168
+ _.$_$.k1 = IllegalArgumentException_init_$Create$;
16169
+ _.$_$.l1 = IllegalArgumentException_init_$Init$_0;
16170
+ _.$_$.m1 = IllegalArgumentException_init_$Create$_0;
16171
+ _.$_$.n1 = IllegalArgumentException_init_$Init$_1;
16172
+ _.$_$.o1 = IllegalStateException_init_$Init$;
16173
+ _.$_$.p1 = IllegalStateException_init_$Init$_0;
16174
+ _.$_$.q1 = IllegalStateException_init_$Create$_0;
16175
+ _.$_$.r1 = IllegalStateException_init_$Init$_1;
16176
+ _.$_$.s1 = IllegalStateException_init_$Create$_1;
16177
+ _.$_$.t1 = IndexOutOfBoundsException_init_$Create$;
16178
+ _.$_$.u1 = IndexOutOfBoundsException_init_$Create$_0;
16179
+ _.$_$.v1 = NoSuchElementException_init_$Create$;
16180
+ _.$_$.w1 = NoSuchElementException_init_$Init$_0;
16181
+ _.$_$.x1 = NoSuchElementException_init_$Create$_0;
16182
+ _.$_$.y1 = RuntimeException_init_$Init$;
16183
+ _.$_$.z1 = RuntimeException_init_$Init$_0;
16184
+ _.$_$.a2 = RuntimeException_init_$Init$_1;
16185
+ _.$_$.b2 = RuntimeException_init_$Create$_1;
16186
+ _.$_$.c2 = UnsupportedOperationException_init_$Init$;
16187
+ _.$_$.d2 = UnsupportedOperationException_init_$Create$_0;
16188
+ _.$_$.e2 = UnsupportedOperationException_init_$Create$_1;
16189
+ _.$_$.f2 = Duration__compareTo_impl_pchp0f;
16190
+ _.$_$.g2 = Duration__hashCode_impl_u4exz6;
16191
+ _.$_$.h2 = _Duration___get_inWholeMilliseconds__impl__msfiry;
16192
+ _.$_$.i2 = Duration__plus_impl_yu9v8f;
16193
+ _.$_$.j2 = Duration__times_impl_sfuzvp;
16194
+ _.$_$.k2 = Duration__toIsoString_impl_9h6wsm;
16195
+ _.$_$.l2 = Duration__toString_impl_8d916b;
16196
+ _.$_$.m2 = _Char___init__impl__6a9atx;
16197
+ _.$_$.n2 = Char__compareTo_impl_ypi4mb;
16198
+ _.$_$.o2 = Char__minus_impl_a2frrh;
16199
+ _.$_$.p2 = Char__minus_impl_a2frrh_0;
16200
+ _.$_$.q2 = Char__plus_impl_qi7pgj;
16201
+ _.$_$.r2 = Char__rangeTo_impl_tkncvp;
16202
+ _.$_$.s2 = Char__toInt_impl_vasixd;
16203
+ _.$_$.t2 = toString;
16204
+ _.$_$.u2 = _Result___init__impl__xyqfz8;
16205
+ _.$_$.v2 = Result__exceptionOrNull_impl_p6xea9;
16206
+ _.$_$.w2 = _Result___get_isFailure__impl__jpiriv;
16207
+ _.$_$.x2 = _Result___get_isSuccess__impl__sndoy8;
16208
+ _.$_$.y2 = _Result___get_value__impl__bjfvqg;
16209
+ _.$_$.z2 = _UByte___init__impl__g9hnc4;
16210
+ _.$_$.a3 = _UByte___get_data__impl__jof9qr;
16211
+ _.$_$.b3 = UByte__toString_impl_v72jg;
16212
+ _.$_$.c3 = _UByteArray___init__impl__ip4y9n;
16213
+ _.$_$.d3 = _UByteArray___init__impl__ip4y9n_0;
16214
+ _.$_$.e3 = UByteArray__get_impl_t5f3hv;
16215
+ _.$_$.f3 = UByteArray__set_impl_jvcicn;
16216
+ _.$_$.g3 = _UByteArray___get_size__impl__h6pkdv;
16217
+ _.$_$.h3 = _UByteArray___get_storage__impl__d4kctt;
16218
+ _.$_$.i3 = _UInt___init__impl__l7qpdl;
16219
+ _.$_$.j3 = _UInt___get_data__impl__f0vqqw;
16220
+ _.$_$.k3 = UInt__toString_impl_dbgl21;
16221
+ _.$_$.l3 = _UIntArray___init__impl__ghjpc6_0;
16222
+ _.$_$.m3 = _UIntArray___init__impl__ghjpc6;
16223
+ _.$_$.n3 = UIntArray__get_impl_gp5kza;
16224
+ _.$_$.o3 = UIntArray__set_impl_7f2zu2;
16225
+ _.$_$.p3 = _UIntArray___get_size__impl__r6l8ci;
16226
+ _.$_$.q3 = _UIntArray___get_storage__impl__92a0v0;
16227
+ _.$_$.r3 = _ULong___init__impl__c78o9k;
16228
+ _.$_$.s3 = _ULong___get_data__impl__fggpzb;
16229
+ _.$_$.t3 = ULong__toString_impl_f9au7k;
16230
+ _.$_$.u3 = _ULongArray___init__impl__twm1l3_0;
16231
+ _.$_$.v3 = _ULongArray___init__impl__twm1l3;
16232
+ _.$_$.w3 = ULongArray__get_impl_pr71q9;
16233
+ _.$_$.x3 = ULongArray__set_impl_z19mvh;
16234
+ _.$_$.y3 = _ULongArray___get_size__impl__ju6dtr;
16235
+ _.$_$.z3 = _ULongArray___get_storage__impl__28e64j;
16236
+ _.$_$.a4 = _UShort___init__impl__jigrne;
16237
+ _.$_$.b4 = _UShort___get_data__impl__g0245;
16238
+ _.$_$.c4 = UShort__toString_impl_edaoee;
16239
+ _.$_$.d4 = _UShortArray___init__impl__9b26ef_0;
16240
+ _.$_$.e4 = _UShortArray___init__impl__9b26ef;
16241
+ _.$_$.f4 = UShortArray__get_impl_fnbhmx;
16242
+ _.$_$.g4 = UShortArray__set_impl_6d8whp;
16243
+ _.$_$.h4 = _UShortArray___get_size__impl__jqto1b;
16244
+ _.$_$.i4 = _UShortArray___get_storage__impl__t2jpv5;
16245
+ _.$_$.j4 = Key_instance;
16246
+ _.$_$.k4 = EmptyCoroutineContext_getInstance;
16247
+ _.$_$.l4 = BooleanCompanionObject_instance;
16248
+ _.$_$.m4 = ByteCompanionObject_instance;
16249
+ _.$_$.n4 = DoubleCompanionObject_instance;
16250
+ _.$_$.o4 = FloatCompanionObject_instance;
16251
+ _.$_$.p4 = IntCompanionObject_instance;
16252
+ _.$_$.q4 = ShortCompanionObject_instance;
16253
+ _.$_$.r4 = StringCompanionObject_instance;
16254
+ _.$_$.s4 = Default_getInstance;
16255
+ _.$_$.t4 = PrimitiveClasses_getInstance;
16256
+ _.$_$.u4 = Companion_getInstance_19;
16257
+ _.$_$.v4 = System_instance;
16258
+ _.$_$.w4 = Companion_getInstance_23;
16259
+ _.$_$.x4 = Companion_getInstance_24;
16260
+ _.$_$.y4 = Companion_getInstance_27;
16261
+ _.$_$.z4 = Companion_getInstance;
16262
+ _.$_$.a5 = Companion_getInstance_4;
16263
+ _.$_$.b5 = Companion_instance_26;
16264
+ _.$_$.c5 = Companion_getInstance_28;
16265
+ _.$_$.d5 = Companion_getInstance_29;
16266
+ _.$_$.e5 = Companion_getInstance_30;
16267
+ _.$_$.f5 = Companion_getInstance_31;
16268
+ _.$_$.g5 = Unit_instance;
16269
+ _.$_$.h5 = ArrayList;
16270
+ _.$_$.i5 = Collection;
16271
+ _.$_$.j5 = HashMap;
16272
+ _.$_$.k5 = HashSet;
16273
+ _.$_$.l5 = LinkedHashMap;
16274
+ _.$_$.m5 = LinkedHashSet;
16275
+ _.$_$.n5 = asJsReadonlyArrayView;
16276
+ _.$_$.o5 = KtList;
16277
+ _.$_$.p5 = Entry;
16278
+ _.$_$.q5 = asJsReadonlyMapView;
16279
+ _.$_$.r5 = KtMap;
16280
+ _.$_$.s5 = KtMutableList;
16281
+ _.$_$.t5 = KtMutableMap;
16282
+ _.$_$.u5 = KtMutableSet;
16283
+ _.$_$.v5 = asJsReadonlySetView;
16284
+ _.$_$.w5 = KtSet;
16285
+ _.$_$.x5 = addAll;
16286
+ _.$_$.y5 = arrayCopy;
16287
+ _.$_$.z5 = asList;
16288
+ _.$_$.a6 = asReversed;
16289
+ _.$_$.b6 = asReversed_0;
16290
+ _.$_$.c6 = asSequence_0;
16291
+ _.$_$.d6 = asSequence;
16292
+ _.$_$.e6 = average;
16293
+ _.$_$.f6 = binarySearch;
16294
+ _.$_$.g6 = checkBuilderCapacity;
16295
+ _.$_$.h6 = checkCountOverflow;
16296
+ _.$_$.i6 = checkIndexOverflow;
16297
+ _.$_$.j6 = collectionSizeOrDefault;
16298
+ _.$_$.k6 = contains_0;
16299
+ _.$_$.l6 = contentEquals;
16300
+ _.$_$.m6 = contentEquals_0;
16301
+ _.$_$.n6 = contentHashCode_0;
16302
+ _.$_$.o6 = contentHashCode;
16303
+ _.$_$.p6 = contentToString;
16304
+ _.$_$.q6 = copyOf_5;
16305
+ _.$_$.r6 = copyOf_3;
16306
+ _.$_$.s6 = copyOf_7;
16307
+ _.$_$.t6 = copyOf_0;
16308
+ _.$_$.u6 = copyOf_6;
16309
+ _.$_$.v6 = copyOf_1;
16310
+ _.$_$.w6 = copyOf_2;
16311
+ _.$_$.x6 = copyOf;
16312
+ _.$_$.y6 = copyOf_4;
16313
+ _.$_$.z6 = copyToArray;
16314
+ _.$_$.a7 = count;
16315
+ _.$_$.b7 = distinct;
16316
+ _.$_$.c7 = dropLast;
16317
+ _.$_$.d7 = drop;
16318
+ _.$_$.e7 = emptyList;
16319
+ _.$_$.f7 = emptyMap;
16320
+ _.$_$.g7 = emptySet;
16321
+ _.$_$.h7 = filterNotNull_0;
16322
+ _.$_$.i7 = firstOrNull_0;
16323
+ _.$_$.j7 = firstOrNull_1;
16324
+ _.$_$.k7 = firstOrNull;
16325
+ _.$_$.l7 = first_0;
16326
+ _.$_$.m7 = first_1;
16327
+ _.$_$.n7 = first;
16328
+ _.$_$.o7 = flatten;
16329
+ _.$_$.p7 = getOrNull;
16330
+ _.$_$.q7 = getOrNull_0;
16331
+ _.$_$.r7 = getValue;
16332
+ _.$_$.s7 = indexOf;
16333
+ _.$_$.t7 = get_indices_0;
16334
+ _.$_$.u7 = get_indices;
16335
+ _.$_$.v7 = get_indices_1;
16336
+ _.$_$.w7 = joinToString_0;
16337
+ _.$_$.x7 = joinTo_0;
16338
+ _.$_$.y7 = get_lastIndex;
16339
+ _.$_$.z7 = get_lastIndex_2;
16340
+ _.$_$.a8 = get_lastIndex_0;
16341
+ _.$_$.b8 = lastOrNull;
16342
+ _.$_$.c8 = last_0;
16343
+ _.$_$.d8 = last;
16344
+ _.$_$.e8 = listOfNotNull_0;
16345
+ _.$_$.f8 = listOfNotNull;
16346
+ _.$_$.g8 = listOf;
16347
+ _.$_$.h8 = listOf_0;
16348
+ _.$_$.i8 = mapCapacity;
16349
+ _.$_$.j8 = mapOf;
16350
+ _.$_$.k8 = mapOf_0;
16351
+ _.$_$.l8 = minus;
16352
+ _.$_$.m8 = mutableListOf;
16353
+ _.$_$.n8 = plus_5;
16354
+ _.$_$.o8 = plus_3;
16355
+ _.$_$.p8 = plus_2;
16356
+ _.$_$.q8 = plus_0;
16357
+ _.$_$.r8 = plus_1;
16358
+ _.$_$.s8 = removeFirstOrNull;
16359
+ _.$_$.t8 = removeLastOrNull;
16360
+ _.$_$.u8 = removeLast;
16361
+ _.$_$.v8 = reversed;
16362
+ _.$_$.w8 = reverse;
16363
+ _.$_$.x8 = setOf;
16364
+ _.$_$.y8 = setOf_0;
16365
+ _.$_$.z8 = singleOrNull;
16366
+ _.$_$.a9 = single_0;
16367
+ _.$_$.b9 = sortWith_0;
16368
+ _.$_$.c9 = sortedWith;
16369
+ _.$_$.d9 = sorted;
16370
+ _.$_$.e9 = sum;
16371
+ _.$_$.f9 = takeLast;
16372
+ _.$_$.g9 = take;
16373
+ _.$_$.h9 = toBooleanArray;
16374
+ _.$_$.i9 = toHashSet;
16375
+ _.$_$.j9 = toList_1;
16376
+ _.$_$.k9 = toList_0;
16377
+ _.$_$.l9 = toList;
16378
+ _.$_$.m9 = toMap_2;
16379
+ _.$_$.n9 = toMap;
16380
+ _.$_$.o9 = toMutableList_0;
16381
+ _.$_$.p9 = toMutableMap;
16382
+ _.$_$.q9 = toMutableSet;
16383
+ _.$_$.r9 = toSet_0;
16384
+ _.$_$.s9 = toTypedArray;
16385
+ _.$_$.t9 = withIndex;
16386
+ _.$_$.u9 = zip_0;
16387
+ _.$_$.v9 = zip;
16388
+ _.$_$.w9 = compareValuesBy;
16389
+ _.$_$.x9 = compareValues;
16390
+ _.$_$.y9 = CancellationException;
16391
+ _.$_$.z9 = get_COROUTINE_SUSPENDED;
16392
+ _.$_$.aa = createCoroutineUnintercepted;
16393
+ _.$_$.ba = intercepted;
16394
+ _.$_$.ca = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
16395
+ _.$_$.da = AbstractCoroutineContextElement;
16396
+ _.$_$.ea = AbstractCoroutineContextKey;
16397
+ _.$_$.fa = get_0;
16398
+ _.$_$.ga = minusKey_0;
16399
+ _.$_$.ha = ContinuationInterceptor;
16400
+ _.$_$.ia = Continuation;
16401
+ _.$_$.ja = fold;
16402
+ _.$_$.ka = get;
16403
+ _.$_$.la = minusKey;
16404
+ _.$_$.ma = Element;
16405
+ _.$_$.na = plus;
16406
+ _.$_$.oa = CoroutineImpl;
16407
+ _.$_$.pa = startCoroutine;
16408
+ _.$_$.qa = enumEntries;
16409
+ _.$_$.ra = println;
16410
+ _.$_$.sa = get_ONE;
16411
+ _.$_$.ta = add;
16412
+ _.$_$.ua = bitwiseAnd;
16413
+ _.$_$.va = bitwiseOr;
16414
+ _.$_$.wa = bitwiseXor;
16415
+ _.$_$.xa = compare;
16416
+ _.$_$.ya = convertToByte;
16417
+ _.$_$.za = convertToInt;
16418
+ _.$_$.ab = convertToShort;
16419
+ _.$_$.bb = divide;
16420
+ _.$_$.cb = equalsLong;
16421
+ _.$_$.db = fromInt;
16422
+ _.$_$.eb = invert;
16423
+ _.$_$.fb = modulo;
16424
+ _.$_$.gb = multiply;
16425
+ _.$_$.hb = negate;
16426
+ _.$_$.ib = numberToLong;
16427
+ _.$_$.jb = shiftLeft;
16428
+ _.$_$.kb = shiftRightUnsigned;
16429
+ _.$_$.lb = shiftRight;
16430
+ _.$_$.mb = subtract;
16431
+ _.$_$.nb = toNumber;
16432
+ _.$_$.ob = FunctionAdapter;
16433
+ _.$_$.pb = anyToString;
16434
+ _.$_$.qb = arrayIterator;
16435
+ _.$_$.rb = booleanArray;
16436
+ _.$_$.sb = captureStack;
16437
+ _.$_$.tb = charArrayOf;
16438
+ _.$_$.ub = charArray;
16439
+ _.$_$.vb = charCodeAt;
16440
+ _.$_$.wb = charSequenceGet;
16441
+ _.$_$.xb = charSequenceLength;
16442
+ _.$_$.yb = charSequenceSubSequence;
16443
+ _.$_$.zb = compareTo;
16444
+ _.$_$.ac = defineProp;
16445
+ _.$_$.bc = equals;
16446
+ _.$_$.cc = extendThrowable;
16447
+ _.$_$.dc = getBooleanHashCode;
16448
+ _.$_$.ec = getNumberHashCode;
16449
+ _.$_$.fc = getPropertyCallableRef;
16450
+ _.$_$.gc = getStringHashCode;
16451
+ _.$_$.hc = hashCode_0;
16452
+ _.$_$.ic = initMetadataForClass;
16453
+ _.$_$.jc = initMetadataForCompanion;
16454
+ _.$_$.kc = initMetadataForCoroutine;
16455
+ _.$_$.lc = initMetadataForInterface;
16456
+ _.$_$.mc = initMetadataForLambda;
16457
+ _.$_$.nc = initMetadataForObject;
16458
+ _.$_$.oc = isArray;
16459
+ _.$_$.pc = isBooleanArray;
16460
+ _.$_$.qc = isByteArray;
16461
+ _.$_$.rc = isCharArray;
16462
+ _.$_$.sc = isCharSequence;
16463
+ _.$_$.tc = isDoubleArray;
16464
+ _.$_$.uc = isFloatArray;
16465
+ _.$_$.vc = isIntArray;
16466
+ _.$_$.wc = isInterface;
16467
+ _.$_$.xc = isLongArray;
16468
+ _.$_$.yc = isNumber;
16469
+ _.$_$.zc = isShortArray;
16470
+ _.$_$.ad = isSuspendFunction;
16471
+ _.$_$.bd = get_js;
16472
+ _.$_$.cd = longArray;
16473
+ _.$_$.dd = numberRangeToNumber;
16474
+ _.$_$.ed = numberToByte;
16475
+ _.$_$.fd = numberToChar;
16476
+ _.$_$.gd = numberToInt;
16477
+ _.$_$.hd = objectCreate;
16478
+ _.$_$.id = protoOf;
16479
+ _.$_$.jd = toByte;
16480
+ _.$_$.kd = toShort;
16481
+ _.$_$.ld = toString_1;
16482
+ _.$_$.md = abs_0;
16483
+ _.$_$.nd = roundToInt;
16484
+ _.$_$.od = round;
16485
+ _.$_$.pd = ClosedRange;
16486
+ _.$_$.qd = coerceAtLeast;
16487
+ _.$_$.rd = coerceAtLeast_0;
16488
+ _.$_$.sd = coerceAtMost_0;
16489
+ _.$_$.td = coerceAtMost;
16490
+ _.$_$.ud = coerceIn;
16491
+ _.$_$.vd = coerceIn_0;
16492
+ _.$_$.wd = contains_5;
16493
+ _.$_$.xd = downTo;
16494
+ _.$_$.yd = step;
16495
+ _.$_$.zd = until;
16496
+ _.$_$.ae = createInvariantKTypeProjection;
16497
+ _.$_$.be = createKType;
16498
+ _.$_$.ce = getKClassFromExpression;
16499
+ _.$_$.de = getKClass;
16500
+ _.$_$.ee = KClass;
16501
+ _.$_$.fe = KMutableProperty1;
16502
+ _.$_$.ge = KProperty0;
16503
+ _.$_$.he = KProperty1;
16504
+ _.$_$.ie = KTypeParameter;
16505
+ _.$_$.je = filter;
16506
+ _.$_$.ke = firstOrNull_2;
16507
+ _.$_$.le = flatMap;
16508
+ _.$_$.me = mapNotNull;
16509
+ _.$_$.ne = map;
16510
+ _.$_$.oe = toList_2;
16511
+ _.$_$.pe = concatToString;
16512
+ _.$_$.qe = contains_7;
16513
+ _.$_$.re = contains_8;
16514
+ _.$_$.se = decodeToString;
16515
+ _.$_$.te = encodeToByteArray;
16516
+ _.$_$.ue = endsWith_0;
16517
+ _.$_$.ve = endsWith;
16518
+ _.$_$.we = equals_0;
16519
+ _.$_$.xe = first_2;
16520
+ _.$_$.ye = indexOfAny;
16521
+ _.$_$.ze = indexOf_5;
16522
+ _.$_$.af = indexOf_4;
16523
+ _.$_$.bf = isBlank;
16524
+ _.$_$.cf = isHighSurrogate;
16525
+ _.$_$.df = isLowSurrogate;
16526
+ _.$_$.ef = isSurrogate;
16527
+ _.$_$.ff = isWhitespace;
16528
+ _.$_$.gf = get_lastIndex_3;
16529
+ _.$_$.hf = lastIndexOf_0;
16530
+ _.$_$.if = last_2;
16531
+ _.$_$.jf = padStart;
16532
+ _.$_$.kf = removePrefix;
16533
+ _.$_$.lf = removeSuffix;
16534
+ _.$_$.mf = repeat;
16535
+ _.$_$.nf = replace;
16536
+ _.$_$.of = replace_0;
16537
+ _.$_$.pf = single_2;
16538
+ _.$_$.qf = split_0;
16539
+ _.$_$.rf = split;
16540
+ _.$_$.sf = startsWith;
16541
+ _.$_$.tf = startsWith_1;
16542
+ _.$_$.uf = substringAfter;
16543
+ _.$_$.vf = substringBefore;
16544
+ _.$_$.wf = substring_0;
16545
+ _.$_$.xf = substring;
16546
+ _.$_$.yf = take_0;
16547
+ _.$_$.zf = toBooleanStrictOrNull;
16548
+ _.$_$.ag = toDoubleOrNull;
16549
+ _.$_$.bg = toDouble;
16550
+ _.$_$.cg = toIntOrNull;
16551
+ _.$_$.dg = toInt;
16552
+ _.$_$.eg = toLongOrNull;
16553
+ _.$_$.fg = toLong;
16554
+ _.$_$.gg = toString_3;
16555
+ _.$_$.hg = toUByte;
16556
+ _.$_$.ig = toUInt;
16557
+ _.$_$.jg = toULongOrNull;
16558
+ _.$_$.kg = toULong;
16559
+ _.$_$.lg = toUShort;
16560
+ _.$_$.mg = trimIndent;
16561
+ _.$_$.ng = trimMargin;
16562
+ _.$_$.og = trim;
16563
+ _.$_$.pg = Duration;
16564
+ _.$_$.qg = Instant;
16565
+ _.$_$.rg = toDuration_1;
16566
+ _.$_$.sg = toDuration_0;
16567
+ _.$_$.tg = toDuration;
16568
+ _.$_$.ug = Uuid;
16569
+ _.$_$.vg = ArithmeticException;
16570
+ _.$_$.wg = Char;
16571
+ _.$_$.xg = Comparable;
16572
+ _.$_$.yg = Comparator;
16573
+ _.$_$.zg = DeepRecursiveFunction;
16574
+ _.$_$.ah = DeepRecursiveScope;
16575
+ _.$_$.bh = Enum;
16576
+ _.$_$.ch = Error_0;
16577
+ _.$_$.dh = Exception;
16578
+ _.$_$.eh = IllegalArgumentException;
16579
+ _.$_$.fh = IllegalStateException;
16580
+ _.$_$.gh = Long;
16581
+ _.$_$.hh = NoSuchElementException;
16582
+ _.$_$.ih = Pair;
16583
+ _.$_$.jh = Result;
16584
+ _.$_$.kh = RuntimeException;
16585
+ _.$_$.lh = THROW_CCE;
16586
+ _.$_$.mh = THROW_IAE;
16587
+ _.$_$.nh = Triple;
16588
+ _.$_$.oh = UByteArray;
16589
+ _.$_$.ph = UByte;
16590
+ _.$_$.qh = UIntArray;
16591
+ _.$_$.rh = UInt;
16592
+ _.$_$.sh = ULongArray;
16593
+ _.$_$.th = ULong;
16594
+ _.$_$.uh = UShortArray;
16595
+ _.$_$.vh = UShort;
16596
+ _.$_$.wh = Unit;
16597
+ _.$_$.xh = UnsupportedOperationException;
16598
+ _.$_$.yh = addSuppressed;
16599
+ _.$_$.zh = arrayOf;
16600
+ _.$_$.ai = countTrailingZeroBits;
16601
+ _.$_$.bi = createFailure;
16602
+ _.$_$.ci = ensureNotNull;
16603
+ _.$_$.di = invoke;
16604
+ _.$_$.ei = isFinite_0;
16605
+ _.$_$.fi = isFinite;
16606
+ _.$_$.gi = isNaN_0;
16607
+ _.$_$.hi = lazy;
16608
+ _.$_$.ii = lazy_0;
16609
+ _.$_$.ji = noWhenBranchMatchedException;
16610
+ _.$_$.ki = plus_4;
16611
+ _.$_$.li = printStackTrace;
16612
+ _.$_$.mi = stackTraceToString;
16613
+ _.$_$.ni = throwOnFailure;
16614
+ _.$_$.oi = throwUninitializedPropertyAccessException;
16615
+ _.$_$.pi = toString_0;
16616
+ _.$_$.qi = to;
16611
16617
  //endregion
16612
16618
  return _;
16613
16619
  }));