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