raspberry_games_engine_helpers 1.8.262 → 1.8.266

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.
@@ -85,6 +85,7 @@
85
85
  var mapCapacity = kotlin_kotlin.$_$.x6;
86
86
  var coerceAtLeast = kotlin_kotlin.$_$.x9;
87
87
  var LinkedHashMap_init_$Create$ = kotlin_kotlin.$_$.t;
88
+ var ensureNotNull = kotlin_kotlin.$_$.yc;
88
89
  var BooleanSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.o;
89
90
  var FloatSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.q;
90
91
  var ArrayListSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.t1;
@@ -195,7 +196,7 @@
195
196
  tmp = types;
196
197
  }
197
198
  types = tmp;
198
- return this.k2b(types);
199
+ return this.n2b(types);
199
200
  }
200
201
  initMetadataForInterface(ObservableLoggerOutput, 'ObservableLoggerOutput', VOID, VOID, [LoggerOutput, LoggerEnabledTrigger]);
201
202
  initMetadataForCompanion(Companion_17);
@@ -203,7 +204,7 @@
203
204
  initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_7});
204
205
  //endregion
205
206
  function GameEngineConfig() {
206
- this.version = '1.8.262';
207
+ this.version = '1.8.266';
207
208
  }
208
209
  protoOf(GameEngineConfig).e25 = function () {
209
210
  return this.version;
@@ -2456,6 +2457,12 @@
2456
2457
  }
2457
2458
  }
2458
2459
  function mapToDto_8(_this__u8e3s4) {
2460
+ var tmp0_playerId = _this__u8e3s4.w26_1;
2461
+ var tmp1_uid = _this__u8e3s4.w26_1;
2462
+ var tmp2_nickname = _this__u8e3s4.name;
2463
+ var tmp3_name = _this__u8e3s4.name;
2464
+ var tmp4_photo = _this__u8e3s4.avatarUrl;
2465
+ var tmp5_avatarUrl = _this__u8e3s4.avatarUrl;
2459
2466
  // Inline function 'kotlin.takeIf' call
2460
2467
  var this_0 = _this__u8e3s4.isBot;
2461
2468
  // Inline function 'kotlin.contracts.contract' call
@@ -2466,12 +2473,19 @@
2466
2473
  } else {
2467
2474
  tmp = null;
2468
2475
  }
2469
- var tmp$ret$1 = tmp;
2470
- return new GameUserInfoDto(_this__u8e3s4.w26_1, _this__u8e3s4.name, _this__u8e3s4.avatarUrl, tmp$ret$1, _this__u8e3s4.initialLuckyFactor);
2476
+ var tmp6_isBot = tmp;
2477
+ var tmp7_initialLuckyFactor = _this__u8e3s4.initialLuckyFactor;
2478
+ return new GameUserInfoDto(tmp0_playerId, tmp1_uid, tmp3_name, tmp2_nickname, tmp5_avatarUrl, tmp4_photo, tmp6_isBot, tmp7_initialLuckyFactor);
2471
2479
  }
2472
2480
  function mapFromDto_8(_this__u8e3s4) {
2473
- var tmp0_elvis_lhs = _this__u8e3s4.r29_1;
2474
- return new GameUserInfo(_this__u8e3s4.o29_1, _this__u8e3s4.p29_1, _this__u8e3s4.q29_1, tmp0_elvis_lhs == null ? false : tmp0_elvis_lhs, _this__u8e3s4.s29_1);
2481
+ var tmp0_elvis_lhs = _this__u8e3s4.o29_1;
2482
+ var tmp = tmp0_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.p29_1) : tmp0_elvis_lhs;
2483
+ var tmp1_elvis_lhs = _this__u8e3s4.q29_1;
2484
+ var tmp_0 = tmp1_elvis_lhs == null ? ensureNotNull(_this__u8e3s4.r29_1) : tmp1_elvis_lhs;
2485
+ var tmp2_elvis_lhs = _this__u8e3s4.s29_1;
2486
+ var tmp_1 = tmp2_elvis_lhs == null ? _this__u8e3s4.t29_1 : tmp2_elvis_lhs;
2487
+ var tmp3_elvis_lhs = _this__u8e3s4.u29_1;
2488
+ return new GameUserInfo(tmp, tmp_0, tmp_1, tmp3_elvis_lhs == null ? false : tmp3_elvis_lhs, _this__u8e3s4.v29_1);
2475
2489
  }
2476
2490
  function Companion_14() {
2477
2491
  }
@@ -2481,35 +2495,47 @@
2481
2495
  }
2482
2496
  function $serializer_5() {
2483
2497
  $serializer_instance_5 = this;
2484
- var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this, 5);
2485
- tmp0_serialDesc.xu('playerId', false);
2486
- tmp0_serialDesc.xu('name', false);
2498
+ var tmp0_serialDesc = new PluginGeneratedSerialDescriptor('com.logic.data.models.serializable.player.GameUserInfoDto', this, 8);
2499
+ tmp0_serialDesc.xu('playerId', true);
2500
+ tmp0_serialDesc.xu('uid', true);
2501
+ tmp0_serialDesc.xu('name', true);
2502
+ tmp0_serialDesc.xu('nickname', true);
2487
2503
  tmp0_serialDesc.xu('avatarUrl', true);
2488
- tmp0_serialDesc.xu('isBot', true);
2489
- tmp0_serialDesc.xu('initialLuckyFactor', true);
2490
- this.t29_1 = tmp0_serialDesc;
2504
+ tmp0_serialDesc.xu('photo', true);
2505
+ tmp0_serialDesc.xu('isBot', false);
2506
+ tmp0_serialDesc.xu('initialLuckyFactor', false);
2507
+ this.w29_1 = tmp0_serialDesc;
2491
2508
  }
2492
- protoOf($serializer_5).u29 = function (encoder, value) {
2493
- var tmp0_desc = this.t29_1;
2509
+ protoOf($serializer_5).x29 = function (encoder, value) {
2510
+ var tmp0_desc = this.w29_1;
2494
2511
  var tmp1_output = encoder.hn(tmp0_desc);
2495
- tmp1_output.wo(tmp0_desc, 0, value.o29_1);
2496
- tmp1_output.wo(tmp0_desc, 1, value.p29_1);
2512
+ if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.o29_1 == null)) {
2513
+ tmp1_output.ap(tmp0_desc, 0, StringSerializer_getInstance(), value.o29_1);
2514
+ }
2515
+ if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.p29_1 == null)) {
2516
+ tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.p29_1);
2517
+ }
2497
2518
  if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.q29_1 == null)) {
2498
2519
  tmp1_output.ap(tmp0_desc, 2, StringSerializer_getInstance(), value.q29_1);
2499
2520
  }
2500
2521
  if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.r29_1 == null)) {
2501
- tmp1_output.ap(tmp0_desc, 3, BooleanSerializer_getInstance(), value.r29_1);
2522
+ tmp1_output.ap(tmp0_desc, 3, StringSerializer_getInstance(), value.r29_1);
2502
2523
  }
2503
2524
  if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.s29_1 == null)) {
2504
- tmp1_output.ap(tmp0_desc, 4, FloatSerializer_getInstance(), value.s29_1);
2525
+ tmp1_output.ap(tmp0_desc, 4, StringSerializer_getInstance(), value.s29_1);
2505
2526
  }
2527
+ if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.t29_1 == null)) {
2528
+ tmp1_output.ap(tmp0_desc, 5, StringSerializer_getInstance(), value.t29_1);
2529
+ }
2530
+ tmp1_output.ap(tmp0_desc, 6, BooleanSerializer_getInstance(), value.u29_1);
2531
+ tmp1_output.ap(tmp0_desc, 7, FloatSerializer_getInstance(), value.v29_1);
2506
2532
  tmp1_output.in(tmp0_desc);
2507
2533
  };
