raspberry_games_server_game_logic 1.8.266 → 1.8.268
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/Logic_Debertz-core.js +866 -819
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +9712 -9787
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +6 -5
- package/Logic_Debertz-game_server.js +622 -576
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +4 -4
- package/kotlinx-coroutines-core.js +9 -9
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
var coerceAtLeast = kotlin_kotlin.$_$.dd;
|
|
113
113
|
var LinkedHashMap_init_$Create$ = kotlin_kotlin.$_$.v;
|
|
114
114
|
var ensureNotNull = kotlin_kotlin.$_$.ih;
|
|
115
|
+
var DoubleSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.p;
|
|
115
116
|
var BooleanSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.o;
|
|
116
117
|
var FloatSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.q;
|
|
117
118
|
var ArrayListSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.u1;
|
|
@@ -263,16 +264,16 @@
|
|
|
263
264
|
initMetadataForClass(RulesDto, 'RulesDto', RulesDto, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_6});
|
|
264
265
|
initMetadataForClass(CardGrowthComparator, 'CardGrowthComparator', VOID, VOID, [Comparator]);
|
|
265
266
|
function launchDefault$default(context, block, $super) {
|
|
266
|
-
context = context === VOID ? this.
|
|
267
|
-
return $super === VOID ? this.
|
|
267
|
+
context = context === VOID ? this.h6c() : context;
|
|
268
|
+
return $super === VOID ? this.i6c(context, block) : $super.i6c.call(this, context, block);
|
|
268
269
|
}
|
|
269
270
|
function launchDefaultWithLock$default(context, block, $super) {
|
|
270
|
-
context = context === VOID ? this.
|
|
271
|
-
return $super === VOID ? this.
|
|
271
|
+
context = context === VOID ? this.h6c() : context;
|
|
272
|
+
return $super === VOID ? this.k6c(context, block) : $super.k6c.call(this, context, block);
|
|
272
273
|
}
|
|
273
274
|
function launchMain$default(context, block, $super) {
|
|
274
|
-
context = context === VOID ? this.
|
|
275
|
-
return $super === VOID ? this.
|
|
275
|
+
context = context === VOID ? this.h6c() : context;
|
|
276
|
+
return $super === VOID ? this.m6c(context, block) : $super.m6c.call(this, context, block);
|
|
276
277
|
}
|
|
277
278
|
initMetadataForInterface(AsyncProvider, 'AsyncProvider');
|
|
278
279
|
initMetadataForClass(_no_name_provided__qut3iv, VOID, VOID, AbstractCoroutineContextElement, [AbstractCoroutineContextElement, Element]);
|
|
@@ -355,7 +356,7 @@
|
|
|
355
356
|
tmp = types;
|
|
356
357
|
}
|
|
357
358
|
types = tmp;
|
|
358
|
-
return this.
|
|
359
|
+
return this.f6l(types);
|
|
359
360
|
}
|
|
360
361
|
initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
|
|
361
362
|
initMetadataForCompanion(Companion_18);
|
|
@@ -365,7 +366,7 @@
|
|
|
365
366
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
366
367
|
//endregion
|
|
367
368
|
function GameEngineConfig() {
|
|
368
|
-
this.version = '1.8.
|
|
369
|
+
this.version = '1.8.268';
|
|
369
370
|
}
|
|
370
371
|
protoOf(GameEngineConfig).a2w = function () {
|
|
371
372
|
return this.version;
|
|
@@ -1170,15 +1171,17 @@
|
|
|
1170
1171
|
Exception_init_$Init$(message, this);
|
|
1171
1172
|
captureStack(this, MechanicException);
|
|
1172
1173
|
}
|
|
1173
|
-
function GameUserInfo(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload) {
|
|
1174
|
+
function GameUserInfo(playerId, name, avatarUrl, isBot, rating, initialLuckyFactor, payload) {
|
|
1174
1175
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
1175
1176
|
isBot = isBot === VOID ? false : isBot;
|
|
1177
|
+
rating = rating === VOID ? null : rating;
|
|
1176
1178
|
initialLuckyFactor = initialLuckyFactor === VOID ? null : initialLuckyFactor;
|
|
1177
1179
|
payload = payload === VOID ? null : payload;
|
|
1178
1180
|
this.f67_1 = playerId;
|
|
1179
1181
|
this.name = name;
|
|
1180
1182
|
this.avatarUrl = avatarUrl;
|
|
1181
1183
|
this.isBot = isBot;
|
|
1184
|
+
this.rating = rating;
|
|
1182
1185
|
this.initialLuckyFactor = initialLuckyFactor;
|
|
1183
1186
|
this.payload = payload;
|
|
1184
1187
|
}
|
|
@@ -1195,11 +1198,18 @@
|
|
|
1195
1198
|
return this.isBot;
|
|
1196
1199
|
};
|
|
1197
1200
|
protoOf(GameUserInfo).i67 = function () {
|
|
1198
|
-
return this.
|
|
1201
|
+
return this.rating;
|
|
1199
1202
|
};
|
|
1200
1203
|
protoOf(GameUserInfo).j67 = function () {
|
|
1204
|
+
return this.initialLuckyFactor;
|
|
1205
|
+
};
|
|
1206
|
+
protoOf(GameUserInfo).k67 = function () {
|
|
1201
1207
|
return this.payload;
|
|
1202
1208
|
};
|
|
1209
|
+
protoOf(GameUserInfo).getRatingOrDefault = function (initialUserRating) {
|
|
1210
|
+
var tmp0_elvis_lhs = this.rating;
|
|
1211
|
+
return tmp0_elvis_lhs == null ? initialUserRating : tmp0_elvis_lhs;
|
|
1212
|
+
};
|
|
1203
1213
|
protoOf(GameUserInfo).toString = function () {
|
|
1204
1214
|
var tmp = 'playerId=' + this.f67_1;
|
|
1205
1215
|
var tmp_0 = 'name=' + this.name;
|
|
@@ -1237,17 +1247,28 @@
|
|
|
1237
1247
|
}
|
|
1238
1248
|
var tmp_6 = tmp_5;
|
|
1239
1249
|
// Inline function 'kotlin.takeIf' call
|
|
1240
|
-
var this_3 = '
|
|
1250
|
+
var this_3 = 'rating=' + this.rating;
|
|
1241
1251
|
// Inline function 'kotlin.contracts.contract' call
|
|
1242
1252
|
var tmp_7;
|
|
1243
1253
|
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1244
|
-
if (!(this.
|
|
1254
|
+
if (!(this.rating == null)) {
|
|
1245
1255
|
tmp_7 = this_3;
|
|
1246
1256
|
} else {
|
|
1247
1257
|
tmp_7 = null;
|
|
1248
1258
|
}
|
|
1249
|
-
var
|
|
1250
|
-
|
|
1259
|
+
var tmp_8 = tmp_7;
|
|
1260
|
+
// Inline function 'kotlin.takeIf' call
|
|
1261
|
+
var this_4 = 'payload=' + toString(this.payload);
|
|
1262
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
1263
|
+
var tmp_9;
|
|
1264
|
+
// Inline function 'com.logic.data.models.player.GameUserInfo.toString.<anonymous>' call
|
|
1265
|
+
if (!(this.payload == null)) {
|
|
1266
|
+
tmp_9 = this_4;
|
|
1267
|
+
} else {
|
|
1268
|
+
tmp_9 = null;
|
|
1269
|
+
}
|
|
1270
|
+
var tmp$ret$9 = tmp_9;
|
|
1271
|
+
return 'GameUserInfo(' + joinToString(listOfNotNull([tmp, tmp_0, tmp_2, tmp_4, tmp_6, tmp_8, tmp$ret$9])) + ')';
|
|
1251
1272
|
};
|
|
1252
1273
|
protoOf(GameUserInfo).pe = function () {
|
|
1253
1274
|
return this.f67_1;
|
|
@@ -1261,29 +1282,34 @@
|
|
|
1261
1282
|
protoOf(GameUserInfo).j5j = function () {
|
|
1262
1283
|
return this.isBot;
|
|
1263
1284
|
};
|
|
1264
|
-
protoOf(GameUserInfo).
|
|
1285
|
+
protoOf(GameUserInfo).l67 = function () {
|
|
1286
|
+
return this.rating;
|
|
1287
|
+
};
|
|
1288
|
+
protoOf(GameUserInfo).m67 = function () {
|
|
1265
1289
|
return this.initialLuckyFactor;
|
|
1266
1290
|
};
|
|
1267
|
-
protoOf(GameUserInfo).
|
|
1291
|
+
protoOf(GameUserInfo).n67 = function () {
|
|
1268
1292
|
return this.payload;
|
|
1269
1293
|
};
|
|
1270
|
-
protoOf(GameUserInfo).
|
|
1271
|
-
return new GameUserInfo(playerId, name, avatarUrl, isBot, initialLuckyFactor, payload);
|
|
1294
|
+
protoOf(GameUserInfo).o67 = function (playerId, name, avatarUrl, isBot, rating, initialLuckyFactor, payload) {
|
|
1295
|
+
return new GameUserInfo(playerId, name, avatarUrl, isBot, rating, initialLuckyFactor, payload);
|
|
1272
1296
|
};
|
|
1273
|
-
protoOf(GameUserInfo).copy = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, payload, $super) {
|
|
1297
|
+
protoOf(GameUserInfo).copy = function (playerId, name, avatarUrl, isBot, rating, initialLuckyFactor, payload, $super) {
|
|
1274
1298
|
playerId = playerId === VOID ? this.f67_1 : playerId;
|
|
1275
1299
|
name = name === VOID ? this.name : name;
|
|
1276
1300
|
avatarUrl = avatarUrl === VOID ? this.avatarUrl : avatarUrl;
|
|
1277
1301
|
isBot = isBot === VOID ? this.isBot : isBot;
|
|
1302
|
+
rating = rating === VOID ? this.rating : rating;
|
|
1278
1303
|
initialLuckyFactor = initialLuckyFactor === VOID ? this.initialLuckyFactor : initialLuckyFactor;
|
|
1279
1304
|
payload = payload === VOID ? this.payload : payload;
|
|
1280
|
-
return this.
|
|
1305
|
+
return this.o67(playerId, name, avatarUrl, isBot, rating, initialLuckyFactor, payload);
|
|
1281
1306
|
};
|
|
1282
1307
|
protoOf(GameUserInfo).hashCode = function () {
|
|
1283
1308
|
var result = getStringHashCode(this.f67_1);
|
|
1284
1309
|
result = imul(result, 31) + getStringHashCode(this.name) | 0;
|
|
1285
1310
|
result = imul(result, 31) + (this.avatarUrl == null ? 0 : getStringHashCode(this.avatarUrl)) | 0;
|
|
1286
1311
|
result = imul(result, 31) + getBooleanHashCode(this.isBot) | 0;
|
|
1312
|
+
result = imul(result, 31) + (this.rating == null ? 0 : getNumberHashCode(this.rating)) | 0;
|
|
1287
1313
|
result = imul(result, 31) + (this.initialLuckyFactor == null ? 0 : getNumberHashCode(this.initialLuckyFactor)) | 0;
|
|
1288
1314
|
result = imul(result, 31) + (this.payload == null ? 0 : hashCode(this.payload)) | 0;
|
|
1289
1315
|
return result;
|
|
@@ -1302,6 +1328,8 @@
|
|
|
1302
1328
|
return false;
|
|
1303
1329
|
if (!(this.isBot === tmp0_other_with_cast.isBot))
|
|
1304
1330
|
return false;
|
|
1331
|
+
if (!equals(this.rating, tmp0_other_with_cast.rating))
|
|
1332
|
+
return false;
|
|
1305
1333
|
if (!equals(this.initialLuckyFactor, tmp0_other_with_cast.initialLuckyFactor))
|
|
1306
1334
|
return false;
|
|
1307
1335
|
if (!equals(this.payload, tmp0_other_with_cast.payload))
|
|
@@ -1359,30 +1387,30 @@
|
|
|
1359
1387
|
function Player() {
|
|
1360
1388
|
}
|
|
1361
1389
|
function PlayerIdOrderComparator(players) {
|
|
1362
|
-
this.
|
|
1390
|
+
this.r67_1 = players;
|
|
1363
1391
|
}
|
|
1364
|
-
protoOf(PlayerIdOrderComparator).
|
|
1365
|
-
var indexA = this.
|
|
1366
|
-
var indexB = this.
|
|
1392
|
+
protoOf(PlayerIdOrderComparator).s67 = function (a, b) {
|
|
1393
|
+
var indexA = this.r67_1.u1(a);
|
|
1394
|
+
var indexB = this.r67_1.u1(b);
|
|
1367
1395
|
return compareTo(indexA, indexB);
|
|
1368
1396
|
};
|
|
1369
1397
|
protoOf(PlayerIdOrderComparator).compare = function (a, b) {
|
|
1370
1398
|
var tmp = (!(a == null) ? typeof a === 'string' : false) ? a : THROW_CCE();
|
|
1371
|
-
return this.
|
|
1399
|
+
return this.s67(tmp, (!(b == null) ? typeof b === 'string' : false) ? b : THROW_CCE());
|
|
1372
1400
|
};
|
|
1373
1401
|
function PlayerIndex(playerId, index) {
|
|
1374
|
-
this.
|
|
1375
|
-
this.
|
|
1402
|
+
this.t67_1 = playerId;
|
|
1403
|
+
this.u67_1 = index;
|
|
1376
1404
|
}
|
|
1377
1405
|
protoOf(PlayerIndex).q66 = function () {
|
|
1378
|
-
return this.
|
|
1406
|
+
return this.t67_1;
|
|
1379
1407
|
};
|
|
1380
1408
|
protoOf(PlayerIndex).toString = function () {
|
|
1381
|
-
return 'PlayerIndex(playerId=' + this.
|
|
1409
|
+
return 'PlayerIndex(playerId=' + this.t67_1 + ', index=' + this.u67_1 + ')';
|
|
1382
1410
|
};
|
|
1383
1411
|
protoOf(PlayerIndex).hashCode = function () {
|
|
1384
|
-
var result = getStringHashCode(this.
|
|
1385
|
-
result = imul(result, 31) + this.
|
|
1412
|
+
var result = getStringHashCode(this.t67_1);
|
|
1413
|
+
result = imul(result, 31) + this.u67_1 | 0;
|
|
1386
1414
|
return result;
|
|
1387
1415
|
};
|
|
1388
1416
|
protoOf(PlayerIndex).equals = function (other) {
|
|
@@ -1391,9 +1419,9 @@
|
|
|
1391
1419
|
if (!(other instanceof PlayerIndex))
|
|
1392
1420
|
return false;
|
|
1393
1421
|
var tmp0_other_with_cast = other instanceof PlayerIndex ? other : THROW_CCE();
|
|
1394
|
-
if (!(this.
|
|
1422
|
+
if (!(this.t67_1 === tmp0_other_with_cast.t67_1))
|
|
1395
1423
|
return false;
|
|
1396
|
-
if (!(this.
|
|
1424
|
+
if (!(this.u67_1 === tmp0_other_with_cast.u67_1))
|
|
1397
1425
|
return false;
|
|
1398
1426
|
return true;
|
|
1399
1427
|
};
|
|
@@ -1428,16 +1456,16 @@
|
|
|
1428
1456
|
return destination;
|
|
1429
1457
|
}
|
|
1430
1458
|
function PlayerIdContractOrderComparator(players) {
|
|
1431
|
-
this.
|
|
1459
|
+
this.v67_1 = players;
|
|
1432
1460
|
}
|
|
1433
|
-
protoOf(PlayerIdContractOrderComparator).
|
|
1434
|
-
var indexA = this.
|
|
1435
|
-
var indexB = this.
|
|
1461
|
+
protoOf(PlayerIdContractOrderComparator).w67 = function (a, b) {
|
|
1462
|
+
var indexA = this.v67_1.u1(a.playerId);
|
|
1463
|
+
var indexB = this.v67_1.u1(b.playerId);
|
|
1436
1464
|
return compareTo(indexA, indexB);
|
|
1437
1465
|
};
|
|
1438
1466
|
protoOf(PlayerIdContractOrderComparator).compare = function (a, b) {
|
|
1439
1467
|
var tmp = (!(a == null) ? isInterface(a, PlayerIdContract) : false) ? a : THROW_CCE();
|
|
1440
|
-
return this.
|
|
1468
|
+
return this.w67(tmp, (!(b == null) ? isInterface(b, PlayerIdContract) : false) ? b : THROW_CCE());
|
|
1441
1469
|
};
|
|
1442
1470
|
function previousPlayerId(_this__u8e3s4, playerId) {
|
|
1443
1471
|
_init_properties_Player_kt__qi83pd();
|
|
@@ -1458,7 +1486,7 @@
|
|
|
1458
1486
|
}
|
|
1459
1487
|
function playerTurnPredicate$lambda(p1) {
|
|
1460
1488
|
_init_properties_Player_kt__qi83pd();
|
|
1461
|
-
return p1.
|
|
1489
|
+
return p1.p67().e68();
|
|
1462
1490
|
}
|
|
1463
1491
|
var properties_initialized_Player_kt_56shkt;
|
|
1464
1492
|
function _init_properties_Player_kt__qi83pd() {
|
|
@@ -1469,32 +1497,32 @@
|
|
|
1469
1497
|
}
|
|
1470
1498
|
}
|
|
1471
1499
|
function Companion_5() {
|
|
1472
|
-
this.
|
|
1500
|
+
this.f68_1 = 75;
|
|
1473
1501
|
}
|
|
1474
|
-
protoOf(Companion_5).
|
|
1502
|
+
protoOf(Companion_5).g68 = function (state, timeout) {
|
|
1475
1503
|
return new PlayerConnection(state, System_instance.i52().y5h(timeout));
|
|
1476
1504
|
};
|
|
1477
|
-
protoOf(Companion_5).
|
|
1505
|
+
protoOf(Companion_5).h68 = function (state, timeout, $super) {
|
|
1478
1506
|
timeout = timeout === VOID ? Companion_getInstance().lj_1 : timeout;
|
|
1479
|
-
return $super === VOID ? this.
|
|
1507
|
+
return $super === VOID ? this.g68(state, timeout) : $super.g68.call(this, state, new Duration(timeout));
|
|
1480
1508
|
};
|
|
1481
|
-
protoOf(Companion_5).
|
|
1509
|
+
protoOf(Companion_5).i68 = function (_this__u8e3s4) {
|
|
1482
1510
|
if (_this__u8e3s4 == null) {
|
|
1483
1511
|
return new PlayerConnection(PlayerConnectionState_LIVE_getInstance(), System_instance.i52());
|
|
1484
1512
|
}
|
|
1485
1513
|
var tmp;
|
|
1486
|
-
if (_this__u8e3s4.
|
|
1487
|
-
tmp = _this__u8e3s4.
|
|
1514
|
+
if (_this__u8e3s4.j68_1.isLive) {
|
|
1515
|
+
tmp = _this__u8e3s4.o68(VOID, System_instance.i52());
|
|
1488
1516
|
} else {
|
|
1489
|
-
tmp = _this__u8e3s4.
|
|
1517
|
+
tmp = _this__u8e3s4.n68(PlayerConnectionState_LIVE_getInstance(), System_instance.i52(), Duration__plus_impl_yu9v8f(_this__u8e3s4.l68_1, _this__u8e3s4.m68()));
|
|
1490
1518
|
}
|
|
1491
1519
|
return tmp;
|
|
1492
1520
|
};
|
|
1493
|
-
protoOf(Companion_5).
|
|
1521
|
+
protoOf(Companion_5).p68 = function (_this__u8e3s4, state) {
|
|
1494
1522
|
if (_this__u8e3s4 == null) {
|
|
1495
1523
|
return new PlayerConnection(state, System_instance.i52());
|
|
1496
1524
|
}
|
|
1497
|
-
return _this__u8e3s4.
|
|
1525
|
+
return _this__u8e3s4.o68(state, System_instance.i52());
|
|
1498
1526
|
};
|
|
1499
1527
|
var Companion_instance_7;
|
|
1500
1528
|
function Companion_getInstance_7() {
|
|
@@ -1503,57 +1531,57 @@
|
|
|
1503
1531
|
function PlayerConnection(state, connectionChangedTime, notLiveDurationRecord) {
|
|
1504
1532
|
connectionChangedTime = connectionChangedTime === VOID ? System_instance.i52() : connectionChangedTime;
|
|
1505
1533
|
notLiveDurationRecord = notLiveDurationRecord === VOID ? Companion_getInstance().lj_1 : notLiveDurationRecord;
|
|
1506
|
-
this.
|
|
1507
|
-
this.
|
|
1508
|
-
this.
|
|
1534
|
+
this.j68_1 = state;
|
|
1535
|
+
this.k68_1 = connectionChangedTime;
|
|
1536
|
+
this.l68_1 = notLiveDurationRecord;
|
|
1509
1537
|
}
|
|
1510
|
-
protoOf(PlayerConnection).
|
|
1511
|
-
return System_instance.i52().z5h(this.
|
|
1538
|
+
protoOf(PlayerConnection).m68 = function () {
|
|
1539
|
+
return System_instance.i52().z5h(this.k68_1);
|
|
1512
1540
|
};
|
|
1513
|
-
protoOf(PlayerConnection).
|
|
1514
|
-
return Duration__compareTo_impl_pchp0f(this.
|
|
1541
|
+
protoOf(PlayerConnection).q68 = function (duration) {
|
|
1542
|
+
return Duration__compareTo_impl_pchp0f(this.m68(), duration) > 0;
|
|
1515
1543
|
};
|
|
1516
|
-
protoOf(PlayerConnection).
|
|
1544
|
+
protoOf(PlayerConnection).r68 = function () {
|
|
1517
1545
|
var tmp;
|
|
1518
|
-
if (this.
|
|
1519
|
-
tmp = this.
|
|
1546
|
+
if (this.j68_1.isLive) {
|
|
1547
|
+
tmp = this.l68_1;
|
|
1520
1548
|
} else {
|
|
1521
|
-
tmp = Duration__plus_impl_yu9v8f(this.
|
|
1549
|
+
tmp = Duration__plus_impl_yu9v8f(this.l68_1, this.m68());
|
|
1522
1550
|
}
|
|
1523
1551
|
return tmp;
|
|
1524
1552
|
};
|
|
1525
|
-
protoOf(PlayerConnection).
|
|
1553
|
+
protoOf(PlayerConnection).s68 = function (gameDuration) {
|
|
1526
1554
|
// Inline function 'kotlin.Long.div' call
|
|
1527
1555
|
var percent = _Duration___get_inWholeMilliseconds__impl__msfiry(gameDuration).m3() / 100.0;
|
|
1528
1556
|
// Inline function 'kotlin.math.round' call
|
|
1529
1557
|
// Inline function 'kotlin.Long.div' call
|
|
1530
|
-
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.
|
|
1558
|
+
var x = _Duration___get_inWholeMilliseconds__impl__msfiry(this.r68()).m3() / percent;
|
|
1531
1559
|
var tmp$ret$2 = round(x);
|
|
1532
1560
|
return numberToInt(tmp$ret$2);
|
|
1533
1561
|
};
|
|
1534
|
-
protoOf(PlayerConnection).
|
|
1535
|
-
return 100 - this.
|
|
1562
|
+
protoOf(PlayerConnection).t68 = function (gameDuration) {
|
|
1563
|
+
return 100 - this.s68(gameDuration) | 0;
|
|
1536
1564
|
};
|
|
1537
|
-
protoOf(PlayerConnection).
|
|
1538
|
-
var percentage = this.
|
|
1565
|
+
protoOf(PlayerConnection).u68 = function (gameDuration) {
|
|
1566
|
+
var percentage = this.t68(gameDuration);
|
|
1539
1567
|
return percentage >= 75;
|
|
1540
1568
|
};
|
|
1541
|
-
protoOf(PlayerConnection).
|
|
1569
|
+
protoOf(PlayerConnection).n68 = function (state, connectionChangedTime, notLiveDurationRecord) {
|
|
1542
1570
|
return new PlayerConnection(state, connectionChangedTime, notLiveDurationRecord);
|
|
1543
1571
|
};
|
|
1544
|
-
protoOf(PlayerConnection).
|
|
1545
|
-
state = state === VOID ? this.
|
|
1546
|
-
connectionChangedTime = connectionChangedTime === VOID ? this.
|
|
1547
|
-
notLiveDurationRecord = notLiveDurationRecord === VOID ? this.
|
|
1548
|
-
return $super === VOID ? this.
|
|
1572
|
+
protoOf(PlayerConnection).o68 = function (state, connectionChangedTime, notLiveDurationRecord, $super) {
|
|
1573
|
+
state = state === VOID ? this.j68_1 : state;
|
|
1574
|
+
connectionChangedTime = connectionChangedTime === VOID ? this.k68_1 : connectionChangedTime;
|
|
1575
|
+
notLiveDurationRecord = notLiveDurationRecord === VOID ? this.l68_1 : notLiveDurationRecord;
|
|
1576
|
+
return $super === VOID ? this.n68(state, connectionChangedTime, notLiveDurationRecord) : $super.n68.call(this, state, connectionChangedTime, new Duration(notLiveDurationRecord));
|
|
1549
1577
|
};
|
|
1550
1578
|
protoOf(PlayerConnection).toString = function () {
|
|
1551
|
-
return 'PlayerConnection(state=' + this.
|
|
1579
|
+
return 'PlayerConnection(state=' + this.j68_1.toString() + ', connectionChangedTime=' + this.k68_1.toString() + ', notLiveDurationRecord=' + Duration__toString_impl_8d916b(this.l68_1) + ')';
|
|
1552
1580
|
};
|
|
1553
1581
|
protoOf(PlayerConnection).hashCode = function () {
|
|
1554
|
-
var result = this.
|
|
1555
|
-
result = imul(result, 31) + this.
|
|
1556
|
-
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.
|
|
1582
|
+
var result = this.j68_1.hashCode();
|
|
1583
|
+
result = imul(result, 31) + this.k68_1.hashCode() | 0;
|
|
1584
|
+
result = imul(result, 31) + Duration__hashCode_impl_u4exz6(this.l68_1) | 0;
|
|
1557
1585
|
return result;
|
|
1558
1586
|
};
|
|
1559
1587
|
protoOf(PlayerConnection).equals = function (other) {
|
|
@@ -1562,16 +1590,16 @@
|
|
|
1562
1590
|
if (!(other instanceof PlayerConnection))
|
|
1563
1591
|
return false;
|
|
1564
1592
|
var tmp0_other_with_cast = other instanceof PlayerConnection ? other : THROW_CCE();
|
|
1565
|
-
if (!this.
|
|
1593
|
+
if (!this.j68_1.equals(tmp0_other_with_cast.j68_1))
|
|
1566
1594
|
return false;
|
|
1567
|
-
if (!this.
|
|
1595
|
+
if (!this.k68_1.equals(tmp0_other_with_cast.k68_1))
|
|
1568
1596
|
return false;
|
|
1569
|
-
if (!equals(this.
|
|
1597
|
+
if (!equals(this.l68_1, tmp0_other_with_cast.l68_1))
|
|
1570
1598
|
return false;
|
|
1571
1599
|
return true;
|
|
1572
1600
|
};
|
|
1573
1601
|
function _get_$cachedSerializer__te6jhj_4($this) {
|
|
1574
|
-
return $this.
|
|
1602
|
+
return $this.v68_1.u();
|
|
1575
1603
|
}
|
|
1576
1604
|
function PlayerConnectionState$Companion$_anonymous__8wfaw3() {
|
|
1577
1605
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerConnectionState', values_1());
|
|
@@ -1609,7 +1637,7 @@
|
|
|
1609
1637
|
Companion_instance_8 = this;
|
|
1610
1638
|
var tmp = this;
|
|
1611
1639
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1612
|
-
tmp.
|
|
1640
|
+
tmp.v68_1 = lazy(tmp_0, PlayerConnectionState$Companion$_anonymous__8wfaw3);
|
|
1613
1641
|
}
|
|
1614
1642
|
protoOf(Companion_6).j4t = function () {
|
|
1615
1643
|
return _get_$cachedSerializer__te6jhj_4(this);
|
|
@@ -1640,44 +1668,44 @@
|
|
|
1640
1668
|
function PlayerConnectionState(name, ordinal) {
|
|
1641
1669
|
Enum.call(this, name, ordinal);
|
|
1642
1670
|
}
|
|
1643
|
-
protoOf(PlayerConnectionState).
|
|
1671
|
+
protoOf(PlayerConnectionState).y68 = function () {
|
|
1644
1672
|
return this.equals(PlayerConnectionState_LIVE_getInstance());
|
|
1645
1673
|
};
|
|
1646
|
-
protoOf(PlayerConnectionState).
|
|
1674
|
+
protoOf(PlayerConnectionState).z68 = function () {
|
|
1647
1675
|
return this.equals(PlayerConnectionState_TIMEOUT_getInstance());
|
|
1648
1676
|
};
|
|
1649
|
-
protoOf(PlayerConnectionState).
|
|
1677
|
+
protoOf(PlayerConnectionState).a69 = function () {
|
|
1650
1678
|
return this.equals(PlayerConnectionState_LOST_CONNECTION_getInstance());
|
|
1651
1679
|
};
|
|
1652
|
-
protoOf(PlayerConnectionState).
|
|
1680
|
+
protoOf(PlayerConnectionState).b69 = function () {
|
|
1653
1681
|
return this.equals(PlayerConnectionState_LEFT_getInstance());
|
|
1654
1682
|
};
|
|
1655
|
-
protoOf(PlayerConnectionState).
|
|
1683
|
+
protoOf(PlayerConnectionState).c69 = function () {
|
|
1656
1684
|
return this.equals(PlayerConnectionState_DELETED_getInstance());
|
|
1657
1685
|
};
|
|
1658
|
-
protoOf(PlayerConnectionState).
|
|
1686
|
+
protoOf(PlayerConnectionState).d69 = function () {
|
|
1659
1687
|
return this.equals(PlayerConnectionState_DISCONNECTING_getInstance());
|
|
1660
1688
|
};
|
|
1661
|
-
protoOf(PlayerConnectionState).
|
|
1689
|
+
protoOf(PlayerConnectionState).e69 = function () {
|
|
1662
1690
|
return this.isDisconnected || this.isDeleted;
|
|
1663
1691
|
};
|
|
1664
|
-
protoOf(PlayerConnectionState).
|
|
1692
|
+
protoOf(PlayerConnectionState).f69 = function () {
|
|
1665
1693
|
return this.isTimeOut || this.isLostConnection || this.isLeft;
|
|
1666
1694
|
};
|
|
1667
|
-
protoOf(PlayerConnectionState).
|
|
1695
|
+
protoOf(PlayerConnectionState).g69 = function () {
|
|
1668
1696
|
return this.isTimeOut || this.isLeft || this.isDeleted;
|
|
1669
1697
|
};
|
|
1670
|
-
protoOf(PlayerConnectionState).
|
|
1698
|
+
protoOf(PlayerConnectionState).h69 = function () {
|
|
1671
1699
|
return this.isLostConnection;
|
|
1672
1700
|
};
|
|
1673
1701
|
function mapToFinishReason(_this__u8e3s4, player, players) {
|
|
1674
1702
|
var tmp;
|
|
1675
1703
|
switch (_this__u8e3s4.n2_1) {
|
|
1676
1704
|
case 2:
|
|
1677
|
-
tmp = new PlayerLostConnectionReason(player.playerId, player.
|
|
1705
|
+
tmp = new PlayerLostConnectionReason(player.playerId, player.p67().i69());
|
|
1678
1706
|
break;
|
|
1679
1707
|
case 1:
|
|
1680
|
-
tmp = new PlayerTimeoutReason(player.playerId, player.
|
|
1708
|
+
tmp = new PlayerTimeoutReason(player.playerId, player.p67().i69());
|
|
1681
1709
|
break;
|
|
1682
1710
|
case 3:
|
|
1683
1711
|
tmp = new PlayerExitReason(player.playerId);
|
|
@@ -1748,7 +1776,7 @@
|
|
|
1748
1776
|
return PlayerConnectionState_DELETED_instance;
|
|
1749
1777
|
}
|
|
1750
1778
|
function _get_$cachedSerializer__te6jhj_5($this) {
|
|
1751
|
-
return $this.
|
|
1779
|
+
return $this.j69_1.u();
|
|
1752
1780
|
}
|
|
1753
1781
|
function PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2() {
|
|
1754
1782
|
return createSimpleEnumSerializer('com.logic.data.models.player.PlayerState.PlayerWaitingState', values_2());
|
|
@@ -1763,7 +1791,7 @@
|
|
|
1763
1791
|
Companion_instance_9 = this;
|
|
1764
1792
|
var tmp = this;
|
|
1765
1793
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
1766
|
-
tmp.
|
|
1794
|
+
tmp.j69_1 = lazy(tmp_0, PlayerState$PlayerWaitingState$Companion$_anonymous__jkatu2);
|
|
1767
1795
|
}
|
|
1768
1796
|
protoOf(Companion_7).j4t = function () {
|
|
1769
1797
|
return _get_$cachedSerializer__te6jhj_5(this);
|
|
@@ -1791,28 +1819,28 @@
|
|
|
1791
1819
|
function PlayerWaitingState(name, ordinal) {
|
|
1792
1820
|
Enum.call(this, name, ordinal);
|
|
1793
1821
|
}
|
|
1794
|
-
protoOf(PlayerWaitingState).
|
|
1795
|
-
return this.
|
|
1822
|
+
protoOf(PlayerWaitingState).e68 = function () {
|
|
1823
|
+
return this.m69() || this.n69();
|
|
1796
1824
|
};
|
|
1797
|
-
protoOf(PlayerWaitingState).
|
|
1825
|
+
protoOf(PlayerWaitingState).m69 = function () {
|
|
1798
1826
|
return this.equals(PlayerWaitingState_IN_PROGRESS_getInstance());
|
|
1799
1827
|
};
|
|
1800
|
-
protoOf(PlayerWaitingState).
|
|
1828
|
+
protoOf(PlayerWaitingState).n69 = function () {
|
|
1801
1829
|
return this.equals(PlayerWaitingState_IN_PROGRESS_ATTENTION_MODE_getInstance());
|
|
1802
1830
|
};
|
|
1803
1831
|
function Companion_8() {
|
|
1804
1832
|
}
|
|
1805
|
-
protoOf(Companion_8).
|
|
1833
|
+
protoOf(Companion_8).o69 = function (connection) {
|
|
1806
1834
|
var tmp0_state = PlayerWaitingState_IDLE_getInstance();
|
|
1807
1835
|
return new PlayerState(null, null, null, tmp0_state, false, null, connection);
|
|
1808
1836
|
};
|
|
1809
|
-
protoOf(Companion_8).
|
|
1810
|
-
return _this__u8e3s4.
|
|
1837
|
+
protoOf(Companion_8).p69 = function (_this__u8e3s4) {
|
|
1838
|
+
return _this__u8e3s4.q69(null, null, VOID, PlayerWaitingState_IDLE_getInstance(), VOID, null);
|
|
1811
1839
|
};
|
|
1812
|
-
protoOf(Companion_8).
|
|
1840
|
+
protoOf(Companion_8).r69 = function (_this__u8e3s4, playerTurnTimeout, tag) {
|
|
1813
1841
|
var tmp0_startFromTime = System_instance.i52();
|
|
1814
1842
|
var tmp1_state = PlayerWaitingState_IN_PROGRESS_getInstance();
|
|
1815
|
-
return _this__u8e3s4.
|
|
1843
|
+
return _this__u8e3s4.q69(tmp0_startFromTime, playerTurnTimeout, VOID, tmp1_state, false, tag);
|
|
1816
1844
|
};
|
|
1817
1845
|
var Companion_instance_10;
|
|
1818
1846
|
function Companion_getInstance_10() {
|
|
@@ -1833,17 +1861,17 @@
|
|
|
1833
1861
|
function PlayerState(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) {
|
|
1834
1862
|
tag = tag === VOID ? null : tag;
|
|
1835
1863
|
connection = connection === VOID ? null : connection;
|
|
1836
|
-
this.
|
|
1837
|
-
this.
|
|
1838
|
-
this.
|
|
1839
|
-
this.
|
|
1840
|
-
this.
|
|
1841
|
-
this.
|
|
1842
|
-
this.
|
|
1843
|
-
}
|
|
1844
|
-
protoOf(PlayerState).
|
|
1864
|
+
this.x67_1 = startFromTime;
|
|
1865
|
+
this.y67_1 = playerTurnTimeout;
|
|
1866
|
+
this.z67_1 = waitPlayerUntilTime;
|
|
1867
|
+
this.a68_1 = state;
|
|
1868
|
+
this.b68_1 = ready;
|
|
1869
|
+
this.c68_1 = tag;
|
|
1870
|
+
this.d68_1 = connection;
|
|
1871
|
+
}
|
|
1872
|
+
protoOf(PlayerState).s69 = function () {
|
|
1845
1873
|
// Inline function 'kotlin.requireNotNull' call
|
|
1846
|
-
var value = this.
|
|
1874
|
+
var value = this.d68_1;
|
|
1847
1875
|
// Inline function 'kotlin.contracts.contract' call
|
|
1848
1876
|
var tmp$ret$1;
|
|
1849
1877
|
$l$block: {
|
|
@@ -1860,9 +1888,9 @@
|
|
|
1860
1888
|
}
|
|
1861
1889
|
return tmp$ret$1;
|
|
1862
1890
|
};
|
|
1863
|
-
protoOf(PlayerState).
|
|
1891
|
+
protoOf(PlayerState).t69 = function () {
|
|
1864
1892
|
// Inline function 'kotlin.requireNotNull' call
|
|
1865
|
-
var value = this.
|
|
1893
|
+
var value = this.c68_1;
|
|
1866
1894
|
// Inline function 'kotlin.contracts.contract' call
|
|
1867
1895
|
var tmp$ret$1;
|
|
1868
1896
|
$l$block: {
|
|
@@ -1879,73 +1907,73 @@
|
|
|
1879
1907
|
}
|
|
1880
1908
|
return tmp$ret$1;
|
|
1881
1909
|
};
|
|
1882
|
-
protoOf(PlayerState).
|
|
1883
|
-
var tmp0_elvis_lhs = this.
|
|
1910
|
+
protoOf(PlayerState).i69 = function () {
|
|
1911
|
+
var tmp0_elvis_lhs = this.c68_1;
|
|
1884
1912
|
return tmp0_elvis_lhs == null ? '' : tmp0_elvis_lhs;
|
|
1885
1913
|
};
|
|
1886
1914
|
protoOf(PlayerState).toString = function () {
|
|
1887
1915
|
// Inline function 'kotlin.takeIf' call
|
|
1888
|
-
var this_0 = 'startFromTime=' + toString(this.
|
|
1916
|
+
var this_0 = 'startFromTime=' + toString(this.x67_1);
|
|
1889
1917
|
// Inline function 'kotlin.contracts.contract' call
|
|
1890
1918
|
var tmp;
|
|
1891
1919
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1892
|
-
if (!(this.
|
|
1920
|
+
if (!(this.x67_1 == null)) {
|
|
1893
1921
|
tmp = this_0;
|
|
1894
1922
|
} else {
|
|
1895
1923
|
tmp = null;
|
|
1896
1924
|
}
|
|
1897
1925
|
var tmp_0 = tmp;
|
|
1898
1926
|
// Inline function 'kotlin.takeIf' call
|
|
1899
|
-
var this_1 = 'playerTurnTimeout=' + toString(this.
|
|
1927
|
+
var this_1 = 'playerTurnTimeout=' + toString(this.y67_1);
|
|
1900
1928
|
// Inline function 'kotlin.contracts.contract' call
|
|
1901
1929
|
var tmp_1;
|
|
1902
1930
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1903
|
-
if (!(this.
|
|
1931
|
+
if (!(this.y67_1 == null)) {
|
|
1904
1932
|
tmp_1 = this_1;
|
|
1905
1933
|
} else {
|
|
1906
1934
|
tmp_1 = null;
|
|
1907
1935
|
}
|
|
1908
1936
|
var tmp_2 = tmp_1;
|
|
1909
1937
|
// Inline function 'kotlin.takeIf' call
|
|
1910
|
-
var this_2 = 'waitPlayerUntilTime=' + toString(this.
|
|
1938
|
+
var this_2 = 'waitPlayerUntilTime=' + toString(this.z67_1);
|
|
1911
1939
|
// Inline function 'kotlin.contracts.contract' call
|
|
1912
1940
|
var tmp_3;
|
|
1913
1941
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1914
|
-
if (!(this.
|
|
1942
|
+
if (!(this.z67_1 == null)) {
|
|
1915
1943
|
tmp_3 = this_2;
|
|
1916
1944
|
} else {
|
|
1917
1945
|
tmp_3 = null;
|
|
1918
1946
|
}
|
|
1919
1947
|
var tmp_4 = tmp_3;
|
|
1920
|
-
var tmp_5 = 'state=' + this.
|
|
1948
|
+
var tmp_5 = 'state=' + this.a68_1.toString();
|
|
1921
1949
|
// Inline function 'kotlin.takeIf' call
|
|
1922
|
-
var this_3 = 'ready=' + this.
|
|
1950
|
+
var this_3 = 'ready=' + this.b68_1;
|
|
1923
1951
|
// Inline function 'kotlin.contracts.contract' call
|
|
1924
1952
|
var tmp_6;
|
|
1925
1953
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1926
|
-
if (this.
|
|
1954
|
+
if (this.b68_1) {
|
|
1927
1955
|
tmp_6 = this_3;
|
|
1928
1956
|
} else {
|
|
1929
1957
|
tmp_6 = null;
|
|
1930
1958
|
}
|
|
1931
1959
|
var tmp_7 = tmp_6;
|
|
1932
1960
|
// Inline function 'kotlin.takeIf' call
|
|
1933
|
-
var this_4 = 'tag=' + this.
|
|
1961
|
+
var this_4 = 'tag=' + this.c68_1;
|
|
1934
1962
|
// Inline function 'kotlin.contracts.contract' call
|
|
1935
1963
|
var tmp_8;
|
|
1936
1964
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1937
|
-
if (!(this.
|
|
1965
|
+
if (!(this.c68_1 == null)) {
|
|
1938
1966
|
tmp_8 = this_4;
|
|
1939
1967
|
} else {
|
|
1940
1968
|
tmp_8 = null;
|
|
1941
1969
|
}
|
|
1942
1970
|
var tmp_9 = tmp_8;
|
|
1943
1971
|
// Inline function 'kotlin.takeIf' call
|
|
1944
|
-
var this_5 = 'connection=' + toString(this.
|
|
1972
|
+
var this_5 = 'connection=' + toString(this.d68_1);
|
|
1945
1973
|
// Inline function 'kotlin.contracts.contract' call
|
|
1946
1974
|
var tmp_10;
|
|
1947
1975
|
// Inline function 'com.logic.data.models.player.PlayerState.toString.<anonymous>' call
|
|
1948
|
-
if (!(this.
|
|
1976
|
+
if (!(this.d68_1 == null)) {
|
|
1949
1977
|
tmp_10 = this_5;
|
|
1950
1978
|
} else {
|
|
1951
1979
|
tmp_10 = null;
|
|
@@ -1953,30 +1981,30 @@
|
|
|
1953
1981
|
var tmp$ret$11 = tmp_10;
|
|
1954
1982
|
return 'PlayerState(' + joinToString(listOfNotNull([tmp_0, tmp_2, tmp_4, tmp_5, tmp_7, tmp_9, tmp$ret$11])) + ')';
|
|
1955
1983
|
};
|
|
1956
|
-
protoOf(PlayerState).
|
|
1957
|
-
return this.
|
|
1984
|
+
protoOf(PlayerState).e68 = function () {
|
|
1985
|
+
return this.a68_1.e68();
|
|
1958
1986
|
};
|
|
1959
|
-
protoOf(PlayerState).
|
|
1987
|
+
protoOf(PlayerState).u69 = function (startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) {
|
|
1960
1988
|
return new PlayerState(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection);
|
|
1961
1989
|
};
|
|
1962
|
-
protoOf(PlayerState).
|
|
1963
|
-
startFromTime = startFromTime === VOID ? this.
|
|
1964
|
-
playerTurnTimeout = playerTurnTimeout === VOID ? this.
|
|
1965
|
-
waitPlayerUntilTime = waitPlayerUntilTime === VOID ? this.
|
|
1966
|
-
state = state === VOID ? this.
|
|
1967
|
-
ready = ready === VOID ? this.
|
|
1968
|
-
tag = tag === VOID ? this.
|
|
1969
|
-
connection = connection === VOID ? this.
|
|
1970
|
-
return $super === VOID ? this.
|
|
1990
|
+
protoOf(PlayerState).q69 = function (startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection, $super) {
|
|
1991
|
+
startFromTime = startFromTime === VOID ? this.x67_1 : startFromTime;
|
|
1992
|
+
playerTurnTimeout = playerTurnTimeout === VOID ? this.y67_1 : playerTurnTimeout;
|
|
1993
|
+
waitPlayerUntilTime = waitPlayerUntilTime === VOID ? this.z67_1 : waitPlayerUntilTime;
|
|
1994
|
+
state = state === VOID ? this.a68_1 : state;
|
|
1995
|
+
ready = ready === VOID ? this.b68_1 : ready;
|
|
1996
|
+
tag = tag === VOID ? this.c68_1 : tag;
|
|
1997
|
+
connection = connection === VOID ? this.d68_1 : connection;
|
|
1998
|
+
return $super === VOID ? this.u69(startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection) : $super.u69.call(this, startFromTime, playerTurnTimeout, waitPlayerUntilTime, state, ready, tag, connection);
|
|
1971
1999
|
};
|
|
1972
2000
|
protoOf(PlayerState).hashCode = function () {
|
|
1973
|
-
var result = this.
|
|
1974
|
-
result = imul(result, 31) + (this.
|
|
1975
|
-
result = imul(result, 31) + (this.
|
|
1976
|
-
result = imul(result, 31) + this.
|
|
1977
|
-
result = imul(result, 31) + getBooleanHashCode(this.
|
|
1978
|
-
result = imul(result, 31) + (this.
|
|
1979
|
-
result = imul(result, 31) + (this.
|
|
2001
|
+
var result = this.x67_1 == null ? 0 : this.x67_1.hashCode();
|
|
2002
|
+
result = imul(result, 31) + (this.y67_1 == null ? 0 : this.y67_1.hashCode()) | 0;
|
|
2003
|
+
result = imul(result, 31) + (this.z67_1 == null ? 0 : this.z67_1.hashCode()) | 0;
|
|
2004
|
+
result = imul(result, 31) + this.a68_1.hashCode() | 0;
|
|
2005
|
+
result = imul(result, 31) + getBooleanHashCode(this.b68_1) | 0;
|
|
2006
|
+
result = imul(result, 31) + (this.c68_1 == null ? 0 : getStringHashCode(this.c68_1)) | 0;
|
|
2007
|
+
result = imul(result, 31) + (this.d68_1 == null ? 0 : this.d68_1.hashCode()) | 0;
|
|
1980
2008
|
return result;
|
|
1981
2009
|
};
|
|
1982
2010
|
protoOf(PlayerState).equals = function (other) {
|
|
@@ -1985,25 +2013,25 @@
|
|
|
1985
2013
|
if (!(other instanceof PlayerState))
|
|
1986
2014
|
return false;
|
|
1987
2015
|
var tmp0_other_with_cast = other instanceof PlayerState ? other : THROW_CCE();
|
|
1988
|
-
if (!equals(this.
|
|
2016
|
+
if (!equals(this.x67_1, tmp0_other_with_cast.x67_1))
|
|
1989
2017
|
return false;
|
|
1990
|
-
if (!equals(this.
|
|
2018
|
+
if (!equals(this.y67_1, tmp0_other_with_cast.y67_1))
|
|
1991
2019
|
return false;
|
|
1992
|
-
if (!equals(this.
|
|
2020
|
+
if (!equals(this.z67_1, tmp0_other_with_cast.z67_1))
|
|
1993
2021
|
return false;
|
|
1994
|
-
if (!this.
|
|
2022
|
+
if (!this.a68_1.equals(tmp0_other_with_cast.a68_1))
|
|
1995
2023
|
return false;
|
|
1996
|
-
if (!(this.
|
|
2024
|
+
if (!(this.b68_1 === tmp0_other_with_cast.b68_1))
|
|
1997
2025
|
return false;
|
|
1998
|
-
if (!(this.
|
|
2026
|
+
if (!(this.c68_1 == tmp0_other_with_cast.c68_1))
|
|
1999
2027
|
return false;
|
|
2000
|
-
if (!equals(this.
|
|
2028
|
+
if (!equals(this.d68_1, tmp0_other_with_cast.d68_1))
|
|
2001
2029
|
return false;
|
|
2002
2030
|
return true;
|
|
2003
2031
|
};
|
|
2004
2032
|
function getProgress(_this__u8e3s4, playerTurnTimeout, logger) {
|
|
2005
2033
|
var tmp;
|
|
2006
|
-
if (_this__u8e3s4.
|
|
2034
|
+
if (_this__u8e3s4.m69() || _this__u8e3s4.n69()) {
|
|
2007
2035
|
var tmp_0;
|
|
2008
2036
|
if (playerTurnTimeout == null) {
|
|
2009
2037
|
tmp_0 = Companion_getInstance().lj_1;
|
|
@@ -2022,16 +2050,16 @@
|
|
|
2022
2050
|
return tmp;
|
|
2023
2051
|
}
|
|
2024
2052
|
function Team(playerIds) {
|
|
2025
|
-
this.
|
|
2053
|
+
this.v69_1 = playerIds;
|
|
2026
2054
|
}
|
|
2027
|
-
protoOf(Team).
|
|
2028
|
-
return this.
|
|
2055
|
+
protoOf(Team).w69 = function (playerId) {
|
|
2056
|
+
return this.v69_1.s1(playerId);
|
|
2029
2057
|
};
|
|
2030
2058
|
protoOf(Team).toString = function () {
|
|
2031
|
-
return 'Team(playerIds=' + toString_0(this.
|
|
2059
|
+
return 'Team(playerIds=' + toString_0(this.v69_1) + ')';
|
|
2032
2060
|
};
|
|
2033
2061
|
protoOf(Team).hashCode = function () {
|
|
2034
|
-
return hashCode(this.
|
|
2062
|
+
return hashCode(this.v69_1);
|
|
2035
2063
|
};
|
|
2036
2064
|
protoOf(Team).equals = function (other) {
|
|
2037
2065
|
if (this === other)
|
|
@@ -2039,12 +2067,12 @@
|
|
|
2039
2067
|
if (!(other instanceof Team))
|
|
2040
2068
|
return false;
|
|
2041
2069
|
var tmp0_other_with_cast = other instanceof Team ? other : THROW_CCE();
|
|
2042
|
-
if (!equals(this.
|
|
2070
|
+
if (!equals(this.v69_1, tmp0_other_with_cast.v69_1))
|
|
2043
2071
|
return false;
|
|
2044
2072
|
return true;
|
|
2045
2073
|
};
|
|
2046
2074
|
function _get_$cachedSerializer__te6jhj_6($this) {
|
|
2047
|
-
return $this.
|
|
2075
|
+
return $this.x69_1.u();
|
|
2048
2076
|
}
|
|
2049
2077
|
function TerminationGameReasonDto$Companion$_anonymous__30ivuy() {
|
|
2050
2078
|
var tmp = getKClass(TerminationGameReasonDto);
|
|
@@ -2082,7 +2110,7 @@
|
|
|
2082
2110
|
Companion_instance_11 = this;
|
|
2083
2111
|
var tmp = this;
|
|
2084
2112
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2085
|
-
tmp.
|
|
2113
|
+
tmp.x69_1 = lazy(tmp_0, TerminationGameReasonDto$Companion$_anonymous__30ivuy);
|
|
2086
2114
|
}
|
|
2087
2115
|
protoOf(Companion_9).j4t = function () {
|
|
2088
2116
|
return _get_$cachedSerializer__te6jhj_6(this);
|
|
@@ -2103,7 +2131,7 @@
|
|
|
2103
2131
|
Companion_getInstance_11();
|
|
2104
2132
|
}
|
|
2105
2133
|
function _get_$cachedSerializer__te6jhj_7($this) {
|
|
2106
|
-
return $this.
|
|
2134
|
+
return $this.y69_1.u();
|
|
2107
2135
|
}
|
|
2108
2136
|
function ProcessingReasonDto$_anonymous__78na4x() {
|
|
2109
2137
|
var tmp = ProcessingReasonDto_getInstance();
|
|
@@ -2118,7 +2146,7 @@
|
|
|
2118
2146
|
TerminationGameReasonDto.call(this);
|
|
2119
2147
|
var tmp = this;
|
|
2120
2148
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2121
|
-
tmp.
|
|
2149
|
+
tmp.y69_1 = lazy(tmp_0, ProcessingReasonDto$_anonymous__78na4x);
|
|
2122
2150
|
}
|
|
2123
2151
|
protoOf(ProcessingReasonDto).j4t = function () {
|
|
2124
2152
|
return _get_$cachedSerializer__te6jhj_7(this);
|
|
@@ -2156,19 +2184,19 @@
|
|
|
2156
2184
|
$serializer_instance_0 = this;
|
|
2157
2185
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_ERROR_TYPE', this, 1);
|
|
2158
2186
|
tmp0_serialDesc.g4c('reason', false);
|
|
2159
|
-
this.
|
|
2187
|
+
this.z69_1 = tmp0_serialDesc;
|
|
2160
2188
|
}
|
|
2161
|
-
protoOf($serializer_0).
|
|
2162
|
-
var tmp0_desc = this.
|
|
2189
|
+
protoOf($serializer_0).a6a = function (encoder, value) {
|
|
2190
|
+
var tmp0_desc = this.z69_1;
|
|
2163
2191
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2164
2192
|
tmp1_output.g46(tmp0_desc, 0, value.reason);
|
|
2165
2193
|
tmp1_output.t44(tmp0_desc);
|
|
2166
2194
|
};
|
|
2167
2195
|
protoOf($serializer_0).f41 = function (encoder, value) {
|
|
2168
|
-
return this.
|
|
2196
|
+
return this.a6a(encoder, value instanceof GameErrorReasonDto ? value : THROW_CCE());
|
|
2169
2197
|
};
|
|
2170
2198
|
protoOf($serializer_0).g41 = function (decoder) {
|
|
2171
|
-
var tmp0_desc = this.
|
|
2199
|
+
var tmp0_desc = this.z69_1;
|
|
2172
2200
|
var tmp1_flag = true;
|
|
2173
2201
|
var tmp2_index = 0;
|
|
2174
2202
|
var tmp3_bitMask0 = 0;
|
|
@@ -2196,7 +2224,7 @@
|
|
|
2196
2224
|
return GameErrorReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2197
2225
|
};
|
|
2198
2226
|
protoOf($serializer_0).e41 = function () {
|
|
2199
|
-
return this.
|
|
2227
|
+
return this.z69_1;
|
|
2200
2228
|
};
|
|
2201
2229
|
protoOf($serializer_0).v4c = function () {
|
|
2202
2230
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2212,7 +2240,7 @@
|
|
|
2212
2240
|
}
|
|
2213
2241
|
function GameErrorReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2214
2242
|
if (!(1 === (1 & seen0))) {
|
|
2215
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_0().
|
|
2243
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_0().z69_1);
|
|
2216
2244
|
}
|
|
2217
2245
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2218
2246
|
$this.reason = reason;
|
|
@@ -2254,19 +2282,19 @@
|
|
|
2254
2282
|
$serializer_instance_1 = this;
|
|
2255
2283
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('GAME_FINISHED_TYPE', this, 1);
|
|
2256
2284
|
tmp0_serialDesc.g4c('reason', false);
|
|
2257
|
-
this.
|
|
2285
|
+
this.b6a_1 = tmp0_serialDesc;
|
|
2258
2286
|
}
|
|
2259
|
-
protoOf($serializer_1).
|
|
2260
|
-
var tmp0_desc = this.
|
|
2287
|
+
protoOf($serializer_1).c6a = function (encoder, value) {
|
|
2288
|
+
var tmp0_desc = this.b6a_1;
|
|
2261
2289
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2262
|
-
tmp1_output.g46(tmp0_desc, 0, value.
|
|
2290
|
+
tmp1_output.g46(tmp0_desc, 0, value.d6a_1);
|
|
2263
2291
|
tmp1_output.t44(tmp0_desc);
|
|
2264
2292
|
};
|
|
2265
2293
|
protoOf($serializer_1).f41 = function (encoder, value) {
|
|
2266
|
-
return this.
|
|
2294
|
+
return this.c6a(encoder, value instanceof GameFinishedReasonDto ? value : THROW_CCE());
|
|
2267
2295
|
};
|
|
2268
2296
|
protoOf($serializer_1).g41 = function (decoder) {
|
|
2269
|
-
var tmp0_desc = this.
|
|
2297
|
+
var tmp0_desc = this.b6a_1;
|
|
2270
2298
|
var tmp1_flag = true;
|
|
2271
2299
|
var tmp2_index = 0;
|
|
2272
2300
|
var tmp3_bitMask0 = 0;
|
|
@@ -2294,7 +2322,7 @@
|
|
|
2294
2322
|
return GameFinishedReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2295
2323
|
};
|
|
2296
2324
|
protoOf($serializer_1).e41 = function () {
|
|
2297
|
-
return this.
|
|
2325
|
+
return this.b6a_1;
|
|
2298
2326
|
};
|
|
2299
2327
|
protoOf($serializer_1).v4c = function () {
|
|
2300
2328
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2310,10 +2338,10 @@
|
|
|
2310
2338
|
}
|
|
2311
2339
|
function GameFinishedReasonDto_init_$Init$(seen0, reason, serializationConstructorMarker, $this) {
|
|
2312
2340
|
if (!(1 === (1 & seen0))) {
|
|
2313
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().
|
|
2341
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_1().b6a_1);
|
|
2314
2342
|
}
|
|
2315
2343
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2316
|
-
$this.
|
|
2344
|
+
$this.d6a_1 = reason;
|
|
2317
2345
|
return $this;
|
|
2318
2346
|
}
|
|
2319
2347
|
function GameFinishedReasonDto_init_$Create$(seen0, reason, serializationConstructorMarker) {
|
|
@@ -2321,13 +2349,13 @@
|
|
|
2321
2349
|
}
|
|
2322
2350
|
function GameFinishedReasonDto(reason) {
|
|
2323
2351
|
TerminationGameReasonDto.call(this);
|
|
2324
|
-
this.
|
|
2352
|
+
this.d6a_1 = reason;
|
|
2325
2353
|
}
|
|
2326
2354
|
protoOf(GameFinishedReasonDto).toString = function () {
|
|
2327
|
-
return 'GameFinishedReasonDto(reason=' + this.
|
|
2355
|
+
return 'GameFinishedReasonDto(reason=' + this.d6a_1 + ')';
|
|
2328
2356
|
};
|
|
2329
2357
|
protoOf(GameFinishedReasonDto).hashCode = function () {
|
|
2330
|
-
return getStringHashCode(this.
|
|
2358
|
+
return getStringHashCode(this.d6a_1);
|
|
2331
2359
|
};
|
|
2332
2360
|
protoOf(GameFinishedReasonDto).equals = function (other) {
|
|
2333
2361
|
if (this === other)
|
|
@@ -2335,7 +2363,7 @@
|
|
|
2335
2363
|
if (!(other instanceof GameFinishedReasonDto))
|
|
2336
2364
|
return false;
|
|
2337
2365
|
var tmp0_other_with_cast = other instanceof GameFinishedReasonDto ? other : THROW_CCE();
|
|
2338
|
-
if (!(this.
|
|
2366
|
+
if (!(this.d6a_1 === tmp0_other_with_cast.d6a_1))
|
|
2339
2367
|
return false;
|
|
2340
2368
|
return true;
|
|
2341
2369
|
};
|
|
@@ -2349,19 +2377,19 @@
|
|
|
2349
2377
|
$serializer_instance_2 = this;
|
|
2350
2378
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_EXIT', this, 1);
|
|
2351
2379
|
tmp0_serialDesc.g4c('playerId', false);
|
|
2352
|
-
this.
|
|
2380
|
+
this.e6a_1 = tmp0_serialDesc;
|
|
2353
2381
|
}
|
|
2354
|
-
protoOf($serializer_2).
|
|
2355
|
-
var tmp0_desc = this.
|
|
2382
|
+
protoOf($serializer_2).f6a = function (encoder, value) {
|
|
2383
|
+
var tmp0_desc = this.e6a_1;
|
|
2356
2384
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2357
|
-
tmp1_output.g46(tmp0_desc, 0, value.
|
|
2385
|
+
tmp1_output.g46(tmp0_desc, 0, value.g6a_1);
|
|
2358
2386
|
tmp1_output.t44(tmp0_desc);
|
|
2359
2387
|
};
|
|
2360
2388
|
protoOf($serializer_2).f41 = function (encoder, value) {
|
|
2361
|
-
return this.
|
|
2389
|
+
return this.f6a(encoder, value instanceof PlayerExitReasonDto ? value : THROW_CCE());
|
|
2362
2390
|
};
|
|
2363
2391
|
protoOf($serializer_2).g41 = function (decoder) {
|
|
2364
|
-
var tmp0_desc = this.
|
|
2392
|
+
var tmp0_desc = this.e6a_1;
|
|
2365
2393
|
var tmp1_flag = true;
|
|
2366
2394
|
var tmp2_index = 0;
|
|
2367
2395
|
var tmp3_bitMask0 = 0;
|
|
@@ -2389,7 +2417,7 @@
|
|
|
2389
2417
|
return PlayerExitReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, null);
|
|
2390
2418
|
};
|
|
2391
2419
|
protoOf($serializer_2).e41 = function () {
|
|
2392
|
-
return this.
|
|
2420
|
+
return this.e6a_1;
|
|
2393
2421
|
};
|
|
2394
2422
|
protoOf($serializer_2).v4c = function () {
|
|
2395
2423
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2405,10 +2433,10 @@
|
|
|
2405
2433
|
}
|
|
2406
2434
|
function PlayerExitReasonDto_init_$Init$(seen0, playerId, serializationConstructorMarker, $this) {
|
|
2407
2435
|
if (!(1 === (1 & seen0))) {
|
|
2408
|
-
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().
|
|
2436
|
+
throwMissingFieldException(seen0, 1, $serializer_getInstance_2().e6a_1);
|
|
2409
2437
|
}
|
|
2410
2438
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2411
|
-
$this.
|
|
2439
|
+
$this.g6a_1 = playerId;
|
|
2412
2440
|
return $this;
|
|
2413
2441
|
}
|
|
2414
2442
|
function PlayerExitReasonDto_init_$Create$(seen0, playerId, serializationConstructorMarker) {
|
|
@@ -2416,13 +2444,13 @@
|
|
|
2416
2444
|
}
|
|
2417
2445
|
function PlayerExitReasonDto(playerId) {
|
|
2418
2446
|
TerminationGameReasonDto.call(this);
|
|
2419
|
-
this.
|
|
2447
|
+
this.g6a_1 = playerId;
|
|
2420
2448
|
}
|
|
2421
2449
|
protoOf(PlayerExitReasonDto).toString = function () {
|
|
2422
|
-
return 'PlayerExitReasonDto(playerId=' + this.
|
|
2450
|
+
return 'PlayerExitReasonDto(playerId=' + this.g6a_1 + ')';
|
|
2423
2451
|
};
|
|
2424
2452
|
protoOf(PlayerExitReasonDto).hashCode = function () {
|
|
2425
|
-
return getStringHashCode(this.
|
|
2453
|
+
return getStringHashCode(this.g6a_1);
|
|
2426
2454
|
};
|
|
2427
2455
|
protoOf(PlayerExitReasonDto).equals = function (other) {
|
|
2428
2456
|
if (this === other)
|
|
@@ -2430,7 +2458,7 @@
|
|
|
2430
2458
|
if (!(other instanceof PlayerExitReasonDto))
|
|
2431
2459
|
return false;
|
|
2432
2460
|
var tmp0_other_with_cast = other instanceof PlayerExitReasonDto ? other : THROW_CCE();
|
|
2433
|
-
if (!(this.
|
|
2461
|
+
if (!(this.g6a_1 === tmp0_other_with_cast.g6a_1))
|
|
2434
2462
|
return false;
|
|
2435
2463
|
return true;
|
|
2436
2464
|
};
|
|
@@ -2445,20 +2473,20 @@
|
|
|
2445
2473
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_LOST_CONNECTION', this, 2);
|
|
2446
2474
|
tmp0_serialDesc.g4c('playerId', false);
|
|
2447
2475
|
tmp0_serialDesc.g4c('tag', false);
|
|
2448
|
-
this.
|
|
2476
|
+
this.h6a_1 = tmp0_serialDesc;
|
|
2449
2477
|
}
|
|
2450
|
-
protoOf($serializer_3).
|
|
2451
|
-
var tmp0_desc = this.
|
|
2478
|
+
protoOf($serializer_3).i6a = function (encoder, value) {
|
|
2479
|
+
var tmp0_desc = this.h6a_1;
|
|
2452
2480
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2453
|
-
tmp1_output.g46(tmp0_desc, 0, value.
|
|
2454
|
-
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2481
|
+
tmp1_output.g46(tmp0_desc, 0, value.j6a_1);
|
|
2482
|
+
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.k6a_1);
|
|
2455
2483
|
tmp1_output.t44(tmp0_desc);
|
|
2456
2484
|
};
|
|
2457
2485
|
protoOf($serializer_3).f41 = function (encoder, value) {
|
|
2458
|
-
return this.
|
|
2486
|
+
return this.i6a(encoder, value instanceof PlayerLostConnectionReasonDto ? value : THROW_CCE());
|
|
2459
2487
|
};
|
|
2460
2488
|
protoOf($serializer_3).g41 = function (decoder) {
|
|
2461
|
-
var tmp0_desc = this.
|
|
2489
|
+
var tmp0_desc = this.h6a_1;
|
|
2462
2490
|
var tmp1_flag = true;
|
|
2463
2491
|
var tmp2_index = 0;
|
|
2464
2492
|
var tmp3_bitMask0 = 0;
|
|
@@ -2493,7 +2521,7 @@
|
|
|
2493
2521
|
return PlayerLostConnectionReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2494
2522
|
};
|
|
2495
2523
|
protoOf($serializer_3).e41 = function () {
|
|
2496
|
-
return this.
|
|
2524
|
+
return this.h6a_1;
|
|
2497
2525
|
};
|
|
2498
2526
|
protoOf($serializer_3).v4c = function () {
|
|
2499
2527
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2509,11 +2537,11 @@
|
|
|
2509
2537
|
}
|
|
2510
2538
|
function PlayerLostConnectionReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2511
2539
|
if (!(3 === (3 & seen0))) {
|
|
2512
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_3().
|
|
2540
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_3().h6a_1);
|
|
2513
2541
|
}
|
|
2514
2542
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2515
|
-
$this.
|
|
2516
|
-
$this.
|
|
2543
|
+
$this.j6a_1 = playerId;
|
|
2544
|
+
$this.k6a_1 = tag;
|
|
2517
2545
|
return $this;
|
|
2518
2546
|
}
|
|
2519
2547
|
function PlayerLostConnectionReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2521,15 +2549,15 @@
|
|
|
2521
2549
|
}
|
|
2522
2550
|
function PlayerLostConnectionReasonDto(playerId, tag) {
|
|
2523
2551
|
TerminationGameReasonDto.call(this);
|
|
2524
|
-
this.
|
|
2525
|
-
this.
|
|
2552
|
+
this.j6a_1 = playerId;
|
|
2553
|
+
this.k6a_1 = tag;
|
|
2526
2554
|
}
|
|
2527
2555
|
protoOf(PlayerLostConnectionReasonDto).toString = function () {
|
|
2528
|
-
return 'PlayerLostConnectionReasonDto(playerId=' + this.
|
|
2556
|
+
return 'PlayerLostConnectionReasonDto(playerId=' + this.j6a_1 + ', tag=' + this.k6a_1 + ')';
|
|
2529
2557
|
};
|
|
2530
2558
|
protoOf(PlayerLostConnectionReasonDto).hashCode = function () {
|
|
2531
|
-
var result = getStringHashCode(this.
|
|
2532
|
-
result = imul(result, 31) + (this.
|
|
2559
|
+
var result = getStringHashCode(this.j6a_1);
|
|
2560
|
+
result = imul(result, 31) + (this.k6a_1 == null ? 0 : getStringHashCode(this.k6a_1)) | 0;
|
|
2533
2561
|
return result;
|
|
2534
2562
|
};
|
|
2535
2563
|
protoOf(PlayerLostConnectionReasonDto).equals = function (other) {
|
|
@@ -2538,9 +2566,9 @@
|
|
|
2538
2566
|
if (!(other instanceof PlayerLostConnectionReasonDto))
|
|
2539
2567
|
return false;
|
|
2540
2568
|
var tmp0_other_with_cast = other instanceof PlayerLostConnectionReasonDto ? other : THROW_CCE();
|
|
2541
|
-
if (!(this.
|
|
2569
|
+
if (!(this.j6a_1 === tmp0_other_with_cast.j6a_1))
|
|
2542
2570
|
return false;
|
|
2543
|
-
if (!(this.
|
|
2571
|
+
if (!(this.k6a_1 == tmp0_other_with_cast.k6a_1))
|
|
2544
2572
|
return false;
|
|
2545
2573
|
return true;
|
|
2546
2574
|
};
|
|
@@ -2555,20 +2583,20 @@
|
|
|
2555
2583
|
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('PLAYER_TIMEOUT', this, 2);
|
|
2556
2584
|
tmp0_serialDesc.g4c('playerId', false);
|
|
2557
2585
|
tmp0_serialDesc.g4c('tag', false);
|
|
2558
|
-
this.
|
|
2586
|
+
this.l6a_1 = tmp0_serialDesc;
|
|
2559
2587
|
}
|
|
2560
|
-
protoOf($serializer_4).
|
|
2561
|
-
var tmp0_desc = this.
|
|
2588
|
+
protoOf($serializer_4).m6a = function (encoder, value) {
|
|
2589
|
+
var tmp0_desc = this.l6a_1;
|
|
2562
2590
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2563
|
-
tmp1_output.g46(tmp0_desc, 0, value.
|
|
2564
|
-
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2591
|
+
tmp1_output.g46(tmp0_desc, 0, value.n6a_1);
|
|
2592
|
+
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.o6a_1);
|
|
2565
2593
|
tmp1_output.t44(tmp0_desc);
|
|
2566
2594
|
};
|
|
2567
2595
|
protoOf($serializer_4).f41 = function (encoder, value) {
|
|
2568
|
-
return this.
|
|
2596
|
+
return this.m6a(encoder, value instanceof PlayerTimeoutReasonDto ? value : THROW_CCE());
|
|
2569
2597
|
};
|
|
2570
2598
|
protoOf($serializer_4).g41 = function (decoder) {
|
|
2571
|
-
var tmp0_desc = this.
|
|
2599
|
+
var tmp0_desc = this.l6a_1;
|
|
2572
2600
|
var tmp1_flag = true;
|
|
2573
2601
|
var tmp2_index = 0;
|
|
2574
2602
|
var tmp3_bitMask0 = 0;
|
|
@@ -2603,7 +2631,7 @@
|
|
|
2603
2631
|
return PlayerTimeoutReasonDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, null);
|
|
2604
2632
|
};
|
|
2605
2633
|
protoOf($serializer_4).e41 = function () {
|
|
2606
|
-
return this.
|
|
2634
|
+
return this.l6a_1;
|
|
2607
2635
|
};
|
|
2608
2636
|
protoOf($serializer_4).v4c = function () {
|
|
2609
2637
|
// Inline function 'kotlin.arrayOf' call
|
|
@@ -2619,11 +2647,11 @@
|
|
|
2619
2647
|
}
|
|
2620
2648
|
function PlayerTimeoutReasonDto_init_$Init$(seen0, playerId, tag, serializationConstructorMarker, $this) {
|
|
2621
2649
|
if (!(3 === (3 & seen0))) {
|
|
2622
|
-
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().
|
|
2650
|
+
throwMissingFieldException(seen0, 3, $serializer_getInstance_4().l6a_1);
|
|
2623
2651
|
}
|
|
2624
2652
|
TerminationGameReasonDto_init_$Init$(seen0, serializationConstructorMarker, $this);
|
|
2625
|
-
$this.
|
|
2626
|
-
$this.
|
|
2653
|
+
$this.n6a_1 = playerId;
|
|
2654
|
+
$this.o6a_1 = tag;
|
|
2627
2655
|
return $this;
|
|
2628
2656
|
}
|
|
2629
2657
|
function PlayerTimeoutReasonDto_init_$Create$(seen0, playerId, tag, serializationConstructorMarker) {
|
|
@@ -2631,15 +2659,15 @@
|
|
|
2631
2659
|
}
|
|
2632
2660
|
function PlayerTimeoutReasonDto(playerId, tag) {
|
|
2633
2661
|
TerminationGameReasonDto.call(this);
|
|
2634
|
-
this.
|
|
2635
|
-
this.
|
|
2662
|
+
this.n6a_1 = playerId;
|
|
2663
|
+
this.o6a_1 = tag;
|
|
2636
2664
|
}
|
|
2637
2665
|
protoOf(PlayerTimeoutReasonDto).toString = function () {
|
|
2638
|
-
return 'PlayerTimeoutReasonDto(playerId=' + this.
|
|
2666
|
+
return 'PlayerTimeoutReasonDto(playerId=' + this.n6a_1 + ', tag=' + this.o6a_1 + ')';
|
|
2639
2667
|
};
|
|
2640
2668
|
protoOf(PlayerTimeoutReasonDto).hashCode = function () {
|
|
2641
|
-
var result = getStringHashCode(this.
|
|
2642
|
-
result = imul(result, 31) + (this.
|
|
2669
|
+
var result = getStringHashCode(this.n6a_1);
|
|
2670
|
+
result = imul(result, 31) + (this.o6a_1 == null ? 0 : getStringHashCode(this.o6a_1)) | 0;
|
|
2643
2671
|
return result;
|
|
2644
2672
|
};
|
|
2645
2673
|
protoOf(PlayerTimeoutReasonDto).equals = function (other) {
|
|
@@ -2648,14 +2676,14 @@
|
|
|
2648
2676
|
if (!(other instanceof PlayerTimeoutReasonDto))
|
|
2649
2677
|
return false;
|
|
2650
2678
|
var tmp0_other_with_cast = other instanceof PlayerTimeoutReasonDto ? other : THROW_CCE();
|
|
2651
|
-
if (!(this.
|
|
2679
|
+
if (!(this.n6a_1 === tmp0_other_with_cast.n6a_1))
|
|
2652
2680
|
return false;
|
|
2653
|
-
if (!(this.
|
|
2681
|
+
if (!(this.o6a_1 == tmp0_other_with_cast.o6a_1))
|
|
2654
2682
|
return false;
|
|
2655
2683
|
return true;
|
|
2656
2684
|
};
|
|
2657
2685
|
function _get_$cachedSerializer__te6jhj_8($this) {
|
|
2658
|
-
return $this.
|
|
2686
|
+
return $this.p6a_1.u();
|
|
2659
2687
|
}
|
|
2660
2688
|
function WaitingForConnectionReasonDto$_anonymous__hgbgp6() {
|
|
2661
2689
|
var tmp = WaitingForConnectionReasonDto_getInstance();
|
|
@@ -2670,7 +2698,7 @@
|
|
|
2670
2698
|
TerminationGameReasonDto.call(this);
|
|
2671
2699
|
var tmp = this;
|
|
2672
2700
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
2673
|
-
tmp.
|
|
2701
|
+
tmp.p6a_1 = lazy(tmp_0, WaitingForConnectionReasonDto$_anonymous__hgbgp6);
|
|
2674
2702
|
}
|
|
2675
2703
|
protoOf(WaitingForConnectionReasonDto).j4t = function () {
|
|
2676
2704
|
return _get_$cachedSerializer__te6jhj_8(this);
|
|
@@ -2817,20 +2845,20 @@
|
|
|
2817
2845
|
}
|
|
2818
2846
|
function mapFromDto_2(_this__u8e3s4) {
|
|
2819
2847
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2820
|
-
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.
|
|
2848
|
+
var tmp0_elvis_lhs = toDomainEnumSafe(_this__u8e3s4.d6a_1, get_gameFinishedReasonMapping());
|
|
2821
2849
|
return new GameFinishedReason(tmp0_elvis_lhs == null ? Reason_GAME_NOT_EXISTS_getInstance() : tmp0_elvis_lhs);
|
|
2822
2850
|
}
|
|
2823
2851
|
function mapFromDto_3(_this__u8e3s4) {
|
|
2824
2852
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2825
|
-
return new PlayerExitReason(_this__u8e3s4.
|
|
2853
|
+
return new PlayerExitReason(_this__u8e3s4.g6a_1);
|
|
2826
2854
|
}
|
|
2827
2855
|
function mapFromDto_4(_this__u8e3s4) {
|
|
2828
2856
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2829
|
-
return new PlayerLostConnectionReason(_this__u8e3s4.
|
|
2857
|
+
return new PlayerLostConnectionReason(_this__u8e3s4.j6a_1, _this__u8e3s4.k6a_1);
|
|
2830
2858
|
}
|
|
2831
2859
|
function mapFromDto_5(_this__u8e3s4) {
|
|
2832
2860
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
2833
|
-
return new PlayerTimeoutReason(_this__u8e3s4.
|
|
2861
|
+
return new PlayerTimeoutReason(_this__u8e3s4.n6a_1, _this__u8e3s4.o6a_1);
|
|
2834
2862
|
}
|
|
2835
2863
|
function mapFromDto_6(_this__u8e3s4) {
|
|
2836
2864
|
_init_properties_TerminationReasonMappers_kt__5n4kx6();
|
|
@@ -2891,17 +2919,21 @@
|
|
|
2891
2919
|
}
|
|
2892
2920
|
var tmp6_isBot = tmp;
|
|
2893
2921
|
var tmp7_initialLuckyFactor = _this__u8e3s4.initialLuckyFactor;
|
|
2894
|
-
|
|
2922
|
+
var tmp8_rating = _this__u8e3s4.rating;
|
|
2923
|
+
return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp8_rating, tmp6_isBot, tmp7_initialLuckyFactor);
|
|
2895
2924
|
}
|
|
2896
2925
|
function mapFromDto_8(_this__u8e3s4) {
|
|
2897
|
-
var tmp0_elvis_lhs = _this__u8e3s4.
|
|
2898
|
-
var
|
|
2899
|
-
var tmp1_elvis_lhs = _this__u8e3s4.
|
|
2900
|
-
var
|
|
2901
|
-
var tmp2_elvis_lhs = _this__u8e3s4.
|
|
2902
|
-
var
|
|
2903
|
-
var tmp3_elvis_lhs = _this__u8e3s4.
|
|
2904
|
-
|
|
2926
|
+
var tmp0_elvis_lhs = _this__u8e3s4.q6a_1;
|
|
2927
|
+
var tmp4_playerId = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.r6a_1) : tmp0_elvis_lhs;
|
|
2928
|
+
var tmp1_elvis_lhs = _this__u8e3s4.s6a_1;
|
|
2929
|
+
var tmp5_name = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.t6a_1) : tmp1_elvis_lhs;
|
|
2930
|
+
var tmp2_elvis_lhs = _this__u8e3s4.u6a_1;
|
|
2931
|
+
var tmp6_avatarUrl = tmp2_elvis_lhs == null ? _this__u8e3s4.v6a_1 : tmp2_elvis_lhs;
|
|
2932
|
+
var tmp3_elvis_lhs = _this__u8e3s4.x6a_1;
|
|
2933
|
+
var tmp7_isBot = tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs;
|
|
2934
|
+
var tmp8_initialLuckyFactor = _this__u8e3s4.y6a_1;
|
|
2935
|
+
var tmp9_rating = _this__u8e3s4.w6a_1;
|
|
2936
|
+
return new GameUserInfo(tmp4_playerId, tmp5_name, tmp6_avatarUrl, tmp7_isBot, tmp9_rating, tmp8_initialLuckyFactor);
|
|
2905
2937
|
}
|
|
2906
2938
|
function Companion_15() {
|
|
2907
2939
|
}
|
|
@@ -2911,47 +2943,49 @@
|
|
|
2911
2943
|
}
|
|
2912
2944
|
function $serializer_5() {
|
|
2913
2945
|
$serializer_instance_5 = this;
|
|
2914
|
-
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this,
|
|
2946
|
+
var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this, 9);
|
|
2915
2947
|
tmp0_serialDesc.g4c('playerId', true);
|
|
2916
2948
|
tmp0_serialDesc.g4c('uid', true);
|
|
2917
2949
|
tmp0_serialDesc.g4c('name', true);
|
|
2918
2950
|
tmp0_serialDesc.g4c('nickname', true);
|
|
2919
2951
|
tmp0_serialDesc.g4c('avatarUrl', true);
|
|
2920
2952
|
tmp0_serialDesc.g4c('photo', true);
|
|
2921
|
-
tmp0_serialDesc.g4c('
|
|
2922
|
-
tmp0_serialDesc.g4c('
|
|
2923
|
-
|
|
2953
|
+
tmp0_serialDesc.g4c('rating', false);
|
|
2954
|
+
tmp0_serialDesc.g4c('is_bot', false);
|
|
2955
|
+
tmp0_serialDesc.g4c('lucky_factor', false);
|
|
2956
|
+
this.z6a_1 = tmp0_serialDesc;
|
|
2924
2957
|
}
|
|
2925
|
-
protoOf($serializer_5).
|
|
2926
|
-
var tmp0_desc = this.
|
|
2958
|
+
protoOf($serializer_5).a6b = function (encoder, value) {
|
|
2959
|
+
var tmp0_desc = this.z6a_1;
|
|
2927
2960
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
2928
|
-
if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.
|
|
2929
|
-
tmp1_output.k46(tmp0_desc, 0, StringSerializer_getInstance(), value.
|
|
2961
|
+
if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.q6a_1 == null)) {
|
|
2962
|
+
tmp1_output.k46(tmp0_desc, 0, StringSerializer_getInstance(), value.q6a_1);
|
|
2930
2963
|
}
|
|
2931
|
-
if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.
|
|
2932
|
-
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.
|
|
2964
|
+
if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.r6a_1 == null)) {
|
|
2965
|
+
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.r6a_1);
|
|
2933
2966
|
}
|
|
2934
|
-
if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.
|
|
2935
|
-
tmp1_output.k46(tmp0_desc, 2, StringSerializer_getInstance(), value.
|
|
2967
|
+
if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.s6a_1 == null)) {
|
|
2968
|
+
tmp1_output.k46(tmp0_desc, 2, StringSerializer_getInstance(), value.s6a_1);
|
|
2936
2969
|
}
|
|
2937
|
-
if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.
|
|
2938
|
-
tmp1_output.k46(tmp0_desc, 3, StringSerializer_getInstance(), value.
|
|
2970
|
+
if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.t6a_1 == null)) {
|
|
2971
|
+
tmp1_output.k46(tmp0_desc, 3, StringSerializer_getInstance(), value.t6a_1);
|
|
2939
2972
|
}
|
|
2940
|
-
if (tmp1_output.o46(tmp0_desc, 4) ? true : !(value.
|
|
2941
|
-
tmp1_output.k46(tmp0_desc, 4, StringSerializer_getInstance(), value.
|
|
2973
|
+
if (tmp1_output.o46(tmp0_desc, 4) ? true : !(value.u6a_1 == null)) {
|
|
2974
|
+
tmp1_output.k46(tmp0_desc, 4, StringSerializer_getInstance(), value.u6a_1);
|
|
2942
2975
|
}
|
|
2943
|
-
if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.
|
|
2944
|
-
tmp1_output.k46(tmp0_desc, 5, StringSerializer_getInstance(), value.
|
|
2976
|
+
if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.v6a_1 == null)) {
|
|
2977
|
+
tmp1_output.k46(tmp0_desc, 5, StringSerializer_getInstance(), value.v6a_1);
|
|
2945
2978
|
}
|
|
2946
|
-
tmp1_output.k46(tmp0_desc, 6,
|
|
2947
|
-
tmp1_output.k46(tmp0_desc, 7,
|
|
2979
|
+
tmp1_output.k46(tmp0_desc, 6, DoubleSerializer_getInstance(), value.w6a_1);
|
|
2980
|
+
tmp1_output.k46(tmp0_desc, 7, BooleanSerializer_getInstance(), value.x6a_1);
|
|
2981
|
+
tmp1_output.k46(tmp0_desc, 8, FloatSerializer_getInstance(), value.y6a_1);
|
|
2948
2982
|
tmp1_output.t44(tmp0_desc);
|
|
2949
2983
|
};
|
|
2950
2984
|
protoOf($serializer_5).f41 = function (encoder, value) {
|
|
2951
|
-
return this.
|
|
2985
|
+
return this.a6b(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
|
|
2952
2986
|
};
|
|
2953
2987
|
protoOf($serializer_5).g41 = function (decoder) {
|
|
2954
|
-
var tmp0_desc = this.
|
|
2988
|
+
var tmp0_desc = this.z6a_1;
|
|
2955
2989
|
var tmp1_flag = true;
|
|
2956
2990
|
var tmp2_index = 0;
|
|
2957
2991
|
var tmp3_bitMask0 = 0;
|
|
@@ -2963,78 +2997,85 @@
|
|
|
2963
2997
|
var tmp9_local5 = null;
|
|
2964
2998
|
var tmp10_local6 = null;
|
|
2965
2999
|
var tmp11_local7 = null;
|
|
2966
|
-
var
|
|
2967
|
-
|
|
2968
|
-
|
|
3000
|
+
var tmp12_local8 = null;
|
|
3001
|
+
var tmp13_input = decoder.s44(tmp0_desc);
|
|
3002
|
+
if (tmp13_input.h45()) {
|
|
3003
|
+
tmp4_local0 = tmp13_input.g45(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
2969
3004
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
2970
|
-
tmp5_local1 =
|
|
3005
|
+
tmp5_local1 = tmp13_input.g45(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
|
|
2971
3006
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
2972
|
-
tmp6_local2 =
|
|
3007
|
+
tmp6_local2 = tmp13_input.g45(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
|
|
2973
3008
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
2974
|
-
tmp7_local3 =
|
|
3009
|
+
tmp7_local3 = tmp13_input.g45(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
|
|
2975
3010
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
2976
|
-
tmp8_local4 =
|
|
3011
|
+
tmp8_local4 = tmp13_input.g45(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
|
|
2977
3012
|
tmp3_bitMask0 = tmp3_bitMask0 | 16;
|
|
2978
|
-
tmp9_local5 =
|
|
3013
|
+
tmp9_local5 = tmp13_input.g45(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
|
|
2979
3014
|
tmp3_bitMask0 = tmp3_bitMask0 | 32;
|
|
2980
|
-
tmp10_local6 =
|
|
3015
|
+
tmp10_local6 = tmp13_input.g45(tmp0_desc, 6, DoubleSerializer_getInstance(), tmp10_local6);
|
|
2981
3016
|
tmp3_bitMask0 = tmp3_bitMask0 | 64;
|
|
2982
|
-
tmp11_local7 =
|
|
3017
|
+
tmp11_local7 = tmp13_input.g45(tmp0_desc, 7, BooleanSerializer_getInstance(), tmp11_local7);
|
|
2983
3018
|
tmp3_bitMask0 = tmp3_bitMask0 | 128;
|
|
3019
|
+
tmp12_local8 = tmp13_input.g45(tmp0_desc, 8, FloatSerializer_getInstance(), tmp12_local8);
|
|
3020
|
+
tmp3_bitMask0 = tmp3_bitMask0 | 256;
|
|
2984
3021
|
} else
|
|
2985
3022
|
while (tmp1_flag) {
|
|
2986
|
-
tmp2_index =
|
|
3023
|
+
tmp2_index = tmp13_input.i45(tmp0_desc);
|
|
2987
3024
|
switch (tmp2_index) {
|
|
2988
3025
|
case -1:
|
|
2989
3026
|
tmp1_flag = false;
|
|
2990
3027
|
break;
|
|
2991
3028
|
case 0:
|
|
2992
|
-
tmp4_local0 =
|
|
3029
|
+
tmp4_local0 = tmp13_input.g45(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
|
|
2993
3030
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
2994
3031
|
break;
|
|
2995
3032
|
case 1:
|
|
2996
|
-
tmp5_local1 =
|
|
3033
|
+
tmp5_local1 = tmp13_input.g45(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
|
|
2997
3034
|
tmp3_bitMask0 = tmp3_bitMask0 | 2;
|
|
2998
3035
|
break;
|
|
2999
3036
|
case 2:
|
|
3000
|
-
tmp6_local2 =
|
|
3037
|
+
tmp6_local2 = tmp13_input.g45(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
|
|
3001
3038
|
tmp3_bitMask0 = tmp3_bitMask0 | 4;
|
|
3002
3039
|
break;
|
|
3003
3040
|
case 3:
|
|
3004
|
-
tmp7_local3 =
|
|
3041
|
+
tmp7_local3 = tmp13_input.g45(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
|
|
3005
3042
|
tmp3_bitMask0 = tmp3_bitMask0 | 8;
|
|
3006
3043
|
break;
|
|
3007
3044
|
case 4:
|
|
3008
|
-
tmp8_local4 =
|
|
3045
|
+
tmp8_local4 = tmp13_input.g45(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
|
|
3009
3046
|
tmp3_bitMask0 = tmp3_bitMask0 | 16;
|
|
3010
3047
|
break;
|
|
3011
3048
|
case 5:
|
|
3012
|
-
tmp9_local5 =
|
|
3049
|
+
tmp9_local5 = tmp13_input.g45(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
|
|
3013
3050
|
tmp3_bitMask0 = tmp3_bitMask0 | 32;
|
|
3014
3051
|
break;
|
|
3015
3052
|
case 6:
|
|
3016
|
-
tmp10_local6 =
|
|
3053
|
+
tmp10_local6 = tmp13_input.g45(tmp0_desc, 6, DoubleSerializer_getInstance(), tmp10_local6);
|
|
3017
3054
|
tmp3_bitMask0 = tmp3_bitMask0 | 64;
|
|
3018
3055
|
break;
|
|
3019
3056
|
case 7:
|
|
3020
|
-
tmp11_local7 =
|
|
3057
|
+
tmp11_local7 = tmp13_input.g45(tmp0_desc, 7, BooleanSerializer_getInstance(), tmp11_local7);
|
|
3021
3058
|
tmp3_bitMask0 = tmp3_bitMask0 | 128;
|
|
3022
3059
|
break;
|
|
3060
|
+
case 8:
|
|
3061
|
+
tmp12_local8 = tmp13_input.g45(tmp0_desc, 8, FloatSerializer_getInstance(), tmp12_local8);
|
|
3062
|
+
tmp3_bitMask0 = tmp3_bitMask0 | 256;
|
|
3063
|
+
break;
|
|
3023
3064
|
default:
|
|
3024
3065
|
throw UnknownFieldException_init_$Create$(tmp2_index);
|
|
3025
3066
|
}
|
|
3026
3067
|
}
|
|
3027
|
-
|
|
3028
|
-
return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, null);
|
|
3068
|
+
tmp13_input.t44(tmp0_desc);
|
|
3069
|
+
return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, null);
|
|
3029
3070
|
};
|
|
3030
3071
|
protoOf($serializer_5).e41 = function () {
|
|
3031
|
-
return this.
|
|
3072
|
+
return this.z6a_1;
|
|
3032
3073
|
};
|
|
3033
3074
|
protoOf($serializer_5).v4c = function () {
|
|
3034
3075
|
// Inline function 'kotlin.arrayOf' call
|
|
3035
3076
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3036
3077
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3037
|
-
return [get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
|
|
3078
|
+
return [get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(DoubleSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
|
|
3038
3079
|
};
|
|
3039
3080
|
var $serializer_instance_5;
|
|
3040
3081
|
function $serializer_getInstance_5() {
|
|
@@ -3042,86 +3083,90 @@
|
|
|
3042
3083
|
new $serializer_5();
|
|
3043
3084
|
return $serializer_instance_5;
|
|
3044
3085
|
}
|
|
3045
|
-
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
3046
|
-
if (!(
|
|
3047
|
-
throwMissingFieldException(seen0,
|
|
3086
|
+
function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
|
|
3087
|
+
if (!(448 === (448 & seen0))) {
|
|
3088
|
+
throwMissingFieldException(seen0, 448, $serializer_getInstance_5().z6a_1);
|
|
3048
3089
|
}
|
|
3049
3090
|
if (0 === (seen0 & 1))
|
|
3050
|
-
$this.
|
|
3091
|
+
$this.q6a_1 = null;
|
|
3051
3092
|
else
|
|
3052
|
-
$this.
|
|
3093
|
+
$this.q6a_1 = playerId;
|
|
3053
3094
|
if (0 === (seen0 & 2))
|
|
3054
|
-
$this.
|
|
3095
|
+
$this.r6a_1 = null;
|
|
3055
3096
|
else
|
|
3056
|
-
$this.
|
|
3097
|
+
$this.r6a_1 = uid;
|
|
3057
3098
|
if (0 === (seen0 & 4))
|
|
3058
|
-
$this.
|
|
3099
|
+
$this.s6a_1 = null;
|
|
3059
3100
|
else
|
|
3060
|
-
$this.
|
|
3101
|
+
$this.s6a_1 = name;
|
|
3061
3102
|
if (0 === (seen0 & 8))
|
|
3062
|
-
$this.
|
|
3103
|
+
$this.t6a_1 = null;
|
|
3063
3104
|
else
|
|
3064
|
-
$this.
|
|
3105
|
+
$this.t6a_1 = nickname;
|
|
3065
3106
|
if (0 === (seen0 & 16))
|
|
3066
|
-
$this.
|
|
3107
|
+
$this.u6a_1 = null;
|
|
3067
3108
|
else
|
|
3068
|
-
$this.
|
|
3109
|
+
$this.u6a_1 = avatarUrl;
|
|
3069
3110
|
if (0 === (seen0 & 32))
|
|
3070
|
-
$this.
|
|
3111
|
+
$this.v6a_1 = null;
|
|
3071
3112
|
else
|
|
3072
|
-
$this.
|
|
3073
|
-
$this.
|
|
3074
|
-
$this.
|
|
3113
|
+
$this.v6a_1 = photo;
|
|
3114
|
+
$this.w6a_1 = rating;
|
|
3115
|
+
$this.x6a_1 = isBot;
|
|
3116
|
+
$this.y6a_1 = initialLuckyFactor;
|
|
3075
3117
|
return $this;
|
|
3076
3118
|
}
|
|
3077
|
-
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
3078
|
-
return GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
|
|
3119
|
+
function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker) {
|
|
3120
|
+
return GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
|
|
3079
3121
|
}
|
|
3080
|
-
function GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor) {
|
|
3122
|
+
function GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
3081
3123
|
playerId = playerId === VOID ? null : playerId;
|
|
3082
3124
|
uid = uid === VOID ? null : uid;
|
|
3083
3125
|
name = name === VOID ? null : name;
|
|
3084
3126
|
nickname = nickname === VOID ? null : nickname;
|
|
3085
3127
|
avatarUrl = avatarUrl === VOID ? null : avatarUrl;
|
|
3086
3128
|
photo = photo === VOID ? null : photo;
|
|
3087
|
-
this.
|
|
3088
|
-
this.
|
|
3089
|
-
this.
|
|
3090
|
-
this.
|
|
3091
|
-
this.
|
|
3092
|
-
this.
|
|
3093
|
-
this.
|
|
3094
|
-
this.
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3129
|
+
this.q6a_1 = playerId;
|
|
3130
|
+
this.r6a_1 = uid;
|
|
3131
|
+
this.s6a_1 = name;
|
|
3132
|
+
this.t6a_1 = nickname;
|
|
3133
|
+
this.u6a_1 = avatarUrl;
|
|
3134
|
+
this.v6a_1 = photo;
|
|
3135
|
+
this.w6a_1 = rating;
|
|
3136
|
+
this.x6a_1 = isBot;
|
|
3137
|
+
this.y6a_1 = initialLuckyFactor;
|
|
3138
|
+
}
|
|
3139
|
+
protoOf(GameUserInfoDto).b6b = function () {
|
|
3140
|
+
return this.c6b(VOID, VOID, VOID, VOID, VOID, VOID, VOID, null, null);
|
|
3141
|
+
};
|
|
3142
|
+
protoOf(GameUserInfoDto).d6b = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) {
|
|
3143
|
+
return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
3144
|
+
};
|
|
3145
|
+
protoOf(GameUserInfoDto).c6b = function (playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor, $super) {
|
|
3146
|
+
playerId = playerId === VOID ? this.q6a_1 : playerId;
|
|
3147
|
+
uid = uid === VOID ? this.r6a_1 : uid;
|
|
3148
|
+
name = name === VOID ? this.s6a_1 : name;
|
|
3149
|
+
nickname = nickname === VOID ? this.t6a_1 : nickname;
|
|
3150
|
+
avatarUrl = avatarUrl === VOID ? this.u6a_1 : avatarUrl;
|
|
3151
|
+
photo = photo === VOID ? this.v6a_1 : photo;
|
|
3152
|
+
rating = rating === VOID ? this.w6a_1 : rating;
|
|
3153
|
+
isBot = isBot === VOID ? this.x6a_1 : isBot;
|
|
3154
|
+
initialLuckyFactor = initialLuckyFactor === VOID ? this.y6a_1 : initialLuckyFactor;
|
|
3155
|
+
return $super === VOID ? this.d6b(playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor) : $super.d6b.call(this, playerId, uid, name, nickname, avatarUrl, photo, rating, isBot, initialLuckyFactor);
|
|
3112
3156
|
};
|
|
3113
3157
|
protoOf(GameUserInfoDto).toString = function () {
|
|
3114
|
-
return 'GameUserInfoDto(playerId=' + this.
|
|
3158
|
+
return 'GameUserInfoDto(playerId=' + this.q6a_1 + ', uid=' + this.r6a_1 + ', name=' + this.s6a_1 + ', nickname=' + this.t6a_1 + ', avatarUrl=' + this.u6a_1 + ', photo=' + this.v6a_1 + ', rating=' + this.w6a_1 + ', isBot=' + this.x6a_1 + ', initialLuckyFactor=' + this.y6a_1 + ')';
|
|
3115
3159
|
};
|
|
3116
3160
|
protoOf(GameUserInfoDto).hashCode = function () {
|
|
3117
|
-
var result = this.
|
|
3118
|
-
result = imul(result, 31) + (this.p6a_1 == null ? 0 : getStringHashCode(this.p6a_1)) | 0;
|
|
3119
|
-
result = imul(result, 31) + (this.q6a_1 == null ? 0 : getStringHashCode(this.q6a_1)) | 0;
|
|
3161
|
+
var result = this.q6a_1 == null ? 0 : getStringHashCode(this.q6a_1);
|
|
3120
3162
|
result = imul(result, 31) + (this.r6a_1 == null ? 0 : getStringHashCode(this.r6a_1)) | 0;
|
|
3121
3163
|
result = imul(result, 31) + (this.s6a_1 == null ? 0 : getStringHashCode(this.s6a_1)) | 0;
|
|
3122
3164
|
result = imul(result, 31) + (this.t6a_1 == null ? 0 : getStringHashCode(this.t6a_1)) | 0;
|
|
3123
|
-
result = imul(result, 31) + (this.u6a_1 == null ? 0 :
|
|
3124
|
-
result = imul(result, 31) + (this.v6a_1 == null ? 0 :
|
|
3165
|
+
result = imul(result, 31) + (this.u6a_1 == null ? 0 : getStringHashCode(this.u6a_1)) | 0;
|
|
3166
|
+
result = imul(result, 31) + (this.v6a_1 == null ? 0 : getStringHashCode(this.v6a_1)) | 0;
|
|
3167
|
+
result = imul(result, 31) + (this.w6a_1 == null ? 0 : getNumberHashCode(this.w6a_1)) | 0;
|
|
3168
|
+
result = imul(result, 31) + (this.x6a_1 == null ? 0 : getBooleanHashCode(this.x6a_1)) | 0;
|
|
3169
|
+
result = imul(result, 31) + (this.y6a_1 == null ? 0 : getNumberHashCode(this.y6a_1)) | 0;
|
|
3125
3170
|
return result;
|
|
3126
3171
|
};
|
|
3127
3172
|
protoOf(GameUserInfoDto).equals = function (other) {
|
|
@@ -3130,10 +3175,6 @@
|
|
|
3130
3175
|
if (!(other instanceof GameUserInfoDto))
|
|
3131
3176
|
return false;
|
|
3132
3177
|
var tmp0_other_with_cast = other instanceof GameUserInfoDto ? other : THROW_CCE();
|
|
3133
|
-
if (!(this.o6a_1 == tmp0_other_with_cast.o6a_1))
|
|
3134
|
-
return false;
|
|
3135
|
-
if (!(this.p6a_1 == tmp0_other_with_cast.p6a_1))
|
|
3136
|
-
return false;
|
|
3137
3178
|
if (!(this.q6a_1 == tmp0_other_with_cast.q6a_1))
|
|
3138
3179
|
return false;
|
|
3139
3180
|
if (!(this.r6a_1 == tmp0_other_with_cast.r6a_1))
|
|
@@ -3144,7 +3185,13 @@
|
|
|
3144
3185
|
return false;
|
|
3145
3186
|
if (!(this.u6a_1 == tmp0_other_with_cast.u6a_1))
|
|
3146
3187
|
return false;
|
|
3147
|
-
if (!
|
|
3188
|
+
if (!(this.v6a_1 == tmp0_other_with_cast.v6a_1))
|
|
3189
|
+
return false;
|
|
3190
|
+
if (!equals(this.w6a_1, tmp0_other_with_cast.w6a_1))
|
|
3191
|
+
return false;
|
|
3192
|
+
if (!(this.x6a_1 == tmp0_other_with_cast.x6a_1))
|
|
3193
|
+
return false;
|
|
3194
|
+
if (!equals(this.y6a_1, tmp0_other_with_cast.y6a_1))
|
|
3148
3195
|
return false;
|
|
3149
3196
|
return true;
|
|
3150
3197
|
};
|
|
@@ -3154,7 +3201,7 @@
|
|
|
3154
3201
|
// Inline function 'kotlin.arrayOf' call
|
|
3155
3202
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3156
3203
|
// Inline function 'kotlin.js.asDynamic' call
|
|
3157
|
-
tmp.
|
|
3204
|
+
tmp.e6b_1 = [null, null, null, null, null, null, null, null, new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), new ArrayListSerializer(StringSerializer_getInstance()), null, null, null, null, null, null, null, null, null, null, null, null, null];
|
|
3158
3205
|
}
|
|
3159
3206
|
var Companion_instance_18;
|
|
3160
3207
|
function Companion_getInstance_18() {
|
|
@@ -3189,91 +3236,91 @@
|
|
|
3189
3236
|
tmp0_serialDesc.g4c('fineIfNoBribes', true);
|
|
3190
3237
|
tmp0_serialDesc.g4c('enableFineAfterThirdByte', true);
|
|
3191
3238
|
tmp0_serialDesc.g4c('fineAfterThirdFailedContract', true);
|
|
3192
|
-
this.
|
|
3239
|
+
this.f6b_1 = tmp0_serialDesc;
|
|
3193
3240
|
}
|
|
3194
|
-
protoOf($serializer_6).
|
|
3195
|
-
var tmp0_desc = this.
|
|
3241
|
+
protoOf($serializer_6).g6b = function (encoder, value) {
|
|
3242
|
+
var tmp0_desc = this.f6b_1;
|
|
3196
3243
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
3197
|
-
var tmp2_cached = Companion_getInstance_18().
|
|
3198
|
-
if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.
|
|
3199
|
-
tmp1_output.k46(tmp0_desc, 0, BooleanSerializer_getInstance(), value.
|
|
3244
|
+
var tmp2_cached = Companion_getInstance_18().e6b_1;
|
|
3245
|
+
if (tmp1_output.o46(tmp0_desc, 0) ? true : !(value.h6b_1 == null)) {
|
|
3246
|
+
tmp1_output.k46(tmp0_desc, 0, BooleanSerializer_getInstance(), value.h6b_1);
|
|
3200
3247
|
}
|
|
3201
|
-
if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.
|
|
3202
|
-
tmp1_output.k46(tmp0_desc, 1, BooleanSerializer_getInstance(), value.
|
|
3248
|
+
if (tmp1_output.o46(tmp0_desc, 1) ? true : !(value.i6b_1 == null)) {
|
|
3249
|
+
tmp1_output.k46(tmp0_desc, 1, BooleanSerializer_getInstance(), value.i6b_1);
|
|
3203
3250
|
}
|
|
3204
|
-
if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.
|
|
3205
|
-
tmp1_output.k46(tmp0_desc, 2, BooleanSerializer_getInstance(), value.
|
|
3251
|
+
if (tmp1_output.o46(tmp0_desc, 2) ? true : !(value.j6b_1 == null)) {
|
|
3252
|
+
tmp1_output.k46(tmp0_desc, 2, BooleanSerializer_getInstance(), value.j6b_1);
|
|
3206
3253
|
}
|
|
3207
|
-
if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.
|
|
3208
|
-
tmp1_output.k46(tmp0_desc, 3, BooleanSerializer_getInstance(), value.
|
|
3254
|
+
if (tmp1_output.o46(tmp0_desc, 3) ? true : !(value.k6b_1 == null)) {
|
|
3255
|
+
tmp1_output.k46(tmp0_desc, 3, BooleanSerializer_getInstance(), value.k6b_1);
|
|
3209
3256
|
}
|
|
3210
|
-
if (tmp1_output.o46(tmp0_desc, 4) ? true : !(value.
|
|
3211
|
-
tmp1_output.k46(tmp0_desc, 4, BooleanSerializer_getInstance(), value.
|
|
3257
|
+
if (tmp1_output.o46(tmp0_desc, 4) ? true : !(value.l6b_1 == null)) {
|
|
3258
|
+
tmp1_output.k46(tmp0_desc, 4, BooleanSerializer_getInstance(), value.l6b_1);
|
|
3212
3259
|
}
|
|
3213
|
-
if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.
|
|
3214
|
-
tmp1_output.k46(tmp0_desc, 5, IntSerializer_getInstance(), value.
|
|
3260
|
+
if (tmp1_output.o46(tmp0_desc, 5) ? true : !(value.m6b_1 == null)) {
|
|
3261
|
+
tmp1_output.k46(tmp0_desc, 5, IntSerializer_getInstance(), value.m6b_1);
|
|
3215
3262
|
}
|
|
3216
|
-
if (tmp1_output.o46(tmp0_desc, 6) ? true : !(value.
|
|
3217
|
-
tmp1_output.k46(tmp0_desc, 6, IntSerializer_getInstance(), value.
|
|
3263
|
+
if (tmp1_output.o46(tmp0_desc, 6) ? true : !(value.n6b_1 == null)) {
|
|
3264
|
+
tmp1_output.k46(tmp0_desc, 6, IntSerializer_getInstance(), value.n6b_1);
|
|
3218
3265
|
}
|
|
3219
|
-
if (tmp1_output.o46(tmp0_desc, 7) ? true : !(value.
|
|
3220
|
-
tmp1_output.k46(tmp0_desc, 7, BooleanSerializer_getInstance(), value.
|
|
3266
|
+
if (tmp1_output.o46(tmp0_desc, 7) ? true : !(value.o6b_1 == null)) {
|
|
3267
|
+
tmp1_output.k46(tmp0_desc, 7, BooleanSerializer_getInstance(), value.o6b_1);
|
|
3221
3268
|
}
|
|
3222
|
-
if (tmp1_output.o46(tmp0_desc, 8) ? true : !(value.
|
|
3223
|
-
tmp1_output.k46(tmp0_desc, 8, tmp2_cached[8], value.
|
|
3269
|
+
if (tmp1_output.o46(tmp0_desc, 8) ? true : !(value.p6b_1 == null)) {
|
|
3270
|
+
tmp1_output.k46(tmp0_desc, 8, tmp2_cached[8], value.p6b_1);
|
|
3224
3271
|
}
|
|
3225
|
-
if (tmp1_output.o46(tmp0_desc, 9) ? true : !(value.
|
|
3226
|
-
tmp1_output.k46(tmp0_desc, 9, tmp2_cached[9], value.
|
|
3272
|
+
if (tmp1_output.o46(tmp0_desc, 9) ? true : !(value.q6b_1 == null)) {
|
|
3273
|
+
tmp1_output.k46(tmp0_desc, 9, tmp2_cached[9], value.q6b_1);
|
|
3227
3274
|
}
|
|
3228
|
-
if (tmp1_output.o46(tmp0_desc, 10) ? true : !(value.
|
|
3229
|
-
tmp1_output.k46(tmp0_desc, 10, tmp2_cached[10], value.
|
|
3275
|
+
if (tmp1_output.o46(tmp0_desc, 10) ? true : !(value.r6b_1 == null)) {
|
|
3276
|
+
tmp1_output.k46(tmp0_desc, 10, tmp2_cached[10], value.r6b_1);
|
|
3230
3277
|
}
|
|
3231
|
-
if (tmp1_output.o46(tmp0_desc, 11) ? true : !(value.
|
|
3232
|
-
tmp1_output.k46(tmp0_desc, 11, BooleanSerializer_getInstance(), value.
|
|
3278
|
+
if (tmp1_output.o46(tmp0_desc, 11) ? true : !(value.s6b_1 == null)) {
|
|
3279
|
+
tmp1_output.k46(tmp0_desc, 11, BooleanSerializer_getInstance(), value.s6b_1);
|
|
3233
3280
|
}
|
|
3234
|
-
if (tmp1_output.o46(tmp0_desc, 12) ? true : !(value.
|
|
3235
|
-
tmp1_output.k46(tmp0_desc, 12, BooleanSerializer_getInstance(), value.
|
|
3281
|
+
if (tmp1_output.o46(tmp0_desc, 12) ? true : !(value.t6b_1 == null)) {
|
|
3282
|
+
tmp1_output.k46(tmp0_desc, 12, BooleanSerializer_getInstance(), value.t6b_1);
|
|
3236
3283
|
}
|
|
3237
|
-
if (tmp1_output.o46(tmp0_desc, 13) ? true : !(value.
|
|
3238
|
-
tmp1_output.k46(tmp0_desc, 13, BooleanSerializer_getInstance(), value.
|
|
3284
|
+
if (tmp1_output.o46(tmp0_desc, 13) ? true : !(value.u6b_1 == null)) {
|
|
3285
|
+
tmp1_output.k46(tmp0_desc, 13, BooleanSerializer_getInstance(), value.u6b_1);
|
|
3239
3286
|
}
|
|
3240
|
-
if (tmp1_output.o46(tmp0_desc, 14) ? true : !(value.
|
|
3241
|
-
tmp1_output.k46(tmp0_desc, 14, BooleanSerializer_getInstance(), value.
|
|
3287
|
+
if (tmp1_output.o46(tmp0_desc, 14) ? true : !(value.v6b_1 == null)) {
|
|
3288
|
+
tmp1_output.k46(tmp0_desc, 14, BooleanSerializer_getInstance(), value.v6b_1);
|
|
3242
3289
|
}
|
|
3243
|
-
if (tmp1_output.o46(tmp0_desc, 15) ? true : !(value.
|
|
3244
|
-
tmp1_output.k46(tmp0_desc, 15, BooleanSerializer_getInstance(), value.
|
|
3290
|
+
if (tmp1_output.o46(tmp0_desc, 15) ? true : !(value.w6b_1 == null)) {
|
|
3291
|
+
tmp1_output.k46(tmp0_desc, 15, BooleanSerializer_getInstance(), value.w6b_1);
|
|
3245
3292
|
}
|
|
3246
|
-
if (tmp1_output.o46(tmp0_desc, 16) ? true : !(value.
|
|
3247
|
-
tmp1_output.k46(tmp0_desc, 16, BooleanSerializer_getInstance(), value.
|
|
3293
|
+
if (tmp1_output.o46(tmp0_desc, 16) ? true : !(value.x6b_1 == null)) {
|
|
3294
|
+
tmp1_output.k46(tmp0_desc, 16, BooleanSerializer_getInstance(), value.x6b_1);
|
|
3248
3295
|
}
|
|
3249
|
-
if (tmp1_output.o46(tmp0_desc, 17) ? true : !(value.
|
|
3250
|
-
tmp1_output.k46(tmp0_desc, 17, BooleanSerializer_getInstance(), value.
|
|
3296
|
+
if (tmp1_output.o46(tmp0_desc, 17) ? true : !(value.y6b_1 == null)) {
|
|
3297
|
+
tmp1_output.k46(tmp0_desc, 17, BooleanSerializer_getInstance(), value.y6b_1);
|
|
3251
3298
|
}
|
|
3252
|
-
if (tmp1_output.o46(tmp0_desc, 18) ? true : !(value.
|
|
3253
|
-
tmp1_output.k46(tmp0_desc, 18, BooleanSerializer_getInstance(), value.
|
|
3299
|
+
if (tmp1_output.o46(tmp0_desc, 18) ? true : !(value.z6b_1 == null)) {
|
|
3300
|
+
tmp1_output.k46(tmp0_desc, 18, BooleanSerializer_getInstance(), value.z6b_1);
|
|
3254
3301
|
}
|
|
3255
|
-
if (tmp1_output.o46(tmp0_desc, 19) ? true : !(value.
|
|
3256
|
-
tmp1_output.k46(tmp0_desc, 19, StringSerializer_getInstance(), value.
|
|
3302
|
+
if (tmp1_output.o46(tmp0_desc, 19) ? true : !(value.a6c_1 == null)) {
|
|
3303
|
+
tmp1_output.k46(tmp0_desc, 19, StringSerializer_getInstance(), value.a6c_1);
|
|
3257
3304
|
}
|
|
3258
|
-
if (tmp1_output.o46(tmp0_desc, 20) ? true : !(value.
|
|
3259
|
-
tmp1_output.k46(tmp0_desc, 20, BooleanSerializer_getInstance(), value.
|
|
3305
|
+
if (tmp1_output.o46(tmp0_desc, 20) ? true : !(value.b6c_1 == null)) {
|
|
3306
|
+
tmp1_output.k46(tmp0_desc, 20, BooleanSerializer_getInstance(), value.b6c_1);
|
|
3260
3307
|
}
|
|
3261
|
-
if (tmp1_output.o46(tmp0_desc, 21) ? true : !(value.
|
|
3262
|
-
tmp1_output.k46(tmp0_desc, 21, IntSerializer_getInstance(), value.
|
|
3308
|
+
if (tmp1_output.o46(tmp0_desc, 21) ? true : !(value.c6c_1 == null)) {
|
|
3309
|
+
tmp1_output.k46(tmp0_desc, 21, IntSerializer_getInstance(), value.c6c_1);
|
|
3263
3310
|
}
|
|
3264
|
-
if (tmp1_output.o46(tmp0_desc, 22) ? true : !(value.
|
|
3265
|
-
tmp1_output.k46(tmp0_desc, 22, BooleanSerializer_getInstance(), value.
|
|
3311
|
+
if (tmp1_output.o46(tmp0_desc, 22) ? true : !(value.d6c_1 == null)) {
|
|
3312
|
+
tmp1_output.k46(tmp0_desc, 22, BooleanSerializer_getInstance(), value.d6c_1);
|
|
3266
3313
|
}
|
|
3267
|
-
if (tmp1_output.o46(tmp0_desc, 23) ? true : !(value.
|
|
3268
|
-
tmp1_output.k46(tmp0_desc, 23, IntSerializer_getInstance(), value.
|
|
3314
|
+
if (tmp1_output.o46(tmp0_desc, 23) ? true : !(value.e6c_1 == null)) {
|
|
3315
|
+
tmp1_output.k46(tmp0_desc, 23, IntSerializer_getInstance(), value.e6c_1);
|
|
3269
3316
|
}
|
|
3270
3317
|
tmp1_output.t44(tmp0_desc);
|
|
3271
3318
|
};
|
|
3272
3319
|
protoOf($serializer_6).f41 = function (encoder, value) {
|
|
3273
|
-
return this.
|
|
3320
|
+
return this.g6b(encoder, value instanceof RulesDto ? value : THROW_CCE());
|
|
3274
3321
|
};
|
|
3275
3322
|
protoOf($serializer_6).g41 = function (decoder) {
|
|
3276
|
-
var tmp0_desc = this.
|
|
3323
|
+
var tmp0_desc = this.f6b_1;
|
|
3277
3324
|
var tmp1_flag = true;
|
|
3278
3325
|
var tmp2_index = 0;
|
|
3279
3326
|
var tmp3_bitMask0 = 0;
|
|
@@ -3302,7 +3349,7 @@
|
|
|
3302
3349
|
var tmp26_local22 = null;
|
|
3303
3350
|
var tmp27_local23 = null;
|
|
3304
3351
|
var tmp28_input = decoder.s44(tmp0_desc);
|
|
3305
|
-
var tmp29_cached = Companion_getInstance_18().
|
|
3352
|
+
var tmp29_cached = Companion_getInstance_18().e6b_1;
|
|
3306
3353
|
if (tmp28_input.h45()) {
|
|
3307
3354
|
tmp4_local0 = tmp28_input.g45(tmp0_desc, 0, BooleanSerializer_getInstance(), tmp4_local0);
|
|
3308
3355
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -3463,10 +3510,10 @@
|
|
|
3463
3510
|
return RulesDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, tmp12_local8, tmp13_local9, tmp14_local10, tmp15_local11, tmp16_local12, tmp17_local13, tmp18_local14, tmp19_local15, tmp20_local16, tmp21_local17, tmp22_local18, tmp23_local19, tmp24_local20, tmp25_local21, tmp26_local22, tmp27_local23, null);
|
|
3464
3511
|
};
|
|
3465
3512
|
protoOf($serializer_6).e41 = function () {
|
|
3466
|
-
return this.
|
|
3513
|
+
return this.f6b_1;
|
|
3467
3514
|
};
|
|
3468
3515
|
protoOf($serializer_6).v4c = function () {
|
|
3469
|
-
var tmp0_cached = Companion_getInstance_18().
|
|
3516
|
+
var tmp0_cached = Companion_getInstance_18().e6b_1;
|
|
3470
3517
|
// Inline function 'kotlin.arrayOf' call
|
|
3471
3518
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
3472
3519
|
// Inline function 'kotlin.js.asDynamic' call
|
|
@@ -3480,104 +3527,104 @@
|
|
|
3480
3527
|
}
|
|
3481
3528
|
function RulesDto_init_$Init$(seen0, needToPutHigherTrump, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, distributePoints, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker, $this) {
|
|
3482
3529
|
if (!(0 === (0 & seen0))) {
|
|
3483
|
-
throwMissingFieldException(seen0, 0, $serializer_getInstance_6().
|
|
3530
|
+
throwMissingFieldException(seen0, 0, $serializer_getInstance_6().f6b_1);
|
|
3484
3531
|
}
|
|
3485
3532
|
if (0 === (seen0 & 1))
|
|
3486
|
-
$this.
|
|
3533
|
+
$this.h6b_1 = null;
|
|
3487
3534
|
else
|
|
3488
|
-
$this.
|
|
3535
|
+
$this.h6b_1 = needToPutHigherTrump;
|
|
3489
3536
|
if (0 === (seen0 & 2))
|
|
3490
|
-
$this.
|
|
3537
|
+
$this.i6b_1 = null;
|
|
3491
3538
|
else
|
|
3492
|
-
$this.
|
|
3539
|
+
$this.i6b_1 = playerWhoChooseSuitGoFirst;
|
|
3493
3540
|
if (0 === (seen0 & 4))
|
|
3494
|
-
$this.
|
|
3541
|
+
$this.j6b_1 = null;
|
|
3495
3542
|
else
|
|
3496
|
-
$this.
|
|
3543
|
+
$this.j6b_1 = winnerShuffleCards;
|
|
3497
3544
|
if (0 === (seen0 & 8))
|
|
3498
|
-
$this.
|
|
3545
|
+
$this.k6b_1 = null;
|
|
3499
3546
|
else
|
|
3500
|
-
$this.
|
|
3547
|
+
$this.k6b_1 = playWithoutLiabilities;
|
|
3501
3548
|
if (0 === (seen0 & 16))
|
|
3502
|
-
$this.
|
|
3549
|
+
$this.l6b_1 = null;
|
|
3503
3550
|
else
|
|
3504
|
-
$this.
|
|
3551
|
+
$this.l6b_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3505
3552
|
if (0 === (seen0 & 32))
|
|
3506
|
-
$this.
|
|
3553
|
+
$this.m6b_1 = null;
|
|
3507
3554
|
else
|
|
3508
|
-
$this.
|
|
3555
|
+
$this.m6b_1 = dealerInitialCardsCount;
|
|
3509
3556
|
if (0 === (seen0 & 64))
|
|
3510
|
-
$this.
|
|
3557
|
+
$this.n6b_1 = null;
|
|
3511
3558
|
else
|
|
3512
|
-
$this.
|
|
3559
|
+
$this.n6b_1 = dealerFinalCardsCount;
|
|
3513
3560
|
if (0 === (seen0 & 128))
|
|
3514
|
-
$this.
|
|
3561
|
+
$this.o6b_1 = null;
|
|
3515
3562
|
else
|
|
3516
|
-
$this.
|
|
3563
|
+
$this.o6b_1 = dealerCounterClockwise;
|
|
3517
3564
|
if (0 === (seen0 & 256))
|
|
3518
|
-
$this.
|
|
3565
|
+
$this.p6b_1 = null;
|
|
3519
3566
|
else
|
|
3520
|
-
$this.
|
|
3567
|
+
$this.p6b_1 = contractTypes;
|
|
3521
3568
|
if (0 === (seen0 & 512))
|
|
3522
|
-
$this.
|
|
3569
|
+
$this.q6b_1 = null;
|
|
3523
3570
|
else
|
|
3524
|
-
$this.
|
|
3571
|
+
$this.q6b_1 = bidTypes;
|
|
3525
3572
|
if (0 === (seen0 & 1024))
|
|
3526
|
-
$this.
|
|
3573
|
+
$this.r6b_1 = null;
|
|
3527
3574
|
else
|
|
3528
|
-
$this.
|
|
3575
|
+
$this.r6b_1 = combinationsWithFirstCard;
|
|
3529
3576
|
if (0 === (seen0 & 2048))
|
|
3530
|
-
$this.
|
|
3577
|
+
$this.s6b_1 = null;
|
|
3531
3578
|
else
|
|
3532
|
-
$this.
|
|
3579
|
+
$this.s6b_1 = protectBella;
|
|
3533
3580
|
if (0 === (seen0 & 4096))
|
|
3534
|
-
$this.
|
|
3581
|
+
$this.t6b_1 = null;
|
|
3535
3582
|
else
|
|
3536
|
-
$this.
|
|
3583
|
+
$this.t6b_1 = oneTryToProtectBella;
|
|
3537
3584
|
if (0 === (seen0 & 8192))
|
|
3538
|
-
$this.
|
|
3585
|
+
$this.u6b_1 = null;
|
|
3539
3586
|
else
|
|
3540
|
-
$this.
|
|
3587
|
+
$this.u6b_1 = enableFourSevensCombination;
|
|
3541
3588
|
if (0 === (seen0 & 16384))
|
|
3542
|
-
$this.
|
|
3589
|
+
$this.v6b_1 = null;
|
|
3543
3590
|
else
|
|
3544
|
-
$this.
|
|
3591
|
+
$this.v6b_1 = enableTrumpSevenCombination;
|
|
3545
3592
|
if (0 === (seen0 & 32768))
|
|
3546
|
-
$this.
|
|
3593
|
+
$this.w6b_1 = null;
|
|
3547
3594
|
else
|
|
3548
|
-
$this.
|
|
3595
|
+
$this.w6b_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3549
3596
|
if (0 === (seen0 & 65536))
|
|
3550
|
-
$this.
|
|
3597
|
+
$this.x6b_1 = null;
|
|
3551
3598
|
else
|
|
3552
|
-
$this.
|
|
3599
|
+
$this.x6b_1 = checkTrumpCombination;
|
|
3553
3600
|
if (0 === (seen0 & 131072))
|
|
3554
|
-
$this.
|
|
3601
|
+
$this.y6b_1 = null;
|
|
3555
3602
|
else
|
|
3556
|
-
$this.
|
|
3603
|
+
$this.y6b_1 = checkOnlyTrumpDebertz;
|
|
3557
3604
|
if (0 === (seen0 & 262144))
|
|
3558
|
-
$this.
|
|
3605
|
+
$this.z6b_1 = null;
|
|
3559
3606
|
else
|
|
3560
|
-
$this.
|
|
3607
|
+
$this.z6b_1 = distributePoints;
|
|
3561
3608
|
if (0 === (seen0 & 524288))
|
|
3562
|
-
$this.
|
|
3609
|
+
$this.a6c_1 = null;
|
|
3563
3610
|
else
|
|
3564
|
-
$this.
|
|
3611
|
+
$this.a6c_1 = pointsDistributeMode;
|
|
3565
3612
|
if (0 === (seen0 & 1048576))
|
|
3566
|
-
$this.
|
|
3613
|
+
$this.b6c_1 = null;
|
|
3567
3614
|
else
|
|
3568
|
-
$this.
|
|
3615
|
+
$this.b6c_1 = enableFineIfNoBribes;
|
|
3569
3616
|
if (0 === (seen0 & 2097152))
|
|
3570
|
-
$this.
|
|
3617
|
+
$this.c6c_1 = null;
|
|
3571
3618
|
else
|
|
3572
|
-
$this.
|
|
3619
|
+
$this.c6c_1 = fineIfNoBribes;
|
|
3573
3620
|
if (0 === (seen0 & 4194304))
|
|
3574
|
-
$this.
|
|
3621
|
+
$this.d6c_1 = null;
|
|
3575
3622
|
else
|
|
3576
|
-
$this.
|
|
3623
|
+
$this.d6c_1 = enableFineAfterThirdByte;
|
|
3577
3624
|
if (0 === (seen0 & 8388608))
|
|
3578
|
-
$this.
|
|
3625
|
+
$this.e6c_1 = null;
|
|
3579
3626
|
else
|
|
3580
|
-
$this.
|
|
3627
|
+
$this.e6c_1 = fineAfterThirdFailedContract;
|
|
3581
3628
|
return $this;
|
|
3582
3629
|
}
|
|
3583
3630
|
function RulesDto_init_$Create$(seen0, needToPutHigherTrump, playerWhoChooseSuitGoFirst, winnerShuffleCards, playWithoutLiabilities, trumpCardGoToPlayerWhoShuffleCards, dealerInitialCardsCount, dealerFinalCardsCount, dealerCounterClockwise, contractTypes, bidTypes, combinationsWithFirstCard, protectBella, oneTryToProtectBella, enableFourSevensCombination, enableTrumpSevenCombination, enableTrumpSevenCombinationAfterDistribution, checkTrumpCombination, checkOnlyTrumpDebertz, distributePoints, pointsDistributeMode, enableFineIfNoBribes, fineIfNoBribes, enableFineAfterThirdByte, fineAfterThirdFailedContract, serializationConstructorMarker) {
|
|
@@ -3609,59 +3656,59 @@
|
|
|
3609
3656
|
fineIfNoBribes = fineIfNoBribes === VOID ? null : fineIfNoBribes;
|
|
3610
3657
|
enableFineAfterThirdByte = enableFineAfterThirdByte === VOID ? null : enableFineAfterThirdByte;
|
|
3611
3658
|
fineAfterThirdFailedContract = fineAfterThirdFailedContract === VOID ? null : fineAfterThirdFailedContract;
|
|
3612
|
-
this.
|
|
3613
|
-
this.
|
|
3614
|
-
this.
|
|
3615
|
-
this.
|
|
3616
|
-
this.
|
|
3617
|
-
this.
|
|
3618
|
-
this.
|
|
3619
|
-
this.
|
|
3620
|
-
this.
|
|
3621
|
-
this.
|
|
3622
|
-
this.
|
|
3623
|
-
this.
|
|
3624
|
-
this.
|
|
3625
|
-
this.
|
|
3626
|
-
this.
|
|
3627
|
-
this.
|
|
3628
|
-
this.
|
|
3629
|
-
this.
|
|
3630
|
-
this.
|
|
3631
|
-
this.
|
|
3632
|
-
this.
|
|
3633
|
-
this.
|
|
3634
|
-
this.
|
|
3635
|
-
this.
|
|
3659
|
+
this.h6b_1 = needToPutHigherTrump;
|
|
3660
|
+
this.i6b_1 = playerWhoChooseSuitGoFirst;
|
|
3661
|
+
this.j6b_1 = winnerShuffleCards;
|
|
3662
|
+
this.k6b_1 = playWithoutLiabilities;
|
|
3663
|
+
this.l6b_1 = trumpCardGoToPlayerWhoShuffleCards;
|
|
3664
|
+
this.m6b_1 = dealerInitialCardsCount;
|
|
3665
|
+
this.n6b_1 = dealerFinalCardsCount;
|
|
3666
|
+
this.o6b_1 = dealerCounterClockwise;
|
|
3667
|
+
this.p6b_1 = contractTypes;
|
|
3668
|
+
this.q6b_1 = bidTypes;
|
|
3669
|
+
this.r6b_1 = combinationsWithFirstCard;
|
|
3670
|
+
this.s6b_1 = protectBella;
|
|
3671
|
+
this.t6b_1 = oneTryToProtectBella;
|
|
3672
|
+
this.u6b_1 = enableFourSevensCombination;
|
|
3673
|
+
this.v6b_1 = enableTrumpSevenCombination;
|
|
3674
|
+
this.w6b_1 = enableTrumpSevenCombinationAfterDistribution;
|
|
3675
|
+
this.x6b_1 = checkTrumpCombination;
|
|
3676
|
+
this.y6b_1 = checkOnlyTrumpDebertz;
|
|
3677
|
+
this.z6b_1 = distributePoints;
|
|
3678
|
+
this.a6c_1 = pointsDistributeMode;
|
|
3679
|
+
this.b6c_1 = enableFineIfNoBribes;
|
|
3680
|
+
this.c6c_1 = fineIfNoBribes;
|
|
3681
|
+
this.d6c_1 = enableFineAfterThirdByte;
|
|
3682
|
+
this.e6c_1 = fineAfterThirdFailedContract;
|
|
3636
3683
|
}
|
|
3637
3684
|
protoOf(RulesDto).toString = function () {
|
|
3638
|
-
return 'RulesDto(needToPutHigherTrump=' + this.
|
|
3685
|
+
return 'RulesDto(needToPutHigherTrump=' + this.h6b_1 + ', playerWhoChooseSuitGoFirst=' + this.i6b_1 + ', winnerShuffleCards=' + this.j6b_1 + ', playWithoutLiabilities=' + this.k6b_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.l6b_1 + ', dealerInitialCardsCount=' + this.m6b_1 + ', dealerFinalCardsCount=' + this.n6b_1 + ', dealerCounterClockwise=' + this.o6b_1 + ', contractTypes=' + toString(this.p6b_1) + ', bidTypes=' + toString(this.q6b_1) + ', combinationsWithFirstCard=' + toString(this.r6b_1) + ', protectBella=' + this.s6b_1 + ', oneTryToProtectBella=' + this.t6b_1 + ', enableFourSevensCombination=' + this.u6b_1 + ', enableTrumpSevenCombination=' + this.v6b_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.w6b_1 + ', checkTrumpCombination=' + this.x6b_1 + ', checkOnlyTrumpDebertz=' + this.y6b_1 + ', distributePoints=' + this.z6b_1 + ', pointsDistributeMode=' + this.a6c_1 + ', enableFineIfNoBribes=' + this.b6c_1 + ', fineIfNoBribes=' + this.c6c_1 + ', enableFineAfterThirdByte=' + this.d6c_1 + ', fineAfterThirdFailedContract=' + this.e6c_1 + ')';
|
|
3639
3686
|
};
|
|
3640
3687
|
protoOf(RulesDto).hashCode = function () {
|
|
3641
|
-
var result = this.
|
|
3642
|
-
result = imul(result, 31) + (this.f6b_1 == null ? 0 : getBooleanHashCode(this.f6b_1)) | 0;
|
|
3643
|
-
result = imul(result, 31) + (this.g6b_1 == null ? 0 : getBooleanHashCode(this.g6b_1)) | 0;
|
|
3644
|
-
result = imul(result, 31) + (this.h6b_1 == null ? 0 : getBooleanHashCode(this.h6b_1)) | 0;
|
|
3688
|
+
var result = this.h6b_1 == null ? 0 : getBooleanHashCode(this.h6b_1);
|
|
3645
3689
|
result = imul(result, 31) + (this.i6b_1 == null ? 0 : getBooleanHashCode(this.i6b_1)) | 0;
|
|
3646
|
-
result = imul(result, 31) + (this.j6b_1 == null ? 0 : this.j6b_1) | 0;
|
|
3647
|
-
result = imul(result, 31) + (this.k6b_1 == null ? 0 : this.k6b_1) | 0;
|
|
3690
|
+
result = imul(result, 31) + (this.j6b_1 == null ? 0 : getBooleanHashCode(this.j6b_1)) | 0;
|
|
3691
|
+
result = imul(result, 31) + (this.k6b_1 == null ? 0 : getBooleanHashCode(this.k6b_1)) | 0;
|
|
3648
3692
|
result = imul(result, 31) + (this.l6b_1 == null ? 0 : getBooleanHashCode(this.l6b_1)) | 0;
|
|
3649
|
-
result = imul(result, 31) + (this.m6b_1 == null ? 0 :
|
|
3650
|
-
result = imul(result, 31) + (this.n6b_1 == null ? 0 :
|
|
3651
|
-
result = imul(result, 31) + (this.o6b_1 == null ? 0 :
|
|
3652
|
-
result = imul(result, 31) + (this.p6b_1 == null ? 0 :
|
|
3653
|
-
result = imul(result, 31) + (this.q6b_1 == null ? 0 :
|
|
3654
|
-
result = imul(result, 31) + (this.r6b_1 == null ? 0 :
|
|
3693
|
+
result = imul(result, 31) + (this.m6b_1 == null ? 0 : this.m6b_1) | 0;
|
|
3694
|
+
result = imul(result, 31) + (this.n6b_1 == null ? 0 : this.n6b_1) | 0;
|
|
3695
|
+
result = imul(result, 31) + (this.o6b_1 == null ? 0 : getBooleanHashCode(this.o6b_1)) | 0;
|
|
3696
|
+
result = imul(result, 31) + (this.p6b_1 == null ? 0 : hashCode(this.p6b_1)) | 0;
|
|
3697
|
+
result = imul(result, 31) + (this.q6b_1 == null ? 0 : hashCode(this.q6b_1)) | 0;
|
|
3698
|
+
result = imul(result, 31) + (this.r6b_1 == null ? 0 : hashCode(this.r6b_1)) | 0;
|
|
3655
3699
|
result = imul(result, 31) + (this.s6b_1 == null ? 0 : getBooleanHashCode(this.s6b_1)) | 0;
|
|
3656
3700
|
result = imul(result, 31) + (this.t6b_1 == null ? 0 : getBooleanHashCode(this.t6b_1)) | 0;
|
|
3657
3701
|
result = imul(result, 31) + (this.u6b_1 == null ? 0 : getBooleanHashCode(this.u6b_1)) | 0;
|
|
3658
3702
|
result = imul(result, 31) + (this.v6b_1 == null ? 0 : getBooleanHashCode(this.v6b_1)) | 0;
|
|
3659
3703
|
result = imul(result, 31) + (this.w6b_1 == null ? 0 : getBooleanHashCode(this.w6b_1)) | 0;
|
|
3660
|
-
result = imul(result, 31) + (this.x6b_1 == null ? 0 :
|
|
3704
|
+
result = imul(result, 31) + (this.x6b_1 == null ? 0 : getBooleanHashCode(this.x6b_1)) | 0;
|
|
3661
3705
|
result = imul(result, 31) + (this.y6b_1 == null ? 0 : getBooleanHashCode(this.y6b_1)) | 0;
|
|
3662
|
-
result = imul(result, 31) + (this.z6b_1 == null ? 0 : this.z6b_1) | 0;
|
|
3663
|
-
result = imul(result, 31) + (this.a6c_1 == null ? 0 :
|
|
3664
|
-
result = imul(result, 31) + (this.b6c_1 == null ? 0 : this.b6c_1) | 0;
|
|
3706
|
+
result = imul(result, 31) + (this.z6b_1 == null ? 0 : getBooleanHashCode(this.z6b_1)) | 0;
|
|
3707
|
+
result = imul(result, 31) + (this.a6c_1 == null ? 0 : getStringHashCode(this.a6c_1)) | 0;
|
|
3708
|
+
result = imul(result, 31) + (this.b6c_1 == null ? 0 : getBooleanHashCode(this.b6c_1)) | 0;
|
|
3709
|
+
result = imul(result, 31) + (this.c6c_1 == null ? 0 : this.c6c_1) | 0;
|
|
3710
|
+
result = imul(result, 31) + (this.d6c_1 == null ? 0 : getBooleanHashCode(this.d6c_1)) | 0;
|
|
3711
|
+
result = imul(result, 31) + (this.e6c_1 == null ? 0 : this.e6c_1) | 0;
|
|
3665
3712
|
return result;
|
|
3666
3713
|
};
|
|
3667
3714
|
protoOf(RulesDto).equals = function (other) {
|
|
@@ -3670,12 +3717,6 @@
|
|
|
3670
3717
|
if (!(other instanceof RulesDto))
|
|
3671
3718
|
return false;
|
|
3672
3719
|
var tmp0_other_with_cast = other instanceof RulesDto ? other : THROW_CCE();
|
|
3673
|
-
if (!(this.e6b_1 == tmp0_other_with_cast.e6b_1))
|
|
3674
|
-
return false;
|
|
3675
|
-
if (!(this.f6b_1 == tmp0_other_with_cast.f6b_1))
|
|
3676
|
-
return false;
|
|
3677
|
-
if (!(this.g6b_1 == tmp0_other_with_cast.g6b_1))
|
|
3678
|
-
return false;
|
|
3679
3720
|
if (!(this.h6b_1 == tmp0_other_with_cast.h6b_1))
|
|
3680
3721
|
return false;
|
|
3681
3722
|
if (!(this.i6b_1 == tmp0_other_with_cast.i6b_1))
|
|
@@ -3686,17 +3727,17 @@
|
|
|
3686
3727
|
return false;
|
|
3687
3728
|
if (!(this.l6b_1 == tmp0_other_with_cast.l6b_1))
|
|
3688
3729
|
return false;
|
|
3689
|
-
if (!
|
|
3730
|
+
if (!(this.m6b_1 == tmp0_other_with_cast.m6b_1))
|
|
3690
3731
|
return false;
|
|
3691
|
-
if (!
|
|
3732
|
+
if (!(this.n6b_1 == tmp0_other_with_cast.n6b_1))
|
|
3692
3733
|
return false;
|
|
3693
|
-
if (!
|
|
3734
|
+
if (!(this.o6b_1 == tmp0_other_with_cast.o6b_1))
|
|
3694
3735
|
return false;
|
|
3695
|
-
if (!(this.p6b_1
|
|
3736
|
+
if (!equals(this.p6b_1, tmp0_other_with_cast.p6b_1))
|
|
3696
3737
|
return false;
|
|
3697
|
-
if (!(this.q6b_1
|
|
3738
|
+
if (!equals(this.q6b_1, tmp0_other_with_cast.q6b_1))
|
|
3698
3739
|
return false;
|
|
3699
|
-
if (!(this.r6b_1
|
|
3740
|
+
if (!equals(this.r6b_1, tmp0_other_with_cast.r6b_1))
|
|
3700
3741
|
return false;
|
|
3701
3742
|
if (!(this.s6b_1 == tmp0_other_with_cast.s6b_1))
|
|
3702
3743
|
return false;
|
|
@@ -3718,14 +3759,20 @@
|
|
|
3718
3759
|
return false;
|
|
3719
3760
|
if (!(this.b6c_1 == tmp0_other_with_cast.b6c_1))
|
|
3720
3761
|
return false;
|
|
3762
|
+
if (!(this.c6c_1 == tmp0_other_with_cast.c6c_1))
|
|
3763
|
+
return false;
|
|
3764
|
+
if (!(this.d6c_1 == tmp0_other_with_cast.d6c_1))
|
|
3765
|
+
return false;
|
|
3766
|
+
if (!(this.e6c_1 == tmp0_other_with_cast.e6c_1))
|
|
3767
|
+
return false;
|
|
3721
3768
|
return true;
|
|
3722
3769
|
};
|
|
3723
3770
|
function CardGrowthComparator(trump, firstCardSuit) {
|
|
3724
|
-
this.
|
|
3725
|
-
this.
|
|
3771
|
+
this.f6c_1 = trump;
|
|
3772
|
+
this.g6c_1 = firstCardSuit;
|
|
3726
3773
|
}
|
|
3727
3774
|
protoOf(CardGrowthComparator).u62 = function (a, b) {
|
|
3728
|
-
return getGrowth(b, this.
|
|
3775
|
+
return getGrowth(b, this.f6c_1, this.g6c_1) - getGrowth(a, this.f6c_1, this.g6c_1) | 0;
|
|
3729
3776
|
};
|
|
3730
3777
|
protoOf(CardGrowthComparator).compare = function (a, b) {
|
|
3731
3778
|
var tmp = a instanceof GameCard ? a : THROW_CCE();
|
|
@@ -3875,19 +3922,19 @@
|
|
|
3875
3922
|
function AsyncProvider() {
|
|
3876
3923
|
}
|
|
3877
3924
|
function onError($this, message, error) {
|
|
3878
|
-
$this.
|
|
3925
|
+
$this.o6c_1.e('AsyncErrorHandler', message + ': ' + error.toString(), error);
|
|
3879
3926
|
}
|
|
3880
3927
|
function _no_name_provided__qut3iv(this$0) {
|
|
3881
|
-
this.
|
|
3928
|
+
this.x6c_1 = this$0;
|
|
3882
3929
|
AbstractCoroutineContextElement.call(this, Key_instance);
|
|
3883
3930
|
}
|
|
3884
3931
|
protoOf(_no_name_provided__qut3iv).vw = function (context, exception) {
|
|
3885
|
-
onError(this.
|
|
3932
|
+
onError(this.x6c_1, 'CoroutineContext', exception);
|
|
3886
3933
|
return Unit_instance;
|
|
3887
3934
|
};
|
|
3888
3935
|
function AsyncProviderImpl$launchDefaultWithLock$slambda(this$0, $block, resultContinuation) {
|
|
3889
|
-
this.
|
|
3890
|
-
this.
|
|
3936
|
+
this.g6d_1 = this$0;
|
|
3937
|
+
this.h6d_1 = $block;
|
|
3891
3938
|
CoroutineImpl.call(this, resultContinuation);
|
|
3892
3939
|
}
|
|
3893
3940
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).h1d = function ($this$launch, $completion) {
|
|
@@ -3908,24 +3955,24 @@
|
|
|
3908
3955
|
case 0:
|
|
3909
3956
|
this.f9_1 = 6;
|
|
3910
3957
|
var tmp_0 = this;
|
|
3911
|
-
tmp_0.
|
|
3958
|
+
tmp_0.j6d_1 = this.g6d_1.q6c_1;
|
|
3912
3959
|
var tmp_1 = this;
|
|
3913
|
-
tmp_1.
|
|
3960
|
+
tmp_1.k6d_1 = null;
|
|
3914
3961
|
this.e9_1 = 1;
|
|
3915
|
-
suspendResult = this.
|
|
3962
|
+
suspendResult = this.j6d_1.d1j(this.k6d_1, this);
|
|
3916
3963
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
3917
3964
|
return suspendResult;
|
|
3918
3965
|
}
|
|
3919
3966
|
|
|
3920
3967
|
continue $sm;
|
|
3921
3968
|
case 1:
|
|
3922
|
-
this.
|
|
3969
|
+
this.l6d_1 = Unit_instance;
|
|
3923
3970
|
this.e9_1 = 2;
|
|
3924
3971
|
continue $sm;
|
|
3925
3972
|
case 2:
|
|
3926
3973
|
this.f9_1 = 5;
|
|
3927
3974
|
this.e9_1 = 3;
|
|
3928
|
-
suspendResult = this.
|
|
3975
|
+
suspendResult = this.h6d_1(this.i6d_1, this);
|
|
3929
3976
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
3930
3977
|
return suspendResult;
|
|
3931
3978
|
}
|
|
@@ -3933,19 +3980,19 @@
|
|
|
3933
3980
|
continue $sm;
|
|
3934
3981
|
case 3:
|
|
3935
3982
|
var tmp_2 = this;
|
|
3936
|
-
tmp_2.
|
|
3983
|
+
tmp_2.l6d_1 = Unit_instance;
|
|
3937
3984
|
this.f9_1 = 6;
|
|
3938
3985
|
this.e9_1 = 4;
|
|
3939
3986
|
continue $sm;
|
|
3940
3987
|
case 4:
|
|
3941
|
-
this.
|
|
3988
|
+
this.l6d_1;
|
|
3942
3989
|
this.f9_1 = 6;
|
|
3943
|
-
this.
|
|
3990
|
+
this.j6d_1.o1i(this.k6d_1);
|
|
3944
3991
|
return Unit_instance;
|
|
3945
3992
|
case 5:
|
|
3946
3993
|
this.f9_1 = 6;
|
|
3947
3994
|
var t = this.h9_1;
|
|
3948
|
-
this.
|
|
3995
|
+
this.j6d_1.o1i(this.k6d_1);
|
|
3949
3996
|
throw t;
|
|
3950
3997
|
case 6:
|
|
3951
3998
|
throw this.h9_1;
|
|
@@ -3962,8 +4009,8 @@
|
|
|
3962
4009
|
while (true);
|
|
3963
4010
|
};
|
|
3964
4011
|
protoOf(AsyncProviderImpl$launchDefaultWithLock$slambda).i1d = function ($this$launch, completion) {
|
|
3965
|
-
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.
|
|
3966
|
-
i.
|
|
4012
|
+
var i = new AsyncProviderImpl$launchDefaultWithLock$slambda(this.g6d_1, this.h6d_1, completion);
|
|
4013
|
+
i.i6d_1 = $this$launch;
|
|
3967
4014
|
return i;
|
|
3968
4015
|
};
|
|
3969
4016
|
function AsyncProviderImpl$launchDefaultWithLock$slambda_0(this$0, $block, resultContinuation) {
|
|
@@ -3978,32 +4025,32 @@
|
|
|
3978
4025
|
mainDispatcher = mainDispatcher === VOID ? Dispatchers_getInstance().p10() : mainDispatcher;
|
|
3979
4026
|
defaultDispatcher = defaultDispatcher === VOID ? Dispatchers_getInstance().l10_1 : defaultDispatcher;
|
|
3980
4027
|
unconfinedDispatcher = unconfinedDispatcher === VOID ? Dispatchers_getInstance().m10_1 : unconfinedDispatcher;
|
|
3981
|
-
this.
|
|
3982
|
-
this.
|
|
3983
|
-
this.
|
|
3984
|
-
this.
|
|
4028
|
+
this.o6c_1 = logger;
|
|
4029
|
+
this.p6c_1 = SupervisorJob();
|
|
4030
|
+
this.q6c_1 = Mutex();
|
|
4031
|
+
this.r6c_1 = Mutex();
|
|
3985
4032
|
var tmp = this;
|
|
3986
4033
|
// Inline function 'kotlinx.coroutines.CoroutineExceptionHandler' call
|
|
3987
|
-
tmp.
|
|
3988
|
-
this.
|
|
3989
|
-
this.
|
|
3990
|
-
this.
|
|
4034
|
+
tmp.s6c_1 = new _no_name_provided__qut3iv(this);
|
|
4035
|
+
this.t6c_1 = CoroutineScope_0(mainDispatcher.dg(this.p6c_1).dg(MainContextId_getInstance()));
|
|
4036
|
+
this.u6c_1 = CoroutineScope_0(defaultDispatcher.dg(this.p6c_1).dg(WorkerContextId_getInstance()));
|
|
4037
|
+
this.v6c_1 = CoroutineScope_0(unconfinedDispatcher.dg(this.p6c_1).dg(WorkerContextId_getInstance()));
|
|
3991
4038
|
}
|
|
3992
|
-
protoOf(AsyncProviderImpl).
|
|
3993
|
-
return this.
|
|
4039
|
+
protoOf(AsyncProviderImpl).h6c = function () {
|
|
4040
|
+
return this.s6c_1;
|
|
3994
4041
|
};
|
|
3995
|
-
protoOf(AsyncProviderImpl).
|
|
3996
|
-
return launch(this.
|
|
4042
|
+
protoOf(AsyncProviderImpl).m6c = function (context, block) {
|
|
4043
|
+
return launch(this.t6c_1, context, VOID, block);
|
|
3997
4044
|
};
|
|
3998
|
-
protoOf(AsyncProviderImpl).
|
|
3999
|
-
return launch(this.
|
|
4045
|
+
protoOf(AsyncProviderImpl).i6c = function (context, block) {
|
|
4046
|
+
return launch(this.u6c_1, context, VOID, block);
|
|
4000
4047
|
};
|
|
4001
|
-
protoOf(AsyncProviderImpl).
|
|
4002
|
-
return launch(this.
|
|
4048
|
+
protoOf(AsyncProviderImpl).k6c = function (context, block) {
|
|
4049
|
+
return launch(this.u6c_1, context, VOID, AsyncProviderImpl$launchDefaultWithLock$slambda_0(this, block, null));
|
|
4003
4050
|
};
|
|
4004
4051
|
protoOf(AsyncProviderImpl).a2 = function () {
|
|
4005
|
-
if (!this.
|
|
4006
|
-
this.
|
|
4052
|
+
if (!this.p6c_1.gp()) {
|
|
4053
|
+
this.p6c_1.tp();
|
|
4007
4054
|
}
|
|
4008
4055
|
};
|
|
4009
4056
|
function Key() {
|
|
@@ -4067,7 +4114,7 @@
|
|
|
4067
4114
|
}
|
|
4068
4115
|
function UUIDIdsProvider() {
|
|
4069
4116
|
}
|
|
4070
|
-
protoOf(UUIDIdsProvider).
|
|
4117
|
+
protoOf(UUIDIdsProvider).m6d = function () {
|
|
4071
4118
|
return uuid4().toString();
|
|
4072
4119
|
};
|
|
4073
4120
|
var UUIDIdsProvider_instance;
|
|
@@ -4085,59 +4132,59 @@
|
|
|
4085
4132
|
tmp = lock;
|
|
4086
4133
|
}
|
|
4087
4134
|
lock = tmp;
|
|
4088
|
-
this.
|
|
4089
|
-
this.
|
|
4135
|
+
this.s6d_1 = logger;
|
|
4136
|
+
this.t6d_1 = lock;
|
|
4090
4137
|
var tmp_0 = this;
|
|
4091
4138
|
// Inline function 'kotlin.collections.hashMapOf' call
|
|
4092
|
-
tmp_0.
|
|
4139
|
+
tmp_0.u6d_1 = HashMap_init_$Create$();
|
|
4093
4140
|
}
|
|
4094
|
-
protoOf(JobsProviderImpl).
|
|
4141
|
+
protoOf(JobsProviderImpl).n6d = function (timerTag, job) {
|
|
4095
4142
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4096
|
-
this.
|
|
4097
|
-
if (this.
|
|
4098
|
-
this.
|
|
4143
|
+
this.t6d_1;
|
|
4144
|
+
if (this.r6d(timerTag)) {
|
|
4145
|
+
this.s6d_1.w(VOID, 'Timer already exists for that tag: ' + toString_0(timerTag));
|
|
4099
4146
|
}
|
|
4100
|
-
this.
|
|
4147
|
+
this.u6d_1.j2(timerTag, job);
|
|
4101
4148
|
};
|
|
4102
|
-
protoOf(JobsProviderImpl).
|
|
4149
|
+
protoOf(JobsProviderImpl).r6d = function (timerTag) {
|
|
4103
4150
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4104
|
-
this.
|
|
4151
|
+
this.t6d_1;
|
|
4105
4152
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.containJob.<anonymous>' call
|
|
4106
|
-
return this.
|
|
4153
|
+
return this.u6d_1.e2(timerTag);
|
|
4107
4154
|
};
|
|
4108
|
-
protoOf(JobsProviderImpl).
|
|
4155
|
+
protoOf(JobsProviderImpl).p6d = function (timerTag) {
|
|
4109
4156
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4110
|
-
this.
|
|
4157
|
+
this.t6d_1;
|
|
4111
4158
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.removeJob.<anonymous>' call
|
|
4112
|
-
if (!this.
|
|
4113
|
-
this.
|
|
4159
|
+
if (!this.r6d(timerTag)) {
|
|
4160
|
+
this.s6d_1.w(VOID, "Can't find timer for that tag: " + toString_0(timerTag));
|
|
4114
4161
|
}
|
|
4115
|
-
this.
|
|
4162
|
+
this.u6d_1.k2(timerTag);
|
|
4116
4163
|
};
|
|
4117
|
-
protoOf(JobsProviderImpl).
|
|
4164
|
+
protoOf(JobsProviderImpl).q6d = function (timers) {
|
|
4118
4165
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4119
|
-
this.
|
|
4166
|
+
this.t6d_1;
|
|
4120
4167
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJobs.<anonymous>' call
|
|
4121
4168
|
// Inline function 'kotlin.collections.forEach' call
|
|
4122
4169
|
var tmp0_iterator = timers.j();
|
|
4123
4170
|
while (tmp0_iterator.k()) {
|
|
4124
4171
|
var element = tmp0_iterator.l();
|
|
4125
4172
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJobs.<anonymous>.<anonymous>' call
|
|
4126
|
-
var timer = this.
|
|
4173
|
+
var timer = this.u6d_1.g2(element);
|
|
4127
4174
|
if (timer == null)
|
|
4128
4175
|
null;
|
|
4129
4176
|
else {
|
|
4130
4177
|
timer.tp();
|
|
4131
4178
|
}
|
|
4132
4179
|
}
|
|
4133
|
-
this.
|
|
4180
|
+
this.u6d_1.h2().z1(toSet(timers));
|
|
4134
4181
|
};
|
|
4135
|
-
protoOf(JobsProviderImpl).
|
|
4182
|
+
protoOf(JobsProviderImpl).o6d = function (timerTag) {
|
|
4136
4183
|
// Inline function 'kotlinx.atomicfu.locks.withLock' call
|
|
4137
|
-
this.
|
|
4184
|
+
this.t6d_1;
|
|
4138
4185
|
// Inline function 'com.logic.data.providers.JobsProviderImpl.cancelJob.<anonymous>' call
|
|
4139
|
-
var timer = this.
|
|
4140
|
-
this.
|
|
4186
|
+
var timer = this.u6d_1.g2(timerTag);
|
|
4187
|
+
this.u6d_1.k2(timerTag);
|
|
4141
4188
|
var tmp;
|
|
4142
4189
|
if (timer == null) {
|
|
4143
4190
|
tmp = null;
|
|
@@ -4526,36 +4573,36 @@
|
|
|
4526
4573
|
}
|
|
4527
4574
|
function FileSystemImpl(fileSystem) {
|
|
4528
4575
|
fileSystem = fileSystem === VOID ? get_SystemFileSystem() : fileSystem;
|
|
4529
|
-
this.
|
|
4576
|
+
this.y6d_1 = fileSystem;
|
|
4530
4577
|
}
|
|
4531
|
-
protoOf(FileSystemImpl).
|
|
4578
|
+
protoOf(FileSystemImpl).v6d = function (path, $completion) {
|
|
4532
4579
|
var directoryPath = Path(path);
|
|
4533
|
-
var exists = this.
|
|
4580
|
+
var exists = this.y6d_1.h62(directoryPath);
|
|
4534
4581
|
if (!exists) {
|
|
4535
|
-
this.
|
|
4582
|
+
this.y6d_1.l62(directoryPath);
|
|
4536
4583
|
}
|
|
4537
4584
|
return Unit_instance;
|
|
4538
4585
|
};
|
|
4539
|
-
protoOf(FileSystemImpl).
|
|
4540
|
-
return buffered(this.
|
|
4586
|
+
protoOf(FileSystemImpl).w6d = function (path, fileName, append, $completion) {
|
|
4587
|
+
return buffered(this.y6d_1.m62(Path_0(path, [fileName]), append));
|
|
4541
4588
|
};
|
|
4542
|
-
protoOf(FileSystemImpl).
|
|
4543
|
-
this.
|
|
4589
|
+
protoOf(FileSystemImpl).x6d = function (path, $completion) {
|
|
4590
|
+
this.y6d_1.j62(Path_0(path, []));
|
|
4544
4591
|
return Unit_instance;
|
|
4545
4592
|
};
|
|
4546
4593
|
function LoggerFactoryImpl(coreConfig, fileSystem) {
|
|
4547
|
-
this.
|
|
4548
|
-
this.
|
|
4594
|
+
this.z6d_1 = coreConfig;
|
|
4595
|
+
this.a6e_1 = fileSystem;
|
|
4549
4596
|
}
|
|
4550
|
-
protoOf(LoggerFactoryImpl).
|
|
4597
|
+
protoOf(LoggerFactoryImpl).b6e = function (gameId, roomId, userId) {
|
|
4551
4598
|
// Inline function 'kotlin.let' call
|
|
4552
4599
|
// Inline function 'kotlin.contracts.contract' call
|
|
4553
4600
|
// Inline function 'com.logic.domain.logs.LoggerFactoryImpl.createLogger.<anonymous>' call
|
|
4554
|
-
var it = this.
|
|
4601
|
+
var it = this.z6d_1.fileNameFormat;
|
|
4555
4602
|
var tmp = Companion_instance_3;
|
|
4556
4603
|
var fileName = tmp.formatter(it, gameId, roomId, userId == null ? 'unknown_user_id' : userId);
|
|
4557
4604
|
// Inline function 'kotlin.collections.map' call
|
|
4558
|
-
var this_0 = split(this.
|
|
4605
|
+
var this_0 = split(this.z6d_1.requireDirectoryPath, ['/']);
|
|
4559
4606
|
// Inline function 'kotlin.collections.mapTo' call
|
|
4560
4607
|
var destination = ArrayList_init_$Create$_0(collectionSizeOrDefault(this_0, 10));
|
|
4561
4608
|
var tmp0_iterator = this_0.j();
|
|
@@ -4568,7 +4615,7 @@
|
|
|
4568
4615
|
}
|
|
4569
4616
|
var segments = destination;
|
|
4570
4617
|
var tmp0_path = joinToString(segments, '/');
|
|
4571
|
-
var tmp1_fileSystem = this.
|
|
4618
|
+
var tmp1_fileSystem = this.a6e_1;
|
|
4572
4619
|
return new LogsStorageControllerImpl(fileName, tmp0_path, tmp1_fileSystem);
|
|
4573
4620
|
};
|
|
4574
4621
|
function LoggerFactory() {
|
|
@@ -4581,7 +4628,7 @@
|
|
|
4581
4628
|
}
|
|
4582
4629
|
function $createDirectoryCOROUTINE$0(_this__u8e3s4, resultContinuation) {
|
|
4583
4630
|
CoroutineImpl.call(this, resultContinuation);
|
|
4584
|
-
this.
|
|
4631
|
+
this.u6e_1 = _this__u8e3s4;
|
|
4585
4632
|
}
|
|
4586
4633
|
protoOf($createDirectoryCOROUTINE$0).m9 = function () {
|
|
4587
4634
|
var suspendResult = this.g9_1;
|
|
@@ -4593,7 +4640,7 @@
|
|
|
4593
4640
|
this.f9_1 = 3;
|
|
4594
4641
|
this.f9_1 = 2;
|
|
4595
4642
|
this.e9_1 = 1;
|
|
4596
|
-
suspendResult = this.
|
|
4643
|
+
suspendResult = this.u6e_1.x6e_1.v6d(this.u6e_1.w6e_1, this);
|
|
4597
4644
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4598
4645
|
return suspendResult;
|
|
4599
4646
|
}
|
|
@@ -4634,8 +4681,8 @@
|
|
|
4634
4681
|
};
|
|
4635
4682
|
function $appendToFileCOROUTINE$1(_this__u8e3s4, message, resultContinuation) {
|
|
4636
4683
|
CoroutineImpl.call(this, resultContinuation);
|
|
4637
|
-
this.
|
|
4638
|
-
this.
|
|
4684
|
+
this.k6e_1 = _this__u8e3s4;
|
|
4685
|
+
this.l6e_1 = message;
|
|
4639
4686
|
}
|
|
4640
4687
|
protoOf($appendToFileCOROUTINE$1).m9 = function () {
|
|
4641
4688
|
var suspendResult = this.g9_1;
|
|
@@ -4647,7 +4694,7 @@
|
|
|
4647
4694
|
this.f9_1 = 3;
|
|
4648
4695
|
this.f9_1 = 2;
|
|
4649
4696
|
this.e9_1 = 1;
|
|
4650
|
-
suspendResult = this.
|
|
4697
|
+
suspendResult = this.k6e_1.x6e_1.w6d(this.k6e_1.w6e_1, this.k6e_1.v6e_1, true, this);
|
|
4651
4698
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
4652
4699
|
return suspendResult;
|
|
4653
4700
|
}
|
|
@@ -4658,7 +4705,7 @@
|
|
|
4658
4705
|
var sink = buffered(ARGUMENT);
|
|
4659
4706
|
l$ret$1: do {
|
|
4660
4707
|
try {
|
|
4661
|
-
writeString(sink, this.
|
|
4708
|
+
writeString(sink, this.l6e_1 + '\n');
|
|
4662
4709
|
break l$ret$1;
|
|
4663
4710
|
} catch ($p) {
|
|
4664
4711
|
var t = $p;
|
|
@@ -4701,17 +4748,17 @@
|
|
|
4701
4748
|
while (true);
|
|
4702
4749
|
};
|
|
4703
4750
|
function LogsStorageControllerImpl(fileName, path, fileSystem) {
|
|
4704
|
-
this.
|
|
4705
|
-
this.
|
|
4706
|
-
this.
|
|
4751
|
+
this.v6e_1 = fileName;
|
|
4752
|
+
this.w6e_1 = path;
|
|
4753
|
+
this.x6e_1 = fileSystem;
|
|
4707
4754
|
}
|
|
4708
|
-
protoOf(LogsStorageControllerImpl).
|
|
4755
|
+
protoOf(LogsStorageControllerImpl).y6e = function ($completion) {
|
|
4709
4756
|
var tmp = new $createDirectoryCOROUTINE$0(this, $completion);
|
|
4710
4757
|
tmp.g9_1 = Unit_instance;
|
|
4711
4758
|
tmp.h9_1 = null;
|
|
4712
4759
|
return tmp.m9();
|
|
4713
4760
|
};
|
|
4714
|
-
protoOf(LogsStorageControllerImpl).
|
|
4761
|
+
protoOf(LogsStorageControllerImpl).z6e = function (log, $completion) {
|
|
4715
4762
|
return appendToFile(this, log, $completion);
|
|
4716
4763
|
};
|
|
4717
4764
|
function BufferedAction() {
|
|
@@ -4724,13 +4771,13 @@
|
|
|
4724
4771
|
}
|
|
4725
4772
|
function StopTimerAction(timerTag) {
|
|
4726
4773
|
TimerAction.call(this);
|
|
4727
|
-
this.
|
|
4774
|
+
this.b6f_1 = timerTag;
|
|
4728
4775
|
}
|
|
4729
4776
|
protoOf(StopTimerAction).toString = function () {
|
|
4730
|
-
return 'StopTimerAction(timerTag=' + toString_0(this.
|
|
4777
|
+
return 'StopTimerAction(timerTag=' + toString_0(this.b6f_1) + ')';
|
|
4731
4778
|
};
|
|
4732
4779
|
protoOf(StopTimerAction).hashCode = function () {
|
|
4733
|
-
return hashCode(this.
|
|
4780
|
+
return hashCode(this.b6f_1);
|
|
4734
4781
|
};
|
|
4735
4782
|
protoOf(StopTimerAction).equals = function (other) {
|
|
4736
4783
|
if (this === other)
|
|
@@ -4738,7 +4785,7 @@
|
|
|
4738
4785
|
if (!(other instanceof StopTimerAction))
|
|
4739
4786
|
return false;
|
|
4740
4787
|
var tmp0_other_with_cast = other instanceof StopTimerAction ? other : THROW_CCE();
|
|
4741
|
-
if (!equals(this.
|
|
4788
|
+
if (!equals(this.b6f_1, tmp0_other_with_cast.b6f_1))
|
|
4742
4789
|
return false;
|
|
4743
4790
|
return true;
|
|
4744
4791
|
};
|
|
@@ -4746,32 +4793,32 @@
|
|
|
4746
4793
|
initialDelay = initialDelay === VOID ? new Long(0, 0) : initialDelay;
|
|
4747
4794
|
type = type === VOID ? TimerType_DELAY_getInstance() : type;
|
|
4748
4795
|
TimerAction.call(this);
|
|
4749
|
-
this.
|
|
4750
|
-
this.
|
|
4751
|
-
this.
|
|
4752
|
-
this.
|
|
4796
|
+
this.c6f_1 = timerTag;
|
|
4797
|
+
this.d6f_1 = delayMillis;
|
|
4798
|
+
this.e6f_1 = initialDelay;
|
|
4799
|
+
this.f6f_1 = type;
|
|
4753
4800
|
}
|
|
4754
4801
|
protoOf(StartTimerAction).toString = function () {
|
|
4755
|
-
var tmp = 'timerTag=' + toString_0(this.
|
|
4756
|
-
var tmp_0 = 'delayMillis=' + this.
|
|
4802
|
+
var tmp = 'timerTag=' + toString_0(this.c6f_1);
|
|
4803
|
+
var tmp_0 = 'delayMillis=' + this.d6f_1.toString();
|
|
4757
4804
|
// Inline function 'kotlin.takeIf' call
|
|
4758
|
-
var this_0 = 'initialDelay=' + this.
|
|
4805
|
+
var this_0 = 'initialDelay=' + this.e6f_1.toString();
|
|
4759
4806
|
// Inline function 'kotlin.contracts.contract' call
|
|
4760
4807
|
var tmp_1;
|
|
4761
4808
|
// Inline function 'com.logic.redux.actions.StartTimerAction.toString.<anonymous>' call
|
|
4762
|
-
if (!this.
|
|
4809
|
+
if (!this.e6f_1.equals(new Long(0, 0))) {
|
|
4763
4810
|
tmp_1 = this_0;
|
|
4764
4811
|
} else {
|
|
4765
4812
|
tmp_1 = null;
|
|
4766
4813
|
}
|
|
4767
4814
|
var tmp$ret$1 = tmp_1;
|
|
4768
|
-
return 'StartTimerAction(' + joinToString(listOfNotNull([tmp, tmp_0, tmp$ret$1, 'type=' + this.
|
|
4815
|
+
return 'StartTimerAction(' + joinToString(listOfNotNull([tmp, tmp_0, tmp$ret$1, 'type=' + this.f6f_1.toString()])) + ')';
|
|
4769
4816
|
};
|
|
4770
4817
|
protoOf(StartTimerAction).hashCode = function () {
|
|
4771
|
-
var result = hashCode(this.
|
|
4772
|
-
result = imul(result, 31) + this.
|
|
4773
|
-
result = imul(result, 31) + this.
|
|
4774
|
-
result = imul(result, 31) + this.
|
|
4818
|
+
var result = hashCode(this.c6f_1);
|
|
4819
|
+
result = imul(result, 31) + this.d6f_1.hashCode() | 0;
|
|
4820
|
+
result = imul(result, 31) + this.e6f_1.hashCode() | 0;
|
|
4821
|
+
result = imul(result, 31) + this.f6f_1.hashCode() | 0;
|
|
4775
4822
|
return result;
|
|
4776
4823
|
};
|
|
4777
4824
|
protoOf(StartTimerAction).equals = function (other) {
|
|
@@ -4780,13 +4827,13 @@
|
|
|
4780
4827
|
if (!(other instanceof StartTimerAction))
|
|
4781
4828
|
return false;
|
|
4782
4829
|
var tmp0_other_with_cast = other instanceof StartTimerAction ? other : THROW_CCE();
|
|
4783
|
-
if (!equals(this.
|
|
4830
|
+
if (!equals(this.c6f_1, tmp0_other_with_cast.c6f_1))
|
|
4784
4831
|
return false;
|
|
4785
|
-
if (!this.
|
|
4832
|
+
if (!this.d6f_1.equals(tmp0_other_with_cast.d6f_1))
|
|
4786
4833
|
return false;
|
|
4787
|
-
if (!this.
|
|
4834
|
+
if (!this.e6f_1.equals(tmp0_other_with_cast.e6f_1))
|
|
4788
4835
|
return false;
|
|
4789
|
-
if (!this.
|
|
4836
|
+
if (!this.f6f_1.equals(tmp0_other_with_cast.f6f_1))
|
|
4790
4837
|
return false;
|
|
4791
4838
|
return true;
|
|
4792
4839
|
};
|
|
@@ -4805,18 +4852,18 @@
|
|
|
4805
4852
|
}
|
|
4806
4853
|
function TimerTickAction(timerTag, type) {
|
|
4807
4854
|
TimerAction.call(this);
|
|
4808
|
-
this.
|
|
4809
|
-
this.
|
|
4855
|
+
this.g6f_1 = timerTag;
|
|
4856
|
+
this.h6f_1 = type;
|
|
4810
4857
|
}
|
|
4811
4858
|
protoOf(TimerTickAction).notValidateWhenFinished = function () {
|
|
4812
|
-
return this.
|
|
4859
|
+
return this.g6f_1.notValidateWhenFinished();
|
|
4813
4860
|
};
|
|
4814
4861
|
protoOf(TimerTickAction).toString = function () {
|
|
4815
|
-
return 'TimerTickAction(timerTag=' + toString_0(this.
|
|
4862
|
+
return 'TimerTickAction(timerTag=' + toString_0(this.g6f_1) + ', type=' + this.h6f_1.toString() + ')';
|
|
4816
4863
|
};
|
|
4817
4864
|
protoOf(TimerTickAction).hashCode = function () {
|
|
4818
|
-
var result = hashCode(this.
|
|
4819
|
-
result = imul(result, 31) + this.
|
|
4865
|
+
var result = hashCode(this.g6f_1);
|
|
4866
|
+
result = imul(result, 31) + this.h6f_1.hashCode() | 0;
|
|
4820
4867
|
return result;
|
|
4821
4868
|
};
|
|
4822
4869
|
protoOf(TimerTickAction).equals = function (other) {
|
|
@@ -4825,9 +4872,9 @@
|
|
|
4825
4872
|
if (!(other instanceof TimerTickAction))
|
|
4826
4873
|
return false;
|
|
4827
4874
|
var tmp0_other_with_cast = other instanceof TimerTickAction ? other : THROW_CCE();
|
|
4828
|
-
if (!equals(this.
|
|
4875
|
+
if (!equals(this.g6f_1, tmp0_other_with_cast.g6f_1))
|
|
4829
4876
|
return false;
|
|
4830
|
-
if (!this.
|
|
4877
|
+
if (!this.h6f_1.equals(tmp0_other_with_cast.h6f_1))
|
|
4831
4878
|
return false;
|
|
4832
4879
|
return true;
|
|
4833
4880
|
};
|
|
@@ -4883,7 +4930,7 @@
|
|
|
4883
4930
|
}
|
|
4884
4931
|
function applyMiddleware$lambda$lambda$lambda$lambda($middleware, $store, $dispatcher) {
|
|
4885
4932
|
return function (action) {
|
|
4886
|
-
$middleware.
|
|
4933
|
+
$middleware.i6f($store, $dispatcher, action);
|
|
4887
4934
|
return Unit_instance;
|
|
4888
4935
|
};
|
|
4889
4936
|
}
|
|
@@ -4899,7 +4946,7 @@
|
|
|
4899
4946
|
var element = this_0[inductionVariable];
|
|
4900
4947
|
inductionVariable = inductionVariable + 1 | 0;
|
|
4901
4948
|
// Inline function 'com.logic.redux.enhancers.applyMiddleware.<anonymous>.<anonymous>.<anonymous>.<anonymous>' call
|
|
4902
|
-
if (element.
|
|
4949
|
+
if (element.j6f(action)) {
|
|
4903
4950
|
destination.e(element);
|
|
4904
4951
|
}
|
|
4905
4952
|
}
|
|
@@ -4938,9 +4985,9 @@
|
|
|
4938
4985
|
return new _no_name_provided__qut3iv_0(asyncProvider, jobsProvider);
|
|
4939
4986
|
}
|
|
4940
4987
|
function timerMiddleware$o$handle$slambda$slambda($jobsProvider, $action, $store, resultContinuation) {
|
|
4941
|
-
this.
|
|
4942
|
-
this.
|
|
4943
|
-
this.
|
|
4988
|
+
this.s6f_1 = $jobsProvider;
|
|
4989
|
+
this.t6f_1 = $action;
|
|
4990
|
+
this.u6f_1 = $store;
|
|
4944
4991
|
CoroutineImpl.call(this, resultContinuation);
|
|
4945
4992
|
}
|
|
4946
4993
|
protoOf(timerMiddleware$o$handle$slambda$slambda).h1d = function ($this$launchMain, $completion) {
|
|
@@ -4959,8 +5006,8 @@
|
|
|
4959
5006
|
var tmp = this.e9_1;
|
|
4960
5007
|
if (tmp === 0) {
|
|
4961
5008
|
this.f9_1 = 1;
|
|
4962
|
-
if (this.
|
|
4963
|
-
this.
|
|
5009
|
+
if (this.s6f_1.r6d(this.t6f_1.c6f_1)) {
|
|
5010
|
+
this.u6f_1.dispatch(new TimerTickAction(this.t6f_1.c6f_1, TimerType_DELAY_getInstance()));
|
|
4964
5011
|
}
|
|
4965
5012
|
return Unit_instance;
|
|
4966
5013
|
} else if (tmp === 1) {
|
|
@@ -4973,8 +5020,8 @@
|
|
|
4973
5020
|
while (true);
|
|
4974
5021
|
};
|
|
4975
5022
|
protoOf(timerMiddleware$o$handle$slambda$slambda).i1d = function ($this$launchMain, completion) {
|
|
4976
|
-
var i = new timerMiddleware$o$handle$slambda$slambda(this.
|
|
4977
|
-
i.
|
|
5023
|
+
var i = new timerMiddleware$o$handle$slambda$slambda(this.s6f_1, this.t6f_1, this.u6f_1, completion);
|
|
5024
|
+
i.v6f_1 = $this$launchMain;
|
|
4978
5025
|
return i;
|
|
4979
5026
|
};
|
|
4980
5027
|
function timerMiddleware$o$handle$slambda$slambda_0($jobsProvider, $action, $store, resultContinuation) {
|
|
@@ -4986,9 +5033,9 @@
|
|
|
4986
5033
|
return l;
|
|
4987
5034
|
}
|
|
4988
5035
|
function timerMiddleware$o$handle$slambda$slambda_1($jobsProvider, $action, $store, resultContinuation) {
|
|
4989
|
-
this.
|
|
4990
|
-
this.
|
|
4991
|
-
this.
|
|
5036
|
+
this.e6g_1 = $jobsProvider;
|
|
5037
|
+
this.f6g_1 = $action;
|
|
5038
|
+
this.g6g_1 = $store;
|
|
4992
5039
|
CoroutineImpl.call(this, resultContinuation);
|
|
4993
5040
|
}
|
|
4994
5041
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).h1d = function ($this$launchMain, $completion) {
|
|
@@ -5007,8 +5054,8 @@
|
|
|
5007
5054
|
var tmp = this.e9_1;
|
|
5008
5055
|
if (tmp === 0) {
|
|
5009
5056
|
this.f9_1 = 1;
|
|
5010
|
-
if (this.
|
|
5011
|
-
this.
|
|
5057
|
+
if (this.e6g_1.r6d(this.f6g_1.c6f_1)) {
|
|
5058
|
+
this.g6g_1.dispatch(new TimerTickAction(this.f6g_1.c6f_1, TimerType_INTERVAL_getInstance()));
|
|
5012
5059
|
}
|
|
5013
5060
|
return Unit_instance;
|
|
5014
5061
|
} else if (tmp === 1) {
|
|
@@ -5021,8 +5068,8 @@
|
|
|
5021
5068
|
while (true);
|
|
5022
5069
|
};
|
|
5023
5070
|
protoOf(timerMiddleware$o$handle$slambda$slambda_1).i1d = function ($this$launchMain, completion) {
|
|
5024
|
-
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.
|
|
5025
|
-
i.
|
|
5071
|
+
var i = new timerMiddleware$o$handle$slambda$slambda_1(this.e6g_1, this.f6g_1, this.g6g_1, completion);
|
|
5072
|
+
i.h6g_1 = $this$launchMain;
|
|
5026
5073
|
return i;
|
|
5027
5074
|
};
|
|
5028
5075
|
function timerMiddleware$o$handle$slambda$slambda_2($jobsProvider, $action, $store, resultContinuation) {
|
|
@@ -5034,10 +5081,10 @@
|
|
|
5034
5081
|
return l;
|
|
5035
5082
|
}
|
|
5036
5083
|
function timerMiddleware$o$handle$slambda($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
5037
|
-
this.
|
|
5038
|
-
this.
|
|
5039
|
-
this.
|
|
5040
|
-
this.
|
|
5084
|
+
this.q6g_1 = $action;
|
|
5085
|
+
this.r6g_1 = $asyncProvider;
|
|
5086
|
+
this.s6g_1 = $jobsProvider;
|
|
5087
|
+
this.t6g_1 = $store;
|
|
5041
5088
|
CoroutineImpl.call(this, resultContinuation);
|
|
5042
5089
|
}
|
|
5043
5090
|
protoOf(timerMiddleware$o$handle$slambda).h1d = function ($this$launchDefault, $completion) {
|
|
@@ -5057,9 +5104,9 @@
|
|
|
5057
5104
|
switch (tmp) {
|
|
5058
5105
|
case 0:
|
|
5059
5106
|
this.f9_1 = 10;
|
|
5060
|
-
if (!this.
|
|
5107
|
+
if (!this.q6g_1.e6f_1.equals(new Long(0, 0)) && this.q6g_1.f6f_1.equals(TimerType_INTERVAL_getInstance())) {
|
|
5061
5108
|
this.e9_1 = 1;
|
|
5062
|
-
suspendResult = delay(this.
|
|
5109
|
+
suspendResult = delay(this.q6g_1.e6f_1, this);
|
|
5063
5110
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5064
5111
|
return suspendResult;
|
|
5065
5112
|
}
|
|
@@ -5073,20 +5120,20 @@
|
|
|
5073
5120
|
this.e9_1 = 2;
|
|
5074
5121
|
continue $sm;
|
|
5075
5122
|
case 2:
|
|
5076
|
-
this.
|
|
5077
|
-
this.
|
|
5078
|
-
if (this.
|
|
5123
|
+
this.v6g_1 = this.q6g_1.f6f_1;
|
|
5124
|
+
this.w6g_1 = this.v6g_1.n2_1;
|
|
5125
|
+
if (this.w6g_1 === 0) {
|
|
5079
5126
|
this.e9_1 = 8;
|
|
5080
|
-
suspendResult = delay(this.
|
|
5127
|
+
suspendResult = delay(this.q6g_1.d6f_1, this);
|
|
5081
5128
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5082
5129
|
return suspendResult;
|
|
5083
5130
|
}
|
|
5084
5131
|
continue $sm;
|
|
5085
5132
|
} else {
|
|
5086
|
-
if (this.
|
|
5087
|
-
if (!this.
|
|
5133
|
+
if (this.w6g_1 === 1) {
|
|
5134
|
+
if (!this.q6g_1.e6f_1.equals(new Long(0, 0))) {
|
|
5088
5135
|
this.e9_1 = 3;
|
|
5089
|
-
suspendResult = delay(this.
|
|
5136
|
+
suspendResult = delay(this.q6g_1.e6f_1, this);
|
|
5090
5137
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5091
5138
|
return suspendResult;
|
|
5092
5139
|
}
|
|
@@ -5109,14 +5156,14 @@
|
|
|
5109
5156
|
this.e9_1 = 5;
|
|
5110
5157
|
continue $sm;
|
|
5111
5158
|
case 5:
|
|
5112
|
-
if (!get_isActive(this.
|
|
5159
|
+
if (!get_isActive(this.u6g_1)) {
|
|
5113
5160
|
this.e9_1 = 7;
|
|
5114
5161
|
continue $sm;
|
|
5115
5162
|
}
|
|
5116
5163
|
|
|
5117
|
-
this.
|
|
5164
|
+
this.r6g_1.n6c(VOID, timerMiddleware$o$handle$slambda$slambda_2(this.s6g_1, this.q6g_1, this.t6g_1, null));
|
|
5118
5165
|
this.e9_1 = 6;
|
|
5119
|
-
suspendResult = delay(this.
|
|
5166
|
+
suspendResult = delay(this.q6g_1.e6f_1, this);
|
|
5120
5167
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5121
5168
|
return suspendResult;
|
|
5122
5169
|
}
|
|
@@ -5126,12 +5173,12 @@
|
|
|
5126
5173
|
this.e9_1 = 5;
|
|
5127
5174
|
continue $sm;
|
|
5128
5175
|
case 7:
|
|
5129
|
-
this.
|
|
5176
|
+
this.x6g_1 = Unit_instance;
|
|
5130
5177
|
this.e9_1 = 9;
|
|
5131
5178
|
continue $sm;
|
|
5132
5179
|
case 8:
|
|
5133
5180
|
var tmp_1 = this;
|
|
5134
|
-
tmp_1.
|
|
5181
|
+
tmp_1.x6g_1 = this.r6g_1.n6c(VOID, timerMiddleware$o$handle$slambda$slambda_0(this.s6g_1, this.q6g_1, this.t6g_1, null));
|
|
5135
5182
|
this.e9_1 = 9;
|
|
5136
5183
|
continue $sm;
|
|
5137
5184
|
case 9:
|
|
@@ -5151,8 +5198,8 @@
|
|
|
5151
5198
|
while (true);
|
|
5152
5199
|
};
|
|
5153
5200
|
protoOf(timerMiddleware$o$handle$slambda).i1d = function ($this$launchDefault, completion) {
|
|
5154
|
-
var i = new timerMiddleware$o$handle$slambda(this.
|
|
5155
|
-
i.
|
|
5201
|
+
var i = new timerMiddleware$o$handle$slambda(this.q6g_1, this.r6g_1, this.s6g_1, this.t6g_1, completion);
|
|
5202
|
+
i.u6g_1 = $this$launchDefault;
|
|
5156
5203
|
return i;
|
|
5157
5204
|
};
|
|
5158
5205
|
function timerMiddleware$o$handle$slambda_0($action, $asyncProvider, $jobsProvider, $store, resultContinuation) {
|
|
@@ -5164,25 +5211,25 @@
|
|
|
5164
5211
|
return l;
|
|
5165
5212
|
}
|
|
5166
5213
|
function _no_name_provided__qut3iv_0($asyncProvider, $jobsProvider) {
|
|
5167
|
-
this.
|
|
5168
|
-
this.
|
|
5214
|
+
this.y6g_1 = $asyncProvider;
|
|
5215
|
+
this.z6g_1 = $jobsProvider;
|
|
5169
5216
|
}
|
|
5170
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5217
|
+
protoOf(_no_name_provided__qut3iv_0).j6f = function (action) {
|
|
5171
5218
|
return action instanceof TimerAction;
|
|
5172
5219
|
};
|
|
5173
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5220
|
+
protoOf(_no_name_provided__qut3iv_0).a6h = function (store, next, action) {
|
|
5174
5221
|
// Inline function 'com.logic.redux.middlewares.timers.timerMiddleware.<anonymous>' call
|
|
5175
5222
|
var action_0 = action instanceof TimerAction ? action : THROW_CCE();
|
|
5176
5223
|
if (action_0 instanceof StartTimerAction) {
|
|
5177
|
-
var job = this.
|
|
5178
|
-
this.
|
|
5224
|
+
var job = this.y6g_1.j6c(VOID, timerMiddleware$o$handle$slambda_0(action_0, this.y6g_1, this.z6g_1, store, null));
|
|
5225
|
+
this.z6g_1.n6d(action_0.c6f_1, job);
|
|
5179
5226
|
} else {
|
|
5180
5227
|
if (action_0 instanceof StopTimerAction) {
|
|
5181
|
-
this.
|
|
5228
|
+
this.z6g_1.o6d(action_0.b6f_1);
|
|
5182
5229
|
} else {
|
|
5183
5230
|
if (action_0 instanceof TimerTickAction) {
|
|
5184
|
-
if (action_0.
|
|
5185
|
-
this.
|
|
5231
|
+
if (action_0.h6f_1.equals(TimerType_DELAY_getInstance())) {
|
|
5232
|
+
this.z6g_1.p6d(action_0.g6f_1);
|
|
5186
5233
|
}
|
|
5187
5234
|
} else {
|
|
5188
5235
|
noWhenBranchMatchedException();
|
|
@@ -5191,8 +5238,8 @@
|
|
|
5191
5238
|
}
|
|
5192
5239
|
next(action_0);
|
|
5193
5240
|
};
|
|
5194
|
-
protoOf(_no_name_provided__qut3iv_0).
|
|
5195
|
-
return this.
|
|
5241
|
+
protoOf(_no_name_provided__qut3iv_0).i6f = function (store, next, action) {
|
|
5242
|
+
return this.a6h(store, next, action);
|
|
5196
5243
|
};
|
|
5197
5244
|
function compose(functions) {
|
|
5198
5245
|
return compose$lambda(functions);
|
|
@@ -5236,7 +5283,7 @@
|
|
|
5236
5283
|
}
|
|
5237
5284
|
function createStore$dispatch(currentState, currentReducer, stateTrigger, $logger, action) {
|
|
5238
5285
|
try {
|
|
5239
|
-
currentState._v = currentReducer._v.
|
|
5286
|
+
currentState._v = currentReducer._v.b6h(currentState._v, action);
|
|
5240
5287
|
stateTrigger.o1b(Unit_instance);
|
|
5241
5288
|
} catch ($p) {
|
|
5242
5289
|
if ($p instanceof Exception) {
|
|
@@ -5259,8 +5306,8 @@
|
|
|
5259
5306
|
};
|
|
5260
5307
|
}
|
|
5261
5308
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug($$this$unsafeFlow, this$0, resultContinuation) {
|
|
5262
|
-
this.
|
|
5263
|
-
this.
|
|
5309
|
+
this.k6h_1 = $$this$unsafeFlow;
|
|
5310
|
+
this.l6h_1 = this$0;
|
|
5264
5311
|
CoroutineImpl.call(this, resultContinuation);
|
|
5265
5312
|
}
|
|
5266
5313
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).t1e = function (value, $completion) {
|
|
@@ -5281,12 +5328,12 @@
|
|
|
5281
5328
|
case 0:
|
|
5282
5329
|
this.f9_1 = 2;
|
|
5283
5330
|
var tmp_0 = this;
|
|
5284
|
-
tmp_0.
|
|
5331
|
+
tmp_0.n6h_1 = this.k6h_1;
|
|
5285
5332
|
var tmp_1 = this;
|
|
5286
|
-
tmp_1.
|
|
5333
|
+
tmp_1.o6h_1 = this.m6h_1;
|
|
5287
5334
|
this.e9_1 = 1;
|
|
5288
|
-
this.
|
|
5289
|
-
suspendResult = this.
|
|
5335
|
+
this.o6h_1;
|
|
5336
|
+
suspendResult = this.n6h_1.p18(this.l6h_1.state, this);
|
|
5290
5337
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5291
5338
|
return suspendResult;
|
|
5292
5339
|
}
|
|
@@ -5309,8 +5356,8 @@
|
|
|
5309
5356
|
while (true);
|
|
5310
5357
|
};
|
|
5311
5358
|
protoOf(createStore$o$_get_observe_$o$collect$slambda_h8loug).u1e = function (value, completion) {
|
|
5312
|
-
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.
|
|
5313
|
-
i.
|
|
5359
|
+
var i = new createStore$o$_get_observe_$o$collect$slambda_h8loug(this.k6h_1, this.l6h_1, completion);
|
|
5360
|
+
i.m6h_1 = value;
|
|
5314
5361
|
return i;
|
|
5315
5362
|
};
|
|
5316
5363
|
function createStore$o$_get_observe_$o$collect$slambda_h8loug_0($$this$unsafeFlow, this$0, resultContinuation) {
|
|
@@ -5323,8 +5370,8 @@
|
|
|
5323
5370
|
}
|
|
5324
5371
|
function $collectCOROUTINE$2(_this__u8e3s4, collector, resultContinuation) {
|
|
5325
5372
|
CoroutineImpl.call(this, resultContinuation);
|
|
5326
|
-
this.
|
|
5327
|
-
this.
|
|
5373
|
+
this.x6h_1 = _this__u8e3s4;
|
|
5374
|
+
this.y6h_1 = collector;
|
|
5328
5375
|
}
|
|
5329
5376
|
protoOf($collectCOROUTINE$2).m9 = function () {
|
|
5330
5377
|
var suspendResult = this.g9_1;
|
|
@@ -5335,10 +5382,10 @@
|
|
|
5335
5382
|
case 0:
|
|
5336
5383
|
this.f9_1 = 2;
|
|
5337
5384
|
var tmp_0 = this;
|
|
5338
|
-
tmp_0.
|
|
5385
|
+
tmp_0.z6h_1 = this.y6h_1;
|
|
5339
5386
|
this.e9_1 = 1;
|
|
5340
|
-
var tmp_1 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.
|
|
5341
|
-
suspendResult = this.
|
|
5387
|
+
var tmp_1 = createStore$o$_get_observe_$o$collect$slambda_h8loug_0(this.z6h_1, this.x6h_1.b6i_1, null);
|
|
5388
|
+
suspendResult = this.x6h_1.a6i_1.m17(new sam$kotlinx_coroutines_flow_FlowCollector$0(tmp_1), this);
|
|
5342
5389
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5343
5390
|
return suspendResult;
|
|
5344
5391
|
}
|
|
@@ -5361,13 +5408,13 @@
|
|
|
5361
5408
|
while (true);
|
|
5362
5409
|
};
|
|
5363
5410
|
function sam$kotlinx_coroutines_flow_FlowCollector$0(function_0) {
|
|
5364
|
-
this.
|
|
5411
|
+
this.c6i_1 = function_0;
|
|
5365
5412
|
}
|
|
5366
5413
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).p18 = function (value, $completion) {
|
|
5367
|
-
return this.
|
|
5414
|
+
return this.c6i_1(value, $completion);
|
|
5368
5415
|
};
|
|
5369
5416
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).o3 = function () {
|
|
5370
|
-
return this.
|
|
5417
|
+
return this.c6i_1;
|
|
5371
5418
|
};
|
|
5372
5419
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0).equals = function (other) {
|
|
5373
5420
|
var tmp;
|
|
@@ -5400,8 +5447,8 @@
|
|
|
5400
5447
|
};
|
|
5401
5448
|
}
|
|
5402
5449
|
function _no_name_provided__qut3iv_1($this, this$0) {
|
|
5403
|
-
this.
|
|
5404
|
-
this.
|
|
5450
|
+
this.a6i_1 = $this;
|
|
5451
|
+
this.b6i_1 = this$0;
|
|
5405
5452
|
}
|
|
5406
5453
|
protoOf(_no_name_provided__qut3iv_1).q18 = function (collector, $completion) {
|
|
5407
5454
|
var tmp = new $collectCOROUTINE$2(this, collector, $completion);
|
|
@@ -5413,33 +5460,33 @@
|
|
|
5413
5460
|
return this.q18(collector, $completion);
|
|
5414
5461
|
};
|
|
5415
5462
|
function createStore$2($currentState, $currentReducer, $stateTrigger, $logger) {
|
|
5416
|
-
this.
|
|
5417
|
-
this.
|
|
5418
|
-
this.
|
|
5463
|
+
this.g6i_1 = $currentState;
|
|
5464
|
+
this.h6i_1 = $stateTrigger;
|
|
5465
|
+
this.d6i_1 = this;
|
|
5419
5466
|
var tmp = this;
|
|
5420
|
-
tmp.
|
|
5467
|
+
tmp.e6i_1 = createStore$o$dispatch$lambda($currentState, $currentReducer, $stateTrigger, $logger);
|
|
5421
5468
|
var tmp_0 = this;
|
|
5422
|
-
tmp_0.
|
|
5469
|
+
tmp_0.f6i_1 = createStore$o$replaceReducer$lambda($currentReducer, $currentState, $stateTrigger, $logger);
|
|
5423
5470
|
}
|
|
5424
|
-
protoOf(createStore$2).
|
|
5425
|
-
return this.
|
|
5471
|
+
protoOf(createStore$2).i6i = function () {
|
|
5472
|
+
return this.d6i_1;
|
|
5426
5473
|
};
|
|
5427
|
-
protoOf(createStore$2).
|
|
5428
|
-
return createStore$getState(this.
|
|
5474
|
+
protoOf(createStore$2).p67 = function () {
|
|
5475
|
+
return createStore$getState(this.g6i_1);
|
|
5429
5476
|
};
|
|
5430
|
-
protoOf(createStore$2).
|
|
5431
|
-
this.
|
|
5477
|
+
protoOf(createStore$2).j6i = function (_set____db54di) {
|
|
5478
|
+
this.e6i_1 = _set____db54di;
|
|
5432
5479
|
};
|
|
5433
|
-
protoOf(createStore$2).
|
|
5434
|
-
return this.
|
|
5480
|
+
protoOf(createStore$2).k6i = function () {
|
|
5481
|
+
return this.e6i_1;
|
|
5435
5482
|
};
|
|
5436
|
-
protoOf(createStore$2).
|
|
5437
|
-
return this.
|
|
5483
|
+
protoOf(createStore$2).l6i = function () {
|
|
5484
|
+
return this.f6i_1;
|
|
5438
5485
|
};
|
|
5439
|
-
protoOf(createStore$2).
|
|
5486
|
+
protoOf(createStore$2).m6i = function () {
|
|
5440
5487
|
// Inline function 'kotlinx.coroutines.flow.map' call
|
|
5441
5488
|
// Inline function 'kotlinx.coroutines.flow.unsafeTransform' call
|
|
5442
|
-
var this_0 = this.
|
|
5489
|
+
var this_0 = this.h6i_1;
|
|
5443
5490
|
// Inline function 'kotlinx.coroutines.flow.internal.unsafeFlow' call
|
|
5444
5491
|
return new _no_name_provided__qut3iv_1(this_0, this);
|
|
5445
5492
|
};
|
|
@@ -5517,10 +5564,10 @@
|
|
|
5517
5564
|
return new middleware$1(dispatch);
|
|
5518
5565
|
}
|
|
5519
5566
|
function middleware$1($dispatch) {
|
|
5520
|
-
this.
|
|
5567
|
+
this.n6i_1 = $dispatch;
|
|
5521
5568
|
}
|
|
5522
|
-
protoOf(middleware$1).
|
|
5523
|
-
this.
|
|
5569
|
+
protoOf(middleware$1).i6f = function (store, next, action) {
|
|
5570
|
+
this.n6i_1(store, next, action);
|
|
5524
5571
|
};
|
|
5525
5572
|
function Reducer() {
|
|
5526
5573
|
}
|
|
@@ -5528,13 +5575,13 @@
|
|
|
5528
5575
|
return new combineReducers$1(reducers);
|
|
5529
5576
|
}
|
|
5530
5577
|
function combineReducers$1($reducers) {
|
|
5531
|
-
this.
|
|
5578
|
+
this.o6i_1 = $reducers;
|
|
5532
5579
|
}
|
|
5533
|
-
protoOf(combineReducers$1).
|
|
5580
|
+
protoOf(combineReducers$1).p6i = function (state, action) {
|
|
5534
5581
|
// Inline function 'kotlin.collections.fold' call
|
|
5535
5582
|
// Inline function 'kotlin.collections.filter' call
|
|
5536
5583
|
// Inline function 'kotlin.collections.filterTo' call
|
|
5537
|
-
var this_0 = this.
|
|
5584
|
+
var this_0 = this.o6i_1;
|
|
5538
5585
|
var destination = ArrayList_init_$Create$();
|
|
5539
5586
|
var inductionVariable = 0;
|
|
5540
5587
|
var last = this_0.length;
|
|
@@ -5542,7 +5589,7 @@
|
|
|
5542
5589
|
var element = this_0[inductionVariable];
|
|
5543
5590
|
inductionVariable = inductionVariable + 1 | 0;
|
|
5544
5591
|
// Inline function 'com.logic.redux.store.definitions.<no name provided>.reduce.<anonymous>' call
|
|
5545
|
-
if (element.
|
|
5592
|
+
if (element.j6f(action)) {
|
|
5546
5593
|
destination.e(element);
|
|
5547
5594
|
}
|
|
5548
5595
|
}
|
|
@@ -5552,12 +5599,12 @@
|
|
|
5552
5599
|
var element_0 = tmp0_iterator.l();
|
|
5553
5600
|
// Inline function 'com.logic.redux.store.definitions.<no name provided>.reduce.<anonymous>' call
|
|
5554
5601
|
var s = accumulator;
|
|
5555
|
-
accumulator = element_0.
|
|
5602
|
+
accumulator = element_0.b6h(s, action);
|
|
5556
5603
|
}
|
|
5557
5604
|
return accumulator;
|
|
5558
5605
|
};
|
|
5559
|
-
protoOf(combineReducers$1).
|
|
5560
|
-
return this.
|
|
5606
|
+
protoOf(combineReducers$1).b6h = function (state, action) {
|
|
5607
|
+
return this.p6i((state == null ? true : !(state == null)) ? state : THROW_CCE(), action);
|
|
5561
5608
|
};
|
|
5562
5609
|
function Store() {
|
|
5563
5610
|
}
|
|
@@ -5569,13 +5616,13 @@
|
|
|
5569
5616
|
return new _no_name_provided__qut3iv_2(this_0);
|
|
5570
5617
|
}
|
|
5571
5618
|
function sam$kotlinx_coroutines_flow_FlowCollector$0_0(function_0) {
|
|
5572
|
-
this.
|
|
5619
|
+
this.q6i_1 = function_0;
|
|
5573
5620
|
}
|
|
5574
5621
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).p18 = function (value, $completion) {
|
|
5575
|
-
return this.
|
|
5622
|
+
return this.q6i_1(value, $completion);
|
|
5576
5623
|
};
|
|
5577
5624
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).o3 = function () {
|
|
5578
|
-
return this.
|
|
5625
|
+
return this.q6i_1;
|
|
5579
5626
|
};
|
|
5580
5627
|
protoOf(sam$kotlinx_coroutines_flow_FlowCollector$0_0).equals = function (other) {
|
|
5581
5628
|
var tmp;
|
|
@@ -5596,9 +5643,9 @@
|
|
|
5596
5643
|
return hashCode(this.o3());
|
|
5597
5644
|
};
|
|
5598
5645
|
function windowedByInterval$slambda$slambda($intervalMillis, $this_channelFlow, $events, resultContinuation) {
|
|
5599
|
-
this.
|
|
5600
|
-
this.
|
|
5601
|
-
this.
|
|
5646
|
+
this.z6i_1 = $intervalMillis;
|
|
5647
|
+
this.a6j_1 = $this_channelFlow;
|
|
5648
|
+
this.b6j_1 = $events;
|
|
5602
5649
|
CoroutineImpl.call(this, resultContinuation);
|
|
5603
5650
|
}
|
|
5604
5651
|
protoOf(windowedByInterval$slambda$slambda).h1d = function ($this$launch, $completion) {
|
|
@@ -5621,13 +5668,13 @@
|
|
|
5621
5668
|
this.e9_1 = 1;
|
|
5622
5669
|
continue $sm;
|
|
5623
5670
|
case 1:
|
|
5624
|
-
if (!get_isActive(this.
|
|
5671
|
+
if (!get_isActive(this.c6j_1)) {
|
|
5625
5672
|
this.e9_1 = 4;
|
|
5626
5673
|
continue $sm;
|
|
5627
5674
|
}
|
|
5628
5675
|
|
|
5629
5676
|
this.e9_1 = 2;
|
|
5630
|
-
suspendResult = delay(this.
|
|
5677
|
+
suspendResult = delay(this.z6i_1, this);
|
|
5631
5678
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5632
5679
|
return suspendResult;
|
|
5633
5680
|
}
|
|
@@ -5635,14 +5682,14 @@
|
|
|
5635
5682
|
continue $sm;
|
|
5636
5683
|
case 2:
|
|
5637
5684
|
this.e9_1 = 3;
|
|
5638
|
-
suspendResult = this.
|
|
5685
|
+
suspendResult = this.a6j_1.v15(toList(this.b6j_1), this);
|
|
5639
5686
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5640
5687
|
return suspendResult;
|
|
5641
5688
|
}
|
|
5642
5689
|
|
|
5643
5690
|
continue $sm;
|
|
5644
5691
|
case 3:
|
|
5645
|
-
this.
|
|
5692
|
+
this.b6j_1.a2();
|
|
5646
5693
|
this.e9_1 = 1;
|
|
5647
5694
|
continue $sm;
|
|
5648
5695
|
case 4:
|
|
@@ -5662,8 +5709,8 @@
|
|
|
5662
5709
|
while (true);
|
|
5663
5710
|
};
|
|
5664
5711
|
protoOf(windowedByInterval$slambda$slambda).i1d = function ($this$launch, completion) {
|
|
5665
|
-
var i = new windowedByInterval$slambda$slambda(this.
|
|
5666
|
-
i.
|
|
5712
|
+
var i = new windowedByInterval$slambda$slambda(this.z6i_1, this.a6j_1, this.b6j_1, completion);
|
|
5713
|
+
i.c6j_1 = $this$launch;
|
|
5667
5714
|
return i;
|
|
5668
5715
|
};
|
|
5669
5716
|
function windowedByInterval$slambda$slambda_0($intervalMillis, $this_channelFlow, $events, resultContinuation) {
|
|
@@ -5675,7 +5722,7 @@
|
|
|
5675
5722
|
return l;
|
|
5676
5723
|
}
|
|
5677
5724
|
function windowedByInterval$slambda$slambda_1($events, resultContinuation) {
|
|
5678
|
-
this.
|
|
5725
|
+
this.l6j_1 = $events;
|
|
5679
5726
|
CoroutineImpl.call(this, resultContinuation);
|
|
5680
5727
|
}
|
|
5681
5728
|
protoOf(windowedByInterval$slambda$slambda_1).b1e = function (event, $completion) {
|
|
@@ -5694,7 +5741,7 @@
|
|
|
5694
5741
|
var tmp = this.e9_1;
|
|
5695
5742
|
if (tmp === 0) {
|
|
5696
5743
|
this.f9_1 = 1;
|
|
5697
|
-
this.
|
|
5744
|
+
this.l6j_1.e(this.m6j_1);
|
|
5698
5745
|
return Unit_instance;
|
|
5699
5746
|
} else if (tmp === 1) {
|
|
5700
5747
|
throw this.h9_1;
|
|
@@ -5706,8 +5753,8 @@
|
|
|
5706
5753
|
while (true);
|
|
5707
5754
|
};
|
|
5708
5755
|
protoOf(windowedByInterval$slambda$slambda_1).c1e = function (event, completion) {
|
|
5709
|
-
var i = new windowedByInterval$slambda$slambda_1(this.
|
|
5710
|
-
i.
|
|
5756
|
+
var i = new windowedByInterval$slambda$slambda_1(this.l6j_1, completion);
|
|
5757
|
+
i.m6j_1 = event;
|
|
5711
5758
|
return i;
|
|
5712
5759
|
};
|
|
5713
5760
|
function windowedByInterval$slambda$slambda_2($events, resultContinuation) {
|
|
@@ -5719,18 +5766,18 @@
|
|
|
5719
5766
|
return l;
|
|
5720
5767
|
}
|
|
5721
5768
|
function windowedByInterval$slambda($this_windowedByInterval, $intervalMillis, resultContinuation) {
|
|
5722
|
-
this.
|
|
5723
|
-
this.
|
|
5769
|
+
this.v6j_1 = $this_windowedByInterval;
|
|
5770
|
+
this.w6j_1 = $intervalMillis;
|
|
5724
5771
|
CoroutineImpl.call(this, resultContinuation);
|
|
5725
5772
|
}
|
|
5726
|
-
protoOf(windowedByInterval$slambda).
|
|
5727
|
-
var tmp = this.
|
|
5773
|
+
protoOf(windowedByInterval$slambda).z6j = function ($this$channelFlow, $completion) {
|
|
5774
|
+
var tmp = this.a6k($this$channelFlow, $completion);
|
|
5728
5775
|
tmp.g9_1 = Unit_instance;
|
|
5729
5776
|
tmp.h9_1 = null;
|
|
5730
5777
|
return tmp.m9();
|
|
5731
5778
|
};
|
|
5732
5779
|
protoOf(windowedByInterval$slambda).w9 = function (p1, $completion) {
|
|
5733
|
-
return this.
|
|
5780
|
+
return this.z6j((!(p1 == null) ? isInterface(p1, ProducerScope) : false) ? p1 : THROW_CCE(), $completion);
|
|
5734
5781
|
};
|
|
5735
5782
|
protoOf(windowedByInterval$slambda).m9 = function () {
|
|
5736
5783
|
var suspendResult = this.g9_1;
|
|
@@ -5741,11 +5788,11 @@
|
|
|
5741
5788
|
case 0:
|
|
5742
5789
|
this.f9_1 = 3;
|
|
5743
5790
|
var tmp_0 = this;
|
|
5744
|
-
tmp_0.
|
|
5745
|
-
launch(this.
|
|
5791
|
+
tmp_0.y6j_1 = ArrayList_init_$Create$();
|
|
5792
|
+
launch(this.x6j_1, VOID, VOID, windowedByInterval$slambda$slambda_0(this.w6j_1, this.x6j_1, this.y6j_1, null));
|
|
5746
5793
|
this.e9_1 = 1;
|
|
5747
|
-
var tmp_1 = windowedByInterval$slambda$slambda_2(this.
|
|
5748
|
-
suspendResult = this.
|
|
5794
|
+
var tmp_1 = windowedByInterval$slambda$slambda_2(this.y6j_1, null);
|
|
5795
|
+
suspendResult = this.v6j_1.m17(new sam$kotlinx_coroutines_flow_FlowCollector$0_0(tmp_1), this);
|
|
5749
5796
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5750
5797
|
return suspendResult;
|
|
5751
5798
|
}
|
|
@@ -5753,7 +5800,7 @@
|
|
|
5753
5800
|
continue $sm;
|
|
5754
5801
|
case 1:
|
|
5755
5802
|
this.e9_1 = 2;
|
|
5756
|
-
suspendResult = this.
|
|
5803
|
+
suspendResult = this.x6j_1.v15(toList(this.y6j_1), this);
|
|
5757
5804
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5758
5805
|
return suspendResult;
|
|
5759
5806
|
}
|
|
@@ -5775,21 +5822,21 @@
|
|
|
5775
5822
|
}
|
|
5776
5823
|
while (true);
|
|
5777
5824
|
};
|
|
5778
|
-
protoOf(windowedByInterval$slambda).
|
|
5779
|
-
var i = new windowedByInterval$slambda(this.
|
|
5780
|
-
i.
|
|
5825
|
+
protoOf(windowedByInterval$slambda).a6k = function ($this$channelFlow, completion) {
|
|
5826
|
+
var i = new windowedByInterval$slambda(this.v6j_1, this.w6j_1, completion);
|
|
5827
|
+
i.x6j_1 = $this$channelFlow;
|
|
5781
5828
|
return i;
|
|
5782
5829
|
};
|
|
5783
5830
|
function windowedByInterval$slambda_0($this_windowedByInterval, $intervalMillis, resultContinuation) {
|
|
5784
5831
|
var i = new windowedByInterval$slambda($this_windowedByInterval, $intervalMillis, resultContinuation);
|
|
5785
5832
|
var l = function ($this$channelFlow, $completion) {
|
|
5786
|
-
return i.
|
|
5833
|
+
return i.z6j($this$channelFlow, $completion);
|
|
5787
5834
|
};
|
|
5788
5835
|
l.$arity = 1;
|
|
5789
5836
|
return l;
|
|
5790
5837
|
}
|
|
5791
5838
|
function windowedByInterval$o$collect$slambda($$this$unsafeFlow, resultContinuation) {
|
|
5792
|
-
this.
|
|
5839
|
+
this.j6k_1 = $$this$unsafeFlow;
|
|
5793
5840
|
CoroutineImpl.call(this, resultContinuation);
|
|
5794
5841
|
}
|
|
5795
5842
|
protoOf(windowedByInterval$o$collect$slambda).t1e = function (value, $completion) {
|
|
@@ -5813,12 +5860,12 @@
|
|
|
5813
5860
|
continue $sm;
|
|
5814
5861
|
case 1:
|
|
5815
5862
|
var tmp_0 = this;
|
|
5816
|
-
tmp_0.
|
|
5863
|
+
tmp_0.m6k_1 = this.j6k_1;
|
|
5817
5864
|
var tmp_1 = this;
|
|
5818
|
-
tmp_1.
|
|
5819
|
-
if (!this.
|
|
5865
|
+
tmp_1.n6k_1 = this.k6k_1;
|
|
5866
|
+
if (!this.n6k_1.p()) {
|
|
5820
5867
|
this.e9_1 = 3;
|
|
5821
|
-
suspendResult = this.
|
|
5868
|
+
suspendResult = this.m6k_1.p18(this.n6k_1, this);
|
|
5822
5869
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5823
5870
|
return suspendResult;
|
|
5824
5871
|
}
|
|
@@ -5837,7 +5884,7 @@
|
|
|
5837
5884
|
this.e9_1 = 4;
|
|
5838
5885
|
continue $sm;
|
|
5839
5886
|
case 3:
|
|
5840
|
-
this.
|
|
5887
|
+
this.l6k_1 = suspendResult;
|
|
5841
5888
|
this.e9_1 = 4;
|
|
5842
5889
|
continue $sm;
|
|
5843
5890
|
case 4:
|
|
@@ -5857,8 +5904,8 @@
|
|
|
5857
5904
|
while (true);
|
|
5858
5905
|
};
|
|
5859
5906
|
protoOf(windowedByInterval$o$collect$slambda).u1e = function (value, completion) {
|
|
5860
|
-
var i = new windowedByInterval$o$collect$slambda(this.
|
|
5861
|
-
i.
|
|
5907
|
+
var i = new windowedByInterval$o$collect$slambda(this.j6k_1, completion);
|
|
5908
|
+
i.k6k_1 = value;
|
|
5862
5909
|
return i;
|
|
5863
5910
|
};
|
|
5864
5911
|
function windowedByInterval$o$collect$slambda_0($$this$unsafeFlow, resultContinuation) {
|
|
@@ -5871,8 +5918,8 @@
|
|
|
5871
5918
|
}
|
|
5872
5919
|
function $collectCOROUTINE$3(_this__u8e3s4, collector, resultContinuation) {
|
|
5873
5920
|
CoroutineImpl.call(this, resultContinuation);
|
|
5874
|
-
this.
|
|
5875
|
-
this.
|
|
5921
|
+
this.w6k_1 = _this__u8e3s4;
|
|
5922
|
+
this.x6k_1 = collector;
|
|
5876
5923
|
}
|
|
5877
5924
|
protoOf($collectCOROUTINE$3).m9 = function () {
|
|
5878
5925
|
var suspendResult = this.g9_1;
|
|
@@ -5883,10 +5930,10 @@
|
|
|
5883
5930
|
case 0:
|
|
5884
5931
|
this.f9_1 = 2;
|
|
5885
5932
|
var tmp_0 = this;
|
|
5886
|
-
tmp_0.
|
|
5933
|
+
tmp_0.y6k_1 = this.x6k_1;
|
|
5887
5934
|
this.e9_1 = 1;
|
|
5888
|
-
var tmp_1 = windowedByInterval$o$collect$slambda_0(this.
|
|
5889
|
-
suspendResult = this.
|
|
5935
|
+
var tmp_1 = windowedByInterval$o$collect$slambda_0(this.y6k_1, null);
|
|
5936
|
+
suspendResult = this.w6k_1.z6k_1.m17(new sam$kotlinx_coroutines_flow_FlowCollector$0_0(tmp_1), this);
|
|
5890
5937
|
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
5891
5938
|
return suspendResult;
|
|
5892
5939
|
}
|
|
@@ -5909,7 +5956,7 @@
|
|
|
5909
5956
|
while (true);
|
|
5910
5957
|
};
|
|
5911
5958
|
function _no_name_provided__qut3iv_2($this) {
|
|
5912
|
-
this.
|
|
5959
|
+
this.z6k_1 = $this;
|
|
5913
5960
|
}
|
|
5914
5961
|
protoOf(_no_name_provided__qut3iv_2).q18 = function (collector, $completion) {
|
|
5915
5962
|
var tmp = new $collectCOROUTINE$3(this, collector, $completion);
|
|
@@ -6174,7 +6221,7 @@
|
|
|
6174
6221
|
};
|
|
6175
6222
|
}
|
|
6176
6223
|
function _get_$cachedSerializer__te6jhj_9($this) {
|
|
6177
|
-
return $this.
|
|
6224
|
+
return $this.a6l_1.u();
|
|
6178
6225
|
}
|
|
6179
6226
|
function LogType$Companion$_anonymous__d4fjnz() {
|
|
6180
6227
|
return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
|
|
@@ -6214,7 +6261,7 @@
|
|
|
6214
6261
|
Companion_instance_19 = this;
|
|
6215
6262
|
var tmp = this;
|
|
6216
6263
|
var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
|
|
6217
|
-
tmp.
|
|
6264
|
+
tmp.a6l_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
|
|
6218
6265
|
}
|
|
6219
6266
|
protoOf(Companion_17).j4t = function () {
|
|
6220
6267
|
return _get_$cachedSerializer__te6jhj_9(this);
|
|
@@ -6273,7 +6320,7 @@
|
|
|
6273
6320
|
// Inline function 'kotlin.arrayOf' call
|
|
6274
6321
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6275
6322
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6276
|
-
tmp.
|
|
6323
|
+
tmp.g6l_1 = [Companion_getInstance_19().j4t(), null, null, null, null];
|
|
6277
6324
|
}
|
|
6278
6325
|
protoOf(Companion_18).j4t = function () {
|
|
6279
6326
|
return $serializer_getInstance_7();
|
|
@@ -6292,12 +6339,12 @@
|
|
|
6292
6339
|
tmp0_serialDesc.g4c('tag', false);
|
|
6293
6340
|
tmp0_serialDesc.g4c('message', false);
|
|
6294
6341
|
tmp0_serialDesc.g4c('stackTrace', false);
|
|
6295
|
-
this.
|
|
6342
|
+
this.h6l_1 = tmp0_serialDesc;
|
|
6296
6343
|
}
|
|
6297
|
-
protoOf($serializer_7).
|
|
6298
|
-
var tmp0_desc = this.
|
|
6344
|
+
protoOf($serializer_7).i6l = function (encoder, value) {
|
|
6345
|
+
var tmp0_desc = this.h6l_1;
|
|
6299
6346
|
var tmp1_output = encoder.s44(tmp0_desc);
|
|
6300
|
-
var tmp2_cached = Companion_getInstance_20().
|
|
6347
|
+
var tmp2_cached = Companion_getInstance_20().g6l_1;
|
|
6301
6348
|
tmp1_output.i46(tmp0_desc, 0, tmp2_cached[0], value.type);
|
|
6302
6349
|
tmp1_output.k46(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
|
|
6303
6350
|
tmp1_output.k46(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
|
|
@@ -6306,10 +6353,10 @@
|
|
|
6306
6353
|
tmp1_output.t44(tmp0_desc);
|
|
6307
6354
|
};
|
|
6308
6355
|
protoOf($serializer_7).f41 = function (encoder, value) {
|
|
6309
|
-
return this.
|
|
6356
|
+
return this.i6l(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
|
|
6310
6357
|
};
|
|
6311
6358
|
protoOf($serializer_7).g41 = function (decoder) {
|
|
6312
|
-
var tmp0_desc = this.
|
|
6359
|
+
var tmp0_desc = this.h6l_1;
|
|
6313
6360
|
var tmp1_flag = true;
|
|
6314
6361
|
var tmp2_index = 0;
|
|
6315
6362
|
var tmp3_bitMask0 = 0;
|
|
@@ -6319,7 +6366,7 @@
|
|
|
6319
6366
|
var tmp7_local3 = null;
|
|
6320
6367
|
var tmp8_local4 = null;
|
|
6321
6368
|
var tmp9_input = decoder.s44(tmp0_desc);
|
|
6322
|
-
var tmp10_cached = Companion_getInstance_20().
|
|
6369
|
+
var tmp10_cached = Companion_getInstance_20().g6l_1;
|
|
6323
6370
|
if (tmp9_input.h45()) {
|
|
6324
6371
|
tmp4_local0 = tmp9_input.e45(tmp0_desc, 0, tmp10_cached[0], tmp4_local0);
|
|
6325
6372
|
tmp3_bitMask0 = tmp3_bitMask0 | 1;
|
|
@@ -6366,13 +6413,13 @@
|
|
|
6366
6413
|
return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
|
|
6367
6414
|
};
|
|
6368
6415
|
protoOf($serializer_7).e41 = function () {
|
|
6369
|
-
return this.
|
|
6416
|
+
return this.h6l_1;
|
|
6370
6417
|
};
|
|
6371
6418
|
protoOf($serializer_7).v4c = function () {
|
|
6372
6419
|
// Inline function 'kotlin.arrayOf' call
|
|
6373
6420
|
// Inline function 'kotlin.js.unsafeCast' call
|
|
6374
6421
|
// Inline function 'kotlin.js.asDynamic' call
|
|
6375
|
-
return [Companion_getInstance_20().
|
|
6422
|
+
return [Companion_getInstance_20().g6l_1[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
|
|
6376
6423
|
};
|
|
6377
6424
|
var $serializer_instance_7;
|
|
6378
6425
|
function $serializer_getInstance_7() {
|
|
@@ -6382,7 +6429,7 @@
|
|
|
6382
6429
|
}
|
|
6383
6430
|
function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
|
|
6384
6431
|
if (!(31 === (31 & seen0))) {
|
|
6385
|
-
throwMissingFieldException(seen0, 31, $serializer_getInstance_7().
|
|
6432
|
+
throwMissingFieldException(seen0, 31, $serializer_getInstance_7().h6l_1);
|
|
6386
6433
|
}
|
|
6387
6434
|
$this.type = type;
|
|
6388
6435
|
$this.key = key;
|
|
@@ -6414,7 +6461,7 @@
|
|
|
6414
6461
|
protoOf(LoggerOutputDataDto).u9 = function () {
|
|
6415
6462
|
return this.message;
|
|
6416
6463
|
};
|
|
6417
|
-
protoOf(LoggerOutputDataDto).
|
|
6464
|
+
protoOf(LoggerOutputDataDto).j6l = function () {
|
|
6418
6465
|
return this.stackTrace;
|
|
6419
6466
|
};
|
|
6420
6467
|
protoOf(LoggerOutputDataDto).toMessageLog = function () {
|
|
@@ -6476,10 +6523,10 @@
|
|
|
6476
6523
|
protoOf(LoggerOutputDataDto).j5j = function () {
|
|
6477
6524
|
return this.message;
|
|
6478
6525
|
};
|
|
6479
|
-
protoOf(LoggerOutputDataDto).
|
|
6526
|
+
protoOf(LoggerOutputDataDto).l67 = function () {
|
|
6480
6527
|
return this.stackTrace;
|
|
6481
6528
|
};
|
|
6482
|
-
protoOf(LoggerOutputDataDto).
|
|
6529
|
+
protoOf(LoggerOutputDataDto).k6l = function (type, key, tag, message, stackTrace) {
|
|
6483
6530
|
return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
|
|
6484
6531
|
};
|
|
6485
6532
|
protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
|
|
@@ -6488,7 +6535,7 @@
|
|
|
6488
6535
|
tag = tag === VOID ? this.tag : tag;
|
|
6489
6536
|
message = message === VOID ? this.message : message;
|
|
6490
6537
|
stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
|
|
6491
|
-
return this.
|
|
6538
|
+
return this.k6l(type, key, tag, message, stackTrace);
|
|
6492
6539
|
};
|
|
6493
6540
|
protoOf(LoggerOutputDataDto).toString = function () {
|
|
6494
6541
|
return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';
|
|
@@ -6520,19 +6567,19 @@
|
|
|
6520
6567
|
return true;
|
|
6521
6568
|
};
|
|
6522
6569
|
function checkInitialised($this) {
|
|
6523
|
-
if ($this.
|
|
6570
|
+
if ($this.l6l_1.equals(AppEnvironmentValue_UNDEFINED_getInstance())) {
|
|
6524
6571
|
Logger_getInstance().vn(VOID, IllegalStateException_init_$Create$('AppEnvironment not initialised'));
|
|
6525
6572
|
}
|
|
6526
6573
|
}
|
|
6527
6574
|
function AppEnvironment() {
|
|
6528
6575
|
AppEnvironment_instance = this;
|
|
6529
|
-
this.
|
|
6576
|
+
this.l6l_1 = AppEnvironmentValue_UNDEFINED_getInstance();
|
|
6530
6577
|
}
|
|
6531
|
-
protoOf(AppEnvironment).
|
|
6532
|
-
this.
|
|
6578
|
+
protoOf(AppEnvironment).m6l = function (value) {
|
|
6579
|
+
this.l6l_1 = value;
|
|
6533
6580
|
};
|
|
6534
|
-
protoOf(AppEnvironment).
|
|
6535
|
-
var tmp = this.
|
|
6581
|
+
protoOf(AppEnvironment).n6l = function () {
|
|
6582
|
+
var tmp = this.l6l_1;
|
|
6536
6583
|
// Inline function 'kotlin.also' call
|
|
6537
6584
|
var this_0 = AppEnvironmentValue_PRODUCTION_getInstance();
|
|
6538
6585
|
// Inline function 'kotlin.contracts.contract' call
|
|
@@ -6640,16 +6687,16 @@
|
|
|
6640
6687
|
defineProp(protoOf(PlayerIndex), 'playerId', function () {
|
|
6641
6688
|
return this.q66();
|
|
6642
6689
|
});
|
|
6643
|
-
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).
|
|
6644
|
-
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).
|
|
6645
|
-
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).
|
|
6646
|
-
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).
|
|
6647
|
-
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).
|
|
6648
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).
|
|
6649
|
-
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).
|
|
6650
|
-
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).
|
|
6651
|
-
defineProp(protoOf(PlayerConnectionState), 'isClientDisconnectReason', protoOf(PlayerConnectionState).
|
|
6652
|
-
defineProp(protoOf(PlayerConnectionState), 'isServerDisconnectReason', protoOf(PlayerConnectionState).
|
|
6690
|
+
defineProp(protoOf(PlayerConnectionState), 'isLive', protoOf(PlayerConnectionState).y68);
|
|
6691
|
+
defineProp(protoOf(PlayerConnectionState), 'isTimeOut', protoOf(PlayerConnectionState).z68);
|
|
6692
|
+
defineProp(protoOf(PlayerConnectionState), 'isLostConnection', protoOf(PlayerConnectionState).a69);
|
|
6693
|
+
defineProp(protoOf(PlayerConnectionState), 'isLeft', protoOf(PlayerConnectionState).b69);
|
|
6694
|
+
defineProp(protoOf(PlayerConnectionState), 'isDeleted', protoOf(PlayerConnectionState).c69);
|
|
6695
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnecting', protoOf(PlayerConnectionState).d69);
|
|
6696
|
+
defineProp(protoOf(PlayerConnectionState), 'isNotAlive', protoOf(PlayerConnectionState).e69);
|
|
6697
|
+
defineProp(protoOf(PlayerConnectionState), 'isDisconnected', protoOf(PlayerConnectionState).f69);
|
|
6698
|
+
defineProp(protoOf(PlayerConnectionState), 'isClientDisconnectReason', protoOf(PlayerConnectionState).g69);
|
|
6699
|
+
defineProp(protoOf(PlayerConnectionState), 'isServerDisconnectReason', protoOf(PlayerConnectionState).h69);
|
|
6653
6700
|
defineProp(protoOf(PlayerConnectionState), 'name', protoOf(PlayerConnectionState).o2);
|
|
6654
6701
|
defineProp(protoOf(PlayerConnectionState), 'ordinal', protoOf(PlayerConnectionState).p2);
|
|
6655
6702
|
protoOf($serializer_0).w4c = typeParametersSerializers;
|
|
@@ -6659,53 +6706,53 @@
|
|
|
6659
6706
|
protoOf($serializer_4).w4c = typeParametersSerializers;
|
|
6660
6707
|
protoOf($serializer_5).w4c = typeParametersSerializers;
|
|
6661
6708
|
protoOf($serializer_6).w4c = typeParametersSerializers;
|
|
6662
|
-
protoOf(AsyncProviderImpl).
|
|
6663
|
-
protoOf(AsyncProviderImpl).
|
|
6664
|
-
protoOf(AsyncProviderImpl).
|
|
6665
|
-
protoOf(TimerAction).
|
|
6709
|
+
protoOf(AsyncProviderImpl).n6c = launchMain$default;
|
|
6710
|
+
protoOf(AsyncProviderImpl).j6c = launchDefault$default;
|
|
6711
|
+
protoOf(AsyncProviderImpl).l6c = launchDefaultWithLock$default;
|
|
6712
|
+
protoOf(TimerAction).a6f = get_actionTag;
|
|
6666
6713
|
defineProp(protoOf(TimerAction), 'actionTag', function () {
|
|
6667
|
-
return this.
|
|
6714
|
+
return this.a6f();
|
|
6668
6715
|
});
|
|
6669
6716
|
protoOf(StopTimerAction).notValidateWhenFinishing = notValidateWhenFinishing;
|
|
6670
6717
|
protoOf(StopTimerAction).notValidateWhenFinished = notValidateWhenFinished;
|
|
6671
6718
|
defineProp(protoOf(StopTimerAction), 'actionTag', function () {
|
|
6672
|
-
return this.
|
|
6719
|
+
return this.a6f();
|
|
6673
6720
|
});
|
|
6674
6721
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
6675
|
-
return this.
|
|
6722
|
+
return this.a6f();
|
|
6676
6723
|
});
|
|
6677
6724
|
defineProp(protoOf(TimerTickAction), 'actionTag', function () {
|
|
6678
|
-
return this.
|
|
6725
|
+
return this.a6f();
|
|
6679
6726
|
});
|
|
6680
6727
|
defineProp(protoOf(createStore$2), 'store', function () {
|
|
6681
|
-
return this.
|
|
6728
|
+
return this.i6i();
|
|
6682
6729
|
});
|
|
6683
6730
|
defineProp(protoOf(createStore$2), 'state', function () {
|
|
6684
|
-
return this.
|
|
6731
|
+
return this.p67();
|
|
6685
6732
|
});
|
|
6686
6733
|
defineProp(protoOf(createStore$2), 'dispatch', function () {
|
|
6687
|
-
return this.
|
|
6734
|
+
return this.k6i();
|
|
6688
6735
|
}, function (value) {
|
|
6689
|
-
this.
|
|
6736
|
+
this.j6i(value);
|
|
6690
6737
|
});
|
|
6691
6738
|
defineProp(protoOf(createStore$2), 'replaceReducer', function () {
|
|
6692
|
-
return this.
|
|
6739
|
+
return this.l6i();
|
|
6693
6740
|
});
|
|
6694
6741
|
defineProp(protoOf(createStore$2), 'observe', function () {
|
|
6695
|
-
return this.
|
|
6742
|
+
return this.m6i();
|
|
6696
6743
|
});
|
|
6697
|
-
protoOf(ActionTypes).
|
|
6744
|
+
protoOf(ActionTypes).a6f = get_actionTag;
|
|
6698
6745
|
defineProp(protoOf(ActionTypes), 'actionTag', function () {
|
|
6699
|
-
return this.
|
|
6746
|
+
return this.a6f();
|
|
6700
6747
|
});
|
|
6701
6748
|
defineProp(protoOf(INIT), 'actionTag', function () {
|
|
6702
|
-
return this.
|
|
6749
|
+
return this.a6f();
|
|
6703
6750
|
});
|
|
6704
6751
|
defineProp(protoOf(REPLACE), 'actionTag', function () {
|
|
6705
|
-
return this.
|
|
6752
|
+
return this.a6f();
|
|
6706
6753
|
});
|
|
6707
|
-
protoOf(middleware$1).
|
|
6708
|
-
protoOf(combineReducers$1).
|
|
6754
|
+
protoOf(middleware$1).j6f = canHandle;
|
|
6755
|
+
protoOf(combineReducers$1).j6f = canHandle_0;
|
|
6709
6756
|
defineProp(protoOf(LogType), 'name', protoOf(LogType).o2);
|
|
6710
6757
|
defineProp(protoOf(LogType), 'ordinal', protoOf(LogType).p2);
|
|
6711
6758
|
protoOf($serializer_7).w4c = typeParametersSerializers;
|