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

130 lines
4.0 KiB
Java

package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public final class WM extends EQ implements Parcelable {
public static final Parcelable.Creator<WM> CREATOR = new Parcelable.Creator<WM>() { // from class: o.WM.5
@Override // android.os.Parcelable.Creator
public final /* synthetic */ WM createFromParcel(Parcel parcel) {
return new WM(parcel);
}
@Override // android.os.Parcelable.Creator
public final /* bridge */ /* synthetic */ WM[] newArray(int i) {
return new WM[i];
}
};
public String a;
public String b;
public String c;
public String d;
public int f;
public String g;
public String h;
public String i;
public String j;
@Override // o.EQ, android.os.Parcelable
public final int describeContents() {
return 0;
}
public WM() {
}
protected WM(Parcel parcel) {
this.j = parcel.readString();
this.f = parcel.readInt();
this.h = parcel.readString();
this.g = parcel.readString();
this.i = parcel.readString();
this.c = parcel.readString();
this.b = parcel.readString();
this.a = parcel.readString();
this.d = parcel.readString();
}
@Override // o.EQ, android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.j);
parcel.writeInt(this.f);
parcel.writeString(this.h);
parcel.writeString(this.g);
parcel.writeString(this.i);
parcel.writeString(this.c);
parcel.writeString(this.b);
parcel.writeString(this.a);
parcel.writeString(this.d);
}
public static WM b() {
return new WM();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
WM wm = (WM) obj;
if (this.f != wm.f) {
return false;
}
String str = this.j;
if (str == null ? wm.j != null : !str.equals(wm.j)) {
return false;
}
String str2 = this.h;
if (str2 == null ? wm.h != null : !str2.equals(wm.h)) {
return false;
}
String str3 = this.g;
if (str3 == null ? wm.g != null : !str3.equals(wm.g)) {
return false;
}
String str4 = this.i;
if (str4 == null ? wm.i != null : !str4.equals(wm.i)) {
return false;
}
String str5 = this.c;
if (str5 == null ? wm.c != null : !str5.equals(wm.c)) {
return false;
}
String str6 = this.b;
if (str6 == null ? wm.b != null : !str6.equals(wm.b)) {
return false;
}
String str7 = this.a;
if (str7 == null ? wm.a != null : !str7.equals(wm.a)) {
return false;
}
String str8 = this.d;
String str9 = wm.d;
return str8 != null ? str8.equals(str9) : str9 == null;
}
public final int hashCode() {
String str = this.j;
int hashCode = str != null ? str.hashCode() : 0;
int i = this.f;
String str2 = this.h;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.g;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.i;
int hashCode4 = str4 != null ? str4.hashCode() : 0;
String str5 = this.c;
int hashCode5 = str5 != null ? str5.hashCode() : 0;
String str6 = this.b;
int hashCode6 = str6 != null ? str6.hashCode() : 0;
String str7 = this.a;
int hashCode7 = str7 != null ? str7.hashCode() : 0;
String str8 = this.d;
return (((((((((((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (str8 != null ? str8.hashCode() : 0);
}
}