2508
2534
  protoOf($serializer_5).zj = function (encoder, value) {
2509
- return this.u29(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
2535
+ return this.x29(encoder, value instanceof GameUserInfoDto ? value : THROW_CCE());
2510
2536
  };
2511
2537
  protoOf($serializer_5).ak = function (decoder) {
2512
- var tmp0_desc = this.t29_1;
2538
+ var tmp0_desc = this.w29_1;
2513
2539
  var tmp1_flag = true;
2514
2540
  var tmp2_index = 0;
2515
2541
  var tmp3_bitMask0 = 0;
@@ -2518,60 +2544,81 @@
2518
2544
  var tmp6_local2 = null;
2519
2545
  var tmp7_local3 = null;
2520
2546
  var tmp8_local4 = null;
2521
- var tmp9_input = decoder.hn(tmp0_desc);
2522
- if (tmp9_input.xn()) {
2523
- tmp4_local0 = tmp9_input.rn(tmp0_desc, 0);
2547
+ var tmp9_local5 = null;
2548
+ var tmp10_local6 = null;
2549
+ var tmp11_local7 = null;
2550
+ var tmp12_input = decoder.hn(tmp0_desc);
2551
+ if (tmp12_input.xn()) {
2552
+ tmp4_local0 = tmp12_input.vn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
2524
2553
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
2525
- tmp5_local1 = tmp9_input.rn(tmp0_desc, 1);
2554
+ tmp5_local1 = tmp12_input.vn(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
2526
2555
  tmp3_bitMask0 = tmp3_bitMask0 | 2;
2527
- tmp6_local2 = tmp9_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
2556
+ tmp6_local2 = tmp12_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
2528
2557
  tmp3_bitMask0 = tmp3_bitMask0 | 4;
2529
- tmp7_local3 = tmp9_input.vn(tmp0_desc, 3, BooleanSerializer_getInstance(), tmp7_local3);
2558
+ tmp7_local3 = tmp12_input.vn(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
2530
2559
  tmp3_bitMask0 = tmp3_bitMask0 | 8;
2531
- tmp8_local4 = tmp9_input.vn(tmp0_desc, 4, FloatSerializer_getInstance(), tmp8_local4);
2560
+ tmp8_local4 = tmp12_input.vn(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
2532
2561
  tmp3_bitMask0 = tmp3_bitMask0 | 16;
2562
+ tmp9_local5 = tmp12_input.vn(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
2563
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2564
+ tmp10_local6 = tmp12_input.vn(tmp0_desc, 6, BooleanSerializer_getInstance(), tmp10_local6);
2565
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2566
+ tmp11_local7 = tmp12_input.vn(tmp0_desc, 7, FloatSerializer_getInstance(), tmp11_local7);
2567
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2533
2568
  } else
2534
2569
  while (tmp1_flag) {
2535
- tmp2_index = tmp9_input.yn(tmp0_desc);
2570
+ tmp2_index = tmp12_input.yn(tmp0_desc);
2536
2571
  switch (tmp2_index) {
2537
2572
  case -1:
2538
2573
  tmp1_flag = false;
2539
2574
  break;
2540
2575
  case 0:
2541
- tmp4_local0 = tmp9_input.rn(tmp0_desc, 0);
2576
+ tmp4_local0 = tmp12_input.vn(tmp0_desc, 0, StringSerializer_getInstance(), tmp4_local0);
2542
2577
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
2543
2578
  break;
2544
2579
  case 1:
2545
- tmp5_local1 = tmp9_input.rn(tmp0_desc, 1);
2580
+ tmp5_local1 = tmp12_input.vn(tmp0_desc, 1, StringSerializer_getInstance(), tmp5_local1);
2546
2581
  tmp3_bitMask0 = tmp3_bitMask0 | 2;
2547
2582
  break;
2548
2583
  case 2:
2549
- tmp6_local2 = tmp9_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
2584
+ tmp6_local2 = tmp12_input.vn(tmp0_desc, 2, StringSerializer_getInstance(), tmp6_local2);
2550
2585
  tmp3_bitMask0 = tmp3_bitMask0 | 4;
2551
2586
  break;
2552
2587
  case 3:
2553
- tmp7_local3 = tmp9_input.vn(tmp0_desc, 3, BooleanSerializer_getInstance(), tmp7_local3);
2588
+ tmp7_local3 = tmp12_input.vn(tmp0_desc, 3, StringSerializer_getInstance(), tmp7_local3);
2554
2589
  tmp3_bitMask0 = tmp3_bitMask0 | 8;
2555
2590
  break;
2556
2591
  case 4:
2557
- tmp8_local4 = tmp9_input.vn(tmp0_desc, 4, FloatSerializer_getInstance(), tmp8_local4);
2592
+ tmp8_local4 = tmp12_input.vn(tmp0_desc, 4, StringSerializer_getInstance(), tmp8_local4);
2558
2593
  tmp3_bitMask0 = tmp3_bitMask0 | 16;
2559
2594
  break;
2595
+ case 5:
2596
+ tmp9_local5 = tmp12_input.vn(tmp0_desc, 5, StringSerializer_getInstance(), tmp9_local5);
2597
+ tmp3_bitMask0 = tmp3_bitMask0 | 32;
2598
+ break;
2599
+ case 6:
2600
+ tmp10_local6 = tmp12_input.vn(tmp0_desc, 6, BooleanSerializer_getInstance(), tmp10_local6);
2601
+ tmp3_bitMask0 = tmp3_bitMask0 | 64;
2602
+ break;
2603
+ case 7:
2604
+ tmp11_local7 = tmp12_input.vn(tmp0_desc, 7, FloatSerializer_getInstance(), tmp11_local7);
2605
+ tmp3_bitMask0 = tmp3_bitMask0 | 128;
2606
+ break;
2560
2607
  default:
2561
2608
  throw UnknownFieldException_init_$Create$(tmp2_index);
2562
2609
  }
2563
2610
  }
2564
- tmp9_input.in(tmp0_desc);
2565
- return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
2611
+ tmp12_input.in(tmp0_desc);
2612
+ return GameUserInfoDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, tmp9_local5, tmp10_local6, tmp11_local7, null);
2566
2613
  };
2567
2614
  protoOf($serializer_5).yj = function () {
2568
- return this.t29_1;
2615
+ return this.w29_1;
2569
2616
  };
2570
2617
  protoOf($serializer_5).mv = function () {
2571
2618
  // Inline function 'kotlin.arrayOf' call
2572
2619
  // Inline function 'kotlin.js.unsafeCast' call
2573
2620
  // Inline function 'kotlin.js.asDynamic' call
2574
- return [StringSerializer_getInstance(), StringSerializer_getInstance(), get_nullable(StringSerializer_getInstance()), get_nullable(BooleanSerializer_getInstance()), get_nullable(FloatSerializer_getInstance())];
2621
+ 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())];
2575
2622
  };
2576
2623
  var $serializer_instance_5;
2577
2624
  function $serializer_getInstance_5() {
@@ -2579,62 +2626,86 @@
2579
2626
  new $serializer_5();
2580
2627
  return $serializer_instance_5;
2581
2628
  }
2582
- function GameUserInfoDto_init_$Init$(seen0, playerId, name, avatarUrl, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
2583
- if (!(3 === (3 & seen0))) {
2584
- throwMissingFieldException(seen0, 3, $serializer_getInstance_5().t29_1);
2629
+ function GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, $this) {
2630
+ if (!(192 === (192 & seen0))) {
2631
+ throwMissingFieldException(seen0, 192, $serializer_getInstance_5().w29_1);
2585
2632
  }
2586
- $this.o29_1 = playerId;
2587
- $this.p29_1 = name;
2633
+ if (0 === (seen0 & 1))
2634
+ $this.o29_1 = null;
2635
+ else
2636
+ $this.o29_1 = playerId;
2637
+ if (0 === (seen0 & 2))
2638
+ $this.p29_1 = null;
2639
+ else
2640
+ $this.p29_1 = uid;
2588
2641
  if (0 === (seen0 & 4))
2589
2642
  $this.q29_1 = null;
2590
2643
  else
2591
- $this.q29_1 = avatarUrl;
2644
+ $this.q29_1 = name;
2592
2645
  if (0 === (seen0 & 8))
2593
2646
  $this.r29_1 = null;
2594
2647
  else
2595
- $this.r29_1 = isBot;
2648
+ $this.r29_1 = nickname;
2596
2649
  if (0 === (seen0 & 16))
2597
2650
  $this.s29_1 = null;
2598
2651
  else
2599
- $this.s29_1 = initialLuckyFactor;
2652
+ $this.s29_1 = avatarUrl;
2653
+ if (0 === (seen0 & 32))
2654
+ $this.t29_1 = null;
2655
+ else
2656
+ $this.t29_1 = photo;
2657
+ $this.u29_1 = isBot;
2658
+ $this.v29_1 = initialLuckyFactor;
2600
2659
  return $this;
2601
2660
  }
2602
- function GameUserInfoDto_init_$Create$(seen0, playerId, name, avatarUrl, isBot, initialLuckyFactor, serializationConstructorMarker) {
2603
- return GameUserInfoDto_init_$Init$(seen0, playerId, name, avatarUrl, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
2661
+ function GameUserInfoDto_init_$Create$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker) {
2662
+ return GameUserInfoDto_init_$Init$(seen0, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, serializationConstructorMarker, objectCreate(protoOf(GameUserInfoDto)));
2604
2663
  }
2605
- function GameUserInfoDto(playerId, name, avatarUrl, isBot, initialLuckyFactor) {
2664
+ function GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor) {
2665
+ playerId = playerId === VOID ? null : playerId;
2666
+ uid = uid === VOID ? null : uid;
2667
+ name = name === VOID ? null : name;
2668
+ nickname = nickname === VOID ? null : nickname;
2606
2669
  avatarUrl = avatarUrl === VOID ? null : avatarUrl;
2607
- isBot = isBot === VOID ? null : isBot;
2608
- initialLuckyFactor = initialLuckyFactor === VOID ? null : initialLuckyFactor;
2670
+ photo = photo === VOID ? null : photo;
2609
2671
  this.o29_1 = playerId;
2610
- this.p29_1 = name;
2611
- this.q29_1 = avatarUrl;
2612
- this.r29_1 = isBot;
2613
- this.s29_1 = initialLuckyFactor;
2672
+ this.p29_1 = uid;
2673
+ this.q29_1 = name;
2674
+ this.r29_1 = nickname;
2675
+ this.s29_1 = avatarUrl;
2676
+ this.t29_1 = photo;
2677
+ this.u29_1 = isBot;
2678
+ this.v29_1 = initialLuckyFactor;
2614
2679
  }
2615
- protoOf(GameUserInfoDto).v29 = function () {
2616
- return this.w29(VOID, VOID, VOID, null, null);
2680
+ protoOf(GameUserInfoDto).y29 = function () {
2681
+ return this.z29(VOID, VOID, VOID, VOID, VOID, VOID, null, null);
2617
2682
  };
2618
- protoOf(GameUserInfoDto).x29 = function (playerId, name, avatarUrl, isBot, initialLuckyFactor) {
2619
- return new GameUserInfoDto(playerId, name, avatarUrl, isBot, initialLuckyFactor);
2683
+ protoOf(GameUserInfoDto).a2a = function (playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor) {
2684
+ return new GameUserInfoDto(playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor);
2620
2685
  };
2621
- protoOf(GameUserInfoDto).w29 = function (playerId, name, avatarUrl, isBot, initialLuckyFactor, $super) {
2686
+ protoOf(GameUserInfoDto).z29 = function (playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor, $super) {
2622
2687
  playerId = playerId === VOID ? this.o29_1 : playerId;
2623
- name = name === VOID ? this.p29_1 : name;
2624
- avatarUrl = avatarUrl === VOID ? this.q29_1 : avatarUrl;
2625
- isBot = isBot === VOID ? this.r29_1 : isBot;
2626
- initialLuckyFactor = initialLuckyFactor === VOID ? this.s29_1 : initialLuckyFactor;
2627
- return $super === VOID ? this.x29(playerId, name, avatarUrl, isBot, initialLuckyFactor) : $super.x29.call(this, playerId, name, avatarUrl, isBot, initialLuckyFactor);
2688
+ uid = uid === VOID ? this.p29_1 : uid;
2689
+ name = name === VOID ? this.q29_1 : name;
2690
+ nickname = nickname === VOID ? this.r29_1 : nickname;
2691
+ avatarUrl = avatarUrl === VOID ? this.s29_1 : avatarUrl;
2692
+ photo = photo === VOID ? this.t29_1 : photo;
2693
+ isBot = isBot === VOID ? this.u29_1 : isBot;
2694
+ initialLuckyFactor = initialLuckyFactor === VOID ? this.v29_1 : initialLuckyFactor;
2695
+ return $super === VOID ? this.a2a(playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor) : $super.a2a.call(this, playerId, uid, name, nickname, avatarUrl, photo, isBot, initialLuckyFactor);
2628
2696
  };
2629
2697
  protoOf(GameUserInfoDto).toString = function () {
2630
- return 'GameUserInfoDto(playerId=' + this.o29_1 + ', name=' + this.p29_1 + ', avatarUrl=' + this.q29_1 + ', isBot=' + this.r29_1 + ', initialLuckyFactor=' + this.s29_1 + ')';
2698
+ return 'GameUserInfoDto(playerId=' + this.o29_1 + ', uid=' + this.p29_1 + ', name=' + this.q29_1 + ', nickname=' + this.r29_1 + ', avatarUrl=' + this.s29_1 + ', photo=' + this.t29_1 + ', isBot=' + this.u29_1 + ', initialLuckyFactor=' + this.v29_1 + ')';
2631
2699
  };
2632
2700
  protoOf(GameUserInfoDto).hashCode = function () {
2633
- var result = getStringHashCode(this.o29_1);
2634
- result = imul(result, 31) + getStringHashCode(this.p29_1) | 0;
2701
+ var result = this.o29_1 == null ? 0 : getStringHashCode(this.o29_1);
2702
+ result = imul(result, 31) + (this.p29_1 == null ? 0 : getStringHashCode(this.p29_1)) | 0;
2635
2703
  result = imul(result, 31) + (this.q29_1 == null ? 0 : getStringHashCode(this.q29_1)) | 0;
2636
- result = imul(result, 31) + (this.r29_1 == null ? 0 : getBooleanHashCode(this.r29_1)) | 0;
2637
- result = imul(result, 31) + (this.s29_1 == null ? 0 : getNumberHashCode(this.s29_1)) | 0;
2704
+ result = imul(result, 31) + (this.r29_1 == null ? 0 : getStringHashCode(this.r29_1)) | 0;
2705
+ result = imul(result, 31) + (this.s29_1 == null ? 0 : getStringHashCode(this.s29_1)) | 0;
2706
+ result = imul(result, 31) + (this.t29_1 == null ? 0 : getStringHashCode(this.t29_1)) | 0;
2707
+ result = imul(result, 31) + (this.u29_1 == null ? 0 : getBooleanHashCode(this.u29_1)) | 0;
2708
+ result = imul(result, 31) + (this.v29_1 == null ? 0 : getNumberHashCode(this.v29_1)) | 0;
2638
2709
  return result;
2639
2710
  };
2640
2711
  protoOf(GameUserInfoDto).equals = function (other) {
@@ -2643,15 +2714,21 @@
2643
2714
  if (!(other instanceof GameUserInfoDto))
2644
2715
  return false;
2645
2716
  var tmp0_other_with_cast = other instanceof GameUserInfoDto ? other : THROW_CCE();
2646
- if (!(this.o29_1 === tmp0_other_with_cast.o29_1))
2717
+ if (!(this.o29_1 == tmp0_other_with_cast.o29_1))
2647
2718
  return false;
2648
- if (!(this.p29_1 === tmp0_other_with_cast.p29_1))
2719
+ if (!(this.p29_1 == tmp0_other_with_cast.p29_1))
2649
2720
  return false;
2650
2721
  if (!(this.q29_1 == tmp0_other_with_cast.q29_1))
2651
2722
  return false;
2652
2723
  if (!(this.r29_1 == tmp0_other_with_cast.r29_1))
2653
2724
  return false;
2654
- if (!equals(this.s29_1, tmp0_other_with_cast.s29_1))
2725
+ if (!(this.s29_1 == tmp0_other_with_cast.s29_1))
2726
+ return false;
2727
+ if (!(this.t29_1 == tmp0_other_with_cast.t29_1))
2728
+ return false;
2729
+ if (!(this.u29_1 == tmp0_other_with_cast.u29_1))
2730
+ return false;
2731
+ if (!equals(this.v29_1, tmp0_other_with_cast.v29_1))
2655
2732
  return false;
2656
2733
  return true;
2657
2734
  };
@@ -2661,7 +2738,7 @@
2661
2738
  // Inline function 'kotlin.arrayOf' call
2662
2739
  // Inline function 'kotlin.js.unsafeCast' call
2663
2740
  // Inline function 'kotlin.js.asDynamic' call
2664
- tmp.y29_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];
2741
+ tmp.b2a_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];
2665
2742
  }
2666
2743
  var Companion_instance_15;
2667
2744
  function Companion_getInstance_17() {
@@ -2696,91 +2773,91 @@
2696
2773
  tmp0_serialDesc.xu('fineIfNoBribes', true);
2697
2774
  tmp0_serialDesc.xu('enableFineAfterThirdByte', true);
2698
2775
  tmp0_serialDesc.xu('fineAfterThirdFailedContract', true);
2699
- this.z29_1 = tmp0_serialDesc;
2776
+ this.c2a_1 = tmp0_serialDesc;
2700
2777
  }
2701
- protoOf($serializer_6).a2a = function (encoder, value) {
2702
- var tmp0_desc = this.z29_1;
2778
+ protoOf($serializer_6).d2a = function (encoder, value) {
2779
+ var tmp0_desc = this.c2a_1;
2703
2780
  var tmp1_output = encoder.hn(tmp0_desc);
2704
- var tmp2_cached = Companion_getInstance_17().y29_1;
2705
- if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.b2a_1 == null)) {
2706
- tmp1_output.ap(tmp0_desc, 0, BooleanSerializer_getInstance(), value.b2a_1);
2781
+ var tmp2_cached = Companion_getInstance_17().b2a_1;
2782
+ if (tmp1_output.ep(tmp0_desc, 0) ? true : !(value.e2a_1 == null)) {
2783
+ tmp1_output.ap(tmp0_desc, 0, BooleanSerializer_getInstance(), value.e2a_1);
2707
2784
  }
2708
- if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.c2a_1 == null)) {
2709
- tmp1_output.ap(tmp0_desc, 1, BooleanSerializer_getInstance(), value.c2a_1);
2785
+ if (tmp1_output.ep(tmp0_desc, 1) ? true : !(value.f2a_1 == null)) {
2786
+ tmp1_output.ap(tmp0_desc, 1, BooleanSerializer_getInstance(), value.f2a_1);
2710
2787
  }
2711
- if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.d2a_1 == null)) {
2712
- tmp1_output.ap(tmp0_desc, 2, BooleanSerializer_getInstance(), value.d2a_1);
2788
+ if (tmp1_output.ep(tmp0_desc, 2) ? true : !(value.g2a_1 == null)) {
2789
+ tmp1_output.ap(tmp0_desc, 2, BooleanSerializer_getInstance(), value.g2a_1);
2713
2790
  }
2714
- if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.e2a_1 == null)) {
2715
- tmp1_output.ap(tmp0_desc, 3, BooleanSerializer_getInstance(), value.e2a_1);
2791
+ if (tmp1_output.ep(tmp0_desc, 3) ? true : !(value.h2a_1 == null)) {
2792
+ tmp1_output.ap(tmp0_desc, 3, BooleanSerializer_getInstance(), value.h2a_1);
2716
2793
  }
2717
- if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.f2a_1 == null)) {
2718
- tmp1_output.ap(tmp0_desc, 4, BooleanSerializer_getInstance(), value.f2a_1);
2794
+ if (tmp1_output.ep(tmp0_desc, 4) ? true : !(value.i2a_1 == null)) {
2795
+ tmp1_output.ap(tmp0_desc, 4, BooleanSerializer_getInstance(), value.i2a_1);
2719
2796
  }
2720
- if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.g2a_1 == null)) {
2721
- tmp1_output.ap(tmp0_desc, 5, IntSerializer_getInstance(), value.g2a_1);
2797
+ if (tmp1_output.ep(tmp0_desc, 5) ? true : !(value.j2a_1 == null)) {
2798
+ tmp1_output.ap(tmp0_desc, 5, IntSerializer_getInstance(), value.j2a_1);
2722
2799
  }
2723
- if (tmp1_output.ep(tmp0_desc, 6) ? true : !(value.h2a_1 == null)) {
2724
- tmp1_output.ap(tmp0_desc, 6, IntSerializer_getInstance(), value.h2a_1);
2800
+ if (tmp1_output.ep(tmp0_desc, 6) ? true : !(value.k2a_1 == null)) {
2801
+ tmp1_output.ap(tmp0_desc, 6, IntSerializer_getInstance(), value.k2a_1);
2725
2802
  }
2726
- if (tmp1_output.ep(tmp0_desc, 7) ? true : !(value.i2a_1 == null)) {
2727
- tmp1_output.ap(tmp0_desc, 7, BooleanSerializer_getInstance(), value.i2a_1);
2803
+ if (tmp1_output.ep(tmp0_desc, 7) ? true : !(value.l2a_1 == null)) {
2804
+ tmp1_output.ap(tmp0_desc, 7, BooleanSerializer_getInstance(), value.l2a_1);
2728
2805
  }
2729
- if (tmp1_output.ep(tmp0_desc, 8) ? true : !(value.j2a_1 == null)) {
2730
- tmp1_output.ap(tmp0_desc, 8, tmp2_cached[8], value.j2a_1);
2806
+ if (tmp1_output.ep(tmp0_desc, 8) ? true : !(value.m2a_1 == null)) {
2807
+ tmp1_output.ap(tmp0_desc, 8, tmp2_cached[8], value.m2a_1);
2731
2808
  }
2732
- if (tmp1_output.ep(tmp0_desc, 9) ? true : !(value.k2a_1 == null)) {
2733
- tmp1_output.ap(tmp0_desc, 9, tmp2_cached[9], value.k2a_1);
2809
+ if (tmp1_output.ep(tmp0_desc, 9) ? true : !(value.n2a_1 == null)) {
2810
+ tmp1_output.ap(tmp0_desc, 9, tmp2_cached[9], value.n2a_1);
2734
2811
  }
2735
- if (tmp1_output.ep(tmp0_desc, 10) ? true : !(value.l2a_1 == null)) {
2736
- tmp1_output.ap(tmp0_desc, 10, tmp2_cached[10], value.l2a_1);
2812
+ if (tmp1_output.ep(tmp0_desc, 10) ? true : !(value.o2a_1 == null)) {
2813
+ tmp1_output.ap(tmp0_desc, 10, tmp2_cached[10], value.o2a_1);
2737
2814
  }
2738
- if (tmp1_output.ep(tmp0_desc, 11) ? true : !(value.m2a_1 == null)) {
2739
- tmp1_output.ap(tmp0_desc, 11, BooleanSerializer_getInstance(), value.m2a_1);
2815
+ if (tmp1_output.ep(tmp0_desc, 11) ? true : !(value.p2a_1 == null)) {
2816
+ tmp1_output.ap(tmp0_desc, 11, BooleanSerializer_getInstance(), value.p2a_1);
2740
2817
  }
2741
- if (tmp1_output.ep(tmp0_desc, 12) ? true : !(value.n2a_1 == null)) {
2742
- tmp1_output.ap(tmp0_desc, 12, BooleanSerializer_getInstance(), value.n2a_1);
2818
+ if (tmp1_output.ep(tmp0_desc, 12) ? true : !(value.q2a_1 == null)) {
2819
+ tmp1_output.ap(tmp0_desc, 12, BooleanSerializer_getInstance(), value.q2a_1);
2743
2820
  }
2744
- if (tmp1_output.ep(tmp0_desc, 13) ? true : !(value.o2a_1 == null)) {
2745
- tmp1_output.ap(tmp0_desc, 13, BooleanSerializer_getInstance(), value.o2a_1);
2821
+ if (tmp1_output.ep(tmp0_desc, 13) ? true : !(value.r2a_1 == null)) {
2822
+ tmp1_output.ap(tmp0_desc, 13, BooleanSerializer_getInstance(), value.r2a_1);
2746
2823
  }
2747
- if (tmp1_output.ep(tmp0_desc, 14) ? true : !(value.p2a_1 == null)) {
2748
- tmp1_output.ap(tmp0_desc, 14, BooleanSerializer_getInstance(), value.p2a_1);
2824
+ if (tmp1_output.ep(tmp0_desc, 14) ? true : !(value.s2a_1 == null)) {
2825
+ tmp1_output.ap(tmp0_desc, 14, BooleanSerializer_getInstance(), value.s2a_1);
2749
2826
  }
2750
- if (tmp1_output.ep(tmp0_desc, 15) ? true : !(value.q2a_1 == null)) {
2751
- tmp1_output.ap(tmp0_desc, 15, BooleanSerializer_getInstance(), value.q2a_1);
2827
+ if (tmp1_output.ep(tmp0_desc, 15) ? true : !(value.t2a_1 == null)) {
2828
+ tmp1_output.ap(tmp0_desc, 15, BooleanSerializer_getInstance(), value.t2a_1);
2752
2829
  }
2753
- if (tmp1_output.ep(tmp0_desc, 16) ? true : !(value.r2a_1 == null)) {
2754
- tmp1_output.ap(tmp0_desc, 16, BooleanSerializer_getInstance(), value.r2a_1);
2830
+ if (tmp1_output.ep(tmp0_desc, 16) ? true : !(value.u2a_1 == null)) {
2831
+ tmp1_output.ap(tmp0_desc, 16, BooleanSerializer_getInstance(), value.u2a_1);
2755
2832
  }
2756
- if (tmp1_output.ep(tmp0_desc, 17) ? true : !(value.s2a_1 == null)) {
2757
- tmp1_output.ap(tmp0_desc, 17, BooleanSerializer_getInstance(), value.s2a_1);
2833
+ if (tmp1_output.ep(tmp0_desc, 17) ? true : !(value.v2a_1 == null)) {
2834
+ tmp1_output.ap(tmp0_desc, 17, BooleanSerializer_getInstance(), value.v2a_1);
2758
2835
  }
2759
- if (tmp1_output.ep(tmp0_desc, 18) ? true : !(value.t2a_1 == null)) {
2760
- tmp1_output.ap(tmp0_desc, 18, BooleanSerializer_getInstance(), value.t2a_1);
2836
+ if (tmp1_output.ep(tmp0_desc, 18) ? true : !(value.w2a_1 == null)) {
2837
+ tmp1_output.ap(tmp0_desc, 18, BooleanSerializer_getInstance(), value.w2a_1);
2761
2838
  }
2762
- if (tmp1_output.ep(tmp0_desc, 19) ? true : !(value.u2a_1 == null)) {
2763
- tmp1_output.ap(tmp0_desc, 19, StringSerializer_getInstance(), value.u2a_1);
2839
+ if (tmp1_output.ep(tmp0_desc, 19) ? true : !(value.x2a_1 == null)) {
2840
+ tmp1_output.ap(tmp0_desc, 19, StringSerializer_getInstance(), value.x2a_1);
2764
2841
  }
2765
- if (tmp1_output.ep(tmp0_desc, 20) ? true : !(value.v2a_1 == null)) {
2766
- tmp1_output.ap(tmp0_desc, 20, BooleanSerializer_getInstance(), value.v2a_1);
2842
+ if (tmp1_output.ep(tmp0_desc, 20) ? true : !(value.y2a_1 == null)) {
2843
+ tmp1_output.ap(tmp0_desc, 20, BooleanSerializer_getInstance(), value.y2a_1);
2767
2844
  }
2768
- if (tmp1_output.ep(tmp0_desc, 21) ? true : !(value.w2a_1 == null)) {
2769
- tmp1_output.ap(tmp0_desc, 21, IntSerializer_getInstance(), value.w2a_1);
2845
+ if (tmp1_output.ep(tmp0_desc, 21) ? true : !(value.z2a_1 == null)) {
2846
+ tmp1_output.ap(tmp0_desc, 21, IntSerializer_getInstance(), value.z2a_1);
2770
2847
  }
2771
- if (tmp1_output.ep(tmp0_desc, 22) ? true : !(value.x2a_1 == null)) {
2772
- tmp1_output.ap(tmp0_desc, 22, BooleanSerializer_getInstance(), value.x2a_1);
2848
+ if (tmp1_output.ep(tmp0_desc, 22) ? true : !(value.a2b_1 == null)) {
2849
+ tmp1_output.ap(tmp0_desc, 22, BooleanSerializer_getInstance(), value.a2b_1);
2773
2850
  }
2774
- if (tmp1_output.ep(tmp0_desc, 23) ? true : !(value.y2a_1 == null)) {
2775
- tmp1_output.ap(tmp0_desc, 23, IntSerializer_getInstance(), value.y2a_1);
2851
+ if (tmp1_output.ep(tmp0_desc, 23) ? true : !(value.b2b_1 == null)) {
2852
+ tmp1_output.ap(tmp0_desc, 23, IntSerializer_getInstance(), value.b2b_1);
2776
2853
  }
2777
2854
  tmp1_output.in(tmp0_desc);
2778
2855
  };
2779
2856
  protoOf($serializer_6).zj = function (encoder, value) {
2780
- return this.a2a(encoder, value instanceof RulesDto ? value : THROW_CCE());
2857
+ return this.d2a(encoder, value instanceof RulesDto ? value : THROW_CCE());
2781
2858
  };
2782
2859
  protoOf($serializer_6).ak = function (decoder) {
2783
- var tmp0_desc = this.z29_1;
2860
+ var tmp0_desc = this.c2a_1;
2784
2861
  var tmp1_flag = true;
2785
2862
  var tmp2_index = 0;
2786
2863
  var tmp3_bitMask0 = 0;
@@ -2809,7 +2886,7 @@
2809
2886
  var tmp26_local22 = null;
2810
2887
  var tmp27_local23 = null;
2811
2888
  var tmp28_input = decoder.hn(tmp0_desc);
2812
- var tmp29_cached = Companion_getInstance_17().y29_1;
2889
+ var tmp29_cached = Companion_getInstance_17().b2a_1;
2813
2890
  if (tmp28_input.xn()) {
2814
2891
  tmp4_local0 = tmp28_input.vn(tmp0_desc, 0, BooleanSerializer_getInstance(), tmp4_local0);
2815
2892
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -2970,10 +3047,10 @@
2970
3047
  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);
2971
3048
  };
2972
3049
  protoOf($serializer_6).yj = function () {
2973
- return this.z29_1;
3050
+ return this.c2a_1;
2974
3051
  };
2975
3052
  protoOf($serializer_6).mv = function () {
2976
- var tmp0_cached = Companion_getInstance_17().y29_1;
3053
+ var tmp0_cached = Companion_getInstance_17().b2a_1;
2977
3054
  // Inline function 'kotlin.arrayOf' call
2978
3055
  // Inline function 'kotlin.js.unsafeCast' call
2979
3056
  // Inline function 'kotlin.js.asDynamic' call
@@ -2987,104 +3064,104 @@
2987
3064
  }
2988
3065
  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) {
2989
3066
  if (!(0 === (0 & seen0))) {
2990
- throwMissingFieldException(seen0, 0, $serializer_getInstance_6().z29_1);
3067
+ throwMissingFieldException(seen0, 0, $serializer_getInstance_6().c2a_1);
2991
3068
  }
2992
3069
  if (0 === (seen0 & 1))
2993
- $this.b2a_1 = null;
3070
+ $this.e2a_1 = null;
2994
3071
  else
2995
- $this.b2a_1 = needToPutHigherTrump;
3072
+ $this.e2a_1 = needToPutHigherTrump;
2996
3073
  if (0 === (seen0 & 2))
2997
- $this.c2a_1 = null;
3074
+ $this.f2a_1 = null;
2998
3075
  else
2999
- $this.c2a_1 = playerWhoChooseSuitGoFirst;
3076
+ $this.f2a_1 = playerWhoChooseSuitGoFirst;
3000
3077
  if (0 === (seen0 & 4))
3001
- $this.d2a_1 = null;
3078
+ $this.g2a_1 = null;
3002
3079
  else
3003
- $this.d2a_1 = winnerShuffleCards;
3080
+ $this.g2a_1 = winnerShuffleCards;
3004
3081
  if (0 === (seen0 & 8))
3005
- $this.e2a_1 = null;
3082
+ $this.h2a_1 = null;
3006
3083
  else
3007
- $this.e2a_1 = playWithoutLiabilities;
3084
+ $this.h2a_1 = playWithoutLiabilities;
3008
3085
  if (0 === (seen0 & 16))
3009
- $this.f2a_1 = null;
3086
+ $this.i2a_1 = null;
3010
3087
  else
3011
- $this.f2a_1 = trumpCardGoToPlayerWhoShuffleCards;
3088
+ $this.i2a_1 = trumpCardGoToPlayerWhoShuffleCards;
3012
3089
  if (0 === (seen0 & 32))
3013
- $this.g2a_1 = null;
3090
+ $this.j2a_1 = null;
3014
3091
  else
3015
- $this.g2a_1 = dealerInitialCardsCount;
3092
+ $this.j2a_1 = dealerInitialCardsCount;
3016
3093
  if (0 === (seen0 & 64))
3017
- $this.h2a_1 = null;
3094
+ $this.k2a_1 = null;
3018
3095
  else
3019
- $this.h2a_1 = dealerFinalCardsCount;
3096
+ $this.k2a_1 = dealerFinalCardsCount;
3020
3097
  if (0 === (seen0 & 128))
3021
- $this.i2a_1 = null;
3098
+ $this.l2a_1 = null;
3022
3099
  else
3023
- $this.i2a_1 = dealerCounterClockwise;
3100
+ $this.l2a_1 = dealerCounterClockwise;
3024
3101
  if (0 === (seen0 & 256))
3025
- $this.j2a_1 = null;
3102
+ $this.m2a_1 = null;
3026
3103
  else
3027
- $this.j2a_1 = contractTypes;
3104
+ $this.m2a_1 = contractTypes;
3028
3105
  if (0 === (seen0 & 512))
3029
- $this.k2a_1 = null;
3106
+ $this.n2a_1 = null;
3030
3107
  else
3031
- $this.k2a_1 = bidTypes;
3108
+ $this.n2a_1 = bidTypes;
3032
3109
  if (0 === (seen0 & 1024))
3033
- $this.l2a_1 = null;
3110
+ $this.o2a_1 = null;
3034
3111
  else
3035
- $this.l2a_1 = combinationsWithFirstCard;
3112
+ $this.o2a_1 = combinationsWithFirstCard;
3036
3113
  if (0 === (seen0 & 2048))
3037
- $this.m2a_1 = null;
3114
+ $this.p2a_1 = null;
3038
3115
  else
3039
- $this.m2a_1 = protectBella;
3116
+ $this.p2a_1 = protectBella;
3040
3117
  if (0 === (seen0 & 4096))
3041
- $this.n2a_1 = null;
3118
+ $this.q2a_1 = null;
3042
3119
  else
3043
- $this.n2a_1 = oneTryToProtectBella;
3120
+ $this.q2a_1 = oneTryToProtectBella;
3044
3121
  if (0 === (seen0 & 8192))
3045
- $this.o2a_1 = null;
3122
+ $this.r2a_1 = null;
3046
3123
  else
3047
- $this.o2a_1 = enableFourSevensCombination;
3124
+ $this.r2a_1 = enableFourSevensCombination;
3048
3125
  if (0 === (seen0 & 16384))
3049
- $this.p2a_1 = null;
3126
+ $this.s2a_1 = null;
3050
3127
  else
3051
- $this.p2a_1 = enableTrumpSevenCombination;
3128
+ $this.s2a_1 = enableTrumpSevenCombination;
3052
3129
  if (0 === (seen0 & 32768))
3053
- $this.q2a_1 = null;
3130
+ $this.t2a_1 = null;
3054
3131
  else
3055
- $this.q2a_1 = enableTrumpSevenCombinationAfterDistribution;
3132
+ $this.t2a_1 = enableTrumpSevenCombinationAfterDistribution;
3056
3133
  if (0 === (seen0 & 65536))
3057
- $this.r2a_1 = null;
3134
+ $this.u2a_1 = null;
3058
3135
  else
3059
- $this.r2a_1 = checkTrumpCombination;
3136
+ $this.u2a_1 = checkTrumpCombination;
3060
3137
  if (0 === (seen0 & 131072))
3061
- $this.s2a_1 = null;
3138
+ $this.v2a_1 = null;
3062
3139
  else
3063
- $this.s2a_1 = checkOnlyTrumpDebertz;
3140
+ $this.v2a_1 = checkOnlyTrumpDebertz;
3064
3141
  if (0 === (seen0 & 262144))
3065
- $this.t2a_1 = null;
3142
+ $this.w2a_1 = null;
3066
3143
  else
3067
- $this.t2a_1 = distributePoints;
3144
+ $this.w2a_1 = distributePoints;
3068
3145
  if (0 === (seen0 & 524288))
3069
- $this.u2a_1 = null;
3146
+ $this.x2a_1 = null;
3070
3147
  else
3071
- $this.u2a_1 = pointsDistributeMode;
3148
+ $this.x2a_1 = pointsDistributeMode;
3072
3149
  if (0 === (seen0 & 1048576))
3073
- $this.v2a_1 = null;
3150
+ $this.y2a_1 = null;
3074
3151
  else
3075
- $this.v2a_1 = enableFineIfNoBribes;
3152
+ $this.y2a_1 = enableFineIfNoBribes;
3076
3153
  if (0 === (seen0 & 2097152))
3077
- $this.w2a_1 = null;
3154
+ $this.z2a_1 = null;
3078
3155
  else
3079
- $this.w2a_1 = fineIfNoBribes;
3156
+ $this.z2a_1 = fineIfNoBribes;
3080
3157
  if (0 === (seen0 & 4194304))
3081
- $this.x2a_1 = null;
3158
+ $this.a2b_1 = null;
3082
3159
  else
3083
- $this.x2a_1 = enableFineAfterThirdByte;
3160
+ $this.a2b_1 = enableFineAfterThirdByte;
3084
3161
  if (0 === (seen0 & 8388608))
3085
- $this.y2a_1 = null;
3162
+ $this.b2b_1 = null;
3086
3163
  else
3087
- $this.y2a_1 = fineAfterThirdFailedContract;
3164
+ $this.b2b_1 = fineAfterThirdFailedContract;
3088
3165
  return $this;
3089
3166
  }
3090
3167
  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) {
@@ -3116,59 +3193,59 @@
3116
3193
  fineIfNoBribes = fineIfNoBribes === VOID ? null : fineIfNoBribes;
3117
3194
  enableFineAfterThirdByte = enableFineAfterThirdByte === VOID ? null : enableFineAfterThirdByte;
3118
3195
  fineAfterThirdFailedContract = fineAfterThirdFailedContract === VOID ? null : fineAfterThirdFailedContract;
3119
- this.b2a_1 = needToPutHigherTrump;
3120
- this.c2a_1 = playerWhoChooseSuitGoFirst;
3121
- this.d2a_1 = winnerShuffleCards;
3122
- this.e2a_1 = playWithoutLiabilities;
3123
- this.f2a_1 = trumpCardGoToPlayerWhoShuffleCards;
3124
- this.g2a_1 = dealerInitialCardsCount;
3125
- this.h2a_1 = dealerFinalCardsCount;
3126
- this.i2a_1 = dealerCounterClockwise;
3127
- this.j2a_1 = contractTypes;
3128
- this.k2a_1 = bidTypes;
3129
- this.l2a_1 = combinationsWithFirstCard;
3130
- this.m2a_1 = protectBella;
3131
- this.n2a_1 = oneTryToProtectBella;
3132
- this.o2a_1 = enableFourSevensCombination;
3133
- this.p2a_1 = enableTrumpSevenCombination;
3134
- this.q2a_1 = enableTrumpSevenCombinationAfterDistribution;
3135
- this.r2a_1 = checkTrumpCombination;
3136
- this.s2a_1 = checkOnlyTrumpDebertz;
3137
- this.t2a_1 = distributePoints;
3138
- this.u2a_1 = pointsDistributeMode;
3139
- this.v2a_1 = enableFineIfNoBribes;
3140
- this.w2a_1 = fineIfNoBribes;
3141
- this.x2a_1 = enableFineAfterThirdByte;
3142
- this.y2a_1 = fineAfterThirdFailedContract;
3196
+ this.e2a_1 = needToPutHigherTrump;
3197
+ this.f2a_1 = playerWhoChooseSuitGoFirst;
3198
+ this.g2a_1 = winnerShuffleCards;
3199
+ this.h2a_1 = playWithoutLiabilities;
3200
+ this.i2a_1 = trumpCardGoToPlayerWhoShuffleCards;
3201
+ this.j2a_1 = dealerInitialCardsCount;
3202
+ this.k2a_1 = dealerFinalCardsCount;
3203
+ this.l2a_1 = dealerCounterClockwise;
3204
+ this.m2a_1 = contractTypes;
3205
+ this.n2a_1 = bidTypes;
3206
+ this.o2a_1 = combinationsWithFirstCard;
3207
+ this.p2a_1 = protectBella;
3208
+ this.q2a_1 = oneTryToProtectBella;
3209
+ this.r2a_1 = enableFourSevensCombination;
3210
+ this.s2a_1 = enableTrumpSevenCombination;
3211
+ this.t2a_1 = enableTrumpSevenCombinationAfterDistribution;
3212
+ this.u2a_1 = checkTrumpCombination;
3213
+ this.v2a_1 = checkOnlyTrumpDebertz;
3214
+ this.w2a_1 = distributePoints;
3215
+ this.x2a_1 = pointsDistributeMode;
3216
+ this.y2a_1 = enableFineIfNoBribes;
3217
+ this.z2a_1 = fineIfNoBribes;
3218
+ this.a2b_1 = enableFineAfterThirdByte;
3219
+ this.b2b_1 = fineAfterThirdFailedContract;
3143
3220
  }
3144
3221
  protoOf(RulesDto).toString = function () {
3145
- return 'RulesDto(needToPutHigherTrump=' + this.b2a_1 + ', playerWhoChooseSuitGoFirst=' + this.c2a_1 + ', winnerShuffleCards=' + this.d2a_1 + ', playWithoutLiabilities=' + this.e2a_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.f2a_1 + ', dealerInitialCardsCount=' + this.g2a_1 + ', dealerFinalCardsCount=' + this.h2a_1 + ', dealerCounterClockwise=' + this.i2a_1 + ', contractTypes=' + toString(this.j2a_1) + ', bidTypes=' + toString(this.k2a_1) + ', combinationsWithFirstCard=' + toString(this.l2a_1) + ', protectBella=' + this.m2a_1 + ', oneTryToProtectBella=' + this.n2a_1 + ', enableFourSevensCombination=' + this.o2a_1 + ', enableTrumpSevenCombination=' + this.p2a_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.q2a_1 + ', checkTrumpCombination=' + this.r2a_1 + ', checkOnlyTrumpDebertz=' + this.s2a_1 + ', distributePoints=' + this.t2a_1 + ', pointsDistributeMode=' + this.u2a_1 + ', enableFineIfNoBribes=' + this.v2a_1 + ', fineIfNoBribes=' + this.w2a_1 + ', enableFineAfterThirdByte=' + this.x2a_1 + ', fineAfterThirdFailedContract=' + this.y2a_1 + ')';
3222
+ return 'RulesDto(needToPutHigherTrump=' + this.e2a_1 + ', playerWhoChooseSuitGoFirst=' + this.f2a_1 + ', winnerShuffleCards=' + this.g2a_1 + ', playWithoutLiabilities=' + this.h2a_1 + ', trumpCardGoToPlayerWhoShuffleCards=' + this.i2a_1 + ', dealerInitialCardsCount=' + this.j2a_1 + ', dealerFinalCardsCount=' + this.k2a_1 + ', dealerCounterClockwise=' + this.l2a_1 + ', contractTypes=' + toString(this.m2a_1) + ', bidTypes=' + toString(this.n2a_1) + ', combinationsWithFirstCard=' + toString(this.o2a_1) + ', protectBella=' + this.p2a_1 + ', oneTryToProtectBella=' + this.q2a_1 + ', enableFourSevensCombination=' + this.r2a_1 + ', enableTrumpSevenCombination=' + this.s2a_1 + ', enableTrumpSevenCombinationAfterDistribution=' + this.t2a_1 + ', checkTrumpCombination=' + this.u2a_1 + ', checkOnlyTrumpDebertz=' + this.v2a_1 + ', distributePoints=' + this.w2a_1 + ', pointsDistributeMode=' + this.x2a_1 + ', enableFineIfNoBribes=' + this.y2a_1 + ', fineIfNoBribes=' + this.z2a_1 + ', enableFineAfterThirdByte=' + this.a2b_1 + ', fineAfterThirdFailedContract=' + this.b2b_1 + ')';
3146
3223
  };
3147
3224
  protoOf(RulesDto).hashCode = function () {
3148
- var result = this.b2a_1 == null ? 0 : getBooleanHashCode(this.b2a_1);
3149
- result = imul(result, 31) + (this.c2a_1 == null ? 0 : getBooleanHashCode(this.c2a_1)) | 0;
3150
- result = imul(result, 31) + (this.d2a_1 == null ? 0 : getBooleanHashCode(this.d2a_1)) | 0;
3151
- result = imul(result, 31) + (this.e2a_1 == null ? 0 : getBooleanHashCode(this.e2a_1)) | 0;
3225
+ var result = this.e2a_1 == null ? 0 : getBooleanHashCode(this.e2a_1);
3152
3226
  result = imul(result, 31) + (this.f2a_1 == null ? 0 : getBooleanHashCode(this.f2a_1)) | 0;
3153
- result = imul(result, 31) + (this.g2a_1 == null ? 0 : this.g2a_1) | 0;
3154
- result = imul(result, 31) + (this.h2a_1 == null ? 0 : this.h2a_1) | 0;
3227
+ result = imul(result, 31) + (this.g2a_1 == null ? 0 : getBooleanHashCode(this.g2a_1)) | 0;
3228
+ result = imul(result, 31) + (this.h2a_1 == null ? 0 : getBooleanHashCode(this.h2a_1)) | 0;
3155
3229
  result = imul(result, 31) + (this.i2a_1 == null ? 0 : getBooleanHashCode(this.i2a_1)) | 0;
3156
- result = imul(result, 31) + (this.j2a_1 == null ? 0 : hashCode(this.j2a_1)) | 0;
3157
- result = imul(result, 31) + (this.k2a_1 == null ? 0 : hashCode(this.k2a_1)) | 0;
3158
- result = imul(result, 31) + (this.l2a_1 == null ? 0 : hashCode(this.l2a_1)) | 0;
3159
- result = imul(result, 31) + (this.m2a_1 == null ? 0 : getBooleanHashCode(this.m2a_1)) | 0;
3160
- result = imul(result, 31) + (this.n2a_1 == null ? 0 : getBooleanHashCode(this.n2a_1)) | 0;
3161
- result = imul(result, 31) + (this.o2a_1 == null ? 0 : getBooleanHashCode(this.o2a_1)) | 0;
3230
+ result = imul(result, 31) + (this.j2a_1 == null ? 0 : this.j2a_1) | 0;
3231
+ result = imul(result, 31) + (this.k2a_1 == null ? 0 : this.k2a_1) | 0;
3232
+ result = imul(result, 31) + (this.l2a_1 == null ? 0 : getBooleanHashCode(this.l2a_1)) | 0;
3233
+ result = imul(result, 31) + (this.m2a_1 == null ? 0 : hashCode(this.m2a_1)) | 0;
3234
+ result = imul(result, 31) + (this.n2a_1 == null ? 0 : hashCode(this.n2a_1)) | 0;
3235
+ result = imul(result, 31) + (this.o2a_1 == null ? 0 : hashCode(this.o2a_1)) | 0;
3162
3236
  result = imul(result, 31) + (this.p2a_1 == null ? 0 : getBooleanHashCode(this.p2a_1)) | 0;
3163
3237
  result = imul(result, 31) + (this.q2a_1 == null ? 0 : getBooleanHashCode(this.q2a_1)) | 0;
3164
3238
  result = imul(result, 31) + (this.r2a_1 == null ? 0 : getBooleanHashCode(this.r2a_1)) | 0;
3165
3239
  result = imul(result, 31) + (this.s2a_1 == null ? 0 : getBooleanHashCode(this.s2a_1)) | 0;
3166
3240
  result = imul(result, 31) + (this.t2a_1 == null ? 0 : getBooleanHashCode(this.t2a_1)) | 0;
3167
- result = imul(result, 31) + (this.u2a_1 == null ? 0 : getStringHashCode(this.u2a_1)) | 0;
3241
+ result = imul(result, 31) + (this.u2a_1 == null ? 0 : getBooleanHashCode(this.u2a_1)) | 0;
3168
3242
  result = imul(result, 31) + (this.v2a_1 == null ? 0 : getBooleanHashCode(this.v2a_1)) | 0;
3169
- result = imul(result, 31) + (this.w2a_1 == null ? 0 : this.w2a_1) | 0;
3170
- result = imul(result, 31) + (this.x2a_1 == null ? 0 : getBooleanHashCode(this.x2a_1)) | 0;
3171
- result = imul(result, 31) + (this.y2a_1 == null ? 0 : this.y2a_1) | 0;
3243
+ result = imul(result, 31) + (this.w2a_1 == null ? 0 : getBooleanHashCode(this.w2a_1)) | 0;
3244
+ result = imul(result, 31) + (this.x2a_1 == null ? 0 : getStringHashCode(this.x2a_1)) | 0;
3245
+ result = imul(result, 31) + (this.y2a_1 == null ? 0 : getBooleanHashCode(this.y2a_1)) | 0;
3246
+ result = imul(result, 31) + (this.z2a_1 == null ? 0 : this.z2a_1) | 0;
3247
+ result = imul(result, 31) + (this.a2b_1 == null ? 0 : getBooleanHashCode(this.a2b_1)) | 0;
3248
+ result = imul(result, 31) + (this.b2b_1 == null ? 0 : this.b2b_1) | 0;
3172
3249
  return result;
3173
3250
  };
3174
3251
  protoOf(RulesDto).equals = function (other) {
@@ -3177,12 +3254,6 @@
3177
3254
  if (!(other instanceof RulesDto))
3178
3255
  return false;
3179
3256
  var tmp0_other_with_cast = other instanceof RulesDto ? other : THROW_CCE();
3180
- if (!(this.b2a_1 == tmp0_other_with_cast.b2a_1))
3181
- return false;
3182
- if (!(this.c2a_1 == tmp0_other_with_cast.c2a_1))
3183
- return false;
3184
- if (!(this.d2a_1 == tmp0_other_with_cast.d2a_1))
3185
- return false;
3186
3257
  if (!(this.e2a_1 == tmp0_other_with_cast.e2a_1))
3187
3258
  return false;
3188
3259
  if (!(this.f2a_1 == tmp0_other_with_cast.f2a_1))
@@ -3193,17 +3264,17 @@
3193
3264
  return false;
3194
3265
  if (!(this.i2a_1 == tmp0_other_with_cast.i2a_1))
3195
3266
  return false;
3196
- if (!equals(this.j2a_1, tmp0_other_with_cast.j2a_1))
3267
+ if (!(this.j2a_1 == tmp0_other_with_cast.j2a_1))
3197
3268
  return false;
3198
- if (!equals(this.k2a_1, tmp0_other_with_cast.k2a_1))
3269
+ if (!(this.k2a_1 == tmp0_other_with_cast.k2a_1))
3199
3270
  return false;
3200
- if (!equals(this.l2a_1, tmp0_other_with_cast.l2a_1))
3271
+ if (!(this.l2a_1 == tmp0_other_with_cast.l2a_1))
3201
3272
  return false;
3202
- if (!(this.m2a_1 == tmp0_other_with_cast.m2a_1))
3273
+ if (!equals(this.m2a_1, tmp0_other_with_cast.m2a_1))
3203
3274
  return false;
3204
- if (!(this.n2a_1 == tmp0_other_with_cast.n2a_1))
3275
+ if (!equals(this.n2a_1, tmp0_other_with_cast.n2a_1))
3205
3276
  return false;
3206
- if (!(this.o2a_1 == tmp0_other_with_cast.o2a_1))
3277
+ if (!equals(this.o2a_1, tmp0_other_with_cast.o2a_1))
3207
3278
  return false;
3208
3279
  if (!(this.p2a_1 == tmp0_other_with_cast.p2a_1))
3209
3280
  return false;
@@ -3225,6 +3296,12 @@
3225
3296
  return false;
3226
3297
  if (!(this.y2a_1 == tmp0_other_with_cast.y2a_1))
3227
3298
  return false;
3299
+ if (!(this.z2a_1 == tmp0_other_with_cast.z2a_1))
3300
+ return false;
3301
+ if (!(this.a2b_1 == tmp0_other_with_cast.a2b_1))
3302
+ return false;
3303
+ if (!(this.b2b_1 == tmp0_other_with_cast.b2b_1))
3304
+ return false;
3228
3305
  return true;
3229
3306
  };
3230
3307
  function BufferedAction() {
@@ -3346,7 +3423,7 @@
3346
3423
  return nextItemIndex > get_lastIndex(_this__u8e3s4) ? null : _this__u8e3s4.o(nextItemIndex);
3347
3424
  }
3348
3425
  function _get_$cachedSerializer__te6jhj_9($this) {
3349
- return $this.f2b_1.a2();
3426
+ return $this.i2b_1.a2();
3350
3427
  }
3351
3428
  function LogType$Companion$_anonymous__d4fjnz() {
3352
3429
  return createSimpleEnumSerializer('com.logic.utils.logger.outputs.LogType', values_3());
@@ -3386,7 +3463,7 @@
3386
3463
  Companion_instance_16 = this;
3387
3464
  var tmp = this;
3388
3465
  var tmp_0 = LazyThreadSafetyMode_PUBLICATION_getInstance();
3389
- tmp.f2b_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
3466
+ tmp.i2b_1 = lazy(tmp_0, LogType$Companion$_anonymous__d4fjnz);
3390
3467
  }
3391
3468
  protoOf(Companion_16).o17 = function () {
3392
3469
  return _get_$cachedSerializer__te6jhj_9(this);
@@ -3445,7 +3522,7 @@
3445
3522
  // Inline function 'kotlin.arrayOf' call
3446
3523
  // Inline function 'kotlin.js.unsafeCast' call
3447
3524
  // Inline function 'kotlin.js.asDynamic' call
3448
- tmp.l2b_1 = [Companion_getInstance_18().o17(), null, null, null, null];
3525
+ tmp.o2b_1 = [Companion_getInstance_18().o17(), null, null, null, null];
3449
3526
  }
3450
3527
  protoOf(Companion_17).o17 = function () {
3451
3528
  return $serializer_getInstance_7();
@@ -3464,12 +3541,12 @@
3464
3541
  tmp0_serialDesc.xu('tag', false);
3465
3542
  tmp0_serialDesc.xu('message', false);
3466
3543
  tmp0_serialDesc.xu('stackTrace', false);
3467
- this.m2b_1 = tmp0_serialDesc;
3544
+ this.p2b_1 = tmp0_serialDesc;
3468
3545
  }
3469
- protoOf($serializer_7).n2b = function (encoder, value) {
3470
- var tmp0_desc = this.m2b_1;
3546
+ protoOf($serializer_7).q2b = function (encoder, value) {
3547
+ var tmp0_desc = this.p2b_1;
3471
3548
  var tmp1_output = encoder.hn(tmp0_desc);
3472
- var tmp2_cached = Companion_getInstance_19().l2b_1;
3549
+ var tmp2_cached = Companion_getInstance_19().o2b_1;
3473
3550
  tmp1_output.yo(tmp0_desc, 0, tmp2_cached[0], value.type);
3474
3551
  tmp1_output.ap(tmp0_desc, 1, StringSerializer_getInstance(), value.key);
3475
3552
  tmp1_output.ap(tmp0_desc, 2, StringSerializer_getInstance(), value.tag);
@@ -3478,10 +3555,10 @@
3478
3555
  tmp1_output.in(tmp0_desc);
3479
3556
  };
3480
3557
  protoOf($serializer_7).zj = function (encoder, value) {
3481
- return this.n2b(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
3558
+ return this.q2b(encoder, value instanceof LoggerOutputDataDto ? value : THROW_CCE());
3482
3559
  };
3483
3560
  protoOf($serializer_7).ak = function (decoder) {
3484
- var tmp0_desc = this.m2b_1;
3561
+ var tmp0_desc = this.p2b_1;
3485
3562
  var tmp1_flag = true;
3486
3563
  var tmp2_index = 0;
3487
3564
  var tmp3_bitMask0 = 0;
@@ -3491,7 +3568,7 @@
3491
3568
  var tmp7_local3 = null;
3492
3569
  var tmp8_local4 = null;
3493
3570
  var tmp9_input = decoder.hn(tmp0_desc);
3494
- var tmp10_cached = Companion_getInstance_19().l2b_1;
3571
+ var tmp10_cached = Companion_getInstance_19().o2b_1;
3495
3572
  if (tmp9_input.xn()) {
3496
3573
  tmp4_local0 = tmp9_input.tn(tmp0_desc, 0, tmp10_cached[0], tmp4_local0);
3497
3574
  tmp3_bitMask0 = tmp3_bitMask0 | 1;
@@ -3538,13 +3615,13 @@
3538
3615
  return LoggerOutputDataDto_init_$Create$(tmp3_bitMask0, tmp4_local0, tmp5_local1, tmp6_local2, tmp7_local3, tmp8_local4, null);
3539
3616
  };
3540
3617
  protoOf($serializer_7).yj = function () {
3541
- return this.m2b_1;
3618
+ return this.p2b_1;
3542
3619
  };
3543
3620
  protoOf($serializer_7).mv = function () {
3544
3621
  // Inline function 'kotlin.arrayOf' call
3545
3622
  // Inline function 'kotlin.js.unsafeCast' call
3546
3623
  // Inline function 'kotlin.js.asDynamic' call
3547
- return [Companion_getInstance_19().l2b_1[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
3624
+ return [Companion_getInstance_19().o2b_1[0], get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance()), get_nullable(StringSerializer_getInstance())];
3548
3625
  };
3549
3626
  var $serializer_instance_7;
3550
3627
  function $serializer_getInstance_7() {
@@ -3554,7 +3631,7 @@
3554
3631
  }
3555
3632
  function LoggerOutputDataDto_init_$Init$(seen0, type, key, tag, message, stackTrace, serializationConstructorMarker, $this) {
3556
3633
  if (!(31 === (31 & seen0))) {
3557
- throwMissingFieldException(seen0, 31, $serializer_getInstance_7().m2b_1);
3634
+ throwMissingFieldException(seen0, 31, $serializer_getInstance_7().p2b_1);
3558
3635
  }
3559
3636
  $this.type = type;
3560
3637
  $this.key = key;
@@ -3586,7 +3663,7 @@
3586
3663
  protoOf(LoggerOutputDataDto).e9 = function () {
3587
3664
  return this.message;
3588
3665
  };
3589
- protoOf(LoggerOutputDataDto).o2b = function () {
3666
+ protoOf(LoggerOutputDataDto).r2b = function () {
3590
3667
  return this.stackTrace;
3591
3668
  };
3592
3669
  protoOf(LoggerOutputDataDto).toMessageLog = function () {
@@ -3651,7 +3728,7 @@
3651
3728
  protoOf(LoggerOutputDataDto).b27 = function () {
3652
3729
  return this.stackTrace;
3653
3730
  };
3654
- protoOf(LoggerOutputDataDto).p2b = function (type, key, tag, message, stackTrace) {
3731
+ protoOf(LoggerOutputDataDto).s2b = function (type, key, tag, message, stackTrace) {
3655
3732
  return new LoggerOutputDataDto(type, key, tag, message, stackTrace);
3656
3733
  };
3657
3734
  protoOf(LoggerOutputDataDto).copy = function (type, key, tag, message, stackTrace, $super) {
@@ -3660,7 +3737,7 @@
3660
3737
  tag = tag === VOID ? this.tag : tag;
3661
3738
  message = message === VOID ? this.message : message;
3662
3739
  stackTrace = stackTrace === VOID ? this.stackTrace : stackTrace;
3663
- return this.p2b(type, key, tag, message, stackTrace);
3740
+ return this.s2b(type, key, tag, message, stackTrace);
3664
3741
  };
3665
3742
  protoOf(LoggerOutputDataDto).toString = function () {
3666
3743
  return 'LoggerOutputDataDto(type=' + this.type.toString() + ', key=' + this.key + ', tag=' + this.tag + ', message=' + this.message + ', stackTrace=' + this.stackTrace + ')';