what-the-bank/sources/o/NP.java

147 lines
4.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class NP implements InterfaceC0755Nw {
public static final Sts CREATOR = new Sts(0);
public final String a;
public final String b;
public final double c;
public final double d;
public final double e;
public final String i;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
public NP(String str, String str2, String str3, double d, double d2, double d3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.i = str;
this.a = str2;
this.b = str3;
this.d = d;
this.c = d2;
this.e = d3;
}
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public NP(android.os.Parcel r13) {
/*
r12 = this;
java.lang.String r0 = ""
o.C14957gcv.e(r13, r0)
o.C14957gcv.e(r13, r0)
java.lang.String r1 = r13.readString()
if (r1 != 0) goto L10
r3 = r0
goto L11
L10:
r3 = r1
L11:
o.C14957gcv.e(r13, r0)
java.lang.String r1 = r13.readString()
if (r1 != 0) goto L1c
r4 = r0
goto L1d
L1c:
r4 = r1
L1d:
o.C14957gcv.e(r13, r0)
java.lang.String r1 = r13.readString()
if (r1 != 0) goto L28
r5 = r0
goto L29
L28:
r5 = r1
L29:
double r6 = r13.readDouble()
double r8 = r13.readDouble()
double r10 = r13.readDouble()
r2 = r12
r2.<init>(r3, r4, r5, r6, r8, r10)
return
*/
throw new UnsupportedOperationException("Method not decompiled: o.NP.<init>(android.os.Parcel):void");
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
C14957gcv.e(parcel, "");
parcel.writeString(this.i);
parcel.writeString(this.a);
parcel.writeString(this.b);
parcel.writeDouble(this.d);
parcel.writeDouble(this.c);
parcel.writeDouble(this.e);
}
/* loaded from: classes3.dex */
public static final class Sts implements Parcelable.Creator<NP> {
private Sts() {
}
@Override // android.os.Parcelable.Creator
public final /* synthetic */ NP createFromParcel(Parcel parcel) {
C14957gcv.e(parcel, "");
return new NP(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ NP[] newArray(int i) {
return new NP[i];
}
public /* synthetic */ Sts(byte b) {
this();
}
}
public final String toString() {
String str = this.i;
String str2 = this.a;
String str3 = this.b;
double d = this.d;
double d2 = this.c;
double d3 = this.e;
StringBuilder sb = new StringBuilder("HmlUpsellOfferDisplay(title=");
sb.append(str);
sb.append(", description=");
sb.append(str2);
sb.append(", icon=");
sb.append(str3);
sb.append(", minimum=");
sb.append(d);
sb.append(", maximum=");
sb.append(d2);
sb.append(", stepSize=");
sb.append(d3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((((this.i.hashCode() * 31) + this.a.hashCode()) * 31) + this.b.hashCode()) * 31) + Double.hashCode(this.d)) * 31) + Double.hashCode(this.c)) * 31) + Double.hashCode(this.e);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NP)) {
return false;
}
NP np = (NP) obj;
return C14957gcv.b((Object) this.i, (Object) np.i) && C14957gcv.b((Object) this.a, (Object) np.a) && C14957gcv.b((Object) this.b, (Object) np.b) && Double.compare(this.d, np.d) == 0 && Double.compare(this.c, np.c) == 0 && Double.compare(this.e, np.e) == 0;
}
}