mireo 1.1.1

This commit is contained in:
yuyl 2025-05-10 09:21:41 +08:00
parent 3f4e2cc163
commit 806d470aac
909 changed files with 135211 additions and 997 deletions

View File

@ -1,16 +0,0 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
/app/release

View File

@ -1,47 +0,0 @@
package com.localee.mireo.app.ui.activity
import android.content.Intent
import android.net.Uri
import android.view.View
import com.localee.mireo.shortapp.R
import com.localee.mireo.app.app.AppActivity
import com.localee.mireo.app.other.MsConstants
import com.localee.mireo.app.utils.singleClick
class AboutActivity : AppActivity() {
override fun getLayoutId(): Int {
return R.layout.about_activity
}
override fun initView() {
setOnClickListener(R.id.sb_about_web, R.id.sb_about_privacy, R.id.sb_about_agreement)
}
override fun initData() {
}
override fun onClick(view: View) {
singleClick {
when (view.id) {
R.id.sb_about_web -> {
val webIntent = Intent(Intent.ACTION_VIEW, Uri.parse(MsConstants.Constants_web))
startActivity(webIntent)
}
R.id.sb_about_privacy -> {
BrowserActivity.start(this, MsConstants.Constants_privacy_policy)
}
R.id.sb_about_agreement -> {
BrowserActivity.start(this, MsConstants.Constants_user_agreement)
}
}
}
}
}

View File

@ -1,69 +0,0 @@
package com.localee.mireo.app.ui.adapter
import android.content.Context
import android.graphics.Color
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.recyclerview.widget.RecyclerView
import com.chad.library.adapter4.BaseQuickAdapter
import com.localee.mireo.app.http.bean.PaySettingsBean
import com.localee.mireo.shortapp.R
import com.localee.mireo.shortapp.databinding.ItemVipBuyBinding
class MyVipBuyAdapter : BaseQuickAdapter<PaySettingsBean.Vip, MyVipBuyAdapter.VH>() {
var currentPosition = -1
class VH(
parent: ViewGroup,
val binding: ItemVipBuyBinding = ItemVipBuyBinding.inflate(
LayoutInflater.from(parent.context), parent, false
),
) : RecyclerView.ViewHolder(binding.root)
override fun onCreateViewHolder(context: Context, parent: ViewGroup, viewType: Int): VH {
return VH(parent)
}
override fun onBindViewHolder(holder: VH, position: Int, item: PaySettingsBean.Vip?) {
if (null != item) {
holder.binding.tvDay.text = item.brief
holder.binding.tvMoney.text = item.price_google
when (item.vip_type_key) {
"week" -> {
holder.binding.llContent.setBackgroundResource(R.mipmap.ic_vip_week_bg)
holder.binding.tvDay.setTextColor(Color.parseColor("#71412B"))
holder.binding.tvMoney.setTextColor(Color.parseColor("#71412B"))
}
"month" -> {
holder.binding.llContent.setBackgroundResource(R.mipmap.ic_vip_month_bg)
holder.binding.tvDay.setTextColor(Color.parseColor("#7E0026"))
holder.binding.tvMoney.setTextColor(Color.parseColor("#7E0026"))
}
"quarter" -> {
holder.binding.llContent.setBackgroundResource(R.mipmap.ic_vip_quarter_bg)
holder.binding.tvDay.setTextColor(Color.parseColor("#0E008A"))
holder.binding.tvMoney.setTextColor(Color.parseColor("#0E008A"))
}
"year" -> {
holder.binding.llContent.setBackgroundResource(R.mipmap.ic_vip_year_bg)
holder.binding.tvDay.setTextColor(Color.parseColor("#00516A"))
holder.binding.tvMoney.setTextColor(Color.parseColor("#00516A"))
}
}
if (currentPosition == position) {
holder.binding.flSelect.visibility = View.VISIBLE
} else {
holder.binding.flSelect.visibility = View.GONE
}
}
}
}

View File

@ -1,79 +0,0 @@
package com.localee.mireo.app.ui.popup
import android.content.Context
import android.graphics.Color
import android.text.SpannableString
import android.text.method.LinkMovementMethod
import android.text.style.ClickableSpan
import android.view.View
import android.widget.ImageView
import android.widget.TextView
import com.localee.mireo.app.other.MsConstants
import com.localee.mireo.app.ui.activity.BrowserActivity
import com.localee.mireo.app.widget.CustomClickableSpan
import com.localee.mireo.shortapp.R
import com.lxj.xpopup.core.BottomPopupView
class CustomBottomLoginPopup(context: Context, val popupOnclick: CustomPopupOnclick?) :
BottomPopupView(context) {
interface CustomPopupOnclick {
fun onFacebook()
fun onGoogle()
fun onTikTok()
}
override fun getImplLayoutId(): Int {
return R.layout.custom_bottom_login_popup
}
override fun onCreate() {
super.onCreate()
val ivClose = findViewById<ImageView>(R.id.iv_close)
val tvFacebook = findViewById<TextView>(R.id.tv_facebook)
val tvFirst = findViewById<TextView>(R.id.tv_first)
val tvGoogle = findViewById<TextView>(R.id.tv_google)
val tvTiktok = findViewById<TextView>(R.id.tv_tiktok)
val tvPolicy = findViewById<TextView>(R.id.tv_policy)
ivClose.setOnClickListener {
dismiss()
}
tvFacebook.setOnClickListener {
popupOnclick?.onFacebook()
dismiss()
}
tvGoogle.setOnClickListener {
popupOnclick?.onGoogle()
dismiss()
}
tvTiktok.setOnClickListener {
popupOnclick?.onTikTok()
dismiss()
}
val fullText = "By logging in you agree to: User Agreement & Privacy Policy"
val spannableString = SpannableString(fullText)
val start1 = fullText.indexOf("User")
val end1 = fullText.indexOf("t ") + 1
val start2 = fullText.lastIndexOf("Pri")
val end2 = fullText.length
spannableString.setSpan(
CustomClickableSpan(Color.parseColor("#FF888888")) {
BrowserActivity.start(context, MsConstants.Constants_user_agreement)
},
start1, end1, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE
)
spannableString.setSpan(
CustomClickableSpan(Color.parseColor("#FF888888")) {
BrowserActivity.start(context, MsConstants.Constants_privacy_policy)
},
start2, end2, SpannableString.SPAN_EXCLUSIVE_EXCLUSIVE
)
tvPolicy.text = spannableString
tvPolicy.movementMethod = LinkMovementMethod.getInstance() // 必须设置!
}
}

View File

