Files
rr3-apk/decompiled-community/sources/com/ironsource/uk.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

124 lines
3.3 KiB
Java

package com.ironsource;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class uk {
private final gh a;
private final String b;
private final long c;
private final boolean d;
private final boolean e;
public uk(gh instanceType, String adSourceNameForEvents, long j, boolean z, boolean z2) {
Intrinsics.checkNotNullParameter(instanceType, "instanceType");
Intrinsics.checkNotNullParameter(adSourceNameForEvents, "adSourceNameForEvents");
this.a = instanceType;
this.b = adSourceNameForEvents;
this.c = j;
this.d = z;
this.e = z2;
}
public /* synthetic */ uk(gh ghVar, String str, long j, boolean z, boolean z2, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(ghVar, str, j, z, (i & 16) != 0 ? true : z2);
}
public static /* synthetic */ uk a(uk ukVar, gh ghVar, String str, long j, boolean z, boolean z2, int i, Object obj) {
if ((i & 1) != 0) {
ghVar = ukVar.a;
}
if ((i & 2) != 0) {
str = ukVar.b;
}
String str2 = str;
if ((i & 4) != 0) {
j = ukVar.c;
}
long j2 = j;
if ((i & 8) != 0) {
z = ukVar.d;
}
boolean z3 = z;
if ((i & 16) != 0) {
z2 = ukVar.e;
}
return ukVar.a(ghVar, str2, j2, z3, z2);
}
public final gh a() {
return this.a;
}
public final uk a(gh instanceType, String adSourceNameForEvents, long j, boolean z, boolean z2) {
Intrinsics.checkNotNullParameter(instanceType, "instanceType");
Intrinsics.checkNotNullParameter(adSourceNameForEvents, "adSourceNameForEvents");
return new uk(instanceType, adSourceNameForEvents, j, z, z2);
}
public final String b() {
return this.b;
}
public final long c() {
return this.c;
}
public final boolean d() {
return this.d;
}
public final boolean e() {
return this.e;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof uk)) {
return false;
}
uk ukVar = (uk) obj;
return this.a == ukVar.a && Intrinsics.areEqual(this.b, ukVar.b) && this.c == ukVar.c && this.d == ukVar.d && this.e == ukVar.e;
}
public final String f() {
return this.b;
}
public final gh g() {
return this.a;
}
public final long h() {
return this.c;
}
/* JADX WARN: Multi-variable type inference failed */
public int hashCode() {
int hashCode = ((((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + Long.hashCode(this.c)) * 31;
boolean z = this.d;
int i = z;
if (z != 0) {
i = 1;
}
int i2 = (hashCode + i) * 31;
boolean z2 = this.e;
return i2 + (z2 ? 1 : z2 ? 1 : 0);
}
public final boolean i() {
return this.e;
}
public final boolean j() {
return this.d;
}
public String toString() {
return "LoadTaskConfig(instanceType=" + this.a + ", adSourceNameForEvents=" + this.b + ", loadTimeoutInMills=" + this.c + ", isOneFlow=" + this.d + ", isMultipleAdObjects=" + this.e + ')';
}
}