client_plugin_logic_deb 1.8.500 → 1.8.503

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 (41) hide show
  1. package/Kosi-Kaverit-kaverit.js +13 -13
  2. package/Kosi-Kodein-kodein-di.js +63 -63
  3. package/Kotlin-DateTime-library-kotlinx-datetime.js +94 -94
  4. package/Logic_Debertz-ai_module.js +311 -311
  5. package/Logic_Debertz-bot_engine.js +779 -779
  6. package/Logic_Debertz-client_plugin.js +2066 -2066
  7. package/Logic_Debertz-core.js +355 -355
  8. package/Logic_Debertz-core.js.map +1 -1
  9. package/Logic_Debertz-engine.js +12205 -12205
  10. package/Logic_Debertz-engine.js.map +1 -1
  11. package/Logic_Debertz-game_client.js +6745 -6737
  12. package/Logic_Debertz-game_client.js.map +1 -1
  13. package/Logic_Debertz-game_server.js +1120 -1120
  14. package/error-library-error.js +5 -5
  15. package/kotlin-kotlin-stdlib.js +463 -433
  16. package/kotlin-kotlin-stdlib.js.map +1 -1
  17. package/kotlinx-atomicfu.js +9 -9
  18. package/kotlinx-coroutines-core.js +100 -100
  19. package/kotlinx-coroutines-core.js.map +1 -1
  20. package/kotlinx-io-kotlinx-io-bytestring.js +11 -11
  21. package/kotlinx-io-kotlinx-io-core.js +37 -37
  22. package/kotlinx-serialization-kotlinx-serialization-core.js +105 -105
  23. package/kotlinx-serialization-kotlinx-serialization-json.js +127 -127
  24. package/ktor-ktor-client-content-negotiation.js +25 -25
  25. package/ktor-ktor-client-core.js +86 -86
  26. package/ktor-ktor-client-logging.js +43 -43
  27. package/ktor-ktor-events.js +5 -5
  28. package/ktor-ktor-http-cio.js +48 -48
  29. package/ktor-ktor-http.js +82 -82
  30. package/ktor-ktor-io.js +51 -51
  31. package/ktor-ktor-serialization-kotlinx.js +17 -17
  32. package/ktor-ktor-serialization.js +14 -14
  33. package/ktor-ktor-utils.js +91 -91
  34. package/ktor-ktor-websockets.js +13 -13
  35. package/package.json +1 -1
  36. package/random-library-crypto-rand.js +11 -11
  37. package/random-library-secure-random.js +5 -5
  38. package/raspberry-cardgame-lib-core.js +47 -47
  39. package/raspberry-cardgame-lib-logger.js +12 -12
  40. package/raspberry-cardgame-lib-random.js +47 -47
  41. package/uuid.js +14 -14
@@ -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)
@@ -120,14 +120,14 @@ if (typeof String.prototype.startsWith === 'undefined') {
120
120
  }
121
121
  initMetadataForInterface(KtMap, 'Map');
122
122
  initMetadataForInterface(MutableIterable, 'MutableIterable');
123
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
123
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
124
124
  initMetadataForCompanion(Companion_2);
125
125
  function asJsReadonlySetView() {
126
126
  return createJsReadonlySetViewFrom(this);
127
127
  }
128
128
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
129
129
  initMetadataForInterface(KtMutableMap, 'MutableMap', VOID, VOID, [KtMap]);
130
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
130
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
131
131
  initMetadataForCompanion(Companion_3);
132
132
  initMetadataForClass(Enum, 'Enum', VOID, VOID, [Comparable]);
133
133
  initMetadataForCompanion(Companion_4);
@@ -149,7 +149,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
149
149
  initMetadataForInterface(Comparator, 'Comparator');
150
150
  initMetadataForObject(Unit, 'Unit');