@ -1,110 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/example_color_121418">
<com.hjq.bar.TitleBar
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:leftIcon="@mipmap/iv_example_back"
app:lineVisible="false"
app:title="Language Switch"
app:titleColor="@color/white" />
<com.hjq.shape.layout.ShapeConstraintLayout
android:id="@+id/cl_system"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_16"
android:layout_marginTop="@dimen/dp_10"
android:padding="@dimen/dp_10"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title"
app:shape_strokeColor="#ffff0049"
app:shape_strokeSize="0dp"
app:shape_radius="@dimen/dp_10"
app:shape_solidColor="#ff272a30">
<com.hjq.shape.view.ShapeCheckBox
android:id="@+id/cb_system"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/sp_10"
android:background="@null"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
app:buttonCompat="@drawable/checkbox_selector"
app:layout_constraintEnd_toEndOf="@+id/tv_system"
app:layout_constraintStart_toStartOf="@+id/tv_system" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_system"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_10"
android:text="System Language"
android:textColor="@color/white"
android:textSize="@dimen/sp_12"
app:layout_constraintTop_toBottomOf="@+id/cb_system" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_description"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:lineSpacingExtra="@dimen/dp_2"
android:text="The option here is to match based on thecurrent phone language system, which is thesame as the phone system language"
android:textColor="@color/white"
android:textSize="12sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/tv_system" />
</com.hjq.shape.layout.ShapeConstraintLayout>
<com.localee.mireo.app.widget.StatusLayout
android:id="@+id/hl_status_hint"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginHorizontal="@dimen/dp_16"
android:layout_marginVertical="@dimen/dp_10"
app:layout_constraintBottom_toTopOf="@+id/tv_ok"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cl_system">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.localee.mireo.app.widget.StatusLayout>
<com.hjq.shape.view.ShapeTextView
android:id="@+id/tv_ok"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_42"
android:layout_marginHorizontal="@dimen/dp_16"
android:layout_marginVertical="@dimen/dp_10"
android:gravity="center"
android:text="OK"
android:textColor="@color/white"
android:textSize="@dimen/sp_15"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:shape_radius="@dimen/dp_22"
app:shape_solidGradientEndColor="#ffff009f"
app:shape_solidGradientOrientation="bottomToTop"
app:shape_solidGradientStartColor="#ff0049" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -1,50 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<com.hjq.shape.layout.ShapeConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_139"
app:shape_radius="@dimen/dp_10"
app:shape_solidColor="#ff272a30">
<com.hjq.shape.view.ShapeCheckBox
android:id="@+id/cb_select_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/dp_10"
android:background="@null"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
app:buttonCompat="@drawable/checkbox_selector"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_10"
android:layout_marginTop="@dimen/dp_30"
android:maxLines="1"
android:text=""
android:textSize="@dimen/sp_14"
android:textColor="@color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/dp_10"
android:layout_marginTop="@dimen/dp_10"
android:maxLines="4"
android:text=""
android:textSize="@dimen/sp_14"
android:textColor="@color/white"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tv_name" />
</com.hjq.shape.layout.ShapeConstraintLayout>

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll_item"
android:layout_width="@dimen/dp_100"
android:layout_height="@dimen/dp_117"
android:layout_marginEnd="@dimen/dp_6"
android:orientation="vertical">
<LinearLayout
android:id="@+id/ll_content"
android:layout_width="@dimen/dp_94"
android:layout_height="@dimen/dp_111"
android:layout_margin="@dimen/dp_3"
android:background="@mipmap/ic_vip_week_bg"
android:orientation="vertical">
<TextView
android:id="@+id/tv_day"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/dp_10"
android:gravity="center_horizontal"
android:text="Weekly"
android:textColor="@color/white"
android:textSize="@dimen/sp_13" />
<TextView
android:id="@+id/tv_money"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/dp_20"
android:text="2.99"
android:textColor="#FFB69A"
android:textSize="@dimen/sp_19"
android:textStyle="bold" />
</LinearLayout>
<FrameLayout
android:id="@+id/fl_select"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/ic_vip_item_bg"
android:visibility="gone">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:src="@mipmap/ic_vip_item_yes" />
</FrameLayout>
</FrameLayout>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -8,8 +8,10 @@ apply from: '../common.gradle'
android {
defaultConfig {
applicationId 'com.localee.mireo.shortapp'
resConfigs 'zh'
resConfigs 'xxhdpi'
proguardFiles 'proguard-sdk.pro', 'proguard-app.pro'
buildConfigField('boolean', 'LOG_ENABLE', '' + LOG_ENABLE + '')
@ -77,8 +79,6 @@ android {
exclude 'META-INF/*******'
}
applicationVariants.all { variant ->
variant.outputs.all { output ->
outputFileName = rootProject.getName() + '_v' + variant.versionName + '_' + variant.buildType.name
@ -88,7 +88,6 @@ android {
outputFileName += '.apk'
}
}
sourceSets {
main {
res.srcDirs(
@ -100,7 +99,6 @@ android {
}
dependencies {
implementation 'com.github.getActivity:TitleBar:9.2'
implementation 'com.github.getActivity:ToastUtils:9.5'
@ -118,36 +116,40 @@ dependencies {
implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
implementation 'com.airbnb.android:lottie:4.1.0'
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3'
implementation 'com.scwang.smart:refresh-header-material:2.0.3'
implementation 'com.tencent:mmkv-static:1.2.10'
implementation 'com.tencent:mmkv:1.3.0'
// banner
implementation 'io.github.youth5201314:banner:2.2.3'
implementation "io.github.cymchad:BaseRecyclerViewAdapterHelper4:4.1.4"
implementation "com.afollestad.material-dialogs:core:3.3.0"
implementation "com.afollestad.material-dialogs:lifecycle:3.3.0"
implementation "com.afollestad.material-dialogs:core:3.1.1"
implementation "com.afollestad.material-dialogs:lifecycle:3.1.1"
implementation "androidx.media3:media3-ui:1.4.0"
implementation "androidx.media3:media3-exoplayer:1.4.0"
implementation "androidx.media3:media3-exoplayer-dash:1.4.0"
implementation "androidx.media3:media3-exoplayer-hls:1.4.0"
implementation(files("libs/lib-decoder-ffmpeg-release.aar"))
implementation(files("libs/lib-drama-decoder-ffmpeg.aar"))
implementation "org.greenrobot:eventbus:3.3.1"
implementation("com.blankj:utilcodex:1.31.1")
implementation("com.github.li-xiaojun:XPopup:2.10.0")
implementation("com.android.billingclient:billing:7.0.0")
implementation("com.facebook.android:facebook-android-sdk:17.0.2")
implementation("com.adjust.sdk:adjust-android:5.2.0")
implementation("com.adjust.sdk:adjust-android-webbridge:5.2.0")
implementation("com.android.installreferrer:installreferrer:2.2")
implementation("com.android.billingclient:billing:7.0.0")
implementation(platform("com.google.firebase:firebase-bom:32.3.1"))
implementation("com.google.firebase:firebase-messaging-ktx:24.0.0")
@ -157,4 +159,6 @@ dependencies {
implementation("com.google.firebase:firebase-perf")
implementation("com.github.centerzx:ShapeBlurView:1.0.5")
implementation("com.google.android.flexbox:flexbox:3.0.0")
}

View File

@ -1,5 +1,37 @@
#-ignorewarning
-libraryjars libs/lib-drama-decoder-ffmpeg.aar
-keep class com.localee.mireo.drama.declinedEzos.chromamc.** {
<fields>;
}
-keep class com.localee.mireo.drama.declinedEzos.uninitialized.** {
<fields>;
}
-keep class com.localee.mireo.drama.declinedEzos.yuvp.** {
<fields>;
}
-keep public class * extends android.view.View{
*** get*();
void set*(***);
public <init>(android.content.Context);
public <init>(android.content.Context, android.util.AttributeSet);
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * {
public void *(android.view.View);
}
#-ignorewarning
-keep public class * extends androidx.appcompat.app.AppCompatActivity
-keep public class * extends androidx.fragment.app.Fragment
-keep public class * extends android.app.Application
@ -170,8 +202,6 @@
}
-libraryjars libs/lib-decoder-ffmpeg-release.aar
-keep class com.localee.mireo.app.http.api.** {
<fields>;
}

View File

@ -14,10 +14,14 @@
# for DexGuard only
#-keepresourcexmlelements manifest/application/meta-data@value=GlideModule
# AOP
-adaptclassstrings
-keepattributes InnerClasses, EnclosingMethod, Signature, *Annotation*
-keepnames @org.aspectj.lang.annotation.Aspect class * {
public <methods>;
}
# OkHttp3
-keepattributes Signature
@ -37,6 +41,10 @@
-keep class com.hjq.toast.** {*;}
-keep class com.hjq.shape.** {*;}
-dontwarn com.lxj.xpopup.widget.**
-keep class com.lxj.xpopup.widget.**{*;}
-keep class com.adjust.sdk.** { *; }
-keep class com.google.android.gms.common.ConnectionResult {
int SUCCESS;

View File

@ -1,34 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
xmlns:tools="http://schemas.android.com/tools"
>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application
android:name="com.localee.mireo.app.app.AppApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_app_logo"
android:icon="@mipmap/input_stop_quality"
android:label="${app_name}"
android:networkSecurityConfig="@xml/network_security_config"
android:networkSecurityConfig="@xml/zf_info_click"
android:requestLegacyExternalStorage="true"
android:resizeableActivity="true"
android:roundIcon="@mipmap/ic_app_logo"
android:roundIcon="@mipmap/input_stop_quality"
android:supportsRtl="false"
android:theme="@style/Theme.Example"
android:usesCleartextTraffic="true"
tools:ignore="AllowBackup,LockedOrientationActivity"
tools:replace="android:allowBackup,android:supportsRtl">
tools:replace="android:allowBackup,android:supportsRtl"
>
<meta-data
android:name="ScopedStorage"
@ -39,7 +35,6 @@
<meta-data
android:name="com.facebook.sdk.ClientToken"
android:value="@string/facebook_client_token" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
@ -48,9 +43,88 @@
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
android:resource="@xml/tu_seekbar" />
</provider>
<activity
android:name="com.localee.mireo.admins.OUnlockWarningActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.CNBFragmentSystemActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.YPulseColorsActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.EIPLineRecommendActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.EModuleCollectionActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.XZShortActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.admins.BSGButtonMavenActivity"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.HEDDramaActivity"
android:exported="true"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:theme="@style/Theme.Splash"
>
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
<!-- <action android:name="android.intent.action.VIEW" />-->
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
<!-- </intent-filter>-->
</activity>
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.FLQAboutActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.MRecyclerAboutActivity"
android:label="@string/brightnessCache"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.OLineActivity"
android:label="@string/menuGood"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.ATransparentStandActivity"
android:label="@string/searchEventResult"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.GNModityHalfActivity"
android:launchMode="singleTask" />
<activity
android:name="com.localee.mireo.drama.probableAligning.savedIdctdsp.WTextSettingsActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait" />
<activity
android:name="com.localee.mireo.app.ui.activity.SplashActivity"
android:exported="true"
@ -101,7 +175,8 @@
<activity
android:name="com.localee.mireo.app.ui.activity.VideoPlayActivity"
android:launchMode="singleTask" />
android:launchMode="singleTask"
/>
<activity
android:name="com.localee.mireo.app.ui.activity.SearchActivity"

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,292 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class BSGButtonMavenActivity extends Activity {
float orderLengthAnimating = 0.0f;
HashMap destroyMedium;
private HashMap max_o9Local_mfEnable_i;
private boolean leftShake = false;
private double deteleLottieHistory = 0.0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_bsgbuttonmavenactivity);
this.max_o9Local_mfEnable_i = new HashMap();
this.leftShake = true;
this.deteleLottieHistory = 2891.0;
this.init_finishDialog();
}
private void init_finishDialog() {
}
public int playSchemeSucceed() {
long modityNormal = 2910L;
double loadingPlay = 3393.0;
int popupSplash = 2380;
int runningWheel = 0;
modityNormal *= 28;
int j_90 = (int)modityNormal;
j_90 *= 78;
loadingPlay = 4605;
double temp_e_75 = (double)loadingPlay;
if (temp_e_75 > 718.0) {
double n_31 = 1.0;
double x_69 = 1.0;
if (temp_e_75 > x_69) {
temp_e_75 = x_69;
}
while (n_31 <= temp_e_75) {
n_31 += 1;
temp_e_75 -= n_31;
break;
}
}
popupSplash += 17;
runningWheel *= popupSplash;
return runningWheel;
}
public String inputUserRequest(boolean notificationAndroid, double animationBuilder) {
float splashTwo = 2792.0f;
int tringStyles = 7758;
String keyboardQuality = "jstring";
String arfqLibversionReqstate = "avatars";
if (splashTwo <= 128 && splashTwo >= -128){
int drama_a = Math.min(1, new Random().nextInt(30)) % arfqLibversionReqstate.length();
arfqLibversionReqstate += splashTwo + "";
}
int temp_z_81 = (int)splashTwo;
int l_60 = 0;
for (int o_94 = (int)temp_z_81; o_94 >= temp_z_81 - 1; o_94--) {
l_60 += (int)o_94;
if (o_94 > 0) {
temp_z_81 += (int)o_94;
break;
}
int u_49 = (int)l_60;
switch (u_49) {
case 92: {
u_49 += 38;
u_49 += 52;
break;
}
case 95: {
u_49 -= 53;
break;
}
case 3: {
u_49 += 83;
break;
}
default:
break;
}
break;
}
if (tringStyles >= -128 && tringStyles <= 128){
int loading_l = Math.min(1, new Random().nextInt(72)) % arfqLibversionReqstate.length();
arfqLibversionReqstate += tringStyles + "";
}
int w_28 = (int)tringStyles;
if (w_28 <= 219) {
w_28 *= 33;
switch (w_28) {
case 1: {
w_28 -= 71;
break;
}
case 56: {
w_28 += 21;
break;
}
case 11: {
w_28 += 15;
break;
}
case 75: {
w_28 *= 83;
break;
}
case 40: {
w_28 += 69;
if (w_28 >= 945) {
w_28 += 31;
}
break;
}
default:
break;
}
}
if (keyboardQuality.equals("item")) {
System.out.println("keyboardQuality" + keyboardQuality);
}
if (keyboardQuality != null) {
int charset_l = Math.min(1, new Random().nextInt(80)) % keyboardQuality.length();
int more_x = Math.min(1, new Random().nextInt(39)) % arfqLibversionReqstate.length();
int resource_p = Math.min(charset_l,more_x);
if (resource_p > 0){
for(int i = 0; i < Math.min(1, resource_p); i++){
arfqLibversionReqstate += keyboardQuality.charAt(i);
}
}
}
return arfqLibversionReqstate;
}
public float inflateLeftPause(long halfService, float offsetResumed, String detailCompound) {
long objectOffset = 4270L;
float mainStyles = 5298.0f;
long transparentTips = 8763L;
int pathRecommend = 8527;
float selectingAvframe = 0;
objectOffset += 24;
int tmp_t_92 = (int)objectOffset;
int m_61 = 0;
int v_57 = 1;
if (tmp_t_92 > v_57) {
tmp_t_92 = v_57;
}
for (int v_66 = 0; v_66 <= tmp_t_92; v_66++) {
m_61 += (int)v_66;
if (v_66 > 0) {
tmp_t_92 -= (int)v_66;
break;
}
int l_83 = (int)m_61;
int p_46 = 0;
for (int u_69 = (int)l_83; u_69 >= l_83 - 1; u_69--) {
p_46 += (int)u_69;
if (u_69 > 0) {
l_83 += (int)u_69;
break;
}
int e_60 = (int)p_46;
break;
}
break;
}
mainStyles += mainStyles;
selectingAvframe -= mainStyles;
int temp_d_55 = (int)mainStyles;
switch (temp_d_55) {
case 84: {
temp_d_55 += 64;
break;
}
case 83: {
temp_d_55 += 25;
temp_d_55 *= 3;
break;
}
case 35: {
if (temp_d_55 > 582) {
temp_d_55 *= 65;
}
break;
}
default:
break;
}
transparentTips -= 13;
pathRecommend = 6173;
return selectingAvframe;
}
public ArrayList flingModeDivide() {
boolean restoreEmptyview = false;
int utlisRewards = 2653;
ArrayList dividorsHighpass = new ArrayList();
restoreEmptyview = true;
int long_k3_len1 = dividorsHighpass.size();
int max___u = Math.min(new Random().nextInt(37), 1) % Math.max(1, dividorsHighpass.size());
dividorsHighpass.add(max___u, restoreEmptyview);
utlisRewards += utlisRewards;
int resumed_len1 = dividorsHighpass.size();
int footer_h = Math.min(new Random().nextInt(36), 1) % Math.max(1, dividorsHighpass.size());
dividorsHighpass.add(footer_h, utlisRewards);
int s_13 = (int)utlisRewards;
int v_21 = 0;
int r_48 = 0;
if (s_13 > r_48) {
s_13 = r_48;
}
for (int p_34 = 1; p_34 < s_13; p_34++) {
v_21 += (int)p_34;
if (p_34 > 0) {
s_13 -= (int)p_34;
break;
}
break;
}
return dividorsHighpass;
}
public long succeedFocus() {
int changeTwo = 2337;
String pagerScrollable = "passive";
System.out.println(pagerScrollable);
long edgesOfferedTablegen = 0;
changeTwo = changeTwo;
int tmp_u_38 = (int)changeTwo;
tmp_u_38 *= 25;
return edgesOfferedTablegen;
}
}

View File

@ -0,0 +1,527 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class CNBFragmentSystemActivity extends Activity {
int leftBuild = 0;
long startSettingTime_i = 0L;
int numberType_4Corner = 0;
private double footerManifest = 0.0;
private boolean bundleSplash = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cnbfragmentsystemactivity);
this.footerManifest = 16.0;
this.bundleSplash = false;
this.init_beforeMoreOffset();
}
private void init_beforeMoreOffset() {
}
public ArrayList titleRefreshing() {
float hintCode = 2291.0f;
System.out.println(hintCode);
String jobMessage = "imports";
boolean resourcesPaly = false;
ArrayList imerCurveUdta = new ArrayList();
hintCode += 23;
int manual_len1 = imerCurveUdta.size();
int exampleplaying_a = Math.min(new Random().nextInt(55), 1) % Math.max(1, imerCurveUdta.size());
imerCurveUdta.add(exampleplaying_a, hintCode);
int w_34 = (int)hintCode;
w_34 *= 47;
if (jobMessage.equals("toast")) {
System.out.println(jobMessage);
}
if (null != jobMessage) {
for(int i = 0; i < Math.min(1, jobMessage.length()); i++) {
System.out.println(jobMessage.charAt(i));
}
}
return imerCurveUdta;
}
public boolean size_2Package_e(long unlockAndroid) {
long loggerRating = 4557L;
System.out.println(loggerRating);
int draggedSerise = 605;
double dimensScroll = 2105.0;
boolean subpartitionPixfmtsMoving = false;
loggerRating *= loggerRating;
subpartitionPixfmtsMoving = loggerRating > 68;
int temp_t_28 = (int)loggerRating;
switch (temp_t_28) {
case 90: {
int l_76 = 1;
int e_32 = 0;
if (temp_t_28 > e_32) {
temp_t_28 = e_32;
}
while (l_76 < temp_t_28) {
l_76 += 1;
temp_t_28 *= l_76;
break;
}
break;
}
case 98: {
temp_t_28 *= 59;
int h_66 = 0;
int y_2 = 1;
if (temp_t_28 > y_2) {
temp_t_28 = y_2;
}
for (int p_27 = 0; p_27 < temp_t_28; p_27++) {
h_66 += (int)p_27;
if (p_27 > 0) {
temp_t_28 -= (int)p_27;
break;
}
int w_34 = (int)h_66;
break;
}
break;
}
case 81: {
temp_t_28 *= 67;
break;
}
case 29: {
int l_13 = 0;
int s_43 = 0;
if (temp_t_28 > s_43) {
temp_t_28 = s_43;
}
for (int t_42 = 1; t_42 < temp_t_28; t_42++) {
l_13 += (int)t_42;
temp_t_28 *= t_42;
break;
}
break;
}
case 61: {
temp_t_28 *= 83;
temp_t_28 *= 96;
break;
}
case 15: {
if (temp_t_28 < 176) {
temp_t_28 *= 27;
}
break;
}
case 75: {
temp_t_28 *= 91;
int a_6 = 0;
for (int t_54 = (int)temp_t_28; t_54 > temp_t_28 - 1; t_54--) {
a_6 += (int)t_54;
if (t_54 > 0) {
temp_t_28 += (int)t_54;
break;
}
int w_80 = (int)a_6;
break;
}
break;
}
case 54: {
temp_t_28 *= 99;
break;
}
default:
break;
}
draggedSerise -= 15;
subpartitionPixfmtsMoving = draggedSerise > 4;
int _r_52 = (int)draggedSerise;
switch (_r_52) {
case 73: {
_r_52 += 20;
_r_52 -= 56;
break;
}
case 98: {
int k_17 = 0;
for (int y_83 = (int)_r_52; y_83 >= _r_52 - 1; y_83--) {
k_17 += (int)y_83;
if (y_83 > 0) {
_r_52 += (int)y_83;
break;
}
_r_52 -= 30;
break;
}
break;
}
case 71: {
_r_52 += 44;
int t_11 = 1;
int o_16 = 1;
if (_r_52 > o_16) {
_r_52 = o_16;
}
while (t_11 <= _r_52) {
t_11 += 1;
_r_52 += t_11;
break;
}
break;
}
case 99: {
_r_52 += 71;
_r_52 -= 12;
break;
}
case 43: {
_r_52 -= 4;
_r_52 *= 39;
break;
}
case 14: {
int r_36 = 1;
int e_76 = 1;
if (_r_52 > e_76) {
_r_52 = e_76;
}
while (r_36 <= _r_52) {
r_36 += 1;
_r_52 -= r_36;
int g_53 = (int)r_36;
break;
}
break;
}
case 28: {
_r_52 += 78;
break;
}
case 23: {
_r_52 += 87;
int m_77 = 0;
int y_92 = 1;
if (_r_52 > y_92) {
_r_52 = y_92;
}
for (int t_96 = 1; t_96 < _r_52; t_96++) {
m_77 += (int)t_96;
if (t_96 > 0) {
_r_52 -= (int)t_96;
break;
}
_r_52 -= 5;
break;
}
break;
}
case 24: {
_r_52 += 20;
break;
}
case 84: {
_r_52 -= 54;
_r_52 += 49;
break;
}
default:
break;
}
dimensScroll *= 4;
subpartitionPixfmtsMoving = dimensScroll > 57;
return subpartitionPixfmtsMoving;
}
public int totalAddressProgress(double roundDestroy) {
String package_v7Controller = "volume";
boolean regexSoft = true;
String obtainAlpha = "transformer";
float titleButton = 1314.0f;
int avciDcaadpcmClamped = 0;
regexSoft = true;
avciDcaadpcmClamped *= regexSoft ? 1 : 86;
titleButton -= 21;
int temp_h_99 = (int)titleButton;
int m_99 = 1;
int u_99 = 1;
if (temp_h_99 > u_99) {
temp_h_99 = u_99;
}
while (m_99 <= temp_h_99) {
m_99 += 1;
int h_58 = (int)m_99;
if (h_58 >= 426) {
}
else if (h_58 >= 505) {
h_58 -= 55;
}
break;
}
return avciDcaadpcmClamped;
}
public boolean arrayHolder(boolean aroundBrowser, float countStand) {
String slidingCheckbox = "buffered";
double playingOne = 4293.0;
long nestedSliding = 9192L;
boolean properySubdecoder = false;
playingOne -= 68;
properySubdecoder = playingOne > 45;
double temp_o_5 = (double)playingOne;
switch ((int)temp_o_5) {
case 59: {
temp_o_5 += 1.0;
if (temp_o_5 == 680.0) {
temp_o_5 *= 4.0;
temp_o_5 -= 94.0;
}
break;
}
case 37: {
temp_o_5 *= 93.0;
temp_o_5 *= 38.0;
break;
}
case 43: {
if (temp_o_5 == 514.0) {
temp_o_5 -= 31.0;
}
break;
}
case 68: {
temp_o_5 *= 95.0;
if (temp_o_5 >= 130.0) {
temp_o_5 += 70.0;
if (temp_o_5 >= 156.0) {
temp_o_5 += 42.0;
}
}
break;
}
case 2: {
temp_o_5 *= 20.0;
break;
}
case 32: {
temp_o_5 += 42.0;
break;
}
case 5: {
temp_o_5 *= 27.0;
temp_o_5 += 62.0;
break;
}
case 23: {
temp_o_5 += 4.0;
break;
}
default:
break;
}
nestedSliding = 8320;
properySubdecoder = nestedSliding > 80;
int _z_73 = (int)nestedSliding;
int p_20 = 0;
int h_49 = 0;
if (_z_73 > h_49) {
_z_73 = h_49;
}
for (int n_38 = 1; n_38 < _z_73; n_38++) {
p_20 += (int)n_38;
int b_3 = (int)p_20;
int w_11 = 0;
int d_17 = 0;
if (b_3 > d_17) {
b_3 = d_17;
}
for (int g_7 = 1; g_7 <= b_3; g_7++) {
w_11 += (int)g_7;
int u_86 = (int)w_11;
if (u_86 < 173) {
u_86 += 34;
}
break;
}
break;
}
return properySubdecoder;
}
public long checkDispatch(float visibleCenter, long openDismiss, String aboutManual) {
float wrapActivity = 6655.0f;
long tagSmart = 9954L;
System.out.println(tagSmart);
long spacingSelector = 2668L;
long directdPlaceholder = 0;
wrapActivity -= 61;
int _v_98 = (int)wrapActivity;
if (_v_98 > 257) {
int v_64 = 1;
int d_37 = 0;
if (_v_98 > d_37) {
_v_98 = d_37;
}
while (v_64 <= _v_98) {
v_64 += 1;
int b_6 = (int)v_64;
break;
}
}
tagSmart = 9335;
directdPlaceholder -= tagSmart;
int _k_41 = (int)tagSmart;
_k_41 *= 42;
spacingSelector = 6125;
directdPlaceholder *= spacingSelector;
return directdPlaceholder;
}
public ArrayList openSeriesUser(float snapNothing, ArrayList<String> arrowsOwner, HashMap<String,Boolean> fromPager) {
int changeIntegers = 1278;
int pressNothing = 7964;
ArrayList omplicationSlid = new ArrayList();
int tmp_w_86 = (int)changeIntegers;
tmp_w_86 -= 22;
pressNothing = changeIntegers;
pressNothing = pressNothing;
int version_len1 = omplicationSlid.size();
int think_f = Math.min(new Random().nextInt(93), 1) % Math.max(1, omplicationSlid.size());
omplicationSlid.add(think_f, pressNothing);
int tmp_e_21 = (int)pressNothing;
int z_30 = 1;
int i_89 = 1;
if (tmp_e_21 > i_89) {
tmp_e_21 = i_89;
}
while (z_30 < tmp_e_21) {
z_30 += 1;
int m_73 = (int)z_30;
int g_15 = 0;
for (int m_27 = (int)m_73; m_27 >= m_73 - 1; m_27--) {
g_15 += (int)m_27;
if (m_27 > 0) {
m_73 += (int)m_27;
break;
}
int l_40 = (int)g_15;
break;
}
break;
}
return omplicationSlid;
}
public ArrayList default_7LogicType_mp(ArrayList<Float> firstExampleready) {
float fillLoading = 1775.0f;
double seriseFragment = 7438.0;
ArrayList magicYblockImpression = new ArrayList();
int temp_v_60 = (int)fillLoading;
if (temp_v_60 != 267) {
int j_93 = 1;
int k_96 = 0;
if (temp_v_60 > k_96) {
temp_v_60 = k_96;
}
while (j_93 <= temp_v_60) {
j_93 += 1;
temp_v_60 -= j_93;
int f_2 = (int)j_93;
break;
}
}
seriseFragment += seriseFragment;
int paint_len1 = magicYblockImpression.size();
int x_count_i = Math.min(new Random().nextInt(13), 1) % Math.max(1, magicYblockImpression.size());
magicYblockImpression.add(x_count_i, seriseFragment);
double temp_x_66 = (double)seriseFragment;
if (temp_x_66 <= 164.0) {
temp_x_66 += 51.0;
}
return magicYblockImpression;
}
}

View File

@ -0,0 +1,475 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class CPStyleStartObject extends Object {
KZCollectObject rightCallbackAttrsModel;
int rechargeDetail = 0;
String executePermissionsGradle;
String readKeyLength;
public float integerWindow_yScheme() {
boolean gradleRetry = false;
float createEmptyview = 7592.0f;
String adapterOne = "concrete";
float segmentFingerprints = 0;
gradleRetry = false;
segmentFingerprints += gradleRetry ? 67 : 84;
createEmptyview = createEmptyview;
segmentFingerprints -= createEmptyview;
int _x_59 = (int)createEmptyview;
if (_x_59 == 210) {
int a_6 = 0;
for (int k_13 = (int)_x_59; k_13 > _x_59 - 1; k_13--) {
a_6 += (int)k_13;
int o_50 = (int)a_6;
break;
}
}
return segmentFingerprints;
}
public HashMap postMargin() {
boolean normalPlaying = false;
HashMap prereleaseParticles = new HashMap();
return prereleaseParticles;
}
public boolean joinWord(double helperSecurity) {
int exampleplayingResume = 3892;
String fillWrite = "colorquant";
double utlisActive = 6763.0;
System.out.println(utlisActive);
boolean observeAlterMvpred = false;
exampleplayingResume = exampleplayingResume;
observeAlterMvpred = exampleplayingResume > 25;
int j_11 = (int)exampleplayingResume;
if (j_11 >= 524) {
switch (j_11) {
case 85: {
j_11 += 58;
break;
}
case 11: {
break;
}
case 41: {
break;
}
case 4: {
j_11 *= 65;
if (j_11 >= 998) {
}
break;
}
case 90: {
j_11 *= 36;
break;
}
case 2: {
break;
}
case 33: {
j_11 -= 89;
break;
}
default:
break;
}
}
utlisActive = utlisActive;
observeAlterMvpred = utlisActive > 83;
double _e_47 = (double)utlisActive;
if (_e_47 >= 960.0) {
_e_47 -= 34.0;
if (_e_47 < 376.0) {
_e_47 -= 38.0;
}
}
return observeAlterMvpred;
}
public int qualityItem() {
int checkedJob = 6141;
int destroyIntegers = 3241;
int scaleFormat = 6052;
System.out.println(scaleFormat);
int recordingUnreliableMime = 0;
checkedJob = 2222;
recordingUnreliableMime += checkedJob;
int temp_l_49 = (int)checkedJob;
temp_l_49 -= 99;
destroyIntegers = 21;
recordingUnreliableMime += destroyIntegers;
int tmp_s_16 = (int)destroyIntegers;
if (tmp_s_16 > 297) {
int p_84 = 1;
int j_50 = 0;
if (tmp_s_16 > j_50) {
tmp_s_16 = j_50;
}
while (p_84 < tmp_s_16) {
p_84 += 1;
tmp_s_16 -= p_84;
int z_0 = (int)p_84;
break;
}
}
scaleFormat = checkedJob - destroyIntegers;
recordingUnreliableMime -= scaleFormat;
return recordingUnreliableMime;
}
public float backgroundProfile(int public_ppDecoration, float exploreClick, int offsetStop) {
String animationNetwork = "libversion";
long emptyCircle = 3617L;
float cacheTriangle = 103.0f;
int realNormal = 1933;
float capableSeeded = 0;
emptyCircle = 4571;
int tmp_s_86 = (int)emptyCircle;
if (tmp_s_86 < 984) {
tmp_s_86 *= 46;
switch (tmp_s_86) {
case 51: {
tmp_s_86 += 20;
if (tmp_s_86 < 676) {
tmp_s_86 += 44;
}
break;
}
case 19: {
tmp_s_86 -= 75;
break;
}
case 49: {
tmp_s_86 += 46;
break;
}
case 2: {
tmp_s_86 *= 80;
if (tmp_s_86 < 938) {
}
break;
}
case 32: {
tmp_s_86 -= 39;
break;
}
case 86: {
if (tmp_s_86 >= 117) {
tmp_s_86 *= 80;
tmp_s_86 *= 59;
}
break;
}
case 80: {
tmp_s_86 *= 62;
tmp_s_86 *= 52;
break;
}
case 24: {
break;
}
default:
break;
}
}
cacheTriangle *= cacheTriangle;
capableSeeded -= cacheTriangle;
int temp_k_16 = (int)cacheTriangle;
switch (temp_k_16) {
case 85: {
temp_k_16 += 78;
break;
}
case 87: {
temp_k_16 *= 28;
if (temp_k_16 != 394) {
}
break;
}
case 91: {
temp_k_16 -= 34;
break;
}
case 92: {
temp_k_16 -= 47;
int o_46 = 1;
int r_56 = 1;
if (temp_k_16 > r_56) {
temp_k_16 = r_56;
}
while (o_46 < temp_k_16) {
o_46 += 1;
temp_k_16 -= o_46;
temp_k_16 *= 61;
break;
}
break;
}
case 6: {
int c_98 = 0;
int f_15 = 1;
if (temp_k_16 > f_15) {
temp_k_16 = f_15;
}
for (int i_93 = 0; i_93 < temp_k_16; i_93++) {
c_98 += (int)i_93;
if (i_93 > 0) {
temp_k_16 -= (int)i_93;
break;
}
int z_79 = (int)c_98;
if (z_79 == 886) {
z_79 -= 88;
}
break;
}
break;
}
case 52: {
temp_k_16 += 76;
int e_37 = 1;
int c_96 = 0;
if (temp_k_16 > c_96) {
temp_k_16 = c_96;
}
while (e_37 <= temp_k_16) {
e_37 += 1;
temp_k_16 -= e_37;
int i_3 = (int)e_37;
switch (i_3) {
case 89: {
i_3 -= 79;
break;
}
case 73: {
i_3 *= 100;
break;
}
case 44: {
i_3 *= 52;
break;
}
case 36: {
i_3 -= 87;
i_3 += 73;
break;
}
case 14: {
i_3 -= 7;
break;
}
case 15: {
break;
}
case 8: {
break;
}
default:
break;
}
break;
}
break;
}
case 54: {
temp_k_16 += 62;
if (temp_k_16 >= 267) {
temp_k_16 *= 54;
if (temp_k_16 <= 676) {
}
}
break;
}
case 37: {
temp_k_16 -= 37;
int e_77 = 0;
for (int a_20 = (int)temp_k_16; a_20 >= temp_k_16 - 1; a_20--) {
e_77 += (int)a_20;
if (a_20 > 0) {
temp_k_16 += (int)a_20;
break;
}
temp_k_16 += 58;
break;
}
break;
}
case 83: {
temp_k_16 += 11;
if (temp_k_16 <= 670) {
}
break;
}
case 31: {
temp_k_16 += 12;
int x_30 = 1;
int h_20 = 0;
if (temp_k_16 > h_20) {
temp_k_16 = h_20;
}
while (x_30 < temp_k_16) {
x_30 += 1;
int c_88 = (int)x_30;
if (c_88 == 906) {
}
break;
}
break;
}
default:
break;
}
realNormal = 6713;
return capableSeeded;
}
public long successCharacterUser(boolean popupElement, long resumeShared, String logoStart) {
boolean lnewsFrom = true;
int integerCollect = 833;
long evportStamp = 0;
lnewsFrom = false;
evportStamp += lnewsFrom ? 67 : 15;
integerCollect = 1357;
int c_9 = (int)integerCollect;
c_9 -= 82;
return evportStamp;
}
public HashMap accentWidth(double codeInstall) {
long schemeFocus = 732L;
boolean short_hCategories = false;
int closeShare = 675;
long buildObject = 205L;
HashMap springSoisconnectingListening = new HashMap();
schemeFocus *= schemeFocus;
schemeFocus *= buildObject;
springSoisconnectingListening.put("swfhashMigrating", schemeFocus);
int tmp_i_38 = (int)schemeFocus;
if (tmp_i_38 == 187) {
tmp_i_38 *= 17;
}
else if (tmp_i_38 >= 753) {
tmp_i_38 *= 36;
}
short_hCategories = false;
springSoisconnectingListening.put("pubicAttachmentTestconfig", short_hCategories);
int z_68 = (int)closeShare;
int x_55 = 1;
int h_12 = 0;
if (z_68 > h_12) {
z_68 = h_12;
}
while (x_55 <= z_68) {
x_55 += 1;
int a_32 = (int)x_55;
switch (a_32) {
case 88: {
break;
}
case 31: {
a_32 += 45;
a_32 *= 34;
break;
}
case 34: {
a_32 -= 93;
break;
}
case 17: {
a_32 -= 72;
a_32 *= 34;
break;
}
case 58: {
a_32 -= 98;
break;
}
default:
break;
}
break;
}
buildObject = 6561;
springSoisconnectingListening.put("hourAnimationXprv", buildObject);
return springSoisconnectingListening;
}
}

View File

@ -0,0 +1,103 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class DTULoggerGradientObject extends Object {
NZNBrowserObject treeWidget_jaModel;
int enterSlanted = 0;
HashMap paginationMethod_l8Seek;
float animatingPackage_trRevolution = 0.0f;
public float attachClear(HashMap<String,Integer> factoryLogo, double centerFfmpeg, boolean accentToast) {
boolean mavenTab = true;
int previewEmpty = 6003;
String factoryAnimating = "copyadd";
float yminputMspelNavigationbar = 0;
mavenTab = true;
yminputMspelNavigationbar *= mavenTab ? 52 : 8;
previewEmpty -= previewEmpty;
int tmp_n_22 = (int)previewEmpty;
tmp_n_22 -= 98;
return yminputMspelNavigationbar;
}
public String hintState() {
double modelRect = 99.0;
double stopListener = 7940.0;
int customAbout = 7788;
String respectingDatahash = "maskedclamp";
if (modelRect <= 128 && modelRect >= -128){
int insufficient_z = Math.min(1, new Random().nextInt(88)) % respectingDatahash.length();
respectingDatahash += modelRect + "";
}
double u_9 = (double)modelRect;
if (u_9 != 286.0) {
u_9 *= 66.0;
u_9 += 32.0;
}
if (stopListener >= -128 && stopListener <= 128){
int again_z = Math.min(1, new Random().nextInt(56)) % respectingDatahash.length();
respectingDatahash += stopListener + "";
}
double tmp_t_87 = (double)stopListener;
double d_58 = 1.0;
double z_83 = 1.0;
if (tmp_t_87 > z_83) {
tmp_t_87 = z_83;
}
while (d_58 <= tmp_t_87) {
d_58 += 1;
tmp_t_87 -= d_58;
break;
}
if (customAbout <= 128 && customAbout >= -128){
int touch_i = Math.min(1, new Random().nextInt(23)) % respectingDatahash.length();
respectingDatahash += customAbout + "";
}
return respectingDatahash;
}
public float clearNetwork(double aspectFinished, double createRecycler, int alphaPopup) {
boolean pathStub = false;
float relayedInterestSmacker = 0;
pathStub = true;
relayedInterestSmacker -= pathStub ? 47 : 54;
return relayedInterestSmacker;
}
public double numberWindow_gSeek(ArrayList<Double> destroyBezier, String smartSucceed) {
int amountAbout = 271;
double asocSumxPlanar = 0;
amountAbout += amountAbout;
int _w_100 = (int)amountAbout;
int r_43 = 1;
int d_93 = 1;
if (_w_100 > d_93) {
_w_100 = d_93;
}
while (r_43 < _w_100) {
r_43 += 1;
_w_100 -= r_43;
break;
}
return asocSumxPlanar;
}
}

View File

@ -0,0 +1,174 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class EFfmpegConfigsObject extends Object {
CPStyleStartObject local_l6NotificationSetModel;
KZCollectObject intentCountdownCircleModel;
HashMap enable_tTag;
long waveAnimationManual = 0L;
boolean loadSmart = false;
public double offsetListRequest(HashMap<String,String> numDetele, int dataMenu) {
String dismissPager = "certs";
System.out.println(dismissPager);
double removeImmersion = 4138.0;
boolean callbacksMedium = true;
double frameworkRawvideoOrigins = 0;
removeImmersion -= 82;
frameworkRawvideoOrigins *= removeImmersion;
double tmp_c_21 = (double)removeImmersion;
tmp_c_21 *= 94.0;
callbacksMedium = false;
frameworkRawvideoOrigins -= callbacksMedium ? 82 : 2;
return frameworkRawvideoOrigins;
}
public ArrayList startBackEvent(String audioFinished) {
int tintStub = 3069;
int bodyInstance = 2728;
int formatLost = 8053;
ArrayList attachSubtypePutbitbuffer = new ArrayList();
int t_31 = (int)tintStub;
if (t_31 < 929) {
int z_88 = 0;
for (int t_26 = (int)t_31; t_26 > t_31 - 1; t_26--) {
z_88 += (int)t_26;
if (t_26 > 0) {
t_31 += (int)t_26;
break;
}
t_31 += 35;
break;
}
}
bodyInstance *= tintStub;
bodyInstance -= bodyInstance;
bodyInstance += formatLost;
int dimens_len1 = attachSubtypePutbitbuffer.size();
int color_a = Math.min(new Random().nextInt(83), 1) % Math.max(1, attachSubtypePutbitbuffer.size());
attachSubtypePutbitbuffer.add(color_a, bodyInstance);
int _a_36 = (int)bodyInstance;
if (_a_36 <= 580) {
int e_83 = 1;
int h_18 = 0;
if (_a_36 > h_18) {
_a_36 = h_18;
}
while (e_83 <= _a_36) {
e_83 += 1;
_a_36 += e_83;
break;
}
}
formatLost -= 56;
int list_len1 = attachSubtypePutbitbuffer.size();
int collect_b = Math.min(new Random().nextInt(5), 1) % Math.max(1, attachSubtypePutbitbuffer.size());
attachSubtypePutbitbuffer.add(collect_b, formatLost);
return attachSubtypePutbitbuffer;
}
public double release_eInterceptDefault_q(String activityBundle, float animatingMemory) {
int charsetChecked = 8750;
System.out.println(charsetChecked);
float centerPaint = 5924.0f;
System.out.println(centerPaint);
float checkTotal = 8126.0f;
double binbnLibx = 0;
charsetChecked += charsetChecked;
int _p_55 = (int)charsetChecked;
switch (_p_55) {
case 74: {
_p_55 += 94;
break;
}
case 83: {
if (_p_55 < 808) {
_p_55 += 2;
_p_55 *= 36;
}
break;
}
case 92: {
_p_55 += 29;
if (_p_55 == 608) {
_p_55 -= 46;
_p_55 += 56;
}
break;
}
case 3: {
_p_55 += 99;
_p_55 -= 12;
break;
}
case 79: {
_p_55 -= 10;
_p_55 *= 74;
break;
}
case 87: {
_p_55 += 8;
if (_p_55 > 267) {
_p_55 -= 30;
if (_p_55 <= 942) {
}
}
break;
}
default:
break;
}
centerPaint = 6306;
int temp_p_34 = (int)centerPaint;
temp_p_34 *= 61;
checkTotal -= 29;
return binbnLibx;
}
public long totalHighlightEmpty(int clickLoading, float callbacksDraw, ArrayList<Float> mireoGradle) {
long exampleplayingInfo = 8060L;
double nothingOne = 863.0;
boolean showEmpty = true;
long strikethroughAngledCxdata = 0;
exampleplayingInfo = exampleplayingInfo;
strikethroughAngledCxdata -= exampleplayingInfo;
int temp_s_80 = (int)exampleplayingInfo;
if (temp_s_80 <= 933) {
temp_s_80 += 25;
}
nothingOne = nothingOne;
double _w_76 = (double)nothingOne;
_w_76 -= 28.0;
showEmpty = true;
strikethroughAngledCxdata += showEmpty ? 39 : 65;
return strikethroughAngledCxdata;
}
}

View File

@ -0,0 +1,498 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class EIPLineRecommendActivity extends Activity {
long orderEmptyview = 0L;
ArrayList long__tSource;
long findPlayingLast = 0L;
private double callExplore = 0.0;
private String mmkvJob;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_eiplinerecommendactivity);
this.callExplore = 7608.0;
this.mmkvJob = "transmitted";
this.init_collectDevice();
}
private void init_collectDevice() {
long__tSource = this.agentSourceBuild();
}
public ArrayList agentSourceBuild() {
float playerLong_8 = 2842.0f;
System.out.println(playerLong_8);
double examplereadyType_p = 128.0;
ArrayList fadedLayercontext = new ArrayList();
playerLong_8 += 92;
int diameter_len1 = fadedLayercontext.size();
int change_z = Math.min(new Random().nextInt(88), 1) % Math.max(1, fadedLayercontext.size());
fadedLayercontext.add(change_z, playerLong_8);
int tmp_d_96 = (int)playerLong_8;
if (tmp_d_96 <= 564) {
if (tmp_d_96 <= 326) {
tmp_d_96 *= 93;
}
}
examplereadyType_p *= examplereadyType_p;
int animating_len1 = fadedLayercontext.size();
int browser_d = Math.min(new Random().nextInt(84), 1) % Math.max(1, fadedLayercontext.size());
fadedLayercontext.add(browser_d, examplereadyType_p);
double u_69 = (double)examplereadyType_p;
switch ((int)u_69) {
case 22: {
if (u_69 != 977.0) {
if (u_69 >= 890.0) {
u_69 += 28.0;
}
}
break;
}
case 36: {
u_69 *= 54.0;
u_69 += 76.0;
break;
}
case 12: {
double h_40 = 0;
double q_77 = 1.0;
if (u_69 > q_77) {
u_69 = q_77;
}
for (int l_56 = 0; l_56 <= u_69; l_56++) {
h_40 += (double)l_56;
double r_100 = (double)h_40;
break;
}
break;
}
case 83: {
u_69 += 50.0;
u_69 *= 89.0;
break;
}
case 81: {
u_69 += 60.0;
break;
}
case 41: {
double j_82 = 1.0;
double n_3 = 0.0;
if (u_69 > n_3) {
u_69 = n_3;
}
while (j_82 < u_69) {
j_82 += 1;
u_69 += j_82;
break;
}
break;
}
case 15: {
u_69 *= 68.0;
double j_75 = 0;
for (int s_1 = (int)u_69; s_1 >= u_69 - 1; s_1--) {
j_75 += (double)s_1;
double s_93 = (double)j_75;
break;
}
break;
}
case 49: {
double k_9 = 0;
for (int i_33 = (int)u_69; i_33 > u_69 - 1; i_33--) {
k_9 += (double)i_33;
if (i_33 > 0) {
u_69 += (double)i_33;
break;
}
double e_28 = (double)k_9;
if (e_28 <= 681.0) {
e_28 *= 18.0;
}
break;
}
break;
}
case 96: {
double e_93 = 1.0;
double k_96 = 0.0;
if (u_69 > k_96) {
u_69 = k_96;
}
while (e_93 < u_69) {
e_93 += 1;
double n_17 = (double)e_93;
break;
}
break;
}
default:
break;
}
return fadedLayercontext;
}
public double removeDestroy(double oneHalf) {
boolean collectWrite = true;
double browserEvent = 4124.0;
long pointerInsufficient = 8037L;
System.out.println(pointerInsufficient);
double venuesGradientNmmintrin = 0;
collectWrite = false;
venuesGradientNmmintrin *= collectWrite ? 24 : 100;
browserEvent = 3328;
venuesGradientNmmintrin *= browserEvent;
double tmp_d_10 = (double)browserEvent;
switch ((int)tmp_d_10) {
case 78: {
double f_93 = 1.0;
double j_76 = 0.0;
if (tmp_d_10 > j_76) {
tmp_d_10 = j_76;
}
while (f_93 < tmp_d_10) {
f_93 += 1;
double f_27 = (double)f_93;
break;
}
break;
}
case 79: {
tmp_d_10 += 73.0;
double e_26 = 0;
double n_60 = 0.0;
if (tmp_d_10 > n_60) {
tmp_d_10 = n_60;
}
for (int n_25 = 0; n_25 <= tmp_d_10; n_25++) {
e_26 += (double)n_25;
if (n_25 > 0) {
tmp_d_10 -= (double)n_25;
break;
}
double k_34 = (double)e_26;
if (k_34 <= 211.0) {
k_34 *= 23.0;
}
break;
}
break;
}
case 54: {
tmp_d_10 -= 79.0;
tmp_d_10 += 38.0;
break;
}
case 33: {
tmp_d_10 += 39.0;
tmp_d_10 += 49.0;
break;
}
case 38: {
tmp_d_10 -= 7.0;
double y_5 = 1.0;
double r_68 = 1.0;
if (tmp_d_10 > r_68) {
tmp_d_10 = r_68;
}
while (y_5 < tmp_d_10) {
y_5 += 1;
double c_0 = (double)y_5;
switch ((int)c_0) {
case 64: {
break;
}
case 7: {
break;
}
case 42: {
c_0 *= 75.0;
break;
}
case 25: {
c_0 += 82.0;
break;
}
case 94: {
c_0 += 99.0;
break;
}
case 93: {
c_0 -= 81.0;
c_0 -= 80.0;
break;
}
case 51: {
c_0 += 77.0;
break;
}
case 28: {
c_0 *= 74.0;
break;
}
case 12: {
c_0 += 35.0;
break;
}
case 52: {
break;
}
default:
break;
}
break;
}
break;
}
case 80: {
tmp_d_10 -= 76.0;
if (tmp_d_10 > 349.0) {
}
break;
}
default:
break;
}
pointerInsufficient = pointerInsufficient;
int tmp_u_84 = (int)pointerInsufficient;
int e_66 = 1;
int y_12 = 1;
if (tmp_u_84 > y_12) {
tmp_u_84 = y_12;
}
while (e_66 < tmp_u_84) {
e_66 += 1;
tmp_u_84 -= e_66;
int z_47 = (int)e_66;
int l_60 = 1;
int o_57 = 0;
if (z_47 > o_57) {
z_47 = o_57;
}
while (l_60 <= z_47) {
l_60 += 1;
z_47 -= l_60;
int v_16 = (int)l_60;
if (v_16 > 87) {
v_16 += 66;
}
break;
}
break;
}
return venuesGradientNmmintrin;
}
public float saltShort_jlView(double window_sBall, long size_nGradle, boolean rankSeekbar) {
int delete_gScrollable = 2708;
boolean linearSecondary = true;
float stateFailure = 942.0f;
System.out.println(stateFailure);
float exceptionSoft = 6696.0f;
float coefQintfloat = 0;
delete_gScrollable *= 2;
int tmp_s_68 = (int)delete_gScrollable;
switch (tmp_s_68) {
case 19: {
tmp_s_68 *= 89;
break;
}
case 80: {
tmp_s_68 *= 12;
int y_47 = 1;
int k_74 = 0;
if (tmp_s_68 > k_74) {
tmp_s_68 = k_74;
}
while (y_47 <= tmp_s_68) {
y_47 += 1;
tmp_s_68 += y_47;
break;
}
break;
}
case 54: {
tmp_s_68 *= 51;
tmp_s_68 *= 14;
break;
}
case 18: {
tmp_s_68 += 89;
break;
}
case 48: {
tmp_s_68 += 33;
int w_90 = 0;
int w_23 = 0;
if (tmp_s_68 > w_23) {
tmp_s_68 = w_23;
}
for (int u_40 = 1; u_40 <= tmp_s_68; u_40++) {
w_90 += (int)u_40;
if (u_40 > 0) {
tmp_s_68 -= (int)u_40;
break;
}
tmp_s_68 -= 59;
break;
}
break;
}
case 84: {
tmp_s_68 *= 87;
int y_52 = 1;
int t_21 = 1;
if (tmp_s_68 > t_21) {
tmp_s_68 = t_21;
}
while (y_52 <= tmp_s_68) {
y_52 += 1;
tmp_s_68 += y_52;
break;
}
break;
}
case 50: {
if (tmp_s_68 == 523) {
tmp_s_68 -= 26;
}
break;
}
case 16: {
tmp_s_68 += 42;
if (tmp_s_68 <= 366) {
switch (tmp_s_68) {
case 79: {
break;
}
case 28: {
break;
}
case 0: {
tmp_s_68 += 99;
break;
}
case 72: {
tmp_s_68 -= 52;
break;
}
case 84: {
break;
}
default:
break;
}
}
break;
}
default:
break;
}
linearSecondary = false;
coefQintfloat -= linearSecondary ? 64 : 93;
stateFailure = stateFailure;
coefQintfloat += stateFailure;
int temp_q_52 = (int)stateFailure;
temp_q_52 += 19;
exceptionSoft *= 85;
coefQintfloat -= exceptionSoft;
return coefQintfloat;
}
public long darkLeftExit(HashMap<String,Float> successLoad, HashMap<String,Float> tubeExecute, boolean lengthTwo) {
String animatingReal = "match";
long heightTab = 7217L;
System.out.println(heightTab);
long transmittedTruncationStreamheader = 0;
heightTab = 660;
transmittedTruncationStreamheader += heightTab;
int temp_j_14 = (int)heightTab;
temp_j_14 -= 66;
return transmittedTruncationStreamheader;
}
}

View File

@ -0,0 +1,256 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class EModuleCollectionActivity extends Activity {
double privacyNothingWidget_i = 0.0;
TextView exampleCallbacks;
ArrayList scaleResultGood;
private long discountRecordLoading = 0L;
private boolean tabBubbleList = false;
private ArrayList relativeDesMaximum;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_emodulecollectionactivity);
this.discountRecordLoading = 3857L;
this.tabBubbleList = true;
this.relativeDesMaximum = new ArrayList();
this.init_bundleStatusSecondary();
}
private void init_bundleStatusSecondary() {
}
public int velocityRecommendVisible(boolean measureEvent, ArrayList<Boolean> resultResumed, HashMap<String,Long> viewPopup) {
String popupResources = "locks";
System.out.println(popupResources);
String brightnessRank = "residuals";
double agentIcon = 1017.0;
int ackedColumnlist = 0;
agentIcon -= agentIcon;
double _e_30 = (double)agentIcon;
double m_99 = 1.0;
double e_15 = 1.0;
if (_e_30 > e_15) {
_e_30 = e_15;
}
while (m_99 < _e_30) {
m_99 += 1;
_e_30 -= m_99;
double g_54 = (double)m_99;
if (g_54 <= 375.0) {
g_54 *= 90.0;
}
break;
}
return ackedColumnlist;
}
public int succeedFinish(HashMap<String,Integer> agreementTab, ArrayList<Double> interceptDesign, ArrayList<Integer> retryDebug) {
long dispatchMine = 8319L;
System.out.println(dispatchMine);
boolean criticallyMethod_ky = false;
int planartoyuyForwardFfmeta = 0;
dispatchMine *= 96;
int x_3 = (int)dispatchMine;
if (x_3 < 872) {
}
else if (x_3 > 92) {
switch (x_3) {
case 62: {
x_3 *= 55;
break;
}
case 32: {
break;
}
case 61: {
x_3 -= 65;
break;
}
case 55: {
x_3 -= 73;
break;
}
case 12: {
x_3 -= 3;
break;
}
case 34: {
x_3 *= 62;
break;
}
case 84: {
x_3 += 9;
break;
}
default:
break;
}
}
criticallyMethod_ky = true;
planartoyuyForwardFfmeta -= criticallyMethod_ky ? 91 : 62;
return planartoyuyForwardFfmeta;
}
public float triggerStand() {
long findCount = 6190L;
System.out.println(findCount);
int refreshingDialog = 2766;
double resumedBubble = 7088.0;
boolean size_s3Regex = false;
float multiframeDecompressor = 0;
findCount = 9082;
int t_8 = (int)findCount;
if (t_8 <= 73) {
t_8 *= 28;
switch (t_8) {
case 31: {
t_8 *= 73;
break;
}
case 67: {
t_8 -= 43;
t_8 *= 90;
break;
}
case 13: {
t_8 *= 15;
break;
}
case 77: {
t_8 += 76;
t_8 += 33;
break;
}
default:
break;
}
}
refreshingDialog += refreshingDialog;
int tmp_u_96 = (int)refreshingDialog;
switch (tmp_u_96) {
case 62: {
tmp_u_96 += 1;
break;
}
case 46: {
tmp_u_96 += 44;
tmp_u_96 -= 87;
break;
}
case 7: {
tmp_u_96 += 33;
break;
}
case 31: {
tmp_u_96 -= 70;
break;
}
case 91: {
tmp_u_96 -= 77;
break;
}
case 22: {
tmp_u_96 -= 96;
break;
}
case 42: {
tmp_u_96 -= 15;
tmp_u_96 += 70;
break;
}
case 28: {
if (tmp_u_96 < 33) {
switch (tmp_u_96) {
case 64: {
break;
}
case 78: {
tmp_u_96 *= 44;
break;
}
default:
break;
}
}
break;
}
case 44: {
tmp_u_96 *= 75;
tmp_u_96 += 42;
break;
}
case 24: {
if (tmp_u_96 < 175) {
}
else {
tmp_u_96 += 66;
tmp_u_96 += 6;
}
break;
}
default:
break;
}
resumedBubble += 89;
size_s3Regex = true;
multiframeDecompressor += size_s3Regex ? 18 : 3;
return multiframeDecompressor;
}
}

View File

@ -0,0 +1,695 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class FCompoundTringObject extends Object {
NRecyclerDramaObject crashAnimatingDraggedModel;
CPStyleStartObject refreshingMenuDurationModel;
NZNBrowserObject immersionNumModel;
JAServerSystemObject listCheckSeekModel;
String progressNormal;
TextView tabType_o4;
public double completeShort_ry() {
double consumedCheckbox = 3728.0;
long mavenPaly = 4014L;
System.out.println(mavenPaly);
double ownedFin = 0;
consumedCheckbox += consumedCheckbox;
ownedFin *= consumedCheckbox;
double _a_67 = (double)consumedCheckbox;
double j_25 = 1.0;
double n_93 = 1.0;
if (_a_67 > n_93) {
_a_67 = n_93;
}
while (j_25 < _a_67) {
j_25 += 1;
_a_67 -= j_25;
double i_80 = (double)j_25;
if (i_80 <= 735.0) {
i_80 *= 77.0;
switch ((int)i_80) {
case 33: {
i_80 += 23.0;
break;
}
case 20: {
i_80 += 3.0;
i_80 -= 61.0;
break;
}
default:
break;
}
}
break;
}
mavenPaly -= 17;
int temp_l_90 = (int)mavenPaly;
int h_83 = 1;
int t_100 = 1;
if (temp_l_90 > t_100) {
temp_l_90 = t_100;
}
while (h_83 < temp_l_90) {
h_83 += 1;
temp_l_90 += h_83;
break;
}
return ownedFin;
}
public boolean instanceListenerAmount(boolean diameterSmart, int tringNothing, int exceptionPointer) {
int long_9eTotal = 1771;
String leftRegex = "autocapitalization";
boolean drawLinear = true;
System.out.println(drawLinear);
boolean fetchesWildcardFlow = false;
long_9eTotal += 84;
fetchesWildcardFlow = long_9eTotal > 14;
int h_74 = (int)long_9eTotal;
h_74 += 15;
drawLinear = false;
fetchesWildcardFlow = !drawLinear;
return fetchesWildcardFlow;
}
public long refreshingArray(long darkSave, String durationLauncher, HashMap<String,Boolean> episodesMaximum) {
long insufficientJob = 5903L;
System.out.println(insufficientJob);
boolean resumedCharacter = false;
long tgetOpensslvPrintout = 0;
insufficientJob = 4702;
tgetOpensslvPrintout -= insufficientJob;
int temp_s_88 = (int)insufficientJob;
int b_58 = 0;
int u_22 = 0;
if (temp_s_88 > u_22) {
temp_s_88 = u_22;
}
for (int u_57 = 0; u_57 < temp_s_88; u_57++) {
b_58 += (int)u_57;
int j_27 = (int)b_58;
if (j_27 != 146) {
if (j_27 >= 556) {
j_27 -= 78;
}
}
break;
}
resumedCharacter = true;
tgetOpensslvPrintout *= resumedCharacter ? 78 : 86;
return tgetOpensslvPrintout;
}
public float formatShort_ryPermission(double keyThumb) {
int bannerHttp = 1085;
System.out.println(bannerHttp);
float sboxSubblocksAvpicture = 0;
bannerHttp *= 32;
int d_99 = (int)bannerHttp;
int j_98 = 0;
int w_27 = 0;
if (d_99 > w_27) {
d_99 = w_27;
}
for (int z_93 = 0; z_93 < d_99; z_93++) {
j_98 += (int)z_93;
int y_7 = (int)j_98;
switch (y_7) {
case 58: {
y_7 *= 61;
break;
}
case 57: {
y_7 *= 13;
break;
}
case 68: {
y_7 += 97;
break;
}
case 40: {
break;
}
default:
break;
}
break;
}
return sboxSubblocksAvpicture;
}
public int enterGenerateClick(HashMap<String,Double> whenDiscount) {
float messageScroll = 4441.0f;
long centerFloat_he = 72L;
float exampleCategory_9h = 1132.0f;
int objectCapturingSalts = 0;
messageScroll += messageScroll;
messageScroll -= exampleCategory_9h;
int h_95 = (int)messageScroll;
int l_53 = 1;
int v_21 = 0;
if (h_95 > v_21) {
h_95 = v_21;
}
while (l_53 < h_95) {
l_53 += 1;
int x_67 = (int)l_53;
int i_97 = 1;
int x_70 = 0;
if (x_67 > x_70) {
x_67 = x_70;
}
while (i_97 <= x_67) {
i_97 += 1;
int k_50 = (int)i_97;
break;
}
break;
}
centerFloat_he = 9132;
int p_99 = (int)centerFloat_he;
int o_51 = 1;
int q_72 = 1;
if (p_99 > q_72) {
p_99 = q_72;
}
while (o_51 <= p_99) {
o_51 += 1;
int h_91 = (int)o_51;
switch (h_91) {
case 54: {
if (h_91 > 588) {
h_91 += 18;
h_91 *= 68;
}
break;
}
case 4: {
h_91 *= 73;
break;
}
default:
break;
}
break;
}
exampleCategory_9h -= messageScroll;
exampleCategory_9h *= exampleCategory_9h;
return objectCapturingSalts;
}
public int fromRechargeHolder(float centerDiscount) {
float attachLoading = 2030.0f;
System.out.println(attachLoading);
long fillRecharge = 9310L;
double pauseModule = 6625.0;
long logoWarning = 5584L;
int nbioOpusfileGmatch = 0;
attachLoading *= attachLoading;
int temp_p_42 = (int)attachLoading;
if (temp_p_42 < 390) {
}
else {
temp_p_42 += 41;
switch (temp_p_42) {
case 88: {
break;
}
case 94: {
temp_p_42 -= 96;
break;
}
case 63: {
temp_p_42 += 92;
break;
}
case 68: {
temp_p_42 *= 23;
break;
}
case 100: {
temp_p_42 *= 17;
break;
}
case 51: {
break;
}
case 11: {
temp_p_42 -= 28;
break;
}
case 10: {
break;
}
default:
break;
}
}
fillRecharge = fillRecharge - logoWarning;
int l_33 = (int)fillRecharge;
switch (l_33) {
case 38: {
int v_91 = 0;
for (int g_9 = (int)l_33; g_9 >= l_33 - 1; g_9--) {
v_91 += (int)g_9;
int t_96 = (int)v_91;
break;
}
break;
}
case 16: {
l_33 += 57;
l_33 *= 42;
break;
}
case 18: {
l_33 += 85;
break;
}
case 81: {
int f_26 = 0;
int g_45 = 0;
if (l_33 > g_45) {
l_33 = g_45;
}
for (int c_65 = 0; c_65 < l_33; c_65++) {
f_26 += (int)c_65;
if (c_65 > 0) {
l_33 -= (int)c_65;
break;
}
break;
}
break;
}
case 6: {
int w_70 = 0;
int z_6 = 0;
if (l_33 > z_6) {
l_33 = z_6;
}
for (int h_52 = 1; h_52 < l_33; h_52++) {
w_70 += (int)h_52;
if (h_52 > 0) {
l_33 -= (int)h_52;
break;
}
int t_98 = (int)w_70;
break;
}
break;
}
case 7: {
int v_3 = 1;
int i_72 = 0;
if (l_33 > i_72) {
l_33 = i_72;
}
while (v_3 < l_33) {
v_3 += 1;
l_33 -= v_3;
break;
}
break;
}
case 65: {
l_33 *= 29;
l_33 += 79;
break;
}
case 71: {
l_33 *= 80;
if (l_33 > 303) {
l_33 -= 34;
}
else if (l_33 != 884) {
}
break;
}
case 41: {
l_33 += 10;
if (l_33 >= 535) {
switch (l_33) {
case 46: {
l_33 += 63;
break;
}
case 13: {
l_33 -= 19;
l_33 *= 91;
break;
}
case 100: {
l_33 -= 89;
break;
}
case 90: {
l_33 -= 78;
l_33 -= 62;
break;
}
case 77: {
l_33 += 60;
break;
}
case 75: {
l_33 -= 25;
break;
}
case 85: {
l_33 -= 83;
break;
}
default:
break;
}
}
break;
}
default:
break;
}
pauseModule = pauseModule;
logoWarning = 3877;
return nbioOpusfileGmatch;
}
public long failActivity() {
double rectFirst = 5458.0;
long secondOffset = 7082L;
long termsetPbkdfLibvorbis = 0;
rectFirst -= 61;
double s_32 = (double)rectFirst;
if (s_32 != 86.0) {
}
else if (s_32 >= 313.0) {
}
secondOffset = secondOffset;
termsetPbkdfLibvorbis += secondOffset;
int temp_d_7 = (int)secondOffset;
int a_50 = 0;
for (int h_81 = (int)temp_d_7; h_81 >= temp_d_7 - 1; h_81--) {
a_50 += (int)h_81;
int j_63 = (int)a_50;
int q_95 = 0;
for (int u_23 = (int)j_63; u_23 > j_63 - 1; u_23--) {
q_95 += (int)u_23;
if (u_23 > 0) {
j_63 += (int)u_23;
break;
}
int h_88 = (int)q_95;
switch (h_88) {
case 10: {
h_88 *= 6;
break;
}
case 13: {
h_88 *= 64;
break;
}
case 62: {
break;
}
case 48: {
break;
}
case 34: {
h_88 += 53;
h_88 += 2;
break;
}
case 67: {
h_88 *= 64;
break;
}
case 3: {
h_88 += 6;
break;
}
case 33: {
h_88 -= 99;
break;
}
default:
break;
}
break;
}
break;
}
return termsetPbkdfLibvorbis;
}
public String dispatchVerticalAccent(float openApplication, float gradientStyle, boolean currentStart) {
double dstSelector = 904.0;
boolean footerShare = true;
System.out.println(footerShare);
int titleNothing = 922;
String illegalPromoting = "segmentation";
if (dstSelector >= -128 && dstSelector <= 128){
int common_r = Math.min(1, new Random().nextInt(26)) % illegalPromoting.length();
illegalPromoting += dstSelector + "";
}
double j_33 = (double)dstSelector;
double n_65 = 1.0;
double f_56 = 1.0;
if (j_33 > f_56) {
j_33 = f_56;
}
while (n_65 <= j_33) {
n_65 += 1;
j_33 -= n_65;
double j_5 = (double)n_65;
switch ((int)j_5) {
case 39: {
if (j_5 < 596.0) {
j_5 *= 76.0;
}
break;
}
case 53: {
j_5 += 51.0;
if (j_5 <= 952.0) {
j_5 -= 72.0;
j_5 *= 59.0;
}
break;
}
case 0: {
j_5 += 71.0;
break;
}
case 42: {
j_5 += 28.0;
break;
}
case 22: {
j_5 -= 23.0;
j_5 += 13.0;
break;
}
case 59: {
break;
}
case 46: {
j_5 -= 71.0;
break;
}
default:
break;
}
break;
}
if (footerShare == false){
System.out.println("attrs");
}
if (titleNothing <= 128 && titleNothing >= -128){
int first_s = Math.min(1, new Random().nextInt(44)) % illegalPromoting.length();
illegalPromoting += titleNothing + "";
}
int tmp_i_42 = (int)titleNothing;
int i_93 = 1;
int c_57 = 0;
if (tmp_i_42 > c_57) {
tmp_i_42 = c_57;
}
while (i_93 <= tmp_i_42) {
i_93 += 1;
tmp_i_42 -= i_93;
int h_3 = (int)i_93;
int r_96 = 0;
int t_0 = 1;
if (h_3 > t_0) {
h_3 = t_0;
}
for (int w_28 = 0; w_28 < h_3; w_28++) {
r_96 += (int)w_28;
if (w_28 > 0) {
h_3 -= (int)w_28;
break;
}
int u_86 = (int)r_96;
if (u_86 <= 608) {
}
break;
}
break;
}
return illegalPromoting;
}
public double contextDispatch() {
float seriesFinished = 9523.0f;
float category_3qStar = 5517.0f;
System.out.println(category_3qStar);
double rtcwebMandelbrotOpened = 0;
seriesFinished = seriesFinished * category_3qStar;
int _a_68 = (int)seriesFinished;
int z_76 = 1;
int u_28 = 0;
if (_a_68 > u_28) {
_a_68 = u_28;
}
while (z_76 < _a_68) {
z_76 += 1;
int h_42 = (int)z_76;
if (h_42 <= 416) {
if (h_42 < 18) {
h_42 -= 55;
}
}
break;
}
category_3qStar += seriesFinished;
category_3qStar += category_3qStar;
int tmp_g_54 = (int)category_3qStar;
if (tmp_g_54 < 659) {
tmp_g_54 *= 8;
int w_2 = 1;
int k_47 = 1;
if (tmp_g_54 > k_47) {
tmp_g_54 = k_47;
}
while (w_2 <= tmp_g_54) {
w_2 += 1;
int n_86 = (int)w_2;
if (n_86 >= 266) {
}
break;
}
}
return rtcwebMandelbrotOpened;
}
}

View File

@ -0,0 +1,149 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class JAServerSystemObject extends Object {
KZCollectObject fragmentCurrentModel;
EFfmpegConfigsObject pagerSlopTintModel;
NRecyclerDramaObject adapterDarkNameModel;
CPStyleStartObject lostLoadTriangleModel;
long nestedRecharge = 0L;
double shareManifest = 0.0;
TextView qualityMmkv;
public String permissionShort_k7Down(String triangleCancel) {
String gridThink = "tune";
int primaryBubble = 1957;
String extradatapsetsEstimated = "kbit";
System.out.println("lifecycle: " + gridThink);
int shared_g = Math.min(1, new Random().nextInt(15)) % gridThink.length();
int paly_o = Math.min(1, new Random().nextInt(10)) % extradatapsetsEstimated.length();
int request_z = Math.min(shared_g,paly_o);
if (request_z > 0){
for(int i = 0; i < Math.min(1, request_z); i++){
extradatapsetsEstimated += gridThink.charAt(i);
}
}
if (primaryBubble >= -128 && primaryBubble <= 128){
int visibility_f = Math.min(1, new Random().nextInt(76)) % extradatapsetsEstimated.length();
extradatapsetsEstimated += primaryBubble + "";
}
int temp_r_83 = (int)primaryBubble;
if (temp_r_83 <= 33) {
temp_r_83 *= 31;
int x_5 = 1;
int d_19 = 0;
if (temp_r_83 > d_19) {
temp_r_83 = d_19;
}
while (x_5 <= temp_r_83) {
x_5 += 1;
temp_r_83 -= x_5;
int h_60 = (int)x_5;
break;
}
}
return extradatapsetsEstimated;
}
public double appendShort_yTrim(double actionMenu) {
double slantedCrash = 6061.0;
System.out.println(slantedCrash);
double applicationColors = 7844.0;
System.out.println(applicationColors);
double foldFailIframe = 0;
slantedCrash *= 100;
foldFailIframe -= slantedCrash;
double temp_b_46 = (double)slantedCrash;
if (temp_b_46 != 122.0) {
temp_b_46 -= 7.0;
}
else {
temp_b_46 -= 5.0;
}
applicationColors *= 88;
foldFailIframe += applicationColors;
double temp_c_11 = (double)applicationColors;
double l_91 = 0;
double i_36 = 1.0;
if (temp_c_11 > i_36) {
temp_c_11 = i_36;
}
for (int s_65 = 0; s_65 < temp_c_11; s_65++) {
l_91 += (double)s_65;
temp_c_11 *= s_65;
break;
}
return foldFailIframe;
}
public float failureProfileLine() {
double recordFilter = 475.0;
double lottiePassword = 9643.0;
double disableAttach = 6740.0;
float fillGuess = 0;
recordFilter += recordFilter;
recordFilter *= lottiePassword;
recordFilter += disableAttach;
double t_81 = (double)recordFilter;
double y_84 = 1.0;
double x_98 = 0.0;
if (t_81 > x_98) {
t_81 = x_98;
}
while (y_84 < t_81) {
y_84 += 1;
t_81 -= y_84;
double m_44 = (double)y_84;
double r_32 = 0;
double f_93 = 0.0;
if (m_44 > f_93) {
m_44 = f_93;
}
for (int g_52 = 0; g_52 <= m_44; g_52++) {
r_32 += (double)g_52;
if (g_52 > 0) {
m_44 -= (double)g_52;
break;
}
break;
}
break;
}
lottiePassword = 2756;
double temp_y_91 = (double)lottiePassword;
double a_87 = 1.0;
double c_46 = 1.0;
if (temp_y_91 > c_46) {
temp_y_91 = c_46;
}
while (a_87 <= temp_y_91) {
a_87 += 1;
temp_y_91 -= a_87;
break;
}
disableAttach -= 8;
return fillGuess;
}
}

View File

@ -0,0 +1,284 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class KZCollectObject extends Object {
String fromTrim;
HashMap canConsumedMireo;
public boolean contextCode(ArrayList<Long> buildWarning, int register_gnColor) {
double spacingScheme = 535.0;
System.out.println(spacingScheme);
long canFile = 4831L;
System.out.println(canFile);
boolean quadsTransitions = false;
spacingScheme = 6253;
quadsTransitions = spacingScheme > 7;
double _t_74 = (double)spacingScheme;
switch ((int)_t_74) {
case 73: {
_t_74 += 28.0;
double l_85 = 0;
for (int h_47 = (int)_t_74; h_47 > _t_74 - 1; h_47--) {
l_85 += (double)h_47;
if (h_47 > 0) {
_t_74 += (double)h_47;
break;
}
_t_74 *= 2.0;
break;
}
break;
}
case 33: {
_t_74 -= 37.0;
double b_90 = 0;
double b_50 = 1.0;
if (_t_74 > b_50) {
_t_74 = b_50;
}
for (int d_66 = 0; d_66 < _t_74; d_66++) {
b_90 += (double)d_66;
double c_42 = (double)b_90;
break;
}
break;
}
case 55: {
_t_74 -= 14.0;
break;
}
case 97: {
_t_74 *= 75.0;
break;
}
case 47: {
if (_t_74 < 839.0) {
switch ((int)_t_74) {
case 71: {
_t_74 *= 77.0;
_t_74 += 4.0;
break;
}
case 10: {
_t_74 *= 17.0;
break;
}
case 72: {
_t_74 -= 94.0;
_t_74 += 61.0;
break;
}
case 27: {
break;
}
case 41: {
_t_74 *= 8.0;
break;
}
case 17: {
break;
}
default:
break;
}
}
break;
}
case 26: {
_t_74 *= 70.0;
_t_74 -= 1.0;
break;
}
case 39: {
if (_t_74 < 423.0) {
if (_t_74 == 989.0) {
}
}
break;
}
default:
break;
}
canFile = 3207;
quadsTransitions = canFile > 77;
int temp_f_31 = (int)canFile;
int v_35 = 1;
int z_63 = 0;
if (temp_f_31 > z_63) {
temp_f_31 = z_63;
}
while (v_35 < temp_f_31) {
v_35 += 1;
int s_97 = (int)v_35;
int k_59 = 1;
int b_85 = 0;
if (s_97 > b_85) {
s_97 = b_85;
}
while (k_59 < s_97) {
k_59 += 1;
s_97 -= k_59;
int x_40 = (int)k_59;
break;
}
break;
}
return quadsTransitions;
}
public String loadLength(float openElement) {
long refreshingError = 3438L;
double backShared = 5175.0;
String blobsizeModifyAnswer = "expander";
if (refreshingError <= 128 && refreshingError >= -128){
int notification_l = Math.min(1, new Random().nextInt(72)) % blobsizeModifyAnswer.length();
blobsizeModifyAnswer += refreshingError + "";
}
int temp_w_26 = (int)refreshingError;
temp_w_26 -= 29;
if (backShared <= 128 && backShared >= -128){
int fling_c = Math.min(1, new Random().nextInt(85)) % blobsizeModifyAnswer.length();
blobsizeModifyAnswer += backShared + "";
}
double temp_o_62 = (double)backShared;
temp_o_62 -= 58.0;
return blobsizeModifyAnswer;
}
public long colorWriteItem() {
int draggingModel = 433;
long upcomingExtendingNeontest = 0;
draggingModel += 7;
int temp_b_82 = (int)draggingModel;
int j_5 = 1;
int w_81 = 0;
if (temp_b_82 > w_81) {
temp_b_82 = w_81;
}
while (j_5 <= temp_b_82) {
j_5 += 1;
temp_b_82 -= j_5;
break;
}
return upcomingExtendingNeontest;
}
public long openElement(boolean criticallyCircle) {
boolean translatesWindow_cz = true;
System.out.println(translatesWindow_cz);
long createPassword = 4963L;
long legacyFlexibleCjpeg = 0;
translatesWindow_cz = true;
legacyFlexibleCjpeg *= translatesWindow_cz ? 55 : 55;
createPassword = 7789;
legacyFlexibleCjpeg += createPassword;
int k_39 = (int)createPassword;
k_39 += 18;
return legacyFlexibleCjpeg;
}
public int contentDefault_f(long durationPaths, boolean listMaterial, boolean buttonStyle) {
int navigationRetry = 1896;
int libwebpTablesOpscale = 0;
navigationRetry -= navigationRetry;
libwebpTablesOpscale += navigationRetry;
int temp_a_79 = (int)navigationRetry;
int x_70 = 0;
int o_88 = 0;
if (temp_a_79 > o_88) {
temp_a_79 = o_88;
}
for (int d_7 = 1; d_7 < temp_a_79; d_7++) {
x_70 += (int)d_7;
int f_26 = (int)x_70;
int m_14 = 0;
for (int j_21 = (int)f_26; j_21 > f_26 - 1; j_21--) {
m_14 += (int)j_21;
int d_14 = (int)m_14;
if (d_14 < 744) {
d_14 += 23;
}
break;
}
break;
}
return libwebpTablesOpscale;
}
public int listenerCreateWave(boolean failLong_i) {
int modifyBind = 2386;
float lottieMeasure = 1464.0f;
System.out.println(lottieMeasure);
int normalizedDisclosure = 0;
modifyBind = 3412;
normalizedDisclosure += modifyBind;
int s_94 = (int)modifyBind;
int w_1 = 0;
int u_16 = 0;
if (s_94 > u_16) {
s_94 = u_16;
}
for (int y_78 = 0; y_78 < s_94; y_78++) {
w_1 += (int)y_78;
if (y_78 > 0) {
s_94 -= (int)y_78;
break;
}
break;
}
lottieMeasure -= 27;
int d_41 = (int)lottieMeasure;
d_41 += 19;
return normalizedDisclosure;
}
}

View File

@ -0,0 +1,855 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class NRecyclerDramaObject extends Object {
EFfmpegConfigsObject aboutRegexCharacterModel;
KZCollectObject collectionsUtlisStylesModel;
CPStyleStartObject adapterNew_xWaitModel;
OVTStringsObject pageLogicRecycleModel;
boolean pointClickModity = false;
boolean favoriteStylesWord = false;
int detailLogger = 0;
ArrayList register_l_SecondMine;
public long modeResource(double playerShape, long splashLinear) {
boolean discountPlaying = false;
boolean viewInput = true;
int modeMax_q = 5741;
long bufferedFindasoc = 0;
discountPlaying = false;
bufferedFindasoc *= discountPlaying ? 82 : 43;
viewInput = false;
bufferedFindasoc -= viewInput ? 21 : 63;
modeMax_q = 3672;
int _b_50 = (int)modeMax_q;
switch (_b_50) {
case 6: {
_b_50 -= 18;
int x_22 = 1;
int w_34 = 0;
if (_b_50 > w_34) {
_b_50 = w_34;
}
while (x_22 < _b_50) {
x_22 += 1;
_b_50 -= x_22;
int d_98 = (int)x_22;
break;
}
break;
}
case 47: {
_b_50 += 87;
if (_b_50 > 996) {
if (_b_50 != 116) {
}
}
break;
}
case 8: {
_b_50 -= 32;
break;
}
case 23: {
if (_b_50 >= 767) {
_b_50 *= 71;
switch (_b_50) {
case 58: {
_b_50 -= 61;
_b_50 *= 52;
break;
}
case 35: {
break;
}
case 48: {
_b_50 += 26;
break;
}
case 92: {
_b_50 -= 100;
break;
}
case 15: {
_b_50 += 97;
_b_50 += 36;
break;
}
default:
break;
}
}
break;
}
case 15: {
_b_50 *= 54;
_b_50 += 25;
break;
}
case 94: {
_b_50 -= 52;
int y_75 = 1;
int w_2 = 0;
if (_b_50 > w_2) {
_b_50 = w_2;
}
while (y_75 < _b_50) {
y_75 += 1;
int f_87 = (int)y_75;
switch (f_87) {
case 16: {
f_87 *= 43;
f_87 -= 65;
break;
}
case 92: {
f_87 *= 34;
f_87 -= 35;
break;
}
case 13: {
f_87 -= 78;
break;
}
default:
break;
}
break;
}
break;
}
case 29: {
int q_87 = 0;
int f_60 = 0;
if (_b_50 > f_60) {
_b_50 = f_60;
}
for (int g_25 = 0; g_25 <= _b_50; g_25++) {
q_87 += (int)g_25;
if (g_25 > 0) {
_b_50 -= (int)g_25;
break;
}
int l_68 = (int)q_87;
if (l_68 != 510) {
}
break;
}
break;
}
case 13: {
if (_b_50 > 251) {
}
break;
}
case 70: {
_b_50 += 23;
break;
}
case 83: {
if (_b_50 > 447) {
}
else {
}
break;
}
default:
break;
}
return bufferedFindasoc;
}
public long public__CurrentHolder(float noticesCount) {
int twoClose = 6158;
double mediumCollection = 6314.0;
long nibSceneExcluded = 0;
twoClose += 19;
int z_87 = (int)twoClose;
switch (z_87) {
case 44: {
z_87 -= 74;
break;
}
case 25: {
z_87 -= 16;
if (z_87 <= 921) {
z_87 *= 53;
}
break;
}
case 61: {
z_87 -= 13;
break;
}
case 30: {
z_87 -= 63;
z_87 *= 89;
break;
}
case 64: {
z_87 -= 16;
z_87 *= 59;
break;
}
case 75: {
int y_28 = 0;
for (int e_81 = (int)z_87; e_81 > z_87 - 1; e_81--) {
y_28 += (int)e_81;
z_87 -= e_81;
break;
}
break;
}
default:
break;
}
mediumCollection -= 33;
double tmp_s_49 = (double)mediumCollection;
double m_74 = 0;
for (int j_62 = (int)tmp_s_49; j_62 >= tmp_s_49 - 1; j_62--) {
m_74 += (double)j_62;
tmp_s_49 += j_62;
break;
}
return nibSceneExcluded;
}
public int navigationRecommend(ArrayList<Double> memoryCan) {
long userConstants = 1952L;
long recommendMmkv = 5324L;
int extrcAdobeOfficial = 0;
userConstants = 680;
int s_11 = (int)userConstants;
s_11 -= 47;
recommendMmkv += 41;
int tmp_s_84 = (int)recommendMmkv;
int m_63 = 1;
int q_49 = 1;
if (tmp_s_84 > q_49) {
tmp_s_84 = q_49;
}
while (m_63 < tmp_s_84) {
m_63 += 1;
int v_93 = (int)m_63;
int p_28 = 0;
for (int c_45 = (int)v_93; c_45 >= v_93 - 1; c_45--) {
p_28 += (int)c_45;
if (c_45 > 0) {
v_93 += (int)c_45;
break;
}
int s_17 = (int)p_28;
break;
}
break;
}
return extrcAdobeOfficial;
}
public int applicationPauseIcon(boolean transparentSpacing, String agreementShape, String privacyLast) {
long settingAvailable = 330L;
System.out.println(settingAvailable);
float mainHome = 9674.0f;
float utlisSecond = 1567.0f;
System.out.println(utlisSecond);
int wildcardProposalRebuild = 0;
settingAvailable = settingAvailable;
int _u_17 = (int)settingAvailable;
switch (_u_17) {
case 41: {
_u_17 -= 25;
break;
}
case 52: {
if (_u_17 == 551) {
}
break;
}
case 73: {
_u_17 -= 6;
break;
}
case 69: {
_u_17 += 50;
int t_30 = 0;
for (int x_99 = (int)_u_17; x_99 >= _u_17 - 1; x_99--) {
t_30 += (int)x_99;
if (x_99 > 0) {
_u_17 += (int)x_99;
break;
}
int a_7 = (int)t_30;
switch (a_7) {
case 97: {
a_7 -= 60;
break;
}
case 77: {
break;
}
default:
break;
}
break;
}
break;
}
case 37: {
if (_u_17 < 442) {
_u_17 -= 68;
}
break;
}
case 26: {
_u_17 *= 97;
_u_17 += 96;
break;
}
case 78: {
if (_u_17 <= 266) {
_u_17 *= 44;
}
else if (_u_17 >= 171) {
}
break;
}
case 86: {
_u_17 *= 42;
int p_55 = 0;
int n_15 = 1;
if (_u_17 > n_15) {
_u_17 = n_15;
}
for (int a_49 = 1; a_49 < _u_17; a_49++) {
p_55 += (int)a_49;
if (a_49 > 0) {
_u_17 -= (int)a_49;
break;
}
break;
}
break;
}
case 72: {
int j_95 = 1;
int d_18 = 0;
if (_u_17 > d_18) {
_u_17 = d_18;
}
while (j_95 < _u_17) {
j_95 += 1;
_u_17 -= j_95;
break;
}
break;
}
default:
break;
}
mainHome = 409;
int _v_87 = (int)mainHome;
int z_30 = 1;
int i_74 = 0;
if (_v_87 > i_74) {
_v_87 = i_74;
}
while (z_30 < _v_87) {
z_30 += 1;
_v_87 -= z_30;
_v_87 += 29;
break;
}
utlisSecond += mainHome;
utlisSecond += utlisSecond;
return wildcardProposalRebuild;
}
public String changeAroundDivide(String helpBrightness, float playingWarning, float default_tlThemes) {
boolean attachItem = true;
int playingMethod_u0 = 213;
long roundHelper = 3664L;
float coinsPrivacy = 1846.0f;
String bitdepthIsac = "find";
if (attachItem){
System.out.println("d_alpha");
}
if (playingMethod_u0 <= 128 && playingMethod_u0 >= -128){
int window_6w_p = Math.min(1, new Random().nextInt(83)) % bitdepthIsac.length();
bitdepthIsac += playingMethod_u0 + "";
}
int temp_y_39 = (int)playingMethod_u0;
int s_1 = 1;
int i_51 = 0;
if (temp_y_39 > i_51) {
temp_y_39 = i_51;
}
while (s_1 < temp_y_39) {
s_1 += 1;
temp_y_39 -= s_1;
int t_74 = (int)s_1;
switch (t_74) {
case 49: {
t_74 += 78;
break;
}
case 28: {
t_74 -= 13;
break;
}
case 65: {
t_74 -= 64;
t_74 += 90;
break;
}
default:
break;
}
break;
}
if (roundHelper <= 128 && roundHelper >= -128){
int with_fc_w = Math.min(1, new Random().nextInt(27)) % bitdepthIsac.length();
bitdepthIsac += roundHelper + "";
}
int w_4 = (int)roundHelper;
if (w_4 <= 844) {
w_4 -= 92;
w_4 -= 88;
}
if (coinsPrivacy >= -128 && coinsPrivacy <= 128){
int filter_c = Math.min(1, new Random().nextInt(34)) % bitdepthIsac.length();
bitdepthIsac += coinsPrivacy + "";
}
return bitdepthIsac;
}
public ArrayList resultAction(boolean spanAndroid) {
double againWhen = 9858.0;
ArrayList regexpDatasAcompressor = new ArrayList();
againWhen -= 51;
int s_width_len1 = regexpDatasAcompressor.size();
int regex_d = Math.min(new Random().nextInt(10), 1) % Math.max(1, regexpDatasAcompressor.size());
regexpDatasAcompressor.add(regex_d, againWhen);
double _i_59 = (double)againWhen;
switch ((int)_i_59) {
case 82: {
double a_99 = 0;
double p_98 = 1.0;
if (_i_59 > p_98) {
_i_59 = p_98;
}
for (int t_44 = 0; t_44 < _i_59; t_44++) {
a_99 += (double)t_44;
double w_56 = (double)a_99;
break;
}
break;
}
case 58: {
_i_59 *= 67.0;
if (_i_59 >= 930.0) {
switch ((int)_i_59) {
case 11: {
_i_59 -= 86.0;
break;
}
case 27: {
_i_59 += 41.0;
break;
}
case 47: {
break;
}
case 48: {
_i_59 -= 60.0;
_i_59 *= 79.0;
break;
}
case 96: {
_i_59 += 25.0;
break;
}
case 95: {
_i_59 -= 76.0;
break;
}
case 85: {
_i_59 -= 37.0;
break;
}
case 51: {
_i_59 -= 43.0;
break;
}
case 16: {
_i_59 += 36.0;
break;
}
default:
break;
}
}
break;
}
case 9: {
if (_i_59 != 974.0) {
_i_59 -= 72.0;
}
break;
}
case 46: {
if (_i_59 != 855.0) {
}
break;
}
case 14: {
_i_59 += 78.0;
double f_42 = 1.0;
double r_72 = 0.0;
if (_i_59 > r_72) {
_i_59 = r_72;
}
while (f_42 < _i_59) {
f_42 += 1;
double e_16 = (double)f_42;
break;
}
break;
}
case 5: {
_i_59 += 9.0;
if (_i_59 >= 999.0) {
_i_59 *= 36.0;
if (_i_59 >= 180.0) {
}
}
break;
}
case 38: {
_i_59 -= 15.0;
if (_i_59 >= 712.0) {
_i_59 -= 67.0;
}
else {
}
break;
}
case 68: {
_i_59 *= 85.0;
break;
}
case 99: {
_i_59 += 35.0;
double h_5 = 1.0;
double s_93 = 0.0;
if (_i_59 > s_93) {
_i_59 = s_93;
}
while (h_5 < _i_59) {
h_5 += 1;
_i_59 -= h_5;
double b_45 = (double)h_5;
if (b_45 >= 666.0) {
}
break;
}
break;
}
case 33: {
_i_59 -= 56.0;
if (_i_59 >= 241.0) {
}
else if (_i_59 > 396.0) {
}
break;
}
default:
break;
}
return regexpDatasAcompressor;
}
public double seriesQualityMethod_h() {
long mmkvManager = 4354L;
System.out.println(mmkvManager);
double foregroundScroll = 4620.0;
String builderDevice = "decref";
double closeMessage = 1084.0;
double diinOneline = 0;
mmkvManager -= mmkvManager;
int g_90 = (int)mmkvManager;
int s_21 = 0;
int m_87 = 0;
if (g_90 > m_87) {
g_90 = m_87;
}
for (int p_66 = 1; p_66 <= g_90; p_66++) {
s_21 += (int)p_66;
if (p_66 > 0) {
g_90 -= (int)p_66;
break;
}
break;
}
foregroundScroll += foregroundScroll;
foregroundScroll *= closeMessage;
diinOneline *= foregroundScroll;
double v_91 = (double)foregroundScroll;
switch ((int)v_91) {
case 27: {
v_91 *= 14.0;
double k_93 = 1.0;
double c_55 = 1.0;
if (v_91 > c_55) {
v_91 = c_55;
}
while (k_93 <= v_91) {
k_93 += 1;
double t_94 = (double)k_93;
switch ((int)t_94) {
case 84: {
t_94 += 41.0;
t_94 *= 29.0;
break;
}
case 36: {
t_94 -= 16.0;
break;
}
case 43: {
t_94 -= 49.0;
break;
}
case 77: {
break;
}
case 50: {
break;
}
case 2: {
break;
}
default:
break;
}
break;
}
break;
}
case 4: {
v_91 -= 92.0;
v_91 *= 22.0;
break;
}
case 71: {
v_91 -= 3.0;
break;
}
case 88: {
v_91 *= 70.0;
double o_33 = 0;
double i_67 = 1.0;
if (v_91 > i_67) {
v_91 = i_67;
}
for (int q_50 = 0; q_50 < v_91; q_50++) {
o_33 += (double)q_50;
if (q_50 > 0) {
v_91 -= (double)q_50;
break;
}
double y_76 = (double)o_33;
if (y_76 >= 682.0) {
y_76 += 22.0;
}
break;
}
break;
}
case 36: {
v_91 *= 96.0;
v_91 -= 78.0;
break;
}
case 90: {
v_91 *= 31.0;
double s_14 = 1.0;
double w_35 = 1.0;
if (v_91 > w_35) {
v_91 = w_35;
}
while (s_14 < v_91) {
s_14 += 1;
v_91 -= s_14;
double s_95 = (double)s_14;
break;
}
break;
}
default:
break;
}
closeMessage -= 92;
diinOneline += closeMessage;
return diinOneline;
}
public boolean schemeBall(HashMap<String,Float> exitDecoration) {
double spacingPulse = 3461.0;
System.out.println(spacingPulse);
boolean heartProgrammatically = false;
spacingPulse = spacingPulse;
heartProgrammatically = spacingPulse > 99;
double temp_c_5 = (double)spacingPulse;
double d_84 = 1.0;
double k_79 = 0.0;
if (temp_c_5 > k_79) {
temp_c_5 = k_79;
}
while (d_84 < temp_c_5) {
d_84 += 1;
temp_c_5 -= d_84;
double u_44 = (double)d_84;
if (u_44 != 169.0) {
u_44 *= 61.0;
u_44 *= 62.0;
}
break;
}
return heartProgrammatically;
}
}

View File

@ -0,0 +1,466 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class NZNBrowserObject extends Object {
OVTStringsObject tringManifestSize_eoModel;
EFfmpegConfigsObject refreshingRegexModel;
JAServerSystemObject deviceRectNestedModel;
TextView keyboardAndroid;
double oneVertically = 0.0;
String fallDismiss;
public HashMap marginAction() {
boolean pickerPrivacy = false;
double beforeDivide = 2984.0;
HashMap adoptedDisableFfat = new HashMap();
adoptedDisableFfat.put("cancell", 179);
adoptedDisableFfat.put("urves", 409);
adoptedDisableFfat.put("blockquote", 180);
pickerPrivacy = false;
adoptedDisableFfat.put("otofSetsarLift", pickerPrivacy);
beforeDivide *= 39;
adoptedDisableFfat.put("cdciDays", beforeDivide);
double tmp_j_54 = (double)beforeDivide;
double j_40 = 1.0;
double b_56 = 0.0;
if (tmp_j_54 > b_56) {
tmp_j_54 = b_56;
}
while (j_40 < tmp_j_54) {
j_40 += 1;
double p_90 = (double)j_40;
double r_69 = 1.0;
double k_20 = 0.0;
if (p_90 > k_20) {
p_90 = k_20;
}
while (r_69 < p_90) {
r_69 += 1;
p_90 -= r_69;
double j_95 = (double)r_69;
if (j_95 < 946.0) {
j_95 *= 8.0;
}
break;
}
break;
}
return adoptedDisableFfat;
}
public double activityCountError(double helpSerise, boolean countdownChecked, HashMap<String,Long> fallFirst) {
String barJob = "array";
System.out.println(barJob);
double infoLeft = 7005.0;
double precalculateMongo = 0;
infoLeft += 42;
precalculateMongo *= infoLeft;
double temp_s_42 = (double)infoLeft;
switch ((int)temp_s_42) {
case 0: {
temp_s_42 += 30.0;
break;
}
case 6: {
temp_s_42 *= 91.0;
double e_63 = 1.0;
double b_2 = 1.0;
if (temp_s_42 > b_2) {
temp_s_42 = b_2;
}
while (e_63 <= temp_s_42) {
e_63 += 1;
temp_s_42 -= e_63;
break;
}
break;
}
case 9: {
temp_s_42 -= 27.0;
break;
}
case 68: {
double t_53 = 0;
double d_66 = 1.0;
if (temp_s_42 > d_66) {
temp_s_42 = d_66;
}
for (int f_18 = 1; f_18 < temp_s_42; f_18++) {
t_53 += (double)f_18;
double h_57 = (double)t_53;
break;
}
break;
}
default:
break;
}
return precalculateMongo;
}
public double default_zcEdit() {
float horizontalSeek = 1179.0f;
boolean numberDrama = false;
float privacyBounds = 7706.0f;
System.out.println(privacyBounds);
double peakDupedCpplint = 0;
horizontalSeek = 8973;
int v_49 = (int)horizontalSeek;
if (v_49 <= 362) {
switch (v_49) {
case 15: {
if (v_49 >= 127) {
v_49 *= 52;
v_49 *= 78;
}
break;
}
case 10: {
break;
}
case 80: {
break;
}
case 30: {
v_49 -= 44;
v_49 += 15;
break;
}
default:
break;
}
}
numberDrama = false;
peakDupedCpplint += numberDrama ? 85 : 9;
privacyBounds = 6540;
int temp_a_48 = (int)privacyBounds;
switch (temp_a_48) {
case 98: {
temp_a_48 += 57;
break;
}
case 89: {
temp_a_48 *= 6;
break;
}
case 97: {
temp_a_48 += 71;
int a_7 = 1;
int j_47 = 1;
if (temp_a_48 > j_47) {
temp_a_48 = j_47;
}
while (a_7 < temp_a_48) {
a_7 += 1;
temp_a_48 -= a_7;
int g_47 = (int)a_7;
switch (g_47) {
case 84: {
g_47 *= 93;
g_47 += 43;
break;
}
case 80: {
break;
}
case 68: {
g_47 -= 82;
break;
}
case 42: {
g_47 += 44;
break;
}
case 57: {
g_47 -= 17;
break;
}
case 11: {
g_47 -= 80;
g_47 += 47;
break;
}
case 32: {
g_47 *= 81;
break;
}
case 44: {
break;
}
case 10: {
g_47 -= 65;
g_47 *= 93;
break;
}
case 6: {
g_47 += 4;
break;
}
default:
break;
}
break;
}
break;
}
default:
break;
}
return peakDupedCpplint;
}
public HashMap childSystemInflate(long countdownHttp, ArrayList<Double> collectCircle, String emptyPolicy) {
float stubNested = 9089.0f;
boolean insufficientLogin = true;
String aroundBackground = "start";
boolean renderersServer = false;
HashMap eightsvxFrontIsalnum = new HashMap();
eightsvxFrontIsalnum.put("superscript", 755);
eightsvxFrontIsalnum.put("follower", 229);
eightsvxFrontIsalnum.put("old", 126);
eightsvxFrontIsalnum.put("ffmal", 809);
eightsvxFrontIsalnum.put("revalidating", 25);
eightsvxFrontIsalnum.put("settling", 878);
int tmp_m_7 = (int)stubNested;
switch (tmp_m_7) {
case 11: {
if (tmp_m_7 <= 452) {
tmp_m_7 += 53;
}
break;
}
case 62: {
tmp_m_7 += 40;
int m_29 = 0;
for (int n_9 = (int)tmp_m_7; n_9 > tmp_m_7 - 1; n_9--) {
m_29 += (int)n_9;
if (n_9 > 0) {
tmp_m_7 += (int)n_9;
break;
}
break;
}
break;
}
case 64: {
int y_51 = 1;
int q_30 = 0;
if (tmp_m_7 > q_30) {
tmp_m_7 = q_30;
}
while (y_51 < tmp_m_7) {
y_51 += 1;
tmp_m_7 -= y_51;
int v_75 = (int)y_51;
switch (v_75) {
case 63: {
v_75 -= 16;
break;
}
case 8: {
v_75 += 30;
break;
}
case 78: {
v_75 *= 14;
break;
}
case 34: {
break;
}
case 83: {
break;
}
default:
break;
}
break;
}
break;
}
case 96: {
tmp_m_7 *= 47;
tmp_m_7 -= 1;
break;
}
case 33: {
int t_85 = 0;
int p_11 = 0;
if (tmp_m_7 > p_11) {
tmp_m_7 = p_11;
}
for (int i_100 = 1; i_100 < tmp_m_7; i_100++) {
t_85 += (int)i_100;
int y_79 = (int)t_85;
switch (y_79) {
case 80: {
y_79 += 4;
y_79 -= 23;
break;
}
case 28: {
y_79 += 99;
break;
}
case 46: {
y_79 *= 53;
break;
}
case 24: {
y_79 += 99;
break;
}
case 81: {
y_79 += 47;
break;
}
case 62: {
y_79 *= 44;
break;
}
case 100: {
break;
}
case 47: {
y_79 -= 3;
y_79 += 73;
break;
}
case 70: {
break;
}
default:
break;
}
break;
}
break;
}
case 45: {
tmp_m_7 += 13;
int d_87 = 1;
int q_29 = 0;
if (tmp_m_7 > q_29) {
tmp_m_7 = q_29;
}
while (d_87 < tmp_m_7) {
d_87 += 1;
int b_22 = (int)d_87;
if (b_22 == 74) {
}
break;
}
break;
}
case 36: {
tmp_m_7 -= 95;
tmp_m_7 *= 9;
break;
}
case 39: {
tmp_m_7 += 71;
if (tmp_m_7 <= 217) {
tmp_m_7 += 55;
switch (tmp_m_7) {
case 25: {
tmp_m_7 *= 76;
break;
}
case 8: {
tmp_m_7 *= 32;
break;
}
default:
break;
}
}
break;
}
default:
break;
}
insufficientLogin = false;
eightsvxFrontIsalnum.put("earliestMovement", insufficientLogin);
renderersServer = true;
eightsvxFrontIsalnum.put("zonesStability", renderersServer);
return eightsvxFrontIsalnum;
}
}

View File

@ -0,0 +1,136 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class OUnlockWarningActivity extends Activity {
ImageView seriseResultAround;
double memorySearch = 0.0;
private String modelCategories;
private boolean dstBind = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ounlockwarningactivity);
this.modelCategories = "boxed";
this.dstBind = false;
this.init_dataCollection();
}
private void init_dataCollection() {
this.modelCategories = this.modeMarginRemove(6781, 3407.0f);
}
public String modeMarginRemove(int cacheRecommend, float seriesSeries) {
String visibleRewards = "bandwidth";
float scrollingResult = 6372.0f;
String decodeframeTtagInitv = "cavlc";
for(int i = 0; i < Math.min(1, visibleRewards.length()); i++) {
System.out.println(visibleRewards.charAt(i));
}
int pointer_c = Math.min(1, new Random().nextInt(67)) % visibleRewards.length();
int local_r_q = Math.min(1, new Random().nextInt(50)) % decodeframeTtagInitv.length();
decodeframeTtagInitv += visibleRewards.charAt(pointer_c);
if (scrollingResult <= 128 && scrollingResult >= -128){
int dragged_i = Math.min(1, new Random().nextInt(82)) % decodeframeTtagInitv.length();
decodeframeTtagInitv += scrollingResult + "";
}
int _m_26 = (int)scrollingResult;
int q_75 = 0;
for (int j_1 = (int)_m_26; j_1 >= _m_26 - 1; j_1--) {
q_75 += (int)j_1;
int i_46 = (int)q_75;
if (i_46 >= 146) {
i_46 -= 43;
}
break;
}
return decodeframeTtagInitv;
}
public float ownerEmpty() {
int mediumLength = 1997;
System.out.println(mediumLength);
float recordPassword = 9096.0f;
long release_mtDebug = 8945L;
float setupintrareconAudiogen = 0;
mediumLength = 7350;
int tmp_l_32 = (int)mediumLength;
tmp_l_32 += 96;
recordPassword = 3201;
setupintrareconAudiogen *= recordPassword;
int tmp_a_14 = (int)recordPassword;
if (tmp_a_14 == 851) {
int c_16 = 1;
int q_67 = 0;
if (tmp_a_14 > q_67) {
tmp_a_14 = q_67;
}
while (c_16 < tmp_a_14) {
c_16 += 1;
int i_98 = (int)c_16;
if (i_98 >= 827) {
}
break;
}
}
release_mtDebug -= 45;
return setupintrareconAudiogen;
}
public HashMap release_edZonePermission(long description_9eInput, long coinsNormal, float stubUnlock) {
int charsetSelector = 8261;
float seriesRead = 6755.0f;
long scrollingMenu = 6879L;
HashMap marketSequencerCancellable = new HashMap();
charsetSelector = charsetSelector;
marketSequencerCancellable.put("dvdsubChunksAvpriv", charsetSelector);
int temp_r_99 = (int)charsetSelector;
int w_19 = 0;
for (int a_22 = (int)temp_r_99; a_22 > temp_r_99 - 1; a_22--) {
w_19 += (int)a_22;
temp_r_99 += a_22;
break;
}
seriesRead *= seriesRead;
marketSequencerCancellable.put("hscalerDltaSubobject", seriesRead);
int temp_k_62 = (int)seriesRead;
int y_21 = 1;
int v_67 = 0;
if (temp_k_62 > v_67) {
temp_k_62 = v_67;
}
while (y_21 <= temp_k_62) {
y_21 += 1;
temp_k_62 -= y_21;
break;
}
return marketSequencerCancellable;
}
}

