client_plugin_logic_deb 1.8.379 → 1.8.381
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/Kosi-Kaverit-kaverit.js +13 -13
- package/Kosi-Kodein-kodein-di.js +35 -35
- package/Kotlin-DateTime-library-kotlinx-datetime.js +91 -91
- package/Logic_Debertz-client_plugin.d.ts +14 -8
- package/Logic_Debertz-client_plugin.js +1988 -1974
- package/Logic_Debertz-client_plugin.js.map +1 -1
- package/Logic_Debertz-core.js +59 -59
- package/Logic_Debertz-engine.js +316 -248
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +162 -148
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +821 -724
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +5 -5
- package/kotlin-kotlin-stdlib.js +291 -278
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +9 -9
- package/kotlinx-coroutines-core.js +75 -75
- package/kotlinx-io-kotlinx-io-core.js +30 -30
- package/kotlinx-serialization-kotlinx-serialization-core.js +77 -77
- package/kotlinx-serialization-kotlinx-serialization-json.js +89 -89
- package/ktor-ktor-client-content-negotiation.js +22 -22
- package/ktor-ktor-client-core.js +64 -64
- package/ktor-ktor-client-logging.js +23 -23
- package/ktor-ktor-events.js +5 -5
- package/ktor-ktor-http.js +70 -70
- package/ktor-ktor-io.js +50 -50
- package/ktor-ktor-serialization-kotlinx.js +15 -15
- package/ktor-ktor-serialization.js +15 -15
- package/ktor-ktor-utils.js +46 -46
- package/ktor-ktor-websockets.js +13 -13
- package/package.json +1 -1
- package/random-library-crypto-rand.js +11 -11
- package/random-library-secure-random.js +5 -5
- package/raspberry-cardgame-lib-core.js +35 -35
- package/raspberry-cardgame-lib-logger.js +13 -13
- package/raspberry-cardgame-lib-random.js +39 -39
- package/uuid.js +12 -12
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -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)
|
|
@@ -113,14 +113,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
113
113
|
}
|
|
114
114
|
initMetadataForInterface(KtMap, 'Map');
|
|
115
115
|
initMetadataForInterface(MutableIterable, 'MutableIterable');
|
|
116
|
-
initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList,
|
|
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,
|
|
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.endsWith === '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,
|
|
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.endsWith === '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, [
|
|
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);
|
|
@@ -1121,6 +1121,18 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
1121
1121
|
}
|
|
1122
1122
|
return count === 0 ? NaN : sum / count;
|
|
1123
1123
|
}
|
|
1124
|
+
function maxOrNull(_this__u8e3s4) {
|
|
1125
|
+
var iterator = _this__u8e3s4.l();
|
|
1126
|
+
if (!iterator.m())
|
|
1127
|
+
return null;
|
|
1128
|
+
var max = iterator.n();
|
|
1129
|
+
while (iterator.m()) {
|
|
1130
|
+
var e = iterator.n();
|
|
1131
|
+
if (compareTo(max, e) < 0)
|
|
1132
|
+
max = e;
|
|
1133
|
+
}
|
|
1134
|
+
return max;
|
|
1135
|
+
}
|
|
1124
1136
|
function asSequence(_this__u8e3s4) {
|
|
1125
1137
|
// Inline function 'kotlin.sequences.Sequence' call
|
|
1126
1138
|
return new asSequence$$inlined$Sequence$1(_this__u8e3s4);
|
|
@@ -16357,274 +16369,275 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
16357
16369
|
_.$_$.k8 = mapCapacity;
|
|
16358
16370
|
_.$_$.l8 = mapOf;
|
|
16359
16371
|
_.$_$.m8 = mapOf_0;
|
|
16360
|
-
_.$_$.n8 =
|
|
16361
|
-
_.$_$.o8 =
|
|
16362
|
-
_.$_$.p8 =
|
|
16363
|
-
_.$_$.q8 =
|
|
16364
|
-
_.$_$.r8 =
|
|
16365
|
-
_.$_$.s8 =
|
|
16366
|
-
_.$_$.t8 =
|
|
16367
|
-
_.$_$.u8 =
|
|
16368
|
-
_.$_$.v8 =
|
|
16369
|
-
_.$_$.w8 =
|
|
16370
|
-
_.$_$.x8 =
|
|
16371
|
-
_.$_$.y8 =
|
|
16372
|
-
_.$_$.z8 =
|
|
16373
|
-
_.$_$.a9 =
|
|
16374
|
-
_.$_$.b9 =
|
|
16375
|
-
_.$_$.c9 =
|
|
16376
|
-
_.$_$.d9 =
|
|
16377
|
-
_.$_$.e9 =
|
|
16378
|
-
_.$_$.f9 =
|
|
16379
|
-
_.$_$.g9 =
|
|
16380
|
-
_.$_$.h9 =
|
|
16381
|
-
_.$_$.i9 =
|
|
16382
|
-
_.$_$.j9 =
|
|
16383
|
-
_.$_$.k9 =
|
|
16384
|
-
_.$_$.l9 =
|
|
16385
|
-
_.$_$.m9 =
|
|
16386
|
-
_.$_$.n9 =
|
|
16387
|
-
_.$_$.o9 =
|
|
16388
|
-
_.$_$.p9 =
|
|
16389
|
-
_.$_$.q9 =
|
|
16390
|
-
_.$_$.r9 =
|
|
16391
|
-
_.$_$.s9 =
|
|
16392
|
-
_.$_$.t9 =
|
|
16393
|
-
_.$_$.u9 =
|
|
16394
|
-
_.$_$.v9 =
|
|
16395
|
-
_.$_$.w9 =
|
|
16396
|
-
_.$_$.x9 =
|
|
16397
|
-
_.$_$.y9 =
|
|
16398
|
-
_.$_$.z9 =
|
|
16399
|
-
_.$_$.aa =
|
|
16400
|
-
_.$_$.ba =
|
|
16401
|
-
_.$_$.ca =
|
|
16402
|
-
_.$_$.da =
|
|
16403
|
-
_.$_$.ea =
|
|
16404
|
-
_.$_$.fa =
|
|
16405
|
-
_.$_$.ga =
|
|
16406
|
-
_.$_$.ha =
|
|
16407
|
-
_.$_$.ia =
|
|
16408
|
-
_.$_$.ja =
|
|
16409
|
-
_.$_$.ka =
|
|
16410
|
-
_.$_$.la =
|
|
16411
|
-
_.$_$.ma =
|
|
16412
|
-
_.$_$.na =
|
|
16413
|
-
_.$_$.oa =
|
|
16414
|
-
_.$_$.pa =
|
|
16415
|
-
_.$_$.qa =
|
|
16416
|
-
_.$_$.ra =
|
|
16417
|
-
_.$_$.sa =
|
|
16418
|
-
_.$_$.ta =
|
|
16419
|
-
_.$_$.ua =
|
|
16420
|
-
_.$_$.va =
|
|
16421
|
-
_.$_$.wa =
|
|
16422
|
-
_.$_$.xa =
|
|
16423
|
-
_.$_$.ya =
|
|
16424
|
-
_.$_$.za =
|
|
16425
|
-
_.$_$.ab =
|
|
16426
|
-
_.$_$.bb =
|
|
16427
|
-
_.$_$.cb =
|
|
16428
|
-
_.$_$.db =
|
|
16429
|
-
_.$_$.eb =
|
|
16430
|
-
_.$_$.fb =
|
|
16431
|
-
_.$_$.gb =
|
|
16432
|
-
_.$_$.hb =
|
|
16433
|
-
_.$_$.ib =
|
|
16434
|
-
_.$_$.jb =
|
|
16435
|
-
_.$_$.kb =
|
|
16436
|
-
_.$_$.lb =
|
|
16437
|
-
_.$_$.mb =
|
|
16438
|
-
_.$_$.nb =
|
|
16439
|
-
_.$_$.ob =
|
|
16440
|
-
_.$_$.pb =
|
|
16441
|
-
_.$_$.qb =
|
|
16442
|
-
_.$_$.rb =
|
|
16443
|
-
_.$_$.sb =
|
|
16444
|
-
_.$_$.tb =
|
|
16445
|
-
_.$_$.ub =
|
|
16446
|
-
_.$_$.vb =
|
|
16447
|
-
_.$_$.wb =
|
|
16448
|
-
_.$_$.xb =
|
|
16449
|
-
_.$_$.yb =
|
|
16450
|
-
_.$_$.zb =
|
|
16451
|
-
_.$_$.ac =
|
|
16452
|
-
_.$_$.bc =
|
|
16453
|
-
_.$_$.cc =
|
|
16454
|
-
_.$_$.dc =
|
|
16455
|
-
_.$_$.ec =
|
|
16456
|
-
_.$_$.fc =
|
|
16457
|
-
_.$_$.gc =
|
|
16458
|
-
_.$_$.hc =
|
|
16459
|
-
_.$_$.ic =
|
|
16460
|
-
_.$_$.jc =
|
|
16461
|
-
_.$_$.kc =
|
|
16462
|
-
_.$_$.lc =
|
|
16463
|
-
_.$_$.mc =
|
|
16464
|
-
_.$_$.nc =
|
|
16465
|
-
_.$_$.oc =
|
|
16466
|
-
_.$_$.pc =
|
|
16467
|
-
_.$_$.qc =
|
|
16468
|
-
_.$_$.rc =
|
|
16469
|
-
_.$_$.sc =
|
|
16470
|
-
_.$_$.tc =
|
|
16471
|
-
_.$_$.uc =
|
|
16472
|
-
_.$_$.vc =
|
|
16473
|
-
_.$_$.wc =
|
|
16474
|
-
_.$_$.xc =
|
|
16475
|
-
_.$_$.yc =
|
|
16476
|
-
_.$_$.zc =
|
|
16477
|
-
_.$_$.ad =
|
|
16478
|
-
_.$_$.bd =
|
|
16479
|
-
_.$_$.cd =
|
|
16480
|
-
_.$_$.dd =
|
|
16481
|
-
_.$_$.ed =
|
|
16482
|
-
_.$_$.fd =
|
|
16483
|
-
_.$_$.gd =
|
|
16484
|
-
_.$_$.hd =
|
|
16485
|
-
_.$_$.id =
|
|
16486
|
-
_.$_$.jd =
|
|
16487
|
-
_.$_$.kd =
|
|
16488
|
-
_.$_$.ld =
|
|
16489
|
-
_.$_$.md =
|
|
16490
|
-
_.$_$.nd =
|
|
16491
|
-
_.$_$.od =
|
|
16492
|
-
_.$_$.pd =
|
|
16493
|
-
_.$_$.qd =
|
|
16494
|
-
_.$_$.rd =
|
|
16495
|
-
_.$_$.sd =
|
|
16496
|
-
_.$_$.td =
|
|
16497
|
-
_.$_$.ud =
|
|
16498
|
-
_.$_$.vd =
|
|
16499
|
-
_.$_$.wd =
|
|
16500
|
-
_.$_$.xd =
|
|
16501
|
-
_.$_$.yd =
|
|
16502
|
-
_.$_$.zd =
|
|
16503
|
-
_.$_$.ae =
|
|
16504
|
-
_.$_$.be =
|
|
16505
|
-
_.$_$.ce =
|
|
16506
|
-
_.$_$.de =
|
|
16507
|
-
_.$_$.ee =
|
|
16508
|
-
_.$_$.fe =
|
|
16509
|
-
_.$_$.ge =
|
|
16510
|
-
_.$_$.he =
|
|
16511
|
-
_.$_$.ie =
|
|
16512
|
-
_.$_$.je =
|
|
16513
|
-
_.$_$.ke =
|
|
16514
|
-
_.$_$.le =
|
|
16515
|
-
_.$_$.me =
|
|
16516
|
-
_.$_$.ne =
|
|
16517
|
-
_.$_$.oe =
|
|
16518
|
-
_.$_$.pe =
|
|
16519
|
-
_.$_$.qe =
|
|
16520
|
-
_.$_$.re =
|
|
16521
|
-
_.$_$.se =
|
|
16522
|
-
_.$_$.te =
|
|
16523
|
-
_.$_$.ue =
|
|
16524
|
-
_.$_$.ve =
|
|
16525
|
-
_.$_$.we =
|
|
16526
|
-
_.$_$.xe =
|
|
16527
|
-
_.$_$.ye =
|
|
16528
|
-
_.$_$.ze =
|
|
16529
|
-
_.$_$.af =
|
|
16530
|
-
_.$_$.bf =
|
|
16531
|
-
_.$_$.cf =
|
|
16532
|
-
_.$_$.df =
|
|
16533
|
-
_.$_$.ef =
|
|
16534
|
-
_.$_$.ff =
|
|
16535
|
-
_.$_$.gf =
|
|
16536
|
-
_.$_$.hf =
|
|
16537
|
-
_.$_$.if =
|
|
16538
|
-
_.$_$.jf =
|
|
16539
|
-
_.$_$.kf =
|
|
16540
|
-
_.$_$.lf =
|
|
16541
|
-
_.$_$.mf =
|
|
16542
|
-
_.$_$.nf =
|
|
16543
|
-
_.$_$.of =
|
|
16544
|
-
_.$_$.pf =
|
|
16545
|
-
_.$_$.qf =
|
|
16546
|
-
_.$_$.rf =
|
|
16547
|
-
_.$_$.sf =
|
|
16548
|
-
_.$_$.tf =
|
|
16549
|
-
_.$_$.uf =
|
|
16550
|
-
_.$_$.vf =
|
|
16551
|
-
_.$_$.wf =
|
|
16552
|
-
_.$_$.xf =
|
|
16553
|
-
_.$_$.yf =
|
|
16554
|
-
_.$_$.zf =
|
|
16555
|
-
_.$_$.ag =
|
|
16556
|
-
_.$_$.bg =
|
|
16557
|
-
_.$_$.cg =
|
|
16558
|
-
_.$_$.dg =
|
|
16559
|
-
_.$_$.eg =
|
|
16560
|
-
_.$_$.fg =
|
|
16561
|
-
_.$_$.gg =
|
|
16562
|
-
_.$_$.hg =
|
|
16563
|
-
_.$_$.ig =
|
|
16564
|
-
_.$_$.jg =
|
|
16565
|
-
_.$_$.kg =
|
|
16566
|
-
_.$_$.lg =
|
|
16567
|
-
_.$_$.mg =
|
|
16568
|
-
_.$_$.ng =
|
|
16569
|
-
_.$_$.og =
|
|
16570
|
-
_.$_$.pg =
|
|
16571
|
-
_.$_$.qg =
|
|
16572
|
-
_.$_$.rg =
|
|
16573
|
-
_.$_$.sg =
|
|
16574
|
-
_.$_$.tg =
|
|
16575
|
-
_.$_$.ug =
|
|
16576
|
-
_.$_$.vg =
|
|
16577
|
-
_.$_$.wg =
|
|
16578
|
-
_.$_$.xg =
|
|
16579
|
-
_.$_$.yg =
|
|
16580
|
-
_.$_$.zg =
|
|
16581
|
-
_.$_$.ah =
|
|
16582
|
-
_.$_$.bh =
|
|
16583
|
-
_.$_$.ch =
|
|
16584
|
-
_.$_$.dh =
|
|
16585
|
-
_.$_$.eh =
|
|
16586
|
-
_.$_$.fh =
|
|
16587
|
-
_.$_$.gh =
|
|
16588
|
-
_.$_$.hh =
|
|
16589
|
-
_.$_$.ih =
|
|
16590
|
-
_.$_$.jh =
|
|
16591
|
-
_.$_$.kh =
|
|
16592
|
-
_.$_$.lh =
|
|
16593
|
-
_.$_$.mh =
|
|
16594
|
-
_.$_$.nh =
|
|
16595
|
-
_.$_$.oh =
|
|
16596
|
-
_.$_$.ph =
|
|
16597
|
-
_.$_$.qh =
|
|
16598
|
-
_.$_$.rh =
|
|
16599
|
-
_.$_$.sh =
|
|
16600
|
-
_.$_$.th =
|
|
16601
|
-
_.$_$.uh =
|
|
16602
|
-
_.$_$.vh =
|
|
16603
|
-
_.$_$.wh =
|
|
16604
|
-
_.$_$.xh =
|
|
16605
|
-
_.$_$.yh =
|
|
16606
|
-
_.$_$.zh =
|
|
16607
|
-
_.$_$.ai =
|
|
16608
|
-
_.$_$.bi =
|
|
16609
|
-
_.$_$.ci =
|
|
16610
|
-
_.$_$.di =
|
|
16611
|
-
_.$_$.ei =
|
|
16612
|
-
_.$_$.fi =
|
|
16613
|
-
_.$_$.gi =
|
|
16614
|
-
_.$_$.hi =
|
|
16615
|
-
_.$_$.ii =
|
|
16616
|
-
_.$_$.ji =
|
|
16617
|
-
_.$_$.ki =
|
|
16618
|
-
_.$_$.li =
|
|
16619
|
-
_.$_$.mi =
|
|
16620
|
-
_.$_$.ni =
|
|
16621
|
-
_.$_$.oi =
|
|
16622
|
-
_.$_$.pi =
|
|
16623
|
-
_.$_$.qi =
|
|
16624
|
-
_.$_$.ri =
|
|
16625
|
-
_.$_$.si =
|
|
16626
|
-
_.$_$.ti =
|
|
16627
|
-
_.$_$.ui =
|
|
16372
|
+
_.$_$.n8 = maxOrNull;
|
|
16373
|
+
_.$_$.o8 = minus;
|
|
16374
|
+
_.$_$.p8 = mutableListOf;
|
|
16375
|
+
_.$_$.q8 = none;
|
|
16376
|
+
_.$_$.r8 = plus_5;
|
|
16377
|
+
_.$_$.s8 = plus_3;
|
|
16378
|
+
_.$_$.t8 = plus_2;
|
|
16379
|
+
_.$_$.u8 = plus_1;
|
|
16380
|
+
_.$_$.v8 = plus_0;
|
|
16381
|
+
_.$_$.w8 = removeFirstOrNull;
|
|
16382
|
+
_.$_$.x8 = removeLastOrNull;
|
|
16383
|
+
_.$_$.y8 = removeLast;
|
|
16384
|
+
_.$_$.z8 = reversed;
|
|
16385
|
+
_.$_$.a9 = reverse;
|
|
16386
|
+
_.$_$.b9 = setOf;
|
|
16387
|
+
_.$_$.c9 = setOf_0;
|
|
16388
|
+
_.$_$.d9 = singleOrNull;
|
|
16389
|
+
_.$_$.e9 = single_0;
|
|
16390
|
+
_.$_$.f9 = sortWith_0;
|
|
16391
|
+
_.$_$.g9 = sortedWith;
|
|
16392
|
+
_.$_$.h9 = sorted;
|
|
16393
|
+
_.$_$.i9 = sum;
|
|
16394
|
+
_.$_$.j9 = takeLast;
|
|
16395
|
+
_.$_$.k9 = take;
|
|
16396
|
+
_.$_$.l9 = toBooleanArray;
|
|
16397
|
+
_.$_$.m9 = toHashSet;
|
|
16398
|
+
_.$_$.n9 = toList_1;
|
|
16399
|
+
_.$_$.o9 = toList_0;
|
|
16400
|
+
_.$_$.p9 = toList;
|
|
16401
|
+
_.$_$.q9 = toMap_1;
|
|
16402
|
+
_.$_$.r9 = toMap;
|
|
16403
|
+
_.$_$.s9 = toMap_0;
|
|
16404
|
+
_.$_$.t9 = toMutableList_0;
|
|
16405
|
+
_.$_$.u9 = toMutableMap;
|
|
16406
|
+
_.$_$.v9 = toMutableSet;
|
|
16407
|
+
_.$_$.w9 = toSet_0;
|
|
16408
|
+
_.$_$.x9 = toTypedArray;
|
|
16409
|
+
_.$_$.y9 = withIndex;
|
|
16410
|
+
_.$_$.z9 = zip_0;
|
|
16411
|
+
_.$_$.aa = zip;
|
|
16412
|
+
_.$_$.ba = compareValuesBy;
|
|
16413
|
+
_.$_$.ca = compareValues;
|
|
16414
|
+
_.$_$.da = CancellationException;
|
|
16415
|
+
_.$_$.ea = get_COROUTINE_SUSPENDED;
|
|
16416
|
+
_.$_$.fa = createCoroutineUnintercepted;
|
|
16417
|
+
_.$_$.ga = intercepted;
|
|
16418
|
+
_.$_$.ha = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
|
|
16419
|
+
_.$_$.ia = AbstractCoroutineContextElement;
|
|
16420
|
+
_.$_$.ja = AbstractCoroutineContextKey;
|
|
16421
|
+
_.$_$.ka = get_0;
|
|
16422
|
+
_.$_$.la = minusKey_0;
|
|
16423
|
+
_.$_$.ma = ContinuationInterceptor;
|
|
16424
|
+
_.$_$.na = Continuation;
|
|
16425
|
+
_.$_$.oa = fold;
|
|
16426
|
+
_.$_$.pa = get;
|
|
16427
|
+
_.$_$.qa = minusKey;
|
|
16428
|
+
_.$_$.ra = Element;
|
|
16429
|
+
_.$_$.sa = plus;
|
|
16430
|
+
_.$_$.ta = CoroutineImpl;
|
|
16431
|
+
_.$_$.ua = startCoroutine;
|
|
16432
|
+
_.$_$.va = enumEntries;
|
|
16433
|
+
_.$_$.wa = println;
|
|
16434
|
+
_.$_$.xa = get_ONE;
|
|
16435
|
+
_.$_$.ya = add;
|
|
16436
|
+
_.$_$.za = bitwiseAnd;
|
|
16437
|
+
_.$_$.ab = bitwiseOr;
|
|
16438
|
+
_.$_$.bb = bitwiseXor;
|
|
16439
|
+
_.$_$.cb = compare;
|
|
16440
|
+
_.$_$.db = convertToByte;
|
|
16441
|
+
_.$_$.eb = convertToInt;
|
|
16442
|
+
_.$_$.fb = convertToShort;
|
|
16443
|
+
_.$_$.gb = divide;
|
|
16444
|
+
_.$_$.hb = equalsLong;
|
|
16445
|
+
_.$_$.ib = fromInt;
|
|
16446
|
+
_.$_$.jb = invert;
|
|
16447
|
+
_.$_$.kb = modulo;
|
|
16448
|
+
_.$_$.lb = multiply;
|
|
16449
|
+
_.$_$.mb = negate;
|
|
16450
|
+
_.$_$.nb = numberToLong;
|
|
16451
|
+
_.$_$.ob = shiftLeft;
|
|
16452
|
+
_.$_$.pb = shiftRightUnsigned;
|
|
16453
|
+
_.$_$.qb = shiftRight;
|
|
16454
|
+
_.$_$.rb = subtract;
|
|
16455
|
+
_.$_$.sb = toNumber;
|
|
16456
|
+
_.$_$.tb = FunctionAdapter;
|
|
16457
|
+
_.$_$.ub = anyToString;
|
|
16458
|
+
_.$_$.vb = arrayIterator;
|
|
16459
|
+
_.$_$.wb = booleanArray;
|
|
16460
|
+
_.$_$.xb = captureStack;
|
|
16461
|
+
_.$_$.yb = charArrayOf;
|
|
16462
|
+
_.$_$.zb = charArray;
|
|
16463
|
+
_.$_$.ac = charCodeAt;
|
|
16464
|
+
_.$_$.bc = charSequenceGet;
|
|
16465
|
+
_.$_$.cc = charSequenceLength;
|
|
16466
|
+
_.$_$.dc = charSequenceSubSequence;
|
|
16467
|
+
_.$_$.ec = compareTo;
|
|
16468
|
+
_.$_$.fc = defineProp;
|
|
16469
|
+
_.$_$.gc = equals;
|
|
16470
|
+
_.$_$.hc = extendThrowable;
|
|
16471
|
+
_.$_$.ic = getBooleanHashCode;
|
|
16472
|
+
_.$_$.jc = getNumberHashCode;
|
|
16473
|
+
_.$_$.kc = getPropertyCallableRef;
|
|
16474
|
+
_.$_$.lc = getStringHashCode;
|
|
16475
|
+
_.$_$.mc = hashCode_0;
|
|
16476
|
+
_.$_$.nc = initMetadataForClass;
|
|
16477
|
+
_.$_$.oc = initMetadataForCompanion;
|
|
16478
|
+
_.$_$.pc = initMetadataForCoroutine;
|
|
16479
|
+
_.$_$.qc = initMetadataForInterface;
|
|
16480
|
+
_.$_$.rc = initMetadataForLambda;
|
|
16481
|
+
_.$_$.sc = initMetadataForObject;
|
|
16482
|
+
_.$_$.tc = isArray;
|
|
16483
|
+
_.$_$.uc = isBooleanArray;
|
|
16484
|
+
_.$_$.vc = isByteArray;
|
|
16485
|
+
_.$_$.wc = isCharArray;
|
|
16486
|
+
_.$_$.xc = isCharSequence;
|
|
16487
|
+
_.$_$.yc = isDoubleArray;
|
|
16488
|
+
_.$_$.zc = isFloatArray;
|
|
16489
|
+
_.$_$.ad = isIntArray;
|
|
16490
|
+
_.$_$.bd = isInterface;
|
|
16491
|
+
_.$_$.cd = isLongArray;
|
|
16492
|
+
_.$_$.dd = isNumber;
|
|
16493
|
+
_.$_$.ed = isShortArray;
|
|
16494
|
+
_.$_$.fd = isSuspendFunction;
|
|
16495
|
+
_.$_$.gd = get_js;
|
|
16496
|
+
_.$_$.hd = longArray;
|
|
16497
|
+
_.$_$.id = numberRangeToNumber;
|
|
16498
|
+
_.$_$.jd = numberToByte;
|
|
16499
|
+
_.$_$.kd = numberToChar;
|
|
16500
|
+
_.$_$.ld = numberToInt;
|
|
16501
|
+
_.$_$.md = objectCreate;
|
|
16502
|
+
_.$_$.nd = protoOf;
|
|
16503
|
+
_.$_$.od = toByte;
|
|
16504
|
+
_.$_$.pd = toShort;
|
|
16505
|
+
_.$_$.qd = toString_1;
|
|
16506
|
+
_.$_$.rd = abs_0;
|
|
16507
|
+
_.$_$.sd = roundToInt;
|
|
16508
|
+
_.$_$.td = round;
|
|
16509
|
+
_.$_$.ud = ClosedRange;
|
|
16510
|
+
_.$_$.vd = coerceAtLeast;
|
|
16511
|
+
_.$_$.wd = coerceAtMost_0;
|
|
16512
|
+
_.$_$.xd = coerceAtMost;
|
|
16513
|
+
_.$_$.yd = coerceIn;
|
|
16514
|
+
_.$_$.zd = coerceIn_0;
|
|
16515
|
+
_.$_$.ae = contains_5;
|
|
16516
|
+
_.$_$.be = downTo;
|
|
16517
|
+
_.$_$.ce = step;
|
|
16518
|
+
_.$_$.de = until;
|
|
16519
|
+
_.$_$.ee = createInvariantKTypeProjection;
|
|
16520
|
+
_.$_$.fe = createKType;
|
|
16521
|
+
_.$_$.ge = getKClassFromExpression;
|
|
16522
|
+
_.$_$.he = getKClass;
|
|
16523
|
+
_.$_$.ie = KClass;
|
|
16524
|
+
_.$_$.je = KMutableProperty1;
|
|
16525
|
+
_.$_$.ke = KProperty0;
|
|
16526
|
+
_.$_$.le = KProperty1;
|
|
16527
|
+
_.$_$.me = KTypeParameter;
|
|
16528
|
+
_.$_$.ne = filter;
|
|
16529
|
+
_.$_$.oe = firstOrNull_2;
|
|
16530
|
+
_.$_$.pe = flatMap;
|
|
16531
|
+
_.$_$.qe = mapNotNull;
|
|
16532
|
+
_.$_$.re = map;
|
|
16533
|
+
_.$_$.se = toList_2;
|
|
16534
|
+
_.$_$.te = concatToString;
|
|
16535
|
+
_.$_$.ue = contains_7;
|
|
16536
|
+
_.$_$.ve = contains_8;
|
|
16537
|
+
_.$_$.we = decodeToString;
|
|
16538
|
+
_.$_$.xe = encodeToByteArray;
|
|
16539
|
+
_.$_$.ye = endsWith_0;
|
|
16540
|
+
_.$_$.ze = endsWith;
|
|
16541
|
+
_.$_$.af = equals_0;
|
|
16542
|
+
_.$_$.bf = first_2;
|
|
16543
|
+
_.$_$.cf = indexOfAny;
|
|
16544
|
+
_.$_$.df = indexOf_5;
|
|
16545
|
+
_.$_$.ef = indexOf_4;
|
|
16546
|
+
_.$_$.ff = isBlank;
|
|
16547
|
+
_.$_$.gf = isHighSurrogate;
|
|
16548
|
+
_.$_$.hf = isLowSurrogate;
|
|
16549
|
+
_.$_$.if = isSurrogate;
|
|
16550
|
+
_.$_$.jf = isWhitespace;
|
|
16551
|
+
_.$_$.kf = get_lastIndex_3;
|
|
16552
|
+
_.$_$.lf = lastIndexOf_0;
|
|
16553
|
+
_.$_$.mf = last_2;
|
|
16554
|
+
_.$_$.nf = padStart;
|
|
16555
|
+
_.$_$.of = removePrefix;
|
|
16556
|
+
_.$_$.pf = removeSuffix;
|
|
16557
|
+
_.$_$.qf = repeat;
|
|
16558
|
+
_.$_$.rf = replace;
|
|
16559
|
+
_.$_$.sf = replace_0;
|
|
16560
|
+
_.$_$.tf = single_2;
|
|
16561
|
+
_.$_$.uf = split_0;
|
|
16562
|
+
_.$_$.vf = split;
|
|
16563
|
+
_.$_$.wf = startsWith;
|
|
16564
|
+
_.$_$.xf = startsWith_1;
|
|
16565
|
+
_.$_$.yf = substringAfter;
|
|
16566
|
+
_.$_$.zf = substringBefore;
|
|
16567
|
+
_.$_$.ag = substring_0;
|
|
16568
|
+
_.$_$.bg = substring;
|
|
16569
|
+
_.$_$.cg = take_0;
|
|
16570
|
+
_.$_$.dg = toBooleanStrictOrNull;
|
|
16571
|
+
_.$_$.eg = toDoubleOrNull;
|
|
16572
|
+
_.$_$.fg = toDouble;
|
|
16573
|
+
_.$_$.gg = toIntOrNull;
|
|
16574
|
+
_.$_$.hg = toInt;
|
|
16575
|
+
_.$_$.ig = toLongOrNull;
|
|
16576
|
+
_.$_$.jg = toLong;
|
|
16577
|
+
_.$_$.kg = toString_3;
|
|
16578
|
+
_.$_$.lg = toUByte;
|
|
16579
|
+
_.$_$.mg = toUInt;
|
|
16580
|
+
_.$_$.ng = toULongOrNull;
|
|
16581
|
+
_.$_$.og = toULong;
|
|
16582
|
+
_.$_$.pg = toUShort;
|
|
16583
|
+
_.$_$.qg = trimIndent;
|
|
16584
|
+
_.$_$.rg = trimMargin;
|
|
16585
|
+
_.$_$.sg = trim;
|
|
16586
|
+
_.$_$.tg = Duration;
|
|
16587
|
+
_.$_$.ug = Instant;
|
|
16588
|
+
_.$_$.vg = toDuration_1;
|
|
16589
|
+
_.$_$.wg = toDuration_0;
|
|
16590
|
+
_.$_$.xg = toDuration;
|
|
16591
|
+
_.$_$.yg = Uuid;
|
|
16592
|
+
_.$_$.zg = ArithmeticException;
|
|
16593
|
+
_.$_$.ah = Char;
|
|
16594
|
+
_.$_$.bh = Comparable;
|
|
16595
|
+
_.$_$.ch = Comparator;
|
|
16596
|
+
_.$_$.dh = DeepRecursiveFunction;
|
|
16597
|
+
_.$_$.eh = DeepRecursiveScope;
|
|
16598
|
+
_.$_$.fh = Enum;
|
|
16599
|
+
_.$_$.gh = Error_0;
|
|
16600
|
+
_.$_$.hh = Exception;
|
|
16601
|
+
_.$_$.ih = IllegalArgumentException;
|
|
16602
|
+
_.$_$.jh = IllegalStateException;
|
|
16603
|
+
_.$_$.kh = Long;
|
|
16604
|
+
_.$_$.lh = NoSuchElementException;
|
|
16605
|
+
_.$_$.mh = NotImplementedError;
|
|
16606
|
+
_.$_$.nh = Pair;
|
|
16607
|
+
_.$_$.oh = Result;
|
|
16608
|
+
_.$_$.ph = RuntimeException;
|
|
16609
|
+
_.$_$.qh = THROW_CCE;
|
|
16610
|
+
_.$_$.rh = THROW_IAE;
|
|
16611
|
+
_.$_$.sh = Triple;
|
|
16612
|
+
_.$_$.th = UByteArray;
|
|
16613
|
+
_.$_$.uh = UByte;
|
|
16614
|
+
_.$_$.vh = UIntArray;
|
|
16615
|
+
_.$_$.wh = UInt;
|
|
16616
|
+
_.$_$.xh = ULongArray;
|
|
16617
|
+
_.$_$.yh = ULong;
|
|
16618
|
+
_.$_$.zh = UShortArray;
|
|
16619
|
+
_.$_$.ai = UShort;
|
|
16620
|
+
_.$_$.bi = Unit;
|
|
16621
|
+
_.$_$.ci = UnsupportedOperationException;
|
|
16622
|
+
_.$_$.di = addSuppressed;
|
|
16623
|
+
_.$_$.ei = arrayOf;
|
|
16624
|
+
_.$_$.fi = countTrailingZeroBits;
|
|
16625
|
+
_.$_$.gi = createFailure;
|
|
16626
|
+
_.$_$.hi = ensureNotNull;
|
|
16627
|
+
_.$_$.ii = invoke;
|
|
16628
|
+
_.$_$.ji = isFinite_0;
|
|
16629
|
+
_.$_$.ki = isFinite;
|
|
16630
|
+
_.$_$.li = isNaN_0;
|
|
16631
|
+
_.$_$.mi = lazy;
|
|
16632
|
+
_.$_$.ni = lazy_0;
|
|
16633
|
+
_.$_$.oi = noWhenBranchMatchedException;
|
|
16634
|
+
_.$_$.pi = plus_4;
|
|
16635
|
+
_.$_$.qi = printStackTrace;
|
|
16636
|
+
_.$_$.ri = stackTraceToString;
|
|
16637
|
+
_.$_$.si = throwOnFailure;
|
|
16638
|
+
_.$_$.ti = throwUninitializedPropertyAccessException;
|
|
16639
|
+
_.$_$.ui = toString_0;
|
|
16640
|
+
_.$_$.vi = to;
|
|
16628
16641
|
//endregion
|
|
16629
16642
|
return _;
|
|
16630
16643
|
}));
|