151
151
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
152
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
152
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
153
153
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
154
154
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
155
155
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -162,7 +162,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
162
162
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
163
163
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
164
164
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
165
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
165
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
166
166
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
167
167
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
168
168
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -1736,6 +1736,26 @@ if (typeof String.prototype.startsWith === 'undefined') {
1736
1736
  function filterNotNull$lambda(it) {
1737
1737
  return it == null;
1738
1738
  }
1739
+ function minus_0(_this__u8e3s4, elements) {
1740
+ var other = convertToListIfNotCollection(elements);
1741
+ if (other.r())
1742
+ return toSet_0(_this__u8e3s4);
1743
+ if (isInterface(other, KtSet)) {
1744
+ // Inline function 'kotlin.collections.filterNotTo' call
1745
+ var destination = LinkedHashSet_init_$Create$();
1746
+ var _iterator__ex2g4s = _this__u8e3s4.t();
1747
+ while (_iterator__ex2g4s.u()) {
1748
+ var element = _iterator__ex2g4s.v();
1749
+ if (!other.z1(element)) {
1750
+ destination.e1(element);
1751
+ }
1752
+ }
1753
+ return destination;
1754
+ }
1755
+ var result = LinkedHashSet_init_$Create$_0(_this__u8e3s4);
1756
+ result.a2(other);
1757
+ return result;
1758
+ }
1739
1759
  function plus_3(_this__u8e3s4, elements) {
1740
1760
  var tmp0_safe_receiver = collectionSizeOrNull(elements);
1741
1761
  var tmp;
@@ -1855,7 +1875,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1855
1875
  return _get_value__a43j40($this) - _get_value__a43j40(other) | 0;
1856
1876
  }
1857
1877
  function Char__compareTo_impl_ypi4mb_0($this, other) {
1858
- return Char__compareTo_impl_ypi4mb($this.z1_1, other instanceof Char ? other.z1_1 : THROW_CCE());
1878
+ return Char__compareTo_impl_ypi4mb($this.b2_1, other instanceof Char ? other.b2_1 : THROW_CCE());
1859
1879
  }
1860
1880
  function Char__plus_impl_qi7pgj($this, other) {
1861
1881
  return numberToChar(_get_value__a43j40($this) + other | 0);
@@ -1879,23 +1899,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
1879
1899
  function Char__equals_impl_x6719k($this, other) {
1880
1900
  if (!(other instanceof Char))
1881
1901
  return false;
1882
- return _get_value__a43j40($this) === _get_value__a43j40(other.z1_1);
1902
+ return _get_value__a43j40($this) === _get_value__a43j40(other.b2_1);
1883
1903
  }
1884
1904
  function Char__hashCode_impl_otmys($this) {
1885
1905
  return _get_value__a43j40($this);
1886
1906
  }
1887
1907
  function Companion() {
1888
1908
  Companion_instance = this;
1889
- this.a2_1 = _Char___init__impl__6a9atx(0);
1890
- this.b2_1 = _Char___init__impl__6a9atx(65535);
1891
- this.c2_1 = _Char___init__impl__6a9atx(55296);
1892
- this.d2_1 = _Char___init__impl__6a9atx(56319);
1893
- this.e2_1 = _Char___init__impl__6a9atx(56320);
1894
- this.f2_1 = _Char___init__impl__6a9atx(57343);
1895
- this.g2_1 = _Char___init__impl__6a9atx(55296);
1909
+ this.c2_1 = _Char___init__impl__6a9atx(0);
1910
+ this.d2_1 = _Char___init__impl__6a9atx(65535);
1911
+ this.e2_1 = _Char___init__impl__6a9atx(55296);
1912
+ this.f2_1 = _Char___init__impl__6a9atx(56319);
1913
+ this.g2_1 = _Char___init__impl__6a9atx(56320);
1896
1914
  this.h2_1 = _Char___init__impl__6a9atx(57343);
1897
- this.i2_1 = 2;
1898
- this.j2_1 = 16;
1915
+ this.i2_1 = _Char___init__impl__6a9atx(55296);
1916
+ this.j2_1 = _Char___init__impl__6a9atx(57343);
1917
+ this.k2_1 = 2;
1918
+ this.l2_1 = 16;
1899
1919
  }
1900
1920
  var Companion_instance;
1901
1921
  function Companion_getInstance() {
@@ -1905,24 +1925,24 @@ if (typeof String.prototype.startsWith === 'undefined') {
1905
1925
  }
1906
1926
  function Char(value) {
1907
1927
  Companion_getInstance();
1908
- this.z1_1 = value;
1928
+ this.b2_1 = value;
1909
1929
  }
1910
- protoOf(Char).k2 = function (other) {
1911
- return Char__compareTo_impl_ypi4mb(this.z1_1, other);
1930
+ protoOf(Char).m2 = function (other) {
1931
+ return Char__compareTo_impl_ypi4mb(this.b2_1, other);
1912
1932
  };
1913
1933
  protoOf(Char).d = function (other) {
1914
1934
  return Char__compareTo_impl_ypi4mb_0(this, other);
1915
1935
  };
1916
1936
  protoOf(Char).toString = function () {
1917
- return toString(this.z1_1);
1937
+ return toString(this.b2_1);
1918
1938
  };
1919
1939
  protoOf(Char).equals = function (other) {
1920
- return Char__equals_impl_x6719k(this.z1_1, other);
1940
+ return Char__equals_impl_x6719k(this.b2_1, other);
1921
1941
  };
1922
1942
  protoOf(Char).hashCode = function () {
1923
- return Char__hashCode_impl_otmys(this.z1_1);
1943
+ return Char__hashCode_impl_otmys(this.b2_1);
1924
1944
  };
1925
- protoOf(Companion_0).l2 = function (array) {
1945
+ protoOf(Companion_0).n2 = function (array) {
1926
1946
  return createListFrom(array);
1927
1947
  };
1928
1948
  function Companion_0() {
@@ -1932,7 +1952,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1932
1952
  return Companion_instance_0;
1933
1953
  }
1934
1954
  function fromJsArray(array) {
1935
- return Companion_instance_0.l2(array);
1955
+ return Companion_instance_0.n2(array);
1936
1956
  }
1937
1957
  function KtList() {
1938
1958
  }
@@ -1940,7 +1960,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1940
1960
  }
1941
1961
  function Entry() {
1942
1962
  }
1943
- protoOf(Companion_1).s2 = function (map) {
1963
+ protoOf(Companion_1).t2 = function (map) {
1944
1964
  return createMapFrom(map);
1945
1965
  };
1946
1966
  function Companion_1() {
@@ -1950,7 +1970,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
1950
1970
  return Companion_instance_1;
1951
1971
  }
1952
1972
  function fromJsMap(map) {
1953
- return Companion_instance_1.s2(map);
1973
+ return Companion_instance_1.t2(map);
1954
1974
  }
1955
1975
  function KtMap() {
1956
1976
  }
@@ -3022,12 +3042,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
3022
3042
  }
3023
3043
  function createJsReadonlyMapViewFrom$lambda_0($map) {
3024
3044
  return function (k) {
3025
- return $map.v2(k);
3045
+ return $map.w2(k);
3026
3046
  };
3027
3047
  }
3028
3048
  function createJsReadonlyMapViewFrom$lambda_1($map) {
3029
3049
  return function (k) {
3030
- return $map.t2(k);
3050
+ return $map.u2(k);
3031
3051
  };
3032
3052
  }
3033
3053
  function UNSUPPORTED_OPERATION$ref_2() {
@@ -3056,12 +3076,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
3056
3076
  }
3057
3077
  function createJsReadonlyMapViewFrom$lambda_2($map) {
3058
3078
  return function () {
3059
- return createJsIteratorFrom($map.w2().t());
3079
+ return createJsIteratorFrom($map.x2().t());
3060
3080
  };
3061
3081
  }
3062
3082
  function createJsReadonlyMapViewFrom$lambda_3($map) {
3063
3083
  return function () {
3064
- return createJsIteratorFrom($map.x2().t());
3084
+ return createJsIteratorFrom($map.y2().t());
3065
3085
  };
3066
3086
  }
3067
3087
  function createJsReadonlyMapViewFrom$lambda$lambda(it) {
@@ -3111,7 +3131,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
3111
3131
  }
3112
3132
  function createJsReadonlySetViewFrom$lambda_0($set) {
3113
3133
  return function (v) {
3114
- return $set.m2(v);
3134
+ return $set.z1(v);
3115
3135
  };
3116
3136
  }
3117
3137
  function createJsReadonlySetViewFrom$lambda_1($set) {
@@ -4465,13 +4485,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
4465
4485
  }
4466
4486
  function AbstractMutableCollection$removeAll$lambda($elements) {
4467
4487
  return function (it) {
4468
- return $elements.m2(it);
4488
+ return $elements.z1(it);
4469
4489
  };
4470
4490
  }
4471
4491
  function AbstractMutableCollection() {
4472
4492
  AbstractCollection.call(this);
4473
4493
  }
4474
- protoOf(AbstractMutableCollection).y2 = function (element) {
4494
+ protoOf(AbstractMutableCollection).z2 = function (element) {
4475
4495
  this.s4();
4476
4496
  var iterator = this.t();
4477
4497
  while (iterator.u()) {
@@ -4493,7 +4513,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4493
4513
  }
4494
4514
  return modified;
4495
4515
  };
4496
- protoOf(AbstractMutableCollection).a3 = function (elements) {
4516
+ protoOf(AbstractMutableCollection).a2 = function (elements) {
4497
4517
  this.s4();
4498
4518
  var tmp = isInterface(this, MutableIterable) ? this : THROW_CCE();
4499
4519
  return removeAll(tmp, AbstractMutableCollection$removeAll$lambda(elements));
@@ -4600,7 +4620,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4600
4620
  };
4601
4621
  function AbstractMutableList$removeAll$lambda($elements) {
4602
4622
  return function (it) {
4603
- return $elements.m2(it);
4623
+ return $elements.z1(it);
4604
4624
  };
4605
4625
  }
4606
4626
  function AbstractMutableList() {
@@ -4612,7 +4632,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4612
4632
  this.d3(this.g1(), element);
4613
4633
  return true;
4614
4634
  };
4615
- protoOf(AbstractMutableList).z2 = function (index, elements) {
4635
+ protoOf(AbstractMutableList).a3 = function (index, elements) {
4616
4636
  Companion_instance_8.c5(index, this.g1());
4617
4637
  this.s4();
4618
4638
  var _index = index;
@@ -4631,17 +4651,17 @@ if (typeof String.prototype.startsWith === 'undefined') {
4631
4651
  this.s4();
4632
4652
  this.m5(0, this.g1());
4633
4653
  };
4634
- protoOf(AbstractMutableList).a3 = function (elements) {
4654
+ protoOf(AbstractMutableList).a2 = function (elements) {
4635
4655
  this.s4();
4636
4656
  return removeAll_0(this, AbstractMutableList$removeAll$lambda(elements));
4637
4657
  };
4638
4658
  protoOf(AbstractMutableList).t = function () {
4639
4659
  return new IteratorImpl(this);
4640
4660
  };
4641
- protoOf(AbstractMutableList).m2 = function (element) {
4642
- return this.o2(element) >= 0;
4661
+ protoOf(AbstractMutableList).z1 = function (element) {
4662
+ return this.p2(element) >= 0;
4643
4663
  };
4644
- protoOf(AbstractMutableList).o2 = function (element) {
4664
+ protoOf(AbstractMutableList).p2 = function (element) {
4645
4665
  var tmp$ret$1;
4646
4666
  $l$block: {
4647
4667
  // Inline function 'kotlin.collections.indexOfFirst' call
@@ -4659,7 +4679,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4659
4679
  }
4660
4680
  return tmp$ret$1;
4661
4681
  };
4662
- protoOf(AbstractMutableList).p2 = function (element) {
4682
+ protoOf(AbstractMutableList).q2 = function (element) {
4663
4683
  var tmp$ret$1;
4664
4684
  $l$block: {
4665
4685
  // Inline function 'kotlin.collections.indexOfLast' call
@@ -4675,13 +4695,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
4675
4695
  }
4676
4696
  return tmp$ret$1;
4677
4697
  };
4678
- protoOf(AbstractMutableList).q2 = function () {
4698
+ protoOf(AbstractMutableList).r2 = function () {
4679
4699
  return this.j1(0);
4680
4700
  };
4681
4701
  protoOf(AbstractMutableList).j1 = function (index) {
4682
4702
  return new ListIteratorImpl(this, index);
4683
4703
  };
4684
- protoOf(AbstractMutableList).r2 = function (fromIndex, toIndex) {
4704
+ protoOf(AbstractMutableList).s2 = function (fromIndex, toIndex) {
4685
4705
  return new SubList(this, fromIndex, toIndex);
4686
4706
  };
4687
4707
  protoOf(AbstractMutableList).m5 = function (fromIndex, toIndex) {
@@ -4719,7 +4739,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4719
4739
  protoOf(AbstractMutableMap).u5 = function () {
4720
4740
  return new HashMapValuesDefault(this);
4721
4741
  };
4722
- protoOf(AbstractMutableMap).w2 = function () {
4742
+ protoOf(AbstractMutableMap).x2 = function () {
4723
4743
  var tmp0_elvis_lhs = this.r5_1;
4724
4744
  var tmp;
4725
4745
  if (tmp0_elvis_lhs == null) {
@@ -4732,7 +4752,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4732
4752
  }
4733
4753
  return tmp;
4734
4754
  };
4735
- protoOf(AbstractMutableMap).x2 = function () {
4755
+ protoOf(AbstractMutableMap).y2 = function () {
4736
4756
  var tmp0_elvis_lhs = this.s5_1;
4737
4757
  var tmp;
4738
4758
  if (tmp0_elvis_lhs == null) {
@@ -4940,7 +4960,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4940
4960
  this.x4_1 = this.x4_1 + 1 | 0;
4941
4961
  return true;
4942
4962
  };
4943
- protoOf(ArrayList).z2 = function (index, elements) {
4963
+ protoOf(ArrayList).a3 = function (index, elements) {
4944
4964
  this.s4();
4945
4965
  insertionRangeCheck(this, index);
4946
4966
  if (index === this.g1())
@@ -4979,7 +4999,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
4979
4999
  }
4980
5000
  return tmp;
4981
5001
  };
4982
- protoOf(ArrayList).y2 = function (element) {
5002
+ protoOf(ArrayList).z2 = function (element) {
4983
5003
  this.s4();
4984
5004
  var inductionVariable = 0;
4985
5005
  var last = this.c1_1.length - 1 | 0;
@@ -5010,10 +5030,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
5010
5030
  tmp.c1_1 = [];
5011
5031
  this.x4_1 = this.x4_1 + 1 | 0;
5012
5032
  };
5013
- protoOf(ArrayList).o2 = function (element) {
5033
+ protoOf(ArrayList).p2 = function (element) {
5014
5034
  return indexOf(this.c1_1, element);
5015
5035
  };
5016
- protoOf(ArrayList).p2 = function (element) {
5036
+ protoOf(ArrayList).q2 = function (element) {
5017
5037
  return lastIndexOf(this.c1_1, element);
5018
5038
  };
5019
5039
  protoOf(ArrayList).toString = function () {
@@ -5189,11 +5209,11 @@ if (typeof String.prototype.startsWith === 'undefined') {
5189
5209
  protoOf(HashMap).b3 = function () {
5190
5210
  this.i6_1.b3();
5191
5211
  };
5192
- protoOf(HashMap).t2 = function (key) {
5212
+ protoOf(HashMap).u2 = function (key) {
5193
5213
  return this.i6_1.k6(key);
5194
5214
  };
5195
- protoOf(HashMap).u2 = function (value) {
5196
- return this.i6_1.u2(value);
5215
+ protoOf(HashMap).v2 = function (value) {
5216
+ return this.i6_1.v2(value);
5197
5217
  };
5198
5218
  protoOf(HashMap).t5 = function () {
5199
5219
  return new HashMapKeys(this.i6_1);
@@ -5214,8 +5234,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
5214
5234
  }
5215
5235
  return tmp;
5216
5236
  };
5217
- protoOf(HashMap).v2 = function (key) {
5218
- return this.i6_1.v2(key);
5237
+ protoOf(HashMap).w2 = function (key) {
5238
+ return this.i6_1.w2(key);
5219
5239
  };
5220
5240
  protoOf(HashMap).g3 = function (key, value) {
5221
5241
  return this.i6_1.g3(key, value);
@@ -5242,7 +5262,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5242
5262
  protoOf(HashMapKeys).r = function () {
5243
5263
  return this.l6_1.g1() === 0;
5244
5264
  };
5245
- protoOf(HashMapKeys).m2 = function (element) {
5265
+ protoOf(HashMapKeys).z1 = function (element) {
5246
5266
  return this.l6_1.k6(element);
5247
5267
  };
5248
5268
  protoOf(HashMapKeys).b3 = function () {
@@ -5254,7 +5274,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5254
5274
  protoOf(HashMapKeys).i1 = function (elements) {
5255
5275
  throw UnsupportedOperationException_init_$Create$();
5256
5276
  };
5257
- protoOf(HashMapKeys).y2 = function (element) {
5277
+ protoOf(HashMapKeys).z2 = function (element) {
5258
5278
  return this.l6_1.m6(element);
5259
5279
  };
5260
5280
  protoOf(HashMapKeys).t = function () {
@@ -5274,9 +5294,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
5274
5294
  return this.p6_1.g1() === 0;
5275
5295
  };
5276
5296
  protoOf(HashMapValues).q6 = function (element) {
5277
- return this.p6_1.u2(element);
5297
+ return this.p6_1.v2(element);
5278
5298
  };
5279
- protoOf(HashMapValues).m2 = function (element) {
5299
+ protoOf(HashMapValues).z1 = function (element) {
5280
5300
  if (!(element == null ? true : !(element == null)))
5281
5301
  return false;
5282
5302
  return this.q6((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -5318,7 +5338,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5318
5338
  protoOf(HashMapEntrySetBase).x6 = function (element) {
5319
5339
  return this.v6_1.a7(element);
5320
5340
  };
5321
- protoOf(HashMapEntrySetBase).m2 = function (element) {
5341
+ protoOf(HashMapEntrySetBase).z1 = function (element) {
5322
5342
  if (!(!(element == null) ? isInterface(element, Entry) : false))
5323
5343
  return false;
5324
5344
  return this.x6((!(element == null) ? isInterface(element, Entry) : false) ? element : THROW_CCE());
@@ -5338,12 +5358,12 @@ if (typeof String.prototype.startsWith === 'undefined') {
5338
5358
  protoOf(HashMapEntrySetBase).z6 = function (element) {
5339
5359
  return this.v6_1.b7(element);
5340
5360
  };
5341
- protoOf(HashMapEntrySetBase).y2 = function (element) {
5361
+ protoOf(HashMapEntrySetBase).z2 = function (element) {
5342
5362
  if (!(!(element == null) ? isInterface(element, Entry) : false))
5343
5363
  return false;
5344
5364
  return this.z6((!(element == null) ? isInterface(element, Entry) : false) ? element : THROW_CCE());
5345
5365
  };
5346
- protoOf(HashMapEntrySetBase).n2 = function (elements) {
5366
+ protoOf(HashMapEntrySetBase).o2 = function (elements) {
5347
5367
  return this.v6_1.c7(elements);
5348
5368
  };
5349
5369
  protoOf(HashMapEntrySetBase).s4 = function () {
@@ -5375,9 +5395,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
5375
5395
  return this.e7_1.b3();
5376
5396
  };
5377
5397
  protoOf(HashMapKeysDefault).k6 = function (element) {
5378
- return this.e7_1.t2(element);
5398
+ return this.e7_1.u2(element);
5379
5399
  };
5380
- protoOf(HashMapKeysDefault).m2 = function (element) {
5400
+ protoOf(HashMapKeysDefault).z1 = function (element) {
5381
5401
  if (!(element == null ? true : !(element == null)))
5382
5402
  return false;
5383
5403
  return this.k6((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -5388,13 +5408,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
5388
5408
  };
5389
5409
  protoOf(HashMapKeysDefault).h3 = function (element) {
5390
5410
  this.s4();
5391
- if (this.e7_1.t2(element)) {
5411
+ if (this.e7_1.u2(element)) {
5392
5412
  this.e7_1.h3(element);
5393
5413
  return true;
5394
5414
  }
5395
5415
  return false;
5396
5416
  };
5397
- protoOf(HashMapKeysDefault).y2 = function (element) {
5417
+ protoOf(HashMapKeysDefault).z2 = function (element) {
5398
5418
  if (!(element == null ? true : !(element == null)))
5399
5419
  return false;
5400
5420
  return this.h3((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -5428,9 +5448,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
5428
5448
  return this.r6((element == null ? true : !(element == null)) ? element : THROW_CCE());
5429
5449
  };
5430
5450
  protoOf(HashMapValuesDefault).q6 = function (element) {
5431
- return this.h7_1.u2(element);
5451
+ return this.h7_1.v2(element);
5432
5452
  };
5433
- protoOf(HashMapValuesDefault).m2 = function (element) {
5453
+ protoOf(HashMapValuesDefault).z1 = function (element) {
5434
5454
  if (!(element == null ? true : !(element == null)))
5435
5455
  return false;
5436
5456
  return this.q6((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -5487,7 +5507,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5487
5507
  protoOf(HashSet).b3 = function () {
5488
5508
  this.i7_1.b3();
5489
5509
  };
5490
- protoOf(HashSet).m2 = function (element) {
5510
+ protoOf(HashSet).z1 = function (element) {
5491
5511
  return this.i7_1.k6(element);
5492
5512
  };
5493
5513
  protoOf(HashSet).r = function () {
@@ -5496,7 +5516,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
5496
5516
  protoOf(HashSet).t = function () {
5497
5517
  return this.i7_1.n6();
5498
5518
  };
5499
- protoOf(HashSet).y2 = function (element) {
5519
+ protoOf(HashSet).z2 = function (element) {
5500
5520
  return !(this.i7_1.h3(element) == null);
5501
5521
  };
5502
5522
  protoOf(HashSet).g1 = function () {
@@ -5995,10 +6015,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
5995
6015
  this.o6();
5996
6016
  this.s7_1 = true;
5997
6017
  };
5998
- protoOf(InternalHashMap).u2 = function (value) {
6018
+ protoOf(InternalHashMap).v2 = function (value) {
5999
6019
  return findValue(this, value) >= 0;
6000
6020
  };
6001
- protoOf(InternalHashMap).v2 = function (key) {
6021
+ protoOf(InternalHashMap).w2 = function (key) {
6002
6022
  var index = findKey(this, key);
6003
6023
  if (index < 0)
6004
6024
  return null;
@@ -9078,7 +9098,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9078
9098
  }
9079
9099
  function AbstractCollection() {
9080
9100
  }
9081
- protoOf(AbstractCollection).m2 = function (element) {
9101
+ protoOf(AbstractCollection).z1 = function (element) {
9082
9102
  var tmp$ret$0;
9083
9103
  $l$block_0: {
9084
9104
  // Inline function 'kotlin.collections.any' call
@@ -9104,7 +9124,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9104
9124
  }
9105
9125
  return tmp$ret$0;
9106
9126
  };
9107
- protoOf(AbstractCollection).n2 = function (elements) {
9127
+ protoOf(AbstractCollection).o2 = function (elements) {
9108
9128
  var tmp$ret$0;
9109
9129
  $l$block_0: {
9110
9130
  // Inline function 'kotlin.collections.all' call
@@ -9121,7 +9141,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9121
9141
  var _iterator__ex2g4s = elements.t();
9122
9142
  while (_iterator__ex2g4s.u()) {
9123
9143
  var element = _iterator__ex2g4s.v();
9124
- if (!this.m2(element)) {
9144
+ if (!this.z1(element)) {
9125
9145
  tmp$ret$0 = false;
9126
9146
  break $l$block_0;
9127
9147
  }
@@ -9154,7 +9174,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9154
9174
  protoOf(SubList_0).g1 = function () {
9155
9175
  return this.ue_1;
9156
9176
  };
9157
- protoOf(SubList_0).r2 = function (fromIndex, toIndex) {
9177
+ protoOf(SubList_0).s2 = function (fromIndex, toIndex) {
9158
9178
  Companion_instance_8.p4(fromIndex, toIndex, this.ue_1);
9159
9179
  return new SubList_0(this.se_1, this.te_1 + fromIndex | 0, this.te_1 + toIndex | 0);
9160
9180
  };
@@ -9265,7 +9285,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9265
9285
  protoOf(AbstractList).t = function () {
9266
9286
  return new IteratorImpl_0(this);
9267
9287
  };
9268
- protoOf(AbstractList).o2 = function (element) {
9288
+ protoOf(AbstractList).p2 = function (element) {
9269
9289
  var tmp$ret$1;
9270
9290
  $l$block: {
9271
9291
  // Inline function 'kotlin.collections.indexOfFirst' call
@@ -9283,7 +9303,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9283
9303
  }
9284
9304
  return tmp$ret$1;
9285
9305
  };
9286
- protoOf(AbstractList).p2 = function (element) {
9306
+ protoOf(AbstractList).q2 = function (element) {
9287
9307
  var tmp$ret$1;
9288
9308
  $l$block: {
9289
9309
  // Inline function 'kotlin.collections.indexOfLast' call
@@ -9299,13 +9319,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
9299
9319
  }
9300
9320
  return tmp$ret$1;
9301
9321
  };
9302
- protoOf(AbstractList).q2 = function () {
9322
+ protoOf(AbstractList).r2 = function () {
9303
9323
  return new ListIteratorImpl_0(this, 0);
9304
9324
  };
9305
9325
  protoOf(AbstractList).j1 = function (index) {
9306
9326
  return new ListIteratorImpl_0(this, index);
9307
9327
  };
9308
- protoOf(AbstractList).r2 = function (fromIndex, toIndex) {
9328
+ protoOf(AbstractList).s2 = function (fromIndex, toIndex) {
9309
9329
  return new SubList_0(this, fromIndex, toIndex);
9310
9330
  };
9311
9331
  protoOf(AbstractList).equals = function (other) {
@@ -9370,9 +9390,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
9370
9390
  AbstractSet.call(this);
9371
9391
  }
9372
9392
  protoOf(AbstractMap$keys$1).k6 = function (element) {
9373
- return this.cf_1.t2(element);
9393
+ return this.cf_1.u2(element);
9374
9394
  };
9375
- protoOf(AbstractMap$keys$1).m2 = function (element) {
9395
+ protoOf(AbstractMap$keys$1).z1 = function (element) {
9376
9396
  if (!(element == null ? true : !(element == null)))
9377
9397
  return false;
9378
9398
  return this.k6((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -9394,9 +9414,9 @@ if (typeof String.prototype.startsWith === 'undefined') {
9394
9414
  AbstractCollection.call(this);
9395
9415
  }
9396
9416
  protoOf(AbstractMap$values$1).q6 = function (element) {
9397
- return this.df_1.u2(element);
9417
+ return this.df_1.v2(element);
9398
9418
  };
9399
- protoOf(AbstractMap$values$1).m2 = function (element) {
9419
+ protoOf(AbstractMap$values$1).z1 = function (element) {
9400
9420
  if (!(element == null ? true : !(element == null)))
9401
9421
  return false;
9402
9422
  return this.q6((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -9412,10 +9432,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
9412
9432
  this.v5_1 = null;
9413
9433
  this.w5_1 = null;
9414
9434
  }
9415
- protoOf(AbstractMap).t2 = function (key) {
9435
+ protoOf(AbstractMap).u2 = function (key) {
9416
9436
  return !(implFindEntry(this, key) == null);
9417
9437
  };
9418
- protoOf(AbstractMap).u2 = function (value) {
9438
+ protoOf(AbstractMap).v2 = function (value) {
9419
9439
  var tmp0 = this.m1();
9420
9440
  var tmp$ret$0;
9421
9441
  $l$block_0: {
@@ -9448,14 +9468,14 @@ if (typeof String.prototype.startsWith === 'undefined') {
9448
9468
  var key = entry.n1();
9449
9469
  var value = entry.o1();
9450
9470
  // Inline function 'kotlin.collections.get' call
9451
- var ourValue = (isInterface(this, KtMap) ? this : THROW_CCE()).v2(key);
9471
+ var ourValue = (isInterface(this, KtMap) ? this : THROW_CCE()).w2(key);
9452
9472
  if (!equals(value, ourValue)) {
9453
9473
  return false;
9454
9474
  }
9455
9475
  var tmp;
9456
9476
  if (ourValue == null) {
9457
9477
  // Inline function 'kotlin.collections.containsKey' call
9458
- tmp = !(isInterface(this, KtMap) ? this : THROW_CCE()).t2(key);
9478
+ tmp = !(isInterface(this, KtMap) ? this : THROW_CCE()).u2(key);
9459
9479
  } else {
9460
9480
  tmp = false;
9461
9481
  }
@@ -9497,7 +9517,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9497
9517
  }
9498
9518
  return tmp$ret$0;
9499
9519
  };
9500
- protoOf(AbstractMap).v2 = function (key) {
9520
+ protoOf(AbstractMap).w2 = function (key) {
9501
9521
  var tmp0_safe_receiver = implFindEntry(this, key);
9502
9522
  return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.o1();
9503
9523
  };
@@ -9510,7 +9530,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9510
9530
  protoOf(AbstractMap).g1 = function () {
9511
9531
  return this.m1().g1();
9512
9532
  };
9513
- protoOf(AbstractMap).w2 = function () {
9533
+ protoOf(AbstractMap).x2 = function () {
9514
9534
  if (this.v5_1 == null) {
9515
9535
  var tmp = this;
9516
9536
  tmp.v5_1 = new AbstractMap$keys$1(this);
@@ -9521,7 +9541,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9521
9541
  var tmp = this.m1();
9522
9542
  return joinToString_0(tmp, ', ', '{', '}', VOID, VOID, AbstractMap$toString$lambda(this));
9523
9543
  };
9524
- protoOf(AbstractMap).x2 = function () {
9544
+ protoOf(AbstractMap).y2 = function () {
9525
9545
  if (this.w5_1 == null) {
9526
9546
  var tmp = this;
9527
9547
  tmp.w5_1 = new AbstractMap$values$1(this);
@@ -9544,7 +9564,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9544
9564
  protoOf(Companion_10).y5 = function (c, other) {
9545
9565
  if (!(c.g1() === other.g1()))
9546
9566
  return false;
9547
- return c.n2(other);
9567
+ return c.o2(other);
9548
9568
  };
9549
9569
  var Companion_instance_10;
9550
9570
  function Companion_getInstance_10() {
@@ -9851,7 +9871,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
9851
9871
  copyCollectionElements(this, tmp$ret$0, elements);
9852
9872
  return true;
9853
9873
  };
9854
- protoOf(ArrayDeque).z2 = function (index, elements) {
9874
+ protoOf(ArrayDeque).a3 = function (index, elements) {
9855
9875
  Companion_instance_8.c5(index, this.hf_1);
9856
9876
  if (elements.r()) {
9857
9877
  return false;
@@ -10007,10 +10027,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
10007
10027
  this.gf_1[internalIndex] = element;
10008
10028
  return oldElement;
10009
10029
  };
10010
- protoOf(ArrayDeque).m2 = function (element) {
10011
- return !(this.o2(element) === -1);
10030
+ protoOf(ArrayDeque).z1 = function (element) {
10031
+ return !(this.p2(element) === -1);
10012
10032
  };
10013
- protoOf(ArrayDeque).o2 = function (element) {
10033
+ protoOf(ArrayDeque).p2 = function (element) {
10014
10034
  // Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
10015
10035
  var index = this.hf_1;
10016
10036
  var tail = positiveMod(this, this.ff_1 + index | 0);
@@ -10056,7 +10076,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10056
10076
  }
10057
10077
  return -1;
10058
10078
  };
10059
- protoOf(ArrayDeque).p2 = function (element) {
10079
+ protoOf(ArrayDeque).q2 = function (element) {
10060
10080
  // Inline function 'kotlin.collections.ArrayDeque.internalIndex' call
10061
10081
  var index = this.hf_1;
10062
10082
  var tail = positiveMod(this, this.ff_1 + index | 0);
@@ -10103,8 +10123,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
10103
10123
  }
10104
10124
  return -1;
10105
10125
  };
10106
- protoOf(ArrayDeque).y2 = function (element) {
10107
- var index = this.o2(element);
10126
+ protoOf(ArrayDeque).z2 = function (element) {
10127
+ var index = this.p2(element);
10108
10128
  if (index === -1)
10109
10129
  return false;
10110
10130
  this.e3(index);
@@ -10177,7 +10197,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10177
10197
  this.hf_1 = this.hf_1 - 1 | 0;
10178
10198
  return element;
10179
10199
  };
10180
- protoOf(ArrayDeque).a3 = function (elements) {
10200
+ protoOf(ArrayDeque).a2 = function (elements) {
10181
10201
  var tmp$ret$1;
10182
10202
  $l$block: {
10183
10203
  // Inline function 'kotlin.collections.ArrayDeque.filterInPlace' call
@@ -10205,7 +10225,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10205
10225
  inductionVariable = inductionVariable + 1 | 0;
10206
10226
  var element = this.gf_1[index_0];
10207
10227
  var it = (element == null ? true : !(element == null)) ? element : THROW_CCE();
10208
- if (!elements.m2(it)) {
10228
+ if (!elements.z1(it)) {
10209
10229
  var tmp_0 = this.gf_1;
10210
10230
  var _unary__edvuaz = newTail;
10211
10231
  newTail = _unary__edvuaz + 1 | 0;
@@ -10226,7 +10246,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10226
10246
  var element_0 = this.gf_1[index_1];
10227
10247
  this.gf_1[index_1] = null;
10228
10248
  var it_0 = (element_0 == null ? true : !(element_0 == null)) ? element_0 : THROW_CCE();
10229
- if (!elements.m2(it_0)) {
10249
+ if (!elements.z1(it_0)) {
10230
10250
  var tmp_1 = this.gf_1;
10231
10251
  var _unary__edvuaz_0 = newTail;
10232
10252
  newTail = _unary__edvuaz_0 + 1 | 0;
@@ -10245,7 +10265,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10245
10265
  var element_1 = this.gf_1[index_2];
10246
10266
  this.gf_1[index_2] = null;
10247
10267
  var it_1 = (element_1 == null ? true : !(element_1 == null)) ? element_1 : THROW_CCE();
10248
- if (!elements.m2(it_1)) {
10268
+ if (!elements.z1(it_1)) {
10249
10269
  this.gf_1[newTail] = element_1;
10250
10270
  newTail = incremented(this, newTail);
10251
10271
  } else {
@@ -10437,7 +10457,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10437
10457
  protoOf(EmptyList).rf = function (element) {
10438
10458
  return false;
10439
10459
  };
10440
- protoOf(EmptyList).m2 = function (element) {
10460
+ protoOf(EmptyList).z1 = function (element) {
10441
10461
  if (!false)
10442
10462
  return false;
10443
10463
  var tmp;
@@ -10451,7 +10471,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10451
10471
  protoOf(EmptyList).sf = function (elements) {
10452
10472
  return elements.r();
10453
10473
  };
10454
- protoOf(EmptyList).n2 = function (elements) {
10474
+ protoOf(EmptyList).o2 = function (elements) {
10455
10475
  return this.sf(elements);
10456
10476
  };
10457
10477
  protoOf(EmptyList).h1 = function (index) {
@@ -10460,7 +10480,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10460
10480
  protoOf(EmptyList).tf = function (element) {
10461
10481
  return -1;
10462
10482
  };
10463
- protoOf(EmptyList).o2 = function (element) {
10483
+ protoOf(EmptyList).p2 = function (element) {
10464
10484
  if (!false)
10465
10485
  return -1;
10466
10486
  var tmp;
@@ -10474,7 +10494,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10474
10494
  protoOf(EmptyList).uf = function (element) {
10475
10495
  return -1;
10476
10496
  };
10477
- protoOf(EmptyList).p2 = function (element) {
10497
+ protoOf(EmptyList).q2 = function (element) {
10478
10498
  if (!false)
10479
10499
  return -1;
10480
10500
  var tmp;
@@ -10488,7 +10508,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10488
10508
  protoOf(EmptyList).t = function () {
10489
10509
  return EmptyIterator_instance;
10490
10510
  };
10491
- protoOf(EmptyList).q2 = function () {
10511
+ protoOf(EmptyList).r2 = function () {
10492
10512
  return EmptyIterator_instance;
10493
10513
  };
10494
10514
  protoOf(EmptyList).j1 = function (index) {
@@ -10496,7 +10516,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10496
10516
  throw IndexOutOfBoundsException_init_$Create$_0('Index: ' + index);
10497
10517
  return EmptyIterator_instance;
10498
10518
  };
10499
- protoOf(EmptyList).r2 = function (fromIndex, toIndex) {
10519
+ protoOf(EmptyList).s2 = function (fromIndex, toIndex) {
10500
10520
  if (fromIndex === 0 && toIndex === 0)
10501
10521
  return this;
10502
10522
  throw IndexOutOfBoundsException_init_$Create$_0('fromIndex: ' + fromIndex + ', toIndex: ' + toIndex);
@@ -10573,7 +10593,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10573
10593
  protoOf(ArrayAsCollection).xf = function (element) {
10574
10594
  return contains_0(this.vf_1, element);
10575
10595
  };
10576
- protoOf(ArrayAsCollection).m2 = function (element) {
10596
+ protoOf(ArrayAsCollection).z1 = function (element) {
10577
10597
  if (!(element == null ? true : !(element == null)))
10578
10598
  return false;
10579
10599
  return this.xf((element == null ? true : !(element == null)) ? element : THROW_CCE());
@@ -10604,7 +10624,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10604
10624
  }
10605
10625
  return tmp$ret$0;
10606
10626
  };
10607
- protoOf(ArrayAsCollection).n2 = function (elements) {
10627
+ protoOf(ArrayAsCollection).o2 = function (elements) {
10608
10628
  return this.yf(elements);
10609
10629
  };
10610
10630
  protoOf(ArrayAsCollection).t = function () {
@@ -10684,8 +10704,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
10684
10704
  var tmp$ret$0;
10685
10705
  $l$block: {
10686
10706
  // Inline function 'kotlin.collections.getOrElseNullable' call
10687
- var value = _this__u8e3s4.v2(key);
10688
- if (value == null && !_this__u8e3s4.t2(key)) {
10707
+ var value = _this__u8e3s4.w2(key);
10708
+ if (value == null && !_this__u8e3s4.u2(key)) {
10689
10709
  throw NoSuchElementException_init_$Create$_0('Key ' + toString_0(key) + ' is missing in the map.');
10690
10710
  } else {
10691
10711
  tmp$ret$0 = (value == null ? true : !(value == null)) ? value : THROW_CCE();
@@ -10800,7 +10820,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10800
10820
  protoOf(EmptyMap).gg = function (key) {
10801
10821
  return false;
10802
10822
  };
10803
- protoOf(EmptyMap).t2 = function (key) {
10823
+ protoOf(EmptyMap).u2 = function (key) {
10804
10824
  if (!(key == null ? true : !(key == null)))
10805
10825
  return false;
10806
10826
  return this.gg((key == null ? true : !(key == null)) ? key : THROW_CCE());
@@ -10808,7 +10828,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10808
10828
  protoOf(EmptyMap).hg = function (value) {
10809
10829
  return false;
10810
10830
  };
10811
- protoOf(EmptyMap).u2 = function (value) {
10831
+ protoOf(EmptyMap).v2 = function (value) {
10812
10832
  if (!false)
10813
10833
  return false;
10814
10834
  var tmp;
@@ -10822,7 +10842,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
10822
10842
  protoOf(EmptyMap).ig = function (key) {
10823
10843
  return null;
10824
10844
  };
10825
- protoOf(EmptyMap).v2 = function (key) {
10845
+ protoOf(EmptyMap).w2 = function (key) {
10826
10846
  if (!(key == null ? true : !(key == null)))
10827
10847
  return null;
10828
10848
  return this.ig((key == null ? true : !(key == null)) ? key : THROW_CCE());
@@ -10830,10 +10850,10 @@ if (typeof String.prototype.startsWith === 'undefined') {
10830
10850
  protoOf(EmptyMap).m1 = function () {
10831
10851
  return EmptySet_getInstance();
10832
10852
  };
10833
- protoOf(EmptyMap).w2 = function () {
10853
+ protoOf(EmptyMap).x2 = function () {
10834
10854
  return EmptySet_getInstance();
10835
10855
  };
10836
- protoOf(EmptyMap).x2 = function () {
10856
+ protoOf(EmptyMap).y2 = function () {
10837
10857
  return EmptyList_getInstance();
10838
10858
  };
10839
10859
  var EmptyMap_instance;
@@ -10922,6 +10942,15 @@ if (typeof String.prototype.startsWith === 'undefined') {
10922
10942
  function removeLastOrNull(_this__u8e3s4) {
10923
10943
  return _this__u8e3s4.r() ? null : _this__u8e3s4.e3(get_lastIndex_4(_this__u8e3s4));
10924
10944
  }
10945
+ function convertToListIfNotCollection(_this__u8e3s4) {
10946
+ var tmp;
10947
+ if (isInterface(_this__u8e3s4, Collection)) {
10948
+ tmp = _this__u8e3s4;
10949
+ } else {
10950
+ tmp = toList_0(_this__u8e3s4);
10951
+ }
10952
+ return tmp;
10953
+ }
10925
10954
  function filterInPlace(_this__u8e3s4, predicate, predicateResultToRemove) {
10926
10955
  var result = false;
10927
10956
  // Inline function 'kotlin.with' call
@@ -11030,7 +11059,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11030
11059
  protoOf(ReversedListReadOnly).t = function () {
11031
11060
  return this.j1(0);
11032
11061
  };
11033
- protoOf(ReversedListReadOnly).q2 = function () {
11062
+ protoOf(ReversedListReadOnly).r2 = function () {
11034
11063
  return this.j1(0);
11035
11064
  };
11036
11065
  protoOf(ReversedListReadOnly).j1 = function (index) {
@@ -11092,7 +11121,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11092
11121
  protoOf(ReversedList).t = function () {
11093
11122
  return this.j1(0);
11094
11123
  };
11095
- protoOf(ReversedList).q2 = function () {
11124
+ protoOf(ReversedList).r2 = function () {
11096
11125
  return this.j1(0);
11097
11126
  };
11098
11127
  protoOf(ReversedList).j1 = function (index) {
@@ -11373,7 +11402,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11373
11402
  protoOf(EmptySet).rf = function (element) {
11374
11403
  return false;
11375
11404
  };
11376
- protoOf(EmptySet).m2 = function (element) {
11405
+ protoOf(EmptySet).z1 = function (element) {
11377
11406
  if (!false)
11378
11407
  return false;
11379
11408
  var tmp;
@@ -11387,7 +11416,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11387
11416
  protoOf(EmptySet).sf = function (elements) {
11388
11417
  return elements.r();
11389
11418
  };
11390
- protoOf(EmptySet).n2 = function (elements) {
11419
+ protoOf(EmptySet).o2 = function (elements) {
11391
11420
  return this.sf(elements);
11392
11421
  };
11393
11422
  protoOf(EmptySet).t = function () {
@@ -11705,7 +11734,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11705
11734
  var target = getOrNull(this.ki_1, element.a1_1);
11706
11735
  return target === element;
11707
11736
  };
11708
- protoOf(EnumEntriesList).m2 = function (element) {
11737
+ protoOf(EnumEntriesList).z1 = function (element) {
11709
11738
  if (!(element instanceof Enum))
11710
11739
  return false;
11711
11740
  return this.li(element instanceof Enum ? element : THROW_CCE());
@@ -11717,7 +11746,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11717
11746
  var target = getOrNull(this.ki_1, ordinal);
11718
11747
  return target === element ? ordinal : -1;
11719
11748
  };
11720
- protoOf(EnumEntriesList).o2 = function (element) {
11749
+ protoOf(EnumEntriesList).p2 = function (element) {
11721
11750
  if (!(element instanceof Enum))
11722
11751
  return -1;
11723
11752
  return this.mi(element instanceof Enum ? element : THROW_CCE());
@@ -11725,7 +11754,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
11725
11754
  protoOf(EnumEntriesList).ni = function (element) {
11726
11755
  return this.mi(element);
11727
11756
  };
11728
- protoOf(EnumEntriesList).p2 = function (element) {
11757
+ protoOf(EnumEntriesList).q2 = function (element) {
11729
11758
  if (!(element instanceof Enum))
11730
11759
  return -1;
11731
11760
  return this.ni(element instanceof Enum ? element : THROW_CCE());
@@ -12527,7 +12556,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
12527
12556
  return Char__compareTo_impl_ypi4mb(this.zk_1, value) <= 0 && Char__compareTo_impl_ypi4mb(value, this.al_1) <= 0;
12528
12557
  };
12529
12558
  protoOf(CharRange).w1 = function (value) {
12530
- return this.dl(value instanceof Char ? value.z1_1 : THROW_CCE());
12559
+ return this.dl(value instanceof Char ? value.b2_1 : THROW_CCE());
12531
12560
  };
12532
12561
  protoOf(CharRange).r = function () {
12533
12562
  return Char__compareTo_impl_ypi4mb(this.zk_1, this.al_1) > 0;
@@ -12870,7 +12899,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
12870
12899
  _this__u8e3s4.f1(element);
12871
12900
  else {
12872
12901
  if (element instanceof Char)
12873
- _this__u8e3s4.s(element.z1_1);
12902
+ _this__u8e3s4.s(element.b2_1);
12874
12903
  else {
12875
12904
  _this__u8e3s4.f1(toString_1(element));
12876
12905
  }
@@ -16160,7 +16189,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
16160
16189
  }
16161
16190
  function parseIso$lambda_4(it) {
16162
16191
  _init_properties_Instant_kt__2myitt();
16163
- var containsArg = it.z1_1;
16192
+ var containsArg = it.b2_1;
16164
16193
  return _Char___init__impl__6a9atx(48) <= containsArg ? containsArg <= _Char___init__impl__6a9atx(57) : false;
16165
16194
  }
16166
16195
  function parseIso$twoDigitNumber(s, index) {
@@ -16807,13 +16836,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
16807
16836
  protoOf(UByteArray).ip = function (element) {
16808
16837
  return UByteArray__contains_impl_njh19q(this.y3_1, element);
16809
16838
  };
16810
- protoOf(UByteArray).m2 = function (element) {
16839
+ protoOf(UByteArray).z1 = function (element) {
16811
16840
  return UByteArray__contains_impl_njh19q_0(this, element);
16812
16841
  };
16813
16842
  protoOf(UByteArray).jp = function (elements) {
16814
16843
  return UByteArray__containsAll_impl_v9s6dj(this.y3_1, elements);
16815
16844
  };
16816
- protoOf(UByteArray).n2 = function (elements) {
16845
+ protoOf(UByteArray).o2 = function (elements) {
16817
16846
  return UByteArray__containsAll_impl_v9s6dj_0(this, elements);
16818
16847
  };
16819
16848
  protoOf(UByteArray).r = function () {
@@ -17016,13 +17045,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
17016
17045
  protoOf(UIntArray).tp = function (element) {
17017
17046
  return UIntArray__contains_impl_b16rzj(this.w3_1, element);
17018
17047
  };
17019
- protoOf(UIntArray).m2 = function (element) {
17048
+ protoOf(UIntArray).z1 = function (element) {
17020
17049
  return UIntArray__contains_impl_b16rzj_0(this, element);
17021
17050
  };
17022
17051
  protoOf(UIntArray).up = function (elements) {
17023
17052
  return UIntArray__containsAll_impl_414g22(this.w3_1, elements);
17024
17053
  };
17025
- protoOf(UIntArray).n2 = function (elements) {
17054
+ protoOf(UIntArray).o2 = function (elements) {
17026
17055
  return UIntArray__containsAll_impl_414g22_0(this, elements);
17027
17056
  };
17028
17057
  protoOf(UIntArray).r = function () {
@@ -17225,13 +17254,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
17225
17254
  protoOf(ULongArray).eq = function (element) {
17226
17255
  return ULongArray__contains_impl_v9bgai(this.v3_1, element);
17227
17256
  };
17228
- protoOf(ULongArray).m2 = function (element) {
17257
+ protoOf(ULongArray).z1 = function (element) {
17229
17258
  return ULongArray__contains_impl_v9bgai_0(this, element);
17230
17259
  };
17231
17260
  protoOf(ULongArray).fq = function (elements) {
17232
17261
  return ULongArray__containsAll_impl_xx8ztf(this.v3_1, elements);
17233
17262
  };
17234
- protoOf(ULongArray).n2 = function (elements) {
17263
+ protoOf(ULongArray).o2 = function (elements) {
17235
17264
  return ULongArray__containsAll_impl_xx8ztf_0(this, elements);
17236
17265
  };
17237
17266
  protoOf(ULongArray).r = function () {
@@ -17436,13 +17465,13 @@ if (typeof String.prototype.startsWith === 'undefined') {
17436
17465
  protoOf(UShortArray).pq = function (element) {
17437
17466
  return UShortArray__contains_impl_vo7k3g(this.x3_1, element);
17438
17467
  };
17439
- protoOf(UShortArray).m2 = function (element) {
17468
+ protoOf(UShortArray).z1 = function (element) {
17440
17469
  return UShortArray__contains_impl_vo7k3g_0(this, element);
17441
17470
  };
17442
17471
  protoOf(UShortArray).qq = function (elements) {
17443
17472
  return UShortArray__containsAll_impl_vlaaxp(this.x3_1, elements);
17444
17473
  };
17445
- protoOf(UShortArray).n2 = function (elements) {
17474
+ protoOf(UShortArray).o2 = function (elements) {
17446
17475
  return UShortArray__containsAll_impl_vlaaxp_0(this, elements);
17447
17476
  };
17448
17477
  protoOf(UShortArray).r = function () {
@@ -17995,299 +18024,300 @@ if (typeof String.prototype.startsWith === 'undefined') {
17995
18024
  _.$_$.d9 = maxOrNull;
17996
18025
  _.$_$.e9 = max;
17997
18026
  _.$_$.f9 = minus;
17998
- _.$_$.g9 = mutableListOf;
17999
- _.$_$.h9 = none;
18000
- _.$_$.i9 = plus_5;
18001
- _.$_$.j9 = plus_6;
18002
- _.$_$.k9 = plus_3;
18003
- _.$_$.l9 = plus_2;
18004
- _.$_$.m9 = plus_1;
18005
- _.$_$.n9 = plus_0;
18006
- _.$_$.o9 = randomOrNull;
18007
- _.$_$.p9 = random;
18008
- _.$_$.q9 = removeAll;
18009
- _.$_$.r9 = removeFirstOrNull;
18010
- _.$_$.s9 = removeLastOrNull;
18011
- _.$_$.t9 = removeLast;
18012
- _.$_$.u9 = reversed;
18013
- _.$_$.v9 = reverse;
18014
- _.$_$.w9 = setOf;
18015
- _.$_$.x9 = setOf_0;
18016
- _.$_$.y9 = singleOrNull;
18017
- _.$_$.z9 = single_0;
18018
- _.$_$.aa = sortWith_0;
18019
- _.$_$.ba = sortedWith;
18020
- _.$_$.ca = sorted;
18021
- _.$_$.da = sum_0;
18022
- _.$_$.ea = sum;
18023
- _.$_$.fa = takeLast;
18024
- _.$_$.ga = take;
18025
- _.$_$.ha = toBooleanArray;
18026
- _.$_$.ia = toByteArray;
18027
- _.$_$.ja = toHashSet;
18028
- _.$_$.ka = toIntArray;
18029
- _.$_$.la = toList_1;
18030
- _.$_$.ma = toList_0;
18031
- _.$_$.na = toList;
18032
- _.$_$.oa = toLongArray;
18033
- _.$_$.pa = toMap_1;
18034
- _.$_$.qa = toMap;
18035
- _.$_$.ra = toMap_0;
18036
- _.$_$.sa = toMutableList_0;
18037
- _.$_$.ta = toMutableMap;
18038
- _.$_$.ua = toMutableSet;
18039
- _.$_$.va = toSet_0;
18040
- _.$_$.wa = toTypedArray;
18041
- _.$_$.xa = withIndex;
18042
- _.$_$.ya = zip_0;
18043
- _.$_$.za = zip;
18044
- _.$_$.ab = compareValuesBy;
18045
- _.$_$.bb = compareValues;
18046
- _.$_$.cb = CancellationException;
18047
- _.$_$.db = get_COROUTINE_SUSPENDED;
18048
- _.$_$.eb = createCoroutineUnintercepted_0;
18049
- _.$_$.fb = createCoroutineUnintercepted;
18050
- _.$_$.gb = intercepted;
18051
- _.$_$.hb = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
18052
- _.$_$.ib = AbstractCoroutineContextElement;
18053
- _.$_$.jb = AbstractCoroutineContextKey;
18054
- _.$_$.kb = get_0;
18055
- _.$_$.lb = minusKey_0;
18056
- _.$_$.mb = ContinuationInterceptor;
18057
- _.$_$.nb = Continuation;
18058
- _.$_$.ob = fold;
18059
- _.$_$.pb = get;
18060
- _.$_$.qb = minusKey;
18061
- _.$_$.rb = Element;
18062
- _.$_$.sb = plus;
18063
- _.$_$.tb = CoroutineImpl;
18064
- _.$_$.ub = startCoroutine;
18065
- _.$_$.vb = enumEntries;
18066
- _.$_$.wb = throwUninitializedPropertyAccessException;
18067
- _.$_$.xb = println;
18068
- _.$_$.yb = get_ONE;
18069
- _.$_$.zb = add;
18070
- _.$_$.ac = bitwiseAnd;
18071
- _.$_$.bc = bitwiseOr;
18072
- _.$_$.cc = bitwiseXor;
18073
- _.$_$.dc = compare;
18074
- _.$_$.ec = convertToByte;
18075
- _.$_$.fc = convertToInt;
18076
- _.$_$.gc = convertToShort;
18077
- _.$_$.hc = divide;
18078
- _.$_$.ic = equalsLong;
18079
- _.$_$.jc = fromInt;
18080
- _.$_$.kc = invert;
18081
- _.$_$.lc = isLongArray;
18082
- _.$_$.mc = get_longArrayClass;
18083
- _.$_$.nc = modulo;
18084
- _.$_$.oc = multiply;
18085
- _.$_$.pc = negate;
18086
- _.$_$.qc = numberToLong;
18087
- _.$_$.rc = shiftLeft;
18088
- _.$_$.sc = shiftRightUnsigned;
18089
- _.$_$.tc = shiftRight;
18090
- _.$_$.uc = subtract;
18091
- _.$_$.vc = toNumber;
18092
- _.$_$.wc = FunctionAdapter;
18093
- _.$_$.xc = anyToString;
18094
- _.$_$.yc = arrayIterator;
18095
- _.$_$.zc = booleanArray;
18096
- _.$_$.ad = captureStack;
18097
- _.$_$.bd = charArrayOf;
18098
- _.$_$.cd = charArray;
18099
- _.$_$.dd = charCodeAt;
18100
- _.$_$.ed = charSequenceGet;
18101
- _.$_$.fd = charSequenceLength;
18102
- _.$_$.gd = charSequenceSubSequence;
18103
- _.$_$.hd = compareTo;
18104
- _.$_$.id = defineProp;
18105
- _.$_$.jd = equals;
18106
- _.$_$.kd = extendThrowable;
18107
- _.$_$.ld = floatFromBits;
18108
- _.$_$.md = getBooleanHashCode;
18109
- _.$_$.nd = getNumberHashCode;
18110
- _.$_$.od = getPropertyCallableRef;
18111
- _.$_$.pd = getStringHashCode;
18112
- _.$_$.qd = hashCode_0;
18113
- _.$_$.rd = initMetadataForClass;
18114
- _.$_$.sd = initMetadataForCompanion;
18115
- _.$_$.td = initMetadataForCoroutine;
18116
- _.$_$.ud = initMetadataForFunctionReference;
18117
- _.$_$.vd = initMetadataForInterface;
18118
- _.$_$.wd = initMetadataForLambda;
18119
- _.$_$.xd = initMetadataForObject;
18120
- _.$_$.yd = isArray;
18121
- _.$_$.zd = isBooleanArray;
18122
- _.$_$.ae = isByteArray;
18123
- _.$_$.be = isCharArray;
18124
- _.$_$.ce = isCharSequence;
18125
- _.$_$.de = isDoubleArray;
18126
- _.$_$.ee = isFloatArray;
18127
- _.$_$.fe = isIntArray;
18128
- _.$_$.ge = isInterface;
18129
- _.$_$.he = isNumber;
18130
- _.$_$.ie = isShortArray;
18131
- _.$_$.je = isSuspendFunction;
18132
- _.$_$.ke = get_js;
18133
- _.$_$.le = longArray;
18134
- _.$_$.me = newThrowable;
18135
- _.$_$.ne = numberRangeToNumber;
18136
- _.$_$.oe = numberToByte;
18137
- _.$_$.pe = numberToChar;
18138
- _.$_$.qe = numberToInt;
18139
- _.$_$.re = objectCreate;
18140
- _.$_$.se = protoOf;
18141
- _.$_$.te = toByte;
18142
- _.$_$.ue = toShort;
18143
- _.$_$.ve = toString_1;
18144
- _.$_$.we = abs_0;
18145
- _.$_$.xe = roundToInt;
18146
- _.$_$.ye = round;
18147
- _.$_$.ze = ClosedRange;
18148
- _.$_$.af = coerceAtLeast_0;
18149
- _.$_$.bf = coerceAtLeast;
18150
- _.$_$.cf = coerceAtMost;
18151
- _.$_$.df = coerceIn_1;
18152
- _.$_$.ef = coerceIn_0;
18153
- _.$_$.ff = coerceIn;
18154
- _.$_$.gf = coerceIn_2;
18155
- _.$_$.hf = contains_5;
18156
- _.$_$.if = random_0;
18157
- _.$_$.jf = step;
18158
- _.$_$.kf = until;
18159
- _.$_$.lf = createInvariantKTypeProjection;
18160
- _.$_$.mf = createKTypeParameter;
18161
- _.$_$.nf = createKType;
18162
- _.$_$.of = getKClassFromExpression;
18163
- _.$_$.pf = getKClass;
18164
- _.$_$.qf = getStarKTypeProjection;
18165
- _.$_$.rf = KClass;
18166
- _.$_$.sf = KMutableProperty1;
18167
- _.$_$.tf = KProperty0;
18168
- _.$_$.uf = KProperty1;
18169
- _.$_$.vf = KTypeParameter;
18170
- _.$_$.wf = SequenceScope;
18171
- _.$_$.xf = filter;
18172
- _.$_$.yf = firstOrNull_2;
18173
- _.$_$.zf = flatMap;
18174
- _.$_$.ag = mapNotNull;
18175
- _.$_$.bg = map;
18176
- _.$_$.cg = sequence;
18177
- _.$_$.dg = toList_2;
18178
- _.$_$.eg = concatToString;
18179
- _.$_$.fg = concatToString_0;
18180
- _.$_$.gg = contains_7;
18181
- _.$_$.hg = contains_8;
18182
- _.$_$.ig = decodeToString_0;
18183
- _.$_$.jg = decodeToString;
18184
- _.$_$.kg = encodeToByteArray;
18185
- _.$_$.lg = endsWith_0;
18186
- _.$_$.mg = endsWith_1;
18187
- _.$_$.ng = endsWith;
18188
- _.$_$.og = equals_0;
18189
- _.$_$.pg = first_2;
18190
- _.$_$.qg = indexOfAny;
18191
- _.$_$.rg = indexOf_5;
18192
- _.$_$.sg = indexOf_4;
18193
- _.$_$.tg = isBlank;
18194
- _.$_$.ug = isSurrogate;
18195
- _.$_$.vg = isWhitespace;
18196
- _.$_$.wg = get_lastIndex_5;
18197
- _.$_$.xg = lastIndexOf_0;
18198
- _.$_$.yg = last_2;
18199
- _.$_$.zg = padStart;
18200
- _.$_$.ah = removePrefix;
18201
- _.$_$.bh = removeSuffix;
18202
- _.$_$.ch = repeat;
18203
- _.$_$.dh = replace;
18204
- _.$_$.eh = replace_0;
18205
- _.$_$.fh = single_2;
18206
- _.$_$.gh = split_0;
18207
- _.$_$.hh = split;
18208
- _.$_$.ih = startsWith;
18209
- _.$_$.jh = startsWith_3;
18210
- _.$_$.kh = startsWith_2;
18211
- _.$_$.lh = startsWith_1;
18212
- _.$_$.mh = substringAfter;
18213
- _.$_$.nh = substringBefore;
18214
- _.$_$.oh = substring_0;
18215
- _.$_$.ph = substring;
18216
- _.$_$.qh = take_0;
18217
- _.$_$.rh = toBooleanStrictOrNull;
18218
- _.$_$.sh = toCharArray;
18219
- _.$_$.th = toDoubleOrNull;
18220
- _.$_$.uh = toDouble;
18221
- _.$_$.vh = toIntOrNull;
18222
- _.$_$.wh = toInt;
18223
- _.$_$.xh = toLongOrNull;
18224
- _.$_$.yh = toLong;
18225
- _.$_$.zh = toString_3;
18226
- _.$_$.ai = toUByte;
18227
- _.$_$.bi = toUInt;
18228
- _.$_$.ci = toULongOrNull;
18229
- _.$_$.di = toULong;
18230
- _.$_$.ei = toUShort;
18231
- _.$_$.fi = trimIndent;
18232
- _.$_$.gi = trimMargin;
18233
- _.$_$.hi = trim;
18234
- _.$_$.ii = Duration;
18235
- _.$_$.ji = Instant;
18236
- _.$_$.ki = toDuration_1;
18237
- _.$_$.li = toDuration;
18238
- _.$_$.mi = toDuration_0;
18239
- _.$_$.ni = Uuid;
18240
- _.$_$.oi = ArithmeticException;
18241
- _.$_$.pi = AutoCloseable;
18242
- _.$_$.qi = CharSequence;
18243
- _.$_$.ri = Char;
18244
- _.$_$.si = Comparable;
18245
- _.$_$.ti = Comparator;
18246
- _.$_$.ui = DeepRecursiveFunction;
18247
- _.$_$.vi = DeepRecursiveScope;
18248
- _.$_$.wi = Enum;
18249
- _.$_$.xi = Error_0;
18250
- _.$_$.yi = Exception;
18251
- _.$_$.zi = IllegalArgumentException;
18252
- _.$_$.aj = IllegalStateException;
18253
- _.$_$.bj = Long;
18254
- _.$_$.cj = NoSuchElementException;
18255
- _.$_$.dj = NotImplementedError;
18256
- _.$_$.ej = Pair;
18257
- _.$_$.fj = Result;
18258
- _.$_$.gj = RuntimeException;
18259
- _.$_$.hj = THROW_CCE;
18260
- _.$_$.ij = THROW_IAE;
18261
- _.$_$.jj = Triple;
18262
- _.$_$.kj = UByteArray;
18263
- _.$_$.lj = UByte;
18264
- _.$_$.mj = UIntArray;
18265
- _.$_$.nj = UInt;
18266
- _.$_$.oj = ULongArray;
18267
- _.$_$.pj = ULong;
18268
- _.$_$.qj = UShortArray;
18269
- _.$_$.rj = UShort;
18270
- _.$_$.sj = Unit;
18271
- _.$_$.tj = UnsupportedOperationException;
18272
- _.$_$.uj = addSuppressed;
18273
- _.$_$.vj = arrayOf;
18274
- _.$_$.wj = closeFinally;
18275
- _.$_$.xj = countTrailingZeroBits;
18276
- _.$_$.yj = createFailure;
18277
- _.$_$.zj = ensureNotNull;
18278
- _.$_$.ak = invoke;
18279
- _.$_$.bk = isFinite_0;
18280
- _.$_$.ck = isFinite;
18281
- _.$_$.dk = isNaN_0;
18282
- _.$_$.ek = lazy;
18283
- _.$_$.fk = lazy_0;
18284
- _.$_$.gk = noWhenBranchMatchedException;
18285
- _.$_$.hk = plus_4;
18286
- _.$_$.ik = printStackTrace;
18287
- _.$_$.jk = stackTraceToString;
18288
- _.$_$.kk = throwOnFailure;
18289
- _.$_$.lk = toString_0;
18290
- _.$_$.mk = to;
18027
+ _.$_$.g9 = minus_0;
18028
+ _.$_$.h9 = mutableListOf;
18029
+ _.$_$.i9 = none;
18030
+ _.$_$.j9 = plus_5;
18031
+ _.$_$.k9 = plus_6;
18032
+ _.$_$.l9 = plus_3;
18033
+ _.$_$.m9 = plus_2;
18034
+ _.$_$.n9 = plus_1;
18035
+ _.$_$.o9 = plus_0;
18036
+ _.$_$.p9 = randomOrNull;
18037
+ _.$_$.q9 = random;
18038
+ _.$_$.r9 = removeAll;
18039
+ _.$_$.s9 = removeFirstOrNull;
18040
+ _.$_$.t9 = removeLastOrNull;
18041
+ _.$_$.u9 = removeLast;
18042
+ _.$_$.v9 = reversed;
18043
+ _.$_$.w9 = reverse;
18044
+ _.$_$.x9 = setOf;
18045
+ _.$_$.y9 = setOf_0;
18046
+ _.$_$.z9 = singleOrNull;
18047
+ _.$_$.aa = single_0;
18048
+ _.$_$.ba = sortWith_0;
18049
+ _.$_$.ca = sortedWith;
18050
+ _.$_$.da = sorted;
18051
+ _.$_$.ea = sum_0;
18052
+ _.$_$.fa = sum;
18053
+ _.$_$.ga = takeLast;
18054
+ _.$_$.ha = take;
18055
+ _.$_$.ia = toBooleanArray;
18056
+ _.$_$.ja = toByteArray;
18057
+ _.$_$.ka = toHashSet;
18058
+ _.$_$.la = toIntArray;
18059
+ _.$_$.ma = toList_1;
18060
+ _.$_$.na = toList_0;
18061
+ _.$_$.oa = toList;
18062
+ _.$_$.pa = toLongArray;
18063
+ _.$_$.qa = toMap_1;
18064
+ _.$_$.ra = toMap;
18065
+ _.$_$.sa = toMap_0;
18066
+ _.$_$.ta = toMutableList_0;
18067
+ _.$_$.ua = toMutableMap;
18068
+ _.$_$.va = toMutableSet;
18069
+ _.$_$.wa = toSet_0;
18070
+ _.$_$.xa = toTypedArray;
18071
+ _.$_$.ya = withIndex;
18072
+ _.$_$.za = zip_0;
18073
+ _.$_$.ab = zip;
18074
+ _.$_$.bb = compareValuesBy;
18075
+ _.$_$.cb = compareValues;
18076
+ _.$_$.db = CancellationException;
18077
+ _.$_$.eb = get_COROUTINE_SUSPENDED;
18078
+ _.$_$.fb = createCoroutineUnintercepted_0;
18079
+ _.$_$.gb = createCoroutineUnintercepted;
18080
+ _.$_$.hb = intercepted;
18081
+ _.$_$.ib = startCoroutineUninterceptedOrReturnNonGeneratorVersion;
18082
+ _.$_$.jb = AbstractCoroutineContextElement;
18083
+ _.$_$.kb = AbstractCoroutineContextKey;
18084
+ _.$_$.lb = get_0;
18085
+ _.$_$.mb = minusKey_0;
18086
+ _.$_$.nb = ContinuationInterceptor;
18087
+ _.$_$.ob = Continuation;
18088
+ _.$_$.pb = fold;
18089
+ _.$_$.qb = get;
18090
+ _.$_$.rb = minusKey;
18091
+ _.$_$.sb = Element;
18092
+ _.$_$.tb = plus;
18093
+ _.$_$.ub = CoroutineImpl;
18094
+ _.$_$.vb = startCoroutine;
18095
+ _.$_$.wb = enumEntries;
18096
+ _.$_$.xb = throwUninitializedPropertyAccessException;
18097
+ _.$_$.yb = println;
18098
+ _.$_$.zb = get_ONE;
18099
+ _.$_$.ac = add;
18100
+ _.$_$.bc = bitwiseAnd;
18101
+ _.$_$.cc = bitwiseOr;
18102
+ _.$_$.dc = bitwiseXor;
18103
+ _.$_$.ec = compare;
18104
+ _.$_$.fc = convertToByte;
18105
+ _.$_$.gc = convertToInt;
18106
+ _.$_$.hc = convertToShort;
18107
+ _.$_$.ic = divide;
18108
+ _.$_$.jc = equalsLong;
18109
+ _.$_$.kc = fromInt;
18110
+ _.$_$.lc = invert;
18111
+ _.$_$.mc = isLongArray;
18112
+ _.$_$.nc = get_longArrayClass;
18113
+ _.$_$.oc = modulo;
18114
+ _.$_$.pc = multiply;
18115
+ _.$_$.qc = negate;
18116
+ _.$_$.rc = numberToLong;
18117
+ _.$_$.sc = shiftLeft;
18118
+ _.$_$.tc = shiftRightUnsigned;
18119
+ _.$_$.uc = shiftRight;
18120
+ _.$_$.vc = subtract;
18121
+ _.$_$.wc = toNumber;
18122
+ _.$_$.xc = FunctionAdapter;
18123
+ _.$_$.yc = anyToString;
18124
+ _.$_$.zc = arrayIterator;
18125
+ _.$_$.ad = booleanArray;
18126
+ _.$_$.bd = captureStack;
18127
+ _.$_$.cd = charArrayOf;
18128
+ _.$_$.dd = charArray;
18129
+ _.$_$.ed = charCodeAt;
18130
+ _.$_$.fd = charSequenceGet;
18131
+ _.$_$.gd = charSequenceLength;
18132
+ _.$_$.hd = charSequenceSubSequence;
18133
+ _.$_$.id = compareTo;
18134
+ _.$_$.jd = defineProp;
18135
+ _.$_$.kd = equals;
18136
+ _.$_$.ld = extendThrowable;
18137
+ _.$_$.md = floatFromBits;
18138
+ _.$_$.nd = getBooleanHashCode;
18139
+ _.$_$.od = getNumberHashCode;
18140
+ _.$_$.pd = getPropertyCallableRef;
18141
+ _.$_$.qd = getStringHashCode;
18142
+ _.$_$.rd = hashCode_0;
18143
+ _.$_$.sd = initMetadataForClass;
18144
+ _.$_$.td = initMetadataForCompanion;
18145
+ _.$_$.ud = initMetadataForCoroutine;
18146
+ _.$_$.vd = initMetadataForFunctionReference;
18147
+ _.$_$.wd = initMetadataForInterface;
18148
+ _.$_$.xd = initMetadataForLambda;
18149
+ _.$_$.yd = initMetadataForObject;
18150
+ _.$_$.zd = isArray;
18151
+ _.$_$.ae = isBooleanArray;
18152
+ _.$_$.be = isByteArray;
18153
+ _.$_$.ce = isCharArray;
18154
+ _.$_$.de = isCharSequence;
18155
+ _.$_$.ee = isDoubleArray;
18156
+ _.$_$.fe = isFloatArray;
18157
+ _.$_$.ge = isIntArray;
18158
+ _.$_$.he = isInterface;
18159
+ _.$_$.ie = isNumber;
18160
+ _.$_$.je = isShortArray;
18161
+ _.$_$.ke = isSuspendFunction;
18162
+ _.$_$.le = get_js;
18163
+ _.$_$.me = longArray;
18164
+ _.$_$.ne = newThrowable;
18165
+ _.$_$.oe = numberRangeToNumber;
18166
+ _.$_$.pe = numberToByte;
18167
+ _.$_$.qe = numberToChar;
18168
+ _.$_$.re = numberToInt;
18169
+ _.$_$.se = objectCreate;
18170
+ _.$_$.te = protoOf;
18171
+ _.$_$.ue = toByte;
18172
+ _.$_$.ve = toShort;
18173
+ _.$_$.we = toString_1;
18174
+ _.$_$.xe = abs_0;
18175
+ _.$_$.ye = roundToInt;
18176
+ _.$_$.ze = round;
18177
+ _.$_$.af = ClosedRange;
18178
+ _.$_$.bf = coerceAtLeast_0;
18179
+ _.$_$.cf = coerceAtLeast;
18180
+ _.$_$.df = coerceAtMost;
18181
+ _.$_$.ef = coerceIn_1;
18182
+ _.$_$.ff = coerceIn_0;
18183
+ _.$_$.gf = coerceIn;
18184
+ _.$_$.hf = coerceIn_2;
18185
+ _.$_$.if = contains_5;
18186
+ _.$_$.jf = random_0;
18187
+ _.$_$.kf = step;
18188
+ _.$_$.lf = until;
18189
+ _.$_$.mf = createInvariantKTypeProjection;
18190
+ _.$_$.nf = createKTypeParameter;
18191
+ _.$_$.of = createKType;
18192
+ _.$_$.pf = getKClassFromExpression;
18193
+ _.$_$.qf = getKClass;
18194
+ _.$_$.rf = getStarKTypeProjection;
18195
+ _.$_$.sf = KClass;
18196
+ _.$_$.tf = KMutableProperty1;
18197
+ _.$_$.uf = KProperty0;
18198
+ _.$_$.vf = KProperty1;
18199
+ _.$_$.wf = KTypeParameter;
18200
+ _.$_$.xf = SequenceScope;
18201
+ _.$_$.yf = filter;
18202
+ _.$_$.zf = firstOrNull_2;
18203
+ _.$_$.ag = flatMap;
18204
+ _.$_$.bg = mapNotNull;
18205
+ _.$_$.cg = map;
18206
+ _.$_$.dg = sequence;
18207
+ _.$_$.eg = toList_2;
18208
+ _.$_$.fg = concatToString;
18209
+ _.$_$.gg = concatToString_0;
18210
+ _.$_$.hg = contains_7;
18211
+ _.$_$.ig = contains_8;
18212
+ _.$_$.jg = decodeToString_0;
18213
+ _.$_$.kg = decodeToString;
18214
+ _.$_$.lg = encodeToByteArray;
18215
+ _.$_$.mg = endsWith_0;
18216
+ _.$_$.ng = endsWith_1;
18217
+ _.$_$.og = endsWith;
18218
+ _.$_$.pg = equals_0;
18219
+ _.$_$.qg = first_2;
18220
+ _.$_$.rg = indexOfAny;
18221
+ _.$_$.sg = indexOf_5;
18222
+ _.$_$.tg = indexOf_4;
18223
+ _.$_$.ug = isBlank;
18224
+ _.$_$.vg = isSurrogate;
18225
+ _.$_$.wg = isWhitespace;
18226
+ _.$_$.xg = get_lastIndex_5;
18227
+ _.$_$.yg = lastIndexOf_0;
18228
+ _.$_$.zg = last_2;
18229
+ _.$_$.ah = padStart;
18230
+ _.$_$.bh = removePrefix;
18231
+ _.$_$.ch = removeSuffix;
18232
+ _.$_$.dh = repeat;
18233
+ _.$_$.eh = replace;
18234
+ _.$_$.fh = replace_0;
18235
+ _.$_$.gh = single_2;
18236
+ _.$_$.hh = split_0;
18237
+ _.$_$.ih = split;
18238
+ _.$_$.jh = startsWith;
18239
+ _.$_$.kh = startsWith_3;
18240
+ _.$_$.lh = startsWith_2;
18241
+ _.$_$.mh = startsWith_1;
18242
+ _.$_$.nh = substringAfter;
18243
+ _.$_$.oh = substringBefore;
18244
+ _.$_$.ph = substring_0;
18245
+ _.$_$.qh = substring;
18246
+ _.$_$.rh = take_0;
18247
+ _.$_$.sh = toBooleanStrictOrNull;
18248
+ _.$_$.th = toCharArray;
18249
+ _.$_$.uh = toDoubleOrNull;
18250
+ _.$_$.vh = toDouble;
18251
+ _.$_$.wh = toIntOrNull;
18252
+ _.$_$.xh = toInt;
18253
+ _.$_$.yh = toLongOrNull;
18254
+ _.$_$.zh = toLong;
18255
+ _.$_$.ai = toString_3;
18256
+ _.$_$.bi = toUByte;
18257
+ _.$_$.ci = toUInt;
18258
+ _.$_$.di = toULongOrNull;
18259
+ _.$_$.ei = toULong;
18260
+ _.$_$.fi = toUShort;
18261
+ _.$_$.gi = trimIndent;
18262
+ _.$_$.hi = trimMargin;
18263
+ _.$_$.ii = trim;
18264
+ _.$_$.ji = Duration;
18265
+ _.$_$.ki = Instant;
18266
+ _.$_$.li = toDuration_1;
18267
+ _.$_$.mi = toDuration;
18268
+ _.$_$.ni = toDuration_0;
18269
+ _.$_$.oi = Uuid;
18270
+ _.$_$.pi = ArithmeticException;
18271
+ _.$_$.qi = AutoCloseable;
18272
+ _.$_$.ri = CharSequence;
18273
+ _.$_$.si = Char;
18274
+ _.$_$.ti = Comparable;
18275
+ _.$_$.ui = Comparator;
18276
+ _.$_$.vi = DeepRecursiveFunction;
18277
+ _.$_$.wi = DeepRecursiveScope;
18278
+ _.$_$.xi = Enum;
18279
+ _.$_$.yi = Error_0;
18280
+ _.$_$.zi = Exception;
18281
+ _.$_$.aj = IllegalArgumentException;
18282
+ _.$_$.bj = IllegalStateException;
18283
+ _.$_$.cj = Long;
18284
+ _.$_$.dj = NoSuchElementException;
18285
+ _.$_$.ej = NotImplementedError;
18286
+ _.$_$.fj = Pair;
18287
+ _.$_$.gj = Result;
18288
+ _.$_$.hj = RuntimeException;
18289
+ _.$_$.ij = THROW_CCE;
18290
+ _.$_$.jj = THROW_IAE;
18291
+ _.$_$.kj = Triple;
18292
+ _.$_$.lj = UByteArray;
18293
+ _.$_$.mj = UByte;
18294
+ _.$_$.nj = UIntArray;
18295
+ _.$_$.oj = UInt;
18296
+ _.$_$.pj = ULongArray;
18297
+ _.$_$.qj = ULong;
18298
+ _.$_$.rj = UShortArray;
18299
+ _.$_$.sj = UShort;
18300
+ _.$_$.tj = Unit;
18301
+ _.$_$.uj = UnsupportedOperationException;
18302
+ _.$_$.vj = addSuppressed;
18303
+ _.$_$.wj = arrayOf;
18304
+ _.$_$.xj = closeFinally;
18305
+ _.$_$.yj = countTrailingZeroBits;
18306
+ _.$_$.zj = createFailure;
18307
+ _.$_$.ak = ensureNotNull;
18308
+ _.$_$.bk = invoke;
18309
+ _.$_$.ck = isFinite_0;
18310
+ _.$_$.dk = isFinite;
18311
+ _.$_$.ek = isNaN_0;
18312
+ _.$_$.fk = lazy;
18313
+ _.$_$.gk = lazy_0;
18314
+ _.$_$.hk = noWhenBranchMatchedException;
18315
+ _.$_$.ik = plus_4;
18316
+ _.$_$.jk = printStackTrace;
18317
+ _.$_$.kk = stackTraceToString;
18318
+ _.$_$.lk = throwOnFailure;
18319
+ _.$_$.mk = toString_0;
18320
+ _.$_$.nk = to;
18291
18321
  //endregion
18292
18322
  return _;
18293
18323
  }));