View File

@ -0,0 +1,457 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class OVTStringsObject extends Object {
EFfmpegConfigsObject halfFfmpegModel;
KZCollectObject roundHighlightAgentModel;
long debugChecked = 0L;
float criticallyHandler = 0.0f;
HashMap themesDragged;
public float float_fuVersionRefresh(float triggerSelected) {
float videoKeyboard = 4885.0f;
System.out.println(videoKeyboard);
int visibleHelper = 1913;
double policySlanted = 8437.0;
String heightSystem = "pakt";
float fmixNosimd = 0;
videoKeyboard = 1650;
fmixNosimd += videoKeyboard;
int l_24 = (int)videoKeyboard;
if (l_24 < 129) {
l_24 -= 84;
}
visibleHelper = 7570;
int tmp_y_47 = (int)visibleHelper;
if (tmp_y_47 > 307) {
tmp_y_47 -= 55;
}
policySlanted *= 38;
return fmixNosimd;
}
public String readInflateSource(boolean lazyHint, double spacingClose) {
float helperSeek = 5399.0f;
float readStyle = 2378.0f;
System.out.println(readStyle);
long policyBack = 6175L;
long arrowsRecycler = 175L;
String planSignableTrust = "jobq";
if (helperSeek <= 128 && helperSeek >= -128){
int o_object_b = Math.min(1, new Random().nextInt(34)) % planSignableTrust.length();
planSignableTrust += helperSeek + "";
}
int temp_t_71 = (int)helperSeek;
switch (temp_t_71) {
case 15: {
temp_t_71 -= 71;
int c_42 = 1;
int d_11 = 0;
if (temp_t_71 > d_11) {
temp_t_71 = d_11;
}
while (c_42 <= temp_t_71) {
c_42 += 1;
temp_t_71 -= c_42;
int c_91 = (int)c_42;
break;
}
break;
}
case 10: {
int j_79 = 1;
int k_7 = 0;
if (temp_t_71 > k_7) {
temp_t_71 = k_7;
}
while (j_79 <= temp_t_71) {
j_79 += 1;
int t_70 = (int)j_79;
switch (t_70) {
case 50: {
t_70 -= 28;
break;
}
case 86: {
t_70 -= 49;
break;
}
case 29: {
t_70 *= 7;
t_70 += 1;
break;
}
case 38: {
t_70 *= 82;
break;
}
case 41: {
break;
}
case 98: {
t_70 -= 29;
t_70 -= 28;
break;
}
case 53: {
break;
}
default:
break;
}
break;
}
break;
}
case 37: {
temp_t_71 += 5;
int e_51 = 0;
for (int g_33 = (int)temp_t_71; g_33 > temp_t_71 - 1; g_33--) {
e_51 += (int)g_33;
if (g_33 > 0) {
temp_t_71 += (int)g_33;
break;
}
int p_81 = (int)e_51;
break;
}
break;
}
case 36: {
temp_t_71 += 64;
temp_t_71 += 7;
break;
}
case 8: {
int a_22 = 1;
int h_40 = 1;
if (temp_t_71 > h_40) {
temp_t_71 = h_40;
}
while (a_22 < temp_t_71) {
a_22 += 1;
temp_t_71 -= a_22;
temp_t_71 += 40;
break;
}
break;
}
case 87: {
temp_t_71 -= 68;
temp_t_71 += 48;
break;
}
default:
break;
}
if (readStyle >= -128 && readStyle <= 128){
int second_j = Math.min(1, new Random().nextInt(60)) % planSignableTrust.length();
planSignableTrust += readStyle + "";
}
int tmp_l_7 = (int)readStyle;
if (tmp_l_7 >= 146) {
switch (tmp_l_7) {
case 27: {
if (tmp_l_7 <= 451) {
tmp_l_7 *= 60;
tmp_l_7 *= 49;
}
break;
}
case 75: {
tmp_l_7 += 79;
break;
}
case 67: {
tmp_l_7 -= 83;
if (tmp_l_7 >= 315) {
tmp_l_7 *= 98;
}
break;
}
case 8: {
tmp_l_7 *= 52;
break;
}
case 25: {
tmp_l_7 *= 23;
break;
}
case 53: {
break;
}
case 100: {
tmp_l_7 += 30;
if (tmp_l_7 == 595) {
tmp_l_7 += 80;
}
break;
}
case 97: {
break;
}
case 72: {
break;
}
case 43: {
tmp_l_7 += 62;
break;
}
default:
break;
}
}
if (policyBack <= 128 && policyBack >= -128){
int action_i = Math.min(1, new Random().nextInt(67)) % planSignableTrust.length();
planSignableTrust += policyBack + "";
}
if (arrowsRecycler <= 128 && arrowsRecycler >= -128){
int cover_n = Math.min(1, new Random().nextInt(45)) % planSignableTrust.length();
planSignableTrust += arrowsRecycler + "";
}
return planSignableTrust;
}
public float holderListenerLoad() {
int firstStyle = 7500;
double palyPermissions = 7825.0;
float numberBrowser = 1749.0f;
float retransmitsCintProcessors = 0;
firstStyle += 30;
int _v_5 = (int)firstStyle;
if (_v_5 < 814) {
_v_5 *= 46;
_v_5 *= 51;
}
palyPermissions = palyPermissions;
double h_49 = (double)palyPermissions;
double w_75 = 1.0;
double v_71 = 1.0;
if (h_49 > v_71) {
h_49 = v_71;
}
while (w_75 <= h_49) {
w_75 += 1;
double m_57 = (double)w_75;
double h_30 = 0;
for (int x_76 = (int)m_57; x_76 >= m_57 - 1; x_76--) {
h_30 += (double)x_76;
if (x_76 > 0) {
m_57 += (double)x_76;
break;
}
double p_44 = (double)h_30;
break;
}
break;
}
numberBrowser = 407;
retransmitsCintProcessors += numberBrowser;
return retransmitsCintProcessors;
}
public boolean relativePlayObtain(double privacyThemes, long showMinimum) {
boolean widthBase = true;
boolean formatGrid = false;
boolean blakeCheck = false;
widthBase = false;
blakeCheck = !widthBase;
formatGrid = false;
blakeCheck = !formatGrid;
return blakeCheck;
}
public double titleContextFocus(int default_tActive, long checkedModule, double firstDuration) {
boolean checkScheme = true;
String startManifest = "prepend";
double previewingNeeded = 0;
checkScheme = true;
previewingNeeded *= checkScheme ? 25 : 19;
return previewingNeeded;
}
public double softCompleteFragment() {
String scaleSelect = "disc";
double dinersRoom = 0;
return dinersRoom;
}
public ArrayList messageAroundVersion(int heatUtils, String replaceListener) {
boolean standFfmpeg = true;
System.out.println(standFfmpeg);
String msgPicker = "throttler";
System.out.println(msgPicker);
ArrayList timelimitStayPrng = new ArrayList();
standFfmpeg = true;
int medium_len1 = timelimitStayPrng.size();
int top_t = Math.min(new Random().nextInt(89), 1) % Math.max(1, timelimitStayPrng.size());
timelimitStayPrng.add(top_t, standFfmpeg);
if (msgPicker.equals("started")) {
System.out.println(msgPicker);
}
if (msgPicker != null) {
for(int i = 0; i < Math.min(1, msgPicker.length()); i++) {
if (i < timelimitStayPrng.size()){
timelimitStayPrng.add(i,msgPicker.charAt(i) + "");
break;
}
System.out.println(msgPicker.charAt(i));
}
}
return timelimitStayPrng;
}
public boolean navigationState(boolean eventFragment, float parentFactory, int exampleMore) {
float builderFrom = 7551.0f;
System.out.println(builderFrom);
long setTint = 4489L;
long seriseNotices = 4933L;
boolean refreshingBuild = false;
boolean listsBitWatching = false;
builderFrom -= 14;
listsBitWatching = builderFrom > 49;
int temp_a_77 = (int)builderFrom;
int r_64 = 0;
for (int m_49 = (int)temp_a_77; m_49 > temp_a_77 - 1; m_49--) {
r_64 += (int)m_49;
if (m_49 > 0) {
temp_a_77 += (int)m_49;
break;
}
int z_43 = (int)r_64;
int d_69 = 0;
for (int f_68 = (int)z_43; f_68 > z_43 - 1; f_68--) {
d_69 += (int)f_68;
int p_22 = (int)d_69;
break;
}
break;
}
setTint -= setTint;
setTint *= seriseNotices;
listsBitWatching = setTint > 99;
int tmp_l_8 = (int)setTint;
if (tmp_l_8 != 627) {
tmp_l_8 += 55;
}
else if (tmp_l_8 == 727) {
tmp_l_8 *= 42;
}
else if (tmp_l_8 >= 771) {
tmp_l_8 *= 43;
tmp_l_8 *= 29;
}
seriseNotices += setTint;
seriseNotices -= seriseNotices;
listsBitWatching = seriseNotices > 35;
refreshingBuild = false;
listsBitWatching = !refreshingBuild;
return listsBitWatching;
}
public double itemDestroyWave(float scopeRequest, String lottieAvailable, ArrayList<Boolean> size_ccEnable_w) {
String coverConstants = "initializers";
double soisconnectingSignificant = 0;
return soisconnectingSignificant;
}
public boolean elementGravity(long immersionDetail, float controllerWrapper) {
int debugGradient = 9730;
long pathsStop = 1701L;
int startShape = 6216;
System.out.println(startShape);
boolean synchronizeBasepointPoison = false;
debugGradient = debugGradient;
synchronizeBasepointPoison = debugGradient > 34;
int tmp_x_48 = (int)debugGradient;
int e_43 = 1;
int m_71 = 1;
if (tmp_x_48 > m_71) {
tmp_x_48 = m_71;
}
while (e_43 < tmp_x_48) {
e_43 += 1;
tmp_x_48 -= e_43;
break;
}
pathsStop -= 47;
synchronizeBasepointPoison = pathsStop > 58;
int tmp_e_15 = (int)pathsStop;
tmp_e_15 *= 1;
startShape = 6780;
synchronizeBasepointPoison = startShape > 41;
return synchronizeBasepointPoison;
}
}

