game_client_logic_deb 1.3.85 → 1.3.101

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.
@@ -921,11 +921,6 @@ if (typeof Math.imul === 'undefined') {
921
921
  tmp$ret$0 = tmp0_flatMapTo;
922
922
  return tmp$ret$0;
923
923
  }
924
- function first(_this__u8e3s4) {
925
- if (_this__u8e3s4.k())
926
- throw NoSuchElementException_init_$Create$_0('List is empty.');
927
- return _this__u8e3s4.j(0);
928
- }
929
924
  function plus_2(_this__u8e3s4, elements) {
930
925
  if (isInterface(elements, Collection)) {
931
926
  var result = ArrayList_init_$Create$_0(_this__u8e3s4.i() + elements.i() | 0);
@@ -971,6 +966,11 @@ if (typeof Math.imul === 'undefined') {
971
966
  tmp$ret$0 = tmp0_filterNotTo;
972
967
  return tmp$ret$0;
973
968
  }
969
+ function first(_this__u8e3s4) {
970
+ if (_this__u8e3s4.k())
971
+ throw NoSuchElementException_init_$Create$_0('List is empty.');
972
+ return _this__u8e3s4.j(0);
973
+ }
974
974
  function takeLast(_this__u8e3s4, n) {
975
975
  // Inline function 'kotlin.require' call
976
976
  var tmp0_require = n >= 0;
@@ -1012,65 +1012,14 @@ if (typeof Math.imul === 'undefined') {
1012
1012
  }
1013
1013
  return list;
1014
1014
  }
1015
- function filter_0(_this__u8e3s4, predicate) {
1016
- var tmp$ret$0;
1017
- // Inline function 'kotlin.collections.filterTo' call
1018
- var tmp0_filterTo = ArrayList_init_$Create$();
1019
- var tmp0_iterator = _this__u8e3s4.f();
1020
- while (tmp0_iterator.g()) {
1021
- var element = tmp0_iterator.h();
1022
- if (predicate(element)) {
1023
- tmp0_filterTo.a(element);
1024
- }
1025
- }
1026
- tmp$ret$0 = tmp0_filterTo;
1027
- return tmp$ret$0;
1028
- }
1029
- function any_1(_this__u8e3s4, predicate) {
1030
- var tmp;
1031
- if (isInterface(_this__u8e3s4, Collection)) {
1032
- tmp = _this__u8e3s4.k();
1033
- } else {
1034
- tmp = false;
1035
- }
1036
- if (tmp)
1037
- return false;
1015
+ function first_0(_this__u8e3s4, predicate) {
1038
1016
  var tmp0_iterator = _this__u8e3s4.f();
1039
1017
  while (tmp0_iterator.g()) {
1040
1018
  var element = tmp0_iterator.h();
1041
1019
  if (predicate(element))
1042
- return true;
1043
- }
1044
- return false;
1045
- }
1046
- function groupBy(_this__u8e3s4, keySelector) {
1047
- var tmp$ret$2;
1048
- // Inline function 'kotlin.collections.groupByTo' call
1049
- var tmp0_groupByTo = LinkedHashMap_init_$Create$();
1050
- var tmp0_iterator = _this__u8e3s4.f();
1051
- while (tmp0_iterator.g()) {
1052
- var element = tmp0_iterator.h();
1053
- var key = keySelector(element);
1054
- var tmp$ret$1;
1055
- // Inline function 'kotlin.collections.getOrPut' call
1056
- var value = tmp0_groupByTo.n(key);
1057
- var tmp;
1058
- if (value == null) {
1059
- var tmp$ret$0;
1060
- // Inline function 'kotlin.collections.groupByTo.<anonymous>' call
1061
- tmp$ret$0 = ArrayList_init_$Create$();
1062
- var answer = tmp$ret$0;
1063
- tmp0_groupByTo.o(key, answer);
1064
- tmp = answer;
1065
- } else {
1066
- tmp = value;
1067
- }
1068
- tmp$ret$1 = tmp;
1069
- var list = tmp$ret$1;
1070
- list.a(element);
1020
+ return element;
1071
1021
  }
1072
- tmp$ret$2 = tmp0_groupByTo;
1073
- return tmp$ret$2;
1022
+ throw NoSuchElementException_init_$Create$_0('Collection contains no element matching the predicate.');
1074
1023
  }
1075
1024
  function single_1(_this__u8e3s4, predicate) {
1076
1025
  var single = null;
@@ -1089,139 +1038,36 @@ if (typeof Math.imul === 'undefined') {
1089
1038
  throw NoSuchElementException_init_$Create$_0('Collection contains no element matching the predicate.');
1090
1039
  return (single == null ? true : isObject(single)) ? single : THROW_CCE();
1091
1040
  }
1092
- function minus(_this__u8e3s4, element) {
1093
- var result = ArrayList_init_$Create$_0(collectionSizeOrDefault(_this__u8e3s4, 10));
1094
- var removed = false;
1095
- var tmp$ret$1;
1041
+ function filter_0(_this__u8e3s4, predicate) {
1042
+ var tmp$ret$0;
1096
1043
  // Inline function 'kotlin.collections.filterTo' call
1097
- var tmp0_iterator = _this__u8e3s4.f();
1098
- while (tmp0_iterator.g()) {
1099
- var element_0 = tmp0_iterator.h();
1100
- var tmp$ret$0;
1101
- // Inline function 'kotlin.collections.minus.<anonymous>' call
1102
- var tmp;
1103
- if (!removed ? equals_1(element_0, element) : false) {
1104
- removed = true;
1105
- tmp = false;
1106
- } else {
1107
- tmp = true;
1108
- }
1109
- tmp$ret$0 = tmp;
1110
- if (tmp$ret$0) {
1111
- result.a(element_0);
1112
- }
1113
- }
1114
- tmp$ret$1 = result;
1115
- return tmp$ret$1;
1116
- }
1117
- function dropLast(_this__u8e3s4, n) {
1118
- // Inline function 'kotlin.require' call
1119
- var tmp0_require = n >= 0;
1120
- // Inline function 'kotlin.contracts.contract' call
1121
- if (!tmp0_require) {
1122
- var tmp$ret$0;
1123
- // Inline function 'kotlin.collections.dropLast.<anonymous>' call
1124
- tmp$ret$0 = 'Requested element count ' + n + ' is less than zero.';
1125
- var message = tmp$ret$0;
1126
- throw IllegalArgumentException_init_$Create$_0(toString_2(message));
1127
- }
1128
- return take(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.i() - n | 0, 0));
1129
- }
1130
- function sumOf(_this__u8e3s4, selector) {
1131
- var sum = 0;
1044
+ var tmp0_filterTo = ArrayList_init_$Create$();
1132
1045
  var tmp0_iterator = _this__u8e3s4.f();
1133
1046
  while (tmp0_iterator.g()) {
1134
1047
  var element = tmp0_iterator.h();
1135
- sum = sum + selector(element) | 0;
1048
+ if (predicate(element)) {
1049
+ tmp0_filterTo.a(element);
1050
+ }
1136
1051
  }
1137
- return sum;
1052
+ tmp$ret$0 = tmp0_filterTo;
1053
+ return tmp$ret$0;
1138
1054
  }
1139
- function take(_this__u8e3s4, n) {
1140
- // Inline function 'kotlin.require' call
1141
- var tmp0_require = n >= 0;
1142
- // Inline function 'kotlin.contracts.contract' call
1143
- if (!tmp0_require) {
1144
- var tmp$ret$0;
1145
- // Inline function 'kotlin.collections.take.<anonymous>' call
1146
- tmp$ret$0 = 'Requested element count ' + n + ' is less than zero.';
1147
- var message = tmp$ret$0;
1148
- throw IllegalArgumentException_init_$Create$_0(toString_2(message));
1149
- }
1150
- if (n === 0)
1151
- return emptyList();
1055
+ function any_1(_this__u8e3s4, predicate) {
1056
+ var tmp;
1152
1057
  if (isInterface(_this__u8e3s4, Collection)) {
1153
- if (n >= _this__u8e3s4.i())
1154
- return toList_0(_this__u8e3s4);
1155
- if (n === 1)
1156
- return listOf_0(first_1(_this__u8e3s4));
1157
- }
1158
- var count = 0;
1159
- var list = ArrayList_init_$Create$_0(n);
1160
- var tmp0_iterator = _this__u8e3s4.f();
1161
- $l$loop: while (tmp0_iterator.g()) {
1162
- var item = tmp0_iterator.h();
1163
- list.a(item);
1164
- count = count + 1 | 0;
1165
- if (count === n)
1166
- break $l$loop;
1167
- }
1168
- return optimizeReadOnlyList(list);
1169
- }
1170
- function toMutableList_0(_this__u8e3s4) {
1171
- return ArrayList_init_$Create$_1(_this__u8e3s4);
1172
- }
1173
- function zip_1(_this__u8e3s4, other, transform) {
1174
- var first = _this__u8e3s4.f();
1175
- var second = other.f();
1176
- var tmp$ret$0;
1177
- // Inline function 'kotlin.comparisons.minOf' call
1178
- var tmp0_minOf = collectionSizeOrDefault(_this__u8e3s4, 10);
1179
- var tmp1_minOf = collectionSizeOrDefault(other, 10);
1180
- tmp$ret$0 = Math.min(tmp0_minOf, tmp1_minOf);
1181
- var list = ArrayList_init_$Create$_0(tmp$ret$0);
1182
- while (first.g() ? second.g() : false) {
1183
- list.a(transform(first.h(), second.h()));
1184
- }
1185
- return list;
1186
- }
1187
- function associate(_this__u8e3s4, transform) {
1188
- var capacity = coerceAtLeast(mapCapacity(collectionSizeOrDefault(_this__u8e3s4, 10)), 16);
1189
- var tmp$ret$0;
1190
- // Inline function 'kotlin.collections.associateTo' call
1191
- var tmp1_associateTo = LinkedHashMap_init_$Create$_1(capacity);
1192
- var tmp0_iterator = _this__u8e3s4.f();
1193
- while (tmp0_iterator.g()) {
1194
- var element = tmp0_iterator.h();
1195
- // Inline function 'kotlin.collections.plusAssign' call
1196
- var tmp0_plusAssign = transform(element);
1197
- tmp1_associateTo.o(tmp0_plusAssign.p_1, tmp0_plusAssign.q_1);
1058
+ tmp = _this__u8e3s4.k();
1059
+ } else {
1060
+ tmp = false;
1198
1061
  }
1199
- tmp$ret$0 = tmp1_associateTo;
1200
- return tmp$ret$0;
1201
- }
1202
- function first_0(_this__u8e3s4, predicate) {
1062
+ if (tmp)
1063
+ return false;
1203
1064
  var tmp0_iterator = _this__u8e3s4.f();
1204
1065
  while (tmp0_iterator.g()) {
1205
1066
  var element = tmp0_iterator.h();
1206
1067
  if (predicate(element))
1207
- return element;
1208
- }
1209
- throw NoSuchElementException_init_$Create$_0('Collection contains no element matching the predicate.');
1210
- }
1211
- function mapIndexed(_this__u8e3s4, transform) {
1212
- var tmp$ret$0;
1213
- // Inline function 'kotlin.collections.mapIndexedTo' call
1214
- var tmp0_mapIndexedTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(_this__u8e3s4, 10));
1215
- var index = 0;
1216
- var tmp0_iterator = _this__u8e3s4.f();
1217
- while (tmp0_iterator.g()) {
1218
- var item = tmp0_iterator.h();
1219
- var tmp1 = index;
1220
- index = tmp1 + 1 | 0;
1221
- tmp0_mapIndexedTo.a(transform(checkIndexOverflow(tmp1), item));
1068
+ return true;
1222
1069
  }
1223
- tmp$ret$0 = tmp0_mapIndexedTo;
1224
- return tmp$ret$0;
1070
+ return false;
1225
1071
  }
1226
1072
  function sortedBy(_this__u8e3s4, selector) {
1227
1073
  var tmp$ret$0;
@@ -1230,7 +1076,16 @@ if (typeof Math.imul === 'undefined') {
1230
1076
  tmp$ret$0 = new sam$kotlin_Comparator$0(tmp);
1231
1077
  return sortedWith(_this__u8e3s4, tmp$ret$0);
1232
1078
  }
1233
- function none_0(_this__u8e3s4, predicate) {
1079
+ function sumOf(_this__u8e3s4, selector) {
1080
+ var sum = 0;
1081
+ var tmp0_iterator = _this__u8e3s4.f();
1082
+ while (tmp0_iterator.g()) {
1083
+ var element = tmp0_iterator.h();
1084
+ sum = sum + selector(element) | 0;
1085
+ }
1086
+ return sum;
1087
+ }
1088
+ function all(_this__u8e3s4, predicate) {
1234
1089
  var tmp;
1235
1090
  if (isInterface(_this__u8e3s4, Collection)) {
1236
1091
  tmp = _this__u8e3s4.k();
@@ -1242,12 +1097,12 @@ if (typeof Math.imul === 'undefined') {
1242
1097
  var tmp0_iterator = _this__u8e3s4.f();
1243
1098
  while (tmp0_iterator.g()) {
1244
1099
  var element = tmp0_iterator.h();
1245
- if (predicate(element))
1100
+ if (!predicate(element))
1246
1101
  return false;
1247
1102
  }
1248
1103
  return true;
1249
1104
  }
1250
- function all(_this__u8e3s4, predicate) {
1105
+ function none_0(_this__u8e3s4, predicate) {
1251
1106
  var tmp;
1252
1107
  if (isInterface(_this__u8e3s4, Collection)) {
1253
1108
  tmp = _this__u8e3s4.k();
@@ -1259,33 +1114,65 @@ if (typeof Math.imul === 'undefined') {
1259
1114
  var tmp0_iterator = _this__u8e3s4.f();
1260
1115
  while (tmp0_iterator.g()) {
1261
1116
  var element = tmp0_iterator.h();
1262
- if (!predicate(element))
1117
+ if (predicate(element))
1263
1118
  return false;
1264
1119
  }
1265
1120
  return true;
1266
1121
  }
1267
- function forEachIndexed_0(_this__u8e3s4, action) {
1268
- var index = 0;
1269
- var tmp0_iterator = _this__u8e3s4.f();
1270
- while (tmp0_iterator.g()) {
1271
- var item = tmp0_iterator.h();
1272
- var tmp1 = index;
1273
- index = tmp1 + 1 | 0;
1274
- action(checkIndexOverflow(tmp1), item);
1122
+ function zip_1(_this__u8e3s4, other, transform) {
1123
+ var first = _this__u8e3s4.f();
1124
+ var second = other.f();
1125
+ var tmp$ret$0;
1126
+ // Inline function 'kotlin.comparisons.minOf' call
1127
+ var tmp0_minOf = collectionSizeOrDefault(_this__u8e3s4, 10);
1128
+ var tmp1_minOf = collectionSizeOrDefault(other, 10);
1129
+ tmp$ret$0 = Math.min(tmp0_minOf, tmp1_minOf);
1130
+ var list = ArrayList_init_$Create$_0(tmp$ret$0);
1131
+ while (first.g() ? second.g() : false) {
1132
+ list.a(transform(first.h(), second.h()));
1275
1133
  }
1134
+ return list;
1276
1135
  }
1277
1136
  function lastOrNull(_this__u8e3s4) {
1278
1137
  return _this__u8e3s4.k() ? null : _this__u8e3s4.j(_this__u8e3s4.i() - 1 | 0);
1279
1138
  }
1280
1139
  function lastOrNull_0(_this__u8e3s4, predicate) {
1281
1140
  var iterator = _this__u8e3s4.m(_this__u8e3s4.i());
1282
- while (iterator.r()) {
1283
- var element = iterator.s();
1141
+ while (iterator.n()) {
1142
+ var element = iterator.o();
1284
1143
  if (predicate(element))
1285
1144
  return element;
1286
1145
  }
1287
1146
  return null;
1288
1147
  }
1148
+ function minus(_this__u8e3s4, element) {
1149
+ var result = ArrayList_init_$Create$_0(collectionSizeOrDefault(_this__u8e3s4, 10));
1150
+ var removed = false;
1151
+ var tmp$ret$1;
1152
+ // Inline function 'kotlin.collections.filterTo' call
1153
+ var tmp0_iterator = _this__u8e3s4.f();
1154
+ while (tmp0_iterator.g()) {
1155
+ var element_0 = tmp0_iterator.h();
1156
+ var tmp$ret$0;
1157
+ // Inline function 'kotlin.collections.minus.<anonymous>' call
1158
+ var tmp;
1159
+ if (!removed ? equals_1(element_0, element) : false) {
1160
+ removed = true;
1161
+ tmp = false;
1162
+ } else {
1163
+ tmp = true;
1164
+ }
1165
+ tmp$ret$0 = tmp;
1166
+ if (tmp$ret$0) {
1167
+ result.a(element_0);
1168
+ }
1169
+ }
1170
+ tmp$ret$1 = result;
1171
+ return tmp$ret$1;
1172
+ }
1173
+ function toMutableList_0(_this__u8e3s4) {
1174
+ return ArrayList_init_$Create$_1(_this__u8e3s4);
1175
+ }
1289
1176
  function mapTo_0(_this__u8e3s4, destination, transform) {
1290
1177
  var tmp0_iterator = _this__u8e3s4.f();
1291
1178
  while (tmp0_iterator.g()) {
@@ -1378,39 +1265,214 @@ if (typeof Math.imul === 'undefined') {
1378
1265
  tmp$ret$0 = Unit_getInstance();
1379
1266
  }
1380
1267
  }
1381
- return destination;
1382
- }
1383
- function toMutableList_1(_this__u8e3s4) {
1384
- if (isInterface(_this__u8e3s4, Collection))
1385
- return toMutableList_0(_this__u8e3s4);
1386
- return toCollection_0(_this__u8e3s4, ArrayList_init_$Create$());
1268
+ return destination;
1269
+ }
1270
+ function toMutableList_1(_this__u8e3s4) {
1271
+ if (isInterface(_this__u8e3s4, Collection))
1272
+ return toMutableList_0(_this__u8e3s4);
1273
+ return toCollection_0(_this__u8e3s4, ArrayList_init_$Create$());
1274
+ }
1275
+ function flatMapTo(_this__u8e3s4, destination, transform) {
1276
+ var tmp0_iterator = _this__u8e3s4.f();
1277
+ while (tmp0_iterator.g()) {
1278
+ var element = tmp0_iterator.h();
1279
+ var list = transform(element);
1280
+ addAll(destination, list);
1281
+ }
1282
+ return destination;
1283
+ }
1284
+ function filterNotTo(_this__u8e3s4, destination, predicate) {
1285
+ var tmp0_iterator = _this__u8e3s4.f();
1286
+ while (tmp0_iterator.g()) {
1287
+ var element = tmp0_iterator.h();
1288
+ if (!predicate(element)) {
1289
+ destination.a(element);
1290
+ }
1291
+ }
1292
+ return destination;
1293
+ }
1294
+ function filterTo_0(_this__u8e3s4, destination, predicate) {
1295
+ var tmp0_iterator = _this__u8e3s4.f();
1296
+ while (tmp0_iterator.g()) {
1297
+ var element = tmp0_iterator.h();
1298
+ if (predicate(element)) {
1299
+ destination.a(element);
1300
+ }
1301
+ }
1302
+ return destination;
1303
+ }
1304
+ function forEachIndexed_0(_this__u8e3s4, action) {
1305
+ var index = 0;
1306
+ var tmp0_iterator = _this__u8e3s4.f();
1307
+ while (tmp0_iterator.g()) {
1308
+ var item = tmp0_iterator.h();
1309
+ var tmp1 = index;
1310
+ index = tmp1 + 1 | 0;
1311
+ action(checkIndexOverflow(tmp1), item);
1312
+ }
1313
+ }
1314
+ function associateByTo(_this__u8e3s4, destination, keySelector, valueTransform) {
1315
+ var tmp0_iterator = _this__u8e3s4.f();
1316
+ while (tmp0_iterator.g()) {
1317
+ var element = tmp0_iterator.h();
1318
+ destination.p(keySelector(element), valueTransform(element));
1319
+ }
1320
+ return destination;
1321
+ }
1322
+ function groupingBy(_this__u8e3s4, keySelector) {
1323
+ return new _no_name_provided__qut3iv(_this__u8e3s4, keySelector);
1324
+ }
1325
+ function mapIndexed(_this__u8e3s4, transform) {
1326
+ var tmp$ret$0;
1327
+ // Inline function 'kotlin.collections.mapIndexedTo' call
1328
+ var tmp0_mapIndexedTo = ArrayList_init_$Create$_0(collectionSizeOrDefault(_this__u8e3s4, 10));
1329
+ var index = 0;
1330
+ var tmp0_iterator = _this__u8e3s4.f();
1331
+ while (tmp0_iterator.g()) {
1332
+ var item = tmp0_iterator.h();
1333
+ var tmp1 = index;
1334
+ index = tmp1 + 1 | 0;
1335
+ tmp0_mapIndexedTo.a(transform(checkIndexOverflow(tmp1), item));
1336
+ }
1337
+ tmp$ret$0 = tmp0_mapIndexedTo;
1338
+ return tmp$ret$0;
1339
+ }
1340
+ function associate(_this__u8e3s4, transform) {
1341
+ var capacity = coerceAtLeast(mapCapacity(collectionSizeOrDefault(_this__u8e3s4, 10)), 16);
1342
+ var tmp$ret$0;
1343
+ // Inline function 'kotlin.collections.associateTo' call
1344
+ var tmp1_associateTo = LinkedHashMap_init_$Create$_1(capacity);
1345
+ var tmp0_iterator = _this__u8e3s4.f();
1346
+ while (tmp0_iterator.g()) {
1347
+ var element = tmp0_iterator.h();
1348
+ // Inline function 'kotlin.collections.plusAssign' call
1349
+ var tmp0_plusAssign = transform(element);
1350
+ tmp1_associateTo.p(tmp0_plusAssign.q_1, tmp0_plusAssign.r_1);
1351
+ }
1352
+ tmp$ret$0 = tmp1_associateTo;
1353
+ return tmp$ret$0;
1354
+ }
1355
+ function groupBy(_this__u8e3s4, keySelector) {
1356
+ var tmp$ret$2;
1357
+ // Inline function 'kotlin.collections.groupByTo' call
1358
+ var tmp0_groupByTo = LinkedHashMap_init_$Create$();
1359
+ var tmp0_iterator = _this__u8e3s4.f();
1360
+ while (tmp0_iterator.g()) {
1361
+ var element = tmp0_iterator.h();
1362
+ var key = keySelector(element);
1363
+ var tmp$ret$1;
1364
+ // Inline function 'kotlin.collections.getOrPut' call
1365
+ var value = tmp0_groupByTo.s(key);
1366
+ var tmp;
1367
+ if (value == null) {
1368
+ var tmp$ret$0;
1369
+ // Inline function 'kotlin.collections.groupByTo.<anonymous>' call
1370
+ tmp$ret$0 = ArrayList_init_$Create$();
1371
+ var answer = tmp$ret$0;
1372
+ tmp0_groupByTo.p(key, answer);
1373
+ tmp = answer;
1374
+ } else {
1375
+ tmp = value;
1376
+ }
1377
+ tmp$ret$1 = tmp;
1378
+ var list = tmp$ret$1;
1379
+ list.a(element);
1380
+ }
1381
+ tmp$ret$2 = tmp0_groupByTo;
1382
+ return tmp$ret$2;
1383
+ }
1384
+ function sorted(_this__u8e3s4) {
1385
+ if (isInterface(_this__u8e3s4, Collection)) {
1386
+ if (_this__u8e3s4.i() <= 1)
1387
+ return toList_0(_this__u8e3s4);
1388
+ var tmp$ret$1;
1389
+ // Inline function 'kotlin.apply' call
1390
+ var tmp$ret$0;
1391
+ // Inline function 'kotlin.collections.toTypedArray' call
1392
+ var tmp0_toTypedArray = _this__u8e3s4;
1393
+ tmp$ret$0 = copyToArray(tmp0_toTypedArray);
1394
+ var tmp = tmp$ret$0;
1395
+ var tmp1_apply = isArray(tmp) ? tmp : THROW_CCE();
1396
+ // Inline function 'kotlin.contracts.contract' call
1397
+ // Inline function 'kotlin.collections.sorted.<anonymous>' call
1398
+ sort_0(tmp1_apply);
1399
+ tmp$ret$1 = tmp1_apply;
1400
+ return asList(tmp$ret$1);
1401
+ }
1402
+ var tmp$ret$2;
1403
+ // Inline function 'kotlin.apply' call
1404
+ var tmp2_apply = toMutableList_1(_this__u8e3s4);
1405
+ // Inline function 'kotlin.contracts.contract' call
1406
+ // Inline function 'kotlin.collections.sorted.<anonymous>' call
1407
+ sort(tmp2_apply);
1408
+ tmp$ret$2 = tmp2_apply;
1409
+ return tmp$ret$2;
1410
+ }
1411
+ function filterNotNull_0(_this__u8e3s4) {
1412
+ return filterNotNullTo_0(_this__u8e3s4, ArrayList_init_$Create$());
1413
+ }
1414
+ function take(_this__u8e3s4, n) {
1415
+ // Inline function 'kotlin.require' call
1416
+ var tmp0_require = n >= 0;
1417
+ // Inline function 'kotlin.contracts.contract' call
1418
+ if (!tmp0_require) {
1419
+ var tmp$ret$0;
1420
+ // Inline function 'kotlin.collections.take.<anonymous>' call
1421
+ tmp$ret$0 = 'Requested element count ' + n + ' is less than zero.';
1422
+ var message = tmp$ret$0;
1423
+ throw IllegalArgumentException_init_$Create$_0(toString_2(message));
1424
+ }
1425
+ if (n === 0)
1426
+ return emptyList();
1427
+ if (isInterface(_this__u8e3s4, Collection)) {
1428
+ if (n >= _this__u8e3s4.i())
1429
+ return toList_0(_this__u8e3s4);
1430
+ if (n === 1)
1431
+ return listOf_0(first_1(_this__u8e3s4));
1432
+ }
1433
+ var count = 0;
1434
+ var list = ArrayList_init_$Create$_0(n);
1435
+ var tmp0_iterator = _this__u8e3s4.f();
1436
+ $l$loop: while (tmp0_iterator.g()) {
1437
+ var item = tmp0_iterator.h();
1438
+ list.a(item);
1439
+ count = count + 1 | 0;
1440
+ if (count === n)
1441
+ break $l$loop;
1442
+ }
1443
+ return optimizeReadOnlyList(list);
1387
1444
  }
1388
- function flatMapTo(_this__u8e3s4, destination, transform) {
1389
- var tmp0_iterator = _this__u8e3s4.f();
1390
- while (tmp0_iterator.g()) {
1391
- var element = tmp0_iterator.h();
1392
- var list = transform(element);
1393
- addAll(destination, list);
1445
+ function dropLast(_this__u8e3s4, n) {
1446
+ // Inline function 'kotlin.require' call
1447
+ var tmp0_require = n >= 0;
1448
+ // Inline function 'kotlin.contracts.contract' call
1449
+ if (!tmp0_require) {
1450
+ var tmp$ret$0;
1451
+ // Inline function 'kotlin.collections.dropLast.<anonymous>' call
1452
+ tmp$ret$0 = 'Requested element count ' + n + ' is less than zero.';
1453
+ var message = tmp$ret$0;
1454
+ throw IllegalArgumentException_init_$Create$_0(toString_2(message));
1394
1455
  }
1395
- return destination;
1456
+ return take(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.i() - n | 0, 0));
1396
1457
  }
1397
- function filterNotTo(_this__u8e3s4, destination, predicate) {
1458
+ function mapIndexedTo(_this__u8e3s4, destination, transform) {
1459
+ var index = 0;
1398
1460
  var tmp0_iterator = _this__u8e3s4.f();
1399
1461
  while (tmp0_iterator.g()) {
1400
- var element = tmp0_iterator.h();
1401
- if (!predicate(element)) {
1402
- destination.a(element);
1403
- }
1462
+ var item = tmp0_iterator.h();
1463
+ var tmp1 = index;
1464
+ index = tmp1 + 1 | 0;
1465
+ destination.a(transform(checkIndexOverflow(tmp1), item));
1404
1466
  }
1405
1467
  return destination;
1406
1468
  }
1407
- function filterTo_0(_this__u8e3s4, destination, predicate) {
1469
+ function associateTo(_this__u8e3s4, destination, transform) {
1408
1470
  var tmp0_iterator = _this__u8e3s4.f();
1409
1471
  while (tmp0_iterator.g()) {
1410
1472
  var element = tmp0_iterator.h();
1411
- if (predicate(element)) {
1412
- destination.a(element);
1413
- }
1473
+ // Inline function 'kotlin.collections.plusAssign' call
1474
+ var tmp0_plusAssign = transform(element);
1475
+ destination.p(tmp0_plusAssign.q_1, tmp0_plusAssign.r_1);
1414
1476
  }
1415
1477
  return destination;
1416
1478
  }
@@ -1421,14 +1483,14 @@ if (typeof Math.imul === 'undefined') {
1421
1483
  var key = keySelector(element);
1422
1484
  var tmp$ret$1;
1423
1485
  // Inline function 'kotlin.collections.getOrPut' call
1424
- var value = destination.n(key);
1486
+ var value = destination.s(key);
1425
1487
  var tmp;
1426
1488
  if (value == null) {
1427
1489
  var tmp$ret$0;
1428
1490
  // Inline function 'kotlin.collections.groupByTo.<anonymous>' call
1429
1491
  tmp$ret$0 = ArrayList_init_$Create$();
1430
1492
  var answer = tmp$ret$0;
1431
- destination.o(key, answer);
1493
+ destination.p(key, answer);
1432
1494
  tmp = answer;
1433
1495
  } else {
1434
1496
  tmp = value;
@@ -1439,6 +1501,16 @@ if (typeof Math.imul === 'undefined') {
1439
1501
  }
1440
1502
  return destination;
1441
1503
  }
1504
+ function filterNotNullTo_0(_this__u8e3s4, destination) {
1505
+ var tmp0_iterator = _this__u8e3s4.f();
1506
+ while (tmp0_iterator.g()) {
1507
+ var element = tmp0_iterator.h();
1508
+ if (!(element == null)) {
1509
+ destination.a(element);
1510
+ }
1511
+ }
1512
+ return destination;
1513
+ }
1442
1514
  function first_1(_this__u8e3s4) {
1443
1515
  var tmp0_subject = _this__u8e3s4;
1444
1516
  if (isInterface(tmp0_subject, List))
@@ -1450,78 +1522,6 @@ if (typeof Math.imul === 'undefined') {
1450
1522
  return iterator.h();
1451
1523
  }
1452
1524
  }
1453
- function associateTo(_this__u8e3s4, destination, transform) {
1454
- var tmp0_iterator = _this__u8e3s4.f();
1455
- while (tmp0_iterator.g()) {
1456
- var element = tmp0_iterator.h();
1457
- // Inline function 'kotlin.collections.plusAssign' call
1458
- var tmp0_plusAssign = transform(element);
1459
- destination.o(tmp0_plusAssign.p_1, tmp0_plusAssign.q_1);
1460
- }
1461
- return destination;
1462
- }
1463
- function mapIndexedTo(_this__u8e3s4, destination, transform) {
1464
- var index = 0;
1465
- var tmp0_iterator = _this__u8e3s4.f();
1466
- while (tmp0_iterator.g()) {
1467
- var item = tmp0_iterator.h();
1468
- var tmp1 = index;
1469
- index = tmp1 + 1 | 0;
1470
- destination.a(transform(checkIndexOverflow(tmp1), item));
1471
- }
1472
- return destination;
1473
- }
1474
- function associateByTo(_this__u8e3s4, destination, keySelector, valueTransform) {
1475
- var tmp0_iterator = _this__u8e3s4.f();
1476
- while (tmp0_iterator.g()) {
1477
- var element = tmp0_iterator.h();
1478
- destination.o(keySelector(element), valueTransform(element));
1479
- }
1480
- return destination;
1481
- }
1482
- function groupingBy(_this__u8e3s4, keySelector) {
1483
- return new _no_name_provided__qut3iv(_this__u8e3s4, keySelector);
1484
- }
1485
- function sorted(_this__u8e3s4) {
1486
- if (isInterface(_this__u8e3s4, Collection)) {
1487
- if (_this__u8e3s4.i() <= 1)
1488
- return toList_0(_this__u8e3s4);
1489
- var tmp$ret$1;
1490
- // Inline function 'kotlin.apply' call
1491
- var tmp$ret$0;
1492
- // Inline function 'kotlin.collections.toTypedArray' call
1493
- var tmp0_toTypedArray = _this__u8e3s4;
1494
- tmp$ret$0 = copyToArray(tmp0_toTypedArray);
1495
- var tmp = tmp$ret$0;
1496
- var tmp1_apply = isArray(tmp) ? tmp : THROW_CCE();
1497
- // Inline function 'kotlin.contracts.contract' call
1498
- // Inline function 'kotlin.collections.sorted.<anonymous>' call
1499
- sort_0(tmp1_apply);
1500
- tmp$ret$1 = tmp1_apply;
1501
- return asList(tmp$ret$1);
1502
- }
1503
- var tmp$ret$2;
1504
- // Inline function 'kotlin.apply' call
1505
- var tmp2_apply = toMutableList_1(_this__u8e3s4);
1506
- // Inline function 'kotlin.contracts.contract' call
1507
- // Inline function 'kotlin.collections.sorted.<anonymous>' call
1508
- sort(tmp2_apply);
1509
- tmp$ret$2 = tmp2_apply;
1510
- return tmp$ret$2;
1511
- }
1512
- function filterNotNull_0(_this__u8e3s4) {
1513
- return filterNotNullTo_0(_this__u8e3s4, ArrayList_init_$Create$());
1514
- }
1515
- function filterNotNullTo_0(_this__u8e3s4, destination) {
1516
- var tmp0_iterator = _this__u8e3s4.f();
1517
- while (tmp0_iterator.g()) {
1518
- var element = tmp0_iterator.h();
1519
- if (!(element == null)) {
1520
- destination.a(element);
1521
- }
1522
- }
1523
- return destination;
1524
- }
1525
1525
  function asSequence(_this__u8e3s4) {
1526
1526
  var tmp$ret$0;
1527
1527
  // Inline function 'kotlin.sequences.Sequence' call
@@ -1546,8 +1546,8 @@ if (typeof Math.imul === 'undefined') {
1546
1546
  var accumulator = initial;
1547
1547
  if (!_this__u8e3s4.k()) {
1548
1548
  var iterator = _this__u8e3s4.m(_this__u8e3s4.i());
1549
- while (iterator.r()) {
1550
- accumulator = operation(iterator.s(), accumulator);
1549
+ while (iterator.n()) {
1550
+ accumulator = operation(iterator.o(), accumulator);
1551
1551
  }
1552
1552
  }
1553
1553
  return accumulator;
@@ -1613,6 +1613,24 @@ if (typeof Math.imul === 'undefined') {
1613
1613
  action(element);
1614
1614
  }
1615
1615
  }
1616
+ function asSequence_0(_this__u8e3s4) {
1617
+ return asSequence(_this__u8e3s4.a1());
1618
+ }
1619
+ function map_1(_this__u8e3s4, transform) {
1620
+ var tmp$ret$1;
1621
+ // Inline function 'kotlin.collections.mapTo' call
1622
+ var tmp0_mapTo = ArrayList_init_$Create$_0(_this__u8e3s4.i());
1623
+ var tmp$ret$0;
1624
+ // Inline function 'kotlin.collections.iterator' call
1625
+ tmp$ret$0 = _this__u8e3s4.a1().f();
1626
+ var tmp0_iterator = tmp$ret$0;
1627
+ while (tmp0_iterator.g()) {
1628
+ var item = tmp0_iterator.h();
1629
+ tmp0_mapTo.a(transform(item));
1630
+ }
1631
+ tmp$ret$1 = tmp0_mapTo;
1632
+ return tmp$ret$1;
1633
+ }
1616
1634
  function mapNotNull_0(_this__u8e3s4, transform) {
1617
1635
  var tmp$ret$2;
1618
1636
  // Inline function 'kotlin.collections.mapNotNullTo' call
@@ -1639,20 +1657,16 @@ if (typeof Math.imul === 'undefined') {
1639
1657
  tmp$ret$2 = tmp0_mapNotNullTo;
1640
1658
  return tmp$ret$2;
1641
1659
  }
1642
- function map_1(_this__u8e3s4, transform) {
1643
- var tmp$ret$1;
1644
- // Inline function 'kotlin.collections.mapTo' call
1645
- var tmp0_mapTo = ArrayList_init_$Create$_0(_this__u8e3s4.i());
1660
+ function mapTo_1(_this__u8e3s4, destination, transform) {
1646
1661
  var tmp$ret$0;
1647
1662
  // Inline function 'kotlin.collections.iterator' call
1648
1663
  tmp$ret$0 = _this__u8e3s4.a1().f();
1649
1664
  var tmp0_iterator = tmp$ret$0;
1650
1665
  while (tmp0_iterator.g()) {
1651
1666
  var item = tmp0_iterator.h();
1652
- tmp0_mapTo.a(transform(item));
1667
+ destination.a(transform(item));
1653
1668
  }
1654
- tmp$ret$1 = tmp0_mapTo;
1655
- return tmp$ret$1;
1669
+ return destination;
1656
1670
  }
1657
1671
  function mapNotNullTo_0(_this__u8e3s4, destination, transform) {
1658
1672
  // Inline function 'kotlin.collections.forEach' call
@@ -1676,20 +1690,6 @@ if (typeof Math.imul === 'undefined') {
1676
1690
  }
1677
1691
  return destination;
1678
1692
  }
1679
- function mapTo_1(_this__u8e3s4, destination, transform) {
1680
- var tmp$ret$0;
1681
- // Inline function 'kotlin.collections.iterator' call
1682
- tmp$ret$0 = _this__u8e3s4.a1().f();
1683
- var tmp0_iterator = tmp$ret$0;
1684
- while (tmp0_iterator.g()) {
1685
- var item = tmp0_iterator.h();
1686
- destination.a(transform(item));
1687
- }
1688
- return destination;
1689
- }
1690
- function asSequence_0(_this__u8e3s4) {
1691
- return asSequence(_this__u8e3s4.a1());
1692
- }
1693
1693
  function titlecaseImpl(_this__u8e3s4) {
1694
1694
  var tmp$ret$2;
1695
1695
  // Inline function 'kotlin.text.uppercase' call
@@ -2313,7 +2313,7 @@ if (typeof Math.imul === 'undefined') {
2313
2313
  var value = entry.c2();
2314
2314
  var tmp$ret$0;
2315
2315
  // Inline function 'kotlin.collections.get' call
2316
- tmp$ret$0 = (isInterface(this, Map) ? this : THROW_CCE()).n(key);
2316
+ tmp$ret$0 = (isInterface(this, Map) ? this : THROW_CCE()).s(key);
2317
2317
  var ourValue = tmp$ret$0;
2318
2318
  if (!equals_1(value, ourValue)) {
2319
2319
  return false;
@@ -2368,7 +2368,7 @@ if (typeof Math.imul === 'undefined') {
2368
2368
  }
2369
2369
  return tmp$ret$0;
2370
2370
  };
2371
- AbstractMap.prototype.n = function (key) {
2371
+ AbstractMap.prototype.s = function (key) {
2372
2372
  var tmp0_safe_receiver = implFindEntry(this, key);
2373
2373
  return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c2();
2374
2374
  };
@@ -2572,13 +2572,13 @@ if (typeof Math.imul === 'undefined') {
2572
2572
  EmptyIterator.prototype.g = function () {
2573
2573
  return false;
2574
2574
  };
2575
- EmptyIterator.prototype.r = function () {
2575
+ EmptyIterator.prototype.n = function () {
2576
2576
  return false;
2577
2577
  };
2578
2578
  EmptyIterator.prototype.h = function () {
2579
2579
  throw NoSuchElementException_init_$Create$();
2580
2580
  };
2581
- EmptyIterator.prototype.s = function () {
2581
+ EmptyIterator.prototype.o = function () {
2582
2582
  throw NoSuchElementException_init_$Create$();
2583
2583
  };
2584
2584
  EmptyIterator.$metadata$ = objectMeta('EmptyIterator', [ListIterator]);
@@ -2676,10 +2676,10 @@ if (typeof Math.imul === 'undefined') {
2676
2676
  while (tmp0_iterator_0.g()) {
2677
2677
  var e = tmp0_iterator_0.h();
2678
2678
  var key = _this__u8e3s4.y(e);
2679
- var accumulator = tmp2_aggregateTo.n(key);
2679
+ var accumulator = tmp2_aggregateTo.s(key);
2680
2680
  // Inline function 'kotlin.collections.set' call
2681
2681
  var tmp1_set = operation(key, accumulator, e, accumulator == null ? !tmp2_aggregateTo.j2(key) : false);
2682
- tmp2_aggregateTo.o(key, tmp1_set);
2682
+ tmp2_aggregateTo.p(key, tmp1_set);
2683
2683
  }
2684
2684
  tmp$ret$2 = tmp2_aggregateTo;
2685
2685
  return tmp$ret$2;
@@ -2696,10 +2696,10 @@ if (typeof Math.imul === 'undefined') {
2696
2696
  while (tmp0_iterator_0.g()) {
2697
2697
  var e = tmp0_iterator_0.h();
2698
2698
  var key = _this__u8e3s4.y(e);
2699
- var accumulator = destination.n(key);
2699
+ var accumulator = destination.s(key);
2700
2700
  // Inline function 'kotlin.collections.set' call
2701
2701
  var tmp1_set = operation(key, accumulator, e, accumulator == null ? !destination.j2(key) : false);
2702
- destination.o(key, tmp1_set);
2702
+ destination.p(key, tmp1_set);
2703
2703
  }
2704
2704
  return destination;
2705
2705
  }
@@ -2811,7 +2811,7 @@ if (typeof Math.imul === 'undefined') {
2811
2811
  var tmp$ret$0;
2812
2812
  $l$block: {
2813
2813
  // Inline function 'kotlin.collections.getOrElseNullable' call
2814
- var value = _this__u8e3s4.n(key);
2814
+ var value = _this__u8e3s4.s(key);
2815
2815
  if (value == null ? !_this__u8e3s4.j2(key) : false) {
2816
2816
  throw NoSuchElementException_init_$Create$_0('Key ' + key + ' is missing in the map.');
2817
2817
  } else {
@@ -2832,7 +2832,7 @@ if (typeof Math.imul === 'undefined') {
2832
2832
  return isInterface(tmp, Map) ? tmp : THROW_CCE();
2833
2833
  }
2834
2834
  function get_1(_this__u8e3s4, key) {
2835
- return (isInterface(_this__u8e3s4, Map) ? _this__u8e3s4 : THROW_CCE()).n(key);
2835
+ return (isInterface(_this__u8e3s4, Map) ? _this__u8e3s4 : THROW_CCE()).s(key);
2836
2836
  }
2837
2837
  function component1(_this__u8e3s4) {
2838
2838
  return _this__u8e3s4.a2();
@@ -2844,7 +2844,7 @@ if (typeof Math.imul === 'undefined') {
2844
2844
  return _this__u8e3s4.a1().f();
2845
2845
  }
2846
2846
  function set(_this__u8e3s4, key, value) {
2847
- _this__u8e3s4.o(key, value);
2847
+ _this__u8e3s4.p(key, value);
2848
2848
  }
2849
2849
  function getValue(_this__u8e3s4, key) {
2850
2850
  return getOrImplicitDefault(_this__u8e3s4, key);
@@ -2876,11 +2876,11 @@ if (typeof Math.imul === 'undefined') {
2876
2876
  return optimizeReadOnlyMap(toMap_1(_this__u8e3s4, LinkedHashMap_init_$Create$()));
2877
2877
  }
2878
2878
  function getOrPut(_this__u8e3s4, key, defaultValue) {
2879
- var value = _this__u8e3s4.n(key);
2879
+ var value = _this__u8e3s4.s(key);
2880
2880
  var tmp;
2881
2881
  if (value == null) {
2882
2882
  var answer = defaultValue();
2883
- _this__u8e3s4.o(key, answer);
2883
+ _this__u8e3s4.p(key, answer);
2884
2884
  tmp = answer;
2885
2885
  } else {
2886
2886
  tmp = value;
@@ -2890,23 +2890,6 @@ if (typeof Math.imul === 'undefined') {
2890
2890
  function hashMapOf() {
2891
2891
  return HashMap_init_$Create$();
2892
2892
  }
2893
- function filter_2(_this__u8e3s4, predicate) {
2894
- var tmp$ret$1;
2895
- // Inline function 'kotlin.collections.filterTo' call
2896
- var tmp0_filterTo = LinkedHashMap_init_$Create$();
2897
- var tmp$ret$0;
2898
- // Inline function 'kotlin.collections.iterator' call
2899
- tmp$ret$0 = _this__u8e3s4.a1().f();
2900
- var tmp0_iterator = tmp$ret$0;
2901
- while (tmp0_iterator.g()) {
2902
- var element = tmp0_iterator.h();
2903
- if (predicate(element)) {
2904
- tmp0_filterTo.o(element.a2(), element.c2());
2905
- }
2906
- }
2907
- tmp$ret$1 = tmp0_filterTo;
2908
- return tmp$ret$1;
2909
- }
2910
2893
  function mapValues(_this__u8e3s4, transform) {
2911
2894
  var tmp$ret$2;
2912
2895
  // Inline function 'kotlin.collections.mapValuesTo' call
@@ -2920,15 +2903,12 @@ if (typeof Math.imul === 'undefined') {
2920
2903
  var tmp$ret$0;
2921
2904
  // Inline function 'kotlin.collections.mapValuesTo.<anonymous>' call
2922
2905
  tmp$ret$0 = element.a2();
2923
- tmp1_mapValuesTo.o(tmp$ret$0, transform(element));
2906
+ tmp1_mapValuesTo.p(tmp$ret$0, transform(element));
2924
2907
  }
2925
2908
  tmp$ret$1 = tmp1_mapValuesTo;
2926
2909
  tmp$ret$2 = tmp$ret$1;
2927
2910
  return tmp$ret$2;
2928
2911
  }
2929
- function plusAssign(_this__u8e3s4, pair) {
2930
- _this__u8e3s4.o(pair.p_1, pair.q_1);
2931
- }
2932
2912
  function toMap_0(_this__u8e3s4, destination) {
2933
2913
  var tmp$ret$0;
2934
2914
  // Inline function 'kotlin.apply' call
@@ -2974,7 +2954,7 @@ if (typeof Math.imul === 'undefined') {
2974
2954
  EmptyMap.prototype.j3 = function (key) {
2975
2955
  return null;
2976
2956
  };
2977
- EmptyMap.prototype.n = function (key) {
2957
+ EmptyMap.prototype.s = function (key) {
2978
2958
  if (!(key == null ? true : isObject(key)))
2979
2959
  return null;
2980
2960
  return this.j3((key == null ? true : isObject(key)) ? key : THROW_CCE());
@@ -3021,19 +3001,6 @@ if (typeof Math.imul === 'undefined') {
3021
3001
  }
3022
3002
  return tmp;
3023
3003
  }
3024
- function filterTo_1(_this__u8e3s4, destination, predicate) {
3025
- var tmp$ret$0;
3026
- // Inline function 'kotlin.collections.iterator' call
3027
- tmp$ret$0 = _this__u8e3s4.a1().f();
3028
- var tmp0_iterator = tmp$ret$0;
3029
- while (tmp0_iterator.g()) {
3030
- var element = tmp0_iterator.h();
3031
- if (predicate(element)) {
3032
- destination.o(element.a2(), element.c2());
3033
- }
3034
- }
3035
- return destination;
3036
- }
3037
3004
  function mapValuesTo(_this__u8e3s4, destination, transform) {
3038
3005
  var tmp$ret$1;
3039
3006
  // Inline function 'kotlin.collections.associateByTo' call
@@ -3044,7 +3011,7 @@ if (typeof Math.imul === 'undefined') {
3044
3011
  var tmp$ret$0;
3045
3012
  // Inline function 'kotlin.collections.mapValuesTo.<anonymous>' call
3046
3013
  tmp$ret$0 = element.a2();
3047
- destination.o(tmp$ret$0, transform(element));
3014
+ destination.p(tmp$ret$0, transform(element));
3048
3015
  }
3049
3016
  tmp$ret$1 = destination;
3050
3017
  return tmp$ret$1;
@@ -3058,7 +3025,7 @@ if (typeof Math.imul === 'undefined') {
3058
3025
  inductionVariable = inductionVariable + 1 | 0;
3059
3026
  var key = tmp1_loop_parameter.k3();
3060
3027
  var value = tmp1_loop_parameter.l3();
3061
- _this__u8e3s4.o(key, value);
3028
+ _this__u8e3s4.p(key, value);
3062
3029
  }
3063
3030
  }
3064
3031
  function putAll_0(_this__u8e3s4, pairs) {
@@ -3067,7 +3034,7 @@ if (typeof Math.imul === 'undefined') {
3067
3034
  var tmp1_loop_parameter = tmp0_iterator.h();
3068
3035
  var key = tmp1_loop_parameter.k3();
3069
3036
  var value = tmp1_loop_parameter.l3();
3070
- _this__u8e3s4.o(key, value);
3037
+ _this__u8e3s4.p(key, value);
3071
3038
  }
3072
3039
  }
3073
3040
  function hashMapOf_0(pairs) {
@@ -3081,7 +3048,7 @@ if (typeof Math.imul === 'undefined') {
3081
3048
  return tmp$ret$0;
3082
3049
  }
3083
3050
  function getOrElseNullable(_this__u8e3s4, key, defaultValue) {
3084
- var value = _this__u8e3s4.n(key);
3051
+ var value = _this__u8e3s4.s(key);
3085
3052
  if (value == null ? !_this__u8e3s4.j2(key) : false) {
3086
3053
  return defaultValue();
3087
3054
  } else {
@@ -3100,6 +3067,39 @@ if (typeof Math.imul === 'undefined') {
3100
3067
  tmp$ret$0 = (isInterface(_this__u8e3s4, Map) ? _this__u8e3s4 : THROW_CCE()).j2(key);
3101
3068
  return tmp$ret$0;
3102
3069
  }
3070
+ function filter_2(_this__u8e3s4, predicate) {
3071
+ var tmp$ret$1;
3072
+ // Inline function 'kotlin.collections.filterTo' call
3073
+ var tmp0_filterTo = LinkedHashMap_init_$Create$();
3074
+ var tmp$ret$0;
3075
+ // Inline function 'kotlin.collections.iterator' call
3076
+ tmp$ret$0 = _this__u8e3s4.a1().f();
3077
+ var tmp0_iterator = tmp$ret$0;
3078
+ while (tmp0_iterator.g()) {
3079
+ var element = tmp0_iterator.h();
3080
+ if (predicate(element)) {
3081
+ tmp0_filterTo.p(element.a2(), element.c2());
3082
+ }
3083
+ }
3084
+ tmp$ret$1 = tmp0_filterTo;
3085
+ return tmp$ret$1;
3086
+ }
3087
+ function plusAssign(_this__u8e3s4, pair) {
3088
+ _this__u8e3s4.p(pair.q_1, pair.r_1);
3089
+ }
3090
+ function filterTo_1(_this__u8e3s4, destination, predicate) {
3091
+ var tmp$ret$0;
3092
+ // Inline function 'kotlin.collections.iterator' call
3093
+ tmp$ret$0 = _this__u8e3s4.a1().f();
3094
+ var tmp0_iterator = tmp$ret$0;
3095
+ while (tmp0_iterator.g()) {
3096
+ var element = tmp0_iterator.h();
3097
+ if (predicate(element)) {
3098
+ destination.p(element.a2(), element.c2());
3099
+ }
3100
+ }
3101
+ return destination;
3102
+ }
3103
3103
  function mutableMapOf() {
3104
3104
  return LinkedHashMap_init_$Create$();
3105
3105
  }
@@ -4787,14 +4787,6 @@ if (typeof Math.imul === 'undefined') {
4787
4787
  function isNotBlank(_this__u8e3s4) {
4788
4788
  return !isBlank(_this__u8e3s4);
4789
4789
  }
4790
- function orEmpty_1(_this__u8e3s4) {
4791
- var tmp0_elvis_lhs = _this__u8e3s4;
4792
- return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
4793
- }
4794
- function isNullOrEmpty_0(_this__u8e3s4) {
4795
- // Inline function 'kotlin.contracts.contract' call
4796
- return _this__u8e3s4 == null ? true : charSequenceLength(_this__u8e3s4) === 0;
4797
- }
4798
4790
  function padStart(_this__u8e3s4, length, padChar) {
4799
4791
  return toString_2(padStart_0(isCharSequence(_this__u8e3s4) ? _this__u8e3s4 : THROW_CCE(), length, padChar));
4800
4792
  }
@@ -5014,6 +5006,14 @@ if (typeof Math.imul === 'undefined') {
5014
5006
  // Inline function 'kotlin.contracts.contract' call
5015
5007
  return _this__u8e3s4 == null ? true : isBlank(_this__u8e3s4);
5016
5008
  }
5009
+ function orEmpty_1(_this__u8e3s4) {
5010
+ var tmp0_elvis_lhs = _this__u8e3s4;
5011
+ return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
5012
+ }
5013
+ function isNullOrEmpty_0(_this__u8e3s4) {
5014
+ // Inline function 'kotlin.contracts.contract' call
5015
+ return _this__u8e3s4 == null ? true : charSequenceLength(_this__u8e3s4) === 0;
5016
+ }
5017
5017
  function isNotEmpty_1(_this__u8e3s4) {
5018
5018
  return charSequenceLength(_this__u8e3s4) > 0;
5019
5019
  }
@@ -5345,7 +5345,7 @@ if (typeof Math.imul === 'undefined') {
5345
5345
  // Inline function 'kotlin.contracts.contract' call
5346
5346
  var tmp$ret$0;
5347
5347
  // Inline function 'kotlin.text.rangesDelimitedBy.<anonymous>.<anonymous>' call
5348
- tmp$ret$0 = to(tmp0_safe_receiver.p_1, tmp0_safe_receiver.q_1.length);
5348
+ tmp$ret$0 = to(tmp0_safe_receiver.q_1, tmp0_safe_receiver.r_1.length);
5349
5349
  tmp$ret$1 = tmp$ret$0;
5350
5350
  tmp = tmp$ret$1;
5351
5351
  }
@@ -6862,27 +6862,27 @@ if (typeof Math.imul === 'undefined') {
6862
6862
  return !predicate(_this__u8e3s4) ? _this__u8e3s4 : null;
6863
6863
  }
6864
6864
  function Pair(first, second) {
6865
- this.p_1 = first;
6866
- this.q_1 = second;
6865
+ this.q_1 = first;
6866
+ this.r_1 = second;
6867
6867
  }
6868
6868
  Pair.prototype.z8 = function () {
6869
- return this.p_1;
6869
+ return this.q_1;
6870
6870
  };
6871
6871
  Pair.prototype.a9 = function () {
6872
- return this.q_1;
6872
+ return this.r_1;
6873
6873
  };
6874
6874
  Pair.prototype.toString = function () {
6875
- return '(' + this.p_1 + ', ' + this.q_1 + ')';
6875
+ return '(' + this.q_1 + ', ' + this.r_1 + ')';
6876
6876
  };
6877
6877
  Pair.prototype.k3 = function () {
6878
- return this.p_1;
6878
+ return this.q_1;
6879
6879
  };
6880
6880
  Pair.prototype.l3 = function () {
6881
- return this.q_1;
6881
+ return this.r_1;
6882
6882
  };
6883
6883
  Pair.prototype.hashCode = function () {
6884
- var result = this.p_1 == null ? 0 : hashCode_0(this.p_1);
6885
- result = imul(result, 31) + (this.q_1 == null ? 0 : hashCode_0(this.q_1)) | 0;
6884
+ var result = this.q_1 == null ? 0 : hashCode_0(this.q_1);
6885
+ result = imul(result, 31) + (this.r_1 == null ? 0 : hashCode_0(this.r_1)) | 0;
6886
6886
  return result;
6887
6887
  };
6888
6888
  Pair.prototype.equals = function (other) {
@@ -6891,10 +6891,10 @@ if (typeof Math.imul === 'undefined') {
6891
6891
  if (!(other instanceof Pair))
6892
6892
  return false;
6893
6893
  var tmp0_other_with_cast = other instanceof Pair ? other : THROW_CCE();
6894
- if (!equals_1(this.p_1, tmp0_other_with_cast.p_1))
6895
- return false;
6896
6894
  if (!equals_1(this.q_1, tmp0_other_with_cast.q_1))
6897
6895
  return false;
6896
+ if (!equals_1(this.r_1, tmp0_other_with_cast.r_1))
6897
+ return false;
6898
6898
  return true;
6899
6899
  };
6900
6900
  Pair.$metadata$ = classMeta('Pair', [Serializable]);
@@ -8722,9 +8722,6 @@ if (typeof Math.imul === 'undefined') {
8722
8722
  function listOf_0(element) {
8723
8723
  return arrayListOf_0([element]);
8724
8724
  }
8725
- function mapOf_0(pair) {
8726
- return hashMapOf_0([pair]);
8727
- }
8728
8725
  function mapCapacity(expectedSize) {
8729
8726
  return expectedSize;
8730
8727
  }
@@ -8775,6 +8772,9 @@ if (typeof Math.imul === 'undefined') {
8775
8772
  }
8776
8773
  }
8777
8774
  }
8775
+ function mapOf_0(pair) {
8776
+ return hashMapOf_0([pair]);
8777
+ }
8778
8778
  function toSingletonMapOrSelf(_this__u8e3s4) {
8779
8779
  return _this__u8e3s4;
8780
8780
  }
@@ -8917,11 +8917,11 @@ if (typeof Math.imul === 'undefined') {
8917
8917
  Companion_getInstance().u1(index, this.uc_1.i());
8918
8918
  this.nc_1 = index;
8919
8919
  }
8920
- ListIteratorImpl.prototype.r = function () {
8920
+ ListIteratorImpl.prototype.n = function () {
8921
8921
  return this.nc_1 > 0;
8922
8922
  };
8923
- ListIteratorImpl.prototype.s = function () {
8924
- if (!this.r())
8923
+ ListIteratorImpl.prototype.o = function () {
8924
+ if (!this.n())
8925
8925
  throw NoSuchElementException_init_$Create$();
8926
8926
  var tmp = this;
8927
8927
  var tmp0_this = this;
@@ -9145,7 +9145,7 @@ if (typeof Math.imul === 'undefined') {
9145
9145
  // Inline function 'kotlin.collections.component2' call
9146
9146
  tmp$ret$2 = tmp1_loop_parameter.c2();
9147
9147
  var value = tmp$ret$2;
9148
- this.o(key, value);
9148
+ this.p(key, value);
9149
9149
  }
9150
9150
  };
9151
9151
  AbstractMutableMap.prototype.od = function (key) {
@@ -9651,11 +9651,11 @@ if (typeof Math.imul === 'undefined') {
9651
9651
  HashMap.prototype.de = function () {
9652
9652
  return new EntrySet(this);
9653
9653
  };
9654
- HashMap.prototype.n = function (key) {
9655
- return this.zd_1.n(key);
9654
+ HashMap.prototype.s = function (key) {
9655
+ return this.zd_1.s(key);
9656
9656
  };
9657
- HashMap.prototype.o = function (key, value) {
9658
- return this.zd_1.o(key, value);
9657
+ HashMap.prototype.p = function (key, value) {
9658
+ return this.zd_1.p(key, value);
9659
9659
  };
9660
9660
  HashMap.prototype.od = function (key) {
9661
9661
  return this.zd_1.od(key);
@@ -9706,7 +9706,7 @@ if (typeof Math.imul === 'undefined') {
9706
9706
  return $this;
9707
9707
  }
9708
9708
  HashSet.prototype.a = function (element) {
9709
- var old = this.ee_1.o(element, this);
9709
+ var old = this.ee_1.p(element, this);
9710
9710
  return old == null;
9711
9711
  };
9712
9712
  HashSet.prototype.r1 = function (element) {
@@ -9873,7 +9873,7 @@ if (typeof Math.imul === 'undefined') {
9873
9873
  InternalHashCodeMap.prototype.i = function () {
9874
9874
  return this.pe_1;
9875
9875
  };
9876
- InternalHashCodeMap.prototype.o = function (key, value) {
9876
+ InternalHashCodeMap.prototype.p = function (key, value) {
9877
9877
  var hashCode = this.ne_1.sd(key);
9878
9878
  var chainOrEntry = getChainOrEntryOrNull(this, hashCode);
9879
9879
  if (chainOrEntry == null) {
@@ -9973,7 +9973,7 @@ if (typeof Math.imul === 'undefined') {
9973
9973
  InternalHashCodeMap.prototype.g2 = function (key) {
9974
9974
  return !(getEntry(this, key) == null);
9975
9975
  };
9976
- InternalHashCodeMap.prototype.n = function (key) {
9976
+ InternalHashCodeMap.prototype.s = function (key) {
9977
9977
  var tmp0_safe_receiver = getEntry(this, key);
9978
9978
  return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c2();
9979
9979
  };
@@ -10169,16 +10169,16 @@ if (typeof Math.imul === 'undefined') {
10169
10169
  LinkedHashMap.prototype.de = function () {
10170
10170
  return new EntrySet_0(this);
10171
10171
  };
10172
- LinkedHashMap.prototype.n = function (key) {
10173
- var tmp0_safe_receiver = this.cf_1.n(key);
10172
+ LinkedHashMap.prototype.s = function (key) {
10173
+ var tmp0_safe_receiver = this.cf_1.s(key);
10174
10174
  return tmp0_safe_receiver == null ? null : tmp0_safe_receiver.c2();
10175
10175
  };
10176
- LinkedHashMap.prototype.o = function (key, value) {
10176
+ LinkedHashMap.prototype.p = function (key, value) {
10177
10177
  this.lc();
10178
- var old = this.cf_1.n(key);
10178
+ var old = this.cf_1.s(key);
10179
10179
  if (old == null) {
10180
10180
  var newEntry = new ChainEntry(this, key, value);
10181
- this.cf_1.o(key, newEntry);
10181
+ this.cf_1.p(key, newEntry);
10182
10182
  addToEnd(newEntry, this);
10183
10183
  return null;
10184
10184
  } else {