- 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
116 lines
4.4 KiB
Java
116 lines
4.4 KiB
Java
package com.vungle.ads.fpd;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.serialization.KSerializer;
|
|
import kotlinx.serialization.SerialName;
|
|
import kotlinx.serialization.Serializable;
|
|
import kotlinx.serialization.descriptors.SerialDescriptor;
|
|
import kotlinx.serialization.encoding.CompositeEncoder;
|
|
import kotlinx.serialization.internal.IntSerializer;
|
|
import kotlinx.serialization.internal.SerializationConstructorMarker;
|
|
|
|
@Serializable
|
|
/* loaded from: classes4.dex */
|
|
public final class Demographic {
|
|
public static final Companion Companion = new Companion(null);
|
|
private Integer ageRange;
|
|
private Integer lengthOfResidence;
|
|
private Integer medianHomeValueUSD;
|
|
private Integer monthlyHousingPaymentUSD;
|
|
|
|
@SerialName("age_range")
|
|
private static /* synthetic */ void getAgeRange$annotations() {
|
|
}
|
|
|
|
@SerialName("length_of_residence")
|
|
private static /* synthetic */ void getLengthOfResidence$annotations() {
|
|
}
|
|
|
|
@SerialName("median_home_value_usd")
|
|
private static /* synthetic */ void getMedianHomeValueUSD$annotations() {
|
|
}
|
|
|
|
@SerialName("monthly_housing_payment_usd")
|
|
private static /* synthetic */ void getMonthlyHousingPaymentUSD$annotations() {
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final KSerializer<Demographic> serializer() {
|
|
return Demographic$$serializer.INSTANCE;
|
|
}
|
|
}
|
|
|
|
public Demographic() {
|
|
}
|
|
|
|
public /* synthetic */ Demographic(int i, @SerialName("age_range") Integer num, @SerialName("length_of_residence") Integer num2, @SerialName("median_home_value_usd") Integer num3, @SerialName("monthly_housing_payment_usd") Integer num4, SerializationConstructorMarker serializationConstructorMarker) {
|
|
if ((i & 1) == 0) {
|
|
this.ageRange = null;
|
|
} else {
|
|
this.ageRange = num;
|
|
}
|
|
if ((i & 2) == 0) {
|
|
this.lengthOfResidence = null;
|
|
} else {
|
|
this.lengthOfResidence = num2;
|
|
}
|
|
if ((i & 4) == 0) {
|
|
this.medianHomeValueUSD = null;
|
|
} else {
|
|
this.medianHomeValueUSD = num3;
|
|
}
|
|
if ((i & 8) == 0) {
|
|
this.monthlyHousingPaymentUSD = null;
|
|
} else {
|
|
this.monthlyHousingPaymentUSD = num4;
|
|
}
|
|
}
|
|
|
|
public static final void write$Self(Demographic self, CompositeEncoder output, SerialDescriptor serialDesc) {
|
|
Intrinsics.checkNotNullParameter(self, "self");
|
|
Intrinsics.checkNotNullParameter(output, "output");
|
|
Intrinsics.checkNotNullParameter(serialDesc, "serialDesc");
|
|
if (output.shouldEncodeElementDefault(serialDesc, 0) || self.ageRange != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 0, IntSerializer.INSTANCE, self.ageRange);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 1) || self.lengthOfResidence != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 1, IntSerializer.INSTANCE, self.lengthOfResidence);
|
|
}
|
|
if (output.shouldEncodeElementDefault(serialDesc, 2) || self.medianHomeValueUSD != null) {
|
|
output.encodeNullableSerializableElement(serialDesc, 2, IntSerializer.INSTANCE, self.medianHomeValueUSD);
|
|
}
|
|
if (!output.shouldEncodeElementDefault(serialDesc, 3) && self.monthlyHousingPaymentUSD == null) {
|
|
return;
|
|
}
|
|
output.encodeNullableSerializableElement(serialDesc, 3, IntSerializer.INSTANCE, self.monthlyHousingPaymentUSD);
|
|
}
|
|
|
|
public final Demographic setAgeRange(int i) {
|
|
this.ageRange = Integer.valueOf(AgeRange.Companion.fromAge$vungle_ads_release(i).getId());
|
|
return this;
|
|
}
|
|
|
|
public final Demographic setLengthOfResidence(int i) {
|
|
this.lengthOfResidence = Integer.valueOf(LengthOfResidence.Companion.fromYears$vungle_ads_release(i).getId());
|
|
return this;
|
|
}
|
|
|
|
public final Demographic setMedianHomeValueUSD(int i) {
|
|
this.medianHomeValueUSD = Integer.valueOf(MedianHomeValueUSD.Companion.fromPrice$vungle_ads_release(i).getId());
|
|
return this;
|
|
}
|
|
|
|
public final Demographic setMonthlyHousingCosts(int i) {
|
|
this.monthlyHousingPaymentUSD = Integer.valueOf(MonthlyHousingCosts.Companion.fromCost$vungle_ads_release(i).getId());
|
|
return this;
|
|
}
|
|
}
|