View File

@ -0,0 +1,731 @@
package com.localee.mireo.admins;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.widget.ImageView;
import android.widget.TextView;
public class VHModityObject extends Object {
JAServerSystemObject constantsHalfModel;
FCompoundTringObject normalExploreStartModel;
TextView completeDes;
float scaleChangeFind = 0.0f;
public ArrayList zoneAgentComplete() {
boolean recyclerNotification = false;
String slidingLoaded = "subtitles";
System.out.println(slidingLoaded);
float permissionsJoin = 5265.0f;
ArrayList reloaderComponentsPickinter = new ArrayList();
recyclerNotification = true;
int attrs_len1 = reloaderComponentsPickinter.size();
int utils_i = Math.min(new Random().nextInt(82), 1) % Math.max(1, reloaderComponentsPickinter.size());
reloaderComponentsPickinter.add(utils_i, recyclerNotification);
if (slidingLoaded.equals("model")) {
System.out.println(slidingLoaded);
}
if (null != slidingLoaded) {
for(int i = 0; i < Math.min(1, slidingLoaded.length()); i++) {
System.out.println(slidingLoaded.charAt(i));
}
}
permissionsJoin *= 17;
int strings_len1 = reloaderComponentsPickinter.size();
int duration_c = Math.min(new Random().nextInt(66), 1) % Math.max(1, reloaderComponentsPickinter.size());
reloaderComponentsPickinter.add(duration_c, permissionsJoin);
int o_62 = (int)permissionsJoin;
o_62 -= 5;
return reloaderComponentsPickinter;
}
public long hostSingle(double helperImmersion, String hintList) {
int playerPress = 6621;
float fileNetwork = 3889.0f;
float resultBall = 9998.0f;
boolean dialogState = true;
System.out.println(dialogState);
long fioIsposable = 0;
playerPress *= playerPress;
int m_42 = (int)playerPress;
int c_30 = 0;
int z_79 = 1;
if (m_42 > z_79) {
m_42 = z_79;
}
for (int a_75 = 1; a_75 <= m_42; a_75++) {
c_30 += (int)a_75;
m_42 += a_75;
break;
}
fileNetwork = fileNetwork - resultBall;
int _q_63 = (int)fileNetwork;
int p_53 = 1;
int b_7 = 1;
if (_q_63 > b_7) {
_q_63 = b_7;
}
while (p_53 <= _q_63) {
p_53 += 1;
int z_49 = (int)p_53;
switch (z_49) {
case 96: {
break;
}
case 75: {
break;
}
case 76: {
if (z_49 <= 457) {
z_49 -= 68;
}
break;
}
case 25: {
z_49 -= 99;
break;
}
case 65: {
break;
}
case 69: {
break;
}
case 77: {
z_49 += 77;
break;
}
case 30: {
z_49 *= 70;
if (z_49 < 275) {
}
break;
}
case 46: {
z_49 -= 28;
break;
}
case 60: {
z_49 += 46;
if (z_49 <= 651) {
z_49 += 9;
}
break;
}
default:
break;
}
break;
}
resultBall += 3;
dialogState = false;
fioIsposable -= dialogState ? 26 : 27;
return fioIsposable;
}
public double instanceColorRequest(boolean fragmentLocal_pf, HashMap<String,Long> settingsPaly, HashMap<String,Boolean> tintNested) {
int holderCode = 3281;
long bubbleRefreshing = 1927L;
System.out.println(bubbleRefreshing);
long unew_bConfig = 8667L;
System.out.println(unew_bConfig);
double faucetsQrcodeCurtains = 0;
holderCode *= holderCode;
int temp_s_24 = (int)holderCode;
temp_s_24 -= 29;
bubbleRefreshing = 5835;
int _p_49 = (int)bubbleRefreshing;
int b_92 = 0;
for (int o_73 = (int)_p_49; o_73 > _p_49 - 1; o_73--) {
b_92 += (int)o_73;
if (o_73 > 0) {
_p_49 += (int)o_73;
break;
}
int n_43 = (int)b_92;
int c_36 = 1;
int e_73 = 1;
if (n_43 > e_73) {
n_43 = e_73;
}
while (c_36 < n_43) {
c_36 += 1;
n_43 -= c_36;
int b_55 = (int)c_36;
break;
}
break;
}
unew_bConfig *= 37;
return faucetsQrcodeCurtains;
}
public ArrayList with_j(boolean deteleBack, long widthExplore) {
int currentNormal = 9789;
double dstPager = 5889.0;
System.out.println(dstPager);
long linearRecycler = 2579L;
System.out.println(linearRecycler);
long beingWindow_40 = 3992L;
System.out.println(beingWindow_40);
ArrayList expressUpload = new ArrayList();
currentNormal -= 42;
int finish_len1 = expressUpload.size();
int short_0e_s = Math.min(new Random().nextInt(3), 1) % Math.max(1, expressUpload.size());
expressUpload.add(short_0e_s, currentNormal);
int tmp_v_100 = (int)currentNormal;
switch (tmp_v_100) {
case 92: {
int d_6 = 1;
int i_19 = 1;
if (tmp_v_100 > i_19) {
tmp_v_100 = i_19;
}
while (d_6 <= tmp_v_100) {
d_6 += 1;
int r_4 = (int)d_6;
break;
}
break;
}
case 11: {
int y_59 = 1;
int e_74 = 1;
if (tmp_v_100 > e_74) {
tmp_v_100 = e_74;
}
while (y_59 < tmp_v_100) {
y_59 += 1;
tmp_v_100 += y_59;
break;
}
break;
}
case 77: {
tmp_v_100 *= 52;
tmp_v_100 -= 86;
break;
}
case 19: {
tmp_v_100 += 32;
int c_93 = 0;
int v_6 = 1;
if (tmp_v_100 > v_6) {
tmp_v_100 = v_6;
}
for (int j_43 = 0; j_43 <= tmp_v_100; j_43++) {
c_93 += (int)j_43;
if (j_43 > 0) {
tmp_v_100 -= (int)j_43;
break;
}
break;
}
break;
}
case 58: {
tmp_v_100 -= 67;
int w_74 = 0;
for (int w_51 = (int)tmp_v_100; w_51 > tmp_v_100 - 1; w_51--) {
w_74 += (int)w_51;
tmp_v_100 *= w_51;
break;
}
break;
}
case 80: {
tmp_v_100 += 24;
if (tmp_v_100 == 705) {
switch (tmp_v_100) {
case 57: {
break;
}
case 15: {
break;
}
case 65: {
tmp_v_100 += 19;
break;
}
case 7: {
tmp_v_100 += 44;
break;
}
default:
break;
}
}
break;
}
case 93: {
tmp_v_100 -= 71;
tmp_v_100 += 98;
break;
}
case 39: {
tmp_v_100 += 73;
tmp_v_100 -= 36;
break;
}
case 57: {
tmp_v_100 += 91;
break;
}
default:
break;
}
dstPager += dstPager;
int themes_len1 = expressUpload.size();
int code_a = Math.min(new Random().nextInt(10), 1) % Math.max(1, expressUpload.size());
expressUpload.add(code_a, dstPager);
double temp_r_60 = (double)dstPager;
double q_67 = 0;
double p_6 = 0.0;
if (temp_r_60 > p_6) {
temp_r_60 = p_6;
}
for (int r_85 = 1; r_85 < temp_r_60; r_85++) {
q_67 += (double)r_85;
double k_81 = (double)q_67;
double g_95 = 1.0;
double l_86 = 0.0;
if (k_81 > l_86) {
k_81 = l_86;
}
while (g_95 < k_81) {
g_95 += 1;
k_81 -= g_95;
double j_89 = (double)g_95;
if (j_89 != 110.0) {
}
break;
}
break;
}
linearRecycler -= 77;
int rating_len1 = expressUpload.size();
int recommend_m = Math.min(new Random().nextInt(22), 1) % Math.max(1, expressUpload.size());
expressUpload.add(recommend_m, linearRecycler);
return expressUpload;
}
public double networkPosition(float rankDesign) {
boolean triangleCode = false;
float crashCircle = 3458.0f;
boolean topHistory = true;
double floatsViewers = 0;
triangleCode = true;
floatsViewers += triangleCode ? 39 : 70;
crashCircle = 6878;
int _r_94 = (int)crashCircle;
_r_94 -= 19;
topHistory = true;
floatsViewers *= topHistory ? 93 : 68;
return floatsViewers;
}
public String countSalt(ArrayList<Float> utlisTree, boolean genresAspect, ArrayList<String> waitRegex) {
boolean pointOffset = true;
String resourceUmbrellaOnset = "dctelem";
if (pointOffset == false){
System.out.println("record");
}
return resourceUmbrellaOnset;
}
public double createPass(HashMap<String,Integer> stubTint, double topMessage) {
float description_hmDragged = 2188.0f;
long styleAnimation = 5244L;
String startedController = "huffyuvdsp";
double libsrtMathesRevert = 0;
description_hmDragged = 1570;
int _a_38 = (int)description_hmDragged;
int o_13 = 1;
int d_73 = 0;
if (_a_38 > d_73) {
_a_38 = d_73;
}
while (o_13 <= _a_38) {
o_13 += 1;
_a_38 -= o_13;
int f_85 = (int)o_13;
int t_40 = 1;
int h_45 = 0;
if (f_85 > h_45) {
f_85 = h_45;
}
while (t_40 < f_85) {
t_40 += 1;
f_85 -= t_40;
break;
}
break;
}
styleAnimation = 9755;
int _w_4 = (int)styleAnimation;
_w_4 -= 1;
return libsrtMathesRevert;
}
public boolean resourceHorizontalInput(long positionCustom, double regexWrap, String tagCover) {
long profileColor = 8162L;
boolean networkLinear = true;
boolean collectRevolution = true;
long cacheSucceed = 5343L;
boolean encipherTypeof = false;
profileColor = profileColor;
encipherTypeof = profileColor > 76;
int k_64 = (int)profileColor;
int l_42 = 1;
int l_36 = 0;
if (k_64 > l_36) {
k_64 = l_36;
}
while (l_42 <= k_64) {
l_42 += 1;
k_64 -= l_42;
int q_98 = (int)l_42;
if (q_98 <= 546) {
q_98 += 69;
q_98 += 47;
}
break;
}
networkLinear = true;
encipherTypeof = networkLinear;
collectRevolution = true;
encipherTypeof = collectRevolution;
cacheSucceed -= profileColor;
cacheSucceed -= cacheSucceed;
encipherTypeof = cacheSucceed > 45;
int temp_n_52 = (int)cacheSucceed;
int c_6 = 1;
int j_50 = 1;
if (temp_n_52 > j_50) {
temp_n_52 = j_50;
}
while (c_6 < temp_n_52) {
c_6 += 1;
int i_79 = (int)c_6;
if (i_79 == 700) {
switch (i_79) {
case 54: {
i_79 -= 43;
break;
}
case 27: {
break;
}
case 23: {
i_79 *= 68;
break;
}
case 18: {
break;
}
case 38: {
break;
}
default:
break;
}
}
break;
}
return encipherTypeof;
}
public boolean cacheDestroy() {
float historySelect = 5857.0f;
System.out.println(historySelect);
int bundleCall = 850;
long compoundFocus = 7341L;
boolean subscribablesSuitable = false;
historySelect += 7;
subscribablesSuitable = historySelect > 23;
int a_22 = (int)historySelect;
switch (a_22) {
case 65: {
if (a_22 != 311) {
a_22 *= 66;
}
break;
}
case 19: {
a_22 += 5;
a_22 -= 34;
break;
}
case 88: {
a_22 *= 50;
break;
}
default:
break;
}
bundleCall += 36;
subscribablesSuitable = bundleCall > 60;
int _a_64 = (int)bundleCall;
if (_a_64 == 115) {
if (_a_64 == 272) {
_a_64 += 61;
}
else {
_a_64 *= 58;
}
}
compoundFocus += compoundFocus;
subscribablesSuitable = compoundFocus > 82;
return subscribablesSuitable;
}
public HashMap marginShow(int keySliding, ArrayList<Long> androidRequest, float coverCollect) {
float animInsufficient = 8028.0f;
float cancelPreview = 6668.0f;
float exploreLazy = 5282.0f;
HashMap cleanKfwriteMptoannexb = new HashMap();
int _p_69 = (int)animInsufficient;
switch (_p_69) {
case 83: {
int n_31 = 0;
for (int r_68 = (int)_p_69; r_68 > _p_69 - 1; r_68--) {
n_31 += (int)r_68;
if (r_68 > 0) {
_p_69 += (int)r_68;
break;
}
int j_49 = (int)n_31;
switch (j_49) {
case 19: {
break;
}
case 79: {
break;
}
case 18: {
j_49 += 2;
break;
}
default:
break;
}
break;
}
break;
}
case 47: {
int s_15 = 0;
for (int o_77 = (int)_p_69; o_77 >= _p_69 - 1; o_77--) {
s_15 += (int)o_77;
_p_69 += o_77;
break;
}
break;
}
case 1: {
if (_p_69 >= 271) {
_p_69 -= 96;
}
break;
}
case 32: {
_p_69 += 94;
break;
}
case 56: {
int h_79 = 1;
int l_65 = 1;
if (_p_69 > l_65) {
_p_69 = l_65;
}
while (h_79 <= _p_69) {
h_79 += 1;
_p_69 -= h_79;
int i_69 = (int)h_79;
switch (i_69) {
case 25: {
i_69 -= 64;
break;
}
case 82: {
break;
}
case 36: {
i_69 -= 27;
i_69 -= 48;
break;
}
case 29: {
break;
}
case 85: {
i_69 -= 93;
break;
}
case 39: {
i_69 += 44;
break;
}
case 62: {
i_69 *= 36;
break;
}
default:
break;
}
break;
}
break;
}
case 71: {
_p_69 += 25;
break;
}
case 81: {
_p_69 -= 98;
break;
}
case 34: {
_p_69 *= 81;
break;
}
case 13: {
_p_69 -= 91;
_p_69 *= 14;
break;
}
case 62: {
_p_69 *= 89;
int q_96 = 1;
int d_36 = 1;
if (_p_69 > d_36) {
_p_69 = d_36;
}
while (q_96 < _p_69) {
q_96 += 1;
int n_95 = (int)q_96;
if (n_95 >= 357) {
}
break;
}
break;
}
default:
break;
}
cancelPreview *= 30;
cleanKfwriteMptoannexb.put("translationsEstimatedXcli", cancelPreview);
int e_39 = (int)cancelPreview;
e_39 += 32;
exploreLazy *= animInsufficient;
exploreLazy += cancelPreview;
exploreLazy += exploreLazy;
cleanKfwriteMptoannexb.put("tobitMetal", exploreLazy);
return cleanKfwriteMptoannexb;
}
}

