Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,302 @@
package androidx.datastore.preferences.protobuf;
import androidx.datastore.preferences.protobuf.GeneratedMessageLite;
import androidx.datastore.preferences.protobuf.WireFormat;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.util.Collections;
import java.util.Map;
/* loaded from: classes.dex */
public final class Struct extends GeneratedMessageLite<Struct, Builder> implements StructOrBuilder {
private static final Struct DEFAULT_INSTANCE;
public static final int FIELDS_FIELD_NUMBER = 1;
private static volatile Parser<Struct> PARSER;
private MapFieldLite<String, Value> fields_ = MapFieldLite.emptyMapField();
public static Struct getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private MapFieldLite<String, Value> internalGetFields() {
return this.fields_;
}
private Struct() {
}
public static final class FieldsDefaultEntryHolder {
static final MapEntryLite<String, Value> defaultEntry = MapEntryLite.newDefaultInstance(WireFormat.FieldType.STRING, "", WireFormat.FieldType.MESSAGE, Value.getDefaultInstance());
private FieldsDefaultEntryHolder() {
}
}
private MapFieldLite<String, Value> internalGetMutableFields() {
if (!this.fields_.isMutable()) {
this.fields_ = this.fields_.mutableCopy();
}
return this.fields_;
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public int getFieldsCount() {
return internalGetFields().size();
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public boolean containsFields(String str) {
str.getClass();
return internalGetFields().containsKey(str);
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
@Deprecated
public Map<String, Value> getFields() {
return getFieldsMap();
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Map<String, Value> getFieldsMap() {
return Collections.unmodifiableMap(internalGetFields());
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Value getFieldsOrDefault(String str, Value value) {
str.getClass();
MapFieldLite<String, Value> internalGetFields = internalGetFields();
return internalGetFields.containsKey(str) ? internalGetFields.get(str) : value;
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Value getFieldsOrThrow(String str) {
str.getClass();
MapFieldLite<String, Value> internalGetFields = internalGetFields();
if (!internalGetFields.containsKey(str)) {
throw new IllegalArgumentException();
}
return internalGetFields.get(str);
}
/* JADX INFO: Access modifiers changed from: private */
public Map<String, Value> getMutableFieldsMap() {
return internalGetMutableFields();
}
public static Struct parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
}
public static Struct parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
}
public static Struct parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
}
public static Struct parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
}
public static Struct parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
}
public static Struct parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
}
public static Struct parseFrom(InputStream inputStream) throws IOException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
}
public static Struct parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
}
public static Struct parseDelimitedFrom(InputStream inputStream) throws IOException {
return (Struct) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
}
public static Struct parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
return (Struct) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
}
public static Struct parseFrom(CodedInputStream codedInputStream) throws IOException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
}
public static Struct parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
return (Struct) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.createBuilder();
}
public static Builder newBuilder(Struct struct) {
return DEFAULT_INSTANCE.createBuilder(struct);
}
public static final class Builder extends GeneratedMessageLite.Builder<Struct, Builder> implements StructOrBuilder {
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
this();
}
private Builder() {
super(Struct.DEFAULT_INSTANCE);
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public int getFieldsCount() {
return ((Struct) this.instance).getFieldsMap().size();
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public boolean containsFields(String str) {
str.getClass();
return ((Struct) this.instance).getFieldsMap().containsKey(str);
}
public Builder clearFields() {
copyOnWrite();
((Struct) this.instance).getMutableFieldsMap().clear();
return this;
}
public Builder removeFields(String str) {
str.getClass();
copyOnWrite();
((Struct) this.instance).getMutableFieldsMap().remove(str);
return this;
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
@Deprecated
public Map<String, Value> getFields() {
return getFieldsMap();
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Map<String, Value> getFieldsMap() {
return Collections.unmodifiableMap(((Struct) this.instance).getFieldsMap());
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Value getFieldsOrDefault(String str, Value value) {
str.getClass();
Map<String, Value> fieldsMap = ((Struct) this.instance).getFieldsMap();
return fieldsMap.containsKey(str) ? fieldsMap.get(str) : value;
}
@Override // androidx.datastore.preferences.protobuf.StructOrBuilder
public Value getFieldsOrThrow(String str) {
str.getClass();
Map<String, Value> fieldsMap = ((Struct) this.instance).getFieldsMap();
if (!fieldsMap.containsKey(str)) {
throw new IllegalArgumentException();
}
return fieldsMap.get(str);
}
public Builder putFields(String str, Value value) {
str.getClass();
value.getClass();
copyOnWrite();
((Struct) this.instance).getMutableFieldsMap().put(str, value);
return this;
}
public Builder putAllFields(Map<String, Value> map) {
copyOnWrite();
((Struct) this.instance).getMutableFieldsMap().putAll(map);
return this;
}
}
/* renamed from: androidx.datastore.preferences.protobuf.Struct$1, reason: invalid class name */
public static /* synthetic */ class AnonymousClass1 {
static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke;
static {
int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length];
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr;
try {
iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4;
} catch (NoSuchFieldError unused4) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5;
} catch (NoSuchFieldError unused5) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
} catch (NoSuchFieldError unused6) {
}
try {
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
} catch (NoSuchFieldError unused7) {
}
}
}
@Override // androidx.datastore.preferences.protobuf.GeneratedMessageLite
public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) {
AnonymousClass1 anonymousClass1 = null;
switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) {
case 1:
return new Struct();
case 2:
return new Builder(anonymousClass1);
case 3:
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0001\u0000\u0000\u00012", new Object[]{"fields_", FieldsDefaultEntryHolder.defaultEntry});
case 4:
return DEFAULT_INSTANCE;
case 5:
Parser<Struct> parser = PARSER;
if (parser == null) {
synchronized (Struct.class) {
try {
parser = PARSER;
if (parser == null) {
parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE);
PARSER = parser;
}
} finally {
}
}
}
return parser;
case 6:
return (byte) 1;
case 7:
return null;
default:
throw new UnsupportedOperationException();
}
}
static {
Struct struct = new Struct();
DEFAULT_INSTANCE = struct;
GeneratedMessageLite.registerDefaultInstance(Struct.class, struct);
}
public static Parser<Struct> parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}