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

170 lines
4.9 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 IP implements Parcelable, Comparable<IP> {
public static final Parcelable.Creator<IP> CREATOR = new Parcelable.Creator<IP>() { // from class: o.IP.3
@Override // android.os.Parcelable.Creator
public final /* synthetic */ IP createFromParcel(Parcel parcel) {
return new IP(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ IP[] newArray(int i) {
return new IP[i];
}
};
public String a;
public String b;
public String c;
public boolean d;
public String e;
private String g;
public String j;
@Override // android.os.Parcelable
public final int describeContents() {
return 0;
}
/* JADX WARN: Can't fix incorrect switch cases order, some code will duplicate */
/* JADX WARN: Code restructure failed: missing block: B:48:0x0043, code lost:
if (r0.equals("DATA_SHARING_CONSENT") != false) goto L21;
*/
@Override // java.lang.Comparable
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public final /* synthetic */ int compareTo(o.IP r10) {
/*
r9 = this;
o.IP r10 = (o.IP) r10
java.lang.String r0 = r9.b
java.lang.String r1 = r10.b
boolean r0 = r0.equals(r1)
r1 = 0
if (r0 == 0) goto Le
return r1
Le:
java.lang.String r0 = r9.b
r0.hashCode()
int r2 = r0.hashCode()
r3 = 3
r4 = 2
java.lang.String r5 = "MODEL_CONSENT"
java.lang.String r6 = "MARKETING_CONSENT"
r7 = -1
r8 = 1
switch(r2) {
case 280272098: goto L3d;
case 1067607745: goto L35;
case 1982389444: goto L2d;
case 1990042344: goto L23;
default: goto L22;
}
L22:
goto L46
L23:
java.lang.String r1 = "NCB_CONSENT"
boolean r0 = r0.equals(r1)
if (r0 == 0) goto L46
r1 = r3
goto L47
L2d:
boolean r0 = r0.equals(r5)
if (r0 == 0) goto L46
r1 = r4
goto L47
L35:
boolean r0 = r0.equals(r6)
if (r0 == 0) goto L46
r1 = r8
goto L47
L3d:
java.lang.String r2 = "DATA_SHARING_CONSENT"
boolean r0 = r0.equals(r2)
if (r0 == 0) goto L46
goto L47
L46:
r1 = r7
L47:
java.lang.String r0 = "CROSS_SELL_CONSENT"
if (r1 == 0) goto L71
if (r1 == r8) goto L66
if (r1 == r4) goto L53
if (r1 == r3) goto L52
return r8
L52:
return r7
L53:
java.lang.String r1 = r10.b
boolean r1 = r1.equals(r6)
if (r1 != 0) goto L65
java.lang.String r10 = r10.b
boolean r10 = r10.equals(r0)
if (r10 == 0) goto L64
goto L65
L64:
r7 = r8
L65:
return r7
L66:
java.lang.String r10 = r10.b
boolean r10 = r10.equals(r0)
if (r10 == 0) goto L6f
goto L70
L6f:
r7 = r8
L70:
return r7
L71:
java.lang.String r1 = r10.b
boolean r1 = r1.equals(r5)
if (r1 != 0) goto L8b
java.lang.String r1 = r10.b
boolean r1 = r1.equals(r6)
if (r1 != 0) goto L8b
java.lang.String r10 = r10.b
boolean r10 = r10.equals(r0)
if (r10 == 0) goto L8a
goto L8b
L8a:
r7 = r8
L8b:
return r7
*/
throw new UnsupportedOperationException("Method not decompiled: o.IP.compareTo(java.lang.Object):int");
}
public IP(String str, String str2, String str3, String str4, boolean z, String str5, String str6) {
this.j = str;
this.b = str2;
this.a = str3;
this.g = str4;
this.d = z;
this.c = str5;
this.e = str6;
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.j);
parcel.writeString(this.b);
parcel.writeString(this.a);
parcel.writeString(this.g);
parcel.writeByte(this.d ? (byte) 1 : (byte) 0);
}
protected IP(Parcel parcel) {
this.j = parcel.readString();
this.b = parcel.readString();
this.a = parcel.readString();
this.g = parcel.readString();
this.d = parcel.readByte() != 0;
}
}