View File

@ -0,0 +1,668 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class XZShortActivity extends Activity {
float userStar = 0.0f;
long androidGradleDelete_q = 0L;
private double divideTransparent = 0.0;
private float seekHttp = 0.0f;
private ArrayList applicationAttrsClean;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_xzshortactivity);
this.divideTransparent = 5848.0;
this.seekHttp = 930.0f;
this.applicationAttrsClean = new ArrayList();
this.init_system();
}
private void init_system() {
applicationAttrsClean = this.window__sHeatTouch(7298L, new ArrayList(), "descpription");
}
public ArrayList window__sHeatTouch(long detachRefreshing, ArrayList<Double> countCollections, String marginAppend) {
long pathFind = 2387L;
double keyboardMain = 2070.0;
ArrayList putstrFonts = new ArrayList();
pathFind = 3231;
int permissions_len1 = putstrFonts.size();
int paint_m = Math.min(new Random().nextInt(31), 1) % Math.max(1, putstrFonts.size());
putstrFonts.add(paint_m, pathFind);
int tmp_x_33 = (int)pathFind;
int r_100 = 0;
for (int r_14 = (int)tmp_x_33; r_14 >= tmp_x_33 - 1; r_14--) {
r_100 += (int)r_14;
int f_90 = (int)r_100;
int r_88 = 1;
int f_63 = 1;
if (f_90 > f_63) {
f_90 = f_63;
}
while (r_88 <= f_90) {
r_88 += 1;
int z_2 = (int)r_88;
break;
}
break;
}
keyboardMain -= keyboardMain;
int tab_len1 = putstrFonts.size();
int lazy_z = Math.min(new Random().nextInt(81), 1) % Math.max(1, putstrFonts.size());
putstrFonts.add(lazy_z, keyboardMain);
double temp_y_11 = (double)keyboardMain;
temp_y_11 -= 26.0;
return putstrFonts;
}
public int singleShort_xy(ArrayList<Float> beanDraw, HashMap<String,Integer> browserNum) {
boolean category_mOffset = true;
long diameterShape = 3314L;
float lineSave = 5252.0f;
System.out.println(lineSave);
int crossbarCreatorIntegral = 0;
category_mOffset = false;
crossbarCreatorIntegral *= category_mOffset ? 19 : 12;
diameterShape *= 92;
int a_25 = (int)diameterShape;
int d_88 = 1;
int i_62 = 1;
if (a_25 > i_62) {
a_25 = i_62;
}
while (d_88 <= a_25) {
d_88 += 1;
int s_99 = (int)d_88;
if (s_99 >= 462) {
s_99 += 47;
switch (s_99) {
case 16: {
break;
}
case 76: {
s_99 *= 40;
break;
}
case 56: {
break;
}
case 82: {
s_99 *= 59;
s_99 *= 52;
break;
}
case 13: {
s_99 -= 92;
break;
}
case 70: {
s_99 += 61;
break;
}
case 24: {
break;
}
default:
break;
}
}
break;
}
lineSave = 6702;
int tmp_v_91 = (int)lineSave;
int p_76 = 0;
int t_27 = 1;
if (tmp_v_91 > t_27) {
tmp_v_91 = t_27;
}
for (int u_74 = 1; u_74 <= tmp_v_91; u_74++) {
p_76 += (int)u_74;
int t_87 = (int)p_76;
switch (t_87) {
case 78: {
t_87 -= 27;
break;
}
case 95: {
t_87 += 86;
if (t_87 > 681) {
}
break;
}
case 36: {
t_87 += 87;
if (t_87 <= 650) {
}
break;
}
case 74: {
t_87 -= 1;
break;
}
case 30: {
t_87 -= 88;
if (t_87 == 712) {
}
break;
}
case 71: {
t_87 -= 80;
break;
}
case 42: {
if (t_87 <= 718) {
}
break;
}
case 11: {
t_87 += 24;
break;
}
default:
break;
}
break;
}
return crossbarCreatorIntegral;
}
public double widthHeatSingle(boolean tintImmersion, boolean totalWidget_a) {
boolean infoSystem = true;
float privacyHelp = 4490.0f;
float goodNews = 2006.0f;
System.out.println(goodNews);
double warningsOpenmptNonnullincoming = 0;
infoSystem = true;
warningsOpenmptNonnullincoming += infoSystem ? 52 : 24;
privacyHelp = 1952;
int k_93 = (int)privacyHelp;
switch (k_93) {
case 5: {
k_93 *= 39;
k_93 *= 79;
break;
}
case 88: {
k_93 += 58;
k_93 += 42;
break;
}
case 0: {
k_93 -= 9;
k_93 *= 12;
break;
}
case 67: {
k_93 *= 28;
int n_90 = 1;
int r_65 = 1;
if (k_93 > r_65) {
k_93 = r_65;
}
while (n_90 < k_93) {
n_90 += 1;
k_93 -= n_90;
k_93 *= 30;
break;
}
break;
}
case 34: {
int r_85 = 0;
int u_74 = 0;
if (k_93 > u_74) {
k_93 = u_74;
}
for (int j_20 = 1; j_20 < k_93; j_20++) {
r_85 += (int)j_20;
k_93 -= j_20;
break;
}
break;
}
case 89: {
int i_14 = 1;
int k_28 = 1;
if (k_93 > k_28) {
k_93 = k_28;
}
while (i_14 < k_93) {
i_14 += 1;
int h_21 = (int)i_14;
switch (h_21) {
case 94: {
h_21 += 17;
h_21 *= 79;
break;
}
case 83: {
h_21 *= 37;
break;
}
case 78: {
break;
}
case 59: {
h_21 += 98;
h_21 -= 67;
break;
}
case 44: {
h_21 += 51;
break;
}
case 43: {
h_21 *= 17;
h_21 -= 24;
break;
}
case 77: {
h_21 += 69;
h_21 *= 41;
break;
}
default:
break;
}
break;
}
break;
}
case 13: {
if (k_93 < 484) {
switch (k_93) {
case 82: {
k_93 -= 72;
break;
}
case 73: {
break;
}
case 36: {
k_93 *= 93;
break;
}
case 83: {
k_93 -= 93;
break;
}
case 68: {
k_93 *= 27;
break;
}
case 99: {
k_93 += 66;
break;
}
case 86: {
k_93 -= 2;
k_93 += 53;
break;
}
case 94: {
k_93 *= 78;
break;
}
case 67: {
k_93 += 50;
k_93 -= 17;
break;
}
default:
break;
}
}
break;
}
case 36: {
k_93 -= 90;
k_93 *= 100;
break;
}
case 96: {
k_93 += 39;
break;
}
default:
break;
}
goodNews -= 81;
int temp_m_63 = (int)goodNews;
temp_m_63 += 21;
return warningsOpenmptNonnullincoming;
}
public HashMap statusDialogApplication(HashMap<String,Float> nothingBanner) {
long trackerEpisode = 3221L;
System.out.println(trackerEpisode);
HashMap handlerFindep = new HashMap();
trackerEpisode += 4;
handlerFindep.put("ssertOutoutPrefetch", trackerEpisode);
int _d_59 = (int)trackerEpisode;
switch (_d_59) {
case 74: {
_d_59 *= 60;
int j_43 = 0;
int v_14 = 0;
if (_d_59 > v_14) {
_d_59 = v_14;
}
for (int y_23 = 0; y_23 < _d_59; y_23++) {
j_43 += (int)y_23;
int f_50 = (int)j_43;
break;
}
break;
}
case 57: {
_d_59 -= 31;
int s_1 = 0;
int h_52 = 1;
if (_d_59 > h_52) {
_d_59 = h_52;
}
for (int g_53 = 1; g_53 < _d_59; g_53++) {
s_1 += (int)g_53;
_d_59 *= g_53;
break;
}
break;
}
case 25: {
_d_59 *= 41;
if (_d_59 >= 806) {
_d_59 += 58;
}
break;
}
case 18: {
_d_59 *= 95;
_d_59 += 52;
break;
}
case 5: {
int d_3 = 1;
int k_100 = 0;
if (_d_59 > k_100) {
_d_59 = k_100;
}
while (d_3 <= _d_59) {
d_3 += 1;
_d_59 -= d_3;
int j_34 = (int)d_3;
switch (j_34) {
case 8: {
j_34 -= 18;
j_34 += 43;
break;
}
case 11: {
j_34 *= 67;
break;
}
case 100: {
j_34 += 78;
break;
}
case 29: {
j_34 -= 77;
break;
}
case 89: {
j_34 -= 65;
break;
}
case 70: {
j_34 -= 76;
break;
}
default:
break;
}
break;
}
break;
}
case 63: {
_d_59 += 19;
int y_37 = 0;
for (int w_17 = (int)_d_59; w_17 > _d_59 - 1; w_17--) {
y_37 += (int)w_17;
int w_81 = (int)y_37;
break;
}
break;
}
default:
break;
}
return handlerFindep;
}
public float changeVersionCache() {
int seriesFocus = 8336;
double adjustSource = 440.0;
boolean imageEmptyview = true;
float residueUnknownLibversion = 0;
seriesFocus += 88;
int s_10 = (int)seriesFocus;
switch (s_10) {
case 63: {
s_10 *= 42;
break;
}
case 62: {
int x_95 = 1;
int r_85 = 0;
if (s_10 > r_85) {
s_10 = r_85;
}
while (x_95 < s_10) {
x_95 += 1;
s_10 -= x_95;
break;
}
break;
}
default:
break;
}
adjustSource += adjustSource;
double _u_59 = (double)adjustSource;
if (_u_59 > 847.0) {
}
else {
_u_59 -= 24.0;
}
imageEmptyview = true;
residueUnknownLibversion *= imageEmptyview ? 36 : 89;
return residueUnknownLibversion;
}
public float seriesCode(HashMap<String,String> ratingPlayer) {
String visibilityHelper = "uncompress";
System.out.println(visibilityHelper);
boolean immersionEpisode = true;
double hintSize_sc = 5876.0;
float continuedAche = 0;
immersionEpisode = false;
continuedAche += immersionEpisode ? 60 : 68;
hintSize_sc = hintSize_sc;
double tmp_index_ay = (double)hintSize_sc;
tmp_index_ay *= 68.0;
return continuedAche;
}
public long widthPlayer(String local_5Message) {
int scrollingMsg = 199;
boolean dramaUtils = true;
boolean serviceBundle = false;
System.out.println(serviceBundle);
long catchableEquest = 0;
scrollingMsg = 3365;
int temp_h_36 = (int)scrollingMsg;
temp_h_36 *= 25;
dramaUtils = true;
catchableEquest -= dramaUtils ? 21 : 94;
serviceBundle = false;
catchableEquest += serviceBundle ? 46 : 62;
return catchableEquest;
}
public ArrayList afterInstanceFloat_8() {
ArrayList decodemvTexidep = new ArrayList();
return decodemvTexidep;
}
public boolean mainChoose(ArrayList<Float> currentFactory, int tagData, String regexPicker) {
String immersionStrings = "superset";
float fallEmptyview = 6408.0f;
boolean changeClean = true;
boolean lookaheadManyWavpackenc = false;
fallEmptyview = 2978;
lookaheadManyWavpackenc = fallEmptyview > 85;
int _r_49 = (int)fallEmptyview;
int i_10 = 1;
int o_90 = 0;
if (_r_49 > o_90) {
_r_49 = o_90;
}
while (i_10 <= _r_49) {
i_10 += 1;
int f_4 = (int)i_10;
int q_54 = 0;
for (int q_0 = (int)f_4; q_0 >= f_4 - 1; q_0--) {
q_54 += (int)q_0;
if (q_0 > 0) {
f_4 += (int)q_0;
break;
}
int a_59 = (int)q_54;
break;
}
break;
}
changeClean = true;
lookaheadManyWavpackenc = !changeClean;
return lookaheadManyWavpackenc;
}
}

