- 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
93 lines
3.8 KiB
Java
93 lines
3.8 KiB
Java
package com.vungle.ads.internal.model;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlinx.serialization.KSerializer;
|
|
import kotlinx.serialization.UnknownFieldException;
|
|
import kotlinx.serialization.descriptors.SerialDescriptor;
|
|
import kotlinx.serialization.encoding.CompositeDecoder;
|
|
import kotlinx.serialization.encoding.CompositeEncoder;
|
|
import kotlinx.serialization.encoding.Decoder;
|
|
import kotlinx.serialization.encoding.Encoder;
|
|
import kotlinx.serialization.internal.GeneratedSerializer;
|
|
import kotlinx.serialization.internal.PluginGeneratedSerialDescriptor;
|
|
import kotlinx.serialization.internal.SerializationConstructorMarker;
|
|
import kotlinx.serialization.internal.StringSerializer;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class UnclosedAd$$serializer implements GeneratedSerializer<UnclosedAd> {
|
|
public static final UnclosedAd$$serializer INSTANCE;
|
|
public static final /* synthetic */ SerialDescriptor descriptor;
|
|
|
|
public SerialDescriptor getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
|
|
static {
|
|
UnclosedAd$$serializer unclosedAd$$serializer = new UnclosedAd$$serializer();
|
|
INSTANCE = unclosedAd$$serializer;
|
|
SerialDescriptor pluginGeneratedSerialDescriptor = new PluginGeneratedSerialDescriptor("com.vungle.ads.internal.model.UnclosedAd", unclosedAd$$serializer, 2);
|
|
pluginGeneratedSerialDescriptor.addElement("107", false);
|
|
pluginGeneratedSerialDescriptor.addElement("101", true);
|
|
descriptor = pluginGeneratedSerialDescriptor;
|
|
}
|
|
|
|
private UnclosedAd$$serializer() {
|
|
}
|
|
|
|
public KSerializer<?>[] childSerializers() {
|
|
return new KSerializer[]{(KSerializer) StringSerializer.INSTANCE, (KSerializer) StringSerializer.INSTANCE};
|
|
}
|
|
|
|
/* renamed from: deserialize, reason: merged with bridge method [inline-methods] */
|
|
public UnclosedAd m3940deserialize(Decoder decoder) {
|
|
String str;
|
|
String str2;
|
|
int i;
|
|
Intrinsics.checkNotNullParameter(decoder, "decoder");
|
|
SerialDescriptor descriptor2 = getDescriptor();
|
|
CompositeDecoder beginStructure = decoder.beginStructure(descriptor2);
|
|
if (beginStructure.decodeSequentially()) {
|
|
str = beginStructure.decodeStringElement(descriptor2, 0);
|
|
str2 = beginStructure.decodeStringElement(descriptor2, 1);
|
|
i = 3;
|
|
} else {
|
|
boolean z = true;
|
|
int i2 = 0;
|
|
str = null;
|
|
String str3 = null;
|
|
while (z) {
|
|
int decodeElementIndex = beginStructure.decodeElementIndex(descriptor2);
|
|
if (decodeElementIndex == -1) {
|
|
z = false;
|
|
} else if (decodeElementIndex == 0) {
|
|
str = beginStructure.decodeStringElement(descriptor2, 0);
|
|
i2 |= 1;
|
|
} else {
|
|
if (decodeElementIndex != 1) {
|
|
throw new UnknownFieldException(decodeElementIndex);
|
|
}
|
|
str3 = beginStructure.decodeStringElement(descriptor2, 1);
|
|
i2 |= 2;
|
|
}
|
|
}
|
|
str2 = str3;
|
|
i = i2;
|
|
}
|
|
beginStructure.endStructure(descriptor2);
|
|
return new UnclosedAd(i, str, str2, (SerializationConstructorMarker) null);
|
|
}
|
|
|
|
public void serialize(Encoder encoder, UnclosedAd value) {
|
|
Intrinsics.checkNotNullParameter(encoder, "encoder");
|
|
Intrinsics.checkNotNullParameter(value, "value");
|
|
SerialDescriptor descriptor2 = getDescriptor();
|
|
CompositeEncoder beginStructure = encoder.beginStructure(descriptor2);
|
|
UnclosedAd.write$Self(value, beginStructure, descriptor2);
|
|
beginStructure.endStructure(descriptor2);
|
|
}
|
|
|
|
public KSerializer<?>[] typeParametersSerializers() {
|
|
return GeneratedSerializer.DefaultImpls.typeParametersSerializers(this);
|
|
}
|
|
}
|