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,233 @@
package com.google.protobuf;
import com.google.protobuf.Internal;
import java.util.AbstractList;
import java.util.Arrays;
import java.util.Collection;
import java.util.RandomAccess;
/* loaded from: classes3.dex */
public final class BooleanArrayList extends AbstractProtobufList implements Internal.BooleanList, RandomAccess, PrimitiveNonBoxingCollection {
private static final BooleanArrayList EMPTY_LIST;
private boolean[] array;
private int size;
public static BooleanArrayList emptyList() {
return EMPTY_LIST;
}
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
public int size() {
return this.size;
}
static {
BooleanArrayList booleanArrayList = new BooleanArrayList(new boolean[0], 0);
EMPTY_LIST = booleanArrayList;
booleanArrayList.makeImmutable();
}
public BooleanArrayList() {
this(new boolean[10], 0);
}
private BooleanArrayList(boolean[] zArr, int i) {
this.array = zArr;
this.size = i;
}
@Override // java.util.AbstractList
public void removeRange(int i, int i2) {
ensureIsMutable();
if (i2 < i) {
throw new IndexOutOfBoundsException("toIndex < fromIndex");
}
boolean[] zArr = this.array;
System.arraycopy(zArr, i2, zArr, i, this.size - i2);
this.size -= i2 - i;
((AbstractList) this).modCount++;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.Collection, java.util.List
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BooleanArrayList)) {
return super.equals(obj);
}
BooleanArrayList booleanArrayList = (BooleanArrayList) obj;
if (this.size != booleanArrayList.size) {
return false;
}
boolean[] zArr = booleanArrayList.array;
for (int i = 0; i < this.size; i++) {
if (this.array[i] != zArr[i]) {
return false;
}
}
return true;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.Collection, java.util.List
public int hashCode() {
int i = 1;
for (int i2 = 0; i2 < this.size; i2++) {
i = (i * 31) + Internal.hashBoolean(this.array[i2]);
}
return i;
}
@Override // com.google.protobuf.Internal.ProtobufList, com.google.protobuf.Internal.BooleanList
/* renamed from: mutableCopyWithCapacity, reason: merged with bridge method [inline-methods] */
public Internal.ProtobufList<Boolean> mutableCopyWithCapacity2(int i) {
if (i < this.size) {
throw new IllegalArgumentException();
}
return new BooleanArrayList(Arrays.copyOf(this.array, i), this.size);
}
@Override // java.util.AbstractList, java.util.List
public Boolean get(int i) {
return Boolean.valueOf(getBoolean(i));
}
@Override // com.google.protobuf.Internal.BooleanList
public boolean getBoolean(int i) {
ensureIndexInRange(i);
return this.array[i];
}
@Override // java.util.AbstractList, java.util.List
public int indexOf(Object obj) {
if (!(obj instanceof Boolean)) {
return -1;
}
boolean booleanValue = ((Boolean) obj).booleanValue();
int size = size();
for (int i = 0; i < size; i++) {
if (this.array[i] == booleanValue) {
return i;
}
}
return -1;
}
@Override // java.util.AbstractCollection, java.util.Collection, java.util.List
public boolean contains(Object obj) {
return indexOf(obj) != -1;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.List
public Boolean set(int i, Boolean bool) {
return Boolean.valueOf(setBoolean(i, bool.booleanValue()));
}
@Override // com.google.protobuf.Internal.BooleanList
public boolean setBoolean(int i, boolean z) {
ensureIsMutable();
ensureIndexInRange(i);
boolean[] zArr = this.array;
boolean z2 = zArr[i];
zArr[i] = z;
return z2;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.AbstractCollection, java.util.Collection, java.util.List
public boolean add(Boolean bool) {
addBoolean(bool.booleanValue());
return true;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.List
public void add(int i, Boolean bool) {
addBoolean(i, bool.booleanValue());
}
@Override // com.google.protobuf.Internal.BooleanList
public void addBoolean(boolean z) {
ensureIsMutable();
int i = this.size;
boolean[] zArr = this.array;
if (i == zArr.length) {
boolean[] zArr2 = new boolean[((i * 3) / 2) + 1];
System.arraycopy(zArr, 0, zArr2, 0, i);
this.array = zArr2;
}
boolean[] zArr3 = this.array;
int i2 = this.size;
this.size = i2 + 1;
zArr3[i2] = z;
}
private void addBoolean(int i, boolean z) {
int i2;
ensureIsMutable();
if (i < 0 || i > (i2 = this.size)) {
throw new IndexOutOfBoundsException(makeOutOfBoundsExceptionMessage(i));
}
boolean[] zArr = this.array;
if (i2 < zArr.length) {
System.arraycopy(zArr, i, zArr, i + 1, i2 - i);
} else {
boolean[] zArr2 = new boolean[((i2 * 3) / 2) + 1];
System.arraycopy(zArr, 0, zArr2, 0, i);
System.arraycopy(this.array, i, zArr2, i + 1, this.size - i);
this.array = zArr2;
}
this.array[i] = z;
this.size++;
((AbstractList) this).modCount++;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractCollection, java.util.Collection, java.util.List
public boolean addAll(Collection<? extends Boolean> collection) {
ensureIsMutable();
Internal.checkNotNull(collection);
if (!(collection instanceof BooleanArrayList)) {
return super.addAll(collection);
}
BooleanArrayList booleanArrayList = (BooleanArrayList) collection;
int i = booleanArrayList.size;
if (i == 0) {
return false;
}
int i2 = this.size;
if (Integer.MAX_VALUE - i2 < i) {
throw new OutOfMemoryError();
}
int i3 = i2 + i;
boolean[] zArr = this.array;
if (i3 > zArr.length) {
this.array = Arrays.copyOf(zArr, i3);
}
System.arraycopy(booleanArrayList.array, 0, this.array, this.size, booleanArrayList.size);
this.size = i3;
((AbstractList) this).modCount++;
return true;
}
@Override // com.google.protobuf.AbstractProtobufList, java.util.AbstractList, java.util.List
public Boolean remove(int i) {
ensureIsMutable();
ensureIndexInRange(i);
boolean[] zArr = this.array;
boolean z = zArr[i];
if (i < this.size - 1) {
System.arraycopy(zArr, i + 1, zArr, i, (r2 - i) - 1);
}
this.size--;
((AbstractList) this).modCount++;
return Boolean.valueOf(z);
}
private void ensureIndexInRange(int i) {
if (i < 0 || i >= this.size) {
throw new IndexOutOfBoundsException(makeOutOfBoundsExceptionMessage(i));
}
}
private String makeOutOfBoundsExceptionMessage(int i) {
return "Index:" + i + ", Size:" + this.size;
}
}