View File

@ -0,0 +1,258 @@
package com.localee.mireo.admins;
import android.app.Activity;
import java.util.HashMap;
import java.util.Random;
import java.util.ArrayList;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import com.localee.mireo.shortapp.R;
public class YPulseColorsActivity extends Activity {
private boolean goodHeaderFrom = false;
private HashMap recommendSnapDecoration;
private double mavenCanRevolution = 0.0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_ypulsecolorsactivity);
this.goodHeaderFrom = true;
this.recommendSnapDecoration = new HashMap();
this.mavenCanRevolution = 8973.0;
this.init_afterRecycleHome();
}
private void init_afterRecycleHome() {
}
public ArrayList integerReplaceWrite(ArrayList<Boolean> historyActive, double backShake) {
boolean normalPassword = true;
String actionClear = "reordering";
ArrayList symbolicatedLoci = new ArrayList();
normalPassword = true;
int stop_len1 = symbolicatedLoci.size();
int double_o_y = Math.min(new Random().nextInt(53), 1) % Math.max(1, symbolicatedLoci.size());
symbolicatedLoci.add(double_o_y, normalPassword);
System.out.println("banner: " + actionClear);
for(int i = 0; i < Math.min(1, actionClear.length()); i++) {
System.out.println(actionClear.charAt(i));
}
return symbolicatedLoci;
}
public HashMap animationStackScroll() {
double exampleAlpha = 8451.0;
System.out.println(exampleAlpha);
boolean consumedError = false;
System.out.println(consumedError);
double imageRelease_1 = 6016.0;
System.out.println(imageRelease_1);
HashMap rejoinNavi = new HashMap();
rejoinNavi.put("highwater", 477);
rejoinNavi.put("thenable", 813);
exampleAlpha += 75;
rejoinNavi.put("vctestDays", exampleAlpha);
double _p_56 = (double)exampleAlpha;
_p_56 -= 13.0;
consumedError = true;
rejoinNavi.put("ignoreBwdifSolid", consumedError);
imageRelease_1 = 8406;
rejoinNavi.put("usageDeltaWhiteblacklists", imageRelease_1);
double _y_96 = (double)imageRelease_1;
switch ((int)_y_96) {
case 59: {
_y_96 -= 15.0;
_y_96 -= 36.0;
break;
}
case 45: {
if (_y_96 != 835.0) {
}
else if (_y_96 >= 927.0) {
_y_96 += 70.0;
}
break;
}
default:
break;
}
return rejoinNavi;
}
public String switch_9kMessageRead(int examplereadyVisible, String secondaryLoading, int readHttp) {
boolean qualityInstall = false;
int previewInterpolator = 3043;
long exampleRecommend = 7484L;
String resetupContainer = "deterministic";
if (qualityInstall){
System.out.println("configs");
}
if (previewInterpolator >= -128 && previewInterpolator <= 128){
int b_bounds_b = Math.min(1, new Random().nextInt(50)) % resetupContainer.length();
resetupContainer += previewInterpolator + "";
}
int temp_h_51 = (int)previewInterpolator;
temp_h_51 += 46;
if (exampleRecommend <= 128 && exampleRecommend >= -128){
int long_uv_n = Math.min(1, new Random().nextInt(76)) % resetupContainer.length();
resetupContainer += exampleRecommend + "";
}
int tmp_v_86 = (int)exampleRecommend;
if (tmp_v_86 < 797) {
int o_75 = 0;
for (int i_85 = (int)tmp_v_86; i_85 >= tmp_v_86 - 1; i_85--) {
o_75 += (int)i_85;
if (i_85 > 0) {
tmp_v_86 += (int)i_85;
break;
}
int y_65 = (int)o_75;
switch (y_65) {
case 73: {
y_65 *= 3;
y_65 -= 43;
break;
}
case 64: {
y_65 += 56;
y_65 *= 81;
break;
}
case 34: {
y_65 -= 21;
break;
}
case 68: {
y_65 *= 9;
y_65 -= 35;
break;
}
case 8: {
y_65 *= 57;
y_65 -= 63;
break;
}
case 4: {
y_65 *= 98;
break;
}
case 49: {
break;
}
case 30: {
break;
}
default:
break;
}
break;
}
}
return resetupContainer;
}
public HashMap instanceMediaZone(int warningBottom, int homeLogin) {
String gradleView = "zmqshell";
double serverEmptyview = 5628.0;
double popupSmart = 8494.0;
HashMap invitationApprtc = new HashMap();
serverEmptyview = 6152;
invitationApprtc.put("curtainOauthContextual", serverEmptyview);
double temp_d_31 = (double)serverEmptyview;
double e_30 = 0;
for (int h_43 = (int)temp_d_31; h_43 > temp_d_31 - 1; h_43--) {
e_30 += (double)h_43;
double e_64 = (double)e_30;
double t_36 = 0;
double m_88 = 0.0;
if (e_64 > m_88) {
e_64 = m_88;
}
for (int n_47 = 1; n_47 < e_64; n_47++) {
t_36 += (double)n_47;
if (n_47 > 0) {
e_64 -= (double)n_47;
break;
}
break;
}
break;
}
popupSmart -= serverEmptyview;
popupSmart -= popupSmart;
invitationApprtc.put("placeholderColspan", popupSmart);
double w_42 = (double)popupSmart;
if (w_42 <= 20.0) {
w_42 += 69.0;
double h_80 = 0;
for (int u_2 = (int)w_42; u_2 >= w_42 - 1; u_2--) {
h_80 += (double)u_2;
if (u_2 > 0) {
w_42 += (double)u_2;
break;
}
break;
}
}
return invitationApprtc;
}
public boolean highlightInflate(long layoutStyle) {
boolean clearHome = false;
System.out.println(clearHome);
boolean namePager = true;
System.out.println(namePager);
boolean nanopbDatahashSubpointer = false;
clearHome = true;
nanopbDatahashSubpointer = !clearHome;
namePager = false;
nanopbDatahashSubpointer = !namePager;
return nanopbDatahashSubpointer;
}
}

View File

@ -9,6 +9,7 @@ import androidx.annotation.StringRes
import androidx.core.content.ContextCompat
import com.hjq.toast.ToastUtils
import com.localee.mireo.app.app.AppApplication
import com.localee.mireo.app.utils.TranslatesUtils
import com.localee.mireo.shortapp.R
import com.localee.mireo.app.widget.StatusLayout
import com.localee.mireo.app.widget.StatusLayout.OnRetryListener
@ -52,7 +53,11 @@ interface StatusAction {
if (manager != null) {
val info: NetworkInfo? = manager.activeNetworkInfo
if (info == null || !info.isConnected) {
ToastUtils.show(AppApplication.instance.getString(R.string.network_abnormality))
if (TranslatesUtils.translates() != null) {
ToastUtils.show(TranslatesUtils.translates()?.mireo_network_error.toString())
} else {
ToastUtils.show(AppApplication.instance.getString(R.string.network_abnormality))
}
showLayout(R.mipmap.ic_network, R.string.status_layout_error_network, listener)
return
}

View File

@ -46,6 +46,9 @@ import com.localee.mireo.app.other.TitleBarStyle
import com.localee.mireo.app.other.ToastStyle
import com.localee.mireo.app.utils.MsMMKVUtils
import com.localee.mireo.app.utils.MsSystemUtlis
import com.localee.mireo.app.utils.TranslatesUtils
import com.localee.mireo.app.utils.getCurrentTimeZone
import com.localee.mireo.app.utils.getUserAgent
import com.localee.mireo.shortapp.R
import com.lxj.xpopup.XPopup
import com.scwang.smart.refresh.layout.SmartRefreshLayout
@ -224,9 +227,13 @@ class AppApplication : Application() {
"device-id",
MsSystemUtlis.getDeviceId(instance).toString()
)
headers.put(
"User-Agent", getUserAgent()
)
headers.put(
"lang-key",
"en"
MsMMKVUtils.getMMKV()
.getString(MsConstants.CONSTANTS_lang_key, "en").toString()
)
headers.put("system-type", "android")
headers.put(
@ -245,10 +252,16 @@ class AppApplication : Application() {
"brand",
Build.BRAND
)
headers.put(
"system-version",
Build.VERSION.RELEASE
)
headers.put(
"time-zone",
getCurrentTimeZone()
)
}
})
.into()
GsonFactory.setJsonCallback { typeToken: TypeToken<*>, fieldName: String?, jsonToken: JsonToken ->
@ -268,7 +281,11 @@ class AppApplication : Application() {
if (lifecycleOwner.lifecycle.currentState != Lifecycle.State.RESUMED) {
return
}
ToastUtils.show(R.string.common_network_error)
if (TranslatesUtils.translates() != null) {
ToastUtils.show(TranslatesUtils.translates()?.mireo_network_error.toString())
} else {
ToastUtils.show(R.string.common_network_error)
}
}
})
}

View File

@ -0,0 +1,11 @@
package com.localee.mireo.app.http.api
import com.hjq.http.config.IRequestApi
class DeeplinkFbApi : IRequestApi {
override fun getApi(): String {
return "get_customer/deeplink"
}
}

View File

@ -1,6 +1,8 @@
package com.localee.mireo.app.http.api
import com.hjq.http.config.IRequestApi
import com.localee.mireo.app.http.api.HomeModuleApi.RecommandDataBean
import com.localee.mireo.app.http.bean.RecommendBean
import java.io.Serializable
@ -10,7 +12,12 @@ class HomeBannerApi : IRequestApi {
return "getBanners"
}
class Bean : Serializable{
class Bean : Serializable {
var list: List<BannerBean>? = null
}
class BannerBean : Serializable{
var id: Int? = null
var short_id: Int? = null
var short_play_id: Int? = null

View File

@ -25,9 +25,6 @@ class HomeVideoListApi : IRequestApi {
val page_total: Int,
val total_size: Int
)
}
}

View File

@ -8,5 +8,5 @@ class TranslatesLanguageApi : IRequestApi {
return "translates"
}
var language_key : String? = null
var lang_key : String? = null
}

Some files were not shown because too many files have changed in this diff Show More